2019-03-13 20:46:41 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Angelo Dureghello <angelo@sysam.it>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/ {
|
|
|
|
compatible = "fsl,mcf5208";
|
|
|
|
|
|
|
|
aliases {
|
|
|
|
serial0 = &uart0;
|
2019-11-15 22:54:12 +00:00
|
|
|
fec0 = &fec0;
|
2019-03-13 20:46:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
soc {
|
|
|
|
compatible = "simple-bus";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
|
|
|
|
2023-06-24 21:38:55 +00:00
|
|
|
wdog0: watchdog@fc08c000 {
|
|
|
|
compatible = "fsl,mcf5208-wdt";
|
|
|
|
reg = <0xfc08c000 0x10>;
|
|
|
|
status = "disabled";
|
|
|
|
};
|
|
|
|
|
2019-03-13 20:46:41 +00:00
|
|
|
uart0: uart@fc060000 {
|
|
|
|
compatible = "fsl,mcf-uart";
|
|
|
|
reg = <0xfc060000 0x40>;
|
|
|
|
status = "disabled";
|
|
|
|
};
|
|
|
|
|
|
|
|
uart1: uart@fc064000 {
|
|
|
|
compatible = "fsl,mcf-uart";
|
|
|
|
reg = <0xfc064000 0x40>;
|
|
|
|
status = "disabled";
|
|
|
|
};
|
|
|
|
|
|
|
|
uart2: uart@fc068000 {
|
|
|
|
compatible = "fsl,mcf-uart";
|
|
|
|
reg = <0xfc068000 0x40>;
|
|
|
|
status = "disabled";
|
|
|
|
};
|
2019-11-15 22:54:12 +00:00
|
|
|
|
|
|
|
fec0: ethernet@fc030000 {
|
|
|
|
compatible = "fsl,mcf-fec";
|
|
|
|
reg = <0xfc030000 0x400>;
|
|
|
|
mii-base = <0>;
|
|
|
|
max-speed = <100>;
|
|
|
|
timeout-loop = <50000>;
|
|
|
|
status = "disabled";
|
|
|
|
};
|
2023-04-04 22:59:27 +00:00
|
|
|
|
|
|
|
i2c0: i2c@fc058000 {
|
|
|
|
compatible = "fsl-i2c";
|
|
|
|
#address-cells=<1>;
|
|
|
|
#size-cells=<0>;
|
|
|
|
cell-index = <0>;
|
|
|
|
reg = <0xfc058000 0x14>;
|
|
|
|
clock-frequency = <100000>;
|
|
|
|
status = "disabled";
|
|
|
|
};
|
2019-03-13 20:46:41 +00:00
|
|
|
};
|
|
|
|
};
|