Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: usb: s3c2410-usb: Drop entirely S3C2410

Samsung S3C24xx family of SoCs was removed the Linux kernel in the
commit 61b7f8920b17 ("ARM: s3c: remove all s3c24xx support"), in January
2023. There are no in-kernel users of remaining S3C24xx compatibles.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Acked-by: Rob Herring (Arm) <robh@kernel.org>
Link: https://lore.kernel.org/r/20250831122222.50332-4-krzysztof.kozlowski@linaro.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Krzysztof Kozlowski and committed by
Greg Kroah-Hartman
771713ae dc60a1cd

-22
-22
Documentation/devicetree/bindings/usb/s3c2410-usb.txt
··· 1 - Samsung S3C2410 and compatible SoC USB controller 2 - 3 - OHCI 4 - 5 - Required properties: 6 - - compatible: should be "samsung,s3c2410-ohci" for USB host controller 7 - - reg: address and length of the controller memory mapped region 8 - - interrupts: interrupt number for the USB OHCI controller 9 - - clocks: Should reference the bus and host clocks 10 - - clock-names: Should contain two strings 11 - "usb-bus-host" for the USB bus clock 12 - "usb-host" for the USB host clock 13 - 14 - Example: 15 - 16 - usb0: ohci@49000000 { 17 - compatible = "samsung,s3c2410-ohci"; 18 - reg = <0x49000000 0x100>; 19 - interrupts = <0 0 26 3>; 20 - clocks = <&clocks UCLK>, <&clocks HCLK_USBH>; 21 - clock-names = "usb-bus-host", "usb-host"; 22 - };