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