hw/timer/aspeed: Fix interrupt status does not be cleared for AST2600
According to the datasheet of AST2600 description, interrupt status set by HW
and clear to "0" by software writing "1" on the specific bit.
Therefore, if firmware set the specific bit "1" in the interrupt status
register(0x34), the specific bit of "s->irq_sts" should be cleared 0.
Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com>
Fixes: fadefada4d
("aspeed/timer: Add support for IRQ status register on the AST2600")
Reviewed-by: Andrew Jeffery <andrew@codeconstruct.com.au>
Reviewed-by: Cédric Le Goater <clg@redhat.com>
This commit is contained in:
parent
82a919f8f1
commit
d3d6def468
@ -580,7 +580,7 @@ static void aspeed_2600_timer_write(AspeedTimerCtrlState *s, hwaddr offset,
|
||||
|
||||
switch (offset) {
|
||||
case 0x34:
|
||||
s->irq_sts &= tv;
|
||||
s->irq_sts &= ~tv;
|
||||
break;
|
||||
case 0x3C:
|
||||
aspeed_timer_set_ctrl(s, s->ctrl & ~tv);
|
||||
|
Loading…
Reference in New Issue
Block a user