Merge branch 'locking/atomics' into locking/core, to pick up WIP commits
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / usb / usb-ohci.txt
1 USB OHCI controllers
2
3 Required properties:
4 - compatible : "generic-ohci"
5 - reg : ohci controller register range (address and length)
6 - interrupts : ohci controller interrupt
7
8 Optional properties:
9 - big-endian-regs : boolean, set this for hcds with big-endian registers
10 - big-endian-desc : boolean, set this for hcds with big-endian descriptors
11 - big-endian : boolean, for hcds with big-endian-regs + big-endian-desc
12 - no-big-frame-no : boolean, set if frame_no lives in bits [15:0] of HCCA
13 - remote-wakeup-connected: remote wakeup is wired on the platform
14 - num-ports : u32, to override the detected port count
15 - clocks : a list of phandle + clock specifier pairs. In case of Renesas
16            R-Car Gen3 SoCs:
17            - if a host only channel: first clock should be host.
18            - if a USB DRD channel: first clock should be host and second one
19                                    should be peripheral.
20 - phys : see usb-hcd.txt in the current directory
21 - resets : a list of phandle + reset specifier pairs
22
23 additionally the properties from usb-hcd.txt (in the current directory) are
24 supported.
25
26 Example:
27
28         ohci0: usb@1c14400 {
29                 compatible = "allwinner,sun4i-a10-ohci", "generic-ohci";
30                 reg = <0x01c14400 0x100>;
31                 interrupts = <64>;
32                 clocks = <&usb_clk 6>, <&ahb_gates 2>;
33                 phys = <&usbphy 1>;
34                 phy-names = "usb";
35         };