blob: 173baaba3f2b85f31d7a010014a1338ea2ab50a3 [file] [log] [blame]
Angelo Dureghellob5867b12019-03-13 21:46:41 +01001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2018 Angelo Dureghello <angelo@sysam.it>
4 */
5
6/ {
7 compatible = "fsl,mcf5272";
8
9 aliases {
10 serial0 = &uart0;
Angelo Durgehello04e5dd52019-11-15 23:54:12 +010011 fec0 = &fec0;
Angelo Dureghellob5867b12019-03-13 21:46:41 +010012 };
13
14 soc {
15 compatible = "simple-bus";
16 #address-cells = <1>;
17 #size-cells = <1>;
18
19 mbar: mbar@10000000 {
20 compatible = "simple-bus";
21 #address-cells = <1>;
22 #size-cells = <1>;
23 ranges = <0x00000000 0x10000000 0x10000>;
24 reg = <0x10000000 0x10000>;
25
26 uart0: uart@100 {
27 compatible = "fsl,mcf-uart";
28 reg = <0x100 0x40>;
29 status = "disabled";
30 };
31
32 uart1: uart@140 {
33 compatible = "fsl,mcf-uart";
34 reg = <0x140 0x40>;
35 status = "disabled";
36 };
Angelo Durgehello04e5dd52019-11-15 23:54:12 +010037
38 fec0: ethernet@840 {
39 compatible = "fsl,mcf-fec";
40 reg = <0x840 0x400>;
41 mii-base = <0>;
42 max-speed = <100>;
43 timeout-loop = <50000>;
44 status = "disabled";
45 };
Angelo Dureghellob5867b12019-03-13 21:46:41 +010046 };
47 };
48};