mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
1574500139
This moves the fsl-mc device tree definition under the /soc node, as well as adding interrupt and IOMMU definitions that were not in U-Boot before. There are slight differences between the two bindings as we add a "simple-mfd" compatible to function under U-Boot's driver model. Signed-off-by: Mathew McBride <matt@traverse.com.au> 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
63 lines
964 B
Text
63 lines
964 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;
|
|
};
|
|
|
|
/* MDIO controllers - U-Boot uses a different
|
|
* driver for the DPAA2 (LS/LX2) family,
|
|
* so must match fsl,ls-mdio first.
|
|
*/
|
|
&emdio1 {
|
|
compatible = "fsl,ls-mdio", "fsl,fman-memac-mdio";
|
|
};
|
|
|
|
&emdio2 {
|
|
compatible = "fsl,ls-mdio", "fsl,fman-memac-mdio";
|
|
};
|
|
|
|
/* DPAA2 Management Complex (MC)
|
|
* "simple-mfd" compatible used by U-Boot only,
|
|
* to allow driver model functionality.
|
|
*/
|
|
&fsl_mc {
|
|
compatible = "fsl,qoriq-mc", "simple-mfd";
|
|
|
|
dpmacs {
|
|
compatible = "simple-mfd";
|
|
};
|
|
};
|
|
|
|
&pcie1 {
|
|
status = "okay";
|
|
};
|
|
|
|
&pcie2 {
|
|
status = "okay";
|
|
};
|
|
|
|
&pcie3 {
|
|
status = "okay";
|
|
};
|
|
|
|
&usb0 {
|
|
compatible = "fsl,layerscape-dwc3", "snps,dwc3";
|
|
};
|
|
|
|
&usb1 {
|
|
compatible = "fsl,layerscape-dwc3", "snps,dwc3";
|
|
};
|
|
|