Paul Cercueil | ecd927a | 2019-02-11 11:14:47 -0600 | [diff] [blame] | 1 | Ingenic JZ4740 MUSB driver |
| 2 | |
| 3 | Required properties: |
| 4 | |
| 5 | - compatible: Must be "ingenic,jz4740-musb" |
| 6 | - reg: Address range of the UDC register set |
| 7 | - interrupts: IRQ number related to the UDC hardware |
| 8 | - interrupt-names: must be "mc" |
| 9 | - clocks: phandle to the "udc" clock |
| 10 | - clock-names: must be "udc" |
| 11 | |
| 12 | Example: |
| 13 | |
| 14 | udc: usb@13040000 { |
| 15 | compatible = "ingenic,jz4740-musb"; |
| 16 | reg = <0x13040000 0x10000>; |
| 17 | |
| 18 | interrupt-parent = <&intc>; |
| 19 | interrupts = <24>; |
| 20 | interrupt-names = "mc"; |
| 21 | |
| 22 | clocks = <&cgu JZ4740_CLK_UDC>; |
| 23 | clock-names = "udc"; |
| 24 | }; |