2018-09-01 00:17:54 +00:00
|
|
|
From 84920ea6544dd79a0d5fd1cdb2ee54e91bc657c4 Mon Sep 17 00:00:00 2001
|
2018-03-13 00:38:59 +00:00
|
|
|
From: Joshua Clayton <stillcompiling@gmail.com>
|
|
|
|
Date: Wed, 21 Jun 2017 14:42:06 +0800
|
2018-09-01 00:17:54 +00:00
|
|
|
Subject: [PATCH 11/13] ARM: dts: imx6qdl: Enable usb node children with <reg>
|
2018-03-13 00:38:59 +00:00
|
|
|
|
|
|
|
Give usb nodes #address and #size attributes, so that a child node
|
|
|
|
representing a permanently connected device such as an onboard hub may
|
|
|
|
be addressed with a <reg> attribute
|
|
|
|
|
|
|
|
Signed-off-by: Joshua Clayton <stillcompiling@gmail.com>
|
|
|
|
Signed-off-by: Peter Chen <peter.chen@nxp.com>
|
|
|
|
---
|
|
|
|
arch/arm/boot/dts/imx6qdl.dtsi | 6 ++++++
|
|
|
|
1 file changed, 6 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/arch/arm/boot/dts/imx6qdl.dtsi b/arch/arm/boot/dts/imx6qdl.dtsi
|
2018-09-01 00:17:54 +00:00
|
|
|
index 61d2d26afbf4..bb67b1e6bc91 100644
|
2018-03-13 00:38:59 +00:00
|
|
|
--- a/arch/arm/boot/dts/imx6qdl.dtsi
|
|
|
|
+++ b/arch/arm/boot/dts/imx6qdl.dtsi
|
2018-09-01 00:17:54 +00:00
|
|
|
@@ -964,6 +964,8 @@
|
2018-03-13 00:38:59 +00:00
|
|
|
|
|
|
|
usbh1: usb@2184200 {
|
|
|
|
compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
|
|
|
|
+ #address-cells = <1>;
|
|
|
|
+ #size-cells = <0>;
|
|
|
|
reg = <0x02184200 0x200>;
|
|
|
|
interrupts = <0 40 IRQ_TYPE_LEVEL_HIGH>;
|
|
|
|
clocks = <&clks IMX6QDL_CLK_USBOH3>;
|
2018-09-01 00:17:54 +00:00
|
|
|
@@ -978,6 +980,8 @@
|
2018-03-13 00:38:59 +00:00
|
|
|
|
|
|
|
usbh2: usb@2184400 {
|
|
|
|
compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
|
|
|
|
+ #address-cells = <1>;
|
|
|
|
+ #size-cells = <0>;
|
|
|
|
reg = <0x02184400 0x200>;
|
|
|
|
interrupts = <0 41 IRQ_TYPE_LEVEL_HIGH>;
|
|
|
|
clocks = <&clks IMX6QDL_CLK_USBOH3>;
|
2018-09-01 00:17:54 +00:00
|
|
|
@@ -991,6 +995,8 @@
|
2018-03-13 00:38:59 +00:00
|
|
|
|
|
|
|
usbh3: usb@2184600 {
|
|
|
|
compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
|
|
|
|
+ #address-cells = <1>;
|
|
|
|
+ #size-cells = <0>;
|
|
|
|
reg = <0x02184600 0x200>;
|
|
|
|
interrupts = <0 42 IRQ_TYPE_LEVEL_HIGH>;
|
|
|
|
clocks = <&clks IMX6QDL_CLK_USBOH3>;
|
|
|
|
--
|
2018-07-13 03:30:17 +00:00
|
|
|
2.18.0
|
2018-03-13 00:38:59 +00:00
|
|
|
|