mirror of
https://github.com/openwrt/openwrt.git
synced 2025-12-21 17:04:28 +04: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>
19 lines
710 B
Diff
19 lines
710 B
Diff
Allwinner ARMv5 F1C100s has similar watchdog timer to sun6i A31.
|
|
Add compatible string for it.
|
|
|
|
Signed-off-by: Mesih Kilinc <mesihkilinc@gmail.com>
|
|
---
|
|
drivers/watchdog/sunxi_wdt.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/watchdog/sunxi_wdt.c
|
|
+++ b/drivers/watchdog/sunxi_wdt.c
|
|
@@ -240,6 +240,7 @@ static const struct of_device_id sunxi_w
|
|
{ .compatible = "allwinner,sun4i-a10-wdt", .data = &sun4i_wdt_reg },
|
|
{ .compatible = "allwinner,sun6i-a31-wdt", .data = &sun6i_wdt_reg },
|
|
{ .compatible = "allwinner,sun20i-d1-wdt", .data = &sun20i_wdt_reg },
|
|
+ { .compatible = "allwinner,suniv-f1c100s-wdt", .data = &sun6i_wdt_reg },
|
|
{ /* sentinel */ }
|
|
};
|
|
MODULE_DEVICE_TABLE(of, sunxi_wdt_dt_ids);
|