Loading...
1/*
2 * Copyright (C) 1998-2000 Andre Hedrick <andre@linux-ide.org>
3 * Copyright (C) 1995-1998 Mark Lord
4 * Copyright (C) 2007-2009 Bartlomiej Zolnierkiewicz
5 *
6 * May be copied or modified under the terms of the GNU General Public License
7 */
8
9#include <linux/types.h>
10#include <linux/kernel.h>
11#include <linux/export.h>
12#include <linux/pci.h>
13#include <linux/init.h>
14#include <linux/interrupt.h>
15#include <linux/ide.h>
16#include <linux/dma-mapping.h>
17
18#include <asm/io.h>
19
20/**
21 * ide_setup_pci_baseregs - place a PCI IDE controller native
22 * @dev: PCI device of interface to switch native
23 * @name: Name of interface
24 *
25 * We attempt to place the PCI interface into PCI native mode. If
26 * we succeed the BARs are ok and the controller is in PCI mode.
27 * Returns 0 on success or an errno code.
28 *
29 * FIXME: if we program the interface and then fail to set the BARS
30 * we don't switch it back to legacy mode. Do we actually care ??
31 */
32
33static int ide_setup_pci_baseregs(struct pci_dev *dev, const char *name)
34{
35 u8 progif = 0;
36
37 /*
38 * Place both IDE interfaces into PCI "native" mode:
39 */
40 if (pci_read_config_byte(dev, PCI_CLASS_PROG, &progif) ||
41 (progif & 5) != 5) {
42 if ((progif & 0xa) != 0xa) {
43 printk(KERN_INFO "%s %s: device not capable of full "
44 "native PCI mode\n", name, pci_name(dev));
45 return -EOPNOTSUPP;
46 }
47 printk(KERN_INFO "%s %s: placing both ports into native PCI "
48 "mode\n", name, pci_name(dev));
49 (void) pci_write_config_byte(dev, PCI_CLASS_PROG, progif|5);
50 if (pci_read_config_byte(dev, PCI_CLASS_PROG, &progif) ||
51 (progif & 5) != 5) {
52 printk(KERN_ERR "%s %s: rewrite of PROGIF failed, "
53 "wanted 0x%04x, got 0x%04x\n",
54 name, pci_name(dev), progif | 5, progif);
55 return -EOPNOTSUPP;
56 }
57 }
58 return 0;
59}
60
61#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
62static int ide_pci_clear_simplex(unsigned long dma_base, const char *name)
63{
64 u8 dma_stat = inb(dma_base + 2);
65
66 outb(dma_stat & 0x60, dma_base + 2);
67 dma_stat = inb(dma_base + 2);
68
69 return (dma_stat & 0x80) ? 1 : 0;
70}
71
72/**
73 * ide_pci_dma_base - setup BMIBA
74 * @hwif: IDE interface
75 * @d: IDE port info
76 *
77 * Fetch the DMA Bus-Master-I/O-Base-Address (BMIBA) from PCI space.
78 */
79
80unsigned long ide_pci_dma_base(ide_hwif_t *hwif, const struct ide_port_info *d)
81{
82 struct pci_dev *dev = to_pci_dev(hwif->dev);
83 unsigned long dma_base = 0;
84
85 if (hwif->host_flags & IDE_HFLAG_MMIO)
86 return hwif->dma_base;
87
88 if (hwif->mate && hwif->mate->dma_base) {
89 dma_base = hwif->mate->dma_base - (hwif->channel ? 0 : 8);
90 } else {
91 u8 baridx = (d->host_flags & IDE_HFLAG_CS5520) ? 2 : 4;
92
93 dma_base = pci_resource_start(dev, baridx);
94
95 if (dma_base == 0) {
96 printk(KERN_ERR "%s %s: DMA base is invalid\n",
97 d->name, pci_name(dev));
98 return 0;
99 }
100 }
101
102 if (hwif->channel)
103 dma_base += 8;
104
105 return dma_base;
106}
107EXPORT_SYMBOL_GPL(ide_pci_dma_base);
108
109int ide_pci_check_simplex(ide_hwif_t *hwif, const struct ide_port_info *d)
110{
111 struct pci_dev *dev = to_pci_dev(hwif->dev);
112 u8 dma_stat;
113
114 if (d->host_flags & (IDE_HFLAG_MMIO | IDE_HFLAG_CS5520))
115 goto out;
116
117 if (d->host_flags & IDE_HFLAG_CLEAR_SIMPLEX) {
118 if (ide_pci_clear_simplex(hwif->dma_base, d->name))
119 printk(KERN_INFO "%s %s: simplex device: DMA forced\n",
120 d->name, pci_name(dev));
121 goto out;
122 }
123
124 /*
125 * If the device claims "simplex" DMA, this means that only one of
126 * the two interfaces can be trusted with DMA at any point in time
127 * (so we should enable DMA only on one of the two interfaces).
128 *
129 * FIXME: At this point we haven't probed the drives so we can't make
130 * the appropriate decision. Really we should defer this problem until
131 * we tune the drive then try to grab DMA ownership if we want to be
132 * the DMA end. This has to be become dynamic to handle hot-plug.
133 */
134 dma_stat = hwif->dma_ops->dma_sff_read_status(hwif);
135 if ((dma_stat & 0x80) && hwif->mate && hwif->mate->dma_base) {
136 printk(KERN_INFO "%s %s: simplex device: DMA disabled\n",
137 d->name, pci_name(dev));
138 return -1;
139 }
140out:
141 return 0;
142}
143EXPORT_SYMBOL_GPL(ide_pci_check_simplex);
144
145/*
146 * Set up BM-DMA capability (PnP BIOS should have done this)
147 */
148int ide_pci_set_master(struct pci_dev *dev, const char *name)
149{
150 u16 pcicmd;
151
152 pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
153
154 if ((pcicmd & PCI_COMMAND_MASTER) == 0) {
155 pci_set_master(dev);
156
157 if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd) ||
158 (pcicmd & PCI_COMMAND_MASTER) == 0) {
159 printk(KERN_ERR "%s %s: error updating PCICMD\n",
160 name, pci_name(dev));
161 return -EIO;
162 }
163 }
164
165 return 0;
166}
167EXPORT_SYMBOL_GPL(ide_pci_set_master);
168#endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
169
170void ide_setup_pci_noise(struct pci_dev *dev, const struct ide_port_info *d)
171{
172 printk(KERN_INFO "%s %s: IDE controller (0x%04x:0x%04x rev 0x%02x)\n",
173 d->name, pci_name(dev),
174 dev->vendor, dev->device, dev->revision);
175}
176EXPORT_SYMBOL_GPL(ide_setup_pci_noise);
177
178
179/**
180 * ide_pci_enable - do PCI enables
181 * @dev: PCI device
182 * @bars: PCI BARs mask
183 * @d: IDE port info
184 *
185 * Enable the IDE PCI device. We attempt to enable the device in full
186 * but if that fails then we only need IO space. The PCI code should
187 * have setup the proper resources for us already for controllers in
188 * legacy mode.
189 *
190 * Returns zero on success or an error code
191 */
192
193static int ide_pci_enable(struct pci_dev *dev, int bars,
194 const struct ide_port_info *d)
195{
196 int ret;
197
198 if (pci_enable_device(dev)) {
199 ret = pci_enable_device_io(dev);
200 if (ret < 0) {
201 printk(KERN_WARNING "%s %s: couldn't enable device\n",
202 d->name, pci_name(dev));
203 goto out;
204 }
205 printk(KERN_WARNING "%s %s: BIOS configuration fixed\n",
206 d->name, pci_name(dev));
207 }
208
209 /*
210 * assume all devices can do 32-bit DMA for now, we can add
211 * a DMA mask field to the struct ide_port_info if we need it
212 * (or let lower level driver set the DMA mask)
213 */
214 ret = dma_set_mask(&dev->dev, DMA_BIT_MASK(32));
215 if (ret < 0) {
216 printk(KERN_ERR "%s %s: can't set DMA mask\n",
217 d->name, pci_name(dev));
218 goto out;
219 }
220
221 ret = pci_request_selected_regions(dev, bars, d->name);
222 if (ret < 0)
223 printk(KERN_ERR "%s %s: can't reserve resources\n",
224 d->name, pci_name(dev));
225out:
226 return ret;
227}
228
229/**
230 * ide_pci_configure - configure an unconfigured device
231 * @dev: PCI device
232 * @d: IDE port info
233 *
234 * Enable and configure the PCI device we have been passed.
235 * Returns zero on success or an error code.
236 */
237
238static int ide_pci_configure(struct pci_dev *dev, const struct ide_port_info *d)
239{
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 */
248 if (ide_setup_pci_baseregs(dev, d->name) ||
249 pci_write_config_word(dev, PCI_COMMAND, pcicmd | PCI_COMMAND_IO)) {
250 printk(KERN_INFO "%s %s: device disabled (BIOS)\n",
251 d->name, pci_name(dev));
252 return -ENODEV;
253 }
254 if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd)) {
255 printk(KERN_ERR "%s %s: error accessing PCI regs\n",
256 d->name, pci_name(dev));
257 return -EIO;
258 }
259 if (!(pcicmd & PCI_COMMAND_IO)) {
260 printk(KERN_ERR "%s %s: unable to enable IDE controller\n",
261 d->name, pci_name(dev));
262 return -ENXIO;
263 }
264 return 0;
265}
266
267/**
268 * ide_pci_check_iomem - check a register is I/O
269 * @dev: PCI device
270 * @d: IDE port info
271 * @bar: BAR number
272 *
273 * Checks if a BAR is configured and points to MMIO space. If so,
274 * return an error code. Otherwise return 0
275 */
276
277static int ide_pci_check_iomem(struct pci_dev *dev, const struct ide_port_info *d,
278 int bar)
279{
280 ulong flags = pci_resource_flags(dev, bar);
281
282 /* Unconfigured ? */
283 if (!flags || pci_resource_len(dev, bar) == 0)
284 return 0;
285
286 /* I/O space */
287 if (flags & IORESOURCE_IO)
288 return 0;
289
290 /* Bad */
291 return -EINVAL;
292}
293
294/**
295 * ide_hw_configure - configure a struct ide_hw instance
296 * @dev: PCI device holding interface
297 * @d: IDE port info
298 * @port: port number
299 * @hw: struct ide_hw instance corresponding to this port
300 *
301 * Perform the initial set up for the hardware interface structure. This
302 * is done per interface port rather than per PCI device. There may be
303 * more than one port per device.
304 *
305 * Returns zero on success or an error code.
306 */
307
308static int ide_hw_configure(struct pci_dev *dev, const struct ide_port_info *d,
309 unsigned int port, struct ide_hw *hw)
310{
311 unsigned long ctl = 0, base = 0;
312
313 if ((d->host_flags & IDE_HFLAG_ISA_PORTS) == 0) {
314 if (ide_pci_check_iomem(dev, d, 2 * port) ||
315 ide_pci_check_iomem(dev, d, 2 * port + 1)) {
316 printk(KERN_ERR "%s %s: I/O baseregs (BIOS) are "
317 "reported as MEM for port %d!\n",
318 d->name, pci_name(dev), port);
319 return -EINVAL;
320 }
321
322 ctl = pci_resource_start(dev, 2*port+1);
323 base = pci_resource_start(dev, 2*port);
324 } else {
325 /* Use default values */
326 ctl = port ? 0x374 : 0x3f4;
327 base = port ? 0x170 : 0x1f0;
328 }
329
330 if (!base || !ctl) {
331 printk(KERN_ERR "%s %s: bad PCI BARs for port %d, skipping\n",
332 d->name, pci_name(dev), port);
333 return -EINVAL;
334 }
335
336 memset(hw, 0, sizeof(*hw));
337 hw->dev = &dev->dev;
338 ide_std_init_ports(hw, base, ctl | 2);
339
340 return 0;
341}
342
343#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
344/**
345 * ide_hwif_setup_dma - configure DMA interface
346 * @hwif: IDE interface
347 * @d: IDE port info
348 *
349 * Set up the DMA base for the interface. Enable the master bits as
350 * necessary and attempt to bring the device DMA into a ready to use
351 * state
352 */
353
354int ide_hwif_setup_dma(ide_hwif_t *hwif, const struct ide_port_info *d)
355{
356 struct pci_dev *dev = to_pci_dev(hwif->dev);
357
358 if ((d->host_flags & IDE_HFLAG_NO_AUTODMA) == 0 ||
359 ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE &&
360 (dev->class & 0x80))) {
361 unsigned long base = ide_pci_dma_base(hwif, d);
362
363 if (base == 0)
364 return -1;
365
366 hwif->dma_base = base;
367
368 if (hwif->dma_ops == NULL)
369 hwif->dma_ops = &sff_dma_ops;
370
371 if (ide_pci_check_simplex(hwif, d) < 0)
372 return -1;
373
374 if (ide_pci_set_master(dev, d->name) < 0)
375 return -1;
376
377 if (hwif->host_flags & IDE_HFLAG_MMIO)
378 printk(KERN_INFO " %s: MMIO-DMA\n", hwif->name);
379 else
380 printk(KERN_INFO " %s: BM-DMA at 0x%04lx-0x%04lx\n",
381 hwif->name, base, base + 7);
382
383 hwif->extra_base = base + (hwif->channel ? 8 : 16);
384
385 if (ide_allocate_dma_engine(hwif))
386 return -1;
387 }
388
389 return 0;
390}
391#endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
392
393/**
394 * ide_setup_pci_controller - set up IDE PCI
395 * @dev: PCI device
396 * @bars: PCI BARs mask
397 * @d: IDE port info
398 * @noisy: verbose flag
399 *
400 * Set up the PCI and controller side of the IDE interface. This brings
401 * up the PCI side of the device, checks that the device is enabled
402 * and enables it if need be
403 */
404
405static int ide_setup_pci_controller(struct pci_dev *dev, int bars,
406 const struct ide_port_info *d, int noisy)
407{
408 int ret;
409 u16 pcicmd;
410
411 if (noisy)
412 ide_setup_pci_noise(dev, d);
413
414 ret = ide_pci_enable(dev, bars, d);
415 if (ret < 0)
416 goto out;
417
418 ret = pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
419 if (ret < 0) {
420 printk(KERN_ERR "%s %s: error accessing PCI regs\n",
421 d->name, pci_name(dev));
422 goto out_free_bars;
423 }
424 if (!(pcicmd & PCI_COMMAND_IO)) { /* is device disabled? */
425 ret = ide_pci_configure(dev, d);
426 if (ret < 0)
427 goto out_free_bars;
428 printk(KERN_INFO "%s %s: device enabled (Linux)\n",
429 d->name, pci_name(dev));
430 }
431
432 goto out;
433
434out_free_bars:
435 pci_release_selected_regions(dev, bars);
436out:
437 return ret;
438}
439
440/**
441 * ide_pci_setup_ports - configure ports/devices on PCI IDE
442 * @dev: PCI device
443 * @d: IDE port info
444 * @hw: struct ide_hw instances corresponding to this PCI IDE device
445 * @hws: struct ide_hw pointers table to update
446 *
447 * Scan the interfaces attached to this device and do any
448 * necessary per port setup. Attach the devices and ask the
449 * generic DMA layer to do its work for us.
450 *
451 * Normally called automaticall from do_ide_pci_setup_device,
452 * but is also used directly as a helper function by some controllers
453 * where the chipset setup is not the default PCI IDE one.
454 */
455
456void ide_pci_setup_ports(struct pci_dev *dev, const struct ide_port_info *d,
457 struct ide_hw *hw, struct ide_hw **hws)
458{
459 int channels = (d->host_flags & IDE_HFLAG_SINGLE) ? 1 : 2, port;
460 u8 tmp;
461
462 /*
463 * Set up the IDE ports
464 */
465
466 for (port = 0; port < channels; ++port) {
467 const struct ide_pci_enablebit *e = &d->enablebits[port];
468
469 if (e->reg && (pci_read_config_byte(dev, e->reg, &tmp) ||
470 (tmp & e->mask) != e->val)) {
471 printk(KERN_INFO "%s %s: IDE port disabled\n",
472 d->name, pci_name(dev));
473 continue; /* port not enabled */
474 }
475
476 if (ide_hw_configure(dev, d, port, hw + port))
477 continue;
478
479 *(hws + port) = hw + port;
480 }
481}
482EXPORT_SYMBOL_GPL(ide_pci_setup_ports);
483
484/*
485 * ide_setup_pci_device() looks at the primary/secondary interfaces
486 * on a PCI IDE device and, if they are enabled, prepares the IDE driver
487 * for use with them. This generic code works for most PCI chipsets.
488 *
489 * One thing that is not standardized is the location of the
490 * primary/secondary interface "enable/disable" bits. For chipsets that
491 * we "know" about, this information is in the struct ide_port_info;
492 * for all other chipsets, we just assume both interfaces are enabled.
493 */
494static int do_ide_setup_pci_device(struct pci_dev *dev,
495 const struct ide_port_info *d,
496 u8 noisy)
497{
498 int pciirq, ret;
499
500 /*
501 * Can we trust the reported IRQ?
502 */
503 pciirq = dev->irq;
504
505 /*
506 * This allows offboard ide-pci cards the enable a BIOS,
507 * verify interrupt settings of split-mirror pci-config
508 * space, place chipset into init-mode, and/or preserve
509 * an interrupt if the card is not native ide support.
510 */
511 ret = d->init_chipset ? d->init_chipset(dev) : 0;
512 if (ret < 0)
513 goto out;
514
515 if (ide_pci_is_in_compatibility_mode(dev)) {
516 if (noisy)
517 printk(KERN_INFO "%s %s: not 100%% native mode: will "
518 "probe irqs later\n", d->name, pci_name(dev));
519 pciirq = 0;
520 } else if (!pciirq && noisy) {
521 printk(KERN_WARNING "%s %s: bad irq (%d): will probe later\n",
522 d->name, pci_name(dev), pciirq);
523 } else if (noisy) {
524 printk(KERN_INFO "%s %s: 100%% native mode on irq %d\n",
525 d->name, pci_name(dev), pciirq);
526 }
527
528 ret = pciirq;
529out:
530 return ret;
531}
532
533int ide_pci_init_two(struct pci_dev *dev1, struct pci_dev *dev2,
534 const struct ide_port_info *d, void *priv)
535{
536 struct pci_dev *pdev[] = { dev1, dev2 };
537 struct ide_host *host;
538 int ret, i, n_ports = dev2 ? 4 : 2, bars;
539 struct ide_hw hw[4], *hws[] = { NULL, NULL, NULL, NULL };
540
541 if (d->host_flags & IDE_HFLAG_SINGLE)
542 bars = (1 << 2) - 1;
543 else
544 bars = (1 << 4) - 1;
545
546 if ((d->host_flags & IDE_HFLAG_NO_DMA) == 0) {
547 if (d->host_flags & IDE_HFLAG_CS5520)
548 bars |= (1 << 2);
549 else
550 bars |= (1 << 4);
551 }
552
553 for (i = 0; i < n_ports / 2; i++) {
554 ret = ide_setup_pci_controller(pdev[i], bars, d, !i);
555 if (ret < 0) {
556 if (i == 1)
557 pci_release_selected_regions(pdev[0], bars);
558 goto out;
559 }
560
561 ide_pci_setup_ports(pdev[i], d, &hw[i*2], &hws[i*2]);
562 }
563
564 host = ide_host_alloc(d, hws, n_ports);
565 if (host == NULL) {
566 ret = -ENOMEM;
567 goto out_free_bars;
568 }
569
570 host->dev[0] = &dev1->dev;
571 if (dev2)
572 host->dev[1] = &dev2->dev;
573
574 host->host_priv = priv;
575 host->irq_flags = IRQF_SHARED;
576
577 pci_set_drvdata(pdev[0], host);
578 if (dev2)
579 pci_set_drvdata(pdev[1], host);
580
581 for (i = 0; i < n_ports / 2; i++) {
582 ret = do_ide_setup_pci_device(pdev[i], d, !i);
583
584 /*
585 * FIXME: Mom, mom, they stole me the helper function to undo
586 * do_ide_setup_pci_device() on the first device!
587 */
588 if (ret < 0)
589 goto out_free_bars;
590
591 /* fixup IRQ */
592 if (ide_pci_is_in_compatibility_mode(pdev[i])) {
593 hw[i*2].irq = pci_get_legacy_ide_irq(pdev[i], 0);
594 hw[i*2 + 1].irq = pci_get_legacy_ide_irq(pdev[i], 1);
595 } else
596 hw[i*2 + 1].irq = hw[i*2].irq = ret;
597 }
598
599 ret = ide_host_register(host, d, hws);
600 if (ret)
601 ide_host_free(host);
602 else
603 goto out;
604
605out_free_bars:
606 i = n_ports / 2;
607 while (i--)
608 pci_release_selected_regions(pdev[i], bars);
609out:
610 return ret;
611}
612EXPORT_SYMBOL_GPL(ide_pci_init_two);
613
614int ide_pci_init_one(struct pci_dev *dev, const struct ide_port_info *d,
615 void *priv)
616{
617 return ide_pci_init_two(dev, NULL, d, priv);
618}
619EXPORT_SYMBOL_GPL(ide_pci_init_one);
620
621void ide_pci_remove(struct pci_dev *dev)
622{
623 struct ide_host *host = pci_get_drvdata(dev);
624 struct pci_dev *dev2 = host->dev[1] ? to_pci_dev(host->dev[1]) : NULL;
625 int bars;
626
627 if (host->host_flags & IDE_HFLAG_SINGLE)
628 bars = (1 << 2) - 1;
629 else
630 bars = (1 << 4) - 1;
631
632 if ((host->host_flags & IDE_HFLAG_NO_DMA) == 0) {
633 if (host->host_flags & IDE_HFLAG_CS5520)
634 bars |= (1 << 2);
635 else
636 bars |= (1 << 4);
637 }
638
639 ide_host_remove(host);
640
641 if (dev2)
642 pci_release_selected_regions(dev2, bars);
643 pci_release_selected_regions(dev, bars);
644
645 if (dev2)
646 pci_disable_device(dev2);
647 pci_disable_device(dev);
648}
649EXPORT_SYMBOL_GPL(ide_pci_remove);
650
651#ifdef CONFIG_PM
652int ide_pci_suspend(struct pci_dev *dev, pm_message_t state)
653{
654 pci_save_state(dev);
655 pci_disable_device(dev);
656 pci_set_power_state(dev, pci_choose_state(dev, state));
657
658 return 0;
659}
660EXPORT_SYMBOL_GPL(ide_pci_suspend);
661
662int ide_pci_resume(struct pci_dev *dev)
663{
664 struct ide_host *host = pci_get_drvdata(dev);
665 int rc;
666
667 pci_set_power_state(dev, PCI_D0);
668
669 rc = pci_enable_device(dev);
670 if (rc)
671 return rc;
672
673 pci_restore_state(dev);
674 pci_set_master(dev);
675
676 if (host->init_chipset)
677 host->init_chipset(dev);
678
679 return 0;
680}
681EXPORT_SYMBOL_GPL(ide_pci_resume);
682#endif
1/*
2 * Copyright (C) 1998-2000 Andre Hedrick <andre@linux-ide.org>
3 * Copyright (C) 1995-1998 Mark Lord
4 * Copyright (C) 2007-2009 Bartlomiej Zolnierkiewicz
5 *
6 * May be copied or modified under the terms of the GNU General Public License
7 */
8
9#include <linux/types.h>
10#include <linux/kernel.h>
11#include <linux/pci.h>
12#include <linux/init.h>
13#include <linux/interrupt.h>
14#include <linux/ide.h>
15#include <linux/dma-mapping.h>
16
17#include <asm/io.h>
18
19/**
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.
26 * Returns 0 on success or an errno code.
27 *
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 */
31
32static int ide_setup_pci_baseregs(struct pci_dev *dev, const char *name)
33{
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 %s: device not capable of full "
43 "native PCI mode\n", name, pci_name(dev));
44 return -EOPNOTSUPP;
45 }
46 printk(KERN_INFO "%s %s: placing both ports into native PCI "
47 "mode\n", name, pci_name(dev));
48 (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) {
51 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);
54 return -EOPNOTSUPP;
55 }
56 }
57 return 0;
58}
59
60#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
61static int ide_pci_clear_simplex(unsigned long dma_base, const char *name)
62{
63 u8 dma_stat = inb(dma_base + 2);
64
65 outb(dma_stat & 0x60, dma_base + 2);
66 dma_stat = inb(dma_base + 2);
67
68 return (dma_stat & 0x80) ? 1 : 0;
69}
70
71/**
72 * ide_pci_dma_base - setup BMIBA
73 * @hwif: IDE interface
74 * @d: IDE port info
75 *
76 * Fetch the DMA Bus-Master-I/O-Base-Address (BMIBA) from PCI space.
77 */
78
79unsigned long ide_pci_dma_base(ide_hwif_t *hwif, const struct ide_port_info *d)
80{
81 struct pci_dev *dev = to_pci_dev(hwif->dev);
82 unsigned long dma_base = 0;
83
84 if (hwif->host_flags & IDE_HFLAG_MMIO)
85 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 {
90 u8 baridx = (d->host_flags & IDE_HFLAG_CS5520) ? 2 : 4;
91
92 dma_base = pci_resource_start(dev, baridx);
93
94 if (dma_base == 0) {
95 printk(KERN_ERR "%s %s: DMA base is invalid\n",
96 d->name, pci_name(dev));
97 return 0;
98 }
99 }
100
101 if (hwif->channel)
102 dma_base += 8;
103
104 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{
110 struct pci_dev *dev = to_pci_dev(hwif->dev);
111 u8 dma_stat;
112
113 if (d->host_flags & (IDE_HFLAG_MMIO | IDE_HFLAG_CS5520))
114 goto out;
115
116 if (d->host_flags & IDE_HFLAG_CLEAR_SIMPLEX) {
117 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));
120 goto out;
121 }
122
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 */
133 dma_stat = hwif->dma_ops->dma_sff_read_status(hwif);
134 if ((dma_stat & 0x80) && hwif->mate && hwif->mate->dma_base) {
135 printk(KERN_INFO "%s %s: simplex device: DMA disabled\n",
136 d->name, pci_name(dev));
137 return -1;
138 }
139out:
140 return 0;
141}
142EXPORT_SYMBOL_GPL(ide_pci_check_simplex);
143
144/*
145 * Set up BM-DMA capability (PnP BIOS should have done this)
146 */
147int ide_pci_set_master(struct pci_dev *dev, const char *name)
148{
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) {
158 printk(KERN_ERR "%s %s: error updating PCICMD\n",
159 name, pci_name(dev));
160 return -EIO;
161 }
162 }
163
164 return 0;
165}
166EXPORT_SYMBOL_GPL(ide_pci_set_master);
167#endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
168
169void ide_setup_pci_noise(struct pci_dev *dev, const struct ide_port_info *d)
170{
171 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);
174}
175EXPORT_SYMBOL_GPL(ide_setup_pci_noise);
176
177
178/**
179 * ide_pci_enable - do PCI enables
180 * @dev: PCI device
181 * @d: IDE port info
182 *
183 * Enable the IDE PCI device. We attempt to enable the device in full
184 * 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.
187 *
188 * Returns zero on success or an error code
189 */
190
191static int ide_pci_enable(struct pci_dev *dev, const struct ide_port_info *d)
192{
193 int ret, bars;
194
195 if (pci_enable_device(dev)) {
196 ret = pci_enable_device_io(dev);
197 if (ret < 0) {
198 printk(KERN_WARNING "%s %s: couldn't enable device\n",
199 d->name, pci_name(dev));
200 goto out;
201 }
202 printk(KERN_WARNING "%s %s: BIOS configuration fixed\n",
203 d->name, pci_name(dev));
204 }
205
206 /*
207 * 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)
210 */
211 ret = pci_set_dma_mask(dev, DMA_BIT_MASK(32));
212 if (ret < 0) {
213 printk(KERN_ERR "%s %s: can't set DMA mask\n",
214 d->name, pci_name(dev));
215 goto out;
216 }
217
218 if (d->host_flags & IDE_HFLAG_SINGLE)
219 bars = (1 << 2) - 1;
220 else
221 bars = (1 << 4) - 1;
222
223 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)
232 printk(KERN_ERR "%s %s: can't reserve resources\n",
233 d->name, pci_name(dev));
234out:
235 return ret;
236}
237
238/**
239 * ide_pci_configure - configure an unconfigured device
240 * @dev: PCI device
241 * @d: IDE port info
242 *
243 * Enable and configure the PCI device we have been passed.
244 * Returns zero on success or an error code.
245 */
246
247static int ide_pci_configure(struct pci_dev *dev, const struct ide_port_info *d)
248{
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 */
257 if (ide_setup_pci_baseregs(dev, d->name) ||
258 pci_write_config_word(dev, PCI_COMMAND, pcicmd | PCI_COMMAND_IO)) {
259 printk(KERN_INFO "%s %s: device disabled (BIOS)\n",
260 d->name, pci_name(dev));
261 return -ENODEV;
262 }
263 if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd)) {
264 printk(KERN_ERR "%s %s: error accessing PCI regs\n",
265 d->name, pci_name(dev));
266 return -EIO;
267 }
268 if (!(pcicmd & PCI_COMMAND_IO)) {
269 printk(KERN_ERR "%s %s: unable to enable IDE controller\n",
270 d->name, pci_name(dev));
271 return -ENXIO;
272 }
273 return 0;
274}
275
276/**
277 * ide_pci_check_iomem - check a register is I/O
278 * @dev: PCI device
279 * @d: IDE port info
280 * @bar: BAR number
281 *
282 * Checks if a BAR is configured and points to MMIO space. If so,
283 * return an error code. Otherwise return 0
284 */
285
286static int ide_pci_check_iomem(struct pci_dev *dev, const struct ide_port_info *d,
287 int bar)
288{
289 ulong flags = pci_resource_flags(dev, bar);
290
291 /* Unconfigured ? */
292 if (!flags || pci_resource_len(dev, bar) == 0)
293 return 0;
294
295 /* I/O space */
296 if (flags & IORESOURCE_IO)
297 return 0;
298
299 /* Bad */
300 return -EINVAL;
301}
302
303/**
304 * ide_hw_configure - configure a struct ide_hw instance
305 * @dev: PCI device holding interface
306 * @d: IDE port info
307 * @port: port number
308 * @hw: struct ide_hw instance corresponding to this port
309 *
310 * Perform the initial set up for the hardware interface structure. This
311 * is done per interface port rather than per PCI device. There may be
312 * more than one port per device.
313 *
314 * Returns zero on success or an error code.
315 */
316
317static int ide_hw_configure(struct pci_dev *dev, const struct ide_port_info *d,
318 unsigned int port, struct ide_hw *hw)
319{
320 unsigned long ctl = 0, base = 0;
321
322 if ((d->host_flags & IDE_HFLAG_ISA_PORTS) == 0) {
323 if (ide_pci_check_iomem(dev, d, 2 * port) ||
324 ide_pci_check_iomem(dev, d, 2 * port + 1)) {
325 printk(KERN_ERR "%s %s: I/O baseregs (BIOS) are "
326 "reported as MEM for port %d!\n",
327 d->name, pci_name(dev), port);
328 return -EINVAL;
329 }
330
331 ctl = pci_resource_start(dev, 2*port+1);
332 base = pci_resource_start(dev, 2*port);
333 } else {
334 /* Use default values */
335 ctl = port ? 0x374 : 0x3f4;
336 base = port ? 0x170 : 0x1f0;
337 }
338
339 if (!base || !ctl) {
340 printk(KERN_ERR "%s %s: bad PCI BARs for port %d, skipping\n",
341 d->name, pci_name(dev), port);
342 return -EINVAL;
343 }
344
345 memset(hw, 0, sizeof(*hw));
346 hw->dev = &dev->dev;
347 ide_std_init_ports(hw, base, ctl | 2);
348
349 return 0;
350}
351
352#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
353/**
354 * ide_hwif_setup_dma - configure DMA interface
355 * @hwif: IDE interface
356 * @d: IDE port info
357 *
358 * Set up the DMA base for the interface. Enable the master bits as
359 * necessary and attempt to bring the device DMA into a ready to use
360 * state
361 */
362
363int ide_hwif_setup_dma(ide_hwif_t *hwif, const struct ide_port_info *d)
364{
365 struct pci_dev *dev = to_pci_dev(hwif->dev);
366
367 if ((d->host_flags & IDE_HFLAG_NO_AUTODMA) == 0 ||
368 ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE &&
369 (dev->class & 0x80))) {
370 unsigned long base = ide_pci_dma_base(hwif, d);
371
372 if (base == 0)
373 return -1;
374
375 hwif->dma_base = base;
376
377 if (hwif->dma_ops == NULL)
378 hwif->dma_ops = &sff_dma_ops;
379
380 if (ide_pci_check_simplex(hwif, d) < 0)
381 return -1;
382
383 if (ide_pci_set_master(dev, d->name) < 0)
384 return -1;
385
386 if (hwif->host_flags & IDE_HFLAG_MMIO)
387 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
394 if (ide_allocate_dma_engine(hwif))
395 return -1;
396 }
397
398 return 0;
399}
400#endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
401
402/**
403 * ide_setup_pci_controller - set up IDE PCI
404 * @dev: PCI device
405 * @d: IDE port info
406 * @noisy: verbose flag
407 *
408 * Set up the PCI and controller side of the IDE interface. This brings
409 * up the PCI side of the device, checks that the device is enabled
410 * and enables it if need be
411 */
412
413static int ide_setup_pci_controller(struct pci_dev *dev,
414 const struct ide_port_info *d, int noisy)
415{
416 int ret;
417 u16 pcicmd;
418
419 if (noisy)
420 ide_setup_pci_noise(dev, d);
421
422 ret = ide_pci_enable(dev, d);
423 if (ret < 0)
424 goto out;
425
426 ret = pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
427 if (ret < 0) {
428 printk(KERN_ERR "%s %s: error accessing PCI regs\n",
429 d->name, pci_name(dev));
430 goto out;
431 }
432 if (!(pcicmd & PCI_COMMAND_IO)) { /* is device disabled? */
433 ret = ide_pci_configure(dev, d);
434 if (ret < 0)
435 goto out;
436 printk(KERN_INFO "%s %s: device enabled (Linux)\n",
437 d->name, pci_name(dev));
438 }
439
440out:
441 return ret;
442}
443
444/**
445 * ide_pci_setup_ports - configure ports/devices on PCI IDE
446 * @dev: PCI device
447 * @d: IDE port info
448 * @hw: struct ide_hw instances corresponding to this PCI IDE device
449 * @hws: struct ide_hw pointers table to update
450 *
451 * Scan the interfaces attached to this device and do any
452 * necessary per port setup. Attach the devices and ask the
453 * generic DMA layer to do its work for us.
454 *
455 * Normally called automaticall from do_ide_pci_setup_device,
456 * but is also used directly as a helper function by some controllers
457 * where the chipset setup is not the default PCI IDE one.
458 */
459
460void ide_pci_setup_ports(struct pci_dev *dev, const struct ide_port_info *d,
461 struct ide_hw *hw, struct ide_hw **hws)
462{
463 int channels = (d->host_flags & IDE_HFLAG_SINGLE) ? 1 : 2, port;
464 u8 tmp;
465
466 /*
467 * Set up the IDE ports
468 */
469
470 for (port = 0; port < channels; ++port) {
471 const struct ide_pci_enablebit *e = &d->enablebits[port];
472
473 if (e->reg && (pci_read_config_byte(dev, e->reg, &tmp) ||
474 (tmp & e->mask) != e->val)) {
475 printk(KERN_INFO "%s %s: IDE port disabled\n",
476 d->name, pci_name(dev));
477 continue; /* port not enabled */
478 }
479
480 if (ide_hw_configure(dev, d, port, hw + port))
481 continue;
482
483 *(hws + port) = hw + port;
484 }
485}
486EXPORT_SYMBOL_GPL(ide_pci_setup_ports);
487
488/*
489 * ide_setup_pci_device() looks at the primary/secondary interfaces
490 * on a PCI IDE device and, if they are enabled, prepares the IDE driver
491 * for use with them. This generic code works for most PCI chipsets.
492 *
493 * One thing that is not standardized is the location of the
494 * primary/secondary interface "enable/disable" bits. For chipsets that
495 * we "know" about, this information is in the struct ide_port_info;
496 * for all other chipsets, we just assume both interfaces are enabled.
497 */
498static int do_ide_setup_pci_device(struct pci_dev *dev,
499 const struct ide_port_info *d,
500 u8 noisy)
501{
502 int pciirq, ret;
503
504 /*
505 * Can we trust the reported IRQ?
506 */
507 pciirq = dev->irq;
508
509 /*
510 * This allows offboard ide-pci cards the enable a BIOS,
511 * verify interrupt settings of split-mirror pci-config
512 * space, place chipset into init-mode, and/or preserve
513 * an interrupt if the card is not native ide support.
514 */
515 ret = d->init_chipset ? d->init_chipset(dev) : 0;
516 if (ret < 0)
517 goto out;
518
519 if (ide_pci_is_in_compatibility_mode(dev)) {
520 if (noisy)
521 printk(KERN_INFO "%s %s: not 100%% native mode: will "
522 "probe irqs later\n", d->name, pci_name(dev));
523 pciirq = 0;
524 } else if (!pciirq && noisy) {
525 printk(KERN_WARNING "%s %s: bad irq (%d): will probe later\n",
526 d->name, pci_name(dev), pciirq);
527 } else if (noisy) {
528 printk(KERN_INFO "%s %s: 100%% native mode on irq %d\n",
529 d->name, pci_name(dev), pciirq);
530 }
531
532 ret = pciirq;
533out:
534 return ret;
535}
536
537int ide_pci_init_two(struct pci_dev *dev1, struct pci_dev *dev2,
538 const struct ide_port_info *d, void *priv)
539{
540 struct pci_dev *pdev[] = { dev1, dev2 };
541 struct ide_host *host;
542 int ret, i, n_ports = dev2 ? 4 : 2;
543 struct ide_hw hw[4], *hws[] = { NULL, NULL, NULL, NULL };
544
545 for (i = 0; i < n_ports / 2; i++) {
546 ret = ide_setup_pci_controller(pdev[i], d, !i);
547 if (ret < 0)
548 goto out;
549
550 ide_pci_setup_ports(pdev[i], d, &hw[i*2], &hws[i*2]);
551 }
552
553 host = ide_host_alloc(d, hws, n_ports);
554 if (host == NULL) {
555 ret = -ENOMEM;
556 goto out;
557 }
558
559 host->dev[0] = &dev1->dev;
560 if (dev2)
561 host->dev[1] = &dev2->dev;
562
563 host->host_priv = priv;
564 host->irq_flags = IRQF_SHARED;
565
566 pci_set_drvdata(pdev[0], host);
567 if (dev2)
568 pci_set_drvdata(pdev[1], host);
569
570 for (i = 0; i < n_ports / 2; i++) {
571 ret = do_ide_setup_pci_device(pdev[i], d, !i);
572
573 /*
574 * FIXME: Mom, mom, they stole me the helper function to undo
575 * do_ide_setup_pci_device() on the first device!
576 */
577 if (ret < 0)
578 goto out;
579
580 /* fixup IRQ */
581 if (ide_pci_is_in_compatibility_mode(pdev[i])) {
582 hw[i*2].irq = pci_get_legacy_ide_irq(pdev[i], 0);
583 hw[i*2 + 1].irq = pci_get_legacy_ide_irq(pdev[i], 1);
584 } else
585 hw[i*2 + 1].irq = hw[i*2].irq = ret;
586 }
587
588 ret = ide_host_register(host, d, hws);
589 if (ret)
590 ide_host_free(host);
591out:
592 return ret;
593}
594EXPORT_SYMBOL_GPL(ide_pci_init_two);
595
596int ide_pci_init_one(struct pci_dev *dev, const struct ide_port_info *d,
597 void *priv)
598{
599 return ide_pci_init_two(dev, NULL, d, priv);
600}
601EXPORT_SYMBOL_GPL(ide_pci_init_one);
602
603void ide_pci_remove(struct pci_dev *dev)
604{
605 struct ide_host *host = pci_get_drvdata(dev);
606 struct pci_dev *dev2 = host->dev[1] ? to_pci_dev(host->dev[1]) : NULL;
607 int bars;
608
609 if (host->host_flags & IDE_HFLAG_SINGLE)
610 bars = (1 << 2) - 1;
611 else
612 bars = (1 << 4) - 1;
613
614 if ((host->host_flags & IDE_HFLAG_NO_DMA) == 0) {
615 if (host->host_flags & IDE_HFLAG_CS5520)
616 bars |= (1 << 2);
617 else
618 bars |= (1 << 4);
619 }
620
621 ide_host_remove(host);
622
623 if (dev2)
624 pci_release_selected_regions(dev2, bars);
625 pci_release_selected_regions(dev, bars);
626
627 if (dev2)
628 pci_disable_device(dev2);
629 pci_disable_device(dev);
630}
631EXPORT_SYMBOL_GPL(ide_pci_remove);
632
633#ifdef CONFIG_PM
634int ide_pci_suspend(struct pci_dev *dev, pm_message_t state)
635{
636 pci_save_state(dev);
637 pci_disable_device(dev);
638 pci_set_power_state(dev, pci_choose_state(dev, state));
639
640 return 0;
641}
642EXPORT_SYMBOL_GPL(ide_pci_suspend);
643
644int ide_pci_resume(struct pci_dev *dev)
645{
646 struct ide_host *host = pci_get_drvdata(dev);
647 int rc;
648
649 pci_set_power_state(dev, PCI_D0);
650
651 rc = pci_enable_device(dev);
652 if (rc)
653 return rc;
654
655 pci_restore_state(dev);
656 pci_set_master(dev);
657
658 if (host->init_chipset)
659 host->init_chipset(dev);
660
661 return 0;
662}
663EXPORT_SYMBOL_GPL(ide_pci_resume);
664#endif