Blame view

hw/dma.c 9.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * QEMU DMA emulation
 * 
 * Copyright (c) 2003 Vassili Karpov (malc)
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
bellard authored
24
#include "vl.h"
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45

#define log(...) fprintf (stderr, "dma: " __VA_ARGS__)
#ifdef DEBUG_DMA
#define lwarn(...) fprintf (stderr, "dma: " __VA_ARGS__)
#define linfo(...) fprintf (stderr, "dma: " __VA_ARGS__)
#define ldebug(...) fprintf (stderr, "dma: " __VA_ARGS__)
#else
#define lwarn(...)
#define linfo(...)
#define ldebug(...)
#endif

#define LENOFA(a) ((int) (sizeof(a)/sizeof(a[0])))

struct dma_regs {
    int now[2];
    uint16_t base[2];
    uint8_t mode;
    uint8_t page;
    uint8_t dack;
    uint8_t eop;
bellard authored
46
47
    DMA_transfer_handler transfer_handler;
    void *opaque;
48
49
50
51
52
53
54
55
56
57
};

#define ADDR 0
#define COUNT 1

static struct dma_cont {
    uint8_t status;
    uint8_t command;
    uint8_t mask;
    uint8_t flip_flop;
58
    int dshift;
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
    struct dma_regs regs[4];
} dma_controllers[2];

enum {
  CMD_MEMORY_TO_MEMORY = 0x01,
  CMD_FIXED_ADDRESS    = 0x02,
  CMD_BLOCK_CONTROLLER = 0x04,
  CMD_COMPRESSED_TIME  = 0x08,
  CMD_CYCLIC_PRIORITY  = 0x10,
  CMD_EXTENDED_WRITE   = 0x20,
  CMD_LOW_DREQ         = 0x40,
  CMD_LOW_DACK         = 0x80,
  CMD_NOT_SUPPORTED    = CMD_MEMORY_TO_MEMORY | CMD_FIXED_ADDRESS
  | CMD_COMPRESSED_TIME | CMD_CYCLIC_PRIORITY | CMD_EXTENDED_WRITE
  | CMD_LOW_DREQ | CMD_LOW_DACK

};
77
78
static int channels[8] = {-1, 2, 3, 1, -1, -1, -1, 0};
bellard authored
79
static void write_page (void *opaque, uint32_t nport, uint32_t data)
80
{
81
    struct dma_cont *d = opaque;
82
83
    int ichan;
84
    ichan = channels[nport & 7];
85
86
87
88
89

    if (-1 == ichan) {
        log ("invalid channel %#x %#x\n", nport, data);
        return;
    }
90
91
92
93
94
95
96
    d->regs[ichan].page = data;
}

static uint32_t read_page (void *opaque, uint32_t nport)
{
    struct dma_cont *d = opaque;
    int ichan;
97
98
99
100
101
102
103
104
    ichan = channels[nport & 7];

    if (-1 == ichan) {
        log ("invalid channel read %#x\n", nport);
        return 0;
    }
    return d->regs[ichan].page;
105
106
}
107
static inline void init_chan (struct dma_cont *d, int ichan)
108
109
110
{
    struct dma_regs *r;
111
112
    r = d->regs + ichan;
    r->now[ADDR] = r->base[0] << d->dshift;
113
114
115
    r->now[COUNT] = 0;
}
116
static inline int getff (struct dma_cont *d)
117
118
119
{
    int ff;
120
121
    ff = d->flip_flop;
    d->flip_flop = !ff;
122
123
124
    return ff;
}
bellard authored
125
static uint32_t read_chan (void *opaque, uint32_t nport)
126
{
127
128
    struct dma_cont *d = opaque;
    int ichan, nreg, iport, ff, val;
129
130
    struct dma_regs *r;
131
132
133
134
    iport = (nport >> d->dshift) & 0x0f;
    ichan = iport >> 1;
    nreg = iport & 1;
    r = d->regs + ichan;
135
136
    ff = getff (d);
137
    if (nreg)
138
        val = (r->base[COUNT] << d->dshift) - r->now[COUNT];
139
140
141
    else
        val = r->now[ADDR] + r->now[COUNT];
142
    return (val >> (d->dshift + (ff << 3))) & 0xff;
143
144
}
bellard authored
145
static void write_chan (void *opaque, uint32_t nport, uint32_t data)
146
{
147
148
    struct dma_cont *d = opaque;
    int iport, ichan, nreg;
149
150
    struct dma_regs *r;
151
152
153
154
155
    iport = (nport >> d->dshift) & 0x0f;
    ichan = iport >> 1;
    nreg = iport & 1;
    r = d->regs + ichan;
    if (getff (d)) {
bellard authored
156
        r->base[nreg] = (r->base[nreg] & 0xff) | ((data << 8) & 0xff00);
157
        init_chan (d, ichan);
bellard authored
158
159
    } else {
        r->base[nreg] = (r->base[nreg] & 0xff00) | (data & 0xff);
160
161
162
    }
}
bellard authored
163
static void write_cont (void *opaque, uint32_t nport, uint32_t data)
164
{
165
166
    struct dma_cont *d = opaque;
    int iport, ichan;
167
168
    iport = (nport >> d->dshift) & 0x0f;
169
170
    switch (iport) {
    case 8:                     /* command */
bellard authored
171
        if ((data != 0) && (data & CMD_NOT_SUPPORTED)) {
172
            log ("command %#x not supported\n", data);
bellard authored
173
            return;
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
        }
        d->command = data;
        break;

    case 9:
        ichan = data & 3;
        if (data & 4) {
            d->status |= 1 << (ichan + 4);
        }
        else {
            d->status &= ~(1 << (ichan + 4));
        }
        d->status &= ~(1 << ichan);
        break;

    case 0xa:                   /* single mask */
        if (data & 4)
            d->mask |= 1 << (data & 3);
        else
            d->mask &= ~(1 << (data & 3));
        break;

    case 0xb:                   /* mode */
        {
bellard authored
198
199
            ichan = data & 3;
#ifdef DEBUG_DMA
200
201
202
203
204
            int op;
            int ai;
            int dir;
            int opmode;
bellard authored
205
206
207
208
            op = (data >> 2) & 3;
            ai = (data >> 4) & 1;
            dir = (data >> 5) & 1;
            opmode = (data >> 6) & 3;
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238

            linfo ("ichan %d, op %d, ai %d, dir %d, opmode %d\n",
                   ichan, op, ai, dir, opmode);
#endif

            d->regs[ichan].mode = data;
            break;
        }

    case 0xc:                   /* clear flip flop */
        d->flip_flop = 0;
        break;

    case 0xd:                   /* reset */
        d->flip_flop = 0;
        d->mask = ~0;
        d->status = 0;
        d->command = 0;
        break;

    case 0xe:                   /* clear mask for all channels */
        d->mask = 0;
        break;

    case 0xf:                   /* write mask for all channels */
        d->mask = data;
        break;

    default:
        log ("dma: unknown iport %#x\n", iport);
bellard authored
239
        break;
240
241
    }
bellard authored
242
#ifdef DEBUG_DMA
243
    if (0xc != iport) {
244
245
        linfo ("nport %#06x, ichan % 2d, val %#06x\n",
               nport, ichan, data);
246
247
248
249
    }
#endif
}
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
static uint32_t read_cont (void *opaque, uint32_t nport)
{
    struct dma_cont *d = opaque;
    int iport, val;

    iport = (nport >> d->dshift) & 0x0f;
    switch (iport) {
    case 0x08: /* status */
        val = d->status;
        d->status &= 0xf0;
        break;
    case 0x0f: /* mask */
        val = d->mask;
        break;
    default:
        val = 0;
        break;
    }
    return val;
}
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
int DMA_get_channel_mode (int nchan)
{
    return dma_controllers[nchan > 3].regs[nchan & 3].mode;
}

void DMA_hold_DREQ (int nchan)
{
    int ncont, ichan;

    ncont = nchan > 3;
    ichan = nchan & 3;
    linfo ("held cont=%d chan=%d\n", ncont, ichan);
    dma_controllers[ncont].status |= 1 << (ichan + 4);
}

void DMA_release_DREQ (int nchan)
{
    int ncont, ichan;

    ncont = nchan > 3;
    ichan = nchan & 3;
    linfo ("released cont=%d chan=%d\n", ncont, ichan);
    dma_controllers[ncont].status &= ~(1 << (ichan + 4));
}

static void channel_run (int ncont, int ichan)
{
    struct dma_regs *r;
    int n;
bellard authored
300
    target_ulong addr;
301
302
303
304
305
306
/*     int ai, dir; */

    r = dma_controllers[ncont].regs + ichan;
/*   ai = r->mode & 16; */
/*   dir = r->mode & 32 ? -1 : 1; */
bellard authored
307
308
309
    addr = (r->page << 16) | r->now[ADDR];
    n = r->transfer_handler (r->opaque, addr, 
                             (r->base[COUNT] << ncont) + (1 << ncont));
310
311
    r->now[COUNT] = n;
bellard authored
312
313
    ldebug ("dma_pos %d size %d\n",
            n, (r->base[1] << ncont) + (1 << ncont));
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
}

void DMA_run (void)
{
    struct dma_cont *d;
    int icont, ichan;

    d = dma_controllers;

    for (icont = 0; icont < 2; icont++, d++) {
        for (ichan = 0; ichan < 4; ichan++) {
            int mask;

            mask = 1 << ichan;

            if ((0 == (d->mask & mask)) && (0 != (d->status & (mask << 4))))
                channel_run (icont, ichan);
        }
    }
}

void DMA_register_channel (int nchan,
bellard authored
336
337
                           DMA_transfer_handler transfer_handler, 
                           void *opaque)
338
339
340
341
342
343
344
345
{
    struct dma_regs *r;
    int ichan, ncont;

    ncont = nchan > 3;
    ichan = nchan & 3;

    r = dma_controllers[ncont].regs + ichan;
bellard authored
346
347
348
349
350
351
352
353
    r->transfer_handler = transfer_handler;
    r->opaque = opaque;
}

/* request the emulator to transfer a new DMA memory block ASAP */
void DMA_schedule(int nchan)
{
    cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
354
355
}
356
357
/* dshift = 0: 8 bit DMA, 1 = 16 bit DMA */
static void dma_init2(struct dma_cont *d, int base, int dshift, int page_base)
358
{
359
    const static int page_port_list[] = { 0x1, 0x2, 0x3, 0x7 };
360
361
    int i;
362
    d->dshift = dshift;
363
    for (i = 0; i < 8; i++) {
364
365
        register_ioport_write (base + (i << dshift), 1, 1, write_chan, d);
        register_ioport_read (base + (i << dshift), 1, 1, read_chan, d);
366
367
    }
    for (i = 0; i < LENOFA (page_port_list); i++) {
368
369
370
371
        register_ioport_write (page_base + page_port_list[i], 1, 1, 
                               write_page, d);
        register_ioport_read (page_base + page_port_list[i], 1, 1, 
                              read_page, d);
372
373
    }
    for (i = 0; i < 8; i++) {
374
375
376
377
        register_ioport_write (base + ((i + 8) << dshift), 1, 1, 
                               write_cont, d);
        register_ioport_read (base + ((i + 8) << dshift), 1, 1, 
                              read_cont, d);
378
    }
379
380
    write_cont (d, base + (0x0d << dshift), 0);
}
381
382
383
384
385
void DMA_init (void)
{
    dma_init2(&dma_controllers[0], 0x00, 0, 0x80);
    dma_init2(&dma_controllers[1], 0xc0, 1, 0x88);
386
}