]>
Commit | Line | Data |
---|---|---|
977e1244 GH |
1 | /* |
2 | * QEMU IDE Emulation: PCI Bus 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 | */ | |
53239262 | 25 | #include "qemu/osdep.h" |
a9c94277 | 26 | #include "hw/hw.h" |
a9c94277 | 27 | #include "hw/pci/pci.h" |
9c17d615 | 28 | #include "sysemu/dma.h" |
3251bdcf | 29 | #include "qemu/error-report.h" |
a9c94277 | 30 | #include "hw/ide/pci.h" |
3eee2611 | 31 | #include "trace.h" |
977e1244 | 32 | |
40a6238a AG |
33 | #define BMDMA_PAGE_SIZE 4096 |
34 | ||
7e2648df | 35 | #define BM_MIGRATION_COMPAT_STATUS_BITS \ |
fd648f10 PB |
36 | (IDE_RETRY_DMA | IDE_RETRY_PIO | \ |
37 | IDE_RETRY_READ | IDE_RETRY_FLUSH) | |
7e2648df | 38 | |
c9ebc75d BZ |
39 | static uint64_t pci_ide_cmd_read(void *opaque, hwaddr addr, unsigned size) |
40 | { | |
41 | IDEBus *bus = opaque; | |
42 | ||
43 | if (addr != 2 || size != 1) { | |
44 | return ((uint64_t)1 << (size * 8)) - 1; | |
45 | } | |
46 | return ide_status_read(bus, addr + 2); | |
47 | } | |
48 | ||
49 | static void pci_ide_cmd_write(void *opaque, hwaddr addr, | |
50 | uint64_t data, unsigned size) | |
51 | { | |
52 | IDEBus *bus = opaque; | |
53 | ||
54 | if (addr != 2 || size != 1) { | |
55 | return; | |
56 | } | |
57 | ide_cmd_write(bus, addr + 2, data); | |
58 | } | |
59 | ||
60 | const MemoryRegionOps pci_ide_cmd_le_ops = { | |
61 | .read = pci_ide_cmd_read, | |
62 | .write = pci_ide_cmd_write, | |
63 | .endianness = DEVICE_LITTLE_ENDIAN, | |
64 | }; | |
65 | ||
66 | static uint64_t pci_ide_data_read(void *opaque, hwaddr addr, unsigned size) | |
67 | { | |
68 | IDEBus *bus = opaque; | |
69 | ||
70 | if (size == 1) { | |
71 | return ide_ioport_read(bus, addr); | |
72 | } else if (addr == 0) { | |
73 | if (size == 2) { | |
74 | return ide_data_readw(bus, addr); | |
75 | } else { | |
76 | return ide_data_readl(bus, addr); | |
77 | } | |
78 | } | |
79 | return ((uint64_t)1 << (size * 8)) - 1; | |
80 | } | |
81 | ||
82 | static void pci_ide_data_write(void *opaque, hwaddr addr, | |
83 | uint64_t data, unsigned size) | |
84 | { | |
85 | IDEBus *bus = opaque; | |
86 | ||
87 | if (size == 1) { | |
88 | ide_ioport_write(bus, addr, data); | |
89 | } else if (addr == 0) { | |
90 | if (size == 2) { | |
91 | ide_data_writew(bus, addr, data); | |
92 | } else { | |
93 | ide_data_writel(bus, addr, data); | |
94 | } | |
95 | } | |
96 | } | |
97 | ||
98 | const MemoryRegionOps pci_ide_data_le_ops = { | |
99 | .read = pci_ide_data_read, | |
100 | .write = pci_ide_data_write, | |
101 | .endianness = DEVICE_LITTLE_ENDIAN, | |
102 | }; | |
103 | ||
40a6238a | 104 | static void bmdma_start_dma(IDEDMA *dma, IDEState *s, |
097310b5 | 105 | BlockCompletionFunc *dma_cb) |
40a6238a AG |
106 | { |
107 | BMDMAState *bm = DO_UPCAST(BMDMAState, dma, dma); | |
108 | ||
40a6238a AG |
109 | bm->dma_cb = dma_cb; |
110 | bm->cur_prd_last = 0; | |
111 | bm->cur_prd_addr = 0; | |
112 | bm->cur_prd_len = 0; | |
40a6238a AG |
113 | |
114 | if (bm->status & BM_STATUS_DMAING) { | |
115 | bm->dma_cb(bmdma_active_if(bm), 0); | |
116 | } | |
117 | } | |
118 | ||
3251bdcf | 119 | /** |
a718978e JS |
120 | * Prepare an sglist based on available PRDs. |
121 | * @limit: How many bytes to prepare total. | |
122 | * | |
123 | * Returns the number of bytes prepared, -1 on error. | |
124 | * IDEState.io_buffer_size will contain the number of bytes described | |
125 | * by the PRDs, whether or not we added them to the sglist. | |
3251bdcf | 126 | */ |
a718978e | 127 | static int32_t bmdma_prepare_buf(IDEDMA *dma, int32_t limit) |
40a6238a AG |
128 | { |
129 | BMDMAState *bm = DO_UPCAST(BMDMAState, dma, dma); | |
130 | IDEState *s = bmdma_active_if(bm); | |
f6c11d56 | 131 | PCIDevice *pci_dev = PCI_DEVICE(bm->pci_dev); |
40a6238a AG |
132 | struct { |
133 | uint32_t addr; | |
134 | uint32_t size; | |
135 | } prd; | |
136 | int l, len; | |
137 | ||
f6c11d56 | 138 | pci_dma_sglist_init(&s->sg, pci_dev, |
552908fe | 139 | s->nsector / (BMDMA_PAGE_SIZE / 512) + 1); |
40a6238a AG |
140 | s->io_buffer_size = 0; |
141 | for(;;) { | |
142 | if (bm->cur_prd_len == 0) { | |
143 | /* end of table (with a fail safe of one page) */ | |
144 | if (bm->cur_prd_last || | |
3251bdcf | 145 | (bm->cur_addr - bm->addr) >= BMDMA_PAGE_SIZE) { |
a718978e | 146 | return s->sg.size; |
3251bdcf | 147 | } |
f6c11d56 | 148 | pci_dma_read(pci_dev, bm->cur_addr, &prd, 8); |
40a6238a AG |
149 | bm->cur_addr += 8; |
150 | prd.addr = le32_to_cpu(prd.addr); | |
151 | prd.size = le32_to_cpu(prd.size); | |
152 | len = prd.size & 0xfffe; | |
153 | if (len == 0) | |
154 | len = 0x10000; | |
155 | bm->cur_prd_len = len; | |
156 | bm->cur_prd_addr = prd.addr; | |
157 | bm->cur_prd_last = (prd.size & 0x80000000); | |
158 | } | |
159 | l = bm->cur_prd_len; | |
160 | if (l > 0) { | |
a718978e JS |
161 | uint64_t sg_len; |
162 | ||
163 | /* Don't add extra bytes to the SGList; consume any remaining | |
164 | * PRDs from the guest, but ignore them. */ | |
165 | sg_len = MIN(limit - s->sg.size, bm->cur_prd_len); | |
166 | if (sg_len) { | |
167 | qemu_sglist_add(&s->sg, bm->cur_prd_addr, sg_len); | |
168 | } | |
3251bdcf | 169 | |
40a6238a AG |
170 | bm->cur_prd_addr += l; |
171 | bm->cur_prd_len -= l; | |
172 | s->io_buffer_size += l; | |
173 | } | |
174 | } | |
3251bdcf JS |
175 | |
176 | qemu_sglist_destroy(&s->sg); | |
177 | s->io_buffer_size = 0; | |
178 | return -1; | |
40a6238a AG |
179 | } |
180 | ||
181 | /* return 0 if buffer completed */ | |
182 | static int bmdma_rw_buf(IDEDMA *dma, int is_write) | |
183 | { | |
184 | BMDMAState *bm = DO_UPCAST(BMDMAState, dma, dma); | |
185 | IDEState *s = bmdma_active_if(bm); | |
f6c11d56 | 186 | PCIDevice *pci_dev = PCI_DEVICE(bm->pci_dev); |
40a6238a AG |
187 | struct { |
188 | uint32_t addr; | |
189 | uint32_t size; | |
190 | } prd; | |
191 | int l, len; | |
192 | ||
193 | for(;;) { | |
194 | l = s->io_buffer_size - s->io_buffer_index; | |
195 | if (l <= 0) | |
196 | break; | |
197 | if (bm->cur_prd_len == 0) { | |
198 | /* end of table (with a fail safe of one page) */ | |
199 | if (bm->cur_prd_last || | |
200 | (bm->cur_addr - bm->addr) >= BMDMA_PAGE_SIZE) | |
201 | return 0; | |
f6c11d56 | 202 | pci_dma_read(pci_dev, bm->cur_addr, &prd, 8); |
40a6238a AG |
203 | bm->cur_addr += 8; |
204 | prd.addr = le32_to_cpu(prd.addr); | |
205 | prd.size = le32_to_cpu(prd.size); | |
206 | len = prd.size & 0xfffe; | |
207 | if (len == 0) | |
208 | len = 0x10000; | |
209 | bm->cur_prd_len = len; | |
210 | bm->cur_prd_addr = prd.addr; | |
211 | bm->cur_prd_last = (prd.size & 0x80000000); | |
212 | } | |
213 | if (l > bm->cur_prd_len) | |
214 | l = bm->cur_prd_len; | |
215 | if (l > 0) { | |
216 | if (is_write) { | |
f6c11d56 | 217 | pci_dma_write(pci_dev, bm->cur_prd_addr, |
552908fe | 218 | s->io_buffer + s->io_buffer_index, l); |
40a6238a | 219 | } else { |
f6c11d56 | 220 | pci_dma_read(pci_dev, bm->cur_prd_addr, |
552908fe | 221 | s->io_buffer + s->io_buffer_index, l); |
40a6238a AG |
222 | } |
223 | bm->cur_prd_addr += l; | |
224 | bm->cur_prd_len -= l; | |
225 | s->io_buffer_index += l; | |
226 | } | |
227 | } | |
228 | return 1; | |
229 | } | |
230 | ||
0e7ce54c | 231 | static void bmdma_set_inactive(IDEDMA *dma, bool more) |
40a6238a AG |
232 | { |
233 | BMDMAState *bm = DO_UPCAST(BMDMAState, dma, dma); | |
40a6238a | 234 | |
40a6238a | 235 | bm->dma_cb = NULL; |
0e7ce54c PB |
236 | if (more) { |
237 | bm->status |= BM_STATUS_DMAING; | |
238 | } else { | |
239 | bm->status &= ~BM_STATUS_DMAING; | |
240 | } | |
40a6238a AG |
241 | } |
242 | ||
bd8892c4 | 243 | static void bmdma_restart_dma(IDEDMA *dma) |
40a6238a | 244 | { |
40a6238a AG |
245 | BMDMAState *bm = DO_UPCAST(BMDMAState, dma, dma); |
246 | ||
06b95b1e | 247 | bm->cur_addr = bm->addr; |
40a6238a AG |
248 | } |
249 | ||
250 | static void bmdma_cancel(BMDMAState *bm) | |
251 | { | |
252 | if (bm->status & BM_STATUS_DMAING) { | |
253 | /* cancel DMA request */ | |
0e7ce54c | 254 | bmdma_set_inactive(&bm->dma, false); |
40a6238a AG |
255 | } |
256 | } | |
257 | ||
1374bec0 | 258 | static void bmdma_reset(IDEDMA *dma) |
40a6238a AG |
259 | { |
260 | BMDMAState *bm = DO_UPCAST(BMDMAState, dma, dma); | |
261 | ||
3eee2611 | 262 | trace_bmdma_reset(); |
40a6238a AG |
263 | bmdma_cancel(bm); |
264 | bm->cmd = 0; | |
265 | bm->status = 0; | |
266 | bm->addr = 0; | |
267 | bm->cur_addr = 0; | |
268 | bm->cur_prd_last = 0; | |
269 | bm->cur_prd_addr = 0; | |
270 | bm->cur_prd_len = 0; | |
40a6238a AG |
271 | } |
272 | ||
40a6238a AG |
273 | static void bmdma_irq(void *opaque, int n, int level) |
274 | { | |
275 | BMDMAState *bm = opaque; | |
276 | ||
277 | if (!level) { | |
278 | /* pass through lower */ | |
279 | qemu_set_irq(bm->irq, level); | |
280 | return; | |
281 | } | |
282 | ||
1635eecc | 283 | bm->status |= BM_STATUS_INT; |
40a6238a AG |
284 | |
285 | /* trigger the real irq */ | |
286 | qemu_set_irq(bm->irq, level); | |
287 | } | |
288 | ||
a9deb8c6 | 289 | void bmdma_cmd_writeb(BMDMAState *bm, uint32_t val) |
977e1244 | 290 | { |
3eee2611 | 291 | trace_bmdma_cmd_writeb(val); |
c29947bb KW |
292 | |
293 | /* Ignore writes to SSBM if it keeps the old value */ | |
294 | if ((val & BM_CMD_START) != (bm->cmd & BM_CMD_START)) { | |
295 | if (!(val & BM_CMD_START)) { | |
86698a12 | 296 | ide_cancel_dma_sync(idebus_active_if(bm->bus)); |
b39f9612 | 297 | bm->status &= ~BM_STATUS_DMAING; |
c29947bb | 298 | } else { |
b76876e6 | 299 | bm->cur_addr = bm->addr; |
c29947bb KW |
300 | if (!(bm->status & BM_STATUS_DMAING)) { |
301 | bm->status |= BM_STATUS_DMAING; | |
302 | /* start dma transfer if possible */ | |
303 | if (bm->dma_cb) | |
40a6238a | 304 | bm->dma_cb(bmdma_active_if(bm), 0); |
c29947bb | 305 | } |
953844d1 | 306 | } |
977e1244 | 307 | } |
c29947bb KW |
308 | |
309 | bm->cmd = val & 0x09; | |
977e1244 GH |
310 | } |
311 | ||
a8170e5e | 312 | static uint64_t bmdma_addr_read(void *opaque, hwaddr addr, |
a9deb8c6 | 313 | unsigned width) |
977e1244 | 314 | { |
a9deb8c6 | 315 | BMDMAState *bm = opaque; |
9fbef1ac | 316 | uint32_t mask = (1ULL << (width * 8)) - 1; |
a9deb8c6 | 317 | uint64_t data; |
977e1244 | 318 | |
a9deb8c6 | 319 | data = (bm->addr >> (addr * 8)) & mask; |
3eee2611 | 320 | trace_bmdma_addr_read(data); |
a9deb8c6 | 321 | return data; |
977e1244 GH |
322 | } |
323 | ||
a8170e5e | 324 | static void bmdma_addr_write(void *opaque, hwaddr addr, |
a9deb8c6 | 325 | uint64_t data, unsigned width) |
977e1244 | 326 | { |
a9deb8c6 | 327 | BMDMAState *bm = opaque; |
9fbef1ac AK |
328 | int shift = addr * 8; |
329 | uint32_t mask = (1ULL << (width * 8)) - 1; | |
977e1244 | 330 | |
3eee2611 | 331 | trace_bmdma_addr_write(data); |
9fbef1ac AK |
332 | bm->addr &= ~(mask << shift); |
333 | bm->addr |= ((data & mask) << shift) & ~3; | |
977e1244 GH |
334 | } |
335 | ||
a9deb8c6 | 336 | MemoryRegionOps bmdma_addr_ioport_ops = { |
9fbef1ac AK |
337 | .read = bmdma_addr_read, |
338 | .write = bmdma_addr_write, | |
a9deb8c6 | 339 | .endianness = DEVICE_LITTLE_ENDIAN, |
9fbef1ac | 340 | }; |
977e1244 | 341 | |
5ee84c33 JQ |
342 | static bool ide_bmdma_current_needed(void *opaque) |
343 | { | |
344 | BMDMAState *bm = opaque; | |
345 | ||
346 | return (bm->cur_prd_len != 0); | |
347 | } | |
348 | ||
def93791 KW |
349 | static bool ide_bmdma_status_needed(void *opaque) |
350 | { | |
351 | BMDMAState *bm = opaque; | |
352 | ||
353 | /* Older versions abused some bits in the status register for internal | |
354 | * error state. If any of these bits are set, we must add a subsection to | |
355 | * transfer the real status register */ | |
356 | uint8_t abused_bits = BM_MIGRATION_COMPAT_STATUS_BITS; | |
357 | ||
358 | return ((bm->status & abused_bits) != 0); | |
359 | } | |
360 | ||
44b1ff31 | 361 | static int ide_bmdma_pre_save(void *opaque) |
def93791 KW |
362 | { |
363 | BMDMAState *bm = opaque; | |
364 | uint8_t abused_bits = BM_MIGRATION_COMPAT_STATUS_BITS; | |
365 | ||
218fd37c PB |
366 | if (!(bm->status & BM_STATUS_DMAING) && bm->dma_cb) { |
367 | bm->bus->error_status = | |
368 | ide_dma_cmd_to_retry(bmdma_active_if(bm)->dma_cmd); | |
369 | } | |
a96cb236 | 370 | bm->migration_retry_unit = bm->bus->retry_unit; |
dc5d0af4 PB |
371 | bm->migration_retry_sector_num = bm->bus->retry_sector_num; |
372 | bm->migration_retry_nsector = bm->bus->retry_nsector; | |
def93791 KW |
373 | bm->migration_compat_status = |
374 | (bm->status & ~abused_bits) | (bm->bus->error_status & abused_bits); | |
44b1ff31 DDAG |
375 | |
376 | return 0; | |
def93791 KW |
377 | } |
378 | ||
379 | /* This function accesses bm->bus->error_status which is loaded only after | |
380 | * BMDMA itself. This is why the function is called from ide_pci_post_load | |
381 | * instead of being registered with VMState where it would run too early. */ | |
382 | static int ide_bmdma_post_load(void *opaque, int version_id) | |
383 | { | |
384 | BMDMAState *bm = opaque; | |
385 | uint8_t abused_bits = BM_MIGRATION_COMPAT_STATUS_BITS; | |
386 | ||
387 | if (bm->status == 0) { | |
388 | bm->status = bm->migration_compat_status & ~abused_bits; | |
389 | bm->bus->error_status |= bm->migration_compat_status & abused_bits; | |
390 | } | |
a96cb236 | 391 | if (bm->bus->error_status) { |
dc5d0af4 PB |
392 | bm->bus->retry_sector_num = bm->migration_retry_sector_num; |
393 | bm->bus->retry_nsector = bm->migration_retry_nsector; | |
a96cb236 PB |
394 | bm->bus->retry_unit = bm->migration_retry_unit; |
395 | } | |
def93791 KW |
396 | |
397 | return 0; | |
398 | } | |
399 | ||
5ee84c33 JQ |
400 | static const VMStateDescription vmstate_bmdma_current = { |
401 | .name = "ide bmdma_current", | |
402 | .version_id = 1, | |
403 | .minimum_version_id = 1, | |
5cd8cada | 404 | .needed = ide_bmdma_current_needed, |
d49805ae | 405 | .fields = (VMStateField[]) { |
5ee84c33 JQ |
406 | VMSTATE_UINT32(cur_addr, BMDMAState), |
407 | VMSTATE_UINT32(cur_prd_last, BMDMAState), | |
408 | VMSTATE_UINT32(cur_prd_addr, BMDMAState), | |
409 | VMSTATE_UINT32(cur_prd_len, BMDMAState), | |
410 | VMSTATE_END_OF_LIST() | |
411 | } | |
412 | }; | |
413 | ||
06ab66cf | 414 | static const VMStateDescription vmstate_bmdma_status = { |
def93791 KW |
415 | .name ="ide bmdma/status", |
416 | .version_id = 1, | |
417 | .minimum_version_id = 1, | |
5cd8cada | 418 | .needed = ide_bmdma_status_needed, |
d49805ae | 419 | .fields = (VMStateField[]) { |
def93791 KW |
420 | VMSTATE_UINT8(status, BMDMAState), |
421 | VMSTATE_END_OF_LIST() | |
422 | } | |
423 | }; | |
5ee84c33 | 424 | |
407a4f30 JQ |
425 | static const VMStateDescription vmstate_bmdma = { |
426 | .name = "ide bmdma", | |
57338424 | 427 | .version_id = 3, |
407a4f30 | 428 | .minimum_version_id = 0, |
def93791 | 429 | .pre_save = ide_bmdma_pre_save, |
d49805ae | 430 | .fields = (VMStateField[]) { |
407a4f30 | 431 | VMSTATE_UINT8(cmd, BMDMAState), |
def93791 | 432 | VMSTATE_UINT8(migration_compat_status, BMDMAState), |
407a4f30 | 433 | VMSTATE_UINT32(addr, BMDMAState), |
dc5d0af4 PB |
434 | VMSTATE_INT64(migration_retry_sector_num, BMDMAState), |
435 | VMSTATE_UINT32(migration_retry_nsector, BMDMAState), | |
a96cb236 | 436 | VMSTATE_UINT8(migration_retry_unit, BMDMAState), |
407a4f30 | 437 | VMSTATE_END_OF_LIST() |
5ee84c33 | 438 | }, |
5cd8cada JQ |
439 | .subsections = (const VMStateDescription*[]) { |
440 | &vmstate_bmdma_current, | |
441 | &vmstate_bmdma_status, | |
442 | NULL | |
977e1244 | 443 | } |
407a4f30 | 444 | }; |
977e1244 | 445 | |
407a4f30 | 446 | static int ide_pci_post_load(void *opaque, int version_id) |
977e1244 GH |
447 | { |
448 | PCIIDEState *d = opaque; | |
407a4f30 | 449 | int i; |
977e1244 | 450 | |
977e1244 | 451 | for(i = 0; i < 2; i++) { |
407a4f30 JQ |
452 | /* current versions always store 0/1, but older version |
453 | stored bigger values. We only need last bit */ | |
a96cb236 | 454 | d->bmdma[i].migration_retry_unit &= 1; |
def93791 | 455 | ide_bmdma_post_load(&d->bmdma[i], -1); |
977e1244 | 456 | } |
def93791 | 457 | |
977e1244 GH |
458 | return 0; |
459 | } | |
460 | ||
407a4f30 JQ |
461 | const VMStateDescription vmstate_ide_pci = { |
462 | .name = "ide", | |
57338424 | 463 | .version_id = 3, |
407a4f30 | 464 | .minimum_version_id = 0, |
407a4f30 | 465 | .post_load = ide_pci_post_load, |
d49805ae | 466 | .fields = (VMStateField[]) { |
f6c11d56 | 467 | VMSTATE_PCI_DEVICE(parent_obj, PCIIDEState), |
407a4f30 JQ |
468 | VMSTATE_STRUCT_ARRAY(bmdma, PCIIDEState, 2, 0, |
469 | vmstate_bmdma, BMDMAState), | |
470 | VMSTATE_IDE_BUS_ARRAY(bus, PCIIDEState, 2), | |
471 | VMSTATE_IDE_DRIVES(bus[0].ifs, PCIIDEState), | |
472 | VMSTATE_IDE_DRIVES(bus[1].ifs, PCIIDEState), | |
473 | VMSTATE_END_OF_LIST() | |
474 | } | |
475 | }; | |
476 | ||
3e7e1558 | 477 | void pci_ide_create_devs(PCIDevice *dev, DriveInfo **hd_table) |
feef3102 | 478 | { |
f6c11d56 | 479 | PCIIDEState *d = PCI_IDE(dev); |
feef3102 GH |
480 | static const int bus[4] = { 0, 0, 1, 1 }; |
481 | static const int unit[4] = { 0, 1, 0, 1 }; | |
482 | int i; | |
483 | ||
484 | for (i = 0; i < 4; i++) { | |
485 | if (hd_table[i] == NULL) | |
486 | continue; | |
1f850f10 | 487 | ide_create_drive(d->bus+bus[i], unit[i], hd_table[i]); |
feef3102 GH |
488 | } |
489 | } | |
40a6238a AG |
490 | |
491 | static const struct IDEDMAOps bmdma_ops = { | |
492 | .start_dma = bmdma_start_dma, | |
40a6238a AG |
493 | .prepare_buf = bmdma_prepare_buf, |
494 | .rw_buf = bmdma_rw_buf, | |
bd8892c4 | 495 | .restart_dma = bmdma_restart_dma, |
40a6238a | 496 | .set_inactive = bmdma_set_inactive, |
40a6238a AG |
497 | .reset = bmdma_reset, |
498 | }; | |
499 | ||
a9deb8c6 | 500 | void bmdma_init(IDEBus *bus, BMDMAState *bm, PCIIDEState *d) |
40a6238a | 501 | { |
40a6238a AG |
502 | if (bus->dma == &bm->dma) { |
503 | return; | |
504 | } | |
505 | ||
506 | bm->dma.ops = &bmdma_ops; | |
507 | bus->dma = &bm->dma; | |
508 | bm->irq = bus->irq; | |
6e38a4ba | 509 | bus->irq = qemu_allocate_irq(bmdma_irq, bm, 0); |
a9deb8c6 | 510 | bm->pci_dev = d; |
40a6238a | 511 | } |
f6c11d56 AF |
512 | |
513 | static const TypeInfo pci_ide_type_info = { | |
514 | .name = TYPE_PCI_IDE, | |
515 | .parent = TYPE_PCI_DEVICE, | |
516 | .instance_size = sizeof(PCIIDEState), | |
517 | .abstract = true, | |
fd3b02c8 EH |
518 | .interfaces = (InterfaceInfo[]) { |
519 | { INTERFACE_CONVENTIONAL_PCI_DEVICE }, | |
520 | { }, | |
521 | }, | |
f6c11d56 AF |
522 | }; |
523 | ||
524 | static void pci_ide_register_types(void) | |
525 | { | |
526 | type_register_static(&pci_ide_type_info); | |
527 | } | |
528 | ||
529 | type_init(pci_ide_register_types) |