[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 3/7] ati-vga: Fix GPIO_MONID register write
From: |
BALATON Zoltan |
Subject: |
[Qemu-devel] [PATCH 3/7] ati-vga: Fix GPIO_MONID register write |
Date: |
Sun, 11 Aug 2019 23:14:53 +0200 |
Also update bitbang_i2c state when output bits are changed while
enable bits are set. This fixes EDID access by the ATI FCode ROM.
Signed-off-by: BALATON Zoltan <address@hidden>
---
hw/display/ati.c | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/hw/display/ati.c b/hw/display/ati.c
index c8fc62505b..699f38223b 100644
--- a/hw/display/ati.c
+++ b/hw/display/ati.c
@@ -564,12 +564,15 @@ static void ati_mm_write(void *opaque, hwaddr addr,
addr - GPIO_MONID, data, size);
/*
* Rage128p accesses DDC used to get EDID via these bits.
- * Only touch i2c when write overlaps 3rd byte because some
- * drivers access this reg via multiple partial writes and
- * without this spurious bits would be sent.
+ * Because some drivers access this via multiple byte writes
+ * we have to be careful when we send bits to avoid spurious
+ * changes in bitbang_i2c state. So only do it when mask is set
+ * and either the enable bits are changed or output bits changed
+ * while enabled.
*/
if ((s->regs.gpio_monid & BIT(25)) &&
- addr <= GPIO_MONID + 2 && addr + size > GPIO_MONID + 2) {
+ ((addr <= GPIO_MONID + 2 && addr + size > GPIO_MONID + 2) ||
+ (addr == GPIO_MONID && (s->regs.gpio_monid & 0x60000)))) {
s->regs.gpio_monid = ati_i2c(&s->bbi2c, s->regs.gpio_monid, 1);
}
}
--
2.13.7
- [Qemu-devel] [PATCH 0/7] Resend of all outstanding ati-vga patches, BALATON Zoltan, 2019/08/11
- [Qemu-devel] [PATCH 3/7] ati-vga: Fix GPIO_MONID register write,
BALATON Zoltan <=
- [Qemu-devel] [PATCH 7/7] ati-vga: Add limited support for big endian frame buffer aperture, BALATON Zoltan, 2019/08/11
- [Qemu-devel] [PATCH 2/7] ati-vga: Add some register definitions for debugging, BALATON Zoltan, 2019/08/11
- [Qemu-devel] [PATCH 6/7] ati-vga: Attempt to handle CRTC offset not exact multiple of stride, BALATON Zoltan, 2019/08/11
- [Qemu-devel] [PATCH 5/7] ati-vga: Fix hardware cursor image offset, BALATON Zoltan, 2019/08/11
- [Qemu-devel] [PATCH 1/7] ati-vga: Add registers for getting apertures, BALATON Zoltan, 2019/08/11
- [Qemu-devel] [PATCH 4/7] ati-vga: Fix cursor color with guest_hwcursor=true, BALATON Zoltan, 2019/08/11