linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] irqchip/gicv3-its: Decrease page size when needed
@ 2015-04-15  9:49 Minghuan Lian
  2015-04-15  9:49 ` [PATCH 1/2] irqchip/gicv3-its: Support share device ID Minghuan Lian
                   ` (3 more replies)
  0 siblings, 4 replies; 37+ messages in thread
From: Minghuan Lian @ 2015-04-15  9:49 UTC (permalink / raw)
  To: linux-arm-kernel

The default page size of ITS table has been changed to 64KB,
but for some platforms the real size of allocate memory which
calculated by DEVBITS of register GITS_TYPER may smaller than
default size. In this case, psz must be decreased, otherwise,
the wrong page number will cause kernel hang.

Signed-off-by: Minghuan Lian <Minghuan.Lian@freescale.com>
---
 drivers/irqchip/irq-gic-v3-its.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/irqchip/irq-gic-v3-its.c b/drivers/irqchip/irq-gic-v3-its.c
index 596b0a9..d0374a6 100644
--- a/drivers/irqchip/irq-gic-v3-its.c
+++ b/drivers/irqchip/irq-gic-v3-its.c
@@ -844,6 +844,9 @@ static int its_alloc_tables(struct its_node *its)
 
 		its->tables[i] = base;
 
+		while (alloc_size < psz)
+			psz = psz >> 1;
+
 retry_baser:
 		val = (virt_to_phys(base) 				 |
 		       (type << GITS_BASER_TYPE_SHIFT)			 |
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 37+ messages in thread

end of thread, other threads:[~2015-05-01 15:26 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-15  9:49 [PATCH] irqchip/gicv3-its: Decrease page size when needed Minghuan Lian
2015-04-15  9:49 ` [PATCH 1/2] irqchip/gicv3-its: Support share device ID Minghuan Lian
2015-04-15 11:08   ` Varun Sethi
2015-04-15 11:38     ` Minghuan.Lian at freescale.com
2015-04-15 13:18       ` Varun Sethi
2015-04-16 10:40         ` Will Deacon
2015-04-17 14:19           ` Stuart Yoder
2015-04-17 17:57             ` Varun Sethi
2015-04-22 17:07             ` Will Deacon
2015-04-22 18:40               ` Varun Sethi
2015-04-22 19:41               ` Stuart Yoder
2015-04-24 16:18                 ` Will Deacon
2015-04-24 16:44                   ` Marc Zyngier
2015-04-24 18:18                     ` Stuart Yoder
2015-04-25 10:39                       ` Marc Zyngier
2015-04-26 18:20                         ` Varun Sethi
2015-04-27  7:58                           ` Marc Zyngier
2015-04-27 13:08                             ` Varun Sethi
2015-04-27 17:04                               ` Will Deacon
2015-05-01 15:23                                 ` Stuart Yoder
2015-05-01 15:26                                   ` Will Deacon
2015-04-27 17:17                               ` Marc Zyngier
2015-04-24 19:24                     ` Stuart Yoder
2015-04-24 18:09                   ` Stuart Yoder
2015-04-26 18:26                 ` Varun Sethi
2015-04-15 16:36   ` Marc Zyngier
2015-04-16  2:57     ` Minghuan.Lian at freescale.com
2015-04-16 10:04       ` Marc Zyngier
2015-04-16 10:57         ` Minghuan.Lian at freescale.com
2015-04-16 11:50           ` Marc Zyngier
2015-04-16 18:38             ` Varun Sethi
2015-04-17  2:34               ` Minghuan.Lian at freescale.com
2015-04-15  9:49 ` [PATCH 2/2] pci/layerscape: Add LS2085A MSI support Minghuan Lian
2015-04-15 11:51 ` [PATCH] irqchip/gicv3-its: Decrease page size when needed Jason Cooper
2015-04-15 14:17   ` Marc Zyngier
2015-04-16  1:15     ` Minghuan.Lian at freescale.com
2015-04-15 16:31 ` Marc Zyngier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).