mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 16:37:30 +00:00
4ea0711104
USB1 can be used by the romboot on all am4372 platforms to download a firmware (SPL in our case). It makes sense to enable USB1 in the SPL to download u-boot. Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
40 lines
624 B
Text
40 lines
624 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2018 Texas Instruments Incorporated - http://www.ti.com/
|
|
*/
|
|
|
|
&am43xx_control_usb2phy1 {
|
|
compatible = "ti,control-phy-usb2-am437", "syscon";
|
|
};
|
|
|
|
&am43xx_control_usb2phy2 {
|
|
compatible = "ti,control-phy-usb2-am437", "syscon";
|
|
};
|
|
|
|
&ocp2scp0 {
|
|
compatible = "ti,am437x-ocp2scp", "ti,omap-ocp2scp", "simple-bus";
|
|
};
|
|
|
|
&ocp2scp1 {
|
|
compatible = "ti,am437x-ocp2scp", "ti,omap-ocp2scp", "simple-bus";
|
|
};
|
|
|
|
&dwc3_1 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&usb1 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&usb2_phy1 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&am43xx_control_usb2phy1 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&ocp2scp0 {
|
|
u-boot,dm-spl;
|
|
};
|