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