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>
25 lines
822 B
Diff
25 lines
822 B
Diff
From 1fbe96ec05c41b313b4e7cc4b39b191b4a3f7540 Mon Sep 17 00:00:00 2001
|
|
From: Samuel Holland <samuel@sholland.org>
|
|
Date: Sat, 7 May 2022 18:38:34 -0500
|
|
Subject: [PATCH 012/117] irqchip/sifive-plic: Enable oneshot-safe threaded
|
|
EOIs
|
|
|
|
Signed-off-by: Samuel Holland <samuel@sholland.org>
|
|
---
|
|
drivers/irqchip/irq-sifive-plic.c | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
--- a/drivers/irqchip/irq-sifive-plic.c
|
|
+++ b/drivers/irqchip/irq-sifive-plic.c
|
|
@@ -201,7 +201,9 @@ static struct irq_chip plic_chip = {
|
|
.irq_set_affinity = plic_set_affinity,
|
|
#endif
|
|
.irq_set_type = plic_irq_set_type,
|
|
- .flags = IRQCHIP_AFFINITY_PRE_STARTUP,
|
|
+ .flags = IRQCHIP_ONESHOT_SAFE |
|
|
+ IRQCHIP_EOI_THREADED |
|
|
+ IRQCHIP_AFFINITY_PRE_STARTUP,
|
|
};
|
|
|
|
static int plic_irq_set_type(struct irq_data *d, unsigned int type)
|