Skip to content
Snippets Groups Projects
Commit 56aa021f authored by Michael Walle's avatar Michael Walle Committed by Peng Fan
Browse files

board: sl28: fix USB0


Since commit 61ff1328 ("board: sl28: move to OF_UPSTREAM") USB0 is
broken because the former u-boot soc dtsi was setting dr_mode to "host"
but the linux device tree isn't. That is because linux fully supports
OTG but u-boot doesn't. Therefore, u-boot only ever enabled host mode
and never OTG mode. Add it to our board "-u-boot.dtsi" to fix it.

Fixes: 61ff1328 ("board: sl28: move to OF_UPSTREAM")
Reported-by: default avatarHeiko Thiery <heiko.thiery@gmail.com>
Signed-off-by: default avatarMichael Walle <mwalle@kernel.org>
Tested-by: default avatarHeiko Thiery <heiko.thiery@gmail.com>
Signed-off-by: Peng Fan's avatarPeng Fan <peng.fan@nxp.com>
parent 079ae273
No related branches found
No related tags found
No related merge requests found
...@@ -203,3 +203,7 @@ ...@@ -203,3 +203,7 @@
&sysclk { &sysclk {
bootph-all; bootph-all;
}; };
&usb0 {
dr_mode = "host";
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment