blob: 8ff5a0ef10adc35bc4e50c7dc4892b03fcf91617 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01002 * Copyright (C) 1998-2000 Andre Hedrick <andre@linux-ide.org>
3 * Copyright (C) 1995-1998 Mark Lord
4 * Copyright (C) 2007 Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz58f189f2008-02-01 23:09:33 +01005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * May be copied or modified under the terms of the GNU General Public License
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#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
38static 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 Mackall83d7dbc2006-10-03 01:14:16 -070092 for (h = 0; h < 2 && h < MAX_HWIFS; ++h) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 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
114static 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 Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100142static 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 Torvalds1da177e2005-04-16 15:20:36 -0700152/**
153 * ide_get_or_set_dma_base - setup BMIBA
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200154 * @d: IDE port info
155 * @hwif: IDE interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 *
Bartlomiej Zolnierkiewiczc58e79d2007-10-16 22:29:56 +0200157 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700160 */
161
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200162static unsigned long ide_get_or_set_dma_base(const struct ide_port_info *d, ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100164 struct pci_dev *dev = to_pci_dev(hwif->dev);
165 unsigned long dma_base = 0;
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100166 u8 dma_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 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 Zolnierkiewicz9ffcf362007-10-19 00:30:07 +0200174 u8 baridx = (d->host_flags & IDE_HFLAG_CS5520) ? 2 : 4;
175
176 dma_base = pci_resource_start(dev, baridx);
177
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +0100178 if (dma_base == 0) {
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +0200179 printk(KERN_ERR "%s: DMA base is invalid\n", d->name);
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +0100180 return 0;
181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
183
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +0100184 if (hwif->channel)
185 dma_base += 8;
186
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100187 if (d->host_flags & IDE_HFLAG_CS5520)
188 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100190 if (d->host_flags & IDE_HFLAG_CLEAR_SIMPLEX) {
191 ide_pci_clear_simplex(dma_base, d->name);
192 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100194
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 }
210out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return dma_base;
212}
213#endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
214
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200215void ide_setup_pci_noise(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Bartlomiej Zolnierkiewiczbde07e52007-10-20 00:32:36 +0200217 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 Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
222EXPORT_SYMBOL_GPL(ide_setup_pci_noise);
223
224
225/**
226 * ide_pci_enable - do PCI enables
227 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200228 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 *
230 * Enable the IDE PCI device. We attempt to enable the device in full
231 * but if that fails then we only need BAR4 so we will enable that.
232 *
233 * Returns zero on success or an error code
234 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200235
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200236static int ide_pci_enable(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
238 int ret;
239
240 if (pci_enable_device(dev)) {
241 ret = pci_enable_device_bars(dev, 1 << 4);
242 if (ret < 0) {
243 printk(KERN_WARNING "%s: (ide_setup_pci_device:) "
244 "Could not enable device.\n", d->name);
245 goto out;
246 }
247 printk(KERN_WARNING "%s: BIOS configuration fixed.\n", d->name);
248 }
249
250 /*
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200251 * assume all devices can do 32-bit DMA for now, we can add
252 * a DMA mask field to the struct ide_port_info if we need it
253 * (or let lower level driver set the DMA mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 */
255 ret = pci_set_dma_mask(dev, DMA_32BIT_MASK);
256 if (ret < 0) {
257 printk(KERN_ERR "%s: can't set dma mask\n", d->name);
258 goto out;
259 }
260
261 /* FIXME: Temporary - until we put in the hotplug interface logic
262 Check that the bits we want are not in use by someone else. */
263 ret = pci_request_region(dev, 4, "ide_tmp");
264 if (ret < 0)
265 goto out;
266
267 pci_release_region(dev, 4);
268out:
269 return ret;
270}
271
272/**
273 * ide_pci_configure - configure an unconfigured device
274 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200275 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 *
277 * Enable and configure the PCI device we have been passed.
278 * Returns zero on success or an error code.
279 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200280
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200281static int ide_pci_configure(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 u16 pcicmd = 0;
284 /*
285 * PnP BIOS was *supposed* to have setup this device, but we
286 * can do it ourselves, so long as the BIOS has assigned an IRQ
287 * (or possibly the device is using a "legacy header" for IRQs).
288 * Maybe the user deliberately *disabled* the device,
289 * but we'll eventually ignore it again if no drives respond.
290 */
291 if (ide_setup_pci_baseregs(dev, d->name) || pci_write_config_word(dev, PCI_COMMAND, pcicmd|PCI_COMMAND_IO))
292 {
293 printk(KERN_INFO "%s: device disabled (BIOS)\n", d->name);
294 return -ENODEV;
295 }
296 if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd)) {
297 printk(KERN_ERR "%s: error accessing PCI regs\n", d->name);
298 return -EIO;
299 }
300 if (!(pcicmd & PCI_COMMAND_IO)) {
301 printk(KERN_ERR "%s: unable to enable IDE controller\n", d->name);
302 return -ENXIO;
303 }
304 return 0;
305}
306
307/**
308 * ide_pci_check_iomem - check a register is I/O
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200309 * @dev: PCI device
310 * @d: IDE port info
311 * @bar: BAR number
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 *
313 * Checks if a BAR is configured and points to MMIO space. If so
314 * print an error and return an error code. Otherwise return 0
315 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200316
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200317static int ide_pci_check_iomem(struct pci_dev *dev, const struct ide_port_info *d, int bar)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 ulong flags = pci_resource_flags(dev, bar);
320
321 /* Unconfigured ? */
322 if (!flags || pci_resource_len(dev, bar) == 0)
323 return 0;
324
325 /* I/O space */
326 if(flags & PCI_BASE_ADDRESS_IO_MASK)
327 return 0;
328
329 /* Bad */
330 printk(KERN_ERR "%s: IO baseregs (BIOS) are reported "
331 "as MEM, report to "
332 "<andre@linux-ide.org>.\n", d->name);
333 return -EINVAL;
334}
335
336/**
337 * ide_hwif_configure - configure an IDE interface
338 * @dev: PCI device holding interface
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200339 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 * @mate: Paired interface if any
341 *
342 * Perform the initial set up for the hardware interface structure. This
343 * is done per interface port rather than per PCI device. There may be
344 * more than one port per device.
345 *
346 * Returns the new hardware interface structure, or NULL on a failure
347 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200348
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200349static ide_hwif_t *ide_hwif_configure(struct pci_dev *dev, const struct ide_port_info *d, ide_hwif_t *mate, int port, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
351 unsigned long ctl = 0, base = 0;
352 ide_hwif_t *hwif;
Bartlomiej Zolnierkiewicz7cab14a2007-10-19 00:30:06 +0200353 u8 bootable = (d->host_flags & IDE_HFLAG_BOOTABLE) ? 1 : 0;
Bartlomiej Zolnierkiewicz79127c32008-01-26 20:13:08 +0100354 u8 oldnoprobe = 0;
355 struct hw_regs_s hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200357 if ((d->host_flags & IDE_HFLAG_ISA_PORTS) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 /* Possibly we should fail if these checks report true */
359 ide_pci_check_iomem(dev, d, 2*port);
360 ide_pci_check_iomem(dev, d, 2*port+1);
361
362 ctl = pci_resource_start(dev, 2*port+1);
363 base = pci_resource_start(dev, 2*port);
364 if ((ctl && !base) || (base && !ctl)) {
365 printk(KERN_ERR "%s: inconsistent baseregs (BIOS) "
366 "for port %d, skipping\n", d->name, port);
367 return NULL;
368 }
369 }
370 if (!ctl)
371 {
372 /* Use default values */
373 ctl = port ? 0x374 : 0x3f4;
374 base = port ? 0x170 : 0x1f0;
375 }
Bartlomiej Zolnierkiewicz7cab14a2007-10-19 00:30:06 +0200376 if ((hwif = ide_match_hwif(base, bootable, d->name)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return NULL; /* no room in ide_hwifs[] */
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200378
Bartlomiej Zolnierkiewicz79127c32008-01-26 20:13:08 +0100379 memset(&hw, 0, sizeof(hw));
380 hw.irq = hwif->irq ? hwif->irq : irq;
381 hw.dev = &dev->dev;
382 hw.chipset = d->chipset ? d->chipset : ide_pci;
383 ide_std_init_ports(&hw, base, ctl | 2);
384
385 if (hwif->io_ports[IDE_DATA_OFFSET] == base &&
386 hwif->io_ports[IDE_CONTROL_OFFSET] == (ctl | 2))
387 oldnoprobe = hwif->noprobe;
388
389 ide_init_port_hw(hwif, &hw);
390
391 hwif->noprobe = oldnoprobe;
392
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100393 hwif->dev = &dev->dev;
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200394 hwif->cds = d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 hwif->channel = port;
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (mate) {
398 hwif->mate = mate;
399 mate->mate = hwif;
400 }
401 return hwif;
402}
403
404/**
405 * ide_hwif_setup_dma - configure DMA interface
406 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200407 * @d: IDE port info
408 * @hwif: IDE interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 *
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 Zolnierkiewicz039788e2007-10-20 00:32:34 +0200414
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200415static void ide_hwif_setup_dma(struct pci_dev *dev, const struct ide_port_info *d, ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200417#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 u16 pcicmd;
Bartlomiej Zolnierkiewicz47b68782007-10-19 00:30:06 +0200419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
421
Bartlomiej Zolnierkiewicz47b68782007-10-19 00:30:06 +0200422 if ((d->host_flags & IDE_HFLAG_NO_AUTODMA) == 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE &&
424 (dev->class & 0x80))) {
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +0200425 unsigned long dma_base = ide_get_or_set_dma_base(d, hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 if (dma_base && !(pcicmd & PCI_COMMAND_MASTER)) {
427 /*
428 * Set up BM-DMA capability
429 * (PnP BIOS should have done this)
430 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 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 Shtylyovecf327962008-02-01 23:09:30 +0100442 ide_setup_dma(hwif, dma_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
444 } else {
445 printk(KERN_INFO "%s: %s Bus-Master DMA disabled "
446 "(BIOS)\n", hwif->name, d->name);
447 }
448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449#endif /* CONFIG_BLK_DEV_IDEDMA_PCI*/
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200450}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452/**
453 * ide_setup_pci_controller - set up IDE PCI
454 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200455 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 * @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 Zolnierkiewicz039788e2007-10-20 00:32:34 +0200463
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200464static int ide_setup_pci_controller(struct pci_dev *dev, const struct ide_port_info *d, int noisy, int *config)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
466 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 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 Torvalds1da177e2005-04-16 15:20:36 -0700489out:
490 return ret;
491}
492
493/**
494 * ide_pci_setup_ports - configure ports/devices on PCI IDE
495 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200496 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 * @pciirq: IRQ line
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200498 * @idx: ATA index table to update
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 *
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 Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200508
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200509void ide_pci_setup_ports(struct pci_dev *dev, const struct ide_port_info *d, int pciirq, u8 *idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200511 int channels = (d->host_flags & IDE_HFLAG_SINGLE) ? 1 : 2, port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 ide_hwif_t *hwif, *mate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 u8 tmp;
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 /*
516 * Set up the IDE ports
517 */
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200518
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200519 for (port = 0; port < channels; ++port) {
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200520 const ide_pci_enablebit_t *e = &(d->enablebits[port]);
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (e->reg && (pci_read_config_byte(dev, e->reg, &tmp) ||
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200523 (tmp & e->mask) != e->val)) {
524 printk(KERN_INFO "%s: IDE port disabled\n", d->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 continue; /* port not enabled */
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if ((hwif = ide_hwif_configure(dev, d, mate, port, pciirq)) == NULL)
529 continue;
530
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200531 *(idx + port) = hwif->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (d->init_iops)
534 d->init_iops(hwif);
535
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +0200536 if ((d->host_flags & IDE_HFLAG_NO_DMA) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 ide_hwif_setup_dma(dev, d, hwif);
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +0200538
Bartlomiej Zolnierkiewicz8acf28c2007-10-20 00:32:30 +0200539 if ((!hwif->irq && (d->host_flags & IDE_HFLAG_LEGACY_IRQS)) ||
540 (d->host_flags & IDE_HFLAG_FORCE_LEGACY_IRQS))
Bartlomiej Zolnierkiewicz3985ee32007-10-19 00:30:11 +0200541 hwif->irq = port ? 15 : 14;
542
Bartlomiej Zolnierkiewicz6a824c92007-07-20 01:11:58 +0200543 hwif->host_flags = d->host_flags;
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200544 hwif->pio_mask = d->pio_mask;
Bartlomiej Zolnierkiewicz6a824c92007-07-20 01:11:58 +0200545
Bartlomiej Zolnierkiewicz1c513612007-10-19 00:30:10 +0200546 if ((d->host_flags & IDE_HFLAG_SERIALIZE) && hwif->mate)
547 hwif->mate->serialized = hwif->serialized = 1;
548
Bartlomiej Zolnierkiewiczcaea7602007-10-20 00:32:30 +0200549 if (d->host_flags & IDE_HFLAG_IO_32BIT) {
550 hwif->drives[0].io_32bit = 1;
551 hwif->drives[1].io_32bit = 1;
552 }
553
554 if (d->host_flags & IDE_HFLAG_UNMASK_IRQS) {
555 hwif->drives[0].unmask = 1;
556 hwif->drives[1].unmask = 1;
557 }
558
Bartlomiej Zolnierkiewicz5f8b6c32007-10-19 00:30:07 +0200559 if (hwif->dma_base) {
560 hwif->swdma_mask = d->swdma_mask;
561 hwif->mwdma_mask = d->mwdma_mask;
562 hwif->ultra_mask = d->udma_mask;
563 }
564
Bartlomiej Zolnierkiewicz85ad93a2007-10-19 00:30:12 +0200565 hwif->drives[0].autotune = 1;
566 hwif->drives[1].autotune = 1;
567
Bartlomiej Zolnierkiewicz272a3702007-10-20 00:32:30 +0200568 if (d->host_flags & IDE_HFLAG_RQSIZE_256)
569 hwif->rqsize = 256;
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (d->init_hwif)
572 /* Call chipset-specific routine
573 * for each enabled hwif
574 */
575 d->init_hwif(hwif);
576
577 mate = hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
581EXPORT_SYMBOL_GPL(ide_pci_setup_ports);
582
583/*
584 * ide_setup_pci_device() looks at the primary/secondary interfaces
585 * on a PCI IDE device and, if they are enabled, prepares the IDE driver
586 * for use with them. This generic code works for most PCI chipsets.
587 *
588 * One thing that is not standardized is the location of the
589 * primary/secondary interface "enable/disable" bits. For chipsets that
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200590 * we "know" about, this information is in the struct ide_port_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 * for all other chipsets, we just assume both interfaces are enabled.
592 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200593static int do_ide_setup_pci_device(struct pci_dev *dev,
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200594 const struct ide_port_info *d,
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200595 u8 *idx, u8 noisy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 int tried_config = 0;
598 int pciirq, ret;
599
600 ret = ide_setup_pci_controller(dev, d, noisy, &tried_config);
601 if (ret < 0)
602 goto out;
603
604 /*
605 * Can we trust the reported IRQ?
606 */
607 pciirq = dev->irq;
608
609 /* Is it an "IDE storage" device in non-PCI mode? */
610 if ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE && (dev->class & 5) != 5) {
611 if (noisy)
612 printk(KERN_INFO "%s: not 100%% native mode: "
613 "will probe irqs later\n", d->name);
614 /*
615 * This allows offboard ide-pci cards the enable a BIOS,
616 * verify interrupt settings of split-mirror pci-config
617 * space, place chipset into init-mode, and/or preserve
618 * an interrupt if the card is not native ide support.
619 */
620 ret = d->init_chipset ? d->init_chipset(dev, d->name) : 0;
621 if (ret < 0)
622 goto out;
623 pciirq = ret;
624 } else if (tried_config) {
625 if (noisy)
626 printk(KERN_INFO "%s: will probe irqs later\n", d->name);
627 pciirq = 0;
628 } else if (!pciirq) {
629 if (noisy)
630 printk(KERN_WARNING "%s: bad irq (%d): will probe later\n",
631 d->name, pciirq);
632 pciirq = 0;
633 } else {
634 if (d->init_chipset) {
635 ret = d->init_chipset(dev, d->name);
636 if (ret < 0)
637 goto out;
638 }
639 if (noisy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 printk(KERN_INFO "%s: 100%% native mode on irq %d\n",
641 d->name, pciirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643
644 /* FIXME: silent failure can happen */
645
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200646 ide_pci_setup_ports(dev, d, pciirq, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647out:
648 return ret;
649}
650
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200651int ide_setup_pci_device(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200653 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 int ret;
655
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200656 ret = do_ide_setup_pci_device(dev, d, &idx[0], 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200658 if (ret >= 0)
659 ide_device_add(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return ret;
662}
663
664EXPORT_SYMBOL_GPL(ide_setup_pci_device);
665
666int ide_setup_pci_devices(struct pci_dev *dev1, struct pci_dev *dev2,
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200667 const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 struct pci_dev *pdev[] = { dev1, dev2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 int ret, i;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200671 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 for (i = 0; i < 2; i++) {
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200674 ret = do_ide_setup_pci_device(pdev[i], d, &idx[i*2], !i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 /*
676 * FIXME: Mom, mom, they stole me the helper function to undo
677 * do_ide_setup_pci_device() on the first device!
678 */
679 if (ret < 0)
680 goto out;
681 }
682
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200683 ide_device_add(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684out:
685 return ret;
686}
687
688EXPORT_SYMBOL_GPL(ide_setup_pci_devices);