mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 19:53:59 +08:00
d142d6be23
i.MX usb controllers share non-core registers, which may include SoC specific controls. We turn it into a usbmisc device and usbmisc driver set operations needed by ci13xxx_imx driver. For example, Sabrelite board has bad over-current design, we can usbmisc to disable over-current detection. Acked-by: Sascha Hauer <s.hauer@pengutronix.de> Signed-off-by: Richard Zhao <richard.zhao@freescale.com> Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15 lines
369 B
Plaintext
15 lines
369 B
Plaintext
* Freescale i.MX non-core registers
|
|
|
|
Required properties:
|
|
- #index-cells: Cells used to descibe usb controller index. Should be <1>
|
|
- compatible: Should be one of below:
|
|
"fsl,imx6q-usbmisc" for imx6q
|
|
- reg: Should contain registers location and length
|
|
|
|
Examples:
|
|
usbmisc@02184800 {
|
|
#index-cells = <1>;
|
|
compatible = "fsl,imx6q-usbmisc";
|
|
reg = <0x02184800 0x200>;
|
|
};
|