* [PATCH] usb: dwc3: imx8mp: detect dwc3 child nodes with name "usb*"
@ 2021-04-30 9:15 Heiko Schocher
2021-04-30 10:03 ` Felipe Balbi
0 siblings, 1 reply; 3+ messages in thread
From: Heiko Schocher @ 2021-04-30 9:15 UTC (permalink / raw)
To: linux-arm-kernel
Cc: Heiko Schocher, Fabio Estevam, Felipe Balbi, Greg Kroah-Hartman,
NXP Linux Team, Pengutronix Kernel Team, Sascha Hauer, Shawn Guo,
Teresa Remmet, Zhen Lei, devicetree, linux-kernel, linux-usb
commit:
d1689cd3c0f4: ("arm64: dts: imx8mp: Use the correct name for child node "snps, dwc3")
renamed "dwc3@3*" nodes in imx8mp.dtsi to "usb@3*"
glue layer dwc3-imx8mp.c searches for "dwc3" and so drop failure
on boot:
imx8mp-dwc3 32f10100.usb: failed to find dwc3 core child
imx8mp-dwc3: probe of 32f10100.usb failed with error 1
imx8mp-dwc3 32f10108.usb: failed to find dwc3 core child
imx8mp-dwc3: probe of 32f10108.usb failed with error 1
now. Fix this (and allow old style too)
Tested on "PHYTEC phyBOARD-Pollux i.MX8MP" board.
fixes: d1689cd3c0f4: ("arm64: dts: imx8mp: Use the correct name for child node "snps, dwc3")
Signed-off-by: Heiko Schocher <hs@denx.de>
---
drivers/usb/dwc3/dwc3-imx8mp.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/usb/dwc3/dwc3-imx8mp.c b/drivers/usb/dwc3/dwc3-imx8mp.c
index b13cfab89d532..eb85ddc50f7c7 100644
--- a/drivers/usb/dwc3/dwc3-imx8mp.c
+++ b/drivers/usb/dwc3/dwc3-imx8mp.c
@@ -165,7 +165,8 @@ static int dwc3_imx8mp_probe(struct platform_device *pdev)
if (err < 0)
goto disable_rpm;
- dwc3_np = of_get_child_by_name(node, "dwc3");
+ dwc3_np = of_get_child_by_name(node, "usb") ? :
+ of_get_child_by_name(node, "dwc3");
if (!dwc3_np) {
dev_err(dev, "failed to find dwc3 core child\n");
goto disable_rpm;
--
2.30.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] usb: dwc3: imx8mp: detect dwc3 child nodes with name "usb*"
2021-04-30 9:15 [PATCH] usb: dwc3: imx8mp: detect dwc3 child nodes with name "usb*" Heiko Schocher
@ 2021-04-30 10:03 ` Felipe Balbi
2021-04-30 10:15 ` Heiko Schocher
0 siblings, 1 reply; 3+ messages in thread
From: Felipe Balbi @ 2021-04-30 10:03 UTC (permalink / raw)
To: Heiko Schocher, linux-arm-kernel
Cc: Heiko Schocher, Fabio Estevam, Greg Kroah-Hartman, NXP Linux Team,
Pengutronix Kernel Team, Sascha Hauer, Shawn Guo, Teresa Remmet,
Zhen Lei, devicetree, linux-kernel, linux-usb
[-- Attachment #1: Type: text/plain, Size: 872 bytes --]
Heiko Schocher <hs@denx.de> writes:
> commit:
> d1689cd3c0f4: ("arm64: dts: imx8mp: Use the correct name for child node "snps, dwc3")
>
> renamed "dwc3@3*" nodes in imx8mp.dtsi to "usb@3*"
>
> glue layer dwc3-imx8mp.c searches for "dwc3" and so drop failure
> on boot:
> imx8mp-dwc3 32f10100.usb: failed to find dwc3 core child
> imx8mp-dwc3: probe of 32f10100.usb failed with error 1
> imx8mp-dwc3 32f10108.usb: failed to find dwc3 core child
> imx8mp-dwc3: probe of 32f10108.usb failed with error 1
>
> now. Fix this (and allow old style too)
>
> Tested on "PHYTEC phyBOARD-Pollux i.MX8MP" board.
>
> fixes: d1689cd3c0f4: ("arm64: dts: imx8mp: Use the correct name for child node "snps, dwc3")
> Signed-off-by: Heiko Schocher <hs@denx.de>
already sent, see https://lore.kernel.org/r/1619765836-20387-1-git-send-email-jun.li@nxp.com
--
balbi
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 511 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] usb: dwc3: imx8mp: detect dwc3 child nodes with name "usb*"
2021-04-30 10:03 ` Felipe Balbi
@ 2021-04-30 10:15 ` Heiko Schocher
0 siblings, 0 replies; 3+ messages in thread
From: Heiko Schocher @ 2021-04-30 10:15 UTC (permalink / raw)
To: Felipe Balbi, linux-arm-kernel
Cc: Fabio Estevam, Greg Kroah-Hartman, NXP Linux Team,
Pengutronix Kernel Team, Sascha Hauer, Shawn Guo, Teresa Remmet,
Zhen Lei, devicetree, linux-kernel, linux-usb
Hi Felipe,
On 30.04.21 12:03, Felipe Balbi wrote:
> Heiko Schocher <hs@denx.de> writes:
>
>> commit:
>> d1689cd3c0f4: ("arm64: dts: imx8mp: Use the correct name for child node "snps, dwc3")
>>
>> renamed "dwc3@3*" nodes in imx8mp.dtsi to "usb@3*"
>>
>> glue layer dwc3-imx8mp.c searches for "dwc3" and so drop failure
>> on boot:
>> imx8mp-dwc3 32f10100.usb: failed to find dwc3 core child
>> imx8mp-dwc3: probe of 32f10100.usb failed with error 1
>> imx8mp-dwc3 32f10108.usb: failed to find dwc3 core child
>> imx8mp-dwc3: probe of 32f10108.usb failed with error 1
>>
>> now. Fix this (and allow old style too)
>>
>> Tested on "PHYTEC phyBOARD-Pollux i.MX8MP" board.
>>
>> fixes: d1689cd3c0f4: ("arm64: dts: imx8mp: Use the correct name for child node "snps, dwc3")
>> Signed-off-by: Heiko Schocher <hs@denx.de>
>
> already sent, see https://lore.kernel.org/r/1619765836-20387-1-git-send-email-jun.li@nxp.com
Ah, great. Missed this patch, thanks!
So, please forget this patch.
bye,
Heiko
--
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-52 Fax: +49-8142-66989-80 Email: hs@denx.de
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-04-30 10:15 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-30 9:15 [PATCH] usb: dwc3: imx8mp: detect dwc3 child nodes with name "usb*" Heiko Schocher
2021-04-30 10:03 ` Felipe Balbi
2021-04-30 10:15 ` Heiko Schocher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox