mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-28 09:39:00 +00:00
99545b4bb1
This target adds support for the Allwinner D1 RISC-V based SoCs. - RISC-V single-core T-Head C906 (RV64GCV) - Tensilica HiFi4 DSP - DDR2/DDR3 support - 10/100/1000M ethernet - usual peripherals like USB2, SPI, I2C, PWM, etc. Four boards are supported: - Dongshan Nezha STU - 512Mb RAM - ethernet - LicheePi RV Dock - 512Mb RAM - wireless-only (RTL8723DS) - MangoPi MQ-Pro - 512Mb RAM - there are pads available for an SPI flash - wireless-only (RTL8723DS) - Nezha D1 - 512Mb/1Gb/2Gb RAM - 256Mb NAND flash - ethernet, wireless Installation: Standard SD-card installation via dd-ing the generated image to an SD-card of at least 256Mb. Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
51 lines
1.7 KiB
Diff
51 lines
1.7 KiB
Diff
From 1946ff7ee38c994ae3eb9968c5b51695c0df2cf7 Mon Sep 17 00:00:00 2001
|
|
From: Samuel Holland <samuel@sholland.org>
|
|
Date: Tue, 2 Aug 2022 00:01:21 -0500
|
|
Subject: [PATCH 023/117] soc: sunxi: sram: Only iterate over SRAM children
|
|
|
|
Now that a "regulators" child is accepted by the controller binding, the
|
|
debugfs show routine must be explicitly limited to "sram" children.
|
|
|
|
Series-to: Liam Girdwood <lgirdwood@gmail.com>
|
|
Series-to: Mark Brown <broonie@kernel.org>
|
|
Series-to: Chen-Yu Tsai <wens@csie.org>
|
|
Series-to: Jernej Skrabec <jernej.skrabec@gmail.com>
|
|
Series-to: Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
|
|
Series-to: Rob Herring <robh+dt@kernel.org>
|
|
|
|
Commit-changes: 2
|
|
- New patch for v2
|
|
|
|
Series-version: 4
|
|
|
|
Cover-letter:
|
|
regulator: Add support for Allwinner D1 LDOs
|
|
This series adds bindings and a driver for the two pairs of LDOs
|
|
inside the Allwinner D1 SoC.
|
|
|
|
A binding and driver change is required for the SRAM controller, to
|
|
accept the regulators device as its child node. The new example in the
|
|
SRAM controller binding uses the compatible string added in this series:
|
|
https://lore.kernel.org/lkml/20220815041248.53268-1-samuel@sholland.org/
|
|
END
|
|
|
|
Reviewed-by: Heiko Stuebner <heiko@sntech.de>
|
|
Tested-by: Heiko Stuebner <heiko@sntech.de>
|
|
Signed-off-by: Samuel Holland <samuel@sholland.org>
|
|
---
|
|
drivers/soc/sunxi/sunxi_sram.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
--- a/drivers/soc/sunxi/sunxi_sram.c
|
|
+++ b/drivers/soc/sunxi/sunxi_sram.c
|
|
@@ -120,6 +120,9 @@ static int sunxi_sram_show(struct seq_fi
|
|
seq_puts(s, "--------------------\n\n");
|
|
|
|
for_each_child_of_node(sram_dev->of_node, sram_node) {
|
|
+ if (!of_node_name_eq(sram_node, "sram"))
|
|
+ continue;
|
|
+
|
|
sram_addr_p = of_get_address(sram_node, 0, NULL, NULL);
|
|
|
|
seq_printf(s, "sram@%08x\n",
|