forked from Minki/linux
f40017e0f3
This adds Vybrid VF610 SoC support. The IP is very similar to i.MX6, however, the non-core registers are spread in two different register areas. Hence we support multiple instances of the USB misc driver and add the driver instance to the imx_usbmisc_data structure. Signed-off-by: Peter Chen <peter.chen@freescale.com> Signed-off-by: Stefan Agner <stefan@agner.ch> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16 lines
407 B
Plaintext
16 lines
407 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
|
|
"fsl,vf610-usbmisc" for Vybrid vf610
|
|
- reg: Should contain registers location and length
|
|
|
|
Examples:
|
|
usbmisc@02184800 {
|
|
#index-cells = <1>;
|
|
compatible = "fsl,imx6q-usbmisc";
|
|
reg = <0x02184800 0x200>;
|
|
};
|