mirror of https://github.com/xqemu/xqemu.git
arm: add dummy gic security registers
Implement handling for the RAZ/WI gic security registers. Signed-off-by: Rob Herring <rob.herring@calxeda.com> Signed-off-by: Mark Langsdorf <mark.langsdorf@calxeda.com> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
104a26a236
commit
b79f22656f
|
@ -282,6 +282,10 @@ static uint32_t gic_dist_readb(void *opaque, target_phys_addr_t offset)
|
||||||
return ((GIC_NIRQ / 32) - 1) | ((NUM_CPU(s) - 1) << 5);
|
return ((GIC_NIRQ / 32) - 1) | ((NUM_CPU(s) - 1) << 5);
|
||||||
if (offset < 0x08)
|
if (offset < 0x08)
|
||||||
return 0;
|
return 0;
|
||||||
|
if (offset >= 0x80) {
|
||||||
|
/* Interrupt Security , RAZ/WI */
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
goto bad_reg;
|
goto bad_reg;
|
||||||
} else if (offset < 0x200) {
|
} else if (offset < 0x200) {
|
||||||
|
@ -413,6 +417,8 @@ static void gic_dist_writeb(void *opaque, target_phys_addr_t offset,
|
||||||
DPRINTF("Distribution %sabled\n", s->enabled ? "En" : "Dis");
|
DPRINTF("Distribution %sabled\n", s->enabled ? "En" : "Dis");
|
||||||
} else if (offset < 4) {
|
} else if (offset < 4) {
|
||||||
/* ignored. */
|
/* ignored. */
|
||||||
|
} else if (offset >= 0x80) {
|
||||||
|
/* Interrupt Security Registers, RAZ/WI */
|
||||||
} else {
|
} else {
|
||||||
goto bad_reg;
|
goto bad_reg;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue