blob: 8812eaa7f16907fa146649f3e88a005f20cbb5d4 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/**
24 * ide_setup_pci_baseregs - place a PCI IDE controller native
25 * @dev: PCI device of interface to switch native
26 * @name: Name of interface
27 *
28 * We attempt to place the PCI interface into PCI native mode. If
29 * we succeed the BARs are ok and the controller is in PCI mode.
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +020030 * Returns 0 on success or an errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 *
32 * FIXME: if we program the interface and then fail to set the BARS
33 * we don't switch it back to legacy mode. Do we actually care ??
34 */
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +020035
36static int ide_setup_pci_baseregs(struct pci_dev *dev, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
38 u8 progif = 0;
39
40 /*
41 * Place both IDE interfaces into PCI "native" mode:
42 */
43 if (pci_read_config_byte(dev, PCI_CLASS_PROG, &progif) ||
44 (progif & 5) != 5) {
45 if ((progif & 0xa) != 0xa) {
46 printk(KERN_INFO "%s: device not capable of full "
47 "native PCI mode\n", name);
48 return -EOPNOTSUPP;
49 }
50 printk("%s: placing both ports into native PCI mode\n", name);
51 (void) pci_write_config_byte(dev, PCI_CLASS_PROG, progif|5);
52 if (pci_read_config_byte(dev, PCI_CLASS_PROG, &progif) ||
53 (progif & 5) != 5) {
54 printk(KERN_ERR "%s: rewrite of PROGIF failed, wanted "
55 "0x%04x, got 0x%04x\n",
56 name, progif|5, progif);
57 return -EOPNOTSUPP;
58 }
59 }
60 return 0;
61}
62
63#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
Bartlomiej Zolnierkiewicz8ac2b422008-02-01 23:09:30 +010064static void ide_pci_clear_simplex(unsigned long dma_base, const char *name)
65{
66 u8 dma_stat = inb(dma_base + 2);
67
68 outb(dma_stat & 0x60, dma_base + 2);
69 dma_stat = inb(dma_base + 2);
70 if (dma_stat & 0x80)
71 printk(KERN_INFO "%s: simplex device: DMA forced\n", name);
72}
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/**
75 * ide_get_or_set_dma_base - setup BMIBA
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +020076 * @d: IDE port info
77 * @hwif: IDE interface
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 *
Bartlomiej Zolnierkiewiczc58e79d2007-10-16 22:29:56 +020079 * Fetch the DMA Bus-Master-I/O-Base-Address (BMIBA) from PCI space.
80 * Where a device has a partner that is already in DMA mode we check
81 * and enforce IDE simplex rules.
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 */
83
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +020084static 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 -070085{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +010086 struct pci_dev *dev = to_pci_dev(hwif->dev);
87 unsigned long dma_base = 0;
Bartlomiej Zolnierkiewicz8ac2b422008-02-01 23:09:30 +010088 u8 dma_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 if (hwif->mmio)
91 return hwif->dma_base;
92
93 if (hwif->mate && hwif->mate->dma_base) {
94 dma_base = hwif->mate->dma_base - (hwif->channel ? 0 : 8);
95 } else {
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +020096 u8 baridx = (d->host_flags & IDE_HFLAG_CS5520) ? 2 : 4;
97
98 dma_base = pci_resource_start(dev, baridx);
99
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +0100100 if (dma_base == 0) {
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +0200101 printk(KERN_ERR "%s: DMA base is invalid\n", d->name);
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +0100102 return 0;
103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
105
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +0100106 if (hwif->channel)
107 dma_base += 8;
108
Bartlomiej Zolnierkiewicz8ac2b422008-02-01 23:09:30 +0100109 if (d->host_flags & IDE_HFLAG_CS5520)
110 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Bartlomiej Zolnierkiewicz8ac2b422008-02-01 23:09:30 +0100112 if (d->host_flags & IDE_HFLAG_CLEAR_SIMPLEX) {
113 ide_pci_clear_simplex(dma_base, d->name);
114 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 }
Bartlomiej Zolnierkiewicz8ac2b422008-02-01 23:09:30 +0100116
117 /*
118 * If the device claims "simplex" DMA, this means that only one of
119 * the two interfaces can be trusted with DMA at any point in time
120 * (so we should enable DMA only on one of the two interfaces).
121 *
122 * FIXME: At this point we haven't probed the drives so we can't make
123 * the appropriate decision. Really we should defer this problem until
124 * we tune the drive then try to grab DMA ownership if we want to be
125 * the DMA end. This has to be become dynamic to handle hot-plug.
126 */
127 dma_stat = hwif->INB(dma_base + 2);
128 if ((dma_stat & 0x80) && hwif->mate && hwif->mate->dma_base) {
129 printk(KERN_INFO "%s: simplex device: DMA disabled\n", d->name);
130 dma_base = 0;
131 }
132out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return dma_base;
134}
135#endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
136
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200137void ide_setup_pci_noise(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Bartlomiej Zolnierkiewiczbde07e52007-10-20 00:32:36 +0200139 printk(KERN_INFO "%s: IDE controller (0x%04x:0x%04x rev 0x%02x) at "
140 " PCI slot %s\n", d->name, dev->vendor, dev->device,
141 dev->revision, pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143EXPORT_SYMBOL_GPL(ide_setup_pci_noise);
144
145
146/**
147 * ide_pci_enable - do PCI enables
148 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200149 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 *
151 * Enable the IDE PCI device. We attempt to enable the device in full
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +1100152 * but if that fails then we only need IO space. The PCI code should
153 * have setup the proper resources for us already for controllers in
154 * legacy mode.
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200155 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 * Returns zero on success or an error code
157 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200158
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200159static int ide_pci_enable(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Bartlomiej Zolnierkiewicz0d1bad22008-04-26 22:25:19 +0200161 int ret, bars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 if (pci_enable_device(dev)) {
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +1100164 ret = pci_enable_device_io(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 if (ret < 0) {
166 printk(KERN_WARNING "%s: (ide_setup_pci_device:) "
167 "Could not enable device.\n", d->name);
168 goto out;
169 }
170 printk(KERN_WARNING "%s: BIOS configuration fixed.\n", d->name);
171 }
172
173 /*
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200174 * assume all devices can do 32-bit DMA for now, we can add
175 * a DMA mask field to the struct ide_port_info if we need it
176 * (or let lower level driver set the DMA mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 */
178 ret = pci_set_dma_mask(dev, DMA_32BIT_MASK);
179 if (ret < 0) {
180 printk(KERN_ERR "%s: can't set dma mask\n", d->name);
181 goto out;
182 }
183
Bartlomiej Zolnierkiewicz0d1bad22008-04-26 22:25:19 +0200184 if (d->host_flags & IDE_HFLAG_SINGLE)
185 bars = (1 << 2) - 1;
186 else
187 bars = (1 << 4) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Bartlomiej Zolnierkiewicz0d1bad22008-04-26 22:25:19 +0200189 if ((d->host_flags & IDE_HFLAG_NO_DMA) == 0) {
190 if (d->host_flags & IDE_HFLAG_CS5520)
191 bars |= (1 << 2);
192 else
193 bars |= (1 << 4);
194 }
195
196 ret = pci_request_selected_regions(dev, bars, d->name);
197 if (ret < 0)
198 printk(KERN_ERR "%s: can't reserve resources\n", d->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199out:
200 return ret;
201}
202
203/**
204 * ide_pci_configure - configure an unconfigured device
205 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200206 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 *
208 * Enable and configure the PCI device we have been passed.
209 * Returns zero on success or an error code.
210 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200211
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200212static int ide_pci_configure(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
214 u16 pcicmd = 0;
215 /*
216 * PnP BIOS was *supposed* to have setup this device, but we
217 * can do it ourselves, so long as the BIOS has assigned an IRQ
218 * (or possibly the device is using a "legacy header" for IRQs).
219 * Maybe the user deliberately *disabled* the device,
220 * but we'll eventually ignore it again if no drives respond.
221 */
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200222 if (ide_setup_pci_baseregs(dev, d->name) ||
223 pci_write_config_word(dev, PCI_COMMAND, pcicmd | PCI_COMMAND_IO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 printk(KERN_INFO "%s: device disabled (BIOS)\n", d->name);
225 return -ENODEV;
226 }
227 if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd)) {
228 printk(KERN_ERR "%s: error accessing PCI regs\n", d->name);
229 return -EIO;
230 }
231 if (!(pcicmd & PCI_COMMAND_IO)) {
232 printk(KERN_ERR "%s: unable to enable IDE controller\n", d->name);
233 return -ENXIO;
234 }
235 return 0;
236}
237
238/**
239 * ide_pci_check_iomem - check a register is I/O
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200240 * @dev: PCI device
241 * @d: IDE port info
242 * @bar: BAR number
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 *
Sergei Shtylyov1baccff2008-04-26 17:36:31 +0200244 * Checks if a BAR is configured and points to MMIO space. If so,
245 * return an error code. Otherwise return 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200247
Sergei Shtylyov1baccff2008-04-26 17:36:31 +0200248static int ide_pci_check_iomem(struct pci_dev *dev, const struct ide_port_info *d,
249 int bar)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 ulong flags = pci_resource_flags(dev, bar);
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 /* Unconfigured ? */
254 if (!flags || pci_resource_len(dev, bar) == 0)
255 return 0;
256
Sergei Shtylyov1baccff2008-04-26 17:36:31 +0200257 /* I/O space */
258 if (flags & IORESOURCE_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return 0;
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 /* Bad */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return -EINVAL;
263}
264
265/**
266 * ide_hwif_configure - configure an IDE interface
267 * @dev: PCI device holding interface
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200268 * @d: IDE port info
Bartlomiej Zolnierkiewicz1ebf7492008-02-02 19:56:30 +0100269 * @port: port number
270 * @irq: PCI IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 *
272 * Perform the initial set up for the hardware interface structure. This
273 * is done per interface port rather than per PCI device. There may be
274 * more than one port per device.
275 *
276 * Returns the new hardware interface structure, or NULL on a failure
277 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200278
Bartlomiej Zolnierkiewicz1ebf7492008-02-02 19:56:30 +0100279static ide_hwif_t *ide_hwif_configure(struct pci_dev *dev,
280 const struct ide_port_info *d,
281 unsigned int port, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 unsigned long ctl = 0, base = 0;
284 ide_hwif_t *hwif;
Bartlomiej Zolnierkiewicz79127c32008-01-26 20:13:08 +0100285 struct hw_regs_s hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200287 if ((d->host_flags & IDE_HFLAG_ISA_PORTS) == 0) {
Sergei Shtylyov1baccff2008-04-26 17:36:31 +0200288 if (ide_pci_check_iomem(dev, d, 2 * port) ||
289 ide_pci_check_iomem(dev, d, 2 * port + 1)) {
290 printk(KERN_ERR "%s: I/O baseregs (BIOS) are reported "
291 "as MEM for port %d!\n", d->name, port);
292 return NULL;
293 }
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 ctl = pci_resource_start(dev, 2*port+1);
296 base = pci_resource_start(dev, 2*port);
297 if ((ctl && !base) || (base && !ctl)) {
298 printk(KERN_ERR "%s: inconsistent baseregs (BIOS) "
299 "for port %d, skipping\n", d->name, port);
300 return NULL;
301 }
302 }
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200303 if (!ctl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 /* Use default values */
305 ctl = port ? 0x374 : 0x3f4;
306 base = port ? 0x170 : 0x1f0;
307 }
Bartlomiej Zolnierkiewiczbad7c822008-04-26 17:36:31 +0200308
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +0200309 hwif = ide_find_port_slot(d);
Bartlomiej Zolnierkiewiczbad7c822008-04-26 17:36:31 +0200310 if (hwif == NULL) {
311 printk(KERN_ERR "%s: too many IDE interfaces, no room in "
312 "table\n", d->name);
313 return NULL;
314 }
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200315
Bartlomiej Zolnierkiewicz79127c32008-01-26 20:13:08 +0100316 memset(&hw, 0, sizeof(hw));
Bartlomiej Zolnierkiewiczaab8ad92008-04-18 00:46:35 +0200317 hw.irq = irq;
Bartlomiej Zolnierkiewicz79127c32008-01-26 20:13:08 +0100318 hw.dev = &dev->dev;
319 hw.chipset = d->chipset ? d->chipset : ide_pci;
320 ide_std_init_ports(&hw, base, ctl | 2);
321
Bartlomiej Zolnierkiewicz79127c32008-01-26 20:13:08 +0100322 ide_init_port_hw(hwif, &hw);
323
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100324 hwif->dev = &dev->dev;
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200325 hwif->cds = d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 return hwif;
328}
329
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100330#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331/**
332 * ide_hwif_setup_dma - configure DMA interface
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200333 * @hwif: IDE interface
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100334 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 *
336 * Set up the DMA base for the interface. Enable the master bits as
337 * necessary and attempt to bring the device DMA into a ready to use
338 * state
339 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200340
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100341void ide_hwif_setup_dma(ide_hwif_t *hwif, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100343 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 u16 pcicmd;
Bartlomiej Zolnierkiewicz47b68782007-10-19 00:30:06 +0200345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
347
Bartlomiej Zolnierkiewicz47b68782007-10-19 00:30:06 +0200348 if ((d->host_flags & IDE_HFLAG_NO_AUTODMA) == 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE &&
350 (dev->class & 0x80))) {
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +0200351 unsigned long dma_base = ide_get_or_set_dma_base(d, hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (dma_base && !(pcicmd & PCI_COMMAND_MASTER)) {
353 /*
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200354 * Set up BM-DMA capability
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 * (PnP BIOS should have done this)
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200356 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 pci_set_master(dev);
358 if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd) || !(pcicmd & PCI_COMMAND_MASTER)) {
359 printk(KERN_ERR "%s: %s error updating PCICMD\n",
360 hwif->name, d->name);
361 dma_base = 0;
362 }
363 }
364 if (dma_base) {
365 if (d->init_dma) {
366 d->init_dma(hwif, dma_base);
367 } else {
Sergei Shtylyovecf327962008-02-01 23:09:30 +0100368 ide_setup_dma(hwif, dma_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
370 } else {
371 printk(KERN_INFO "%s: %s Bus-Master DMA disabled "
372 "(BIOS)\n", hwif->name, d->name);
373 }
374 }
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200375}
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100376#endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378/**
379 * ide_setup_pci_controller - set up IDE PCI
380 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200381 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 * @noisy: verbose flag
383 * @config: returned as 1 if we configured the hardware
384 *
385 * Set up the PCI and controller side of the IDE interface. This brings
386 * up the PCI side of the device, checks that the device is enabled
387 * and enables it if need be
388 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200389
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200390static 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 -0700391{
392 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 u16 pcicmd;
394
395 if (noisy)
396 ide_setup_pci_noise(dev, d);
397
398 ret = ide_pci_enable(dev, d);
399 if (ret < 0)
400 goto out;
401
402 ret = pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
403 if (ret < 0) {
404 printk(KERN_ERR "%s: error accessing PCI regs\n", d->name);
405 goto out;
406 }
407 if (!(pcicmd & PCI_COMMAND_IO)) { /* is device disabled? */
408 ret = ide_pci_configure(dev, d);
409 if (ret < 0)
410 goto out;
411 *config = 1;
412 printk(KERN_INFO "%s: device enabled (Linux)\n", d->name);
413 }
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415out:
416 return ret;
417}
418
419/**
420 * ide_pci_setup_ports - configure ports/devices on PCI IDE
421 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200422 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 * @pciirq: IRQ line
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200424 * @idx: ATA index table to update
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 *
426 * Scan the interfaces attached to this device and do any
427 * necessary per port setup. Attach the devices and ask the
428 * generic DMA layer to do its work for us.
429 *
430 * Normally called automaticall from do_ide_pci_setup_device,
431 * but is also used directly as a helper function by some controllers
432 * where the chipset setup is not the default PCI IDE one.
433 */
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200434
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200435void 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 -0700436{
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200437 int channels = (d->host_flags & IDE_HFLAG_SINGLE) ? 1 : 2, port;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100438 ide_hwif_t *hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 u8 tmp;
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 /*
442 * Set up the IDE ports
443 */
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200444
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200445 for (port = 0; port < channels; ++port) {
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200446 const ide_pci_enablebit_t *e = &(d->enablebits[port]);
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 if (e->reg && (pci_read_config_byte(dev, e->reg, &tmp) ||
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200449 (tmp & e->mask) != e->val)) {
450 printk(KERN_INFO "%s: IDE port disabled\n", d->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 continue; /* port not enabled */
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Bartlomiej Zolnierkiewicz1ebf7492008-02-02 19:56:30 +0100454 hwif = ide_hwif_configure(dev, d, port, pciirq);
455 if (hwif == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 continue;
457
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200458 *(idx + port) = hwif->index;
Bartlomiej Zolnierkiewicz1ebf7492008-02-02 19:56:30 +0100459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461EXPORT_SYMBOL_GPL(ide_pci_setup_ports);
462
463/*
464 * ide_setup_pci_device() looks at the primary/secondary interfaces
465 * on a PCI IDE device and, if they are enabled, prepares the IDE driver
466 * for use with them. This generic code works for most PCI chipsets.
467 *
468 * One thing that is not standardized is the location of the
469 * primary/secondary interface "enable/disable" bits. For chipsets that
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200470 * we "know" about, this information is in the struct ide_port_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 * for all other chipsets, we just assume both interfaces are enabled.
472 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200473static int do_ide_setup_pci_device(struct pci_dev *dev,
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200474 const struct ide_port_info *d,
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200475 u8 *idx, u8 noisy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 int tried_config = 0;
478 int pciirq, ret;
479
480 ret = ide_setup_pci_controller(dev, d, noisy, &tried_config);
481 if (ret < 0)
482 goto out;
483
484 /*
485 * Can we trust the reported IRQ?
486 */
487 pciirq = dev->irq;
488
489 /* Is it an "IDE storage" device in non-PCI mode? */
490 if ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE && (dev->class & 5) != 5) {
491 if (noisy)
492 printk(KERN_INFO "%s: not 100%% native mode: "
493 "will probe irqs later\n", d->name);
494 /*
495 * This allows offboard ide-pci cards the enable a BIOS,
496 * verify interrupt settings of split-mirror pci-config
497 * space, place chipset into init-mode, and/or preserve
498 * an interrupt if the card is not native ide support.
499 */
500 ret = d->init_chipset ? d->init_chipset(dev, d->name) : 0;
501 if (ret < 0)
502 goto out;
503 pciirq = ret;
504 } else if (tried_config) {
505 if (noisy)
506 printk(KERN_INFO "%s: will probe irqs later\n", d->name);
507 pciirq = 0;
508 } else if (!pciirq) {
509 if (noisy)
510 printk(KERN_WARNING "%s: bad irq (%d): will probe later\n",
511 d->name, pciirq);
512 pciirq = 0;
513 } else {
514 if (d->init_chipset) {
515 ret = d->init_chipset(dev, d->name);
516 if (ret < 0)
517 goto out;
518 }
519 if (noisy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 printk(KERN_INFO "%s: 100%% native mode on irq %d\n",
521 d->name, pciirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
523
524 /* FIXME: silent failure can happen */
525
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200526 ide_pci_setup_ports(dev, d, pciirq, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527out:
528 return ret;
529}
530
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200531int ide_setup_pci_device(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200533 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 int ret;
535
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200536 ret = do_ide_setup_pci_device(dev, d, &idx[0], 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200538 if (ret >= 0)
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100539 ide_device_add(idx, d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return ret;
542}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543EXPORT_SYMBOL_GPL(ide_setup_pci_device);
544
545int ide_setup_pci_devices(struct pci_dev *dev1, struct pci_dev *dev2,
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200546 const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 struct pci_dev *pdev[] = { dev1, dev2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 int ret, i;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200550 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552 for (i = 0; i < 2; i++) {
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200553 ret = do_ide_setup_pci_device(pdev[i], d, &idx[i*2], !i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 /*
555 * FIXME: Mom, mom, they stole me the helper function to undo
556 * do_ide_setup_pci_device() on the first device!
557 */
558 if (ret < 0)
559 goto out;
560 }
561
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100562 ide_device_add(idx, d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563out:
564 return ret;
565}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566EXPORT_SYMBOL_GPL(ide_setup_pci_devices);