2 * PowerMac descriptor-based DMA emulation
4 * Copyright (c) 2005-2007 Fabrice Bellard
5 * Copyright (c) 2007 Jocelyn Mayer
6 * Copyright (c) 2009 Laurent Vivier
8 * some parts from linux-2.6.28, arch/powerpc/include/asm/dbdma.h
10 * Definitions for using the Apple Descriptor-Based DMA controller
11 * in Power Macintosh computers.
13 * Copyright (C) 1996 Paul Mackerras.
15 * some parts from mol 0.9.71
17 * Descriptor based DMA emulation
21 * Permission is hereby granted, free of charge, to any person obtaining a copy
22 * of this software and associated documentation files (the "Software"), to deal
23 * in the Software without restriction, including without limitation the rights
24 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25 * copies of the Software, and to permit persons to whom the Software is
26 * furnished to do so, subject to the following conditions:
28 * The above copyright notice and this permission notice shall be included in
29 * all copies or substantial portions of the Software.
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
32 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
33 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
34 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
35 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
36 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
40 #include "qemu/osdep.h"
42 #include "hw/ppc/mac_dbdma.h"
43 #include "migration/vmstate.h"
44 #include "qemu/main-loop.h"
45 #include "qemu/module.h"
47 #include "sysemu/dma.h"
51 #define DEBUG_DBDMA_CHANMASK ((1ull << DBDMA_CHANNELS) - 1)
53 #define DBDMA_DPRINTF(fmt, ...) do { \
55 printf("DBDMA: " fmt , ## __VA_ARGS__); \
59 #define DBDMA_DPRINTFCH(ch, fmt, ...) do { \
61 if ((1ul << (ch)->channel) & DEBUG_DBDMA_CHANMASK) { \
62 printf("DBDMA[%02x]: " fmt , (ch)->channel, ## __VA_ARGS__); \
70 static DBDMAState *dbdma_from_ch(DBDMA_channel *ch)
72 return container_of(ch, DBDMAState, channels[ch->channel]);
76 static void dump_dbdma_cmd(DBDMA_channel *ch, dbdma_cmd *cmd)
78 DBDMA_DPRINTFCH(ch, "dbdma_cmd %p\n", cmd);
79 DBDMA_DPRINTFCH(ch, " req_count 0x%04x\n", le16_to_cpu(cmd->req_count));
80 DBDMA_DPRINTFCH(ch, " command 0x%04x\n", le16_to_cpu(cmd->command));
81 DBDMA_DPRINTFCH(ch, " phy_addr 0x%08x\n", le32_to_cpu(cmd->phy_addr));
82 DBDMA_DPRINTFCH(ch, " cmd_dep 0x%08x\n", le32_to_cpu(cmd->cmd_dep));
83 DBDMA_DPRINTFCH(ch, " res_count 0x%04x\n", le16_to_cpu(cmd->res_count));
84 DBDMA_DPRINTFCH(ch, " xfer_status 0x%04x\n",
85 le16_to_cpu(cmd->xfer_status));
88 static void dump_dbdma_cmd(DBDMA_channel *ch, dbdma_cmd *cmd)
92 static void dbdma_cmdptr_load(DBDMA_channel *ch)
94 DBDMA_DPRINTFCH(ch, "dbdma_cmdptr_load 0x%08x\n",
95 ch->regs[DBDMA_CMDPTR_LO]);
96 dma_memory_read(&address_space_memory, ch->regs[DBDMA_CMDPTR_LO],
97 &ch->current, sizeof(dbdma_cmd));
100 static void dbdma_cmdptr_save(DBDMA_channel *ch)
102 DBDMA_DPRINTFCH(ch, "-> update 0x%08x stat=0x%08x, res=0x%04x\n",
103 ch->regs[DBDMA_CMDPTR_LO],
104 le16_to_cpu(ch->current.xfer_status),
105 le16_to_cpu(ch->current.res_count));
106 dma_memory_write(&address_space_memory, ch->regs[DBDMA_CMDPTR_LO],
107 &ch->current, sizeof(dbdma_cmd));
110 static void kill_channel(DBDMA_channel *ch)
112 DBDMA_DPRINTFCH(ch, "kill_channel\n");
114 ch->regs[DBDMA_STATUS] |= DEAD;
115 ch->regs[DBDMA_STATUS] &= ~ACTIVE;
117 qemu_irq_raise(ch->irq);
120 static void conditional_interrupt(DBDMA_channel *ch)
122 dbdma_cmd *current = &ch->current;
124 uint16_t sel_mask, sel_value;
128 DBDMA_DPRINTFCH(ch, "%s\n", __func__);
130 intr = le16_to_cpu(current->command) & INTR_MASK;
133 case INTR_NEVER: /* don't interrupt */
135 case INTR_ALWAYS: /* always interrupt */
136 qemu_irq_raise(ch->irq);
137 DBDMA_DPRINTFCH(ch, "%s: raise\n", __func__);
141 status = ch->regs[DBDMA_STATUS] & DEVSTAT;
143 sel_mask = (ch->regs[DBDMA_INTR_SEL] >> 16) & 0x0f;
144 sel_value = ch->regs[DBDMA_INTR_SEL] & 0x0f;
146 cond = (status & sel_mask) == (sel_value & sel_mask);
149 case INTR_IFSET: /* intr if condition bit is 1 */
151 qemu_irq_raise(ch->irq);
152 DBDMA_DPRINTFCH(ch, "%s: raise\n", __func__);
155 case INTR_IFCLR: /* intr if condition bit is 0 */
157 qemu_irq_raise(ch->irq);
158 DBDMA_DPRINTFCH(ch, "%s: raise\n", __func__);
164 static int conditional_wait(DBDMA_channel *ch)
166 dbdma_cmd *current = &ch->current;
168 uint16_t sel_mask, sel_value;
173 wait = le16_to_cpu(current->command) & WAIT_MASK;
175 case WAIT_NEVER: /* don't wait */
177 case WAIT_ALWAYS: /* always wait */
178 DBDMA_DPRINTFCH(ch, " [WAIT_ALWAYS]\n");
182 status = ch->regs[DBDMA_STATUS] & DEVSTAT;
184 sel_mask = (ch->regs[DBDMA_WAIT_SEL] >> 16) & 0x0f;
185 sel_value = ch->regs[DBDMA_WAIT_SEL] & 0x0f;
187 cond = (status & sel_mask) == (sel_value & sel_mask);
190 case WAIT_IFSET: /* wait if condition bit is 1 */
194 DBDMA_DPRINTFCH(ch, " [WAIT_IFSET=%d]\n", res);
196 case WAIT_IFCLR: /* wait if condition bit is 0 */
200 DBDMA_DPRINTFCH(ch, " [WAIT_IFCLR=%d]\n", res);
206 static void next(DBDMA_channel *ch)
210 ch->regs[DBDMA_STATUS] &= ~BT;
212 cp = ch->regs[DBDMA_CMDPTR_LO];
213 ch->regs[DBDMA_CMDPTR_LO] = cp + sizeof(dbdma_cmd);
214 dbdma_cmdptr_load(ch);
217 static void branch(DBDMA_channel *ch)
219 dbdma_cmd *current = &ch->current;
221 ch->regs[DBDMA_CMDPTR_LO] = le32_to_cpu(current->cmd_dep);
222 ch->regs[DBDMA_STATUS] |= BT;
223 dbdma_cmdptr_load(ch);
226 static void conditional_branch(DBDMA_channel *ch)
228 dbdma_cmd *current = &ch->current;
230 uint16_t sel_mask, sel_value;
234 /* check if we must branch */
236 br = le16_to_cpu(current->command) & BR_MASK;
239 case BR_NEVER: /* don't branch */
242 case BR_ALWAYS: /* always branch */
243 DBDMA_DPRINTFCH(ch, " [BR_ALWAYS]\n");
248 status = ch->regs[DBDMA_STATUS] & DEVSTAT;
250 sel_mask = (ch->regs[DBDMA_BRANCH_SEL] >> 16) & 0x0f;
251 sel_value = ch->regs[DBDMA_BRANCH_SEL] & 0x0f;
253 cond = (status & sel_mask) == (sel_value & sel_mask);
256 case BR_IFSET: /* branch if condition bit is 1 */
258 DBDMA_DPRINTFCH(ch, " [BR_IFSET = 1]\n");
261 DBDMA_DPRINTFCH(ch, " [BR_IFSET = 0]\n");
265 case BR_IFCLR: /* branch if condition bit is 0 */
267 DBDMA_DPRINTFCH(ch, " [BR_IFCLR = 1]\n");
270 DBDMA_DPRINTFCH(ch, " [BR_IFCLR = 0]\n");
277 static void channel_run(DBDMA_channel *ch);
279 static void dbdma_end(DBDMA_io *io)
281 DBDMA_channel *ch = io->channel;
282 dbdma_cmd *current = &ch->current;
284 DBDMA_DPRINTFCH(ch, "%s\n", __func__);
286 if (conditional_wait(ch))
289 current->xfer_status = cpu_to_le16(ch->regs[DBDMA_STATUS]);
290 current->res_count = cpu_to_le16(io->len);
291 dbdma_cmdptr_save(ch);
293 ch->regs[DBDMA_STATUS] &= ~FLUSH;
295 conditional_interrupt(ch);
296 conditional_branch(ch);
299 /* Indicate that we're ready for a new DMA round */
300 ch->io.processing = false;
302 if ((ch->regs[DBDMA_STATUS] & RUN) &&
303 (ch->regs[DBDMA_STATUS] & ACTIVE))
307 static void start_output(DBDMA_channel *ch, int key, uint32_t addr,
308 uint16_t req_count, int is_last)
310 DBDMA_DPRINTFCH(ch, "start_output\n");
312 /* KEY_REGS, KEY_DEVICE and KEY_STREAM
313 * are not implemented in the mac-io chip
316 DBDMA_DPRINTFCH(ch, "addr 0x%x key 0x%x\n", addr, key);
317 if (!addr || key > KEY_STREAM3) {
323 ch->io.len = req_count;
324 ch->io.is_last = is_last;
325 ch->io.dma_end = dbdma_end;
326 ch->io.is_dma_out = 1;
327 ch->io.processing = true;
333 static void start_input(DBDMA_channel *ch, int key, uint32_t addr,
334 uint16_t req_count, int is_last)
336 DBDMA_DPRINTFCH(ch, "start_input\n");
338 /* KEY_REGS, KEY_DEVICE and KEY_STREAM
339 * are not implemented in the mac-io chip
342 DBDMA_DPRINTFCH(ch, "addr 0x%x key 0x%x\n", addr, key);
343 if (!addr || key > KEY_STREAM3) {
349 ch->io.len = req_count;
350 ch->io.is_last = is_last;
351 ch->io.dma_end = dbdma_end;
352 ch->io.is_dma_out = 0;
353 ch->io.processing = true;
359 static void load_word(DBDMA_channel *ch, int key, uint32_t addr,
362 dbdma_cmd *current = &ch->current;
364 DBDMA_DPRINTFCH(ch, "load_word %d bytes, addr=%08x\n", len, addr);
366 /* only implements KEY_SYSTEM */
368 if (key != KEY_SYSTEM) {
369 printf("DBDMA: LOAD_WORD, unimplemented key %x\n", key);
374 dma_memory_read(&address_space_memory, addr, ¤t->cmd_dep, len);
376 if (conditional_wait(ch))
379 current->xfer_status = cpu_to_le16(ch->regs[DBDMA_STATUS]);
380 dbdma_cmdptr_save(ch);
381 ch->regs[DBDMA_STATUS] &= ~FLUSH;
383 conditional_interrupt(ch);
387 DBDMA_kick(dbdma_from_ch(ch));
390 static void store_word(DBDMA_channel *ch, int key, uint32_t addr,
393 dbdma_cmd *current = &ch->current;
395 DBDMA_DPRINTFCH(ch, "store_word %d bytes, addr=%08x pa=%x\n",
396 len, addr, le32_to_cpu(current->cmd_dep));
398 /* only implements KEY_SYSTEM */
400 if (key != KEY_SYSTEM) {
401 printf("DBDMA: STORE_WORD, unimplemented key %x\n", key);
406 dma_memory_write(&address_space_memory, addr, ¤t->cmd_dep, len);
408 if (conditional_wait(ch))
411 current->xfer_status = cpu_to_le16(ch->regs[DBDMA_STATUS]);
412 dbdma_cmdptr_save(ch);
413 ch->regs[DBDMA_STATUS] &= ~FLUSH;
415 conditional_interrupt(ch);
419 DBDMA_kick(dbdma_from_ch(ch));
422 static void nop(DBDMA_channel *ch)
424 dbdma_cmd *current = &ch->current;
426 if (conditional_wait(ch))
429 current->xfer_status = cpu_to_le16(ch->regs[DBDMA_STATUS]);
430 dbdma_cmdptr_save(ch);
432 conditional_interrupt(ch);
433 conditional_branch(ch);
436 DBDMA_kick(dbdma_from_ch(ch));
439 static void stop(DBDMA_channel *ch)
441 ch->regs[DBDMA_STATUS] &= ~(ACTIVE);
443 /* the stop command does not increment command pointer */
446 static void channel_run(DBDMA_channel *ch)
448 dbdma_cmd *current = &ch->current;
453 DBDMA_DPRINTFCH(ch, "channel_run\n");
454 dump_dbdma_cmd(ch, current);
456 /* clear WAKE flag at command fetch */
458 ch->regs[DBDMA_STATUS] &= ~WAKE;
460 cmd = le16_to_cpu(current->command) & COMMAND_MASK;
472 key = le16_to_cpu(current->command) & 0x0700;
473 req_count = le16_to_cpu(current->req_count);
474 phy_addr = le32_to_cpu(current->phy_addr);
476 if (key == KEY_STREAM4) {
477 printf("command %x, invalid key 4\n", cmd);
484 DBDMA_DPRINTFCH(ch, "* OUTPUT_MORE *\n");
485 start_output(ch, key, phy_addr, req_count, 0);
489 DBDMA_DPRINTFCH(ch, "* OUTPUT_LAST *\n");
490 start_output(ch, key, phy_addr, req_count, 1);
494 DBDMA_DPRINTFCH(ch, "* INPUT_MORE *\n");
495 start_input(ch, key, phy_addr, req_count, 0);
499 DBDMA_DPRINTFCH(ch, "* INPUT_LAST *\n");
500 start_input(ch, key, phy_addr, req_count, 1);
504 if (key < KEY_REGS) {
505 printf("command %x, invalid key %x\n", cmd, key);
509 /* for LOAD_WORD and STORE_WORD, req_count is on 3 bits
510 * and BRANCH is invalid
513 req_count = req_count & 0x0007;
514 if (req_count & 0x4) {
517 } else if (req_count & 0x2) {
525 DBDMA_DPRINTFCH(ch, "* LOAD_WORD *\n");
526 load_word(ch, key, phy_addr, req_count);
530 DBDMA_DPRINTFCH(ch, "* STORE_WORD *\n");
531 store_word(ch, key, phy_addr, req_count);
536 static void DBDMA_run(DBDMAState *s)
540 for (channel = 0; channel < DBDMA_CHANNELS; channel++) {
541 DBDMA_channel *ch = &s->channels[channel];
542 uint32_t status = ch->regs[DBDMA_STATUS];
543 if (!ch->io.processing && (status & RUN) && (status & ACTIVE)) {
549 static void DBDMA_run_bh(void *opaque)
551 DBDMAState *s = opaque;
553 DBDMA_DPRINTF("-> DBDMA_run_bh\n");
555 DBDMA_DPRINTF("<- DBDMA_run_bh\n");
558 void DBDMA_kick(DBDMAState *dbdma)
560 qemu_bh_schedule(dbdma->bh);
563 void DBDMA_register_channel(void *dbdma, int nchan, qemu_irq irq,
564 DBDMA_rw rw, DBDMA_flush flush,
567 DBDMAState *s = dbdma;
568 DBDMA_channel *ch = &s->channels[nchan];
570 DBDMA_DPRINTFCH(ch, "DBDMA_register_channel 0x%x\n", nchan);
578 ch->io.opaque = opaque;
581 static void dbdma_control_write(DBDMA_channel *ch)
583 uint16_t mask, value;
585 bool do_flush = false;
587 mask = (ch->regs[DBDMA_CONTROL] >> 16) & 0xffff;
588 value = ch->regs[DBDMA_CONTROL] & 0xffff;
590 /* This is the status register which we'll update
591 * appropriately and store back
593 status = ch->regs[DBDMA_STATUS];
595 /* RUN and PAUSE are bits under SW control only
596 * FLUSH and WAKE are set by SW and cleared by HW
597 * DEAD, ACTIVE and BT are only under HW control
599 * We handle ACTIVE separately at the end of the
600 * logic to ensure all cases are covered.
603 /* Setting RUN will tentatively activate the channel
605 if ((mask & RUN) && (value & RUN)) {
607 DBDMA_DPRINTFCH(ch, " Setting RUN !\n");
610 /* Clearing RUN 1->0 will stop the channel */
611 if ((mask & RUN) && !(value & RUN)) {
612 /* This has the side effect of clearing the DEAD bit */
613 status &= ~(DEAD | RUN);
614 DBDMA_DPRINTFCH(ch, " Clearing RUN !\n");
617 /* Setting WAKE wakes up an idle channel if it's running
619 * Note: The doc doesn't say so but assume that only works
620 * on a channel whose RUN bit is set.
622 * We set WAKE in status, it's not terribly useful as it will
623 * be cleared on the next command fetch but it seems to mimmic
624 * the HW behaviour and is useful for the way we handle
625 * ACTIVE further down.
627 if ((mask & WAKE) && (value & WAKE) && (status & RUN)) {
629 DBDMA_DPRINTFCH(ch, " Setting WAKE !\n");
632 /* PAUSE being set will deactivate (or prevent activation)
633 * of the channel. We just copy it over for now, ACTIVE will
634 * be re-evaluated later.
637 status = (status & ~PAUSE) | (value & PAUSE);
638 DBDMA_DPRINTFCH(ch, " %sing PAUSE !\n",
639 (value & PAUSE) ? "sett" : "clear");
642 /* FLUSH is its own thing */
643 if ((mask & FLUSH) && (value & FLUSH)) {
644 DBDMA_DPRINTFCH(ch, " Setting FLUSH !\n");
645 /* We set flush directly in the status register, we do *NOT*
646 * set it in "status" so that it gets naturally cleared when
647 * we update the status register further down. That way it
648 * will be set only during the HW flush operation so it is
649 * visible to any completions happening during that time.
651 ch->regs[DBDMA_STATUS] |= FLUSH;
655 /* If either RUN or PAUSE is clear, so should ACTIVE be,
656 * otherwise, ACTIVE will be set if we modified RUN, PAUSE or
657 * set WAKE. That means that PAUSE was just cleared, RUN was
658 * just set or WAKE was just set.
660 if ((status & PAUSE) || !(status & RUN)) {
662 DBDMA_DPRINTFCH(ch, " -> ACTIVE down !\n");
664 /* We stopped processing, we want the underlying HW command
665 * to complete *before* we clear the ACTIVE bit. Otherwise
666 * we can get into a situation where the command status will
667 * have RUN or ACTIVE not set which is going to confuse the
671 } else if (mask & (RUN | PAUSE)) {
673 DBDMA_DPRINTFCH(ch, " -> ACTIVE up !\n");
674 } else if ((mask & WAKE) && (value & WAKE)) {
676 DBDMA_DPRINTFCH(ch, " -> ACTIVE up !\n");
679 DBDMA_DPRINTFCH(ch, " new status=0x%08x\n", status);
681 /* If we need to flush the underlying HW, do it now, this happens
682 * both on FLUSH commands and when stopping the channel for safety.
684 if (do_flush && ch->flush) {
688 /* Finally update the status register image */
689 ch->regs[DBDMA_STATUS] = status;
691 /* If active, make sure the BH gets to run */
692 if (status & ACTIVE) {
693 DBDMA_kick(dbdma_from_ch(ch));
697 static void dbdma_write(void *opaque, hwaddr addr,
698 uint64_t value, unsigned size)
700 int channel = addr >> DBDMA_CHANNEL_SHIFT;
701 DBDMAState *s = opaque;
702 DBDMA_channel *ch = &s->channels[channel];
703 int reg = (addr - (channel << DBDMA_CHANNEL_SHIFT)) >> 2;
705 DBDMA_DPRINTFCH(ch, "writel 0x" TARGET_FMT_plx " <= 0x%08"PRIx64"\n",
707 DBDMA_DPRINTFCH(ch, "channel 0x%x reg 0x%x\n",
708 (uint32_t)addr >> DBDMA_CHANNEL_SHIFT, reg);
710 /* cmdptr cannot be modified if channel is ACTIVE */
712 if (reg == DBDMA_CMDPTR_LO && (ch->regs[DBDMA_STATUS] & ACTIVE)) {
716 ch->regs[reg] = value;
720 dbdma_control_write(ch);
722 case DBDMA_CMDPTR_LO:
723 /* 16-byte aligned */
724 ch->regs[DBDMA_CMDPTR_LO] &= ~0xf;
725 dbdma_cmdptr_load(ch);
729 case DBDMA_BRANCH_SEL:
733 case DBDMA_XFER_MODE:
734 case DBDMA_CMDPTR_HI:
735 case DBDMA_DATA2PTR_HI:
736 case DBDMA_DATA2PTR_LO:
737 case DBDMA_ADDRESS_HI:
738 case DBDMA_BRANCH_ADDR_HI:
748 static uint64_t dbdma_read(void *opaque, hwaddr addr,
752 int channel = addr >> DBDMA_CHANNEL_SHIFT;
753 DBDMAState *s = opaque;
754 DBDMA_channel *ch = &s->channels[channel];
755 int reg = (addr - (channel << DBDMA_CHANNEL_SHIFT)) >> 2;
757 value = ch->regs[reg];
761 value = ch->regs[DBDMA_STATUS];
764 case DBDMA_CMDPTR_LO:
766 case DBDMA_BRANCH_SEL:
770 case DBDMA_XFER_MODE:
771 case DBDMA_CMDPTR_HI:
772 case DBDMA_DATA2PTR_HI:
773 case DBDMA_DATA2PTR_LO:
774 case DBDMA_ADDRESS_HI:
775 case DBDMA_BRANCH_ADDR_HI:
787 DBDMA_DPRINTFCH(ch, "readl 0x" TARGET_FMT_plx " => 0x%08x\n", addr, value);
788 DBDMA_DPRINTFCH(ch, "channel 0x%x reg 0x%x\n",
789 (uint32_t)addr >> DBDMA_CHANNEL_SHIFT, reg);
794 static const MemoryRegionOps dbdma_ops = {
796 .write = dbdma_write,
797 .endianness = DEVICE_LITTLE_ENDIAN,
799 .min_access_size = 4,
800 .max_access_size = 4,
804 static const VMStateDescription vmstate_dbdma_io = {
807 .minimum_version_id = 0,
808 .fields = (VMStateField[]) {
809 VMSTATE_UINT64(addr, struct DBDMA_io),
810 VMSTATE_INT32(len, struct DBDMA_io),
811 VMSTATE_INT32(is_last, struct DBDMA_io),
812 VMSTATE_INT32(is_dma_out, struct DBDMA_io),
813 VMSTATE_BOOL(processing, struct DBDMA_io),
814 VMSTATE_END_OF_LIST()
818 static const VMStateDescription vmstate_dbdma_cmd = {
821 .minimum_version_id = 0,
822 .fields = (VMStateField[]) {
823 VMSTATE_UINT16(req_count, dbdma_cmd),
824 VMSTATE_UINT16(command, dbdma_cmd),
825 VMSTATE_UINT32(phy_addr, dbdma_cmd),
826 VMSTATE_UINT32(cmd_dep, dbdma_cmd),
827 VMSTATE_UINT16(res_count, dbdma_cmd),
828 VMSTATE_UINT16(xfer_status, dbdma_cmd),
829 VMSTATE_END_OF_LIST()
833 static const VMStateDescription vmstate_dbdma_channel = {
834 .name = "dbdma_channel",
836 .minimum_version_id = 1,
837 .fields = (VMStateField[]) {
838 VMSTATE_UINT32_ARRAY(regs, struct DBDMA_channel, DBDMA_REGS),
839 VMSTATE_STRUCT(io, struct DBDMA_channel, 0, vmstate_dbdma_io, DBDMA_io),
840 VMSTATE_STRUCT(current, struct DBDMA_channel, 0, vmstate_dbdma_cmd,
842 VMSTATE_END_OF_LIST()
846 static const VMStateDescription vmstate_dbdma = {
849 .minimum_version_id = 3,
850 .fields = (VMStateField[]) {
851 VMSTATE_STRUCT_ARRAY(channels, DBDMAState, DBDMA_CHANNELS, 1,
852 vmstate_dbdma_channel, DBDMA_channel),
853 VMSTATE_END_OF_LIST()
857 static void mac_dbdma_reset(DeviceState *d)
859 DBDMAState *s = MAC_DBDMA(d);
862 for (i = 0; i < DBDMA_CHANNELS; i++) {
863 memset(s->channels[i].regs, 0, DBDMA_SIZE);
867 static void dbdma_unassigned_rw(DBDMA_io *io)
869 DBDMA_channel *ch = io->channel;
870 dbdma_cmd *current = &ch->current;
872 qemu_log_mask(LOG_GUEST_ERROR, "%s: use of unassigned channel %d\n",
873 __func__, ch->channel);
874 ch->io.processing = false;
876 cmd = le16_to_cpu(current->command) & COMMAND_MASK;
877 if (cmd == OUTPUT_MORE || cmd == OUTPUT_LAST ||
878 cmd == INPUT_MORE || cmd == INPUT_LAST) {
879 current->xfer_status = cpu_to_le16(ch->regs[DBDMA_STATUS]);
880 current->res_count = cpu_to_le16(io->len);
881 dbdma_cmdptr_save(ch);
885 static void dbdma_unassigned_flush(DBDMA_io *io)
887 DBDMA_channel *ch = io->channel;
888 qemu_log_mask(LOG_GUEST_ERROR, "%s: use of unassigned channel %d\n",
889 __func__, ch->channel);
892 static void mac_dbdma_init(Object *obj)
894 SysBusDevice *sbd = SYS_BUS_DEVICE(obj);
895 DBDMAState *s = MAC_DBDMA(obj);
898 for (i = 0; i < DBDMA_CHANNELS; i++) {
899 DBDMA_channel *ch = &s->channels[i];
901 ch->rw = dbdma_unassigned_rw;
902 ch->flush = dbdma_unassigned_flush;
907 memory_region_init_io(&s->mem, obj, &dbdma_ops, s, "dbdma", 0x1000);
908 sysbus_init_mmio(sbd, &s->mem);
911 static void mac_dbdma_realize(DeviceState *dev, Error **errp)
913 DBDMAState *s = MAC_DBDMA(dev);
915 s->bh = qemu_bh_new(DBDMA_run_bh, s);
918 static void mac_dbdma_class_init(ObjectClass *oc, void *data)
920 DeviceClass *dc = DEVICE_CLASS(oc);
922 dc->realize = mac_dbdma_realize;
923 dc->reset = mac_dbdma_reset;
924 dc->vmsd = &vmstate_dbdma;
927 static const TypeInfo mac_dbdma_type_info = {
928 .name = TYPE_MAC_DBDMA,
929 .parent = TYPE_SYS_BUS_DEVICE,
930 .instance_size = sizeof(DBDMAState),
931 .instance_init = mac_dbdma_init,
932 .class_init = mac_dbdma_class_init
935 static void mac_dbdma_register_types(void)
937 type_register_static(&mac_dbdma_type_info);
940 type_init(mac_dbdma_register_types)