1// SPDX-License-Identifier: GPL-2.0+ OR MIT 2/* 3 * Apple M3 MacBook Air/Pro and iMac (M3, 2023/2024) 4 * 5 * This file contains parts common to all Apple M3 devices using the t8122. 6 * 7 * target-type: J433, J434, J504, J613, J615 8 * 9 * Copyright The Asahi Linux Contributors 10 */ 11 12/ { 13 aliases { 14 serial0 = &serial0; 15 }; 16 17 chosen { 18 #address-cells = <2>; 19 #size-cells = <2>; 20 ranges; 21 22 stdout-path = "serial0"; 23 24 framebuffer0: framebuffer@0 { 25 compatible = "apple,simple-framebuffer", "simple-framebuffer"; 26 reg = <0 0 0 0>; /* To be filled by loader */ 27 power-domains = <&ps_disp_cpu>, <&ps_dptx_ext_phy>; 28 /* Format properties will be added by loader */ 29 status = "disabled"; 30 }; 31 }; 32 33 reserved-memory { 34 #address-cells = <2>; 35 #size-cells = <2>; 36 ranges; 37 /* To be filled by loader */ 38 }; 39 40 memory@800000000 { 41 device_type = "memory"; 42 reg = <0x8 0 0x2 0>; /* To be filled by loader */ 43 }; 44}; 45 46&serial0 { 47 status = "okay"; 48}; 49