summary refs log tree commit diff stats
path: root/hw/display/tcx.c
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2020-11-22 15:02:52 +0000
committerPeter Maydell <peter.maydell@linaro.org>2020-11-22 15:02:52 +0000
commit8cc30eb1400fc01f2b139cdd3dc524f8b84dbe07 (patch)
treeb93be0a2bc38ae6788e95419e0c4b189d54dade4 /hw/display/tcx.c
parente3a232cccd2445e5d9e607a65a78cdbc33ff8a0f (diff)
parent48e5c7f34c557afe49396a00169629d24dc3342d (diff)
downloadfocaccia-qemu-8cc30eb1400fc01f2b139cdd3dc524f8b84dbe07.tar.gz
focaccia-qemu-8cc30eb1400fc01f2b139cdd3dc524f8b84dbe07.zip
Merge remote-tracking branch 'remotes/mcayland/tags/qemu-sparc-20201122' into staging
qemu-sparc queue

# gpg: Signature made Sun 22 Nov 2020 14:21:19 GMT
# gpg:                using RSA key CC621AB98E82200D915CC9C45BC2C56FAE0F321F
# gpg:                issuer "mark.cave-ayland@ilande.co.uk"
# gpg: Good signature from "Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>" [full]
# Primary key fingerprint: CC62 1AB9 8E82 200D 915C  C9C4 5BC2 C56F AE0F 321F

* remotes/mcayland/tags/qemu-sparc-20201122:
  hw/display/tcx: add missing 64-bit access for framebuffer blitter

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/display/tcx.c')
-rw-r--r--hw/display/tcx.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/hw/display/tcx.c b/hw/display/tcx.c
index 878ecc8c50..3799d29b75 100644
--- a/hw/display/tcx.c
+++ b/hw/display/tcx.c
@@ -649,10 +649,14 @@ static const MemoryRegionOps tcx_blit_ops = {
     .read = tcx_blit_readl,
     .write = tcx_blit_writel,
     .endianness = DEVICE_NATIVE_ENDIAN,
-    .valid = {
+    .impl = {
         .min_access_size = 4,
         .max_access_size = 4,
     },
+    .valid = {
+        .min_access_size = 4,
+        .max_access_size = 8,
+    },
 };
 
 static const MemoryRegionOps tcx_rblit_ops = {