mac_via: allow long accesses to VIA registers
authorMark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Thu, 11 Mar 2021 10:05:01 +0000 (10:05 +0000)
committerLaurent Vivier <laurent@vivier.eu>
Tue, 16 Mar 2021 20:41:37 +0000 (21:41 +0100)
The MacOS SCSI driver uses a long access to read the VIA registers rather than
just a single byte during the message out phase.

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20210311100505.22596-4-mark.cave-ayland@ilande.co.uk>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
hw/misc/mac_via.c

index 0a25de577cf956d13b6c17a50b84bef3af173e13..8810eb97ccb7cf5950a47070d27e69d41aaa85eb 100644 (file)
@@ -966,7 +966,7 @@ static const MemoryRegionOps mos6522_q800_via1_ops = {
     .endianness = DEVICE_BIG_ENDIAN,
     .valid = {
         .min_access_size = 1,
-        .max_access_size = 1,
+        .max_access_size = 4,
     },
 };
 
@@ -995,7 +995,7 @@ static const MemoryRegionOps mos6522_q800_via2_ops = {
     .endianness = DEVICE_BIG_ENDIAN,
     .valid = {
         .min_access_size = 1,
-        .max_access_size = 1,
+        .max_access_size = 4,
     },
 };