mirror of
https://github.com/LiBwrt-op/openwrt-6.x.git
synced 2025-12-17 09:16:59 +00:00
This is Allwinner's ARM926EJ-S core, which is one of its early products, reappearing in recent compact designs. The SoC includes 32/64Mb memory in the same physical package, and has display and USB interfaces, allowing for very small footprint boards. The target consists of basic 6.12 support, with u-boot. Instead of creating a separate suniv target, as both the kernel and u-boot supports enough of this SoC by now with minimal patching, add it into sunxi as a subtarget. Link: https://github.com/openwrt/openwrt/pull/15022 Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
34 lines
941 B
Diff
34 lines
941 B
Diff
Allwinner ARMv5 F1C100s has similar sram controller to sun4i A10
|
|
Add compatible strings for it.
|
|
|
|
Signed-off-by: Mesih Kilinc <mesihkilinc@gmail.com>
|
|
Acked-by: Maxime Ripard <maxime.ripard@bootlin.com>
|
|
---
|
|
drivers/soc/sunxi/sunxi_sram.c | 8 ++++++++
|
|
1 file changed, 8 insertions(+)
|
|
|
|
--- a/drivers/soc/sunxi/sunxi_sram.c
|
|
+++ b/drivers/soc/sunxi/sunxi_sram.c
|
|
@@ -98,6 +98,10 @@ static const struct of_device_id sunxi_s
|
|
.compatible = "allwinner,sun50i-a64-sram-c",
|
|
.data = &sun50i_a64_sram_c.data,
|
|
},
|
|
+ {
|
|
+ .compatible = "allwinner,suniv-f1c100s-sram-d",
|
|
+ .data = &sun4i_a10_sram_d.data,
|
|
+ },
|
|
{}
|
|
};
|
|
|
|
@@ -430,6 +434,10 @@ static const struct of_device_id sunxi_s
|
|
.compatible = "allwinner,sun50i-h616-system-control",
|
|
.data = &sun50i_h616_sramc_variant,
|
|
},
|
|
+ {
|
|
+ .compatible = "allwinner,suniv-f1c100s-system-control",
|
|
+ .data = &sun4i_a10_sramc_variant,
|
|
+ },
|
|
{ },
|
|
};
|
|
MODULE_DEVICE_TABLE(of, sunxi_sram_dt_match);
|