mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
ati-vga: Add dummy MEM_SDRAM_MODE_REG
Radeon chips have an SDRAM mode reg that is accessed by some drivers. We don't emulate the memory controller but provide some default value to prevent drivers getting unexpected 0. Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu> Message-id: cc1324b9ef06beb8ae233ddc77dedd8bab9b8624.1592737958.git.balaton@eik.bme.hu Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
41977c65c0
commit
2bbcaa7cd6
3 changed files with 7 additions and 0 deletions
|
@ -361,6 +361,11 @@ static uint64_t ati_mm_read(void *opaque, hwaddr addr, unsigned int size)
|
|||
case MC_STATUS:
|
||||
val = 5;
|
||||
break;
|
||||
case MEM_SDRAM_MODE_REG:
|
||||
if (s->dev_id != PCI_DEVICE_ID_ATI_RAGE128_PF) {
|
||||
val = BIT(28) | BIT(20);
|
||||
}
|
||||
break;
|
||||
case RBBM_STATUS:
|
||||
case GUI_STAT:
|
||||
val = 64; /* free CMDFIFO entries */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue