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