2014-02-07 23:36:40 +08:00
|
|
|
USB OHCI controllers
|
|
|
|
|
|
|
|
Required properties:
|
2014-02-12 00:35:28 +08:00
|
|
|
- compatible : "generic-ohci"
|
2014-02-07 23:36:40 +08:00
|
|
|
- reg : ohci controller register range (address and length)
|
|
|
|
- interrupts : ohci controller interrupt
|
|
|
|
|
|
|
|
Optional properties:
|
2014-02-07 23:36:42 +08:00
|
|
|
- big-endian-regs : boolean, set this for hcds with big-endian registers
|
|
|
|
- big-endian-desc : boolean, set this for hcds with big-endian descriptors
|
|
|
|
- big-endian : boolean, for hcds with big-endian-regs + big-endian-desc
|
2014-10-12 02:10:48 +08:00
|
|
|
- no-big-frame-no : boolean, set if frame_no lives in bits [15:0] of HCCA
|
2017-05-26 00:13:32 +08:00
|
|
|
- remote-wakeup-connected: remote wakeup is wired on the platform
|
2014-10-12 02:10:48 +08:00
|
|
|
- num-ports : u32, to override the detected port count
|
2014-02-07 23:36:40 +08:00
|
|
|
- clocks : a list of phandle + clock specifier pairs
|
2018-03-04 05:43:02 +08:00
|
|
|
- phys : see usb-hcd.txt in the current directory
|
2016-06-02 23:14:06 +08:00
|
|
|
- resets : a list of phandle + reset specifier pairs
|
2014-02-07 23:36:40 +08:00
|
|
|
|
2018-03-04 05:43:02 +08:00
|
|
|
additionally the properties from usb-hcd.txt (in the current directory) are
|
|
|
|
supported.
|
|
|
|
|
2014-02-07 23:36:40 +08:00
|
|
|
Example:
|
|
|
|
|
2017-11-09 00:27:48 +08:00
|
|
|
ohci0: usb@1c14400 {
|
2014-02-12 00:35:28 +08:00
|
|
|
compatible = "allwinner,sun4i-a10-ohci", "generic-ohci";
|
2014-02-07 23:36:40 +08:00
|
|
|
reg = <0x01c14400 0x100>;
|
|
|
|
interrupts = <64>;
|
|
|
|
clocks = <&usb_clk 6>, <&ahb_gates 2>;
|
|
|
|
phys = <&usbphy 1>;
|
|
|
|
phy-names = "usb";
|
|
|
|
};
|