diff options
author | Minghuan Lian <Minghuan.Lian@freescale.com> | 2015-05-20 11:13:15 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2015-05-20 16:13:37 -0400 |
commit | 3ad2a5f57656a14d964b673a5a0e4ab0e583c870 (patch) | |
tree | 3891a6e66daba3d0c0d3ee42bf714839291cb6af /drivers/irqchip | |
parent | e26081808edadfd257c6c9d81014e3b25e9a6118 (diff) |
irqchip/gicv3-its: ITS table size should not be smaller than PSZ
When allocating a device table, if the requested allocation is smaller
than the default granule size of the ITS then, we need to round up to
the default size.
Signed-off-by: Minghuan Lian <Minghuan.Lian@freescale.com>
[ stuart: Added comments and massaged changelog ]
Signed-off-by: Stuart Yoder <stuart.yoder@freescale.com>
Reviewed-by: Marc Zygnier <marc.zyngier@arm.com>
Cc: <linux-arm-kernel@lists.infradead.org>
Cc: <jason@lakedaemon.net>
Link: http://lkml.kernel.org/r/1432134795-661-1-git-send-email-stuart.yoder@freescale.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'drivers/irqchip')
-rw-r--r-- | drivers/irqchip/irq-gic-v3-its.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/drivers/irqchip/irq-gic-v3-its.c b/drivers/irqchip/irq-gic-v3-its.c index 9687f8afebff..1b7e155869f6 100644 --- a/drivers/irqchip/irq-gic-v3-its.c +++ b/drivers/irqchip/irq-gic-v3-its.c | |||
@@ -828,7 +828,14 @@ static int its_alloc_tables(struct its_node *its) | |||
828 | u64 typer = readq_relaxed(its->base + GITS_TYPER); | 828 | u64 typer = readq_relaxed(its->base + GITS_TYPER); |
829 | u32 ids = GITS_TYPER_DEVBITS(typer); | 829 | u32 ids = GITS_TYPER_DEVBITS(typer); |
830 | 830 | ||
831 | order = get_order((1UL << ids) * entry_size); | 831 | /* |
832 | * 'order' was initialized earlier to the default page | ||
833 | * granule of the the ITS. We can't have an allocation | ||
834 | * smaller than that. If the requested allocation | ||
835 | * is smaller, round up to the default page granule. | ||
836 | */ | ||
837 | order = max(get_order((1UL << ids) * entry_size), | ||
838 | order); | ||
832 | if (order >= MAX_ORDER) { | 839 | if (order >= MAX_ORDER) { |
833 | order = MAX_ORDER - 1; | 840 | order = MAX_ORDER - 1; |
834 | pr_warn("%s: Device Table too large, reduce its page order to %u\n", | 841 | pr_warn("%s: Device Table too large, reduce its page order to %u\n", |