mirror of https://github.com/xemu-project/xemu.git
hw/intc/arm_gicv3_its: Correct comment about CTE RDBase field size
The comment says that in our CTE format the RDBase field is 36 bits; in fact for us it is only 16 bits, because we use the RDBase format where it specifies a 16-bit CPU number. The code already uses RDBASE_PROCNUM_LENGTH (16) as the field width, so fix the comment to match it. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
e07f844599
commit
257bb6501c
|
@ -400,7 +400,7 @@ FIELD(DTE, ITTADDR, 6, 44)
|
|||
|
||||
/*
|
||||
* 8 bytes Collection Table Entry size
|
||||
* Valid = 1 bit,RDBase = 36 bits(considering max RDBASE)
|
||||
* Valid = 1 bit, RDBase = 16 bits
|
||||
*/
|
||||
#define GITS_CTE_SIZE (0x8ULL)
|
||||
#define GITS_CTE_RDBASE_PROCNUM_MASK MAKE_64BIT_MASK(1, RDBASE_PROCNUM_LENGTH)
|
||||
|
|
Loading…
Reference in New Issue