]> git.baikalelectronics.ru Git - kernel.git/commit
irqchip/gic-v3-its: Use the exact ITSList for VMOVP
authorZenghui Yu <yuzenghui@huawei.com>
Wed, 23 Oct 2019 03:46:26 +0000 (03:46 +0000)
committerMarc Zyngier <maz@kernel.org>
Thu, 24 Oct 2019 17:02:53 +0000 (18:02 +0100)
commit9a7895bdb1c028a42647c1606abc3262e63595b5
tree94e4c124779275269d2801d2cba7c40596cf7012
parent9f1b4f7474400b719a81af3ef9ebd23031a781f8
irqchip/gic-v3-its: Use the exact ITSList for VMOVP

On a system without Single VMOVP support (say GITS_TYPER.VMOVP == 0),
we will map vPEs only on ITSs that will actually control interrupts
for the given VM.  And when moving a vPE, the VMOVP command will be
issued only for those ITSs.

But when issuing VMOVPs we seemed fail to present the exact ITSList
to ITSs who are actually included in the synchronization operation.
The its_list_map we're currently using includes all ITSs in the system,
even though some of them don't have the corresponding vPE mapping at all.

Introduce get_its_list() to get the per-VM its_list_map, to indicate
which ITSs have vPE mappings for the given VM, and use this map as
the expected ITSList when building VMOVP. This is hopefully a performance
gain not to do some synchronization with those unsuspecting ITSs.
And initialize the whole command descriptor to zero at beginning, since
the seq_num and its_list should be RES0 when GITS_TYPER.VMOVP == 1.

Signed-off-by: Zenghui Yu <yuzenghui@huawei.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/1571802386-2680-1-git-send-email-yuzenghui@huawei.com
drivers/irqchip/irq-gic-v3-its.c