2 * QEMU m68k Macintosh VIA device support
4 * Copyright (c) 2011-2018 Laurent Vivier
5 * Copyright (c) 2018 Mark Cave-Ayland
7 * Some parts from hw/misc/macio/cuda.c
9 * Copyright (c) 2004-2007 Fabrice Bellard
10 * Copyright (c) 2007 Jocelyn Mayer
12 * some parts from linux-2.6.29, arch/m68k/include/asm/mac_via.h
14 * This work is licensed under the terms of the GNU GPL, version 2 or later.
15 * See the COPYING file in the top-level directory.
18 #include "qemu/osdep.h"
19 #include "qemu-common.h"
20 #include "migration/vmstate.h"
21 #include "hw/sysbus.h"
23 #include "qemu/timer.h"
24 #include "hw/misc/mac_via.h"
25 #include "hw/misc/mos6522.h"
26 #include "hw/input/adb.h"
27 #include "sysemu/runstate.h"
28 #include "qapi/error.h"
29 #include "qemu/cutils.h"
30 #include "hw/qdev-properties.h"
31 #include "sysemu/block-backend.h"
36 * VIAs: There are two in every machine,
39 #define VIA_SIZE (0x2000)
42 * Not all of these are true post MacII I think.
43 * CSA: probably the ones CHRP marks as 'unused' change purposes
44 * when the IWM becomes the SWIM.
45 * http://www.rs6000.ibm.com/resource/technology/chrpio/via5.mak.html
46 * ftp://ftp.austin.ibm.com/pub/technology/spec/chrp/inwork/CHRP_IORef_1.0.pdf
48 * also, http://developer.apple.com/technotes/hw/hw_09.html claims the
49 * following changes for IIfx:
50 * VIA1A_vSccWrReq not available and that VIA1A_vSync has moved to an IOP.
51 * Also, "All of the functionality of VIA2 has been moved to other chips".
54 #define VIA1A_vSccWrReq 0x80 /*
56 * [CHRP] SCC WREQ: Reflects the state of the
57 * Wait/Request pins from the SCC.
58 * [Macintosh Family Hardware]
59 * as CHRP on SE/30,II,IIx,IIcx,IIci.
60 * on IIfx, "0 means an active request"
62 #define VIA1A_vRev8 0x40 /*
63 * Revision 8 board ???
64 * [CHRP] En WaitReqB: Lets the WaitReq_L
65 * signal from port B of the SCC appear on
66 * the PA7 input pin. Output.
67 * [Macintosh Family] On the SE/30, this
68 * is the bit to flip screen buffers.
69 * 0=alternate, 1=main.
70 * on II,IIx,IIcx,IIci,IIfx this is a bit
71 * for Rev ID. 0=II,IIx, 1=IIcx,IIci,IIfx
73 #define VIA1A_vHeadSel 0x20 /*
74 * Head select for IWM.
76 * [Macintosh Family] "Floppy disk
77 * state-control line SEL" on all but IIfx
79 #define VIA1A_vOverlay 0x10 /*
80 * [Macintosh Family] On SE/30,II,IIx,IIcx
81 * this bit enables the "Overlay" address
82 * map in the address decoders as it is on
83 * reset for mapping the ROM over the reset
84 * vector. 1=use overlay map.
85 * On the IIci,IIfx it is another bit of the
86 * CPU ID: 0=normal IIci, 1=IIci with parity
88 * [CHRP] En WaitReqA: Lets the WaitReq_L
89 * signal from port A of the SCC appear
90 * on the PA7 input pin (CHRP). Output.
91 * [MkLinux] "Drive Select"
92 * (with 0x20 being 'disk head select')
94 #define VIA1A_vSync 0x08 /*
95 * [CHRP] Sync Modem: modem clock select:
96 * 1: select the external serial clock to
97 * drive the SCC's /RTxCA pin.
98 * 0: Select the 3.6864MHz clock to drive
100 * [Macintosh Family] Correct on all but IIfx
104 * Macintosh Family Hardware sez: bits 0-2 of VIA1A are volume control
105 * on Macs which had the PWM sound hardware. Reserved on newer models.
106 * On IIci,IIfx, bits 1-2 are the rest of the CPU ID:
107 * bit 2: 1=IIci, 0=IIfx
108 * bit 1: 1 on both IIci and IIfx.
109 * MkLinux sez bit 0 is 'burnin flag' in this case.
110 * CHRP sez: VIA1A bits 0-2 and 5 are 'unused': if programmed as
111 * inputs, these bits will read 0.
113 #define VIA1A_vVolume 0x07 /* Audio volume mask for PWM */
114 #define VIA1A_CPUID0 0x02 /* CPU id bit 0 on RBV, others */
115 #define VIA1A_CPUID1 0x04 /* CPU id bit 0 on RBV, others */
116 #define VIA1A_CPUID2 0x10 /* CPU id bit 0 on RBV, others */
117 #define VIA1A_CPUID3 0x40 /* CPU id bit 0 on RBV, others */
120 * Info on VIA1B is from Macintosh Family Hardware & MkLinux.
121 * CHRP offers no info.
123 #define VIA1B_vSound 0x80 /*
124 * Sound enable (for compatibility with
125 * PWM hardware) 0=enabled.
126 * Also, on IIci w/parity, shows parity error
129 #define VIA1B_vMystery 0x40 /*
130 * On IIci, parity enable. 0=enabled,1=disabled
131 * On SE/30, vertical sync interrupt enable.
132 * 0=enabled. This vSync interrupt shows up
133 * as a slot $E interrupt.
135 #define VIA1B_vADBS2 0x20 /* ADB state input bit 1 (unused on IIfx) */
136 #define VIA1B_vADBS1 0x10 /* ADB state input bit 0 (unused on IIfx) */
137 #define VIA1B_vADBInt 0x08 /* ADB interrupt 0=interrupt (unused on IIfx)*/
138 #define VIA1B_vRTCEnb 0x04 /* Enable Real time clock. 0=enabled. */
139 #define VIA1B_vRTCClk 0x02 /* Real time clock serial-clock line. */
140 #define VIA1B_vRTCData 0x01 /* Real time clock serial-data line. */
143 * VIA2 A register is the interrupt lines raised off the nubus
145 * The below info is from 'Macintosh Family Hardware.'
146 * MkLinux calls the 'IIci internal video IRQ' below the 'RBV slot 0 irq.'
147 * It also notes that the slot $9 IRQ is the 'Ethernet IRQ' and
148 * defines the 'Video IRQ' as 0x40 for the 'EVR' VIA work-alike.
149 * Perhaps OSS uses vRAM1 and vRAM2 for ADB.
152 #define VIA2A_vRAM1 0x80 /* RAM size bit 1 (IIci: reserved) */
153 #define VIA2A_vRAM0 0x40 /* RAM size bit 0 (IIci: internal video IRQ) */
154 #define VIA2A_vIRQE 0x20 /* IRQ from slot $E */
155 #define VIA2A_vIRQD 0x10 /* IRQ from slot $D */
156 #define VIA2A_vIRQC 0x08 /* IRQ from slot $C */
157 #define VIA2A_vIRQB 0x04 /* IRQ from slot $B */
158 #define VIA2A_vIRQA 0x02 /* IRQ from slot $A */
159 #define VIA2A_vIRQ9 0x01 /* IRQ from slot $9 */
162 * RAM size bits decoded as follows:
163 * bit1 bit0 size of ICs in bank A
171 * Register B has the fun stuff in it
174 #define VIA2B_vVBL 0x80 /*
175 * VBL output to VIA1 (60.15Hz) driven by
177 * on IIci, parity test: 0=test mode.
178 * [MkLinux] RBV_PARODD: 1=odd,0=even.
180 #define VIA2B_vSndJck 0x40 /*
181 * External sound jack status.
182 * 0=plug is inserted. On SE/30, always 0
184 #define VIA2B_vTfr0 0x20 /* Transfer mode bit 0 ack from NuBus */
185 #define VIA2B_vTfr1 0x10 /* Transfer mode bit 1 ack from NuBus */
186 #define VIA2B_vMode32 0x08 /*
187 * 24/32bit switch - doubles as cache flush
188 * on II, AMU/PMMU control.
189 * if AMU, 0=24bit to 32bit translation
190 * if PMMU, 1=PMMU is accessing page table.
192 * on IIx,IIcx,IIfx, unused.
193 * on IIci/RBV, cache control. 0=flush cache.
195 #define VIA2B_vPower 0x04 /*
196 * Power off, 0=shut off power.
197 * on SE/30 this signal sent to PDS card.
199 #define VIA2B_vBusLk 0x02 /*
200 * Lock NuBus transactions, 0=locked.
201 * on SE/30 sent to PDS card.
203 #define VIA2B_vCDis 0x01 /*
204 * Cache control. On IIci, 1=disable cache card
205 * on others, 0=disable processor's instruction
209 /* interrupt flags */
215 #define VIA_IRQ_TIMER1 0x40
216 #define VIA_IRQ_TIMER2 0x20
219 * Apple sez: http://developer.apple.com/technotes/ov/ov_04.html
220 * Another example of a valid function that has no ROM support is the use
221 * of the alternate video page for page-flipping animation. Since there
222 * is no ROM call to flip pages, it is necessary to go play with the
223 * right bit in the VIA chip (6522 Versatile Interface Adapter).
224 * [CSA: don't know which one this is, but it's one of 'em!]
228 * 6522 registers - see databook.
229 * CSA: Assignments for VIA1 confirmed from CHRP spec.
232 /* partial address decode. 0xYYXX : XX part for RBV, YY part for VIA */
233 /* Note: 15 VIA regs, 8 RBV regs */
235 #define vBufB 0x0000 /* [VIA/RBV] Register B */
236 #define vBufAH 0x0200 /* [VIA only] Buffer A, with handshake. DON'T USE! */
237 #define vDirB 0x0400 /* [VIA only] Data Direction Register B. */
238 #define vDirA 0x0600 /* [VIA only] Data Direction Register A. */
239 #define vT1CL 0x0800 /* [VIA only] Timer one counter low. */
240 #define vT1CH 0x0a00 /* [VIA only] Timer one counter high. */
241 #define vT1LL 0x0c00 /* [VIA only] Timer one latches low. */
242 #define vT1LH 0x0e00 /* [VIA only] Timer one latches high. */
243 #define vT2CL 0x1000 /* [VIA only] Timer two counter low. */
244 #define vT2CH 0x1200 /* [VIA only] Timer two counter high. */
245 #define vSR 0x1400 /* [VIA only] Shift register. */
246 #define vACR 0x1600 /* [VIA only] Auxilary control register. */
247 #define vPCR 0x1800 /* [VIA only] Peripheral control register. */
249 * CHRP sez never ever to *write* this.
250 * Mac family says never to *change* this.
251 * In fact we need to initialize it once at start.
253 #define vIFR 0x1a00 /* [VIA/RBV] Interrupt flag register. */
254 #define vIER 0x1c00 /* [VIA/RBV] Interrupt enable register. */
255 #define vBufA 0x1e00 /* [VIA/RBV] register A (no handshake) */
257 /* from linux 2.6 drivers/macintosh/via-macii.c */
261 #define VIA1ACR_vShiftCtrl 0x1c /* Shift register control bits */
262 #define VIA1ACR_vShiftExtClk 0x0c /* Shift on external clock */
263 #define VIA1ACR_vShiftOut 0x10 /* Shift out if 1 */
266 * Apple Macintosh Family Hardware Refenece
267 * Table 19-10 ADB transaction states
270 #define ADB_STATE_NEW 0
271 #define ADB_STATE_EVEN 1
272 #define ADB_STATE_ODD 2
273 #define ADB_STATE_IDLE 3
275 #define VIA1B_vADB_StateMask (VIA1B_vADBS1 | VIA1B_vADBS2)
276 #define VIA1B_vADB_StateShift 4
278 #define VIA_TIMER_FREQ (783360)
279 #define VIA_ADB_POLL_FREQ 50 /* XXX: not real */
281 /* VIA returns time offset from Jan 1, 1904, not 1970 */
282 #define RTC_OFFSET 2082844800
292 REG_PRAM_ADDR_LAST
= REG_PRAM_ADDR
+ 19,
294 REG_PRAM_SECT_LAST
= REG_PRAM_SECT
+ 7,
299 static void via1_VBL_update(MOS6522Q800VIA1State
*v1s
)
301 MOS6522State
*s
= MOS6522(v1s
);
304 v1s
->next_VBL
= (qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) + 16630) /
307 if (s
->ier
& VIA1_IRQ_VBLANK
) {
308 timer_mod(v1s
->VBL_timer
, v1s
->next_VBL
);
310 timer_del(v1s
->VBL_timer
);
314 static void via1_one_second_update(MOS6522Q800VIA1State
*v1s
)
316 MOS6522State
*s
= MOS6522(v1s
);
318 v1s
->next_second
= (qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL
) + 1000) /
320 if (s
->ier
& VIA1_IRQ_ONE_SECOND
) {
321 timer_mod(v1s
->one_second_timer
, v1s
->next_second
);
323 timer_del(v1s
->one_second_timer
);
327 static void via1_VBL(void *opaque
)
329 MOS6522Q800VIA1State
*v1s
= opaque
;
330 MOS6522State
*s
= MOS6522(v1s
);
331 MOS6522DeviceClass
*mdc
= MOS6522_GET_CLASS(s
);
333 s
->ifr
|= VIA1_IRQ_VBLANK
;
336 via1_VBL_update(v1s
);
339 static void via1_one_second(void *opaque
)
341 MOS6522Q800VIA1State
*v1s
= opaque
;
342 MOS6522State
*s
= MOS6522(v1s
);
343 MOS6522DeviceClass
*mdc
= MOS6522_GET_CLASS(s
);
345 s
->ifr
|= VIA1_IRQ_ONE_SECOND
;
348 via1_one_second_update(v1s
);
351 static void via1_irq_request(void *opaque
, int irq
, int level
)
353 MOS6522Q800VIA1State
*v1s
= opaque
;
354 MOS6522State
*s
= MOS6522(v1s
);
355 MOS6522DeviceClass
*mdc
= MOS6522_GET_CLASS(s
);
360 s
->ifr
&= ~(1 << irq
);
366 static void via2_irq_request(void *opaque
, int irq
, int level
)
368 MOS6522Q800VIA2State
*v2s
= opaque
;
369 MOS6522State
*s
= MOS6522(v2s
);
370 MOS6522DeviceClass
*mdc
= MOS6522_GET_CLASS(s
);
375 s
->ifr
&= ~(1 << irq
);
382 static void pram_update(MacVIAState
*m
)
385 if (blk_pwrite(m
->blk
, 0, m
->mos6522_via1
.PRAM
,
386 sizeof(m
->mos6522_via1
.PRAM
), 0) < 0) {
387 qemu_log("pram_update: cannot write to file\n");
395 * Command byte Register addressed by the command
397 * z0000001 Seconds register 0 (lowest-order byte)
398 * z0000101 Seconds register 1
399 * z0001001 Seconds register 2
400 * z0001101 Seconds register 3 (highest-order byte)
401 * 00110001 Test register (write-only)
402 * 00110101 Write-Protect Register (write-only)
403 * z010aa01 RAM address 100aa ($10-$13) (first 20 bytes only)
404 * z1aaaa01 RAM address 0aaaa ($00-$0F) (first 20 bytes only)
405 * z0111aaa Extended memory designator and sector number
407 * For a read request, z=1, for a write z=0
408 * The letter a indicates bits whose value depend on what parameter
409 * RAM byte you want to address
411 static int via1_rtc_compact_cmd(uint8_t value
)
413 uint8_t read
= value
& 0x80;
417 /* the last 2 bits of a command byte must always be 0b01 ... */
418 if ((value
& 0x78) == 0x38) {
419 /* except for the extended memory designator */
420 return read
| (REG_PRAM_SECT
+ (value
& 0x07));
422 if ((value
& 0x03) == 0x01) {
424 if ((value
& 0x1c) == 0) {
425 /* seconds registers */
426 return read
| (REG_0
+ (value
& 0x03));
427 } else if ((value
== 0x0c) && !read
) {
429 } else if ((value
== 0x0d) && !read
) {
431 } else if ((value
& 0x1c) == 0x08) {
432 /* RAM address 0x10 to 0x13 */
433 return read
| (REG_PRAM_ADDR
+ 0x10 + (value
& 0x03));
434 } else if ((value
& 0x43) == 0x41) {
435 /* RAM address 0x00 to 0x0f */
436 return read
| (REG_PRAM_ADDR
+ (value
& 0x0f));
442 static void via1_rtc_update(MacVIAState
*m
)
444 MOS6522Q800VIA1State
*v1s
= &m
->mos6522_via1
;
445 MOS6522State
*s
= MOS6522(v1s
);
446 int cmd
, sector
, addr
;
449 if (s
->b
& VIA1B_vRTCEnb
) {
453 if (s
->dirb
& VIA1B_vRTCData
) {
454 /* send bits to the RTC */
455 if (!(v1s
->last_b
& VIA1B_vRTCClk
) && (s
->b
& VIA1B_vRTCClk
)) {
457 m
->data_out
|= s
->b
& VIA1B_vRTCData
;
460 trace_via1_rtc_update_data_out(m
->data_out_cnt
, m
->data_out
);
462 trace_via1_rtc_update_data_in(m
->data_in_cnt
, m
->data_in
);
463 /* receive bits from the RTC */
464 if ((v1s
->last_b
& VIA1B_vRTCClk
) &&
465 !(s
->b
& VIA1B_vRTCClk
) &&
467 s
->b
= (s
->b
& ~VIA1B_vRTCData
) |
468 ((m
->data_in
>> 7) & VIA1B_vRTCData
);
475 if (m
->data_out_cnt
!= 8) {
481 trace_via1_rtc_internal_status(m
->cmd
, m
->alt
, m
->data_out
);
482 /* first byte: it's a command */
483 if (m
->cmd
== REG_EMPTY
) {
485 cmd
= via1_rtc_compact_cmd(m
->data_out
);
486 trace_via1_rtc_internal_cmd(cmd
);
488 if (cmd
== REG_INVALID
) {
489 trace_via1_rtc_cmd_invalid(m
->data_out
);
493 if (cmd
& 0x80) { /* this is a read command */
494 switch (cmd
& 0x7f) {
495 case REG_0
...REG_3
: /* seconds registers */
497 * register 0 is lowest-order byte
498 * register 3 is highest-order byte
501 time
= m
->tick_offset
+ (qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
)
502 / NANOSECONDS_PER_SECOND
);
503 trace_via1_rtc_internal_time(time
);
504 m
->data_in
= (time
>> ((cmd
& 0x03) << 3)) & 0xff;
506 trace_via1_rtc_cmd_seconds_read((cmd
& 0x7f) - REG_0
,
509 case REG_PRAM_ADDR
...REG_PRAM_ADDR_LAST
:
510 /* PRAM address 0x00 -> 0x13 */
511 m
->data_in
= v1s
->PRAM
[(cmd
& 0x7f) - REG_PRAM_ADDR
];
513 trace_via1_rtc_cmd_pram_read((cmd
& 0x7f) - REG_PRAM_ADDR
,
516 case REG_PRAM_SECT
...REG_PRAM_SECT_LAST
:
518 * extended memory designator and sector number
519 * the only two-byte read command
521 trace_via1_rtc_internal_set_cmd(cmd
);
525 g_assert_not_reached();
531 /* this is a write command, needs a parameter */
532 if (cmd
== REG_WPROTECT
|| !m
->wprotect
) {
533 trace_via1_rtc_internal_set_cmd(cmd
);
536 trace_via1_rtc_internal_ignore_cmd(cmd
);
541 /* second byte: it's a parameter */
542 if (m
->alt
== REG_EMPTY
) {
543 switch (m
->cmd
& 0x7f) {
544 case REG_0
...REG_3
: /* seconds register */
546 trace_via1_rtc_cmd_seconds_write(m
->cmd
- REG_0
, m
->data_out
);
550 /* device control: nothing to do */
551 trace_via1_rtc_cmd_test_write(m
->data_out
);
555 /* Write Protect register */
556 trace_via1_rtc_cmd_wprotect_write(m
->data_out
);
557 m
->wprotect
= !!(m
->data_out
& 0x80);
560 case REG_PRAM_ADDR
...REG_PRAM_ADDR_LAST
:
561 /* PRAM address 0x00 -> 0x13 */
562 trace_via1_rtc_cmd_pram_write(m
->cmd
- REG_PRAM_ADDR
, m
->data_out
);
563 v1s
->PRAM
[m
->cmd
- REG_PRAM_ADDR
] = m
->data_out
;
567 case REG_PRAM_SECT
...REG_PRAM_SECT_LAST
:
568 addr
= (m
->data_out
>> 2) & 0x1f;
569 sector
= (m
->cmd
& 0x7f) - REG_PRAM_SECT
;
572 m
->data_in
= v1s
->PRAM
[sector
* 32 + addr
];
574 trace_via1_rtc_cmd_pram_sect_read(sector
, addr
,
579 /* it's a write, we need one more parameter */
580 trace_via1_rtc_internal_set_alt(addr
, sector
, addr
);
585 g_assert_not_reached();
591 /* third byte: it's the data of a REG_PRAM_SECT write */
592 g_assert(REG_PRAM_SECT
<= m
->cmd
&& m
->cmd
<= REG_PRAM_SECT_LAST
);
593 sector
= m
->cmd
- REG_PRAM_SECT
;
594 v1s
->PRAM
[sector
* 32 + m
->alt
] = m
->data_out
;
596 trace_via1_rtc_cmd_pram_sect_write(sector
, m
->alt
, sector
* 32 + m
->alt
,
602 static void adb_via_poll(void *opaque
)
604 MacVIAState
*m
= opaque
;
605 MOS6522Q800VIA1State
*v1s
= MOS6522_Q800_VIA1(&m
->mos6522_via1
);
606 MOS6522State
*s
= MOS6522(v1s
);
607 ADBBusState
*adb_bus
= &m
->adb_bus
;
609 uint8_t *data
= &s
->sr
;
614 * Setting vADBInt below indicates that an autopoll reply has been
615 * received, however we must block autopoll until the point where
616 * the entire reply has been read back to the host
618 adb_autopoll_block(adb_bus
);
620 m
->adb_data_in_index
= 0;
621 m
->adb_data_out_index
= 0;
622 olen
= adb_poll(adb_bus
, obuf
, adb_bus
->autopoll_mask
);
625 /* Autopoll response */
628 memcpy(m
->adb_data_in
, &obuf
[1], olen
);
629 m
->adb_data_in_size
= olen
;
631 s
->b
&= ~VIA1B_vADBInt
;
632 qemu_irq_raise(m
->adb_data_ready
);
633 } else if (olen
< 0) {
634 /* Bus timeout (device does not exist) */
636 s
->b
|= VIA1B_vADBInt
;
637 adb_autopoll_unblock(adb_bus
);
639 pending
= adb_bus
->pending
& ~(1 << (m
->adb_autopoll_cmd
>> 4));
643 * Bus timeout (device exists but another device has data). Block
644 * autopoll so the OS can read out the first EVEN and first ODD
645 * byte to determine bus timeout and SRQ status
647 *data
= m
->adb_autopoll_cmd
;
648 s
->b
&= ~VIA1B_vADBInt
;
654 memcpy(m
->adb_data_in
, obuf
, olen
);
655 m
->adb_data_in_size
= olen
;
657 qemu_irq_raise(m
->adb_data_ready
);
659 /* Bus timeout (device exists but no other device has data) */
661 s
->b
|= VIA1B_vADBInt
;
662 adb_autopoll_unblock(adb_bus
);
666 trace_via1_adb_poll(*data
, (s
->b
& VIA1B_vADBInt
) ? "+" : "-",
667 adb_bus
->status
, m
->adb_data_in_index
, olen
);
670 static int adb_via_send_len(uint8_t data
)
672 /* Determine the send length from the given ADB command */
673 uint8_t cmd
= data
& 0xc;
674 uint8_t reg
= data
& 0x3;
681 /* Register 2 is only used for the keyboard */
685 * Fortunately our devices only implement writes
686 * to register 3 which is fixed at 2 bytes
690 qemu_log_mask(LOG_UNIMP
, "ADB unknown length for register %d\n",
700 static void adb_via_send(MacVIAState
*s
, int state
, uint8_t data
)
702 MOS6522Q800VIA1State
*v1s
= MOS6522_Q800_VIA1(&s
->mos6522_via1
);
703 MOS6522State
*ms
= MOS6522(v1s
);
704 ADBBusState
*adb_bus
= &s
->adb_bus
;
705 uint16_t autopoll_mask
;
710 * Command byte: vADBInt tells host autopoll data already present
711 * in VIA shift register and ADB transceiver
713 adb_autopoll_block(adb_bus
);
715 if (adb_bus
->status
& ADB_STATUS_POLLREPLY
) {
716 /* Tell the host the existing data is from autopoll */
717 ms
->b
&= ~VIA1B_vADBInt
;
719 ms
->b
|= VIA1B_vADBInt
;
720 s
->adb_data_out_index
= 0;
721 s
->adb_data_out
[s
->adb_data_out_index
++] = data
;
724 trace_via1_adb_send(" NEW", data
, (ms
->b
& VIA1B_vADBInt
) ? "+" : "-");
725 qemu_irq_raise(s
->adb_data_ready
);
730 ms
->b
|= VIA1B_vADBInt
;
731 s
->adb_data_out
[s
->adb_data_out_index
++] = data
;
733 trace_via1_adb_send(state
== ADB_STATE_EVEN
? "EVEN" : " ODD",
734 data
, (ms
->b
& VIA1B_vADBInt
) ? "+" : "-");
735 qemu_irq_raise(s
->adb_data_ready
);
742 /* If the command is complete, execute it */
743 if (s
->adb_data_out_index
== adb_via_send_len(s
->adb_data_out
[0])) {
744 s
->adb_data_in_size
= adb_request(adb_bus
, s
->adb_data_in
,
746 s
->adb_data_out_index
);
747 s
->adb_data_in_index
= 0;
749 if (adb_bus
->status
& ADB_STATUS_BUSTIMEOUT
) {
751 * Bus timeout (but allow first EVEN and ODD byte to indicate
752 * timeout via vADBInt and SRQ status)
754 s
->adb_data_in
[0] = 0xff;
755 s
->adb_data_in
[1] = 0xff;
756 s
->adb_data_in_size
= 2;
760 * If last command is TALK, store it for use by autopoll and adjust
761 * the autopoll mask accordingly
763 if ((s
->adb_data_out
[0] & 0xc) == 0xc) {
764 s
->adb_autopoll_cmd
= s
->adb_data_out
[0];
766 autopoll_mask
= 1 << (s
->adb_autopoll_cmd
>> 4);
767 adb_set_autopoll_mask(adb_bus
, autopoll_mask
);
772 static void adb_via_receive(MacVIAState
*s
, int state
, uint8_t *data
)
774 MOS6522Q800VIA1State
*v1s
= MOS6522_Q800_VIA1(&s
->mos6522_via1
);
775 MOS6522State
*ms
= MOS6522(v1s
);
776 ADBBusState
*adb_bus
= &s
->adb_bus
;
781 ms
->b
|= VIA1B_vADBInt
;
786 * Since adb_request() will have already consumed the data from the
787 * device, we must detect this extra state change and re-inject the
788 * reponse as either a "fake" autopoll reply or bus timeout
791 if (s
->adb_data_in_index
== 0) {
792 if (adb_bus
->status
& ADB_STATUS_BUSTIMEOUT
) {
794 ms
->b
|= VIA1B_vADBInt
;
795 qemu_irq_raise(s
->adb_data_ready
);
796 } else if (s
->adb_data_in_size
> 0) {
797 adb_bus
->status
= ADB_STATUS_POLLREPLY
;
798 *data
= s
->adb_autopoll_cmd
;
799 ms
->b
&= ~VIA1B_vADBInt
;
800 qemu_irq_raise(s
->adb_data_ready
);
803 ms
->b
|= VIA1B_vADBInt
;
804 adb_autopoll_unblock(adb_bus
);
807 trace_via1_adb_receive("IDLE", *data
,
808 (ms
->b
& VIA1B_vADBInt
) ? "+" : "-", adb_bus
->status
,
809 s
->adb_data_in_index
, s
->adb_data_in_size
);
815 switch (s
->adb_data_in_index
) {
817 /* First EVEN byte: vADBInt indicates bus timeout */
818 trace_via1_adb_receive(state
== ADB_STATE_EVEN
? "EVEN" : " ODD",
819 *data
, (ms
->b
& VIA1B_vADBInt
) ? "+" : "-",
820 adb_bus
->status
, s
->adb_data_in_index
,
821 s
->adb_data_in_size
);
823 *data
= s
->adb_data_in
[s
->adb_data_in_index
++];
824 if (adb_bus
->status
& ADB_STATUS_BUSTIMEOUT
) {
825 ms
->b
&= ~VIA1B_vADBInt
;
827 ms
->b
|= VIA1B_vADBInt
;
832 /* First ODD byte: vADBInt indicates SRQ */
833 trace_via1_adb_receive(state
== ADB_STATE_EVEN
? "EVEN" : " ODD",
834 *data
, (ms
->b
& VIA1B_vADBInt
) ? "+" : "-",
835 adb_bus
->status
, s
->adb_data_in_index
,
836 s
->adb_data_in_size
);
838 *data
= s
->adb_data_in
[s
->adb_data_in_index
++];
839 pending
= adb_bus
->pending
& ~(1 << (s
->adb_autopoll_cmd
>> 4));
841 ms
->b
&= ~VIA1B_vADBInt
;
843 ms
->b
|= VIA1B_vADBInt
;
849 * Otherwise vADBInt indicates end of data. Note that Linux
850 * specifically checks for the sequence 0x0 0xff to confirm the
851 * end of the poll reply, so provide these extra bytes below to
854 trace_via1_adb_receive(state
== ADB_STATE_EVEN
? "EVEN" : " ODD",
855 *data
, (ms
->b
& VIA1B_vADBInt
) ? "+" : "-",
856 adb_bus
->status
, s
->adb_data_in_index
,
857 s
->adb_data_in_size
);
859 if (s
->adb_data_in_index
< s
->adb_data_in_size
) {
861 *data
= s
->adb_data_in
[s
->adb_data_in_index
++];
862 ms
->b
|= VIA1B_vADBInt
;
863 } else if (s
->adb_data_in_index
== s
->adb_data_in_size
) {
864 if (adb_bus
->status
& ADB_STATUS_BUSTIMEOUT
) {
865 /* Bus timeout (no more data) */
868 /* Return 0x0 after reply */
871 s
->adb_data_in_index
++;
872 ms
->b
&= ~VIA1B_vADBInt
;
874 /* Bus timeout (no more data) */
876 ms
->b
&= ~VIA1B_vADBInt
;
878 adb_autopoll_unblock(adb_bus
);
883 qemu_irq_raise(s
->adb_data_ready
);
888 static void via1_adb_update(MacVIAState
*m
)
890 MOS6522Q800VIA1State
*v1s
= MOS6522_Q800_VIA1(&m
->mos6522_via1
);
891 MOS6522State
*s
= MOS6522(v1s
);
894 oldstate
= (v1s
->last_b
& VIA1B_vADB_StateMask
) >> VIA1B_vADB_StateShift
;
895 state
= (s
->b
& VIA1B_vADB_StateMask
) >> VIA1B_vADB_StateShift
;
897 if (state
!= oldstate
) {
898 if (s
->acr
& VIA1ACR_vShiftOut
) {
900 adb_via_send(m
, state
, s
->sr
);
903 adb_via_receive(m
, state
, &s
->sr
);
908 static uint64_t mos6522_q800_via1_read(void *opaque
, hwaddr addr
, unsigned size
)
910 MOS6522Q800VIA1State
*s
= MOS6522_Q800_VIA1(opaque
);
911 MOS6522State
*ms
= MOS6522(s
);
912 int64_t now
= qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL
);
915 * If IRQs are disabled, timers are disabled, but we need to update
916 * VIA1_IRQ_VBLANK and VIA1_IRQ_ONE_SECOND bits in the IFR
919 if (now
>= s
->next_VBL
) {
920 ms
->ifr
|= VIA1_IRQ_VBLANK
;
923 if (now
>= s
->next_second
) {
924 ms
->ifr
|= VIA1_IRQ_ONE_SECOND
;
925 via1_one_second_update(s
);
928 addr
= (addr
>> 9) & 0xf;
929 return mos6522_read(ms
, addr
, size
);
932 static void mos6522_q800_via1_write(void *opaque
, hwaddr addr
, uint64_t val
,
935 MOS6522Q800VIA1State
*v1s
= MOS6522_Q800_VIA1(opaque
);
936 MacVIAState
*m
= container_of(v1s
, MacVIAState
, mos6522_via1
);
937 MOS6522State
*ms
= MOS6522(v1s
);
939 addr
= (addr
>> 9) & 0xf;
940 mos6522_write(ms
, addr
, val
, size
);
951 via1_one_second_update(v1s
);
952 via1_VBL_update(v1s
);
955 static const MemoryRegionOps mos6522_q800_via1_ops
= {
956 .read
= mos6522_q800_via1_read
,
957 .write
= mos6522_q800_via1_write
,
958 .endianness
= DEVICE_BIG_ENDIAN
,
960 .min_access_size
= 1,
961 .max_access_size
= 1,
965 static uint64_t mos6522_q800_via2_read(void *opaque
, hwaddr addr
, unsigned size
)
967 MOS6522Q800VIA2State
*s
= MOS6522_Q800_VIA2(opaque
);
968 MOS6522State
*ms
= MOS6522(s
);
970 addr
= (addr
>> 9) & 0xf;
971 return mos6522_read(ms
, addr
, size
);
974 static void mos6522_q800_via2_write(void *opaque
, hwaddr addr
, uint64_t val
,
977 MOS6522Q800VIA2State
*s
= MOS6522_Q800_VIA2(opaque
);
978 MOS6522State
*ms
= MOS6522(s
);
980 addr
= (addr
>> 9) & 0xf;
981 mos6522_write(ms
, addr
, val
, size
);
984 static const MemoryRegionOps mos6522_q800_via2_ops
= {
985 .read
= mos6522_q800_via2_read
,
986 .write
= mos6522_q800_via2_write
,
987 .endianness
= DEVICE_BIG_ENDIAN
,
989 .min_access_size
= 1,
990 .max_access_size
= 1,
994 static void mac_via_reset(DeviceState
*dev
)
996 MacVIAState
*m
= MAC_VIA(dev
);
997 MOS6522Q800VIA1State
*v1s
= &m
->mos6522_via1
;
998 ADBBusState
*adb_bus
= &m
->adb_bus
;
1000 adb_set_autopoll_enabled(adb_bus
, true);
1002 timer_del(v1s
->VBL_timer
);
1004 timer_del(v1s
->one_second_timer
);
1005 v1s
->next_second
= 0;
1011 static void mac_via_realize(DeviceState
*dev
, Error
**errp
)
1013 MacVIAState
*m
= MAC_VIA(dev
);
1015 ADBBusState
*adb_bus
= &m
->adb_bus
;
1019 /* Init VIAs 1 and 2 */
1020 object_initialize_child(OBJECT(dev
), "via1", &m
->mos6522_via1
,
1021 TYPE_MOS6522_Q800_VIA1
);
1023 object_initialize_child(OBJECT(dev
), "via2", &m
->mos6522_via2
,
1024 TYPE_MOS6522_Q800_VIA2
);
1026 /* Pass through mos6522 output IRQs */
1027 ms
= MOS6522(&m
->mos6522_via1
);
1028 object_property_add_alias(OBJECT(dev
), "irq[0]", OBJECT(ms
),
1029 SYSBUS_DEVICE_GPIO_IRQ
"[0]");
1030 ms
= MOS6522(&m
->mos6522_via2
);
1031 object_property_add_alias(OBJECT(dev
), "irq[1]", OBJECT(ms
),
1032 SYSBUS_DEVICE_GPIO_IRQ
"[0]");
1034 sysbus_realize(SYS_BUS_DEVICE(&m
->mos6522_via1
), &error_abort
);
1035 sysbus_realize(SYS_BUS_DEVICE(&m
->mos6522_via2
), &error_abort
);
1037 /* Pass through mos6522 input IRQs */
1038 qdev_pass_gpios(DEVICE(&m
->mos6522_via1
), dev
, "via1-irq");
1039 qdev_pass_gpios(DEVICE(&m
->mos6522_via2
), dev
, "via2-irq");
1042 m
->mos6522_via1
.one_second_timer
= timer_new_ms(QEMU_CLOCK_VIRTUAL
,
1045 m
->mos6522_via1
.VBL_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, via1_VBL
,
1048 qemu_get_timedate(&tm
, 0);
1049 m
->tick_offset
= (uint32_t)mktimegm(&tm
) + RTC_OFFSET
;
1051 adb_register_autopoll_callback(adb_bus
, adb_via_poll
, m
);
1052 m
->adb_data_ready
= qdev_get_gpio_in_named(dev
, "via1-irq",
1053 VIA1_IRQ_ADB_READY_BIT
);
1056 int64_t len
= blk_getlength(m
->blk
);
1058 error_setg_errno(errp
, -len
,
1059 "could not get length of backing image");
1062 ret
= blk_set_perm(m
->blk
,
1063 BLK_PERM_CONSISTENT_READ
| BLK_PERM_WRITE
,
1064 BLK_PERM_ALL
, errp
);
1069 len
= blk_pread(m
->blk
, 0, m
->mos6522_via1
.PRAM
,
1070 sizeof(m
->mos6522_via1
.PRAM
));
1071 if (len
!= sizeof(m
->mos6522_via1
.PRAM
)) {
1072 error_setg(errp
, "can't read PRAM contents");
1078 static void mac_via_init(Object
*obj
)
1080 SysBusDevice
*sbd
= SYS_BUS_DEVICE(obj
);
1081 MacVIAState
*m
= MAC_VIA(obj
);
1084 memory_region_init(&m
->mmio
, obj
, "mac-via", 2 * VIA_SIZE
);
1085 sysbus_init_mmio(sbd
, &m
->mmio
);
1087 memory_region_init_io(&m
->via1mem
, obj
, &mos6522_q800_via1_ops
,
1088 &m
->mos6522_via1
, "via1", VIA_SIZE
);
1089 memory_region_add_subregion(&m
->mmio
, 0x0, &m
->via1mem
);
1091 memory_region_init_io(&m
->via2mem
, obj
, &mos6522_q800_via2_ops
,
1092 &m
->mos6522_via2
, "via2", VIA_SIZE
);
1093 memory_region_add_subregion(&m
->mmio
, VIA_SIZE
, &m
->via2mem
);
1096 qbus_create_inplace((BusState
*)&m
->adb_bus
, sizeof(m
->adb_bus
),
1097 TYPE_ADB_BUS
, DEVICE(obj
), "adb.0");
1100 static void postload_update_cb(void *opaque
, int running
, RunState state
)
1102 MacVIAState
*m
= MAC_VIA(opaque
);
1104 qemu_del_vm_change_state_handler(m
->vmstate
);
1110 static int mac_via_post_load(void *opaque
, int version_id
)
1112 MacVIAState
*m
= MAC_VIA(opaque
);
1115 m
->vmstate
= qemu_add_vm_change_state_handler(postload_update_cb
,
1122 static const VMStateDescription vmstate_mac_via
= {
1125 .minimum_version_id
= 2,
1126 .post_load
= mac_via_post_load
,
1127 .fields
= (VMStateField
[]) {
1129 VMSTATE_STRUCT(mos6522_via1
.parent_obj
, MacVIAState
, 0, vmstate_mos6522
,
1131 VMSTATE_UINT8(mos6522_via1
.last_b
, MacVIAState
),
1132 VMSTATE_BUFFER(mos6522_via1
.PRAM
, MacVIAState
),
1133 VMSTATE_TIMER_PTR(mos6522_via1
.one_second_timer
, MacVIAState
),
1134 VMSTATE_INT64(mos6522_via1
.next_second
, MacVIAState
),
1135 VMSTATE_TIMER_PTR(mos6522_via1
.VBL_timer
, MacVIAState
),
1136 VMSTATE_INT64(mos6522_via1
.next_VBL
, MacVIAState
),
1137 VMSTATE_STRUCT(mos6522_via2
.parent_obj
, MacVIAState
, 0, vmstate_mos6522
,
1140 VMSTATE_UINT32(tick_offset
, MacVIAState
),
1141 VMSTATE_UINT8(data_out
, MacVIAState
),
1142 VMSTATE_INT32(data_out_cnt
, MacVIAState
),
1143 VMSTATE_UINT8(data_in
, MacVIAState
),
1144 VMSTATE_UINT8(data_in_cnt
, MacVIAState
),
1145 VMSTATE_UINT8(cmd
, MacVIAState
),
1146 VMSTATE_INT32(wprotect
, MacVIAState
),
1147 VMSTATE_INT32(alt
, MacVIAState
),
1149 VMSTATE_INT32(adb_data_in_size
, MacVIAState
),
1150 VMSTATE_INT32(adb_data_in_index
, MacVIAState
),
1151 VMSTATE_INT32(adb_data_out_index
, MacVIAState
),
1152 VMSTATE_BUFFER(adb_data_in
, MacVIAState
),
1153 VMSTATE_BUFFER(adb_data_out
, MacVIAState
),
1154 VMSTATE_UINT8(adb_autopoll_cmd
, MacVIAState
),
1155 VMSTATE_END_OF_LIST()
1159 static Property mac_via_properties
[] = {
1160 DEFINE_PROP_DRIVE("drive", MacVIAState
, blk
),
1161 DEFINE_PROP_END_OF_LIST(),
1164 static void mac_via_class_init(ObjectClass
*oc
, void *data
)
1166 DeviceClass
*dc
= DEVICE_CLASS(oc
);
1168 dc
->realize
= mac_via_realize
;
1169 dc
->reset
= mac_via_reset
;
1170 dc
->vmsd
= &vmstate_mac_via
;
1171 device_class_set_props(dc
, mac_via_properties
);
1174 static TypeInfo mac_via_info
= {
1175 .name
= TYPE_MAC_VIA
,
1176 .parent
= TYPE_SYS_BUS_DEVICE
,
1177 .instance_size
= sizeof(MacVIAState
),
1178 .instance_init
= mac_via_init
,
1179 .class_init
= mac_via_class_init
,
1183 static void mos6522_q800_via1_reset(DeviceState
*dev
)
1185 MOS6522State
*ms
= MOS6522(dev
);
1186 MOS6522DeviceClass
*mdc
= MOS6522_GET_CLASS(ms
);
1188 mdc
->parent_reset(dev
);
1190 ms
->timers
[0].frequency
= VIA_TIMER_FREQ
;
1191 ms
->timers
[1].frequency
= VIA_TIMER_FREQ
;
1193 ms
->b
= VIA1B_vADB_StateMask
| VIA1B_vADBInt
| VIA1B_vRTCEnb
;
1196 static void mos6522_q800_via1_init(Object
*obj
)
1198 qdev_init_gpio_in_named(DEVICE(obj
), via1_irq_request
, "via1-irq",
1202 static void mos6522_q800_via1_class_init(ObjectClass
*oc
, void *data
)
1204 DeviceClass
*dc
= DEVICE_CLASS(oc
);
1206 dc
->reset
= mos6522_q800_via1_reset
;
1209 static const TypeInfo mos6522_q800_via1_type_info
= {
1210 .name
= TYPE_MOS6522_Q800_VIA1
,
1211 .parent
= TYPE_MOS6522
,
1212 .instance_size
= sizeof(MOS6522Q800VIA1State
),
1213 .instance_init
= mos6522_q800_via1_init
,
1214 .class_init
= mos6522_q800_via1_class_init
,
1218 static void mos6522_q800_via2_portB_write(MOS6522State
*s
)
1220 if (s
->dirb
& VIA2B_vPower
&& (s
->b
& VIA2B_vPower
) == 0) {
1222 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_SHUTDOWN
);
1226 static void mos6522_q800_via2_reset(DeviceState
*dev
)
1228 MOS6522State
*ms
= MOS6522(dev
);
1229 MOS6522DeviceClass
*mdc
= MOS6522_GET_CLASS(ms
);
1231 mdc
->parent_reset(dev
);
1233 ms
->timers
[0].frequency
= VIA_TIMER_FREQ
;
1234 ms
->timers
[1].frequency
= VIA_TIMER_FREQ
;
1240 static void mos6522_q800_via2_init(Object
*obj
)
1242 qdev_init_gpio_in_named(DEVICE(obj
), via2_irq_request
, "via2-irq",
1246 static void mos6522_q800_via2_class_init(ObjectClass
*oc
, void *data
)
1248 DeviceClass
*dc
= DEVICE_CLASS(oc
);
1249 MOS6522DeviceClass
*mdc
= MOS6522_CLASS(oc
);
1251 dc
->reset
= mos6522_q800_via2_reset
;
1252 mdc
->portB_write
= mos6522_q800_via2_portB_write
;
1255 static const TypeInfo mos6522_q800_via2_type_info
= {
1256 .name
= TYPE_MOS6522_Q800_VIA2
,
1257 .parent
= TYPE_MOS6522
,
1258 .instance_size
= sizeof(MOS6522Q800VIA2State
),
1259 .instance_init
= mos6522_q800_via2_init
,
1260 .class_init
= mos6522_q800_via2_class_init
,
1263 static void mac_via_register_types(void)
1265 type_register_static(&mos6522_q800_via1_type_info
);
1266 type_register_static(&mos6522_q800_via2_type_info
);
1267 type_register_static(&mac_via_info
);
1270 type_init(mac_via_register_types
);