• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// 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;
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@100 {
26				compatible = "fsl,mcf-uart";
27				reg = <0x100 0x40>;
28				status = "disabled";
29			};
30
31			uart1: uart@140 {
32				compatible = "fsl,mcf-uart";
33				reg = <0x140 0x40>;
34				status = "disabled";
35			};
36		};
37	};
38};
39