2019-03-12 16:32:32 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019, Linaro
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <nxp/nxp_rt.dtsi>
|
|
|
|
|
2019-03-15 17:08:15 +08:00
|
|
|
/* i.MX rt1060 has two continuous on-chip RAM, one is part of the
|
|
|
|
* FlexRAM mapped at 0x20280000 (vs 0x20280000 on rt1050) and is
|
|
|
|
* configurable (256KB by defaults), the other one is dedicated 512KB
|
|
|
|
* ram (OCRAM2) mapped at 0x20200000. In order to have a continuous
|
|
|
|
* region, we describe them in one 768Kb unique node.
|
|
|
|
*/
|
2020-04-14 23:03:32 +08:00
|
|
|
&ocram {
|
2019-03-15 17:08:15 +08:00
|
|
|
compatible = "mmio-sram";
|
2020-10-22 02:41:50 +08:00
|
|
|
reg = <0x20200000 DT_SIZE_K(768)>;
|
2019-03-12 16:32:32 +08:00
|
|
|
};
|
2020-03-05 21:23:48 +08:00
|
|
|
|
|
|
|
/* i.MX rt1060 has a second Ethernet controller. */
|
|
|
|
/ {
|
|
|
|
soc {
|
2020-04-14 23:03:32 +08:00
|
|
|
enet2: ethernet@402d4000 {
|
2020-03-05 21:23:48 +08:00
|
|
|
compatible = "nxp,kinetis-ethernet";
|
|
|
|
reg = <0x402D4000 0x628>;
|
|
|
|
interrupts = <152 0>;
|
|
|
|
interrupt-names = "COMMON";
|
|
|
|
status = "disabled";
|
|
|
|
label = "ETH_1";
|
|
|
|
ptp {
|
|
|
|
compatible = "nxp,kinetis-ptp";
|
|
|
|
status = "disabled";
|
|
|
|
interrupts = <153 0>;
|
|
|
|
interrupt-names = "IEEE1588_TMR";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|