[PATCH master 1/2] ARM: Layerscape: LS1046: re-enable USB bus snooping

Ahmad Fatoum a.fatoum at pengutronix.de
Wed Feb 25 07:28:29 PST 2026


Newer kernel device trees no longer have the snps,dwc3 compatible we
match against, but instead have fsl,ls1028a-dwc3.

This is also the case for the DT embedded into barebox, so have barebox
match against the new compatible. Compatibility for the old compatible
is not needed as this code only runs against the barebox live tree.

Fixes: ea73c9d2c24e ("Revert "ARM64: dts: Layerscape: workaround v6.19-rc1 DT sync DWC3 breakage"")
Fixes: a3bf6c16f77d ("dts: update to v6.19-rc1")
Signed-off-by: Ahmad Fatoum <a.fatoum at pengutronix.de>
---
 arch/arm/mach-layerscape/soc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-layerscape/soc.c b/arch/arm/mach-layerscape/soc.c
index 87702a066988..5b1936860eb0 100644
--- a/arch/arm/mach-layerscape/soc.c
+++ b/arch/arm/mach-layerscape/soc.c
@@ -130,7 +130,7 @@ static void layerscape_usb_enable_snooping(void)
 {
 	struct device_node *np;
 
-	for_each_compatible_node(np, NULL, "snps,dwc3") {
+	for_each_compatible_node(np, NULL, "fsl,ls1028a-dwc3") {
 		struct resource res;
 
 		if (of_address_to_resource(np, 0, &res))
-- 
2.47.3




More information about the barebox mailing list