mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
xilinx_axienet: Implement R_IS behaviour
The interrupt status register R_IS is the standard clear-on-write behaviour. This was unimplemented and defaulting to updating the register to the written value. Implemented clear-on-write. Reported-by: Jason Wu <huanyu@xilinx.com> Signed-off-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com> Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
This commit is contained in:
parent
16c6c80ac3
commit
d4d230da08
1 changed files with 4 additions and 0 deletions
|
@ -591,6 +591,10 @@ static void enet_write(void *opaque, hwaddr addr,
|
|||
s->maddr[s->fmi & 3][addr & 1] = value;
|
||||
break;
|
||||
|
||||
case R_IS:
|
||||
s->regs[addr] &= ~value;
|
||||
break;
|
||||
|
||||
case 0x8000 ... 0x83ff:
|
||||
s->ext_mtable[addr - 0x8000] = value;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue