4 * Copyright (c) 2003-2004 Vassili Karpov (malc)
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 /* #define DEBUG_DMA */
29 #define dolog(...) fprintf (stderr, "dma: " __VA_ARGS__)
31 #define lwarn(...) fprintf (stderr, "dma: " __VA_ARGS__)
32 #define linfo(...) fprintf (stderr, "dma: " __VA_ARGS__)
33 #define ldebug(...) fprintf (stderr, "dma: " __VA_ARGS__)
40 #define LENOFA(a) ((int) (sizeof(a)/sizeof(a[0])))
50 DMA_transfer_handler transfer_handler
;
57 static struct dma_cont
{
63 struct dma_regs regs
[4];
67 CMD_MEMORY_TO_MEMORY
= 0x01,
68 CMD_FIXED_ADDRESS
= 0x02,
69 CMD_BLOCK_CONTROLLER
= 0x04,
70 CMD_COMPRESSED_TIME
= 0x08,
71 CMD_CYCLIC_PRIORITY
= 0x10,
72 CMD_EXTENDED_WRITE
= 0x20,
75 CMD_NOT_SUPPORTED
= CMD_MEMORY_TO_MEMORY
| CMD_FIXED_ADDRESS
76 | CMD_COMPRESSED_TIME
| CMD_CYCLIC_PRIORITY
| CMD_EXTENDED_WRITE
77 | CMD_LOW_DREQ
| CMD_LOW_DACK
81 static void DMA_run (void);
83 static int channels
[8] = {-1, 2, 3, 1, -1, -1, -1, 0};
85 static void write_page (void *opaque
, uint32_t nport
, uint32_t data
)
87 struct dma_cont
*d
= opaque
;
90 ichan
= channels
[nport
& 7];
92 dolog ("invalid channel %#x %#x\n", nport
, data
);
95 d
->regs
[ichan
].page
= data
;
98 static void write_pageh (void *opaque
, uint32_t nport
, uint32_t data
)
100 struct dma_cont
*d
= opaque
;
103 ichan
= channels
[nport
& 7];
105 dolog ("invalid channel %#x %#x\n", nport
, data
);
108 d
->regs
[ichan
].pageh
= data
;
111 static uint32_t read_page (void *opaque
, uint32_t nport
)
113 struct dma_cont
*d
= opaque
;
116 ichan
= channels
[nport
& 7];
118 dolog ("invalid channel read %#x\n", nport
);
121 return d
->regs
[ichan
].page
;
124 static uint32_t read_pageh (void *opaque
, uint32_t nport
)
126 struct dma_cont
*d
= opaque
;
129 ichan
= channels
[nport
& 7];
131 dolog ("invalid channel read %#x\n", nport
);
134 return d
->regs
[ichan
].pageh
;
137 static inline void init_chan (struct dma_cont
*d
, int ichan
)
142 r
->now
[ADDR
] = r
->base
[ADDR
] << d
->dshift
;
146 static inline int getff (struct dma_cont
*d
)
155 static uint32_t read_chan (void *opaque
, uint32_t nport
)
157 struct dma_cont
*d
= opaque
;
158 int ichan
, nreg
, iport
, ff
, val
, dir
;
161 iport
= (nport
>> d
->dshift
) & 0x0f;
166 dir
= ((r
->mode
>> 5) & 1) ? -1 : 1;
169 val
= (r
->base
[COUNT
] << d
->dshift
) - r
->now
[COUNT
];
171 val
= r
->now
[ADDR
] + r
->now
[COUNT
] * dir
;
173 ldebug ("read_chan %#x -> %d\n", iport
, val
);
174 return (val
>> (d
->dshift
+ (ff
<< 3))) & 0xff;
177 static void write_chan (void *opaque
, uint32_t nport
, uint32_t data
)
179 struct dma_cont
*d
= opaque
;
180 int iport
, ichan
, nreg
;
183 iport
= (nport
>> d
->dshift
) & 0x0f;
188 r
->base
[nreg
] = (r
->base
[nreg
] & 0xff) | ((data
<< 8) & 0xff00);
189 init_chan (d
, ichan
);
191 r
->base
[nreg
] = (r
->base
[nreg
] & 0xff00) | (data
& 0xff);
195 static void write_cont (void *opaque
, uint32_t nport
, uint32_t data
)
197 struct dma_cont
*d
= opaque
;
198 int iport
, ichan
= 0;
200 iport
= (nport
>> d
->dshift
) & 0x0f;
202 case 0x08: /* command */
203 if ((data
!= 0) && (data
& CMD_NOT_SUPPORTED
)) {
204 dolog ("command %#x not supported\n", data
);
213 d
->status
|= 1 << (ichan
+ 4);
216 d
->status
&= ~(1 << (ichan
+ 4));
218 d
->status
&= ~(1 << ichan
);
222 case 0x0a: /* single mask */
224 d
->mask
|= 1 << (data
& 3);
226 d
->mask
&= ~(1 << (data
& 3));
230 case 0x0b: /* mode */
235 int op
, ai
, dir
, opmode
;
236 op
= (data
>> 2) & 3;
237 ai
= (data
>> 4) & 1;
238 dir
= (data
>> 5) & 1;
239 opmode
= (data
>> 6) & 3;
241 linfo ("ichan %d, op %d, ai %d, dir %d, opmode %d\n",
242 ichan
, op
, ai
, dir
, opmode
);
245 d
->regs
[ichan
].mode
= data
;
249 case 0x0c: /* clear flip flop */
253 case 0x0d: /* reset */
260 case 0x0e: /* clear mask for all channels */
265 case 0x0f: /* write mask for all channels */
271 dolog ("unknown iport %#x\n", iport
);
277 linfo ("write_cont: nport %#06x, ichan % 2d, val %#06x\n",
283 static uint32_t read_cont (void *opaque
, uint32_t nport
)
285 struct dma_cont
*d
= opaque
;
288 iport
= (nport
>> d
->dshift
) & 0x0f;
290 case 0x08: /* status */
294 case 0x0f: /* mask */
302 ldebug ("read_cont: nport %#06x, iport %#04x val %#x\n", nport
, iport
, val
);
306 int DMA_get_channel_mode (int nchan
)
308 return dma_controllers
[nchan
> 3].regs
[nchan
& 3].mode
;
311 void DMA_hold_DREQ (int nchan
)
317 linfo ("held cont=%d chan=%d\n", ncont
, ichan
);
318 dma_controllers
[ncont
].status
|= 1 << (ichan
+ 4);
322 void DMA_release_DREQ (int nchan
)
328 linfo ("released cont=%d chan=%d\n", ncont
, ichan
);
329 dma_controllers
[ncont
].status
&= ~(1 << (ichan
+ 4));
333 static void channel_run (int ncont
, int ichan
)
336 struct dma_regs
*r
= &dma_controllers
[ncont
].regs
[ichan
];
340 dir
= (r
->mode
>> 5) & 1;
341 opmode
= (r
->mode
>> 6) & 3;
344 dolog ("DMA in address decrement mode\n");
347 dolog ("DMA not in single mode select %#x\n", opmode
);
351 r
= dma_controllers
[ncont
].regs
+ ichan
;
352 n
= r
->transfer_handler (r
->opaque
, ichan
+ (ncont
<< 2),
353 r
->now
[COUNT
], (r
->base
[COUNT
] + 1) << ncont
);
355 ldebug ("dma_pos %d size %d\n", n
, (r
->base
[COUNT
] + 1) << ncont
);
358 static QEMUBH
*dma_bh
;
360 static void DMA_run (void)
368 for (icont
= 0; icont
< 2; icont
++, d
++) {
369 for (ichan
= 0; ichan
< 4; ichan
++) {
374 if ((0 == (d
->mask
& mask
)) && (0 != (d
->status
& (mask
<< 4)))) {
375 channel_run (icont
, ichan
);
382 qemu_bh_schedule_idle(dma_bh
);
385 static void DMA_run_bh(void *unused
)
390 void DMA_register_channel (int nchan
,
391 DMA_transfer_handler transfer_handler
,
400 r
= dma_controllers
[ncont
].regs
+ ichan
;
401 r
->transfer_handler
= transfer_handler
;
405 int DMA_read_memory (int nchan
, void *buf
, int pos
, int len
)
407 struct dma_regs
*r
= &dma_controllers
[nchan
> 3].regs
[nchan
& 3];
408 target_phys_addr_t addr
= ((r
->pageh
& 0x7f) << 24) | (r
->page
<< 16) | r
->now
[ADDR
];
410 if (r
->mode
& 0x20) {
414 cpu_physical_memory_read (addr
- pos
- len
, buf
, len
);
415 /* What about 16bit transfers? */
416 for (i
= 0; i
< len
>> 1; i
++) {
417 uint8_t b
= p
[len
- i
- 1];
422 cpu_physical_memory_read (addr
+ pos
, buf
, len
);
427 int DMA_write_memory (int nchan
, void *buf
, int pos
, int len
)
429 struct dma_regs
*r
= &dma_controllers
[nchan
> 3].regs
[nchan
& 3];
430 target_phys_addr_t addr
= ((r
->pageh
& 0x7f) << 24) | (r
->page
<< 16) | r
->now
[ADDR
];
432 if (r
->mode
& 0x20) {
436 cpu_physical_memory_write (addr
- pos
- len
, buf
, len
);
437 /* What about 16bit transfers? */
438 for (i
= 0; i
< len
; i
++) {
439 uint8_t b
= p
[len
- i
- 1];
444 cpu_physical_memory_write (addr
+ pos
, buf
, len
);
449 /* request the emulator to transfer a new DMA memory block ASAP */
450 void DMA_schedule(int nchan
)
452 CPUState
*env
= cpu_single_env
;
454 cpu_interrupt(env
, CPU_INTERRUPT_EXIT
);
457 static void dma_reset(void *opaque
)
459 struct dma_cont
*d
= opaque
;
460 write_cont (d
, (0x0d << d
->dshift
), 0);
463 static int dma_phony_handler (void *opaque
, int nchan
, int dma_pos
, int dma_len
)
465 dolog ("unregistered DMA channel used nchan=%d dma_pos=%d dma_len=%d\n",
466 nchan
, dma_pos
, dma_len
);
470 /* dshift = 0: 8 bit DMA, 1 = 16 bit DMA */
471 static void dma_init2(struct dma_cont
*d
, int base
, int dshift
,
472 int page_base
, int pageh_base
)
474 static const int page_port_list
[] = { 0x1, 0x2, 0x3, 0x7 };
478 for (i
= 0; i
< 8; i
++) {
479 register_ioport_write (base
+ (i
<< dshift
), 1, 1, write_chan
, d
);
480 register_ioport_read (base
+ (i
<< dshift
), 1, 1, read_chan
, d
);
482 for (i
= 0; i
< LENOFA (page_port_list
); i
++) {
483 register_ioport_write (page_base
+ page_port_list
[i
], 1, 1,
485 register_ioport_read (page_base
+ page_port_list
[i
], 1, 1,
487 if (pageh_base
>= 0) {
488 register_ioport_write (pageh_base
+ page_port_list
[i
], 1, 1,
490 register_ioport_read (pageh_base
+ page_port_list
[i
], 1, 1,
494 for (i
= 0; i
< 8; i
++) {
495 register_ioport_write (base
+ ((i
+ 8) << dshift
), 1, 1,
497 register_ioport_read (base
+ ((i
+ 8) << dshift
), 1, 1,
500 qemu_register_reset(dma_reset
, d
);
502 for (i
= 0; i
< LENOFA (d
->regs
); ++i
) {
503 d
->regs
[i
].transfer_handler
= dma_phony_handler
;
507 static void dma_save (QEMUFile
*f
, void *opaque
)
509 struct dma_cont
*d
= opaque
;
512 /* qemu_put_8s (f, &d->status); */
513 qemu_put_8s (f
, &d
->command
);
514 qemu_put_8s (f
, &d
->mask
);
515 qemu_put_8s (f
, &d
->flip_flop
);
516 qemu_put_be32 (f
, d
->dshift
);
518 for (i
= 0; i
< 4; ++i
) {
519 struct dma_regs
*r
= &d
->regs
[i
];
520 qemu_put_be32 (f
, r
->now
[0]);
521 qemu_put_be32 (f
, r
->now
[1]);
522 qemu_put_be16s (f
, &r
->base
[0]);
523 qemu_put_be16s (f
, &r
->base
[1]);
524 qemu_put_8s (f
, &r
->mode
);
525 qemu_put_8s (f
, &r
->page
);
526 qemu_put_8s (f
, &r
->pageh
);
527 qemu_put_8s (f
, &r
->dack
);
528 qemu_put_8s (f
, &r
->eop
);
532 static int dma_load (QEMUFile
*f
, void *opaque
, int version_id
)
534 struct dma_cont
*d
= opaque
;
540 /* qemu_get_8s (f, &d->status); */
541 qemu_get_8s (f
, &d
->command
);
542 qemu_get_8s (f
, &d
->mask
);
543 qemu_get_8s (f
, &d
->flip_flop
);
544 d
->dshift
=qemu_get_be32 (f
);
546 for (i
= 0; i
< 4; ++i
) {
547 struct dma_regs
*r
= &d
->regs
[i
];
548 r
->now
[0]=qemu_get_be32 (f
);
549 r
->now
[1]=qemu_get_be32 (f
);
550 qemu_get_be16s (f
, &r
->base
[0]);
551 qemu_get_be16s (f
, &r
->base
[1]);
552 qemu_get_8s (f
, &r
->mode
);
553 qemu_get_8s (f
, &r
->page
);
554 qemu_get_8s (f
, &r
->pageh
);
555 qemu_get_8s (f
, &r
->dack
);
556 qemu_get_8s (f
, &r
->eop
);
564 void DMA_init (int high_page_enable
)
566 dma_init2(&dma_controllers
[0], 0x00, 0, 0x80,
567 high_page_enable
? 0x480 : -1);
568 dma_init2(&dma_controllers
[1], 0xc0, 1, 0x88,
569 high_page_enable
? 0x488 : -1);
570 register_savevm ("dma", 0, 1, dma_save
, dma_load
, &dma_controllers
[0]);
571 register_savevm ("dma", 1, 1, dma_save
, dma_load
, &dma_controllers
[1]);
573 dma_bh
= qemu_bh_new(DMA_run_bh
, NULL
);