Stefan Roese | 56fafb9 | 2012-04-16 09:08:08 +0530 | [diff] [blame] | 1 | ST SPEAr SoC USB controllers: |
| 2 | ----------------------------- |
| 3 | |
| 4 | EHCI: |
| 5 | ----- |
| 6 | |
| 7 | Required properties: |
| 8 | - compatible: "st,spear600-ehci" |
| 9 | - interrupt-parent: Should be the phandle for the interrupt controller |
| 10 | that services interrupts for this device |
| 11 | - interrupts: Should contain the EHCI interrupt |
| 12 | |
| 13 | Example: |
| 14 | |
| 15 | ehci@e1800000 { |
| 16 | compatible = "st,spear600-ehci", "usb-ehci"; |
| 17 | reg = <0xe1800000 0x1000>; |
| 18 | interrupt-parent = <&vic1>; |
| 19 | interrupts = <27>; |
| 20 | }; |
| 21 | |
| 22 | |
| 23 | OHCI: |
| 24 | ----- |
| 25 | |
| 26 | Required properties: |
| 27 | - compatible: "st,spear600-ohci" |
| 28 | - interrupt-parent: Should be the phandle for the interrupt controller |
| 29 | that services interrupts for this device |
| 30 | - interrupts: Should contain the OHCI interrupt |
| 31 | |
| 32 | Example: |
| 33 | |
| 34 | ohci@e1900000 { |
| 35 | compatible = "st,spear600-ohci", "usb-ohci"; |
| 36 | reg = <0xe1800000 0x1000>; |
| 37 | interrupt-parent = <&vic1>; |
| 38 | interrupts = <26>; |
| 39 | }; |