summaryrefslogtreecommitdiff
path: root/arch/arm64/boot/dts/apple/t8103-j274.dts
diff options
context:
space:
mode:
authorHector Martin <marcan@marcan.st>2021-02-04 22:30:21 +0900
committerHector Martin <marcan@marcan.st>2021-04-08 20:18:41 +0900
commit7d2d16ccf15d8eb84accfaf44a0b324f36e39588 (patch)
treef1b591c74799274088577f214262b8a49cf1c80d /arch/arm64/boot/dts/apple/t8103-j274.dts
parentaad9742f0c8f81d47d00886dfdd4d65bb9e836f2 (diff)
arm64: apple: Add initial Apple Mac mini (M1, 2020) devicetree
This currently supports: * SMP (via spin-tables) * AIC IRQs * Serial (with earlycon) * Framebuffer A number of properties are dynamic, and based on system firmware decisions that vary from version to version. These are expected to be filled in by the loader. Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Hector Martin <marcan@marcan.st>
Diffstat (limited to 'arch/arm64/boot/dts/apple/t8103-j274.dts')
-rw-r--r--arch/arm64/boot/dts/apple/t8103-j274.dts45
1 files changed, 45 insertions, 0 deletions
diff --git a/arch/arm64/boot/dts/apple/t8103-j274.dts b/arch/arm64/boot/dts/apple/t8103-j274.dts
new file mode 100644
index 000000000000..e0f6775b9878
--- /dev/null
+++ b/arch/arm64/boot/dts/apple/t8103-j274.dts
@@ -0,0 +1,45 @@
+// SPDX-License-Identifier: GPL-2.0+ OR MIT
+/*
+ * Apple Mac mini (M1, 2020)
+ *
+ * target-type: J274
+ *
+ * Copyright The Asahi Linux Contributors
+ */
+
+/dts-v1/;
+
+#include "t8103.dtsi"
+
+/ {
+ compatible = "apple,j274", "apple,t8103", "apple,arm-platform";
+ model = "Apple Mac mini (M1, 2020)";
+
+ aliases {
+ serial0 = &serial0;
+ };
+
+ chosen {
+ #address-cells = <2>;
+ #size-cells = <2>;
+ ranges;
+
+ stdout-path = "serial0";
+
+ framebuffer0: framebuffer@0 {
+ compatible = "apple,simple-framebuffer", "simple-framebuffer";
+ reg = <0 0 0 0>; /* To be filled by loader */
+ /* Format properties will be added by loader */
+ status = "disabled";
+ };
+ };
+
+ memory@800000000 {
+ device_type = "memory";
+ reg = <0x8 0 0x2 0>; /* To be filled by loader */
+ };
+};
+
+&serial0 {
+ status = "okay";
+};