[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[kvm-unit-tests PATCH v3 03/14] arm/arm64: gic: Introduce setup_irq() he
From: |
Eric Auger |
Subject: |
[kvm-unit-tests PATCH v3 03/14] arm/arm64: gic: Introduce setup_irq() helper |
Date: |
Tue, 28 Jan 2020 11:34:48 +0100 |
ipi_enable() code would be reusable for other interrupts
than IPI. Let's rename it setup_irq() and pass an interrupt
handler pointer.
Signed-off-by: Eric Auger <address@hidden>
---
v2 -> v3:
- do not export setup_irq anymore
---
arm/gic.c | 20 +++++++-------------
1 file changed, 7 insertions(+), 13 deletions(-)
diff --git a/arm/gic.c b/arm/gic.c
index fcf4c1f..abf08c7 100644
--- a/arm/gic.c
+++ b/arm/gic.c
@@ -34,6 +34,7 @@ static struct gic *gic;
static int acked[NR_CPUS], spurious[NR_CPUS];
static int bad_sender[NR_CPUS], bad_irq[NR_CPUS];
static cpumask_t ready;
+typedef void (*handler_t)(struct pt_regs *regs __unused);
static void nr_cpu_check(int nr)
{
@@ -215,20 +216,20 @@ static void ipi_test_smp(void)
report_prefix_pop();
}
-static void ipi_enable(void)
+static void setup_irq(handler_t handler)
{
gic_enable_defaults();
#ifdef __arm__
- install_exception_handler(EXCPTN_IRQ, ipi_handler);
+ install_exception_handler(EXCPTN_IRQ, handler);
#else
- install_irq_handler(EL1H_IRQ, ipi_handler);
+ install_irq_handler(EL1H_IRQ, handler);
#endif
local_irq_enable();
}
static void ipi_send(void)
{
- ipi_enable();
+ setup_irq(ipi_handler);
wait_on_ready();
ipi_test_self();
ipi_test_smp();
@@ -238,7 +239,7 @@ static void ipi_send(void)
static void ipi_recv(void)
{
- ipi_enable();
+ setup_irq(ipi_handler);
cpumask_set_cpu(smp_processor_id(), &ready);
while (1)
wfi();
@@ -295,14 +296,7 @@ static void ipi_clear_active_handler(struct pt_regs *regs
__unused)
static void run_active_clear_test(void)
{
report_prefix_push("active");
- gic_enable_defaults();
-#ifdef __arm__
- install_exception_handler(EXCPTN_IRQ, ipi_clear_active_handler);
-#else
- install_irq_handler(EL1H_IRQ, ipi_clear_active_handler);
-#endif
- local_irq_enable();
-
+ setup_irq(ipi_clear_active_handler);
ipi_test_self();
report_prefix_pop();
}
--
2.20.1
- [kvm-unit-tests PATCH v3 00/14] arm/arm64: Add ITS tests, Eric Auger, 2020/01/28
- [kvm-unit-tests PATCH v3 01/14] libcflat: Add other size defines, Eric Auger, 2020/01/28
- [kvm-unit-tests PATCH v3 02/14] arm: gic: Provide per-IRQ helper functions, Eric Auger, 2020/01/28
- [kvm-unit-tests PATCH v3 04/14] arm/arm64: gicv3: Add some re-distributor defines, Eric Auger, 2020/01/28
- [kvm-unit-tests PATCH v3 03/14] arm/arm64: gic: Introduce setup_irq() helper,
Eric Auger <=
- [kvm-unit-tests PATCH v3 05/14] arm/arm64: ITS: Introspection tests, Eric Auger, 2020/01/28
- [kvm-unit-tests PATCH v3 06/14] arm/arm64: gicv3: Set the LPI config and pending tables, Eric Auger, 2020/01/28
- [kvm-unit-tests PATCH v3 08/14] arm/arm64: ITS: its_enable_defaults, Eric Auger, 2020/01/28
- [kvm-unit-tests PATCH v3 07/14] arm/arm64: gicv3: Enable/Disable LPIs at re-distributor level, Eric Auger, 2020/01/28
- [kvm-unit-tests PATCH v3 09/14] arm/arm64: ITS: Device and collection Initialization, Eric Auger, 2020/01/28
- [kvm-unit-tests PATCH v3 10/14] arm/arm64: ITS: commands, Eric Auger, 2020/01/28
- [kvm-unit-tests PATCH v3 11/14] arm/arm64: ITS: INT functional tests, Eric Auger, 2020/01/28
- [kvm-unit-tests PATCH v3 12/14] arm/run: Allow Migration tests, Eric Auger, 2020/01/28