mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
04e5dd5115
Add basic ethernet controller devicetree nodes for all ColdFire families. Signed-off-by: Angelo Durgehello <angelo.dureghello@timesys.com>
46 lines
808 B
Text
46 lines
808 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2018 Angelo Dureghello <angelo@sysam.it>
|
|
*/
|
|
|
|
/ {
|
|
compatible = "fsl,mcf5208";
|
|
|
|
aliases {
|
|
serial0 = &uart0;
|
|
fec0 = &fec0;
|
|
};
|
|
|
|
soc {
|
|
compatible = "simple-bus";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
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";
|
|
};
|
|
|
|
fec0: ethernet@fc030000 {
|
|
compatible = "fsl,mcf-fec";
|
|
reg = <0xfc030000 0x400>;
|
|
mii-base = <0>;
|
|
max-speed = <100>;
|
|
timeout-loop = <50000>;
|
|
status = "disabled";
|
|
};
|
|
};
|
|
};
|