1// SPDX-License-Identifier: GPL-2.0+ 2/* 3 * Copyright (C) 2018 Angelo Dureghello <angelo@sysam.it> 4 */ 5 6/ { 7 compatible = "fsl,mcf5208"; 8 9 aliases { 10 serial0 = &uart0; 11 }; 12 13 soc { 14 compatible = "simple-bus"; 15 #address-cells = <1>; 16 #size-cells = <1>; 17 18 uart0: uart@fc060000 { 19 compatible = "fsl,mcf-uart"; 20 reg = <0xfc060000 0x40>; 21 status = "disabled"; 22 }; 23 24 uart1: uart@fc064000 { 25 compatible = "fsl,mcf-uart"; 26 reg = <0xfc064000 0x40>; 27 status = "disabled"; 28 }; 29 30 uart2: uart@fc068000 { 31 compatible = "fsl,mcf-uart"; 32 reg = <0xfc068000 0x40>; 33 status = "disabled"; 34 }; 35 }; 36}; 37