blob: 7347faf8bc414077598ff9a94e7ae35012d1e2ec [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/**
Bartlomiej Zolnierkiewiczbad7c822008-04-26 17:36:31 +020025 * ide_match_hwif - find free ide_hwifs[] slot
26 * @bootable: bootable flag
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 *
Bartlomiej Zolnierkiewiczbad7c822008-04-26 17:36:31 +020028 * Return the new hwif. If we are out of free slots return NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 */
30
Bartlomiej Zolnierkiewiczbad7c822008-04-26 17:36:31 +020031static ide_hwif_t *ide_match_hwif(u8 bootable)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032{
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 ide_hwif_t *hwif;
Bartlomiej Zolnierkiewiczbad7c822008-04-26 17:36:31 +020034 int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36 /*
Bartlomiej Zolnierkiewiczbad7c822008-04-26 17:36:31 +020037 * Claim an unassigned slot.
38 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 * 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 Mackall83d7dbc2006-10-03 01:14:16 -070059 for (h = 0; h < 2 && h < MAX_HWIFS; ++h) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 hwif = ide_hwifs + h;
61 if (hwif->chipset == ide_unknown)
62 return hwif; /* pick an unused entry */
63 }
Bartlomiej Zolnierkiewiczbad7c822008-04-26 17:36:31 +020064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 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
81static 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 Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100109static 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 Torvalds1da177e2005-04-16 15:20:36 -0700119/**
120 * ide_get_or_set_dma_base - setup BMIBA
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200121 * @d: IDE port info
122 * @hwif: IDE interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 *
Bartlomiej Zolnierkiewiczc58e79d2007-10-16 22:29:56 +0200124 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700127 */
128
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200129static 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 -0700130{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100131 struct pci_dev *dev = to_pci_dev(hwif->dev);
132 unsigned long dma_base = 0;
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100133 u8 dma_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 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 Zolnierkiewicz9ffcf362007-10-19 00:30:07 +0200141 u8 baridx = (d->host_flags & IDE_HFLAG_CS5520) ? 2 : 4;
142
143 dma_base = pci_resource_start(dev, baridx);
144
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +0100145 if (dma_base == 0) {
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +0200146 printk(KERN_ERR "%s: DMA base is invalid\n", d->name);
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +0100147 return 0;
148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
150
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +0100151 if (hwif->channel)
152 dma_base += 8;
153
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100154 if (d->host_flags & IDE_HFLAG_CS5520)
155 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100157 if (d->host_flags & IDE_HFLAG_CLEAR_SIMPLEX) {
158 ide_pci_clear_simplex(dma_base, d->name);
159 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100161
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 }
177out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return dma_base;
179}
180#endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
181
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200182void ide_setup_pci_noise(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Bartlomiej Zolnierkiewiczbde07e52007-10-20 00:32:36 +0200184 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 Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
189EXPORT_SYMBOL_GPL(ide_setup_pci_noise);
190
191
192/**
193 * ide_pci_enable - do PCI enables
194 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200195 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 *
197 * Enable the IDE PCI device. We attempt to enable the device in full
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +1100198 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700201 *
202 * Returns zero on success or an error code
203 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200204
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200205static int ide_pci_enable(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 int ret;
208
209 if (pci_enable_device(dev)) {
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +1100210 ret = pci_enable_device_io(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 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 Zolnierkiewicz039788e2007-10-20 00:32:34 +0200220 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700223 */
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);
237out:
238 return ret;
239}
240
241/**
242 * ide_pci_configure - configure an unconfigured device
243 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200244 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 *
246 * Enable and configure the PCI device we have been passed.
247 * Returns zero on success or an error code.
248 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200249
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200250static int ide_pci_configure(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
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 Zolnierkiewicz039788e2007-10-20 00:32:34 +0200278 * @dev: PCI device
279 * @d: IDE port info
280 * @bar: BAR number
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 *
Sergei Shtylyov1baccff2008-04-26 17:36:31 +0200282 * Checks if a BAR is configured and points to MMIO space. If so,
283 * return an error code. Otherwise return 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200285
Sergei Shtylyov1baccff2008-04-26 17:36:31 +0200286static int ide_pci_check_iomem(struct pci_dev *dev, const struct ide_port_info *d,
287 int bar)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
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 Shtylyov1baccff2008-04-26 17:36:31 +0200295 /* I/O space */
296 if (flags & IORESOURCE_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return 0;
298
299 /* Bad */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return -EINVAL;
301}
302
303/**
304 * ide_hwif_configure - configure an IDE interface
305 * @dev: PCI device holding interface
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200306 * @d: IDE port info
Bartlomiej Zolnierkiewicz1ebf7492008-02-02 19:56:30 +0100307 * @port: port number
308 * @irq: PCI IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 *
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 Zolnierkiewicz039788e2007-10-20 00:32:34 +0200316
Bartlomiej Zolnierkiewicz1ebf7492008-02-02 19:56:30 +0100317static ide_hwif_t *ide_hwif_configure(struct pci_dev *dev,
318 const struct ide_port_info *d,
319 unsigned int port, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
321 unsigned long ctl = 0, base = 0;
322 ide_hwif_t *hwif;
Bartlomiej Zolnierkiewicz7cab14a2007-10-19 00:30:06 +0200323 u8 bootable = (d->host_flags & IDE_HFLAG_BOOTABLE) ? 1 : 0;
Bartlomiej Zolnierkiewicz79127c32008-01-26 20:13:08 +0100324 struct hw_regs_s hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200326 if ((d->host_flags & IDE_HFLAG_ISA_PORTS) == 0) {
Sergei Shtylyov1baccff2008-04-26 17:36:31 +0200327 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 Torvalds1da177e2005-04-16 15:20:36 -0700333
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 Zolnierkiewiczbad7c822008-04-26 17:36:31 +0200348
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 Zolnierkiewicz9239b332007-10-20 00:32:33 +0200355
Bartlomiej Zolnierkiewicz79127c32008-01-26 20:13:08 +0100356 memset(&hw, 0, sizeof(hw));
Bartlomiej Zolnierkiewiczaab8ad92008-04-18 00:46:35 +0200357 hw.irq = irq;
Bartlomiej Zolnierkiewicz79127c32008-01-26 20:13:08 +0100358 hw.dev = &dev->dev;
359 hw.chipset = d->chipset ? d->chipset : ide_pci;
360 ide_std_init_ports(&hw, base, ctl | 2);
361
Bartlomiej Zolnierkiewicz79127c32008-01-26 20:13:08 +0100362 ide_init_port_hw(hwif, &hw);
363
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100364 hwif->dev = &dev->dev;
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200365 hwif->cds = d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return hwif;
368}
369
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100370#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371/**
372 * ide_hwif_setup_dma - configure DMA interface
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200373 * @hwif: IDE interface
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100374 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 *
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 Zolnierkiewicz039788e2007-10-20 00:32:34 +0200380
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100381void ide_hwif_setup_dma(ide_hwif_t *hwif, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100383 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 u16 pcicmd;
Bartlomiej Zolnierkiewicz47b68782007-10-19 00:30:06 +0200385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
387
Bartlomiej Zolnierkiewicz47b68782007-10-19 00:30:06 +0200388 if ((d->host_flags & IDE_HFLAG_NO_AUTODMA) == 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE &&
390 (dev->class & 0x80))) {
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +0200391 unsigned long dma_base = ide_get_or_set_dma_base(d, hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (dma_base && !(pcicmd & PCI_COMMAND_MASTER)) {
393 /*
394 * Set up BM-DMA capability
395 * (PnP BIOS should have done this)
396 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 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 Shtylyovecf327962008-02-01 23:09:30 +0100408 ide_setup_dma(hwif, dma_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410 } else {
411 printk(KERN_INFO "%s: %s Bus-Master DMA disabled "
412 "(BIOS)\n", hwif->name, d->name);
413 }
414 }
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200415}
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100416#endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418/**
419 * ide_setup_pci_controller - set up IDE PCI
420 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200421 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 * @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 Zolnierkiewicz039788e2007-10-20 00:32:34 +0200429
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200430static 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 -0700431{
432 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 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 Torvalds1da177e2005-04-16 15:20:36 -0700455out:
456 return ret;
457}
458
459/**
460 * ide_pci_setup_ports - configure ports/devices on PCI IDE
461 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200462 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 * @pciirq: IRQ line
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200464 * @idx: ATA index table to update
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 *
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 Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200474
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200475void 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 -0700476{
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200477 int channels = (d->host_flags & IDE_HFLAG_SINGLE) ? 1 : 2, port;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100478 ide_hwif_t *hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 u8 tmp;
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 /*
482 * Set up the IDE ports
483 */
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200484
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200485 for (port = 0; port < channels; ++port) {
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200486 const ide_pci_enablebit_t *e = &(d->enablebits[port]);
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (e->reg && (pci_read_config_byte(dev, e->reg, &tmp) ||
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200489 (tmp & e->mask) != e->val)) {
490 printk(KERN_INFO "%s: IDE port disabled\n", d->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 continue; /* port not enabled */
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Bartlomiej Zolnierkiewicz1ebf7492008-02-02 19:56:30 +0100494 hwif = ide_hwif_configure(dev, d, port, pciirq);
495 if (hwif == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 continue;
497
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200498 *(idx + port) = hwif->index;
Bartlomiej Zolnierkiewicz1ebf7492008-02-02 19:56:30 +0100499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
502EXPORT_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 Zolnierkiewicz039788e2007-10-20 00:32:34 +0200511 * we "know" about, this information is in the struct ide_port_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 * for all other chipsets, we just assume both interfaces are enabled.
513 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200514static int do_ide_setup_pci_device(struct pci_dev *dev,
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200515 const struct ide_port_info *d,
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200516 u8 *idx, u8 noisy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 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 Torvalds1da177e2005-04-16 15:20:36 -0700561 printk(KERN_INFO "%s: 100%% native mode on irq %d\n",
562 d->name, pciirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564
565 /* FIXME: silent failure can happen */
566
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200567 ide_pci_setup_ports(dev, d, pciirq, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568out:
569 return ret;
570}
571
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200572int ide_setup_pci_device(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200574 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 int ret;
576
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200577 ret = do_ide_setup_pci_device(dev, d, &idx[0], 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200579 if (ret >= 0)
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100580 ide_device_add(idx, d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return ret;
583}
584
585EXPORT_SYMBOL_GPL(ide_setup_pci_device);
586
587int ide_setup_pci_devices(struct pci_dev *dev1, struct pci_dev *dev2,
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200588 const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
590 struct pci_dev *pdev[] = { dev1, dev2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 int ret, i;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200592 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 for (i = 0; i < 2; i++) {
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200595 ret = do_ide_setup_pci_device(pdev[i], d, &idx[i*2], !i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 /*
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 Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100604 ide_device_add(idx, d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605out:
606 return ret;
607}
608
609EXPORT_SYMBOL_GPL(ide_setup_pci_devices);