blob: acb467c6f3459b678a0549b1b6921bdb9652e078 [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/types.h>
10#include <linux/kernel.h>
11#include <linux/pci.h>
12#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/interrupt.h>
14#include <linux/ide.h>
15#include <linux/dma-mapping.h>
16
17#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019/**
20 * ide_setup_pci_baseregs - place a PCI IDE controller native
21 * @dev: PCI device of interface to switch native
22 * @name: Name of interface
23 *
24 * We attempt to place the PCI interface into PCI native mode. If
25 * we succeed the BARs are ok and the controller is in PCI mode.
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +020026 * Returns 0 on success or an errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 *
28 * FIXME: if we program the interface and then fail to set the BARS
29 * we don't switch it back to legacy mode. Do we actually care ??
30 */
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +020031
32static int ide_setup_pci_baseregs(struct pci_dev *dev, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
34 u8 progif = 0;
35
36 /*
37 * Place both IDE interfaces into PCI "native" mode:
38 */
39 if (pci_read_config_byte(dev, PCI_CLASS_PROG, &progif) ||
40 (progif & 5) != 5) {
41 if ((progif & 0xa) != 0xa) {
42 printk(KERN_INFO "%s: device not capable of full "
43 "native PCI mode\n", name);
44 return -EOPNOTSUPP;
45 }
46 printk("%s: placing both ports into native PCI mode\n", name);
47 (void) pci_write_config_byte(dev, PCI_CLASS_PROG, progif|5);
48 if (pci_read_config_byte(dev, PCI_CLASS_PROG, &progif) ||
49 (progif & 5) != 5) {
50 printk(KERN_ERR "%s: rewrite of PROGIF failed, wanted "
51 "0x%04x, got 0x%04x\n",
52 name, progif|5, progif);
53 return -EOPNOTSUPP;
54 }
55 }
56 return 0;
57}
58
59#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +010060static void ide_pci_clear_simplex(unsigned long dma_base, const char *name)
61{
62 u8 dma_stat = inb(dma_base + 2);
63
64 outb(dma_stat & 0x60, dma_base + 2);
65 dma_stat = inb(dma_base + 2);
66 if (dma_stat & 0x80)
67 printk(KERN_INFO "%s: simplex device: DMA forced\n", name);
68}
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/**
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +020071 * ide_pci_dma_base - setup BMIBA
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +020072 * @hwif: IDE interface
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +020073 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 *
Bartlomiej Zolnierkiewiczc58e79d2007-10-16 22:29:56 +020075 * Fetch the DMA Bus-Master-I/O-Base-Address (BMIBA) from PCI space.
76 * Where a device has a partner that is already in DMA mode we check
77 * and enforce IDE simplex rules.
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 */
79
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +020080unsigned long ide_pci_dma_base(ide_hwif_t *hwif, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +010082 struct pci_dev *dev = to_pci_dev(hwif->dev);
83 unsigned long dma_base = 0;
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +010084 u8 dma_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Bartlomiej Zolnierkiewicz13572142008-07-15 21:21:49 +020086 if (hwif->host_flags & IDE_HFLAG_MMIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 return hwif->dma_base;
88
89 if (hwif->mate && hwif->mate->dma_base) {
90 dma_base = hwif->mate->dma_base - (hwif->channel ? 0 : 8);
91 } else {
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +020092 u8 baridx = (d->host_flags & IDE_HFLAG_CS5520) ? 2 : 4;
93
94 dma_base = pci_resource_start(dev, baridx);
95
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +010096 if (dma_base == 0) {
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +020097 printk(KERN_ERR "%s: DMA base is invalid\n", d->name);
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +010098 return 0;
99 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 }
101
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +0100102 if (hwif->channel)
103 dma_base += 8;
104
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100105 if (d->host_flags & IDE_HFLAG_CS5520)
106 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100108 if (d->host_flags & IDE_HFLAG_CLEAR_SIMPLEX) {
109 ide_pci_clear_simplex(dma_base, d->name);
110 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 }
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100112
113 /*
114 * If the device claims "simplex" DMA, this means that only one of
115 * the two interfaces can be trusted with DMA at any point in time
116 * (so we should enable DMA only on one of the two interfaces).
117 *
118 * FIXME: At this point we haven't probed the drives so we can't make
119 * the appropriate decision. Really we should defer this problem until
120 * we tune the drive then try to grab DMA ownership if we want to be
121 * the DMA end. This has to be become dynamic to handle hot-plug.
122 */
123 dma_stat = hwif->INB(dma_base + 2);
124 if ((dma_stat & 0x80) && hwif->mate && hwif->mate->dma_base) {
125 printk(KERN_INFO "%s: simplex device: DMA disabled\n", d->name);
126 dma_base = 0;
127 }
128out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return dma_base;
130}
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200131EXPORT_SYMBOL_GPL(ide_pci_dma_base);
Bartlomiej Zolnierkiewiczd54452f2008-04-26 22:25:21 +0200132
133/*
134 * Set up BM-DMA capability (PnP BIOS should have done this)
135 */
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200136int ide_pci_set_master(struct pci_dev *dev, const char *name)
Bartlomiej Zolnierkiewiczd54452f2008-04-26 22:25:21 +0200137{
138 u16 pcicmd;
139
140 pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
141
142 if ((pcicmd & PCI_COMMAND_MASTER) == 0) {
143 pci_set_master(dev);
144
145 if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd) ||
146 (pcicmd & PCI_COMMAND_MASTER) == 0) {
147 printk(KERN_ERR "%s: error updating PCICMD on %s\n",
148 name, pci_name(dev));
149 return -EIO;
150 }
151 }
152
153 return 0;
154}
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200155EXPORT_SYMBOL_GPL(ide_pci_set_master);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
157
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200158void ide_setup_pci_noise(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Bartlomiej Zolnierkiewiczbde07e52007-10-20 00:32:36 +0200160 printk(KERN_INFO "%s: IDE controller (0x%04x:0x%04x rev 0x%02x) at "
161 " PCI slot %s\n", d->name, dev->vendor, dev->device,
162 dev->revision, pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164EXPORT_SYMBOL_GPL(ide_setup_pci_noise);
165
166
167/**
168 * ide_pci_enable - do PCI enables
169 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200170 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 *
172 * Enable the IDE PCI device. We attempt to enable the device in full
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +1100173 * but if that fails then we only need IO space. The PCI code should
174 * have setup the proper resources for us already for controllers in
175 * legacy mode.
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200176 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 * Returns zero on success or an error code
178 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200179
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200180static int ide_pci_enable(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Bartlomiej Zolnierkiewicz0d1bad22008-04-26 22:25:19 +0200182 int ret, bars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 if (pci_enable_device(dev)) {
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +1100185 ret = pci_enable_device_io(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 if (ret < 0) {
187 printk(KERN_WARNING "%s: (ide_setup_pci_device:) "
188 "Could not enable device.\n", d->name);
189 goto out;
190 }
191 printk(KERN_WARNING "%s: BIOS configuration fixed.\n", d->name);
192 }
193
194 /*
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200195 * assume all devices can do 32-bit DMA for now, we can add
196 * a DMA mask field to the struct ide_port_info if we need it
197 * (or let lower level driver set the DMA mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 */
199 ret = pci_set_dma_mask(dev, DMA_32BIT_MASK);
200 if (ret < 0) {
201 printk(KERN_ERR "%s: can't set dma mask\n", d->name);
202 goto out;
203 }
204
Bartlomiej Zolnierkiewicz0d1bad22008-04-26 22:25:19 +0200205 if (d->host_flags & IDE_HFLAG_SINGLE)
206 bars = (1 << 2) - 1;
207 else
208 bars = (1 << 4) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Bartlomiej Zolnierkiewicz0d1bad22008-04-26 22:25:19 +0200210 if ((d->host_flags & IDE_HFLAG_NO_DMA) == 0) {
211 if (d->host_flags & IDE_HFLAG_CS5520)
212 bars |= (1 << 2);
213 else
214 bars |= (1 << 4);
215 }
216
217 ret = pci_request_selected_regions(dev, bars, d->name);
218 if (ret < 0)
219 printk(KERN_ERR "%s: can't reserve resources\n", d->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220out:
221 return ret;
222}
223
224/**
225 * ide_pci_configure - configure an unconfigured device
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 and configure the PCI device we have been passed.
230 * Returns zero on success or an error code.
231 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200232
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200233static int ide_pci_configure(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
235 u16 pcicmd = 0;
236 /*
237 * PnP BIOS was *supposed* to have setup this device, but we
238 * can do it ourselves, so long as the BIOS has assigned an IRQ
239 * (or possibly the device is using a "legacy header" for IRQs).
240 * Maybe the user deliberately *disabled* the device,
241 * but we'll eventually ignore it again if no drives respond.
242 */
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200243 if (ide_setup_pci_baseregs(dev, d->name) ||
244 pci_write_config_word(dev, PCI_COMMAND, pcicmd | PCI_COMMAND_IO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 printk(KERN_INFO "%s: device disabled (BIOS)\n", d->name);
246 return -ENODEV;
247 }
248 if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd)) {
249 printk(KERN_ERR "%s: error accessing PCI regs\n", d->name);
250 return -EIO;
251 }
252 if (!(pcicmd & PCI_COMMAND_IO)) {
253 printk(KERN_ERR "%s: unable to enable IDE controller\n", d->name);
254 return -ENXIO;
255 }
256 return 0;
257}
258
259/**
260 * ide_pci_check_iomem - check a register is I/O
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200261 * @dev: PCI device
262 * @d: IDE port info
263 * @bar: BAR number
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 *
Sergei Shtylyov1baccff2008-04-26 17:36:31 +0200265 * Checks if a BAR is configured and points to MMIO space. If so,
266 * return an error code. Otherwise return 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200268
Sergei Shtylyov1baccff2008-04-26 17:36:31 +0200269static int ide_pci_check_iomem(struct pci_dev *dev, const struct ide_port_info *d,
270 int bar)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
272 ulong flags = pci_resource_flags(dev, bar);
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 /* Unconfigured ? */
275 if (!flags || pci_resource_len(dev, bar) == 0)
276 return 0;
277
Sergei Shtylyov1baccff2008-04-26 17:36:31 +0200278 /* I/O space */
279 if (flags & IORESOURCE_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return 0;
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 /* Bad */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return -EINVAL;
284}
285
286/**
287 * ide_hwif_configure - configure an IDE interface
288 * @dev: PCI device holding interface
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200289 * @d: IDE port info
Bartlomiej Zolnierkiewicz1ebf7492008-02-02 19:56:30 +0100290 * @port: port number
291 * @irq: PCI IRQ
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200292 * @hw: hw_regs_t instance corresponding to this port
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 *
294 * Perform the initial set up for the hardware interface structure. This
295 * is done per interface port rather than per PCI device. There may be
296 * more than one port per device.
297 *
298 * Returns the new hardware interface structure, or NULL on a failure
299 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200300
Bartlomiej Zolnierkiewicz1ebf7492008-02-02 19:56:30 +0100301static ide_hwif_t *ide_hwif_configure(struct pci_dev *dev,
302 const struct ide_port_info *d,
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200303 unsigned int port, int irq,
304 hw_regs_t *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
306 unsigned long ctl = 0, base = 0;
307 ide_hwif_t *hwif;
308
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200309 if ((d->host_flags & IDE_HFLAG_ISA_PORTS) == 0) {
Sergei Shtylyov1baccff2008-04-26 17:36:31 +0200310 if (ide_pci_check_iomem(dev, d, 2 * port) ||
311 ide_pci_check_iomem(dev, d, 2 * port + 1)) {
312 printk(KERN_ERR "%s: I/O baseregs (BIOS) are reported "
313 "as MEM for port %d!\n", d->name, port);
314 return NULL;
315 }
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 ctl = pci_resource_start(dev, 2*port+1);
318 base = pci_resource_start(dev, 2*port);
Bartlomiej Zolnierkiewiczc1da6782008-07-16 20:33:41 +0200319 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 /* Use default values */
321 ctl = port ? 0x374 : 0x3f4;
322 base = port ? 0x170 : 0x1f0;
323 }
Bartlomiej Zolnierkiewiczbad7c822008-04-26 17:36:31 +0200324
Bartlomiej Zolnierkiewiczc1da6782008-07-16 20:33:41 +0200325 if (!base || !ctl) {
326 printk(KERN_ERR "%s: bad PCI BARs for port %d, skipping\n",
327 d->name, port);
328 return NULL;
329 }
330
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200331 memset(hw, 0, sizeof(*hw));
332 hw->irq = irq;
333 hw->dev = &dev->dev;
334 hw->chipset = d->chipset ? d->chipset : ide_pci;
335 ide_std_init_ports(hw, base, ctl | 2);
336
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +0200337 hwif = ide_find_port_slot(d);
Bartlomiej Zolnierkiewiczeb3aff52008-07-16 20:33:42 +0200338 if (hwif == NULL)
Bartlomiej Zolnierkiewiczbad7c822008-04-26 17:36:31 +0200339 return NULL;
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200340
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200341 hwif->chipset = hw->chipset;
Bartlomiej Zolnierkiewicz79127c32008-01-26 20:13:08 +0100342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return hwif;
344}
345
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100346#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347/**
348 * ide_hwif_setup_dma - configure DMA interface
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200349 * @hwif: IDE interface
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100350 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 *
352 * Set up the DMA base for the interface. Enable the master bits as
353 * necessary and attempt to bring the device DMA into a ready to use
354 * state
355 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200356
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200357int ide_hwif_setup_dma(ide_hwif_t *hwif, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100359 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Bartlomiej Zolnierkiewicz47b68782007-10-19 00:30:06 +0200361 if ((d->host_flags & IDE_HFLAG_NO_AUTODMA) == 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE &&
363 (dev->class & 0x80))) {
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200364 unsigned long base = ide_pci_dma_base(hwif, d);
Bartlomiej Zolnierkiewicz23658f82008-04-26 22:25:21 +0200365
Bartlomiej Zolnierkiewicz63158d52008-04-26 22:25:21 +0200366 if (base == 0 || ide_pci_set_master(dev, d->name) < 0)
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200367 return -1;
Bartlomiej Zolnierkiewiczd54452f2008-04-26 22:25:21 +0200368
Bartlomiej Zolnierkiewicz13572142008-07-15 21:21:49 +0200369 if (hwif->host_flags & IDE_HFLAG_MMIO)
Bartlomiej Zolnierkiewicz63158d52008-04-26 22:25:21 +0200370 printk(KERN_INFO " %s: MMIO-DMA\n", hwif->name);
371 else
372 printk(KERN_INFO " %s: BM-DMA at 0x%04lx-0x%04lx\n",
373 hwif->name, base, base + 7);
374
375 hwif->extra_base = base + (hwif->channel ? 8 : 16);
376
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200377 if (ide_allocate_dma_engine(hwif))
378 return -1;
379
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +0200380 ide_setup_dma(hwif, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
Bartlomiej Zolnierkiewiczd54452f2008-04-26 22:25:21 +0200382
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200383 return 0;
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200384}
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100385#endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387/**
388 * ide_setup_pci_controller - set up IDE PCI
389 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200390 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 * @noisy: verbose flag
392 * @config: returned as 1 if we configured the hardware
393 *
394 * Set up the PCI and controller side of the IDE interface. This brings
395 * up the PCI side of the device, checks that the device is enabled
396 * and enables it if need be
397 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200398
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200399static 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 -0700400{
401 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 u16 pcicmd;
403
404 if (noisy)
405 ide_setup_pci_noise(dev, d);
406
407 ret = ide_pci_enable(dev, d);
408 if (ret < 0)
409 goto out;
410
411 ret = pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
412 if (ret < 0) {
413 printk(KERN_ERR "%s: error accessing PCI regs\n", d->name);
414 goto out;
415 }
416 if (!(pcicmd & PCI_COMMAND_IO)) { /* is device disabled? */
417 ret = ide_pci_configure(dev, d);
418 if (ret < 0)
419 goto out;
420 *config = 1;
421 printk(KERN_INFO "%s: device enabled (Linux)\n", d->name);
422 }
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424out:
425 return ret;
426}
427
428/**
429 * ide_pci_setup_ports - configure ports/devices on PCI IDE
430 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200431 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 * @pciirq: IRQ line
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200433 * @idx: ATA index table to update
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200434 * @hw: hw_regs_t instances corresponding to this PCI IDE device
435 * @hws: hw_regs_t pointers table to update
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 *
437 * Scan the interfaces attached to this device and do any
438 * necessary per port setup. Attach the devices and ask the
439 * generic DMA layer to do its work for us.
440 *
441 * Normally called automaticall from do_ide_pci_setup_device,
442 * but is also used directly as a helper function by some controllers
443 * where the chipset setup is not the default PCI IDE one.
444 */
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200445
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200446void ide_pci_setup_ports(struct pci_dev *dev, const struct ide_port_info *d,
447 int pciirq, u8 *idx, hw_regs_t *hw, hw_regs_t **hws)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200449 int channels = (d->host_flags & IDE_HFLAG_SINGLE) ? 1 : 2, port;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100450 ide_hwif_t *hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 u8 tmp;
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 /*
454 * Set up the IDE ports
455 */
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200456
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200457 for (port = 0; port < channels; ++port) {
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200458 const ide_pci_enablebit_t *e = &(d->enablebits[port]);
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (e->reg && (pci_read_config_byte(dev, e->reg, &tmp) ||
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200461 (tmp & e->mask) != e->val)) {
462 printk(KERN_INFO "%s: IDE port disabled\n", d->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 continue; /* port not enabled */
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200466 hwif = ide_hwif_configure(dev, d, port, pciirq, hw + port);
Bartlomiej Zolnierkiewicz1ebf7492008-02-02 19:56:30 +0100467 if (hwif == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 continue;
469
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200470 *(hws + port) = hw + port;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200471 *(idx + port) = hwif->index;
Bartlomiej Zolnierkiewicz1ebf7492008-02-02 19:56:30 +0100472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474EXPORT_SYMBOL_GPL(ide_pci_setup_ports);
475
476/*
477 * ide_setup_pci_device() looks at the primary/secondary interfaces
478 * on a PCI IDE device and, if they are enabled, prepares the IDE driver
479 * for use with them. This generic code works for most PCI chipsets.
480 *
481 * One thing that is not standardized is the location of the
482 * primary/secondary interface "enable/disable" bits. For chipsets that
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200483 * we "know" about, this information is in the struct ide_port_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 * for all other chipsets, we just assume both interfaces are enabled.
485 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200486static int do_ide_setup_pci_device(struct pci_dev *dev,
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200487 const struct ide_port_info *d,
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200488 u8 noisy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 int tried_config = 0;
491 int pciirq, ret;
492
493 ret = ide_setup_pci_controller(dev, d, noisy, &tried_config);
494 if (ret < 0)
495 goto out;
496
497 /*
498 * Can we trust the reported IRQ?
499 */
500 pciirq = dev->irq;
501
502 /* Is it an "IDE storage" device in non-PCI mode? */
503 if ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE && (dev->class & 5) != 5) {
504 if (noisy)
505 printk(KERN_INFO "%s: not 100%% native mode: "
506 "will probe irqs later\n", d->name);
507 /*
508 * This allows offboard ide-pci cards the enable a BIOS,
509 * verify interrupt settings of split-mirror pci-config
510 * space, place chipset into init-mode, and/or preserve
511 * an interrupt if the card is not native ide support.
512 */
513 ret = d->init_chipset ? d->init_chipset(dev, d->name) : 0;
514 if (ret < 0)
515 goto out;
516 pciirq = ret;
517 } else if (tried_config) {
518 if (noisy)
519 printk(KERN_INFO "%s: will probe irqs later\n", d->name);
520 pciirq = 0;
521 } else if (!pciirq) {
522 if (noisy)
523 printk(KERN_WARNING "%s: bad irq (%d): will probe later\n",
524 d->name, pciirq);
525 pciirq = 0;
526 } else {
527 if (d->init_chipset) {
528 ret = d->init_chipset(dev, d->name);
529 if (ret < 0)
530 goto out;
531 }
532 if (noisy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 printk(KERN_INFO "%s: 100%% native mode on irq %d\n",
534 d->name, pciirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
536
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200537 ret = pciirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538out:
539 return ret;
540}
541
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200542int ide_setup_pci_device(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200544 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200545 hw_regs_t hw[4], *hws[] = { NULL, NULL, NULL, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 int ret;
547
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200548 ret = do_ide_setup_pci_device(dev, d, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200550 if (ret >= 0) {
551 /* FIXME: silent failure can happen */
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200552 ide_pci_setup_ports(dev, d, ret, &idx[0], &hw[0], &hws[0]);
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200553
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200554 ide_device_add(idx, d, hws);
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return ret;
558}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559EXPORT_SYMBOL_GPL(ide_setup_pci_device);
560
561int ide_setup_pci_devices(struct pci_dev *dev1, struct pci_dev *dev2,
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200562 const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
564 struct pci_dev *pdev[] = { dev1, dev2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 int ret, i;
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200566 hw_regs_t hw[4], *hws[] = { NULL, NULL, NULL, NULL };
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200567 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 for (i = 0; i < 2; i++) {
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200570 ret = do_ide_setup_pci_device(pdev[i], d, !i);
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 /*
573 * FIXME: Mom, mom, they stole me the helper function to undo
574 * do_ide_setup_pci_device() on the first device!
575 */
576 if (ret < 0)
577 goto out;
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200578
579 /* FIXME: silent failure can happen */
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200580 ide_pci_setup_ports(pdev[i], d, ret, &idx[i*2], &hw[i*2],
581 &hws[i*2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
583
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200584 ide_device_add(idx, d, hws);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585out:
586 return ret;
587}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588EXPORT_SYMBOL_GPL(ide_setup_pci_devices);