blob: 804c3ef245f9289167cf31d8b39999768f65428b [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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 */
77
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +020078unsigned long ide_pci_dma_base(ide_hwif_t *hwif, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +010080 struct pci_dev *dev = to_pci_dev(hwif->dev);
81 unsigned long dma_base = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Bartlomiej Zolnierkiewicz13572142008-07-15 21:21:49 +020083 if (hwif->host_flags & IDE_HFLAG_MMIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 return hwif->dma_base;
85
86 if (hwif->mate && hwif->mate->dma_base) {
87 dma_base = hwif->mate->dma_base - (hwif->channel ? 0 : 8);
88 } else {
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +020089 u8 baridx = (d->host_flags & IDE_HFLAG_CS5520) ? 2 : 4;
90
91 dma_base = pci_resource_start(dev, baridx);
92
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +010093 if (dma_base == 0) {
Bartlomiej Zolnierkiewicz9ffcf362007-10-19 00:30:07 +020094 printk(KERN_ERR "%s: DMA base is invalid\n", d->name);
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +010095 return 0;
96 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
98
Bartlomiej Zolnierkiewiczaea5d372008-01-26 20:12:59 +010099 if (hwif->channel)
100 dma_base += 8;
101
Bartlomiej Zolnierkiewiczebb00fb2008-07-23 19:55:51 +0200102 return dma_base;
103}
104EXPORT_SYMBOL_GPL(ide_pci_dma_base);
105
106int ide_pci_check_simplex(ide_hwif_t *hwif, const struct ide_port_info *d)
107{
108 u8 dma_stat;
109
110 if (d->host_flags & (IDE_HFLAG_MMIO | IDE_HFLAG_CS5520))
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100111 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100113 if (d->host_flags & IDE_HFLAG_CLEAR_SIMPLEX) {
Bartlomiej Zolnierkiewiczebb00fb2008-07-23 19:55:51 +0200114 ide_pci_clear_simplex(hwif->dma_base, d->name);
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100115 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100117
118 /*
119 * If the device claims "simplex" DMA, this means that only one of
120 * the two interfaces can be trusted with DMA at any point in time
121 * (so we should enable DMA only on one of the two interfaces).
122 *
123 * FIXME: At this point we haven't probed the drives so we can't make
124 * the appropriate decision. Really we should defer this problem until
125 * we tune the drive then try to grab DMA ownership if we want to be
126 * the DMA end. This has to be become dynamic to handle hot-plug.
127 */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200128 dma_stat = hwif->tp_ops->read_sff_dma_status(hwif);
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100129 if ((dma_stat & 0x80) && hwif->mate && hwif->mate->dma_base) {
130 printk(KERN_INFO "%s: simplex device: DMA disabled\n", d->name);
Bartlomiej Zolnierkiewiczebb00fb2008-07-23 19:55:51 +0200131 return -1;
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100132 }
133out:
Bartlomiej Zolnierkiewiczebb00fb2008-07-23 19:55:51 +0200134 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
Bartlomiej Zolnierkiewiczebb00fb2008-07-23 19:55:51 +0200136EXPORT_SYMBOL_GPL(ide_pci_check_simplex);
Bartlomiej Zolnierkiewiczd54452f2008-04-26 22:25:21 +0200137
138/*
139 * Set up BM-DMA capability (PnP BIOS should have done this)
140 */
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200141int ide_pci_set_master(struct pci_dev *dev, const char *name)
Bartlomiej Zolnierkiewiczd54452f2008-04-26 22:25:21 +0200142{
143 u16 pcicmd;
144
145 pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
146
147 if ((pcicmd & PCI_COMMAND_MASTER) == 0) {
148 pci_set_master(dev);
149
150 if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd) ||
151 (pcicmd & PCI_COMMAND_MASTER) == 0) {
152 printk(KERN_ERR "%s: error updating PCICMD on %s\n",
153 name, pci_name(dev));
154 return -EIO;
155 }
156 }
157
158 return 0;
159}
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200160EXPORT_SYMBOL_GPL(ide_pci_set_master);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161#endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
162
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200163void ide_setup_pci_noise(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Bartlomiej Zolnierkiewiczbde07e52007-10-20 00:32:36 +0200165 printk(KERN_INFO "%s: IDE controller (0x%04x:0x%04x rev 0x%02x) at "
166 " PCI slot %s\n", d->name, dev->vendor, dev->device,
167 dev->revision, pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169EXPORT_SYMBOL_GPL(ide_setup_pci_noise);
170
171
172/**
173 * ide_pci_enable - do PCI enables
174 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200175 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 *
177 * Enable the IDE PCI device. We attempt to enable the device in full
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +1100178 * but if that fails then we only need IO space. The PCI code should
179 * have setup the proper resources for us already for controllers in
180 * legacy mode.
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200181 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 * Returns zero on success or an error code
183 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200184
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200185static int ide_pci_enable(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Bartlomiej Zolnierkiewicz0d1bad22008-04-26 22:25:19 +0200187 int ret, bars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 if (pci_enable_device(dev)) {
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +1100190 ret = pci_enable_device_io(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (ret < 0) {
192 printk(KERN_WARNING "%s: (ide_setup_pci_device:) "
193 "Could not enable device.\n", d->name);
194 goto out;
195 }
196 printk(KERN_WARNING "%s: BIOS configuration fixed.\n", d->name);
197 }
198
199 /*
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200200 * assume all devices can do 32-bit DMA for now, we can add
201 * a DMA mask field to the struct ide_port_info if we need it
202 * (or let lower level driver set the DMA mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 */
204 ret = pci_set_dma_mask(dev, DMA_32BIT_MASK);
205 if (ret < 0) {
206 printk(KERN_ERR "%s: can't set dma mask\n", d->name);
207 goto out;
208 }
209
Bartlomiej Zolnierkiewicz0d1bad22008-04-26 22:25:19 +0200210 if (d->host_flags & IDE_HFLAG_SINGLE)
211 bars = (1 << 2) - 1;
212 else
213 bars = (1 << 4) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Bartlomiej Zolnierkiewicz0d1bad22008-04-26 22:25:19 +0200215 if ((d->host_flags & IDE_HFLAG_NO_DMA) == 0) {
216 if (d->host_flags & IDE_HFLAG_CS5520)
217 bars |= (1 << 2);
218 else
219 bars |= (1 << 4);
220 }
221
222 ret = pci_request_selected_regions(dev, bars, d->name);
223 if (ret < 0)
224 printk(KERN_ERR "%s: can't reserve resources\n", d->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225out:
226 return ret;
227}
228
229/**
230 * ide_pci_configure - configure an unconfigured device
231 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200232 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 *
234 * Enable and configure the PCI device we have been passed.
235 * Returns zero on success or an error code.
236 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200237
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200238static int ide_pci_configure(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
240 u16 pcicmd = 0;
241 /*
242 * PnP BIOS was *supposed* to have setup this device, but we
243 * can do it ourselves, so long as the BIOS has assigned an IRQ
244 * (or possibly the device is using a "legacy header" for IRQs).
245 * Maybe the user deliberately *disabled* the device,
246 * but we'll eventually ignore it again if no drives respond.
247 */
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200248 if (ide_setup_pci_baseregs(dev, d->name) ||
249 pci_write_config_word(dev, PCI_COMMAND, pcicmd | PCI_COMMAND_IO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 printk(KERN_INFO "%s: device disabled (BIOS)\n", d->name);
251 return -ENODEV;
252 }
253 if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd)) {
254 printk(KERN_ERR "%s: error accessing PCI regs\n", d->name);
255 return -EIO;
256 }
257 if (!(pcicmd & PCI_COMMAND_IO)) {
258 printk(KERN_ERR "%s: unable to enable IDE controller\n", d->name);
259 return -ENXIO;
260 }
261 return 0;
262}
263
264/**
265 * ide_pci_check_iomem - check a register is I/O
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200266 * @dev: PCI device
267 * @d: IDE port info
268 * @bar: BAR number
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 *
Sergei Shtylyov1baccff2008-04-26 17:36:31 +0200270 * Checks if a BAR is configured and points to MMIO space. If so,
271 * return an error code. Otherwise return 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200273
Sergei Shtylyov1baccff2008-04-26 17:36:31 +0200274static int ide_pci_check_iomem(struct pci_dev *dev, const struct ide_port_info *d,
275 int bar)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 ulong flags = pci_resource_flags(dev, bar);
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 /* Unconfigured ? */
280 if (!flags || pci_resource_len(dev, bar) == 0)
281 return 0;
282
Sergei Shtylyov1baccff2008-04-26 17:36:31 +0200283 /* I/O space */
284 if (flags & IORESOURCE_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return 0;
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 /* Bad */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return -EINVAL;
289}
290
291/**
292 * ide_hwif_configure - configure an IDE interface
293 * @dev: PCI device holding interface
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200294 * @d: IDE port info
Bartlomiej Zolnierkiewicz1ebf7492008-02-02 19:56:30 +0100295 * @port: port number
296 * @irq: PCI IRQ
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200297 * @hw: hw_regs_t instance corresponding to this port
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 *
299 * Perform the initial set up for the hardware interface structure. This
300 * is done per interface port rather than per PCI device. There may be
301 * more than one port per device.
302 *
303 * Returns the new hardware interface structure, or NULL on a failure
304 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200305
Bartlomiej Zolnierkiewicz1ebf7492008-02-02 19:56:30 +0100306static ide_hwif_t *ide_hwif_configure(struct pci_dev *dev,
307 const struct ide_port_info *d,
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200308 unsigned int port, int irq,
309 hw_regs_t *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
311 unsigned long ctl = 0, base = 0;
312 ide_hwif_t *hwif;
313
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200314 if ((d->host_flags & IDE_HFLAG_ISA_PORTS) == 0) {
Sergei Shtylyov1baccff2008-04-26 17:36:31 +0200315 if (ide_pci_check_iomem(dev, d, 2 * port) ||
316 ide_pci_check_iomem(dev, d, 2 * port + 1)) {
317 printk(KERN_ERR "%s: I/O baseregs (BIOS) are reported "
318 "as MEM for port %d!\n", d->name, port);
319 return NULL;
320 }
Paolo Ciarrocchi846bb882008-04-26 17:36:39 +0200321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 ctl = pci_resource_start(dev, 2*port+1);
323 base = pci_resource_start(dev, 2*port);
Bartlomiej Zolnierkiewiczc1da6782008-07-16 20:33:41 +0200324 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 /* Use default values */
326 ctl = port ? 0x374 : 0x3f4;
327 base = port ? 0x170 : 0x1f0;
328 }
Bartlomiej Zolnierkiewiczbad7c822008-04-26 17:36:31 +0200329
Bartlomiej Zolnierkiewiczc1da6782008-07-16 20:33:41 +0200330 if (!base || !ctl) {
331 printk(KERN_ERR "%s: bad PCI BARs for port %d, skipping\n",
332 d->name, port);
333 return NULL;
334 }
335
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200336 memset(hw, 0, sizeof(*hw));
337 hw->irq = irq;
338 hw->dev = &dev->dev;
339 hw->chipset = d->chipset ? d->chipset : ide_pci;
340 ide_std_init_ports(hw, base, ctl | 2);
341
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +0200342 hwif = ide_find_port_slot(d);
Bartlomiej Zolnierkiewiczeb3aff52008-07-16 20:33:42 +0200343 if (hwif == NULL)
Bartlomiej Zolnierkiewiczbad7c822008-04-26 17:36:31 +0200344 return NULL;
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200345
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200346 hwif->chipset = hw->chipset;
Bartlomiej Zolnierkiewicz79127c32008-01-26 20:13:08 +0100347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return hwif;
349}
350
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100351#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352/**
353 * ide_hwif_setup_dma - configure DMA interface
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200354 * @hwif: IDE interface
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100355 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 *
357 * Set up the DMA base for the interface. Enable the master bits as
358 * necessary and attempt to bring the device DMA into a ready to use
359 * state
360 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200361
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200362int ide_hwif_setup_dma(ide_hwif_t *hwif, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100364 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Bartlomiej Zolnierkiewicz47b68782007-10-19 00:30:06 +0200366 if ((d->host_flags & IDE_HFLAG_NO_AUTODMA) == 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE &&
368 (dev->class & 0x80))) {
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200369 unsigned long base = ide_pci_dma_base(hwif, d);
Bartlomiej Zolnierkiewicz23658f82008-04-26 22:25:21 +0200370
Bartlomiej Zolnierkiewiczebb00fb2008-07-23 19:55:51 +0200371 if (base == 0)
372 return -1;
373
374 hwif->dma_base = base;
375
376 if (ide_pci_check_simplex(hwif, d) < 0)
377 return -1;
378
379 if (ide_pci_set_master(dev, d->name) < 0)
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200380 return -1;
Bartlomiej Zolnierkiewiczd54452f2008-04-26 22:25:21 +0200381
Bartlomiej Zolnierkiewicz13572142008-07-15 21:21:49 +0200382 if (hwif->host_flags & IDE_HFLAG_MMIO)
Bartlomiej Zolnierkiewicz63158d52008-04-26 22:25:21 +0200383 printk(KERN_INFO " %s: MMIO-DMA\n", hwif->name);
384 else
385 printk(KERN_INFO " %s: BM-DMA at 0x%04lx-0x%04lx\n",
386 hwif->name, base, base + 7);
387
388 hwif->extra_base = base + (hwif->channel ? 8 : 16);
389
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200390 if (ide_allocate_dma_engine(hwif))
391 return -1;
392
Bartlomiej Zolnierkiewicz81e8d5a2008-07-23 19:55:51 +0200393 hwif->dma_ops = &sff_dma_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
Bartlomiej Zolnierkiewiczd54452f2008-04-26 22:25:21 +0200395
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +0200396 return 0;
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200397}
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100398#endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400/**
401 * ide_setup_pci_controller - set up IDE PCI
402 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200403 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 * @noisy: verbose flag
405 * @config: returned as 1 if we configured the hardware
406 *
407 * Set up the PCI and controller side of the IDE interface. This brings
408 * up the PCI side of the device, checks that the device is enabled
409 * and enables it if need be
410 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200411
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200412static 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 -0700413{
414 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 u16 pcicmd;
416
417 if (noisy)
418 ide_setup_pci_noise(dev, d);
419
420 ret = ide_pci_enable(dev, d);
421 if (ret < 0)
422 goto out;
423
424 ret = pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
425 if (ret < 0) {
426 printk(KERN_ERR "%s: error accessing PCI regs\n", d->name);
427 goto out;
428 }
429 if (!(pcicmd & PCI_COMMAND_IO)) { /* is device disabled? */
430 ret = ide_pci_configure(dev, d);
431 if (ret < 0)
432 goto out;
433 *config = 1;
434 printk(KERN_INFO "%s: device enabled (Linux)\n", d->name);
435 }
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437out:
438 return ret;
439}
440
441/**
442 * ide_pci_setup_ports - configure ports/devices on PCI IDE
443 * @dev: PCI device
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200444 * @d: IDE port info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 * @pciirq: IRQ line
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200446 * @idx: ATA index table to update
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200447 * @hw: hw_regs_t instances corresponding to this PCI IDE device
448 * @hws: hw_regs_t pointers table to update
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 *
450 * Scan the interfaces attached to this device and do any
451 * necessary per port setup. Attach the devices and ask the
452 * generic DMA layer to do its work for us.
453 *
454 * Normally called automaticall from do_ide_pci_setup_device,
455 * but is also used directly as a helper function by some controllers
456 * where the chipset setup is not the default PCI IDE one.
457 */
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200458
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200459void ide_pci_setup_ports(struct pci_dev *dev, const struct ide_port_info *d,
460 int pciirq, u8 *idx, hw_regs_t *hw, hw_regs_t **hws)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200462 int channels = (d->host_flags & IDE_HFLAG_SINGLE) ? 1 : 2, port;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100463 ide_hwif_t *hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 u8 tmp;
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 /*
467 * Set up the IDE ports
468 */
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200469
Bartlomiej Zolnierkiewicza5d8c5c2007-07-20 01:11:55 +0200470 for (port = 0; port < channels; ++port) {
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200471 const ide_pci_enablebit_t *e = &(d->enablebits[port]);
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (e->reg && (pci_read_config_byte(dev, e->reg, &tmp) ||
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200474 (tmp & e->mask) != e->val)) {
475 printk(KERN_INFO "%s: IDE port disabled\n", d->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 continue; /* port not enabled */
Bartlomiej Zolnierkiewiczcf6e8542007-10-20 00:32:29 +0200477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200479 hwif = ide_hwif_configure(dev, d, port, pciirq, hw + port);
Bartlomiej Zolnierkiewicz1ebf7492008-02-02 19:56:30 +0100480 if (hwif == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 continue;
482
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200483 *(hws + port) = hw + port;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200484 *(idx + port) = hwif->index;
Bartlomiej Zolnierkiewicz1ebf7492008-02-02 19:56:30 +0100485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487EXPORT_SYMBOL_GPL(ide_pci_setup_ports);
488
489/*
490 * ide_setup_pci_device() looks at the primary/secondary interfaces
491 * on a PCI IDE device and, if they are enabled, prepares the IDE driver
492 * for use with them. This generic code works for most PCI chipsets.
493 *
494 * One thing that is not standardized is the location of the
495 * primary/secondary interface "enable/disable" bits. For chipsets that
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200496 * we "know" about, this information is in the struct ide_port_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 * for all other chipsets, we just assume both interfaces are enabled.
498 */
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200499static int do_ide_setup_pci_device(struct pci_dev *dev,
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200500 const struct ide_port_info *d,
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200501 u8 noisy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 int tried_config = 0;
504 int pciirq, ret;
505
506 ret = ide_setup_pci_controller(dev, d, noisy, &tried_config);
507 if (ret < 0)
508 goto out;
509
510 /*
511 * Can we trust the reported IRQ?
512 */
513 pciirq = dev->irq;
514
515 /* Is it an "IDE storage" device in non-PCI mode? */
516 if ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE && (dev->class & 5) != 5) {
517 if (noisy)
518 printk(KERN_INFO "%s: not 100%% native mode: "
519 "will probe irqs later\n", d->name);
520 /*
521 * This allows offboard ide-pci cards the enable a BIOS,
522 * verify interrupt settings of split-mirror pci-config
523 * space, place chipset into init-mode, and/or preserve
524 * an interrupt if the card is not native ide support.
525 */
526 ret = d->init_chipset ? d->init_chipset(dev, d->name) : 0;
527 if (ret < 0)
528 goto out;
529 pciirq = ret;
530 } else if (tried_config) {
531 if (noisy)
532 printk(KERN_INFO "%s: will probe irqs later\n", d->name);
533 pciirq = 0;
534 } else if (!pciirq) {
535 if (noisy)
536 printk(KERN_WARNING "%s: bad irq (%d): will probe later\n",
537 d->name, pciirq);
538 pciirq = 0;
539 } else {
540 if (d->init_chipset) {
541 ret = d->init_chipset(dev, d->name);
542 if (ret < 0)
543 goto out;
544 }
545 if (noisy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 printk(KERN_INFO "%s: 100%% native mode on irq %d\n",
547 d->name, pciirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200550 ret = pciirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551out:
552 return ret;
553}
554
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200555int ide_setup_pci_device(struct pci_dev *dev, const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200557 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200558 hw_regs_t hw[4], *hws[] = { NULL, NULL, NULL, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 int ret;
560
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200561 ret = do_ide_setup_pci_device(dev, d, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200563 if (ret >= 0) {
564 /* FIXME: silent failure can happen */
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200565 ide_pci_setup_ports(dev, d, ret, &idx[0], &hw[0], &hws[0]);
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200566
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200567 ide_device_add(idx, d, hws);
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 return ret;
571}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572EXPORT_SYMBOL_GPL(ide_setup_pci_device);
573
574int ide_setup_pci_devices(struct pci_dev *dev1, struct pci_dev *dev2,
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200575 const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
577 struct pci_dev *pdev[] = { dev1, dev2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 int ret, i;
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200579 hw_regs_t hw[4], *hws[] = { NULL, NULL, NULL, NULL };
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200580 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 for (i = 0; i < 2; i++) {
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200583 ret = do_ide_setup_pci_device(pdev[i], d, !i);
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 /*
586 * FIXME: Mom, mom, they stole me the helper function to undo
587 * do_ide_setup_pci_device() on the first device!
588 */
589 if (ret < 0)
590 goto out;
Bartlomiej Zolnierkiewicz51d87ed2008-07-23 19:55:49 +0200591
592 /* FIXME: silent failure can happen */
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200593 ide_pci_setup_ports(pdev[i], d, ret, &idx[i*2], &hw[i*2],
594 &hws[i*2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
596
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200597 ide_device_add(idx, d, hws);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598out:
599 return ret;
600}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601EXPORT_SYMBOL_GPL(ide_setup_pci_devices);