ide: keep pointer to struct device instead of struct pci_dev in ide_hwif_t
[deliverable/linux.git] / drivers / ide / setup-pci.c
CommitLineData
1da177e4
LT
1/*
2 * linux/drivers/ide/setup-pci.c Version 1.10 2002/08/19
3 *
4 * Copyright (c) 1998-2000 Andre Hedrick <andre@linux-ide.org>
5 *
6 * Copyright (c) 1995-1998 Mark Lord
7 * May be copied or modified under the terms of the GNU General Public License
1da177e4
LT
8 */
9
1da177e4
LT
10#include <linux/module.h>
11#include <linux/types.h>
12#include <linux/kernel.h>
13#include <linux/pci.h>
14#include <linux/init.h>
15#include <linux/timer.h>
16#include <linux/mm.h>
17#include <linux/interrupt.h>
18#include <linux/ide.h>
19#include <linux/dma-mapping.h>
20
21#include <asm/io.h>
22#include <asm/irq.h>
23
24
25/**
26 * ide_match_hwif - match a PCI IDE against an ide_hwif
27 * @io_base: I/O base of device
28 * @bootable: set if its bootable
29 * @name: name of device
30 *
31 * Match a PCI IDE port against an entry in ide_hwifs[],
32 * based on io_base port if possible. Return the matching hwif,
33 * or a new hwif. If we find an error (clashing, out of devices, etc)
34 * return NULL
35 *
36 * FIXME: we need to handle mmio matches here too
37 */
38
39static ide_hwif_t *ide_match_hwif(unsigned long io_base, u8 bootable, const char *name)
40{
41 int h;
42 ide_hwif_t *hwif;
43
44 /*
45 * Look for a hwif with matching io_base specified using
46 * parameters to ide_setup().
47 */
48 for (h = 0; h < MAX_HWIFS; ++h) {
49 hwif = &ide_hwifs[h];
50 if (hwif->io_ports[IDE_DATA_OFFSET] == io_base) {
51 if (hwif->chipset == ide_forced)
52 return hwif; /* a perfect match */
53 }
54 }
55 /*
56 * Look for a hwif with matching io_base default value.
57 * If chipset is "ide_unknown", then claim that hwif slot.
58 * Otherwise, some other chipset has already claimed it.. :(
59 */
60 for (h = 0; h < MAX_HWIFS; ++h) {
61 hwif = &ide_hwifs[h];
62 if (hwif->io_ports[IDE_DATA_OFFSET] == io_base) {
63 if (hwif->chipset == ide_unknown)
64 return hwif; /* match */
65 printk(KERN_ERR "%s: port 0x%04lx already claimed by %s\n",
66 name, io_base, hwif->name);
67 return NULL; /* already claimed */
68 }
69 }
70 /*
71 * Okay, there is no hwif matching our io_base,
72 * so we'll just claim an unassigned slot.
73 * Give preference to claiming other slots before claiming ide0/ide1,
74 * just in case there's another interface yet-to-be-scanned
75 * which uses ports 1f0/170 (the ide0/ide1 defaults).
76 *
77 * Unless there is a bootable card that does not use the standard
78 * ports 1f0/170 (the ide0/ide1 defaults). The (bootable) flag.
79 */
80 if (bootable) {
81 for (h = 0; h < MAX_HWIFS; ++h) {
82 hwif = &ide_hwifs[h];
83 if (hwif->chipset == ide_unknown)
84 return hwif; /* pick an unused entry */
85 }
86 } else {
87 for (h = 2; h < MAX_HWIFS; ++h) {
88 hwif = ide_hwifs + h;
89 if (hwif->chipset == ide_unknown)
90 return hwif; /* pick an unused entry */
91 }
92 }
83d7dbc4 93 for (h = 0; h < 2 && h < MAX_HWIFS; ++h) {
1da177e4
LT
94 hwif = ide_hwifs + h;
95 if (hwif->chipset == ide_unknown)
96 return hwif; /* pick an unused entry */
97 }
98 printk(KERN_ERR "%s: too many IDE interfaces, no room in table\n", name);
99 return NULL;
100}
101
102/**
103 * ide_setup_pci_baseregs - place a PCI IDE controller native
104 * @dev: PCI device of interface to switch native
105 * @name: Name of interface
106 *
107 * We attempt to place the PCI interface into PCI native mode. If
108 * we succeed the BARs are ok and the controller is in PCI mode.
109 * Returns 0 on success or an errno code.
110 *
111 * FIXME: if we program the interface and then fail to set the BARS
112 * we don't switch it back to legacy mode. Do we actually care ??
113 */
114
115static int ide_setup_pci_baseregs (struct pci_dev *dev, const char *name)
116{
117 u8 progif = 0;
118
119 /*
120 * Place both IDE interfaces into PCI "native" mode:
121 */
122 if (pci_read_config_byte(dev, PCI_CLASS_PROG, &progif) ||
123 (progif & 5) != 5) {
124 if ((progif & 0xa) != 0xa) {
125 printk(KERN_INFO "%s: device not capable of full "
126 "native PCI mode\n", name);
127 return -EOPNOTSUPP;
128 }
129 printk("%s: placing both ports into native PCI mode\n", name);
130 (void) pci_write_config_byte(dev, PCI_CLASS_PROG, progif|5);
131 if (pci_read_config_byte(dev, PCI_CLASS_PROG, &progif) ||
132 (progif & 5) != 5) {
133 printk(KERN_ERR "%s: rewrite of PROGIF failed, wanted "
134 "0x%04x, got 0x%04x\n",
135 name, progif|5, progif);
136 return -EOPNOTSUPP;
137 }
138 }
139 return 0;
140}
141
142#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
8ac2b42a
BZ
143static void ide_pci_clear_simplex(unsigned long dma_base, const char *name)
144{
145 u8 dma_stat = inb(dma_base + 2);
146
147 outb(dma_stat & 0x60, dma_base + 2);
148 dma_stat = inb(dma_base + 2);
149 if (dma_stat & 0x80)
150 printk(KERN_INFO "%s: simplex device: DMA forced\n", name);
151}
152
1da177e4
LT
153/**
154 * ide_get_or_set_dma_base - setup BMIBA
039788e1
BZ
155 * @d: IDE port info
156 * @hwif: IDE interface
1da177e4 157 *
c58e79dd
BZ
158 * Fetch the DMA Bus-Master-I/O-Base-Address (BMIBA) from PCI space.
159 * Where a device has a partner that is already in DMA mode we check
160 * and enforce IDE simplex rules.
1da177e4
LT
161 */
162
85620436 163static unsigned long ide_get_or_set_dma_base(const struct ide_port_info *d, ide_hwif_t *hwif)
1da177e4 164{
36501650
BZ
165 struct pci_dev *dev = to_pci_dev(hwif->dev);
166 unsigned long dma_base = 0;
8ac2b42a 167 u8 dma_stat = 0;
1da177e4 168
1da177e4
LT
169 if (hwif->mmio)
170 return hwif->dma_base;
171
172 if (hwif->mate && hwif->mate->dma_base) {
173 dma_base = hwif->mate->dma_base - (hwif->channel ? 0 : 8);
174 } else {
9ffcf364
BZ
175 u8 baridx = (d->host_flags & IDE_HFLAG_CS5520) ? 2 : 4;
176
177 dma_base = pci_resource_start(dev, baridx);
178
aea5d375 179 if (dma_base == 0) {
9ffcf364 180 printk(KERN_ERR "%s: DMA base is invalid\n", d->name);
aea5d375
BZ
181 return 0;
182 }
1da177e4
LT
183 }
184
aea5d375
BZ
185 if (hwif->channel)
186 dma_base += 8;
187
8ac2b42a
BZ
188 if (d->host_flags & IDE_HFLAG_CS5520)
189 goto out;
190
191 if (d->host_flags & IDE_HFLAG_CLEAR_SIMPLEX) {
192 ide_pci_clear_simplex(dma_base, d->name);
193 goto out;
194 }
195
196 /*
197 * If the device claims "simplex" DMA, this means that only one of
198 * the two interfaces can be trusted with DMA at any point in time
199 * (so we should enable DMA only on one of the two interfaces).
200 *
201 * FIXME: At this point we haven't probed the drives so we can't make
202 * the appropriate decision. Really we should defer this problem until
203 * we tune the drive then try to grab DMA ownership if we want to be
204 * the DMA end. This has to be become dynamic to handle hot-plug.
205 */
206 dma_stat = hwif->INB(dma_base + 2);
207 if ((dma_stat & 0x80) && hwif->mate && hwif->mate->dma_base) {
208 printk(KERN_INFO "%s: simplex device: DMA disabled\n", d->name);
209 dma_base = 0;
1da177e4 210 }
8ac2b42a 211out:
1da177e4
LT
212 return dma_base;
213}
214#endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
215
85620436 216void ide_setup_pci_noise(struct pci_dev *dev, const struct ide_port_info *d)
1da177e4 217{
bde07e5e
BZ
218 printk(KERN_INFO "%s: IDE controller (0x%04x:0x%04x rev 0x%02x) at "
219 " PCI slot %s\n", d->name, dev->vendor, dev->device,
220 dev->revision, pci_name(dev));
1da177e4
LT
221}
222
223EXPORT_SYMBOL_GPL(ide_setup_pci_noise);
224
225
226/**
227 * ide_pci_enable - do PCI enables
228 * @dev: PCI device
039788e1 229 * @d: IDE port info
1da177e4
LT
230 *
231 * Enable the IDE PCI device. We attempt to enable the device in full
232 * but if that fails then we only need BAR4 so we will enable that.
233 *
234 * Returns zero on success or an error code
235 */
039788e1 236
85620436 237static int ide_pci_enable(struct pci_dev *dev, const struct ide_port_info *d)
1da177e4
LT
238{
239 int ret;
240
241 if (pci_enable_device(dev)) {
242 ret = pci_enable_device_bars(dev, 1 << 4);
243 if (ret < 0) {
244 printk(KERN_WARNING "%s: (ide_setup_pci_device:) "
245 "Could not enable device.\n", d->name);
246 goto out;
247 }
248 printk(KERN_WARNING "%s: BIOS configuration fixed.\n", d->name);
249 }
250
251 /*
039788e1
BZ
252 * assume all devices can do 32-bit DMA for now, we can add
253 * a DMA mask field to the struct ide_port_info if we need it
254 * (or let lower level driver set the DMA mask)
1da177e4
LT
255 */
256 ret = pci_set_dma_mask(dev, DMA_32BIT_MASK);
257 if (ret < 0) {
258 printk(KERN_ERR "%s: can't set dma mask\n", d->name);
259 goto out;
260 }
261
262 /* FIXME: Temporary - until we put in the hotplug interface logic
263 Check that the bits we want are not in use by someone else. */
264 ret = pci_request_region(dev, 4, "ide_tmp");
265 if (ret < 0)
266 goto out;
267
268 pci_release_region(dev, 4);
269out:
270 return ret;
271}
272
273/**
274 * ide_pci_configure - configure an unconfigured device
275 * @dev: PCI device
039788e1 276 * @d: IDE port info
1da177e4
LT
277 *
278 * Enable and configure the PCI device we have been passed.
279 * Returns zero on success or an error code.
280 */
039788e1 281
85620436 282static int ide_pci_configure(struct pci_dev *dev, const struct ide_port_info *d)
1da177e4
LT
283{
284 u16 pcicmd = 0;
285 /*
286 * PnP BIOS was *supposed* to have setup this device, but we
287 * can do it ourselves, so long as the BIOS has assigned an IRQ
288 * (or possibly the device is using a "legacy header" for IRQs).
289 * Maybe the user deliberately *disabled* the device,
290 * but we'll eventually ignore it again if no drives respond.
291 */
292 if (ide_setup_pci_baseregs(dev, d->name) || pci_write_config_word(dev, PCI_COMMAND, pcicmd|PCI_COMMAND_IO))
293 {
294 printk(KERN_INFO "%s: device disabled (BIOS)\n", d->name);
295 return -ENODEV;
296 }
297 if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd)) {
298 printk(KERN_ERR "%s: error accessing PCI regs\n", d->name);
299 return -EIO;
300 }
301 if (!(pcicmd & PCI_COMMAND_IO)) {
302 printk(KERN_ERR "%s: unable to enable IDE controller\n", d->name);
303 return -ENXIO;
304 }
305 return 0;
306}
307
308/**
309 * ide_pci_check_iomem - check a register is I/O
039788e1
BZ
310 * @dev: PCI device
311 * @d: IDE port info
312 * @bar: BAR number
1da177e4
LT
313 *
314 * Checks if a BAR is configured and points to MMIO space. If so
315 * print an error and return an error code. Otherwise return 0
316 */
039788e1 317
85620436 318static int ide_pci_check_iomem(struct pci_dev *dev, const struct ide_port_info *d, int bar)
1da177e4
LT
319{
320 ulong flags = pci_resource_flags(dev, bar);
321
322 /* Unconfigured ? */
323 if (!flags || pci_resource_len(dev, bar) == 0)
324 return 0;
325
326 /* I/O space */
327 if(flags & PCI_BASE_ADDRESS_IO_MASK)
328 return 0;
329
330 /* Bad */
331 printk(KERN_ERR "%s: IO baseregs (BIOS) are reported "
332 "as MEM, report to "
333 "<andre@linux-ide.org>.\n", d->name);
334 return -EINVAL;
335}
336
337/**
338 * ide_hwif_configure - configure an IDE interface
339 * @dev: PCI device holding interface
039788e1 340 * @d: IDE port info
1da177e4
LT
341 * @mate: Paired interface if any
342 *
343 * Perform the initial set up for the hardware interface structure. This
344 * is done per interface port rather than per PCI device. There may be
345 * more than one port per device.
346 *
347 * Returns the new hardware interface structure, or NULL on a failure
348 */
039788e1 349
85620436 350static ide_hwif_t *ide_hwif_configure(struct pci_dev *dev, const struct ide_port_info *d, ide_hwif_t *mate, int port, int irq)
1da177e4
LT
351{
352 unsigned long ctl = 0, base = 0;
353 ide_hwif_t *hwif;
7cab14a7 354 u8 bootable = (d->host_flags & IDE_HFLAG_BOOTABLE) ? 1 : 0;
79127c37
BZ
355 u8 oldnoprobe = 0;
356 struct hw_regs_s hw;
1da177e4 357
a5d8c5c8 358 if ((d->host_flags & IDE_HFLAG_ISA_PORTS) == 0) {
1da177e4
LT
359 /* Possibly we should fail if these checks report true */
360 ide_pci_check_iomem(dev, d, 2*port);
361 ide_pci_check_iomem(dev, d, 2*port+1);
362
363 ctl = pci_resource_start(dev, 2*port+1);
364 base = pci_resource_start(dev, 2*port);
365 if ((ctl && !base) || (base && !ctl)) {
366 printk(KERN_ERR "%s: inconsistent baseregs (BIOS) "
367 "for port %d, skipping\n", d->name, port);
368 return NULL;
369 }
370 }
371 if (!ctl)
372 {
373 /* Use default values */
374 ctl = port ? 0x374 : 0x3f4;
375 base = port ? 0x170 : 0x1f0;
376 }
7cab14a7 377 if ((hwif = ide_match_hwif(base, bootable, d->name)) == NULL)
1da177e4 378 return NULL; /* no room in ide_hwifs[] */
79127c37
BZ
379
380 memset(&hw, 0, sizeof(hw));
381 hw.irq = hwif->irq ? hwif->irq : irq;
382 hw.dev = &dev->dev;
383 hw.chipset = d->chipset ? d->chipset : ide_pci;
384 ide_std_init_ports(&hw, base, ctl | 2);
385
386 if (hwif->io_ports[IDE_DATA_OFFSET] == base &&
387 hwif->io_ports[IDE_CONTROL_OFFSET] == (ctl | 2))
388 oldnoprobe = hwif->noprobe;
389
390 ide_init_port_hw(hwif, &hw);
391
392 hwif->noprobe = oldnoprobe;
393
36501650 394 hwif->dev = &dev->dev;
039788e1 395 hwif->cds = d;
1da177e4
LT
396 hwif->channel = port;
397
1da177e4
LT
398 if (mate) {
399 hwif->mate = mate;
400 mate->mate = hwif;
401 }
402 return hwif;
403}
404
405/**
406 * ide_hwif_setup_dma - configure DMA interface
407 * @dev: PCI device
039788e1
BZ
408 * @d: IDE port info
409 * @hwif: IDE interface
1da177e4
LT
410 *
411 * Set up the DMA base for the interface. Enable the master bits as
412 * necessary and attempt to bring the device DMA into a ready to use
413 * state
414 */
039788e1 415
85620436 416static void ide_hwif_setup_dma(struct pci_dev *dev, const struct ide_port_info *d, ide_hwif_t *hwif)
1da177e4 417{
039788e1 418#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
1da177e4 419 u16 pcicmd;
47b68788 420
1da177e4
LT
421 pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
422
47b68788 423 if ((d->host_flags & IDE_HFLAG_NO_AUTODMA) == 0 ||
1da177e4
LT
424 ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE &&
425 (dev->class & 0x80))) {
9ffcf364 426 unsigned long dma_base = ide_get_or_set_dma_base(d, hwif);
1da177e4
LT
427 if (dma_base && !(pcicmd & PCI_COMMAND_MASTER)) {
428 /*
429 * Set up BM-DMA capability
430 * (PnP BIOS should have done this)
431 */
1da177e4
LT
432 pci_set_master(dev);
433 if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd) || !(pcicmd & PCI_COMMAND_MASTER)) {
434 printk(KERN_ERR "%s: %s error updating PCICMD\n",
435 hwif->name, d->name);
436 dma_base = 0;
437 }
438 }
439 if (dma_base) {
440 if (d->init_dma) {
441 d->init_dma(hwif, dma_base);
442 } else {
ecf32796 443 ide_setup_dma(hwif, dma_base);
1da177e4
LT
444 }
445 } else {
446 printk(KERN_INFO "%s: %s Bus-Master DMA disabled "
447 "(BIOS)\n", hwif->name, d->name);
448 }
449 }
1da177e4 450#endif /* CONFIG_BLK_DEV_IDEDMA_PCI*/
039788e1 451}
1da177e4
LT
452
453/**
454 * ide_setup_pci_controller - set up IDE PCI
455 * @dev: PCI device
039788e1 456 * @d: IDE port info
1da177e4
LT
457 * @noisy: verbose flag
458 * @config: returned as 1 if we configured the hardware
459 *
460 * Set up the PCI and controller side of the IDE interface. This brings
461 * up the PCI side of the device, checks that the device is enabled
462 * and enables it if need be
463 */
039788e1 464
85620436 465static int ide_setup_pci_controller(struct pci_dev *dev, const struct ide_port_info *d, int noisy, int *config)
1da177e4
LT
466{
467 int ret;
1da177e4
LT
468 u16 pcicmd;
469
470 if (noisy)
471 ide_setup_pci_noise(dev, d);
472
473 ret = ide_pci_enable(dev, d);
474 if (ret < 0)
475 goto out;
476
477 ret = pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
478 if (ret < 0) {
479 printk(KERN_ERR "%s: error accessing PCI regs\n", d->name);
480 goto out;
481 }
482 if (!(pcicmd & PCI_COMMAND_IO)) { /* is device disabled? */
483 ret = ide_pci_configure(dev, d);
484 if (ret < 0)
485 goto out;
486 *config = 1;
487 printk(KERN_INFO "%s: device enabled (Linux)\n", d->name);
488 }
489
1da177e4
LT
490out:
491 return ret;
492}
493
494/**
495 * ide_pci_setup_ports - configure ports/devices on PCI IDE
496 * @dev: PCI device
039788e1 497 * @d: IDE port info
1da177e4 498 * @pciirq: IRQ line
8447d9d5 499 * @idx: ATA index table to update
1da177e4
LT
500 *
501 * Scan the interfaces attached to this device and do any
502 * necessary per port setup. Attach the devices and ask the
503 * generic DMA layer to do its work for us.
504 *
505 * Normally called automaticall from do_ide_pci_setup_device,
506 * but is also used directly as a helper function by some controllers
507 * where the chipset setup is not the default PCI IDE one.
508 */
8447d9d5 509
85620436 510void ide_pci_setup_ports(struct pci_dev *dev, const struct ide_port_info *d, int pciirq, u8 *idx)
1da177e4 511{
a5d8c5c8 512 int channels = (d->host_flags & IDE_HFLAG_SINGLE) ? 1 : 2, port;
1da177e4 513 ide_hwif_t *hwif, *mate = NULL;
1da177e4
LT
514 u8 tmp;
515
1da177e4
LT
516 /*
517 * Set up the IDE ports
518 */
cf6e854e 519
a5d8c5c8 520 for (port = 0; port < channels; ++port) {
85620436
BZ
521 const ide_pci_enablebit_t *e = &(d->enablebits[port]);
522
1da177e4 523 if (e->reg && (pci_read_config_byte(dev, e->reg, &tmp) ||
cf6e854e
BZ
524 (tmp & e->mask) != e->val)) {
525 printk(KERN_INFO "%s: IDE port disabled\n", d->name);
1da177e4 526 continue; /* port not enabled */
cf6e854e 527 }
1da177e4 528
1da177e4
LT
529 if ((hwif = ide_hwif_configure(dev, d, mate, port, pciirq)) == NULL)
530 continue;
531
8447d9d5 532 *(idx + port) = hwif->index;
1da177e4 533
1da177e4
LT
534 if (d->init_iops)
535 d->init_iops(hwif);
536
9ffcf364 537 if ((d->host_flags & IDE_HFLAG_NO_DMA) == 0)
1da177e4 538 ide_hwif_setup_dma(dev, d, hwif);
9ffcf364 539
8acf28c0
BZ
540 if ((!hwif->irq && (d->host_flags & IDE_HFLAG_LEGACY_IRQS)) ||
541 (d->host_flags & IDE_HFLAG_FORCE_LEGACY_IRQS))
3985ee3b
BZ
542 hwif->irq = port ? 15 : 14;
543
6a824c92 544 hwif->host_flags = d->host_flags;
4099d143 545 hwif->pio_mask = d->pio_mask;
6a824c92 546
1c51361a
BZ
547 if ((d->host_flags & IDE_HFLAG_SERIALIZE) && hwif->mate)
548 hwif->mate->serialized = hwif->serialized = 1;
549
caea7602
BZ
550 if (d->host_flags & IDE_HFLAG_IO_32BIT) {
551 hwif->drives[0].io_32bit = 1;
552 hwif->drives[1].io_32bit = 1;
553 }
554
555 if (d->host_flags & IDE_HFLAG_UNMASK_IRQS) {
556 hwif->drives[0].unmask = 1;
557 hwif->drives[1].unmask = 1;
558 }
559
5f8b6c34
BZ
560 if (hwif->dma_base) {
561 hwif->swdma_mask = d->swdma_mask;
562 hwif->mwdma_mask = d->mwdma_mask;
563 hwif->ultra_mask = d->udma_mask;
564 }
565
85ad93ad
BZ
566 hwif->drives[0].autotune = 1;
567 hwif->drives[1].autotune = 1;
568
272a3709
BZ
569 if (d->host_flags & IDE_HFLAG_RQSIZE_256)
570 hwif->rqsize = 256;
571
1da177e4
LT
572 if (d->init_hwif)
573 /* Call chipset-specific routine
574 * for each enabled hwif
575 */
576 d->init_hwif(hwif);
577
578 mate = hwif;
1da177e4 579 }
1da177e4
LT
580}
581
582EXPORT_SYMBOL_GPL(ide_pci_setup_ports);
583
584/*
585 * ide_setup_pci_device() looks at the primary/secondary interfaces
586 * on a PCI IDE device and, if they are enabled, prepares the IDE driver
587 * for use with them. This generic code works for most PCI chipsets.
588 *
589 * One thing that is not standardized is the location of the
590 * primary/secondary interface "enable/disable" bits. For chipsets that
039788e1 591 * we "know" about, this information is in the struct ide_port_info;
1da177e4
LT
592 * for all other chipsets, we just assume both interfaces are enabled.
593 */
039788e1 594static int do_ide_setup_pci_device(struct pci_dev *dev,
85620436 595 const struct ide_port_info *d,
8447d9d5 596 u8 *idx, u8 noisy)
1da177e4 597{
1da177e4
LT
598 int tried_config = 0;
599 int pciirq, ret;
600
601 ret = ide_setup_pci_controller(dev, d, noisy, &tried_config);
602 if (ret < 0)
603 goto out;
604
605 /*
606 * Can we trust the reported IRQ?
607 */
608 pciirq = dev->irq;
609
610 /* Is it an "IDE storage" device in non-PCI mode? */
611 if ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE && (dev->class & 5) != 5) {
612 if (noisy)
613 printk(KERN_INFO "%s: not 100%% native mode: "
614 "will probe irqs later\n", d->name);
615 /*
616 * This allows offboard ide-pci cards the enable a BIOS,
617 * verify interrupt settings of split-mirror pci-config
618 * space, place chipset into init-mode, and/or preserve
619 * an interrupt if the card is not native ide support.
620 */
621 ret = d->init_chipset ? d->init_chipset(dev, d->name) : 0;
622 if (ret < 0)
623 goto out;
624 pciirq = ret;
625 } else if (tried_config) {
626 if (noisy)
627 printk(KERN_INFO "%s: will probe irqs later\n", d->name);
628 pciirq = 0;
629 } else if (!pciirq) {
630 if (noisy)
631 printk(KERN_WARNING "%s: bad irq (%d): will probe later\n",
632 d->name, pciirq);
633 pciirq = 0;
634 } else {
635 if (d->init_chipset) {
636 ret = d->init_chipset(dev, d->name);
637 if (ret < 0)
638 goto out;
639 }
640 if (noisy)
1da177e4
LT
641 printk(KERN_INFO "%s: 100%% native mode on irq %d\n",
642 d->name, pciirq);
1da177e4
LT
643 }
644
645 /* FIXME: silent failure can happen */
646
8447d9d5 647 ide_pci_setup_ports(dev, d, pciirq, idx);
1da177e4
LT
648out:
649 return ret;
650}
651
85620436 652int ide_setup_pci_device(struct pci_dev *dev, const struct ide_port_info *d)
1da177e4 653{
8447d9d5 654 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
1da177e4
LT
655 int ret;
656
8447d9d5 657 ret = do_ide_setup_pci_device(dev, d, &idx[0], 1);
1da177e4 658
8447d9d5
BZ
659 if (ret >= 0)
660 ide_device_add(idx);
1da177e4 661
1da177e4
LT
662 return ret;
663}
664
665EXPORT_SYMBOL_GPL(ide_setup_pci_device);
666
667int ide_setup_pci_devices(struct pci_dev *dev1, struct pci_dev *dev2,
85620436 668 const struct ide_port_info *d)
1da177e4
LT
669{
670 struct pci_dev *pdev[] = { dev1, dev2 };
1da177e4 671 int ret, i;
8447d9d5 672 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
1da177e4
LT
673
674 for (i = 0; i < 2; i++) {
8447d9d5 675 ret = do_ide_setup_pci_device(pdev[i], d, &idx[i*2], !i);
1da177e4
LT
676 /*
677 * FIXME: Mom, mom, they stole me the helper function to undo
678 * do_ide_setup_pci_device() on the first device!
679 */
680 if (ret < 0)
681 goto out;
682 }
683
8447d9d5 684 ide_device_add(idx);
1da177e4
LT
685out:
686 return ret;
687}
688
689EXPORT_SYMBOL_GPL(ide_setup_pci_devices);
This page took 0.369641 seconds and 5 git commands to generate.