linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3] irqchip/gicv3-its: ITS table size should not be smaller than PSZ
@ 2015-05-19 23:00 Stuart Yoder
  2015-05-20  7:41 ` Marc Zyngier
  2015-05-20 13:30 ` Thomas Gleixner
  0 siblings, 2 replies; 3+ messages in thread
From: Stuart Yoder @ 2015-05-19 23:00 UTC (permalink / raw)
  To: linux-arm-kernel

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>
Signed-off-by: Stuart Yoder <stuart.yoder@freescale.com>
---
  -v3 changes
     -updated commit message and added comment
  -would be nice to get this into 4.1 as the kernel will hang booting
   on some systems

 drivers/irqchip/irq-gic-v3-its.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/drivers/irqchip/irq-gic-v3-its.c b/drivers/irqchip/irq-gic-v3-its.c
index 9687f8a..1b7e155 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)
 			u64 typer = readq_relaxed(its->base + GITS_TYPER);
 			u32 ids = GITS_TYPER_DEVBITS(typer);
 
-			order = get_order((1UL << ids) * entry_size);
+			/*
+			 * 'order' was initialized earlier to the default page
+			 * granule of the the ITS.  We can't have an allocation
+			 * smaller than that.  If the requested allocation
+			 * is smaller, round up to the default page granule.
+			 */
+			order = max(get_order((1UL << ids) * entry_size),
+				    order);
 			if (order >= MAX_ORDER) {
 				order = MAX_ORDER - 1;
 				pr_warn("%s: Device Table too large, reduce its page order to %u\n",
-- 
2.3.3

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

* [PATCH v3] irqchip/gicv3-its: ITS table size should not be smaller than PSZ
  2015-05-19 23:00 [PATCH v3] irqchip/gicv3-its: ITS table size should not be smaller than PSZ Stuart Yoder
@ 2015-05-20  7:41 ` Marc Zyngier
  2015-05-20 13:30 ` Thomas Gleixner
  1 sibling, 0 replies; 3+ messages in thread
From: Marc Zyngier @ 2015-05-20  7:41 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, 20 May 2015 00:00:41 +0100
Stuart Yoder <stuart.yoder@freescale.com> wrote:

> 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>
> Signed-off-by: Stuart Yoder <stuart.yoder@freescale.com>

Reviewed-by: Marc Zyngier <marc.zyngier@arm.com>

Thanks,

	M.

> ---
>   -v3 changes
>      -updated commit message and added comment
>   -would be nice to get this into 4.1 as the kernel will hang booting
>    on some systems
> 
>  drivers/irqchip/irq-gic-v3-its.c | 9 ++++++++-
>  1 file changed, 8 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/irqchip/irq-gic-v3-its.c b/drivers/irqchip/irq-gic-v3-its.c
> index 9687f8a..1b7e155 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)
>  			u64 typer = readq_relaxed(its->base + GITS_TYPER);
>  			u32 ids = GITS_TYPER_DEVBITS(typer);
>  
> -			order = get_order((1UL << ids) * entry_size);
> +			/*
> +			 * 'order' was initialized earlier to the default page
> +			 * granule of the the ITS.  We can't have an allocation
> +			 * smaller than that.  If the requested allocation
> +			 * is smaller, round up to the default page granule.
> +			 */
> +			order = max(get_order((1UL << ids) * entry_size),
> +				    order);
>  			if (order >= MAX_ORDER) {
>  				order = MAX_ORDER - 1;
>  				pr_warn("%s: Device Table too large, reduce its page order to %u\n",



-- 
Without deviation from the norm, progress is not possible.

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

* [PATCH v3] irqchip/gicv3-its: ITS table size should not be smaller than PSZ
  2015-05-19 23:00 [PATCH v3] irqchip/gicv3-its: ITS table size should not be smaller than PSZ Stuart Yoder
  2015-05-20  7:41 ` Marc Zyngier
@ 2015-05-20 13:30 ` Thomas Gleixner
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Gleixner @ 2015-05-20 13:30 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, 19 May 2015, Stuart Yoder wrote:

> 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>
> Signed-off-by: Stuart Yoder <stuart.yoder@freescale.com>
> ---
>   -v3 changes
>      -updated commit message and added comment
>   -would be nice to get this into 4.1 as the kernel will hang booting
>    on some systems

Would be nice if you would CC all maintainers AND the proper
mailinglist.

Thanks,

	tglx

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

end of thread, other threads:[~2015-05-20 13:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-19 23:00 [PATCH v3] irqchip/gicv3-its: ITS table size should not be smaller than PSZ Stuart Yoder
2015-05-20  7:41 ` Marc Zyngier
2015-05-20 13:30 ` Thomas Gleixner

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).