ide: cleanup ide_match_hwif()
[safe/jmp/linux-2.6] / drivers / ide / setup-pci.c
1 /*
2  *  Copyright (C) 1998-2000  Andre Hedrick <andre@linux-ide.org>
3  *  Copyright (C) 1995-1998  Mark Lord
4  *  Copyright (C)      2007  Bartlomiej Zolnierkiewicz
5  *
6  *  May be copied or modified under the terms of the GNU General Public License
7  */
8
9 #include <linux/module.h>
10 #include <linux/types.h>
11 #include <linux/kernel.h>
12 #include <linux/pci.h>
13 #include <linux/init.h>
14 #include <linux/timer.h>
15 #include <linux/mm.h>
16 #include <linux/interrupt.h>
17 #include <linux/ide.h>
18 #include <linux/dma-mapping.h>
19
20 #include <asm/io.h>
21 #include <asm/irq.h>
22
23
24 /**
25  *      ide_match_hwif  -       find free ide_hwifs[] slot
26  *      @bootable: bootable flag
27  *
28  *      Return the new hwif.  If we are out of free slots return NULL.
29  */
30
31 static ide_hwif_t *ide_match_hwif(u8 bootable)
32 {
33         ide_hwif_t *hwif;
34         int h;
35
36         /*
37          * Claim an unassigned slot.
38          *
39          * Give preference to claiming other slots before claiming ide0/ide1,
40          * just in case there's another interface yet-to-be-scanned
41          * which uses ports 1f0/170 (the ide0/ide1 defaults).
42          *
43          * Unless there is a bootable card that does not use the standard
44          * ports 1f0/170 (the ide0/ide1 defaults). The (bootable) flag.
45          */
46         if (bootable) {
47                 for (h = 0; h < MAX_HWIFS; ++h) {
48                         hwif = &ide_hwifs[h];
49                         if (hwif->chipset == ide_unknown)
50                                 return hwif;    /* pick an unused entry */
51                 }
52         } else {
53                 for (h = 2; h < MAX_HWIFS; ++h) {
54                         hwif = ide_hwifs + h;
55                         if (hwif->chipset == ide_unknown)
56                                 return hwif;    /* pick an unused entry */
57                 }
58         }
59         for (h = 0; h < 2 && h < MAX_HWIFS; ++h) {
60                 hwif = ide_hwifs + h;
61                 if (hwif->chipset == ide_unknown)
62                         return hwif;    /* pick an unused entry */
63         }
64
65         return NULL;
66 }
67
68 /**
69  *      ide_setup_pci_baseregs  -       place a PCI IDE controller native
70  *      @dev: PCI device of interface to switch native
71  *      @name: Name of interface
72  *
73  *      We attempt to place the PCI interface into PCI native mode. If
74  *      we succeed the BARs are ok and the controller is in PCI mode.
75  *      Returns 0 on success or an errno code. 
76  *
77  *      FIXME: if we program the interface and then fail to set the BARS
78  *      we don't switch it back to legacy mode. Do we actually care ??
79  */
80  
81 static int ide_setup_pci_baseregs (struct pci_dev *dev, const char *name)
82 {
83         u8 progif = 0;
84
85         /*
86          * Place both IDE interfaces into PCI "native" mode:
87          */
88         if (pci_read_config_byte(dev, PCI_CLASS_PROG, &progif) ||
89                          (progif & 5) != 5) {
90                 if ((progif & 0xa) != 0xa) {
91                         printk(KERN_INFO "%s: device not capable of full "
92                                 "native PCI mode\n", name);
93                         return -EOPNOTSUPP;
94                 }
95                 printk("%s: placing both ports into native PCI mode\n", name);
96                 (void) pci_write_config_byte(dev, PCI_CLASS_PROG, progif|5);
97                 if (pci_read_config_byte(dev, PCI_CLASS_PROG, &progif) ||
98                     (progif & 5) != 5) {
99                         printk(KERN_ERR "%s: rewrite of PROGIF failed, wanted "
100                                 "0x%04x, got 0x%04x\n",
101                                 name, progif|5, progif);
102                         return -EOPNOTSUPP;
103                 }
104         }
105         return 0;
106 }
107
108 #ifdef CONFIG_BLK_DEV_IDEDMA_PCI
109 static void ide_pci_clear_simplex(unsigned long dma_base, const char *name)
110 {
111         u8 dma_stat = inb(dma_base + 2);
112
113         outb(dma_stat & 0x60, dma_base + 2);
114         dma_stat = inb(dma_base + 2);
115         if (dma_stat & 0x80)
116                 printk(KERN_INFO "%s: simplex device: DMA forced\n", name);
117 }
118
119 /**
120  *      ide_get_or_set_dma_base         -       setup BMIBA
121  *      @d: IDE port info
122  *      @hwif: IDE interface
123  *
124  *      Fetch the DMA Bus-Master-I/O-Base-Address (BMIBA) from PCI space.
125  *      Where a device has a partner that is already in DMA mode we check
126  *      and enforce IDE simplex rules.
127  */
128
129 static unsigned long ide_get_or_set_dma_base(const struct ide_port_info *d, ide_hwif_t *hwif)
130 {
131         struct pci_dev *dev = to_pci_dev(hwif->dev);
132         unsigned long dma_base = 0;
133         u8 dma_stat = 0;
134
135         if (hwif->mmio)
136                 return hwif->dma_base;
137
138         if (hwif->mate && hwif->mate->dma_base) {
139                 dma_base = hwif->mate->dma_base - (hwif->channel ? 0 : 8);
140         } else {
141                 u8 baridx = (d->host_flags & IDE_HFLAG_CS5520) ? 2 : 4;
142
143                 dma_base = pci_resource_start(dev, baridx);
144
145                 if (dma_base == 0) {
146                         printk(KERN_ERR "%s: DMA base is invalid\n", d->name);
147                         return 0;
148                 }
149         }
150
151         if (hwif->channel)
152                 dma_base += 8;
153
154         if (d->host_flags & IDE_HFLAG_CS5520)
155                 goto out;
156
157         if (d->host_flags & IDE_HFLAG_CLEAR_SIMPLEX) {
158                 ide_pci_clear_simplex(dma_base, d->name);
159                 goto out;
160         }
161
162         /*
163          * If the device claims "simplex" DMA, this means that only one of
164          * the two interfaces can be trusted with DMA at any point in time
165          * (so we should enable DMA only on one of the two interfaces).
166          *
167          * FIXME: At this point we haven't probed the drives so we can't make
168          * the appropriate decision.  Really we should defer this problem until
169          * we tune the drive then try to grab DMA ownership if we want to be
170          * the DMA end.  This has to be become dynamic to handle hot-plug.
171          */
172         dma_stat = hwif->INB(dma_base + 2);
173         if ((dma_stat & 0x80) && hwif->mate && hwif->mate->dma_base) {
174                 printk(KERN_INFO "%s: simplex device: DMA disabled\n", d->name);
175                 dma_base = 0;
176         }
177 out:
178         return dma_base;
179 }
180 #endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
181
182 void ide_setup_pci_noise(struct pci_dev *dev, const struct ide_port_info *d)
183 {
184         printk(KERN_INFO "%s: IDE controller (0x%04x:0x%04x rev 0x%02x) at "
185                          " PCI slot %s\n", d->name, dev->vendor, dev->device,
186                          dev->revision, pci_name(dev));
187 }
188
189 EXPORT_SYMBOL_GPL(ide_setup_pci_noise);
190
191
192 /**
193  *      ide_pci_enable  -       do PCI enables
194  *      @dev: PCI device
195  *      @d: IDE port info
196  *
197  *      Enable the IDE PCI device. We attempt to enable the device in full
198  *      but if that fails then we only need IO space. The PCI code should
199  *      have setup the proper resources for us already for controllers in
200  *      legacy mode.
201  *      
202  *      Returns zero on success or an error code
203  */
204
205 static int ide_pci_enable(struct pci_dev *dev, const struct ide_port_info *d)
206 {
207         int ret;
208
209         if (pci_enable_device(dev)) {
210                 ret = pci_enable_device_io(dev);
211                 if (ret < 0) {
212                         printk(KERN_WARNING "%s: (ide_setup_pci_device:) "
213                                 "Could not enable device.\n", d->name);
214                         goto out;
215                 }
216                 printk(KERN_WARNING "%s: BIOS configuration fixed.\n", d->name);
217         }
218
219         /*
220          * assume all devices can do 32-bit DMA for now, we can add
221          * a DMA mask field to the struct ide_port_info if we need it
222          * (or let lower level driver set the DMA mask)
223          */
224         ret = pci_set_dma_mask(dev, DMA_32BIT_MASK);
225         if (ret < 0) {
226                 printk(KERN_ERR "%s: can't set dma mask\n", d->name);
227                 goto out;
228         }
229
230         /* FIXME: Temporary - until we put in the hotplug interface logic
231            Check that the bits we want are not in use by someone else. */
232         ret = pci_request_region(dev, 4, "ide_tmp");
233         if (ret < 0)
234                 goto out;
235
236         pci_release_region(dev, 4);
237 out:
238         return ret;
239 }
240
241 /**
242  *      ide_pci_configure       -       configure an unconfigured device
243  *      @dev: PCI device
244  *      @d: IDE port info
245  *
246  *      Enable and configure the PCI device we have been passed.
247  *      Returns zero on success or an error code.
248  */
249
250 static int ide_pci_configure(struct pci_dev *dev, const struct ide_port_info *d)
251 {
252         u16 pcicmd = 0;
253         /*
254          * PnP BIOS was *supposed* to have setup this device, but we
255          * can do it ourselves, so long as the BIOS has assigned an IRQ
256          * (or possibly the device is using a "legacy header" for IRQs).
257          * Maybe the user deliberately *disabled* the device,
258          * but we'll eventually ignore it again if no drives respond.
259          */
260         if (ide_setup_pci_baseregs(dev, d->name) || pci_write_config_word(dev, PCI_COMMAND, pcicmd|PCI_COMMAND_IO)) 
261         {
262                 printk(KERN_INFO "%s: device disabled (BIOS)\n", d->name);
263                 return -ENODEV;
264         }
265         if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd)) {
266                 printk(KERN_ERR "%s: error accessing PCI regs\n", d->name);
267                 return -EIO;
268         }
269         if (!(pcicmd & PCI_COMMAND_IO)) {
270                 printk(KERN_ERR "%s: unable to enable IDE controller\n", d->name);
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
286 static 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_hwif_configure      -       configure an IDE interface
305  *      @dev: PCI device holding interface
306  *      @d: IDE port info
307  *      @port: port number
308  *      @irq: PCI IRQ
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 the new hardware interface structure, or NULL on a failure
315  */
316
317 static ide_hwif_t *ide_hwif_configure(struct pci_dev *dev,
318                                       const struct ide_port_info *d,
319                                       unsigned int port, int irq)
320 {
321         unsigned long ctl = 0, base = 0;
322         ide_hwif_t *hwif;
323         u8 bootable = (d->host_flags & IDE_HFLAG_BOOTABLE) ? 1 : 0;
324         struct hw_regs_s hw;
325
326         if ((d->host_flags & IDE_HFLAG_ISA_PORTS) == 0) {
327                 if (ide_pci_check_iomem(dev, d, 2 * port) ||
328                     ide_pci_check_iomem(dev, d, 2 * port + 1)) {
329                         printk(KERN_ERR "%s: I/O baseregs (BIOS) are reported "
330                                         "as MEM for port %d!\n", d->name, port);
331                         return NULL;
332                 }
333  
334                 ctl  = pci_resource_start(dev, 2*port+1);
335                 base = pci_resource_start(dev, 2*port);
336                 if ((ctl && !base) || (base && !ctl)) {
337                         printk(KERN_ERR "%s: inconsistent baseregs (BIOS) "
338                                 "for port %d, skipping\n", d->name, port);
339                         return NULL;
340                 }
341         }
342         if (!ctl)
343         {
344                 /* Use default values */
345                 ctl = port ? 0x374 : 0x3f4;
346                 base = port ? 0x170 : 0x1f0;
347         }
348
349         hwif = ide_match_hwif(bootable);
350         if (hwif == NULL) {
351                 printk(KERN_ERR "%s: too many IDE interfaces, no room in "
352                                 "table\n", d->name);
353                 return NULL;
354         }
355
356         memset(&hw, 0, sizeof(hw));
357         hw.irq = irq;
358         hw.dev = &dev->dev;
359         hw.chipset = d->chipset ? d->chipset : ide_pci;
360         ide_std_init_ports(&hw, base, ctl | 2);
361
362         ide_init_port_hw(hwif, &hw);
363
364         hwif->dev = &dev->dev;
365         hwif->cds = d;
366
367         return hwif;
368 }
369
370 #ifdef CONFIG_BLK_DEV_IDEDMA_PCI
371 /**
372  *      ide_hwif_setup_dma      -       configure DMA interface
373  *      @hwif: IDE interface
374  *      @d: IDE port info
375  *
376  *      Set up the DMA base for the interface. Enable the master bits as
377  *      necessary and attempt to bring the device DMA into a ready to use
378  *      state
379  */
380
381 void ide_hwif_setup_dma(ide_hwif_t *hwif, const struct ide_port_info *d)
382 {
383         struct pci_dev *dev = to_pci_dev(hwif->dev);
384         u16 pcicmd;
385
386         pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
387
388         if ((d->host_flags & IDE_HFLAG_NO_AUTODMA) == 0 ||
389             ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE &&
390              (dev->class & 0x80))) {
391                 unsigned long dma_base = ide_get_or_set_dma_base(d, hwif);
392                 if (dma_base && !(pcicmd & PCI_COMMAND_MASTER)) {
393                         /*
394                          * Set up BM-DMA capability
395                          * (PnP BIOS should have done this)
396                          */
397                         pci_set_master(dev);
398                         if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd) || !(pcicmd & PCI_COMMAND_MASTER)) {
399                                 printk(KERN_ERR "%s: %s error updating PCICMD\n",
400                                         hwif->name, d->name);
401                                 dma_base = 0;
402                         }
403                 }
404                 if (dma_base) {
405                         if (d->init_dma) {
406                                 d->init_dma(hwif, dma_base);
407                         } else {
408                                 ide_setup_dma(hwif, dma_base);
409                         }
410                 } else {
411                         printk(KERN_INFO "%s: %s Bus-Master DMA disabled "
412                                 "(BIOS)\n", hwif->name, d->name);
413                 }
414         }
415 }
416 #endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
417
418 /**
419  *      ide_setup_pci_controller        -       set up IDE PCI
420  *      @dev: PCI device
421  *      @d: IDE port info
422  *      @noisy: verbose flag
423  *      @config: returned as 1 if we configured the hardware
424  *
425  *      Set up the PCI and controller side of the IDE interface. This brings
426  *      up the PCI side of the device, checks that the device is enabled
427  *      and enables it if need be
428  */
429
430 static int ide_setup_pci_controller(struct pci_dev *dev, const struct ide_port_info *d, int noisy, int *config)
431 {
432         int ret;
433         u16 pcicmd;
434
435         if (noisy)
436                 ide_setup_pci_noise(dev, d);
437
438         ret = ide_pci_enable(dev, d);
439         if (ret < 0)
440                 goto out;
441
442         ret = pci_read_config_word(dev, PCI_COMMAND, &pcicmd);
443         if (ret < 0) {
444                 printk(KERN_ERR "%s: error accessing PCI regs\n", d->name);
445                 goto out;
446         }
447         if (!(pcicmd & PCI_COMMAND_IO)) {       /* is device disabled? */
448                 ret = ide_pci_configure(dev, d);
449                 if (ret < 0)
450                         goto out;
451                 *config = 1;
452                 printk(KERN_INFO "%s: device enabled (Linux)\n", d->name);
453         }
454
455 out:
456         return ret;
457 }
458
459 /**
460  *      ide_pci_setup_ports     -       configure ports/devices on PCI IDE
461  *      @dev: PCI device
462  *      @d: IDE port info
463  *      @pciirq: IRQ line
464  *      @idx: ATA index table to update
465  *
466  *      Scan the interfaces attached to this device and do any
467  *      necessary per port setup. Attach the devices and ask the
468  *      generic DMA layer to do its work for us.
469  *
470  *      Normally called automaticall from do_ide_pci_setup_device,
471  *      but is also used directly as a helper function by some controllers
472  *      where the chipset setup is not the default PCI IDE one.
473  */
474
475 void ide_pci_setup_ports(struct pci_dev *dev, const struct ide_port_info *d, int pciirq, u8 *idx)
476 {
477         int channels = (d->host_flags & IDE_HFLAG_SINGLE) ? 1 : 2, port;
478         ide_hwif_t *hwif;
479         u8 tmp;
480
481         /*
482          * Set up the IDE ports
483          */
484
485         for (port = 0; port < channels; ++port) {
486                 const ide_pci_enablebit_t *e = &(d->enablebits[port]);
487
488                 if (e->reg && (pci_read_config_byte(dev, e->reg, &tmp) ||
489                     (tmp & e->mask) != e->val)) {
490                         printk(KERN_INFO "%s: IDE port disabled\n", d->name);
491                         continue;       /* port not enabled */
492                 }
493
494                 hwif = ide_hwif_configure(dev, d, port, pciirq);
495                 if (hwif == NULL)
496                         continue;
497
498                 *(idx + port) = hwif->index;
499         }
500 }
501
502 EXPORT_SYMBOL_GPL(ide_pci_setup_ports);
503
504 /*
505  * ide_setup_pci_device() looks at the primary/secondary interfaces
506  * on a PCI IDE device and, if they are enabled, prepares the IDE driver
507  * for use with them.  This generic code works for most PCI chipsets.
508  *
509  * One thing that is not standardized is the location of the
510  * primary/secondary interface "enable/disable" bits.  For chipsets that
511  * we "know" about, this information is in the struct ide_port_info;
512  * for all other chipsets, we just assume both interfaces are enabled.
513  */
514 static int do_ide_setup_pci_device(struct pci_dev *dev,
515                                    const struct ide_port_info *d,
516                                    u8 *idx, u8 noisy)
517 {
518         int tried_config = 0;
519         int pciirq, ret;
520
521         ret = ide_setup_pci_controller(dev, d, noisy, &tried_config);
522         if (ret < 0)
523                 goto out;
524
525         /*
526          * Can we trust the reported IRQ?
527          */
528         pciirq = dev->irq;
529
530         /* Is it an "IDE storage" device in non-PCI mode? */
531         if ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE && (dev->class & 5) != 5) {
532                 if (noisy)
533                         printk(KERN_INFO "%s: not 100%% native mode: "
534                                 "will probe irqs later\n", d->name);
535                 /*
536                  * This allows offboard ide-pci cards the enable a BIOS,
537                  * verify interrupt settings of split-mirror pci-config
538                  * space, place chipset into init-mode, and/or preserve
539                  * an interrupt if the card is not native ide support.
540                  */
541                 ret = d->init_chipset ? d->init_chipset(dev, d->name) : 0;
542                 if (ret < 0)
543                         goto out;
544                 pciirq = ret;
545         } else if (tried_config) {
546                 if (noisy)
547                         printk(KERN_INFO "%s: will probe irqs later\n", d->name);
548                 pciirq = 0;
549         } else if (!pciirq) {
550                 if (noisy)
551                         printk(KERN_WARNING "%s: bad irq (%d): will probe later\n",
552                                 d->name, pciirq);
553                 pciirq = 0;
554         } else {
555                 if (d->init_chipset) {
556                         ret = d->init_chipset(dev, d->name);
557                         if (ret < 0)
558                                 goto out;
559                 }
560                 if (noisy)
561                         printk(KERN_INFO "%s: 100%% native mode on irq %d\n",
562                                 d->name, pciirq);
563         }
564
565         /* FIXME: silent failure can happen */
566
567         ide_pci_setup_ports(dev, d, pciirq, idx);
568 out:
569         return ret;
570 }
571
572 int ide_setup_pci_device(struct pci_dev *dev, const struct ide_port_info *d)
573 {
574         u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
575         int ret;
576
577         ret = do_ide_setup_pci_device(dev, d, &idx[0], 1);
578
579         if (ret >= 0)
580                 ide_device_add(idx, d);
581
582         return ret;
583 }
584
585 EXPORT_SYMBOL_GPL(ide_setup_pci_device);
586
587 int ide_setup_pci_devices(struct pci_dev *dev1, struct pci_dev *dev2,
588                           const struct ide_port_info *d)
589 {
590         struct pci_dev *pdev[] = { dev1, dev2 };
591         int ret, i;
592         u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
593
594         for (i = 0; i < 2; i++) {
595                 ret = do_ide_setup_pci_device(pdev[i], d, &idx[i*2], !i);
596                 /*
597                  * FIXME: Mom, mom, they stole me the helper function to undo
598                  * do_ide_setup_pci_device() on the first device!
599                  */
600                 if (ret < 0)
601                         goto out;
602         }
603
604         ide_device_add(idx, d);
605 out:
606         return ret;
607 }
608
609 EXPORT_SYMBOL_GPL(ide_setup_pci_devices);