blob: 3df17b445c4d2e82ef2a544779a35a2cdb441761 [file] [log] [blame]
Angelo Dureghelloc6164c92019-03-13 21:46:41 +01001// SPDX-License-Identifier: GPL-2.0+
2/*
Angelo Durgehelloc6e17f92019-11-15 23:54:12 +01003 * Copyright (C) 2019 Angelo Dureghello <angelo@sysam.it>
Angelo Dureghelloc6164c92019-03-13 21:46:41 +01004 */
5
6/ {
7 compatible = "fsl,mcf5275";
8
9 aliases {
10 serial0 = &uart0;
Angelo Durgehelloc6e17f92019-11-15 23:54:12 +010011 fec0 = &fec0;
12 fec1 = &fec1;
Angelo Dureghelloc6164c92019-03-13 21:46:41 +010013 };
14
15 soc {
16 compatible = "simple-bus";
17 #address-cells = <1>;
18 #size-cells = <1>;
19
20 ipsbar: ipsbar@4000000 {
21 compatible = "simple-bus";
22 #address-cells = <1>;
23 #size-cells = <1>;
24 ranges = <0x00000000 0x40000000 0x40000000>;
25 reg = <0x40000000 0x40000000>;
26
Angelo Dureghello0e812302023-06-24 23:38:55 +020027 wdog0: watchdog@140000 {
28 compatible = "fsl,mcf5208-wdt";
29 reg = <0x140000 0x10>;
30 status = "disabled";
31 };
32
Angelo Dureghelloc6164c92019-03-13 21:46:41 +010033 uart0: uart@200 {
34 compatible = "fsl,mcf-uart";
35 reg = <0x200 0x40>;
36 status = "disabled";
37 };
38
39 uart1: uart@240 {
40 compatible = "fsl,mcf-uart";
41 reg = <0x240 0x40>;
42 status = "disabled";
43 };
44
45 uart2: uart@280 {
46 compatible = "fsl,mcf-uart";
47 reg = <0x280 0x40>;
48 status = "disabled";
49 };
Angelo Durgehelloc6e17f92019-11-15 23:54:12 +010050
51 fec0: ethernet@1000 {
52 compatible = "fsl,mcf-fec";
53 reg = <0x1000 0x800>;
54 max-speed = <100>;
55 phy-addr = <(-1)>;
56 timeout-loop = <50000>;
57 status = "disabled";
58 };
59
60 fec1: ethernet@1800 {
61 compatible = "fsl,mcf-fec";
62 reg = <0x1800 0x800>;
63 mii-base = <0>;
64 max-speed = <100>;
65 timeout-loop = <50000>;
66 status = "disabled";
67 };
Angelo Dureghellod768df12023-04-05 00:59:27 +020068
69 i2c0: i2c@300 {
70 compatible = "fsl-i2c";
71 #address-cells=<1>;
72 #size-cells=<0>;
73 cell-index = <0>;
74 reg = <0x300 0x14>;
75 clock-frequency = <100000>;
76 status = "disabled";
77 };
Angelo Dureghelloc6164c92019-03-13 21:46:41 +010078 };
79 };
80};