1// SPDX-License-Identifier: GPL-2.0+ OR MIT 2/* 3 * Apple TV 4K, Apple iPad Pro 2 4 * 5 * This file contains parts common to all Apple A10X devices. 6 * 7 * Copyright (c) 2024, Nick Chan <towinchenmi@gmail.com> 8 */ 9 10/ { 11 aliases { 12 serial0 = &serial0; 13 }; 14 15 chosen { 16 #address-cells = <2>; 17 #size-cells = <2>; 18 ranges; 19 20 stdout-path = "serial0"; 21 22 framebuffer0: framebuffer@0 { 23 compatible = "apple,simple-framebuffer", "simple-framebuffer"; 24 reg = <0 0 0 0>; /* To be filled by loader */ 25 /* Format properties will be added by loader */ 26 status = "disabled"; 27 }; 28 }; 29 30 memory@800000000 { 31 device_type = "memory"; 32 reg = <0x8 0 0 0>; /* To be filled by loader */ 33 }; 34 35 reserved-memory { 36 #address-cells = <2>; 37 #size-cells = <2>; 38 ranges; 39 40 /* To be filled by loader */ 41 }; 42}; 43 44&serial0 { 45 status = "okay"; 46}; 47