blob: b7ecc99c098b3c4a541601d65e58f219456bc204 [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,mcf5445x";
8
9 aliases {
10 serial0 = &uart0;
11 spi0 = &dspi0;
Angelo Durgehello04e5dd52019-11-15 23:54:12 +010012 fec0 = &fec0;
13 fec1 = &fec1;
Angelo Dureghellob5867b12019-03-13 21:46:41 +010014 };
15
16 soc {
17 compatible = "simple-bus";
18 #address-cells = <1>;
19 #size-cells = <1>;
20
21 uart0: uart@fc060000 {
22 compatible = "fsl,mcf-uart";
23 reg = <0xfc060000 0x40>;
24 status = "disabled";
25 };
26
27 uart1: uart@fc064000 {
28 compatible = "fsl,mcf-uart";
29 reg = <0xfc064000 0x40>;
30 status = "disabled";
31 };
32
33 uart2: uart@fc068000 {
34 compatible = "fsl,mcf-uart";
35 reg = <0xfc068000 0x40>;
36 status = "disabled";
37 };
38
39 dspi0: dspi@fc05c000 {
40 compatible = "fsl,mcf-dspi";
41 #address-cells = <1>;
42 #size-cells = <0>;
43 reg = <0xfc05c000 0x100>;
44 spi-max-frequency = <50000000>;
45 num-cs = <4>;
46 spi-mode = <0>;
47 status = "disabled";
48 };
Angelo Durgehello04e5dd52019-11-15 23:54:12 +010049
50 fec0: ethernet@fc030000 {
51 compatible = "fsl,mcf-fec";
52 reg = <0xfc030000 0x4000>;
53 mii-base = <0>;
54 max-speed = <100>;
55 timeout-loop = <50000>;
56 status = "disabled";
57 };
58
59 fec1: ethernet@fc034000 {
60 compatible = "fsl,mcf-fec";
61 reg = <0xfc034000 0x4000>;
62 mii-base = <1>;
63 max-speed = <100>;
64 timeout-loop = <50000>;
65 status = "disabled";
66 };
Angelo Dureghellob5867b12019-03-13 21:46:41 +010067 };
68};