diff options
author | Antoine Tenart <antoine.tenart@free-electrons.com> | 2014-11-26 00:44:37 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-11-26 12:28:13 -0500 |
commit | d7d30c911dd957e274c3da6910d4286862ab1d78 (patch) | |
tree | c8d45e957a1710ccc2624b3202e050c83a5c8b88 | |
parent | 10a062cefcfb1f6154a66f9872efc11543eeb3f8 (diff) |
Documentation: bindings: add doc for the USB2 ChipIdea USB driver
Document the USB2 ChipIdea driver (ci13xxx) bindings.
Signed-off-by: Antoine Tenart <antoine.tenart@free-electrons.com>
Acked-by: Peter Chen <peter.chen@freescale.com>
Signed-off-by: Peter Chen <peter.chen@freescale.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | Documentation/devicetree/bindings/usb/ci-hdrc-usb2.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.txt b/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.txt new file mode 100644 index 000000000000..27f8b1e5ee46 --- /dev/null +++ b/Documentation/devicetree/bindings/usb/ci-hdrc-usb2.txt | |||
@@ -0,0 +1,24 @@ | |||
1 | * USB2 ChipIdea USB controller for ci13xxx | ||
2 | |||
3 | Required properties: | ||
4 | - compatible: should be "chipidea,usb2" | ||
5 | - reg: base address and length of the registers | ||
6 | - interrupts: interrupt for the USB controller | ||
7 | |||
8 | Optional properties: | ||
9 | - clocks: reference to the USB clock | ||
10 | - phys: reference to the USB PHY | ||
11 | - phy-names: should be "usb-phy" | ||
12 | - vbus-supply: reference to the VBUS regulator | ||
13 | |||
14 | Example: | ||
15 | |||
16 | usb@f7ed0000 { | ||
17 | compatible = "chipidea,usb2"; | ||
18 | reg = <0xf7ed0000 0x10000>; | ||
19 | interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>; | ||
20 | clocks = <&chip CLKID_USB0>; | ||
21 | phys = <&usb_phy0>; | ||
22 | phy-names = "usb-phy"; | ||
23 | vbus-supply = <®_usb0_vbus>; | ||
24 | }; | ||