diff options
author | Joe Komlodi <joe.komlodi@xilinx.com> | 2021-07-26 11:07:18 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2021-07-27 10:57:39 +0100 |
commit | 1b41847afbe9974356848a61b203445e4ca645f3 (patch) | |
tree | 0bf1173ea9aff2d601f7f8cf6514b043eb9913e1 | |
parent | c08ccd1b53f488ac86c1f65cf7623dc91acc249a (diff) | |
download | qemu-1b41847afbe9974356848a61b203445e4ca645f3.zip qemu-1b41847afbe9974356848a61b203445e4ca645f3.tar.gz qemu-1b41847afbe9974356848a61b203445e4ca645f3.tar.bz2 |
hw/arm/smmuv3: Check 31st bit to see if CD is valid
The bit to see if a CD is valid is the last bit of the first word of the CD.
Signed-off-by: Joe Komlodi <joe.komlodi@xilinx.com>
Message-id: 1626728232-134665-2-git-send-email-joe.komlodi@xilinx.com
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r-- | hw/arm/smmuv3-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm/smmuv3-internal.h b/hw/arm/smmuv3-internal.h index 3dac576..d1885ae 100644 --- a/hw/arm/smmuv3-internal.h +++ b/hw/arm/smmuv3-internal.h @@ -570,7 +570,7 @@ static inline int pa_range(STE *ste) /* CD fields */ -#define CD_VALID(x) extract32((x)->word[0], 30, 1) +#define CD_VALID(x) extract32((x)->word[0], 31, 1) #define CD_ASID(x) extract32((x)->word[1], 16, 16) #define CD_TTB(x, sel) \ ({ \ |