blob: efcfdd96aefd5007bbbebf4acf795aa721571440 [file] [log] [blame]
Mathew McBride25914872023-04-12 07:38:15 +00001// SPDX-License-Identifier: GPL-2.0+
2#include <config.h>
3
Mathew McBrided8a8b632023-04-12 07:38:16 +00004/{
5 memory@80000000 {
6 device_type = "memory";
7 reg = <0x00000000 0x80000000 0 0x80000000>;
8 /* DRAM space - 1, size : 2 GB DRAM */
9 };
10};
11
Mathew McBride25914872023-04-12 07:38:15 +000012&duart0 {
13 bootph-all;
14};
15
16&duart1 {
17 bootph-all;
18};
Mathew McBride843f60b2023-04-12 07:38:20 +000019
Mathew McBridead558ef2023-04-12 07:38:25 +000020/* MDIO controllers - U-Boot uses a different
21 * driver for the DPAA2 (LS/LX2) family,
22 * so must match fsl,ls-mdio first.
23 */
24&emdio1 {
25 compatible = "fsl,ls-mdio", "fsl,fman-memac-mdio";
26};
27
28&emdio2 {
29 compatible = "fsl,ls-mdio", "fsl,fman-memac-mdio";
30};
31
Mathew McBride15745002023-04-12 07:38:26 +000032/* DPAA2 Management Complex (MC)
33 * "simple-mfd" compatible used by U-Boot only,
34 * to allow driver model functionality.
35 */
36&fsl_mc {
37 compatible = "fsl,qoriq-mc", "simple-mfd";
38
39 dpmacs {
40 compatible = "simple-mfd";
41 };
42};
43
Mathew McBride843f60b2023-04-12 07:38:20 +000044&pcie1 {
45 status = "okay";
46};
47
48&pcie2 {
49 status = "okay";
50};
51
52&pcie3 {
53 status = "okay";
54};
55
Mathew McBride10ff7e62023-04-12 07:38:24 +000056&usb0 {
57 compatible = "fsl,layerscape-dwc3", "snps,dwc3";
58};
59
60&usb1 {
61 compatible = "fsl,layerscape-dwc3", "snps,dwc3";
62};
63