Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1// SPDX-License-Identifier: GPL-2.0+ OR MIT
2/*
3 * Apple TV HD, iPhone 6, iPhone 6 Plus, iPad mini 4, iPod touch 6
4 *
5 * This file contains parts common to all Apple A8 devices.
6 *
7 * target-type: J42d, J96, J97, N56, N61, N102
8 *
9 * Copyright (c) 2024, Nick Chan <towinchenmi@gmail.com>
10 */
11
12/ {
13 aliases {
14 serial0 = &serial0;
15 serial6 = &serial6;
16 };
17
18 chosen {
19 #address-cells = <2>;
20 #size-cells = <2>;
21 ranges;
22 };
23
24 memory@800000000 {
25 device_type = "memory";
26 reg = <0x8 0 0 0>; /* To be filled by loader */
27 };
28
29 reserved-memory {
30 #address-cells = <2>;
31 #size-cells = <2>;
32 ranges;
33
34 /* To be filled by loader */
35 };
36};