blob: 0886dcea54abdc14744b2d39aaa7139cabd268a2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (c) 1998-2000 Andre Hedrick <andre@linux-ide.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Copyright (c) 1995-1998 Mark Lord
Bartlomiej Zolnierkiewicz58f189f2008-02-01 23:09:33 +01004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * May be copied or modified under the terms of the GNU General Public License
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/module.h>
9#include <linux/types.h>
10#include <linux/kernel.h>
11#include <linux/pci.h>
12#include <linux/init.h>
13#include <linux/timer.h>
14#include <linux/mm.h>
15#include <linux/interrupt.h>
16#include <linux/ide.h>
17#include <linux/dma-mapping.h>
18
19#include <asm/io.h>
20#include <asm/irq.h>
21
22
23/**
24 * ide_match_hwif - match a PCI IDE against an ide_hwif
25 * @io_base: I/O base of device
26 * @bootable: set if its bootable
27 * @name: name of device
28 *
29 * Match a PCI IDE port against an entry in ide_hwifs[],
30 * based on io_base port if possible. Return the matching hwif,
31 * or a new hwif. If we find an error (clashing, out of devices, etc)
32 * return NULL
33 *
34 * FIXME: we need to handle mmio matches here too
35 */
36
37static ide_hwif_t *ide_match_hwif(unsigned long io_base, u8 bootable, const char *name)
38{
39 int h;
40 ide_hwif_t *hwif;
41
42 /*
43 * Look for a hwif with matching io_base specified using
44 * parameters to ide_setup().
45 */
46 for (h = 0; h < MAX_HWIFS; ++h) {
47 hwif = &ide_hwifs[h];
48 if (hwif->io_ports[IDE_DATA_OFFSET] == io_base) {
49 if (hwif->chipset == ide_forced)
50 return hwif; /* a perfect match */
51 }
52 }
53 /*
54 * Look for a hwif with matching io_base default value.
55 * If chipset is "ide_unknown", then claim that hwif slot.
56 * Otherwise, some other chipset has already claimed it.. :(
57 */
58 for (h = 0; h < MAX_HWIFS; ++h) {
59 hwif = &ide_hwifs[h];
60 if (hwif->io_ports[IDE_DATA_OFFSET] == io_base) {
61 if (hwif->chipset == ide_unknown)
62 return hwif; /* match */
63 printk(KERN_ERR "%s: port 0x%04lx already claimed by %s\n",
64 name, io_base, hwif->name);
65 return NULL; /* already claimed */
66 }
67 }
68 /*
69 * Okay, there is no hwif matching our io_base,
70 * so we'll just claim an unassigned slot.
71 * Give preference to claiming other slots before claiming ide0/ide1,
72 * just in case there's another interface yet-to-be-scanned
73 * which uses ports 1f0/170 (the ide0/ide1 defaults).
74 *
75 * Unless there is a bootable card that does not use the standard
76 * ports 1f0/170 (the ide0/ide1 defaults). The (bootable) flag.
77 */
78 if (bootable) {
79 for (h = 0; h < MAX_HWIFS; ++h) {
80 hwif = &ide_hwifs[h];
81 if (hwif->chipset == ide_unknown)
82 return hwif; /* pick an unused entry */
83 }
84 } else {
85 for (h = 2; h < MAX_HWIFS; ++h) {
86 hwif = ide_hwifs + h;
87 if (hwif->chipset == ide_unknown)
88 return hwif; /* pick an unused entry */
89 }
90 }
Matt Mackall83d7dbc2006-10-03 01:14:16 -070091 for (h = 0; h < 2 && h < MAX_HWIFS; ++h) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 hwif = ide_hwifs + h;
93 if (hwif->chipset == ide_unknown)
94 return hwif; /* pick an unused entry */
95 }
96 printk(KERN_ERR "%s: too many IDE interfaces, no room in table\n", name);
97 return NULL;
98}
99
100/**
101 * ide_setup_pci_baseregs - place a PCI IDE controller native
102 * @dev: PCI device of interface to switch native
103 * @name: Name of interface
104 *
105 * We attempt to place the PCI interface into PCI native mode. If
106 * we succeed the BARs are ok and the controller is in PCI mode.
107 * Returns 0 on success or an errno code.
108 *
109 * FIXME: if we program the interface and then fail to set the BARS
110 * we don't switch it back to legacy mode. Do we actually care ??
111 */
112
113static int ide_setup_pci_baseregs (struct pci_dev *dev, const char *name)
114{
115 u8 progif = 0;
116
117 /*
118 * Place both IDE interfaces into PCI "native" mode:
119 */
120 if (pci_read_config_byte(dev, PCI_CLASS_PROG, &progif) ||
121 (progif & 5) != 5) {
122 if ((progif & 0xa) != 0xa) {
123 printk(KERN_INFO "%s: device not capable of full "
124 "native PCI mode\n", name);
125 return -EOPNOTSUPP;
126 }
127 printk("%s: placing both ports into native PCI mode\n", name);
128 (void) pci_write_config_byte(dev, PCI_CLASS_PROG, progif|5);
129 if (pci_read_config_byte(dev, PCI_CLASS_PROG, &progif) ||
130 (progif & 5) != 5) {
131 printk(KERN_ERR "%s: rewrite of PROGIF failed, wanted "
132 "0x%04x, got 0x%04x\n",
133 name, progif|5, progif);
134 return -EOPNOTSUPP;
135 }
136 }
137 return 0;
138}
139
140#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100141static void ide_pci_clear_simplex(unsigned long dma_base, const char *name)
142{
143 u8 dma_stat = inb(dma_base + 2);
144
145 outb(dma_stat & 0x60, dma_base + 2);
146 dma_stat = inb(dma_base + 2);
147 if (dma_stat & 0x80)
148 printk(KERN_INFO "%s: simplex device: DMA forced\n", name);
149}
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/**
152 * ide_get_or_set_dma_base - setup BMIBA
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200153 * @d: IDE port info
154 * @hwif: IDE interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 *
Bartlomiej Zolnierkiewiczc58e79d2007-10-16 22:29:56 +0200156 * Fetch the DMA Bus-Master-I/O-Base-Address (BMIBA) from PCI space.
157 * Where a device has a partner that is already in DMA mode we check
158 * and enforce IDE simplex rules.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 */
160
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200161static 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 -0700162{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100163 struct pci_dev *dev = to_pci_dev(hwif->dev);
164 unsigned long dma_base = 0;
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100165 u8 dma_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (hwif->mmio)
168 return hwif->dma_base;
169
170 if (hwif->mate && hwif->mate->dma_base) {
171 dma_base = hwif->mate->dma_base - (hwif->channel ? 0 : 8);
172 } else {
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +0200173 u8 baridx = (d->host_flags & IDE_HFLAG_CS5520) ? 2 : 4;
174
175 dma_base = pci_resource_start(dev, baridx);
176
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +0100177 if (dma_base == 0) {
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +0200178 printk(KERN_ERR "%s: DMA base is invalid\n", d->name);
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +0100179 return 0;
180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
182
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +0100183 if (hwif->channel)
184 dma_base += 8;
185
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100186 if (d->host_flags & IDE_HFLAG_CS5520)
187 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100189 if (d->host_flags & IDE_HFLAG_CLEAR_SIMPLEX) {
190 ide_pci_clear_simplex(dma_base, d->name);
191 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100193
194 /*
195 * If the device claims "simplex" DMA, this means that only one of
196 * the two interfaces can be trusted with DMA at any point in time
197 * (so we should enable DMA only on one of the two interfaces).
198 *
199 * FIXME: At this point we haven't probed the drives so we can't make
200 * the appropriate decision. Really we should defer this problem until
201 * we tune the drive then try to grab DMA ownership if we want to be
202 * the DMA end. This has to be become dynamic to handle hot-plug.
203 */
204 dma_stat = hwif->INB(dma_base + 2);
205 if ((dma_stat & 0x80) && hwif->mate && hwif->mate->dma_base) {
206 printk(KERN_INFO "%s: simplex device: DMA disabled\n", d->name);
207 dma_base = 0;
208 }
209out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 return dma_base;
211}
212#endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
213
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200214void ide_setup_pci_noise(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Bartlomiej Zolnierkiewiczbde07e52007-10-20 00:32:36 +0200216 printk(KERN_INFO "%s: IDE controller (0x%04x:0x%04x rev 0x%02x) at "
217 " PCI slot %s\n", d->name, dev->vendor, dev->device,
218 dev->revision, pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
221EXPORT_SYMBOL_GPL(ide_setup_pci_noise);
222
223
224/**
225 * ide_pci_enable - do PCI enables
226 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200227 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 *
229 * Enable the IDE PCI device. We attempt to enable the device in full
230 * but if that fails then we only need BAR4 so we will enable that.
231 *
232 * Returns zero on success or an error code
233 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200234
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200235static int ide_pci_enable(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 int ret;
238
239 if (pci_enable_device(dev)) {
240 ret = pci_enable_device_bars(dev, 1 << 4);
241 if (ret < 0) {
242 printk(KERN_WARNING "%s: (ide_setup_pci_device:) "
243 "Could not enable device.\n", d->name);
244 goto out;
245 }
246 printk(KERN_WARNING "%s: BIOS configuration fixed.\n", d->name);
247 }
248
249 /*
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200250 * assume all devices can do 32-bit DMA for now, we can add
251 * a DMA mask field to the struct ide_port_info if we need it
252 * (or let lower level driver set the DMA mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 */
254 ret = pci_set_dma_mask(dev, DMA_32BIT_MASK);
255 if (ret < 0) {
256 printk(KERN_ERR "%s: can't set dma mask\n", d->name);
257 goto out;
258 }
259
260 /* FIXME: Temporary - until we put in the hotplug interface logic
261 Check that the bits we want are not in use by someone else. */
262 ret = pci_request_region(dev, 4, "ide_tmp");
263 if (ret < 0)
264 goto out;
265
266 pci_release_region(dev, 4);
267out:
268 return ret;
269}
270
271/**
272 * ide_pci_configure - configure an unconfigured device
273 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200274 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 *
276 * Enable and configure the PCI device we have been passed.
277 * Returns zero on success or an error code.
278 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200279
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200280static int ide_pci_configure(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 u16 pcicmd = 0;
283 /*
284 * PnP BIOS was *supposed* to have setup this device, but we
285 * can do it ourselves, so long as the BIOS has assigned an IRQ
286 * (or possibly the device is using a "legacy header" for IRQs).
287 * Maybe the user deliberately *disabled* the device,
288 * but we'll eventually ignore it again if no drives respond.
289 */
290 if (ide_setup_pci_baseregs(dev, d->name) || pci_write_config_word(dev, PCI_COMMAND, pcicmd|PCI_COMMAND_IO))
291 {
292 printk(KERN_INFO "%s: device disabled (BIOS)\n", d->name);
293 return -ENODEV;
294 }
295 if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd)) {
296 printk(KERN_ERR "%s: error accessing PCI regs\n", d->name);
297 return -EIO;
298 }
299 if (!(pcicmd & PCI_COMMAND_IO)) {
300 printk(KERN_ERR "%s: unable to enable IDE controller\n", d->name);
301 return -ENXIO;
302 }
303 return 0;
304}
305
306/**
307 * ide_pci_check_iomem - check a register is I/O
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200308 * @dev: PCI device
309 * @d: IDE port info
310 * @bar: BAR number
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 *
312 * Checks if a BAR is configured and points to MMIO space. If so
313 * print an error and return an error code. Otherwise return 0
314 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200315
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200316static int ide_pci_check_iomem(struct pci_dev *dev, const struct ide_port_info *d, int bar)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
318 ulong flags = pci_resource_flags(dev, bar);
319
320 /* Unconfigured ? */
321 if (!flags || pci_resource_len(dev, bar) == 0)
322 return 0;
323
324 /* I/O space */
325 if(flags & PCI_BASE_ADDRESS_IO_MASK)
326 return 0;
327
328 /* Bad */
329 printk(KERN_ERR "%s: IO baseregs (BIOS) are reported "
330 "as MEM, report to "
331 "<andre@linux-ide.org>.\n", d->name);
332 return -EINVAL;
333}
334
335/**
336 * ide_hwif_configure - configure an IDE interface
337 * @dev: PCI device holding interface
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200338 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 * @mate: Paired interface if any
340 *
341 * Perform the initial set up for the hardware interface structure. This
342 * is done per interface port rather than per PCI device. There may be
343 * more than one port per device.
344 *
345 * Returns the new hardware interface structure, or NULL on a failure
346 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200347
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200348static 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 -0700349{
350 unsigned long ctl = 0, base = 0;
351 ide_hwif_t *hwif;
Bartlomiej Zolnierkiewicz7cab14a2007-10-19 00:30:06 +0200352 u8 bootable = (d->host_flags & IDE_HFLAG_BOOTABLE) ? 1 : 0;
Bartlomiej Zolnierkiewicz79127c32008-01-26 20:13:08 +0100353 u8 oldnoprobe = 0;
354 struct hw_regs_s hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200356 if ((d->host_flags & IDE_HFLAG_ISA_PORTS) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 /* Possibly we should fail if these checks report true */
358 ide_pci_check_iomem(dev, d, 2*port);
359 ide_pci_check_iomem(dev, d, 2*port+1);
360
361 ctl = pci_resource_start(dev, 2*port+1);
362 base = pci_resource_start(dev, 2*port);
363 if ((ctl && !base) || (base && !ctl)) {
364 printk(KERN_ERR "%s: inconsistent baseregs (BIOS) "
365 "for port %d, skipping\n", d->name, port);
366 return NULL;
367 }
368 }
369 if (!ctl)
370 {
371 /* Use default values */
372 ctl = port ? 0x374 : 0x3f4;
373 base = port ? 0x170 : 0x1f0;
374 }
Bartlomiej Zolnierkiewicz7cab14a2007-10-19 00:30:06 +0200375 if ((hwif = ide_match_hwif(base, bootable, d->name)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return NULL; /* no room in ide_hwifs[] */
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200377
Bartlomiej Zolnierkiewicz79127c32008-01-26 20:13:08 +0100378 memset(&hw, 0, sizeof(hw));
379 hw.irq = hwif->irq ? hwif->irq : irq;
380 hw.dev = &dev->dev;
381 hw.chipset = d->chipset ? d->chipset : ide_pci;
382 ide_std_init_ports(&hw, base, ctl | 2);
383
384 if (hwif->io_ports[IDE_DATA_OFFSET] == base &&
385 hwif->io_ports[IDE_CONTROL_OFFSET] == (ctl | 2))
386 oldnoprobe = hwif->noprobe;
387
388 ide_init_port_hw(hwif, &hw);
389
390 hwif->noprobe = oldnoprobe;
391
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100392 hwif->dev = &dev->dev;
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200393 hwif->cds = d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 hwif->channel = port;
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (mate) {
397 hwif->mate = mate;
398 mate->mate = hwif;
399 }
400 return hwif;
401}
402
403/**
404 * ide_hwif_setup_dma - configure DMA interface
405 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200406 * @d: IDE port info
407 * @hwif: IDE interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 *
409 * Set up the DMA base for the interface. Enable the master bits as
410 * necessary and attempt to bring the device DMA into a ready to use
411 * state
412 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200413
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200414static 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 -0700415{
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200416#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 u16 pcicmd;
Bartlomiej Zolnierkiewicz47b68782007-10-19 00:30:06 +0200418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
420
Bartlomiej Zolnierkiewicz47b68782007-10-19 00:30:06 +0200421 if ((d->host_flags & IDE_HFLAG_NO_AUTODMA) == 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE &&
423 (dev->class & 0x80))) {
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +0200424 unsigned long dma_base = ide_get_or_set_dma_base(d, hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (dma_base && !(pcicmd & PCI_COMMAND_MASTER)) {
426 /*
427 * Set up BM-DMA capability
428 * (PnP BIOS should have done this)
429 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 pci_set_master(dev);
431 if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd) || !(pcicmd & PCI_COMMAND_MASTER)) {
432 printk(KERN_ERR "%s: %s error updating PCICMD\n",
433 hwif->name, d->name);
434 dma_base = 0;
435 }
436 }
437 if (dma_base) {
438 if (d->init_dma) {
439 d->init_dma(hwif, dma_base);
440 } else {
Sergei Shtylyovecf327962008-02-01 23:09:30 +0100441 ide_setup_dma(hwif, dma_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
443 } else {
444 printk(KERN_INFO "%s: %s Bus-Master DMA disabled "
445 "(BIOS)\n", hwif->name, d->name);
446 }
447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448#endif /* CONFIG_BLK_DEV_IDEDMA_PCI*/
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200449}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451/**
452 * ide_setup_pci_controller - set up IDE PCI
453 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200454 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 * @noisy: verbose flag
456 * @config: returned as 1 if we configured the hardware
457 *
458 * Set up the PCI and controller side of the IDE interface. This brings
459 * up the PCI side of the device, checks that the device is enabled
460 * and enables it if need be
461 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200462
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200463static 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 -0700464{
465 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 u16 pcicmd;
467
468 if (noisy)
469 ide_setup_pci_noise(dev, d);
470
471 ret = ide_pci_enable(dev, d);
472 if (ret < 0)
473 goto out;
474
475 ret = pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
476 if (ret < 0) {
477 printk(KERN_ERR "%s: error accessing PCI regs\n", d->name);
478 goto out;
479 }
480 if (!(pcicmd & PCI_COMMAND_IO)) { /* is device disabled? */
481 ret = ide_pci_configure(dev, d);
482 if (ret < 0)
483 goto out;
484 *config = 1;
485 printk(KERN_INFO "%s: device enabled (Linux)\n", d->name);
486 }
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488out:
489 return ret;
490}
491
492/**
493 * ide_pci_setup_ports - configure ports/devices on PCI IDE
494 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200495 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 * @pciirq: IRQ line
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200497 * @idx: ATA index table to update
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 *
499 * Scan the interfaces attached to this device and do any
500 * necessary per port setup. Attach the devices and ask the
501 * generic DMA layer to do its work for us.
502 *
503 * Normally called automaticall from do_ide_pci_setup_device,
504 * but is also used directly as a helper function by some controllers
505 * where the chipset setup is not the default PCI IDE one.
506 */
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200507
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200508void 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 -0700509{
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200510 int channels = (d->host_flags & IDE_HFLAG_SINGLE) ? 1 : 2, port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 ide_hwif_t *hwif, *mate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 u8 tmp;
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 /*
515 * Set up the IDE ports
516 */
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200517
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200518 for (port = 0; port < channels; ++port) {
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200519 const ide_pci_enablebit_t *e = &(d->enablebits[port]);
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (e->reg && (pci_read_config_byte(dev, e->reg, &tmp) ||
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200522 (tmp & e->mask) != e->val)) {
523 printk(KERN_INFO "%s: IDE port disabled\n", d->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 continue; /* port not enabled */
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if ((hwif = ide_hwif_configure(dev, d, mate, port, pciirq)) == NULL)
528 continue;
529
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200530 *(idx + port) = hwif->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (d->init_iops)
533 d->init_iops(hwif);
534
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +0200535 if ((d->host_flags & IDE_HFLAG_NO_DMA) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 ide_hwif_setup_dma(dev, d, hwif);
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +0200537
Bartlomiej Zolnierkiewicz8acf28c2007-10-20 00:32:30 +0200538 if ((!hwif->irq && (d->host_flags & IDE_HFLAG_LEGACY_IRQS)) ||
539 (d->host_flags & IDE_HFLAG_FORCE_LEGACY_IRQS))
Bartlomiej Zolnierkiewicz3985ee32007-10-19 00:30:11 +0200540 hwif->irq = port ? 15 : 14;
541
Bartlomiej Zolnierkiewicz6a824c92007-07-20 01:11:58 +0200542 hwif->host_flags = d->host_flags;
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200543 hwif->pio_mask = d->pio_mask;
Bartlomiej Zolnierkiewicz6a824c92007-07-20 01:11:58 +0200544
Bartlomiej Zolnierkiewicz1c513612007-10-19 00:30:10 +0200545 if ((d->host_flags & IDE_HFLAG_SERIALIZE) && hwif->mate)
546 hwif->mate->serialized = hwif->serialized = 1;
547
Bartlomiej Zolnierkiewiczcaea7602007-10-20 00:32:30 +0200548 if (d->host_flags & IDE_HFLAG_IO_32BIT) {
549 hwif->drives[0].io_32bit = 1;
550 hwif->drives[1].io_32bit = 1;
551 }
552
553 if (d->host_flags & IDE_HFLAG_UNMASK_IRQS) {
554 hwif->drives[0].unmask = 1;
555 hwif->drives[1].unmask = 1;
556 }
557
Bartlomiej Zolnierkiewicz5f8b6c32007-10-19 00:30:07 +0200558 if (hwif->dma_base) {
559 hwif->swdma_mask = d->swdma_mask;
560 hwif->mwdma_mask = d->mwdma_mask;
561 hwif->ultra_mask = d->udma_mask;
562 }
563
Bartlomiej Zolnierkiewicz85ad93a2007-10-19 00:30:12 +0200564 hwif->drives[0].autotune = 1;
565 hwif->drives[1].autotune = 1;
566
Bartlomiej Zolnierkiewicz272a3702007-10-20 00:32:30 +0200567 if (d->host_flags & IDE_HFLAG_RQSIZE_256)
568 hwif->rqsize = 256;
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (d->init_hwif)
571 /* Call chipset-specific routine
572 * for each enabled hwif
573 */
574 d->init_hwif(hwif);
575
576 mate = hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
580EXPORT_SYMBOL_GPL(ide_pci_setup_ports);
581
582/*
583 * ide_setup_pci_device() looks at the primary/secondary interfaces
584 * on a PCI IDE device and, if they are enabled, prepares the IDE driver
585 * for use with them. This generic code works for most PCI chipsets.
586 *
587 * One thing that is not standardized is the location of the
588 * primary/secondary interface "enable/disable" bits. For chipsets that
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200589 * we "know" about, this information is in the struct ide_port_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 * for all other chipsets, we just assume both interfaces are enabled.
591 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200592static int do_ide_setup_pci_device(struct pci_dev *dev,
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200593 const struct ide_port_info *d,
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200594 u8 *idx, u8 noisy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 int tried_config = 0;
597 int pciirq, ret;
598
599 ret = ide_setup_pci_controller(dev, d, noisy, &tried_config);
600 if (ret < 0)
601 goto out;
602
603 /*
604 * Can we trust the reported IRQ?
605 */
606 pciirq = dev->irq;
607
608 /* Is it an "IDE storage" device in non-PCI mode? */
609 if ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE && (dev->class & 5) != 5) {
610 if (noisy)
611 printk(KERN_INFO "%s: not 100%% native mode: "
612 "will probe irqs later\n", d->name);
613 /*
614 * This allows offboard ide-pci cards the enable a BIOS,
615 * verify interrupt settings of split-mirror pci-config
616 * space, place chipset into init-mode, and/or preserve
617 * an interrupt if the card is not native ide support.
618 */
619 ret = d->init_chipset ? d->init_chipset(dev, d->name) : 0;
620 if (ret < 0)
621 goto out;
622 pciirq = ret;
623 } else if (tried_config) {
624 if (noisy)
625 printk(KERN_INFO "%s: will probe irqs later\n", d->name);
626 pciirq = 0;
627 } else if (!pciirq) {
628 if (noisy)
629 printk(KERN_WARNING "%s: bad irq (%d): will probe later\n",
630 d->name, pciirq);
631 pciirq = 0;
632 } else {
633 if (d->init_chipset) {
634 ret = d->init_chipset(dev, d->name);
635 if (ret < 0)
636 goto out;
637 }
638 if (noisy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 printk(KERN_INFO "%s: 100%% native mode on irq %d\n",
640 d->name, pciirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
642
643 /* FIXME: silent failure can happen */
644
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200645 ide_pci_setup_ports(dev, d, pciirq, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646out:
647 return ret;
648}
649
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200650int ide_setup_pci_device(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200652 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 int ret;
654
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200655 ret = do_ide_setup_pci_device(dev, d, &idx[0], 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200657 if (ret >= 0)
658 ide_device_add(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return ret;
661}
662
663EXPORT_SYMBOL_GPL(ide_setup_pci_device);
664
665int ide_setup_pci_devices(struct pci_dev *dev1, struct pci_dev *dev2,
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200666 const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
668 struct pci_dev *pdev[] = { dev1, dev2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 int ret, i;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200670 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 for (i = 0; i < 2; i++) {
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200673 ret = do_ide_setup_pci_device(pdev[i], d, &idx[i*2], !i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 /*
675 * FIXME: Mom, mom, they stole me the helper function to undo
676 * do_ide_setup_pci_device() on the first device!
677 */
678 if (ret < 0)
679 goto out;
680 }
681
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200682 ide_device_add(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683out:
684 return ret;
685}
686
687EXPORT_SYMBOL_GPL(ide_setup_pci_devices);