mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 03:15:31 +09:00
UPSTREAM: irqchip/gic-v3-its: Add a cache invalidation right after vPE unmapping
In order to be able to manipulate the VPT once a vPE has been
unmapped, perform the required CMO to invalidate the CPU view
of the VPT.
Signed-off-by: Marc Zyngier <maz@kernel.org>
Signed-off-by: Shenming Lu <lushenming@huawei.com>
Link: https://lore.kernel.org/r/20210322060158.1584-2-lushenming@huawei.com
(cherry picked from commit 301beaf197)
Signed-off-by: Will Deacon <willdeacon@google.com>
Bug: 190594147
Change-Id: I4ef4c5626fe4611995f564853e114da7da615bc7
This commit is contained in:
committed by
Will Deacon
parent
5f0426076b
commit
4761649e56
@@ -4551,6 +4551,15 @@ static void its_vpe_irq_domain_deactivate(struct irq_domain *domain,
|
||||
|
||||
its_send_vmapp(its, vpe, false);
|
||||
}
|
||||
|
||||
/*
|
||||
* There may be a direct read to the VPT after unmapping the
|
||||
* vPE, to guarantee the validity of this, we make the VPT
|
||||
* memory coherent with the CPU caches here.
|
||||
*/
|
||||
if (find_4_1_its() && !atomic_read(&vpe->vmapp_count))
|
||||
gic_flush_dcache_to_poc(page_address(vpe->vpt_page),
|
||||
LPI_PENDBASE_SZ);
|
||||
}
|
||||
|
||||
static const struct irq_domain_ops its_vpe_domain_ops = {
|
||||
|
||||
Reference in New Issue
Block a user