blob: bc37dff8c675f5295840a0ea4faac97f0ae0cdee [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) {
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +020042 printk(KERN_INFO "%s %s: device not capable of full "
43 "native PCI mode\n", name, pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 return -EOPNOTSUPP;
45 }
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +020046 printk(KERN_INFO "%s %s: placing both ports into native PCI "
47 "mode\n", name, pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 (void) pci_write_config_byte(dev, PCI_CLASS_PROG, progif|5);
49 if (pci_read_config_byte(dev, PCI_CLASS_PROG, &progif) ||
50 (progif & 5) != 5) {
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +020051 printk(KERN_ERR "%s %s: rewrite of PROGIF failed, "
52 "wanted 0x%04x, got 0x%04x\n",
53 name, pci_name(dev), progif | 5, progif);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 return -EOPNOTSUPP;
55 }
56 }
57 return 0;
58}
59
60#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +020061static int ide_pci_clear_simplex(unsigned long dma_base, const char *name)
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +010062{
63 u8 dma_stat = inb(dma_base + 2);
64
65 outb(dma_stat & 0x60, dma_base + 2);
66 dma_stat = inb(dma_base + 2);
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +020067
68 return (dma_stat & 0x80) ? 1 : 0;
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +010069}
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/**
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +020072 * ide_pci_dma_base - setup BMIBA
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +020073 * @hwif: IDE interface
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +020074 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 *
Bartlomiej Zolnierkiewiczc58e79d2007-10-16 22:29:56 +020076 * Fetch the DMA Bus-Master-I/O-Base-Address (BMIBA) from PCI space.
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 */
78
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +020079unsigned long ide_pci_dma_base(ide_hwif_t *hwif, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +010081 struct pci_dev *dev = to_pci_dev(hwif->dev);
82 unsigned long dma_base = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Bartlomiej Zolnierkiewicz13572142008-07-15 21:21:49 +020084 if (hwif->host_flags & IDE_HFLAG_MMIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 return hwif->dma_base;
86
87 if (hwif->mate && hwif->mate->dma_base) {
88 dma_base = hwif->mate->dma_base - (hwif->channel ? 0 : 8);
89 } else {
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +020090 u8 baridx = (d->host_flags & IDE_HFLAG_CS5520) ? 2 : 4;
91
92 dma_base = pci_resource_start(dev, baridx);
93
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +010094 if (dma_base == 0) {
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +020095 printk(KERN_ERR "%s %s: DMA base is invalid\n",
96 d->name, pci_name(dev));
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +010097 return 0;
98 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 }
100
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +0100101 if (hwif->channel)
102 dma_base += 8;
103
Bartlomiej Zolnierkiewiczebb00fb2008-07-23 19:55:51 +0200104 return dma_base;
105}
106EXPORT_SYMBOL_GPL(ide_pci_dma_base);
107
108int ide_pci_check_simplex(ide_hwif_t *hwif, const struct ide_port_info *d)
109{
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200110 struct pci_dev *dev = to_pci_dev(hwif->dev);
Bartlomiej Zolnierkiewiczebb00fb2008-07-23 19:55:51 +0200111 u8 dma_stat;
112
113 if (d->host_flags & (IDE_HFLAG_MMIO | IDE_HFLAG_CS5520))
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100114 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100116 if (d->host_flags & IDE_HFLAG_CLEAR_SIMPLEX) {
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200117 if (ide_pci_clear_simplex(hwif->dma_base, d->name))
118 printk(KERN_INFO "%s %s: simplex device: DMA forced\n",
119 d->name, pci_name(dev));
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100120 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 }
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100122
123 /*
124 * If the device claims "simplex" DMA, this means that only one of
125 * the two interfaces can be trusted with DMA at any point in time
126 * (so we should enable DMA only on one of the two interfaces).
127 *
128 * FIXME: At this point we haven't probed the drives so we can't make
129 * the appropriate decision. Really we should defer this problem until
130 * we tune the drive then try to grab DMA ownership if we want to be
131 * the DMA end. This has to be become dynamic to handle hot-plug.
132 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200133 dma_stat = hwif->tp_ops->read_sff_dma_status(hwif);
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100134 if ((dma_stat & 0x80) && hwif->mate && hwif->mate->dma_base) {
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200135 printk(KERN_INFO "%s %s: simplex device: DMA disabled\n",
136 d->name, pci_name(dev));
Bartlomiej Zolnierkiewiczebb00fb2008-07-23 19:55:51 +0200137 return -1;
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100138 }
139out:
Bartlomiej Zolnierkiewiczebb00fb2008-07-23 19:55:51 +0200140 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
Bartlomiej Zolnierkiewiczebb00fb2008-07-23 19:55:51 +0200142EXPORT_SYMBOL_GPL(ide_pci_check_simplex);
Bartlomiej Zolnierkiewiczd54452f2008-04-26 22:25:21 +0200143
144/*
145 * Set up BM-DMA capability (PnP BIOS should have done this)
146 */
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200147int ide_pci_set_master(struct pci_dev *dev, const char *name)
Bartlomiej Zolnierkiewiczd54452f2008-04-26 22:25:21 +0200148{
149 u16 pcicmd;
150
151 pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
152
153 if ((pcicmd & PCI_COMMAND_MASTER) == 0) {
154 pci_set_master(dev);
155
156 if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd) ||
157 (pcicmd & PCI_COMMAND_MASTER) == 0) {
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200158 printk(KERN_ERR "%s %s: error updating PCICMD\n",
159 name, pci_name(dev));
Bartlomiej Zolnierkiewiczd54452f2008-04-26 22:25:21 +0200160 return -EIO;
161 }
162 }
163
164 return 0;
165}
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200166EXPORT_SYMBOL_GPL(ide_pci_set_master);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167#endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
168
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200169void ide_setup_pci_noise(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200171 printk(KERN_INFO "%s %s: IDE controller (0x%04x:0x%04x rev 0x%02x)\n",
172 d->name, pci_name(dev),
173 dev->vendor, dev->device, dev->revision);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175EXPORT_SYMBOL_GPL(ide_setup_pci_noise);
176
177
178/**
179 * ide_pci_enable - do PCI enables
180 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200181 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 *
183 * Enable the IDE PCI device. We attempt to enable the device in full
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +1100184 * but if that fails then we only need IO space. The PCI code should
185 * have setup the proper resources for us already for controllers in
186 * legacy mode.
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200187 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 * Returns zero on success or an error code
189 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200190
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200191static int ide_pci_enable(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Bartlomiej Zolnierkiewicz0d1bad22008-04-26 22:25:19 +0200193 int ret, bars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 if (pci_enable_device(dev)) {
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +1100196 ret = pci_enable_device_io(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 if (ret < 0) {
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200198 printk(KERN_WARNING "%s %s: couldn't enable device\n",
199 d->name, pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 goto out;
201 }
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200202 printk(KERN_WARNING "%s %s: BIOS configuration fixed\n",
203 d->name, pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
205
206 /*
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200207 * assume all devices can do 32-bit DMA for now, we can add
208 * a DMA mask field to the struct ide_port_info if we need it
209 * (or let lower level driver set the DMA mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 */
211 ret = pci_set_dma_mask(dev, DMA_32BIT_MASK);
212 if (ret < 0) {
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200213 printk(KERN_ERR "%s %s: can't set DMA mask\n",
214 d->name, pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 goto out;
216 }
217
Bartlomiej Zolnierkiewicz0d1bad22008-04-26 22:25:19 +0200218 if (d->host_flags & IDE_HFLAG_SINGLE)
219 bars = (1 << 2) - 1;
220 else
221 bars = (1 << 4) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Bartlomiej Zolnierkiewicz0d1bad22008-04-26 22:25:19 +0200223 if ((d->host_flags & IDE_HFLAG_NO_DMA) == 0) {
224 if (d->host_flags & IDE_HFLAG_CS5520)
225 bars |= (1 << 2);
226 else
227 bars |= (1 << 4);
228 }
229
230 ret = pci_request_selected_regions(dev, bars, d->name);
231 if (ret < 0)
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200232 printk(KERN_ERR "%s %s: can't reserve resources\n",
233 d->name, pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234out:
235 return ret;
236}
237
238/**
239 * ide_pci_configure - configure an unconfigured device
240 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200241 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 *
243 * Enable and configure the PCI device we have been passed.
244 * Returns zero on success or an error code.
245 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200246
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200247static int ide_pci_configure(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 u16 pcicmd = 0;
250 /*
251 * PnP BIOS was *supposed* to have setup this device, but we
252 * can do it ourselves, so long as the BIOS has assigned an IRQ
253 * (or possibly the device is using a "legacy header" for IRQs).
254 * Maybe the user deliberately *disabled* the device,
255 * but we'll eventually ignore it again if no drives respond.
256 */
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200257 if (ide_setup_pci_baseregs(dev, d->name) ||
258 pci_write_config_word(dev, PCI_COMMAND, pcicmd | PCI_COMMAND_IO)) {
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200259 printk(KERN_INFO "%s %s: device disabled (BIOS)\n",
260 d->name, pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return -ENODEV;
262 }
263 if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd)) {
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200264 printk(KERN_ERR "%s %s: error accessing PCI regs\n",
265 d->name, pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return -EIO;
267 }
268 if (!(pcicmd & PCI_COMMAND_IO)) {
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200269 printk(KERN_ERR "%s %s: unable to enable IDE controller\n",
270 d->name, pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 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);
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 /* 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;
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 /* Bad */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return -EINVAL;
301}
302
303/**
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200304 * ide_hw_configure - configure a hw_regs_t instance
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 * @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
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200309 * @hw: hw_regs_t instance corresponding to this port
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 *
311 * Perform the initial set up for the hardware interface structure. This
312 * is done per interface port rather than per PCI device. There may be
313 * more than one port per device.
314 *
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200315 * Returns zero on success or an error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200317
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200318static int ide_hw_configure(struct pci_dev *dev, const struct ide_port_info *d,
319 unsigned int port, int irq, hw_regs_t *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
321 unsigned long ctl = 0, base = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200323 if ((d->host_flags & IDE_HFLAG_ISA_PORTS) == 0) {
Sergei Shtylyov1baccff2008-04-26 17:36:31 +0200324 if (ide_pci_check_iomem(dev, d, 2 * port) ||
325 ide_pci_check_iomem(dev, d, 2 * port + 1)) {
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200326 printk(KERN_ERR "%s %s: I/O baseregs (BIOS) are "
327 "reported as MEM for port %d!\n",
328 d->name, pci_name(dev), port);
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200329 return -EINVAL;
Sergei Shtylyov1baccff2008-04-26 17:36:31 +0200330 }
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 ctl = pci_resource_start(dev, 2*port+1);
333 base = pci_resource_start(dev, 2*port);
Bartlomiej Zolnierkiewiczc1da6782008-07-16 20:33:41 +0200334 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 /* Use default values */
336 ctl = port ? 0x374 : 0x3f4;
337 base = port ? 0x170 : 0x1f0;
338 }
Bartlomiej Zolnierkiewiczbad7c822008-04-26 17:36:31 +0200339
Bartlomiej Zolnierkiewiczc1da6782008-07-16 20:33:41 +0200340 if (!base || !ctl) {
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200341 printk(KERN_ERR "%s %s: bad PCI BARs for port %d, skipping\n",
342 d->name, pci_name(dev), port);
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200343 return -EINVAL;
Bartlomiej Zolnierkiewiczc1da6782008-07-16 20:33:41 +0200344 }
345
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200346 memset(hw, 0, sizeof(*hw));
347 hw->irq = irq;
348 hw->dev = &dev->dev;
349 hw->chipset = d->chipset ? d->chipset : ide_pci;
350 ide_std_init_ports(hw, base, ctl | 2);
351
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200352 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100355#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356/**
357 * ide_hwif_setup_dma - configure DMA interface
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200358 * @hwif: IDE interface
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100359 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 *
361 * Set up the DMA base for the interface. Enable the master bits as
362 * necessary and attempt to bring the device DMA into a ready to use
363 * state
364 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200365
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200366int ide_hwif_setup_dma(ide_hwif_t *hwif, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100368 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Bartlomiej Zolnierkiewicz47b68782007-10-19 00:30:06 +0200370 if ((d->host_flags & IDE_HFLAG_NO_AUTODMA) == 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE &&
372 (dev->class & 0x80))) {
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200373 unsigned long base = ide_pci_dma_base(hwif, d);
Bartlomiej Zolnierkiewicz23658f82008-04-26 22:25:21 +0200374
Bartlomiej Zolnierkiewiczebb00fb2008-07-23 19:55:51 +0200375 if (base == 0)
376 return -1;
377
378 hwif->dma_base = base;
379
380 if (ide_pci_check_simplex(hwif, d) < 0)
381 return -1;
382
383 if (ide_pci_set_master(dev, d->name) < 0)
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200384 return -1;
Bartlomiej Zolnierkiewiczd54452f2008-04-26 22:25:21 +0200385
Bartlomiej Zolnierkiewicz13572142008-07-15 21:21:49 +0200386 if (hwif->host_flags & IDE_HFLAG_MMIO)
Bartlomiej Zolnierkiewicz63158d52008-04-26 22:25:21 +0200387 printk(KERN_INFO " %s: MMIO-DMA\n", hwif->name);
388 else
389 printk(KERN_INFO " %s: BM-DMA at 0x%04lx-0x%04lx\n",
390 hwif->name, base, base + 7);
391
392 hwif->extra_base = base + (hwif->channel ? 8 : 16);
393
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200394 if (ide_allocate_dma_engine(hwif))
395 return -1;
396
Bartlomiej Zolnierkiewicz81e8d5a2008-07-23 19:55:51 +0200397 hwif->dma_ops = &sff_dma_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
Bartlomiej Zolnierkiewiczd54452f2008-04-26 22:25:21 +0200399
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200400 return 0;
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200401}
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100402#endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404/**
405 * ide_setup_pci_controller - set up IDE PCI
406 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200407 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 * @noisy: verbose flag
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 *
410 * Set up the PCI and controller side of the IDE interface. This brings
411 * up the PCI side of the device, checks that the device is enabled
412 * and enables it if need be
413 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200414
Bartlomiej Zolnierkiewicza95925a2008-07-24 22:53:11 +0200415static int ide_setup_pci_controller(struct pci_dev *dev,
416 const struct ide_port_info *d, int noisy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
418 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 u16 pcicmd;
420
421 if (noisy)
422 ide_setup_pci_noise(dev, d);
423
424 ret = ide_pci_enable(dev, d);
425 if (ret < 0)
426 goto out;
427
428 ret = pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
429 if (ret < 0) {
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200430 printk(KERN_ERR "%s %s: error accessing PCI regs\n",
431 d->name, pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 goto out;
433 }
434 if (!(pcicmd & PCI_COMMAND_IO)) { /* is device disabled? */
435 ret = ide_pci_configure(dev, d);
436 if (ret < 0)
437 goto out;
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200438 printk(KERN_INFO "%s %s: device enabled (Linux)\n",
439 d->name, pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442out:
443 return ret;
444}
445
446/**
447 * ide_pci_setup_ports - configure ports/devices on PCI IDE
448 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200449 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 * @pciirq: IRQ line
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200451 * @hw: hw_regs_t instances corresponding to this PCI IDE device
452 * @hws: hw_regs_t pointers table to update
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 *
454 * Scan the interfaces attached to this device and do any
455 * necessary per port setup. Attach the devices and ask the
456 * generic DMA layer to do its work for us.
457 *
458 * Normally called automaticall from do_ide_pci_setup_device,
459 * but is also used directly as a helper function by some controllers
460 * where the chipset setup is not the default PCI IDE one.
461 */
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200462
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200463void ide_pci_setup_ports(struct pci_dev *dev, const struct ide_port_info *d,
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200464 int pciirq, hw_regs_t *hw, hw_regs_t **hws)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200466 int channels = (d->host_flags & IDE_HFLAG_SINGLE) ? 1 : 2, port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 u8 tmp;
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 /*
470 * Set up the IDE ports
471 */
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200472
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200473 for (port = 0; port < channels; ++port) {
Bartlomiej Zolnierkiewiczc0ae5022009-01-06 17:20:52 +0100474 const struct ide_pci_enablebit *e = &d->enablebits[port];
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (e->reg && (pci_read_config_byte(dev, e->reg, &tmp) ||
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200477 (tmp & e->mask) != e->val)) {
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200478 printk(KERN_INFO "%s %s: IDE port disabled\n",
479 d->name, pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 continue; /* port not enabled */
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200483 if (ide_hw_configure(dev, d, port, pciirq, hw + port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 continue;
485
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200486 *(hws + port) = hw + port;
Bartlomiej Zolnierkiewicz1ebf7492008-02-02 19:56:30 +0100487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489EXPORT_SYMBOL_GPL(ide_pci_setup_ports);
490
491/*
492 * ide_setup_pci_device() looks at the primary/secondary interfaces
493 * on a PCI IDE device and, if they are enabled, prepares the IDE driver
494 * for use with them. This generic code works for most PCI chipsets.
495 *
496 * One thing that is not standardized is the location of the
497 * primary/secondary interface "enable/disable" bits. For chipsets that
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200498 * we "know" about, this information is in the struct ide_port_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 * for all other chipsets, we just assume both interfaces are enabled.
500 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200501static int do_ide_setup_pci_device(struct pci_dev *dev,
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200502 const struct ide_port_info *d,
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200503 u8 noisy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 int pciirq, ret;
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 /*
508 * Can we trust the reported IRQ?
509 */
510 pciirq = dev->irq;
511
Bartlomiej Zolnierkiewicz708e5f92008-07-24 22:53:11 +0200512 /*
513 * This allows offboard ide-pci cards the enable a BIOS,
514 * verify interrupt settings of split-mirror pci-config
515 * space, place chipset into init-mode, and/or preserve
516 * an interrupt if the card is not native ide support.
517 */
Bartlomiej Zolnierkiewicza326b022008-07-24 22:53:33 +0200518 ret = d->init_chipset ? d->init_chipset(dev) : 0;
Bartlomiej Zolnierkiewicz708e5f92008-07-24 22:53:11 +0200519 if (ret < 0)
520 goto out;
521
Bartlomiej Zolnierkiewicz8c6de942009-01-06 17:20:58 +0100522 if (ide_pci_is_in_compatibility_mode(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 if (noisy)
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200524 printk(KERN_INFO "%s %s: not 100%% native mode: will "
525 "probe irqs later\n", d->name, pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 pciirq = ret;
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200527 } else if (!pciirq && noisy) {
528 printk(KERN_WARNING "%s %s: bad irq (%d): will probe later\n",
529 d->name, pci_name(dev), pciirq);
530 } else if (noisy) {
531 printk(KERN_INFO "%s %s: 100%% native mode on irq %d\n",
532 d->name, pci_name(dev), pciirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
534
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200535 ret = pciirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536out:
537 return ret;
538}
539
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +0200540int ide_pci_init_one(struct pci_dev *dev, const struct ide_port_info *d,
541 void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +0200543 struct ide_host *host;
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200544 hw_regs_t hw[4], *hws[] = { NULL, NULL, NULL, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 int ret;
546
Bartlomiej Zolnierkiewicza742d6c2008-07-24 22:53:12 +0200547 ret = ide_setup_pci_controller(dev, d, 1);
548 if (ret < 0)
549 goto out;
550
Bartlomiej Zolnierkiewicz8c2eece2008-07-24 22:53:12 +0200551 ide_pci_setup_ports(dev, d, 0, &hw[0], &hws[0]);
552
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +0200553 host = ide_host_alloc(d, hws);
554 if (host == NULL) {
555 ret = -ENOMEM;
556 goto out;
557 }
558
559 host->dev[0] = &dev->dev;
560
561 host->host_priv = priv;
562
Bartlomiej Zolnierkiewiczef0b0422008-07-24 22:53:19 +0200563 pci_set_drvdata(dev, host);
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +0200564
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200565 ret = do_ide_setup_pci_device(dev, d, 1);
Bartlomiej Zolnierkiewicz8c2eece2008-07-24 22:53:12 +0200566 if (ret < 0)
567 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Bartlomiej Zolnierkiewicz8c2eece2008-07-24 22:53:12 +0200569 /* fixup IRQ */
570 hw[1].irq = hw[0].irq = ret;
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200571
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +0200572 ret = ide_host_register(host, d, hws);
573 if (ret)
574 ide_host_free(host);
Bartlomiej Zolnierkiewicza742d6c2008-07-24 22:53:12 +0200575out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 return ret;
577}
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +0200578EXPORT_SYMBOL_GPL(ide_pci_init_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +0200580int ide_pci_init_two(struct pci_dev *dev1, struct pci_dev *dev2,
581 const struct ide_port_info *d, void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
583 struct pci_dev *pdev[] = { dev1, dev2 };
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +0200584 struct ide_host *host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 int ret, i;
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200586 hw_regs_t hw[4], *hws[] = { NULL, NULL, NULL, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 for (i = 0; i < 2; i++) {
Bartlomiej Zolnierkiewicza742d6c2008-07-24 22:53:12 +0200589 ret = ide_setup_pci_controller(pdev[i], d, !i);
590 if (ret < 0)
591 goto out;
592
Bartlomiej Zolnierkiewicz8c2eece2008-07-24 22:53:12 +0200593 ide_pci_setup_ports(pdev[i], d, 0, &hw[i*2], &hws[i*2]);
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +0200594 }
Bartlomiej Zolnierkiewicz8c2eece2008-07-24 22:53:12 +0200595
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +0200596 host = ide_host_alloc(d, hws);
597 if (host == NULL) {
598 ret = -ENOMEM;
599 goto out;
600 }
601
602 host->dev[0] = &dev1->dev;
603 host->dev[1] = &dev2->dev;
604
605 host->host_priv = priv;
606
Bartlomiej Zolnierkiewiczef0b0422008-07-24 22:53:19 +0200607 pci_set_drvdata(pdev[0], host);
608 pci_set_drvdata(pdev[1], host);
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +0200609
610 for (i = 0; i < 2; i++) {
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200611 ret = do_ide_setup_pci_device(pdev[i], d, !i);
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 /*
614 * FIXME: Mom, mom, they stole me the helper function to undo
615 * do_ide_setup_pci_device() on the first device!
616 */
617 if (ret < 0)
618 goto out;
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200619
Bartlomiej Zolnierkiewicz8c2eece2008-07-24 22:53:12 +0200620 /* fixup IRQ */
621 hw[i*2 + 1].irq = hw[i*2].irq = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
623
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +0200624 ret = ide_host_register(host, d, hws);
625 if (ret)
626 ide_host_free(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627out:
628 return ret;
629}
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +0200630EXPORT_SYMBOL_GPL(ide_pci_init_two);
Bartlomiej Zolnierkiewiczef0b0422008-07-24 22:53:19 +0200631
632void ide_pci_remove(struct pci_dev *dev)
633{
634 struct ide_host *host = pci_get_drvdata(dev);
635 struct pci_dev *dev2 = host->dev[1] ? to_pci_dev(host->dev[1]) : NULL;
636 int bars;
637
638 if (host->host_flags & IDE_HFLAG_SINGLE)
639 bars = (1 << 2) - 1;
640 else
641 bars = (1 << 4) - 1;
642
643 if ((host->host_flags & IDE_HFLAG_NO_DMA) == 0) {
644 if (host->host_flags & IDE_HFLAG_CS5520)
645 bars |= (1 << 2);
646 else
647 bars |= (1 << 4);
648 }
649
650 ide_host_remove(host);
651
652 if (dev2)
653 pci_release_selected_regions(dev2, bars);
654 pci_release_selected_regions(dev, bars);
655
656 if (dev2)
657 pci_disable_device(dev2);
658 pci_disable_device(dev);
659}
660EXPORT_SYMBOL_GPL(ide_pci_remove);
Bartlomiej Zolnierkiewiczfeb22b72008-10-10 22:39:32 +0200661
662#ifdef CONFIG_PM
663int ide_pci_suspend(struct pci_dev *dev, pm_message_t state)
664{
665 pci_save_state(dev);
666 pci_disable_device(dev);
667 pci_set_power_state(dev, pci_choose_state(dev, state));
668
669 return 0;
670}
671EXPORT_SYMBOL_GPL(ide_pci_suspend);
672
673int ide_pci_resume(struct pci_dev *dev)
674{
675 struct ide_host *host = pci_get_drvdata(dev);
676 int rc;
677
678 pci_set_power_state(dev, PCI_D0);
679
680 rc = pci_enable_device(dev);
681 if (rc)
682 return rc;
683
684 pci_restore_state(dev);
685 pci_set_master(dev);
686
687 if (host->init_chipset)
688 host->init_chipset(dev);
689
690 return 0;
691}
692EXPORT_SYMBOL_GPL(ide_pci_resume);
693#endif