Tom Rini | 844493d | 2025-01-26 16:17:47 -0600 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 OR MIT |
| 2 | /* |
| 3 | * Apple iPhone 7, iPhone 7 Plus, iPad 6, iPad 7, iPod touch 7 |
| 4 | * |
| 5 | * This file contains parts common to all Apple A10 devices. |
| 6 | * |
| 7 | * target-type: D10, D11, D101, D111, J71b, J72b, J171, J172, N112 |
| 8 | * |
| 9 | * Copyright (c) 2024, Nick Chan <towinchenmi@gmail.com> |
| 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 | /* Format properties will be added by loader */ |
| 28 | status = "disabled"; |
| 29 | }; |
| 30 | }; |
| 31 | |
| 32 | memory@800000000 { |
| 33 | device_type = "memory"; |
| 34 | reg = <0x8 0 0 0>; /* To be filled by loader */ |
| 35 | }; |
| 36 | |
| 37 | reserved-memory { |
| 38 | #address-cells = <2>; |
| 39 | #size-cells = <2>; |
| 40 | ranges; |
| 41 | |
| 42 | /* To be filled by loader */ |
| 43 | }; |
| 44 | }; |
| 45 | |
| 46 | &serial0 { |
| 47 | status = "okay"; |
| 48 | }; |