blob: 248b3dc68bf3679c370c737d4a6e227276a956e2 [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,mcf5249";
8
9 aliases {
10 serial0 = &uart0;
11 };
12
13 soc {
14 compatible = "simple-bus";
15 #address-cells = <1>;
16 #size-cells = <1>;
17
18 mbar: mbar@10000000 {
19 compatible = "simple-bus";
20 #address-cells = <1>;
21 #size-cells = <1>;
22 ranges = <0x00000000 0x10000000 0x10000>;
23 reg = <0x10000000 0x10000>;
24
25 uart0: uart@1c0 {
26 compatible = "fsl,mcf-uart";
27 reg = <0x1c0 0x40>;
28 status = "disabled";
29 };
30
31 uart1: uart@200 {
32 compatible = "fsl,mcf-uart";
33 reg = <0x200 0x40>;
34 status = "disabled";
35 };
36 };
37 };
38};