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 power-domains = <&ps_disp0_fe &ps_disp0_be &ps_dp>; 26 /* Format properties will be added by loader */ 27 status = "disabled"; 28 }; 29 }; 30 31 memory@800000000 { 32 device_type = "memory"; 33 reg = <0x8 0 0 0>; /* To be filled by loader */ 34 }; 35 36 reserved-memory { 37 #address-cells = <2>; 38 #size-cells = <2>; 39 ranges; 40 41 /* To be filled by loader */ 42 }; 43}; 44 45&serial0 { 46 status = "okay"; 47}; 48