]>
Commit | Line | Data |
---|---|---|
b8842209 GH |
1 | /* |
2 | * QEMU IDE Emulation: MacIO support. | |
3 | * | |
4 | * Copyright (c) 2003 Fabrice Bellard | |
5 | * Copyright (c) 2006 Openedhand Ltd. | |
6 | * | |
7 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
8 | * of this software and associated documentation files (the "Software"), to deal | |
9 | * in the Software without restriction, including without limitation the rights | |
10 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
11 | * copies of the Software, and to permit persons to whom the Software is | |
12 | * furnished to do so, subject to the following conditions: | |
13 | * | |
14 | * The above copyright notice and this permission notice shall be included in | |
15 | * all copies or substantial portions of the Software. | |
16 | * | |
17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
18 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
19 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
20 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
21 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
22 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
23 | * THE SOFTWARE. | |
24 | */ | |
0b8fa32f | 25 | |
53239262 | 26 | #include "qemu/osdep.h" |
baec1910 | 27 | #include "hw/ppc/mac.h" |
0d09e41a | 28 | #include "hw/ppc/mac_dbdma.h" |
d6454270 | 29 | #include "migration/vmstate.h" |
0b8fa32f | 30 | #include "qemu/module.h" |
9b164a46 | 31 | #include "hw/misc/macio/macio.h" |
4be74634 | 32 | #include "sysemu/block-backend.h" |
9c17d615 | 33 | #include "sysemu/dma.h" |
59f2a787 | 34 | |
a9c94277 | 35 | #include "hw/ide/internal.h" |
b8842209 | 36 | |
33ce36bb AG |
37 | /* debug MACIO */ |
38 | // #define DEBUG_MACIO | |
39 | ||
40 | #ifdef DEBUG_MACIO | |
41 | static const int debug_macio = 1; | |
42 | #else | |
43 | static const int debug_macio = 0; | |
44 | #endif | |
45 | ||
46 | #define MACIO_DPRINTF(fmt, ...) do { \ | |
47 | if (debug_macio) { \ | |
48 | printf(fmt , ## __VA_ARGS__); \ | |
49 | } \ | |
50 | } while (0) | |
51 | ||
52 | ||
b8842209 GH |
53 | /***********************************************************/ |
54 | /* MacIO based PowerPC IDE */ | |
55 | ||
02c7c992 BS |
56 | #define MACIO_PAGE_SIZE 4096 |
57 | ||
4827ac1e MCA |
58 | static void pmac_ide_atapi_transfer_cb(void *opaque, int ret) |
59 | { | |
60 | DBDMA_io *io = opaque; | |
61 | MACIOIDEState *m = io->opaque; | |
62 | IDEState *s = idebus_active_if(&m->bus); | |
0389b8f8 | 63 | int64_t offset; |
4827ac1e | 64 | |
b01d44cd | 65 | MACIO_DPRINTF("pmac_ide_atapi_transfer_cb\n"); |
4827ac1e MCA |
66 | |
67 | if (ret < 0) { | |
b01d44cd | 68 | MACIO_DPRINTF("DMA error: %d\n", ret); |
be1e3439 | 69 | qemu_sglist_destroy(&s->sg); |
4827ac1e MCA |
70 | ide_atapi_io_error(s, ret); |
71 | goto done; | |
72 | } | |
73 | ||
74 | if (!m->dma_active) { | |
75 | MACIO_DPRINTF("waiting for data (%#x - %#x - %x)\n", | |
76 | s->nsector, io->len, s->status); | |
77 | /* data not ready yet, wait for the channel to get restarted */ | |
78 | io->processing = false; | |
80fc95d8 AG |
79 | return; |
80 | } | |
81 | ||
4827ac1e | 82 | if (s->io_buffer_size <= 0) { |
b01d44cd | 83 | MACIO_DPRINTF("End of IDE transfer\n"); |
be1e3439 | 84 | qemu_sglist_destroy(&s->sg); |
b8842209 | 85 | ide_atapi_cmd_ok(s); |
cae32357 | 86 | m->dma_active = false; |
4827ac1e | 87 | goto done; |
33ce36bb | 88 | } |
b8842209 GH |
89 | |
90 | if (io->len == 0) { | |
4827ac1e | 91 | MACIO_DPRINTF("End of DMA transfer\n"); |
a597e79c | 92 | goto done; |
b8842209 GH |
93 | } |
94 | ||
4827ac1e MCA |
95 | if (s->lba == -1) { |
96 | /* Non-block ATAPI transfer - just copy to RAM */ | |
97 | s->io_buffer_size = MIN(s->io_buffer_size, io->len); | |
ddd495e5 MCA |
98 | dma_memory_write(&address_space_memory, io->addr, s->io_buffer, |
99 | s->io_buffer_size); | |
16275edb | 100 | io->len = 0; |
4827ac1e MCA |
101 | ide_atapi_cmd_ok(s); |
102 | m->dma_active = false; | |
103 | goto done; | |
80fc95d8 AG |
104 | } |
105 | ||
0389b8f8 | 106 | /* Calculate current offset */ |
97225170 | 107 | offset = ((int64_t)s->lba << 11) + s->io_buffer_index; |
0389b8f8 | 108 | |
be1e3439 MCA |
109 | qemu_sglist_init(&s->sg, DEVICE(m), io->len / MACIO_PAGE_SIZE + 1, |
110 | &address_space_memory); | |
111 | qemu_sglist_add(&s->sg, io->addr, io->len); | |
112 | s->io_buffer_size -= io->len; | |
113 | s->io_buffer_index += io->len; | |
114 | io->len = 0; | |
115 | ||
116 | s->bus->dma->aiocb = dma_blk_read(s->blk, &s->sg, offset, 0x1, | |
117 | pmac_ide_atapi_transfer_cb, io); | |
a597e79c CH |
118 | return; |
119 | ||
120 | done: | |
bc9ca595 MCA |
121 | dma_memory_unmap(&address_space_memory, io->dma_mem, io->dma_len, |
122 | io->dir, io->dma_len); | |
123 | ||
b88b3c8b AG |
124 | if (ret < 0) { |
125 | block_acct_failed(blk_get_stats(s->blk), &s->acct); | |
126 | } else { | |
127 | block_acct_done(blk_get_stats(s->blk), &s->acct); | |
128 | } | |
03c1280b MCA |
129 | |
130 | ide_set_inactive(s, false); | |
a597e79c | 131 | io->dma_end(opaque); |
b8842209 GH |
132 | } |
133 | ||
134 | static void pmac_ide_transfer_cb(void *opaque, int ret) | |
135 | { | |
136 | DBDMA_io *io = opaque; | |
137 | MACIOIDEState *m = io->opaque; | |
138 | IDEState *s = idebus_active_if(&m->bus); | |
0389b8f8 | 139 | int64_t offset; |
bd4214fc MCA |
140 | |
141 | MACIO_DPRINTF("pmac_ide_transfer_cb\n"); | |
b8842209 GH |
142 | |
143 | if (ret < 0) { | |
b01d44cd | 144 | MACIO_DPRINTF("DMA error: %d\n", ret); |
be1e3439 | 145 | qemu_sglist_destroy(&s->sg); |
8aef291f | 146 | ide_dma_error(s); |
a597e79c | 147 | goto done; |
b8842209 GH |
148 | } |
149 | ||
cae32357 AG |
150 | if (!m->dma_active) { |
151 | MACIO_DPRINTF("waiting for data (%#x - %#x - %x)\n", | |
152 | s->nsector, io->len, s->status); | |
153 | /* data not ready yet, wait for the channel to get restarted */ | |
154 | io->processing = false; | |
155 | return; | |
156 | } | |
157 | ||
bd4214fc | 158 | if (s->io_buffer_size <= 0) { |
b01d44cd | 159 | MACIO_DPRINTF("End of IDE transfer\n"); |
be1e3439 | 160 | qemu_sglist_destroy(&s->sg); |
b8842209 | 161 | s->status = READY_STAT | SEEK_STAT; |
9cdd03a7 | 162 | ide_set_irq(s->bus); |
cae32357 | 163 | m->dma_active = false; |
bd4214fc | 164 | goto done; |
b8842209 GH |
165 | } |
166 | ||
b8842209 | 167 | if (io->len == 0) { |
bd4214fc | 168 | MACIO_DPRINTF("End of DMA transfer\n"); |
a597e79c | 169 | goto done; |
b8842209 GH |
170 | } |
171 | ||
bd4214fc | 172 | /* Calculate number of sectors */ |
0389b8f8 | 173 | offset = (ide_get_sector(s) << 9) + s->io_buffer_index; |
33ce36bb | 174 | |
be1e3439 MCA |
175 | qemu_sglist_init(&s->sg, DEVICE(m), io->len / MACIO_PAGE_SIZE + 1, |
176 | &address_space_memory); | |
177 | qemu_sglist_add(&s->sg, io->addr, io->len); | |
178 | s->io_buffer_size -= io->len; | |
179 | s->io_buffer_index += io->len; | |
180 | io->len = 0; | |
181 | ||
4e1e0051 CH |
182 | switch (s->dma_cmd) { |
183 | case IDE_DMA_READ: | |
be1e3439 MCA |
184 | s->bus->dma->aiocb = dma_blk_read(s->blk, &s->sg, offset, 0x1, |
185 | pmac_ide_atapi_transfer_cb, io); | |
4e1e0051 CH |
186 | break; |
187 | case IDE_DMA_WRITE: | |
be1e3439 MCA |
188 | s->bus->dma->aiocb = dma_blk_write(s->blk, &s->sg, offset, 0x1, |
189 | pmac_ide_transfer_cb, io); | |
4e1e0051 | 190 | break; |
d353fb72 | 191 | case IDE_DMA_TRIM: |
be1e3439 | 192 | s->bus->dma->aiocb = dma_blk_io(blk_get_aio_context(s->blk), &s->sg, |
eb69953e | 193 | offset, 0x1, ide_issue_trim, s, |
be1e3439 MCA |
194 | pmac_ide_transfer_cb, io, |
195 | DMA_DIRECTION_TO_DEVICE); | |
d353fb72 | 196 | break; |
502356ee PB |
197 | default: |
198 | abort(); | |
4e1e0051 | 199 | } |
3e300fa6 | 200 | |
a597e79c | 201 | return; |
b9b2008b | 202 | |
a597e79c | 203 | done: |
bc9ca595 MCA |
204 | dma_memory_unmap(&address_space_memory, io->dma_mem, io->dma_len, |
205 | io->dir, io->dma_len); | |
206 | ||
a597e79c | 207 | if (s->dma_cmd == IDE_DMA_READ || s->dma_cmd == IDE_DMA_WRITE) { |
b88b3c8b AG |
208 | if (ret < 0) { |
209 | block_acct_failed(blk_get_stats(s->blk), &s->acct); | |
210 | } else { | |
211 | block_acct_done(blk_get_stats(s->blk), &s->acct); | |
212 | } | |
a597e79c | 213 | } |
03c1280b MCA |
214 | |
215 | ide_set_inactive(s, false); | |
bd4214fc | 216 | io->dma_end(opaque); |
b8842209 GH |
217 | } |
218 | ||
219 | static void pmac_ide_transfer(DBDMA_io *io) | |
220 | { | |
221 | MACIOIDEState *m = io->opaque; | |
222 | IDEState *s = idebus_active_if(&m->bus); | |
223 | ||
33ce36bb AG |
224 | MACIO_DPRINTF("\n"); |
225 | ||
cd8722bb | 226 | if (s->drive_kind == IDE_CD) { |
4be74634 | 227 | block_acct_start(blk_get_stats(s->blk), &s->acct, io->len, |
5366d0c8 | 228 | BLOCK_ACCT_READ); |
4827ac1e | 229 | |
b8842209 GH |
230 | pmac_ide_atapi_transfer_cb(io, 0); |
231 | return; | |
232 | } | |
233 | ||
a597e79c CH |
234 | switch (s->dma_cmd) { |
235 | case IDE_DMA_READ: | |
4be74634 | 236 | block_acct_start(blk_get_stats(s->blk), &s->acct, io->len, |
5366d0c8 | 237 | BLOCK_ACCT_READ); |
a597e79c CH |
238 | break; |
239 | case IDE_DMA_WRITE: | |
4be74634 | 240 | block_acct_start(blk_get_stats(s->blk), &s->acct, io->len, |
5366d0c8 | 241 | BLOCK_ACCT_WRITE); |
a597e79c CH |
242 | break; |
243 | default: | |
244 | break; | |
245 | } | |
246 | ||
b8842209 GH |
247 | pmac_ide_transfer_cb(io, 0); |
248 | } | |
249 | ||
250 | static void pmac_ide_flush(DBDMA_io *io) | |
251 | { | |
252 | MACIOIDEState *m = io->opaque; | |
03c1280b | 253 | IDEState *s = idebus_active_if(&m->bus); |
b8842209 | 254 | |
03c1280b | 255 | if (s->bus->dma->aiocb) { |
0d0437aa | 256 | blk_drain(s->blk); |
922453bc | 257 | } |
b8842209 GH |
258 | } |
259 | ||
260 | /* PowerMac IDE memory IO */ | |
5abdf670 | 261 | static uint64_t pmac_ide_read(void *opaque, hwaddr addr, unsigned size) |
b8842209 GH |
262 | { |
263 | MACIOIDEState *d = opaque; | |
5abdf670 MCA |
264 | uint64_t retval = 0xffffffff; |
265 | int reg = addr >> 4; | |
266 | ||
267 | switch (reg) { | |
268 | case 0x0: | |
269 | if (size == 2) { | |
270 | retval = ide_data_readw(&d->bus, 0); | |
271 | } else if (size == 4) { | |
272 | retval = ide_data_readl(&d->bus, 0); | |
273 | } | |
b8842209 | 274 | break; |
5abdf670 MCA |
275 | case 0x1 ... 0x7: |
276 | if (size == 1) { | |
277 | retval = ide_ioport_read(&d->bus, reg); | |
278 | } | |
b8842209 | 279 | break; |
5abdf670 MCA |
280 | case 0x8: |
281 | case 0x16: | |
282 | if (size == 1) { | |
283 | retval = ide_status_read(&d->bus, 0); | |
284 | } | |
b8842209 | 285 | break; |
5abdf670 MCA |
286 | case 0x20: |
287 | if (size == 4) { | |
288 | retval = d->timing_reg; | |
289 | } | |
b8842209 | 290 | break; |
5abdf670 MCA |
291 | case 0x30: |
292 | /* This is an interrupt state register that only exists | |
293 | * in the KeyLargo and later variants. Bit 0x8000_0000 | |
294 | * latches the DMA interrupt and has to be written to | |
295 | * clear. Bit 0x4000_0000 is an image of the disk | |
296 | * interrupt. MacOS X relies on this and will hang if | |
297 | * we don't provide at least the disk interrupt | |
298 | */ | |
299 | if (size == 4) { | |
300 | retval = d->irq_reg; | |
301 | } | |
b8842209 GH |
302 | break; |
303 | } | |
b8842209 | 304 | |
b8842209 GH |
305 | return retval; |
306 | } | |
307 | ||
b8842209 | 308 | |
5abdf670 MCA |
309 | static void pmac_ide_write(void *opaque, hwaddr addr, uint64_t val, |
310 | unsigned size) | |
b8842209 | 311 | { |
b8842209 | 312 | MACIOIDEState *d = opaque; |
5abdf670 MCA |
313 | int reg = addr >> 4; |
314 | ||
315 | switch (reg) { | |
316 | case 0x0: | |
317 | if (size == 2) { | |
318 | ide_data_writew(&d->bus, 0, val); | |
319 | } else if (size == 4) { | |
320 | ide_data_writel(&d->bus, 0, val); | |
321 | } | |
322 | break; | |
323 | case 0x1 ... 0x7: | |
324 | if (size == 1) { | |
325 | ide_ioport_write(&d->bus, reg, val); | |
326 | } | |
327 | break; | |
328 | case 0x8: | |
329 | case 0x16: | |
330 | if (size == 1) { | |
331 | ide_cmd_write(&d->bus, 0, val); | |
332 | } | |
333 | break; | |
334 | case 0x20: | |
335 | if (size == 4) { | |
336 | d->timing_reg = val; | |
337 | } | |
338 | break; | |
339 | case 0x30: | |
340 | if (size == 4) { | |
341 | if (val & 0x80000000u) { | |
342 | d->irq_reg &= 0x7fffffff; | |
343 | } | |
344 | } | |
345 | break; | |
b8842209 | 346 | } |
b8842209 GH |
347 | } |
348 | ||
a348f108 | 349 | static const MemoryRegionOps pmac_ide_ops = { |
5abdf670 MCA |
350 | .read = pmac_ide_read, |
351 | .write = pmac_ide_write, | |
352 | .valid.min_access_size = 1, | |
353 | .valid.max_access_size = 4, | |
354 | .endianness = DEVICE_LITTLE_ENDIAN, | |
b8842209 GH |
355 | }; |
356 | ||
44bfa332 JQ |
357 | static const VMStateDescription vmstate_pmac = { |
358 | .name = "ide", | |
c2a0125a | 359 | .version_id = 5, |
44bfa332 | 360 | .minimum_version_id = 0, |
35d08458 | 361 | .fields = (VMStateField[]) { |
44bfa332 JQ |
362 | VMSTATE_IDE_BUS(bus, MACIOIDEState), |
363 | VMSTATE_IDE_DRIVES(bus.ifs, MACIOIDEState), | |
bb37a8e8 | 364 | VMSTATE_BOOL(dma_active, MACIOIDEState), |
c2a0125a MCA |
365 | VMSTATE_UINT32(timing_reg, MACIOIDEState), |
366 | VMSTATE_UINT32(irq_reg, MACIOIDEState), | |
44bfa332 | 367 | VMSTATE_END_OF_LIST() |
b8842209 | 368 | } |
44bfa332 | 369 | }; |
b8842209 | 370 | |
07a7484e | 371 | static void macio_ide_reset(DeviceState *dev) |
b8842209 | 372 | { |
07a7484e | 373 | MACIOIDEState *d = MACIO_IDE(dev); |
b8842209 | 374 | |
4a643563 | 375 | ide_bus_reset(&d->bus); |
b8842209 GH |
376 | } |
377 | ||
4aa3510f AG |
378 | static int ide_nop_int(IDEDMA *dma, int x) |
379 | { | |
380 | return 0; | |
381 | } | |
382 | ||
a718978e | 383 | static int32_t ide_nop_int32(IDEDMA *dma, int32_t l) |
3251bdcf JS |
384 | { |
385 | return 0; | |
386 | } | |
387 | ||
4aa3510f | 388 | static void ide_dbdma_start(IDEDMA *dma, IDEState *s, |
097310b5 | 389 | BlockCompletionFunc *cb) |
4aa3510f AG |
390 | { |
391 | MACIOIDEState *m = container_of(dma, MACIOIDEState, dma); | |
4827ac1e | 392 | |
bd4214fc | 393 | s->io_buffer_index = 0; |
4827ac1e | 394 | if (s->drive_kind == IDE_CD) { |
4827ac1e | 395 | s->io_buffer_size = s->packet_transfer_size; |
bd4214fc | 396 | } else { |
b01d44cd | 397 | s->io_buffer_size = s->nsector * BDRV_SECTOR_SIZE; |
bd4214fc | 398 | } |
4827ac1e | 399 | |
bd4214fc MCA |
400 | MACIO_DPRINTF("\n\n------------ IDE transfer\n"); |
401 | MACIO_DPRINTF("buffer_size: %x buffer_index: %x\n", | |
402 | s->io_buffer_size, s->io_buffer_index); | |
403 | MACIO_DPRINTF("lba: %x size: %x\n", s->lba, s->io_buffer_size); | |
404 | MACIO_DPRINTF("-------------------------\n"); | |
4827ac1e | 405 | |
cae32357 | 406 | m->dma_active = true; |
4aa3510f AG |
407 | DBDMA_kick(m->dbdma); |
408 | } | |
409 | ||
410 | static const IDEDMAOps dbdma_ops = { | |
411 | .start_dma = ide_dbdma_start, | |
3251bdcf | 412 | .prepare_buf = ide_nop_int32, |
4aa3510f | 413 | .rw_buf = ide_nop_int, |
4aa3510f AG |
414 | }; |
415 | ||
07a7484e | 416 | static void macio_ide_realizefn(DeviceState *dev, Error **errp) |
b8842209 | 417 | { |
07a7484e AF |
418 | MACIOIDEState *s = MACIO_IDE(dev); |
419 | ||
4f7265ff | 420 | ide_init2(&s->bus, s->ide_irq); |
4aa3510f AG |
421 | |
422 | /* Register DMA callbacks */ | |
423 | s->dma.ops = &dbdma_ops; | |
424 | s->bus.dma = &s->dma; | |
07a7484e AF |
425 | } |
426 | ||
4f7265ff BH |
427 | static void pmac_ide_irq(void *opaque, int n, int level) |
428 | { | |
429 | MACIOIDEState *s = opaque; | |
430 | uint32_t mask = 0x80000000u >> n; | |
431 | ||
432 | /* We need to reflect the IRQ state in the irq register */ | |
433 | if (level) { | |
434 | s->irq_reg |= mask; | |
435 | } else { | |
436 | s->irq_reg &= ~mask; | |
437 | } | |
438 | ||
439 | if (n) { | |
440 | qemu_set_irq(s->real_ide_irq, level); | |
441 | } else { | |
442 | qemu_set_irq(s->real_dma_irq, level); | |
443 | } | |
444 | } | |
445 | ||
07a7484e AF |
446 | static void macio_ide_initfn(Object *obj) |
447 | { | |
448 | SysBusDevice *d = SYS_BUS_DEVICE(obj); | |
449 | MACIOIDEState *s = MACIO_IDE(obj); | |
450 | ||
c6baf942 | 451 | ide_bus_new(&s->bus, sizeof(s->bus), DEVICE(obj), 0, 2); |
1437c94b | 452 | memory_region_init_io(&s->mem, obj, &pmac_ide_ops, s, "pmac-ide", 0x1000); |
07a7484e | 453 | sysbus_init_mmio(d, &s->mem); |
4f7265ff BH |
454 | sysbus_init_irq(d, &s->real_ide_irq); |
455 | sysbus_init_irq(d, &s->real_dma_irq); | |
456 | s->dma_irq = qemu_allocate_irq(pmac_ide_irq, s, 0); | |
457 | s->ide_irq = qemu_allocate_irq(pmac_ide_irq, s, 1); | |
e451b85f MCA |
458 | |
459 | object_property_add_link(obj, "dbdma", TYPE_MAC_DBDMA, | |
460 | (Object **) &s->dbdma, | |
461 | qdev_prop_allow_set_link_before_realize, 0, NULL); | |
07a7484e AF |
462 | } |
463 | ||
0fc84331 MCA |
464 | static Property macio_ide_properties[] = { |
465 | DEFINE_PROP_UINT32("channel", MACIOIDEState, channel, 0), | |
5c8e3d17 | 466 | DEFINE_PROP_UINT32("addr", MACIOIDEState, addr, -1), |
0fc84331 MCA |
467 | DEFINE_PROP_END_OF_LIST(), |
468 | }; | |
469 | ||
07a7484e AF |
470 | static void macio_ide_class_init(ObjectClass *oc, void *data) |
471 | { | |
472 | DeviceClass *dc = DEVICE_CLASS(oc); | |
473 | ||
474 | dc->realize = macio_ide_realizefn; | |
475 | dc->reset = macio_ide_reset; | |
0fc84331 | 476 | dc->props = macio_ide_properties; |
07a7484e | 477 | dc->vmsd = &vmstate_pmac; |
3469d9bc | 478 | set_bit(DEVICE_CATEGORY_STORAGE, dc->categories); |
07a7484e | 479 | } |
b8842209 | 480 | |
07a7484e AF |
481 | static const TypeInfo macio_ide_type_info = { |
482 | .name = TYPE_MACIO_IDE, | |
483 | .parent = TYPE_SYS_BUS_DEVICE, | |
484 | .instance_size = sizeof(MACIOIDEState), | |
485 | .instance_init = macio_ide_initfn, | |
486 | .class_init = macio_ide_class_init, | |
487 | }; | |
b8842209 | 488 | |
07a7484e AF |
489 | static void macio_ide_register_types(void) |
490 | { | |
491 | type_register_static(&macio_ide_type_info); | |
492 | } | |
b8842209 | 493 | |
14eefd0e | 494 | /* hd_table must contain 2 block drivers */ |
07a7484e AF |
495 | void macio_ide_init_drives(MACIOIDEState *s, DriveInfo **hd_table) |
496 | { | |
497 | int i; | |
b8842209 | 498 | |
07a7484e AF |
499 | for (i = 0; i < 2; i++) { |
500 | if (hd_table[i]) { | |
501 | ide_create_drive(&s->bus, i, hd_table[i]); | |
502 | } | |
503 | } | |
b8842209 | 504 | } |
07a7484e | 505 | |
e451b85f | 506 | void macio_ide_register_dma(MACIOIDEState *s) |
07a7484e | 507 | { |
e451b85f | 508 | DBDMA_register_channel(s->dbdma, s->channel, s->dma_irq, |
07a7484e AF |
509 | pmac_ide_transfer, pmac_ide_flush, s); |
510 | } | |
511 | ||
512 | type_init(macio_ide_register_types) |