aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYun Wu <wuyun.wu@huawei.com>2015-03-06 11:37:46 -0500
committerJason Cooper <jason@lakedaemon.net>2015-03-08 00:33:54 -0500
commit6c834125ba460eb1eea63bcc053b45564ca93407 (patch)
tree45c7519954082453d7e05b00e7ed61a5ff2e22df
parent614be385521b08b849da1098625da591984738c0 (diff)
irqchip: gicv3-its: Zero itt before handling to hardware
Some kind of brain-dead implementations chooses to insert ITEes in rapid sequence of disabled ITEes, and an un-zeroed ITT will confuse ITS on judging whether an ITE is really enabled or not. Considering the implementations are still supported by the GICv3 architecture, in which ITT is not required to be zeroed before being handled to hardware, we do the favor in ITS driver. Acked-by: Marc Zyngier <marc.zyngier@arm.com> Signed-off-by: Yun Wu <wuyun.wu@huawei.com> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com> Link: https://lkml.kernel.org/r/1425659870-11832-8-git-send-email-marc.zyngier@arm.com Signed-off-by: Jason Cooper <jason@lakedaemon.net>
-rw-r--r--drivers/irqchip/irq-gic-v3-its.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/irqchip/irq-gic-v3-its.c b/drivers/irqchip/irq-gic-v3-its.c
index 6850141d6524..69eeea3e7fac 100644
--- a/drivers/irqchip/irq-gic-v3-its.c
+++ b/drivers/irqchip/irq-gic-v3-its.c
@@ -1076,7 +1076,7 @@ static struct its_device *its_create_device(struct its_node *its, u32 dev_id,
1076 nr_ites = max(2UL, roundup_pow_of_two(nvecs)); 1076 nr_ites = max(2UL, roundup_pow_of_two(nvecs));
1077 sz = nr_ites * its->ite_size; 1077 sz = nr_ites * its->ite_size;
1078 sz = max(sz, ITS_ITT_ALIGN) + ITS_ITT_ALIGN - 1; 1078 sz = max(sz, ITS_ITT_ALIGN) + ITS_ITT_ALIGN - 1;
1079 itt = kmalloc(sz, GFP_KERNEL); 1079 itt = kzalloc(sz, GFP_KERNEL);
1080 lpi_map = its_lpi_alloc_chunks(nvecs, &lpi_base, &nr_lpis); 1080 lpi_map = its_lpi_alloc_chunks(nvecs, &lpi_base, &nr_lpis);
1081 1081
1082 if (!dev || !itt || !lpi_map) { 1082 if (!dev || !itt || !lpi_map) {