aboutsummaryrefslogtreecommitdiff
path: root/hw/hppa
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2020-02-18 07:33:54 +0100
committerRichard Henderson <richard.henderson@linaro.org>2020-02-18 11:22:10 -0800
commitc9cbfebfd08acb34ec2a22b9b971fcca856d44e9 (patch)
tree34210f04bf1348aaec729591209e8708b22525fc /hw/hppa
parent6e4ed42397ff24521c1e6fb810d66fc40b190f4f (diff)
downloadqemu-c9cbfebfd08acb34ec2a22b9b971fcca856d44e9.zip
qemu-c9cbfebfd08acb34ec2a22b9b971fcca856d44e9.tar.gz
qemu-c9cbfebfd08acb34ec2a22b9b971fcca856d44e9.tar.bz2
hw/hppa/dino: Fix bitmask for the PCIROR register
Only 24 bits of the PCIROR register are documented (see pp. 37 of datasheet referenced in this file header). Acked-by: Helge Deller <deller@gmx.de> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20200218063355.18577-4-f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/hppa')
-rw-r--r--hw/hppa/dino.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/hppa/dino.c b/hw/hppa/dino.c
index 8868e31..be799aa 100644
--- a/hw/hppa/dino.c
+++ b/hw/hppa/dino.c
@@ -94,7 +94,7 @@ static const uint32_t reg800_keep_bits[DINO800_REGS] = {
MAKE_64BIT_MASK(0, 32), /* Undefined */
MAKE_64BIT_MASK(0, 8), /* MLTIM */
MAKE_64BIT_MASK(0, 30), /* BRDG_FEAT */
- MAKE_64BIT_MASK(0, 25), /* PCIROR */
+ MAKE_64BIT_MASK(0, 24), /* PCIROR */
MAKE_64BIT_MASK(0, 22), /* PCIWOR */
MAKE_64BIT_MASK(0, 32), /* Undocumented */
MAKE_64BIT_MASK(0, 9), /* TLTIM */