Merge tag 'hsi-for-3.16-fixes1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[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 - clocks : a list of phandle + clock specifier pairs
13 - phys : phandle + phy specifier pair
14 - phy-names : "usb"
15 - resets : phandle + reset specifier pair
16
17 Example:
18
19         ohci0: usb@01c14400 {
20                 compatible = "allwinner,sun4i-a10-ohci", "generic-ohci";
21                 reg = <0x01c14400 0x100>;
22                 interrupts = <64>;
23                 clocks = <&usb_clk 6>, <&ahb_gates 2>;
24                 phys = <&usbphy 1>;
25                 phy-names = "usb";
26         };