mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 09:27:35 +00:00
60929b0506
Enable DM USB, DM PHY and USB gadget support in imx8mm-mx8menlo SPL to let the board continue SDP loading of second stage after the first stage was loaded by BootROM SDP implementation. It is not possible to jump back into BootROM v1 and let the BootROM implementation continue the SDP loading, all this has to be performed by the U-Boot CI HDRC controller driver and SDP protocol implementation, both of which fit into the SPL just barely. With this patch, it is possible to start both U-Boot SPL and U-Boot using e.g. uuu on this board as follows: $ uuu -brun spl flash.bin Signed-off-by: Marek Vasut <marex@denx.de> Reviewed-by: Fabio Estevam <festevam@denx.de> Reviewed-by: Peng Fan <peng.fan@nxp.com>
42 lines
522 B
Text
42 lines
522 B
Text
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
|
/*
|
|
* Copyright 2021-2022 Marek Vasut <marex@denx.de>
|
|
*/
|
|
#include "imx8mm-verdin-wifi-dev-u-boot.dtsi"
|
|
|
|
/ {
|
|
chosen {
|
|
stdout-path = &uart1;
|
|
};
|
|
|
|
aliases {
|
|
/delete-property/ eeprom1;
|
|
/delete-property/ eeprom2;
|
|
usbphy0 = &usbphynop1;
|
|
usbphy1 = &usbphynop2;
|
|
};
|
|
};
|
|
|
|
&aips4 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&i2c4 {
|
|
/delete-node/ codec@1a;
|
|
};
|
|
|
|
®_usb_otg1_vbus {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&usbmisc1 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&usbphynop1 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&usbotg1 {
|
|
u-boot,dm-spl;
|
|
};
|