• 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,mcf5307";
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 */
19		mbar: mbar@10000000 {
20			compatible = "simple-bus";
21			#address-cells = <1>;
22			#size-cells = <1>;
23			ranges = <0x00000000 0x10000000 0x10000>;
24			reg = <0x10000000 0x10000>;
25
26			uart0: uart@1c0 {
27				compatible = "fsl,mcf-uart";
28				reg = <0x1c0 0x40>;
29				status = "disabled";
30			};
31
32			uart1: uart@200 {
33				compatible = "fsl,mcf-uart";
34				reg = <0x200 0x40>;
35				status = "disabled";
36			};
37		};
38	};
39};
40