blob: b3484c2c84b1e9f228e5b52d197904d5a6e93eff [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,mcf5271";
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 ipsbar: ipsbar@4000000 {
20 compatible = "simple-bus";
21 #address-cells = <1>;
22 #size-cells = <1>;
23 ranges = <0x00000000 0x40000000 0x40000000>;
24 reg = <0x40000000 0x40000000>;
25
26 uart0: uart@200 {
27 compatible = "fsl,mcf-uart";
28 reg = <0x200 0x40>;
29 status = "disabled";
30 };
31
32 uart1: uart@240 {
33 compatible = "fsl,mcf-uart";
34 reg = <0x240 0x40>;
35 status = "disabled";
36 };
37
38 uart2: uart@280 {
39 compatible = "fsl,mcf-uart";
40 reg = <0x280 0x40>;
41 status = "disabled";
42 };
Angelo Durgehello04e5dd52019-11-15 23:54:12 +010043
44 fec0: ethernet@1000 {
45 compatible = "fsl,mcf-fec";
46 reg = <0x1000 0x400>;
47 mii-base = <0>;
48 max-speed = <100>;
49 timeout-loop = <50000>;
50 status = "disabled";
51 };
Angelo Dureghellob5867b12019-03-13 21:46:41 +010052 };
53 };
54};