diff options
author | Marc Zyngier <maz@kernel.org> | 2019-11-08 16:57:59 +0000 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2019-11-10 18:47:52 +0000 |
commit | ffedbf0cba153c91a0da5d1280a5e639664c5ab3 (patch) | |
tree | 53b71bd087ce9319f2c9847addd22894e1c2b2de /include/linux/irqchip | |
parent | 0dd57fed6b46659b2db1156cb9100fbcfef6fe5d (diff) | |
download | linux-stable-ffedbf0cba153c91a0da5d1280a5e639664c5ab3.tar.gz linux-stable-ffedbf0cba153c91a0da5d1280a5e639664c5ab3.tar.bz2 linux-stable-ffedbf0cba153c91a0da5d1280a5e639664c5ab3.zip |
irqchip/gic-v3-its: Kill its->ite_size and use TYPER copy instead
Now that we have a copy of TYPER in the ITS structure, rely on this
to provide the same service as its->ite_size, which gets axed.
Errata workarounds are now updating the cached fields instead of
requiring a separate field in the ITS structure.
Signed-off-by: Marc Zyngier <maz@kernel.org>
Reviewed-by: Zenghui Yu <yuzenghui@huawei.com>
Link: https://lore.kernel.org/r/20191027144234.8395-6-maz@kernel.org
Link: https://lore.kernel.org/r/20191108165805.3071-6-maz@kernel.org
Diffstat (limited to 'include/linux/irqchip')
-rw-r--r-- | include/linux/irqchip/arm-gic-v3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/irqchip/arm-gic-v3.h b/include/linux/irqchip/arm-gic-v3.h index 5cc10cf7cb3e..4bce7a904075 100644 --- a/include/linux/irqchip/arm-gic-v3.h +++ b/include/linux/irqchip/arm-gic-v3.h @@ -334,7 +334,7 @@ #define GITS_TYPER_PLPIS (1UL << 0) #define GITS_TYPER_VLPIS (1UL << 1) #define GITS_TYPER_ITT_ENTRY_SIZE_SHIFT 4 -#define GITS_TYPER_ITT_ENTRY_SIZE(r) ((((r) >> GITS_TYPER_ITT_ENTRY_SIZE_SHIFT) & 0xf) + 1) +#define GITS_TYPER_ITT_ENTRY_SIZE GENMASK_ULL(7, 4) #define GITS_TYPER_IDBITS_SHIFT 8 #define GITS_TYPER_DEVBITS_SHIFT 13 #define GITS_TYPER_DEVBITS(r) ((((r) >> GITS_TYPER_DEVBITS_SHIFT) & 0x1f) + 1) |