mirror of https://gitee.com/openkylin/qemu.git
hw/riscv: sifive_gpio: Do not blindly trigger output IRQs
At present the GPIO output IRQs are triggered each time any GPIO register is written. However this is not correct. We should only trigger the output IRQ when the pin is configured as output enable. Signed-off-by: Bin Meng <bin.meng@windriver.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-id: 1591625864-31494-9-git-send-email-bmeng.cn@gmail.com Message-Id: <1591625864-31494-9-git-send-email-bmeng.cn@gmail.com> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
8a88b9f54f
commit
621c1006d2
|
@ -76,7 +76,9 @@ static void update_state(SIFIVEGPIOState *s)
|
|||
actual_value = pull;
|
||||
}
|
||||
|
||||
qemu_set_irq(s->output[i], actual_value);
|
||||
if (output_en) {
|
||||
qemu_set_irq(s->output[i], actual_value);
|
||||
}
|
||||
|
||||
/* Input value */
|
||||
ival = input_en && actual_value;
|
||||
|
|
Loading…
Reference in New Issue