mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
57 lines
1.8 KiB
Diff
57 lines
1.8 KiB
Diff
From a994e9c9c1e45fbffeb9844c182e27c58c208404 Mon Sep 17 00:00:00 2001
|
|
From: Sven Peter <sven@svenpeter.dev>
|
|
Date: Thu, 9 Dec 2021 17:22:51 +0100
|
|
Subject: [PATCH 002/171] arm64: dts: apple: t8103: Add ANS2 nodes
|
|
|
|
---
|
|
arch/arm64/boot/dts/apple/t8103.dtsi | 33 ++++++++++++++++++++++++++++
|
|
1 file changed, 33 insertions(+)
|
|
|
|
diff --git a/arch/arm64/boot/dts/apple/t8103.dtsi b/arch/arm64/boot/dts/apple/t8103.dtsi
|
|
index 3df126a5a7dd..66544e39a20a 100644
|
|
--- a/arch/arm64/boot/dts/apple/t8103.dtsi
|
|
+++ b/arch/arm64/boot/dts/apple/t8103.dtsi
|
|
@@ -561,6 +561,39 @@ pinctrl_aop: pinctrl@24a820000 {
|
|
<AIC_IRQ 274 IRQ_TYPE_LEVEL_HIGH>;
|
|
};
|
|
|
|
+ ans_mbox: mbox@277408000 {
|
|
+ compatible = "apple,t8103-asc-mailbox", "apple,asc-mailbox-v4";
|
|
+ reg = <0x2 0x77408000 0x0 0x4000>;
|
|
+ interrupt-parent = <&aic>;
|
|
+ interrupts = <AIC_IRQ 583 IRQ_TYPE_LEVEL_HIGH>,
|
|
+ <AIC_IRQ 584 IRQ_TYPE_LEVEL_HIGH>,
|
|
+ <AIC_IRQ 585 IRQ_TYPE_LEVEL_HIGH>,
|
|
+ <AIC_IRQ 586 IRQ_TYPE_LEVEL_HIGH>;
|
|
+ interrupt-names = "send-empty", "send-not-empty",
|
|
+ "recv-empty", "recv-not-empty";
|
|
+ #mbox-cells = <0>;
|
|
+ power-domains = <&ps_ans2>;
|
|
+ };
|
|
+
|
|
+ sart: sart@27bc50000 {
|
|
+ compatible = "apple,t8103-sart", "apple,sart2";
|
|
+ reg = <0x2 0x7bc50000 0x0 0x10000>;
|
|
+ power-domains = <&ps_ans2>;
|
|
+ };
|
|
+
|
|
+ nvme@27bcc0000 {
|
|
+ compatible = "apple,t8103-nvme-ans2", "apple,nvme-ans2";
|
|
+ reg = <0x2 0x7bcc0000 0x0 0x40000>,
|
|
+ <0x2 0x77400000 0x0 0x4000>;
|
|
+ reg-names = "nvme", "ans";
|
|
+ interrupt-parent = <&aic>;
|
|
+ interrupts = <AIC_IRQ 590 IRQ_TYPE_LEVEL_HIGH>;
|
|
+ mboxes = <&ans_mbox>;
|
|
+ apple,sart = <&sart>;
|
|
+ power-domains = <&ps_ans2>;
|
|
+ resets = <&ps_ans2>;
|
|
+ };
|
|
+
|
|
pcie0_dart_0: dart@681008000 {
|
|
compatible = "apple,t8103-dart";
|
|
reg = <0x6 0x81008000 0x0 0x4000>;
|
|
--
|
|
2.34.1
|
|
|