mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-02 06:17:15 +00:00
Synchronise the USB device tree definition with Linux, allowing the U-Boot control FDT to be used to boot a Linux system with working USB. An extra compatible string, "fsl,layerscape-dwc3" is needed for special handling in U-Boot, so has been added to the -u-boot.dtsi file. It might be better to add this to the Linux source bindings. Signed-off-by: Mathew McBride <matt@traverse.com.au> Reviewed-by: Peng Fan <peng.fan@nxp.com> Reviewed-by: Peng Fan <peng.fan@nxp.com> Signed-off-by: Peng Fan <peng.fan@nxp.com> Reviewed-by: Ioana Ciornei <ioana.ciornei@nxp.com> Tested-by: Ioana Ciornei <ioana.ciornei@nxp.com> # on LS1088A-RDB
39 lines
478 B
Text
39 lines
478 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
#include <config.h>
|
|
|
|
/{
|
|
memory@80000000 {
|
|
device_type = "memory";
|
|
reg = <0x00000000 0x80000000 0 0x80000000>;
|
|
/* DRAM space - 1, size : 2 GB DRAM */
|
|
};
|
|
};
|
|
|
|
&duart0 {
|
|
bootph-all;
|
|
};
|
|
|
|
&duart1 {
|
|
bootph-all;
|
|
};
|
|
|
|
&pcie1 {
|
|
status = "okay";
|
|
};
|
|
|
|
&pcie2 {
|
|
status = "okay";
|
|
};
|
|
|
|
&pcie3 {
|
|
status = "okay";
|
|
};
|
|
|
|
&usb0 {
|
|
compatible = "fsl,layerscape-dwc3", "snps,dwc3";
|
|
};
|
|
|
|
&usb1 {
|
|
compatible = "fsl,layerscape-dwc3", "snps,dwc3";
|
|
};
|
|
|