mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-12-15 20:20:30 +00:00
9a6e297ed7
ref: - https://github.com/u-boot/u-boot/blob/master/arch/arm/cpu/armv7/sunxi/psci.c - https://github.com/smaeul/u-boot/commits/patch/h3-scp/
46 lines
1.1 KiB
Diff
46 lines
1.1 KiB
Diff
From 5c52b7d8526785dafed602d230d5ef02569325c5 Mon Sep 17 00:00:00 2001
|
|
From: Samuel Holland <samuel@sholland.org>
|
|
Date: Sat, 9 Oct 2021 15:04:16 -0500
|
|
Subject: [PATCH 08/13] arm: dts: sunxi: h3: Add nodes for AR100 remoteproc
|
|
|
|
Signed-off-by: Samuel Holland <samuel@sholland.org>
|
|
---
|
|
arch/arm/dts/sun8i-h3.dtsi | 14 ++++++++++++++
|
|
1 file changed, 14 insertions(+)
|
|
|
|
diff --git a/arch/arm/dts/sun8i-h3.dtsi b/arch/arm/dts/sun8i-h3.dtsi
|
|
index eac2349a23..b88dcd4272 100644
|
|
--- a/arch/arm/dts/sun8i-h3.dtsi
|
|
+++ b/arch/arm/dts/sun8i-h3.dtsi
|
|
@@ -170,6 +170,14 @@
|
|
#size-cells = <1>;
|
|
ranges;
|
|
|
|
+ sram_a2: sram@40000 {
|
|
+ compatible = "mmio-sram";
|
|
+ reg = <0x00040000 0xc000>;
|
|
+ #address-cells = <1>;
|
|
+ #size-cells = <1>;
|
|
+ ranges = <0 0x00040000 0xc000>;
|
|
+ };
|
|
+
|
|
sram_c: sram@1d00000 {
|
|
compatible = "mmio-sram";
|
|
reg = <0x01d00000 0x80000>;
|
|
@@ -239,6 +247,12 @@
|
|
nvmem-cell-names = "calibration";
|
|
#thermal-sensor-cells = <0>;
|
|
};
|
|
+
|
|
+ remoteproc@1f01c00 {
|
|
+ compatible = "allwinner,sun6i-a31-ar100";
|
|
+ reg = <0x01f01c00 0x400>;
|
|
+ sram = <&sram_a2>;
|
|
+ };
|
|
};
|
|
|
|
thermal-zones {
|
|
--
|
|
2.34.1
|
|
|