aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/irqchip/irq-gic-v3-its.c
diff options
context:
space:
mode:
authorMarc Zyngier <marc.zyngier@arm.com>2018-06-26 11:21:11 +0100
committerMarc Zyngier <marc.zyngier@arm.com>2018-10-02 10:37:35 +0100
commitc6e2ccb66d0c3b4fffc59932585e9f709ad59003 (patch)
tree535fbfb79dd634f6b51b9d53a63e11affffe65eb /drivers/irqchip/irq-gic-v3-its.c
parentirqchip/gic-v3-its: Allow use of pre-programmed LPI tables (diff)
downloadlinux-dev-c6e2ccb66d0c3b4fffc59932585e9f709ad59003.tar.xz
linux-dev-c6e2ccb66d0c3b4fffc59932585e9f709ad59003.zip
irqchip/gic-v3-its: Use pre-programmed redistributor tables with kdump kernels
If using a kdump kernel, and that we cannot disable LPIs to install our own tables, let's switch to using the already allocated tables. This means that we'll change some of the initial kernel's memory, but at least we'll be able to have LPIs in this secondary kernel. Tested-by: Jeremy Linton <jeremy.linton@arm.com> Tested-by: Bhupesh Sharma <bhsharma@redhat.com> Tested-by: Lei Zhang <zhang.lei@jp.fujitsu.com> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'drivers/irqchip/irq-gic-v3-its.c')
-rw-r--r--drivers/irqchip/irq-gic-v3-its.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/irqchip/irq-gic-v3-its.c b/drivers/irqchip/irq-gic-v3-its.c
index 6a9066411cbc..83d5573f56e9 100644
--- a/drivers/irqchip/irq-gic-v3-its.c
+++ b/drivers/irqchip/irq-gic-v3-its.c
@@ -19,6 +19,7 @@
#include <linux/acpi_iort.h>
#include <linux/bitmap.h>
#include <linux/cpu.h>
+#include <linux/crash_dump.h>
#include <linux/delay.h>
#include <linux/dma-iommu.h>
#include <linux/interrupt.h>
@@ -1963,8 +1964,15 @@ static void its_free_pending_table(struct page *pt)
free_pages((unsigned long)page_address(pt), get_order(LPI_PENDBASE_SZ));
}
+/*
+ * Booting with kdump and LPIs enabled is generally fine.
+ */
static bool enabled_lpis_allowed(void)
{
+ /* Allow a kdump kernel */
+ if (is_kdump_kernel())
+ return true;
+
return false;
}