Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Bartlomiej Zolnierkiewicz | 59bca8c | 2008-02-01 23:09:33 +0100 | [diff] [blame] | 2 | * Copyright (C) 1998-2000 Andre Hedrick <andre@linux-ide.org> |
| 3 | * Copyright (C) 1995-1998 Mark Lord |
Bartlomiej Zolnierkiewicz | ad7c52d | 2009-06-10 14:37:21 +0200 | [diff] [blame] | 4 | * Copyright (C) 2007-2009 Bartlomiej Zolnierkiewicz |
Bartlomiej Zolnierkiewicz | 58f189f | 2008-02-01 23:09:33 +0100 | [diff] [blame] | 5 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * May be copied or modified under the terms of the GNU General Public License |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/types.h> |
| 10 | #include <linux/kernel.h> |
Paul Gortmaker | 38789fd | 2011-07-17 15:33:58 -0400 | [diff] [blame] | 11 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/pci.h> |
| 13 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/interrupt.h> |
| 15 | #include <linux/ide.h> |
| 16 | #include <linux/dma-mapping.h> |
| 17 | |
| 18 | #include <asm/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. |
Paolo Ciarrocchi | 846bb88 | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 27 | * Returns 0 on success or an errno code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
Paolo Ciarrocchi | 846bb88 | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 32 | |
| 33 | static int ide_setup_pci_baseregs(struct pci_dev *dev, const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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) { |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 43 | printk(KERN_INFO "%s %s: device not capable of full " |
| 44 | "native PCI mode\n", name, pci_name(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | return -EOPNOTSUPP; |
| 46 | } |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 47 | printk(KERN_INFO "%s %s: placing both ports into native PCI " |
| 48 | "mode\n", name, pci_name(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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) { |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 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); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | return -EOPNOTSUPP; |
| 56 | } |
| 57 | } |
| 58 | return 0; |
| 59 | } |
| 60 | |
| 61 | #ifdef CONFIG_BLK_DEV_IDEDMA_PCI |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 62 | static int ide_pci_clear_simplex(unsigned long dma_base, const char *name) |
Bartlomiej Zolnierkiewicz | 8ac2b42a | 2008-02-01 23:09:30 +0100 | [diff] [blame] | 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); |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 68 | |
| 69 | return (dma_stat & 0x80) ? 1 : 0; |
Bartlomiej Zolnierkiewicz | 8ac2b42a | 2008-02-01 23:09:30 +0100 | [diff] [blame] | 70 | } |
| 71 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | /** |
Bartlomiej Zolnierkiewicz | b123f56 | 2008-04-26 22:25:22 +0200 | [diff] [blame] | 73 | * ide_pci_dma_base - setup BMIBA |
Bartlomiej Zolnierkiewicz | 039788e | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 74 | * @hwif: IDE interface |
Bartlomiej Zolnierkiewicz | b123f56 | 2008-04-26 22:25:22 +0200 | [diff] [blame] | 75 | * @d: IDE port info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | * |
Bartlomiej Zolnierkiewicz | c58e79d | 2007-10-16 22:29:56 +0200 | [diff] [blame] | 77 | * Fetch the DMA Bus-Master-I/O-Base-Address (BMIBA) from PCI space. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | */ |
| 79 | |
Bartlomiej Zolnierkiewicz | b123f56 | 2008-04-26 22:25:22 +0200 | [diff] [blame] | 80 | unsigned long ide_pci_dma_base(ide_hwif_t *hwif, const struct ide_port_info *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | { |
Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 82 | struct pci_dev *dev = to_pci_dev(hwif->dev); |
| 83 | unsigned long dma_base = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
Bartlomiej Zolnierkiewicz | 1357214 | 2008-07-15 21:21:49 +0200 | [diff] [blame] | 85 | if (hwif->host_flags & IDE_HFLAG_MMIO) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 { |
Bartlomiej Zolnierkiewicz | 9ffcf36 | 2007-10-19 00:30:07 +0200 | [diff] [blame] | 91 | u8 baridx = (d->host_flags & IDE_HFLAG_CS5520) ? 2 : 4; |
| 92 | |
| 93 | dma_base = pci_resource_start(dev, baridx); |
| 94 | |
Bartlomiej Zolnierkiewicz | aea5d37 | 2008-01-26 20:12:59 +0100 | [diff] [blame] | 95 | if (dma_base == 0) { |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 96 | printk(KERN_ERR "%s %s: DMA base is invalid\n", |
| 97 | d->name, pci_name(dev)); |
Bartlomiej Zolnierkiewicz | aea5d37 | 2008-01-26 20:12:59 +0100 | [diff] [blame] | 98 | return 0; |
| 99 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | } |
| 101 | |
Bartlomiej Zolnierkiewicz | aea5d37 | 2008-01-26 20:12:59 +0100 | [diff] [blame] | 102 | if (hwif->channel) |
| 103 | dma_base += 8; |
| 104 | |
Bartlomiej Zolnierkiewicz | ebb00fb | 2008-07-23 19:55:51 +0200 | [diff] [blame] | 105 | return dma_base; |
| 106 | } |
| 107 | EXPORT_SYMBOL_GPL(ide_pci_dma_base); |
| 108 | |
| 109 | int ide_pci_check_simplex(ide_hwif_t *hwif, const struct ide_port_info *d) |
| 110 | { |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 111 | struct pci_dev *dev = to_pci_dev(hwif->dev); |
Bartlomiej Zolnierkiewicz | ebb00fb | 2008-07-23 19:55:51 +0200 | [diff] [blame] | 112 | u8 dma_stat; |
| 113 | |
| 114 | if (d->host_flags & (IDE_HFLAG_MMIO | IDE_HFLAG_CS5520)) |
Bartlomiej Zolnierkiewicz | 8ac2b42a | 2008-02-01 23:09:30 +0100 | [diff] [blame] | 115 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
Bartlomiej Zolnierkiewicz | 8ac2b42a | 2008-02-01 23:09:30 +0100 | [diff] [blame] | 117 | if (d->host_flags & IDE_HFLAG_CLEAR_SIMPLEX) { |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 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)); |
Bartlomiej Zolnierkiewicz | 8ac2b42a | 2008-02-01 23:09:30 +0100 | [diff] [blame] | 121 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | } |
Bartlomiej Zolnierkiewicz | 8ac2b42a | 2008-02-01 23:09:30 +0100 | [diff] [blame] | 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 | */ |
Sergei Shtylyov | 592b531 | 2009-01-06 17:21:02 +0100 | [diff] [blame] | 134 | dma_stat = hwif->dma_ops->dma_sff_read_status(hwif); |
Bartlomiej Zolnierkiewicz | 8ac2b42a | 2008-02-01 23:09:30 +0100 | [diff] [blame] | 135 | if ((dma_stat & 0x80) && hwif->mate && hwif->mate->dma_base) { |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 136 | printk(KERN_INFO "%s %s: simplex device: DMA disabled\n", |
| 137 | d->name, pci_name(dev)); |
Bartlomiej Zolnierkiewicz | ebb00fb | 2008-07-23 19:55:51 +0200 | [diff] [blame] | 138 | return -1; |
Bartlomiej Zolnierkiewicz | 8ac2b42a | 2008-02-01 23:09:30 +0100 | [diff] [blame] | 139 | } |
| 140 | out: |
Bartlomiej Zolnierkiewicz | ebb00fb | 2008-07-23 19:55:51 +0200 | [diff] [blame] | 141 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | } |
Bartlomiej Zolnierkiewicz | ebb00fb | 2008-07-23 19:55:51 +0200 | [diff] [blame] | 143 | EXPORT_SYMBOL_GPL(ide_pci_check_simplex); |
Bartlomiej Zolnierkiewicz | d54452f | 2008-04-26 22:25:21 +0200 | [diff] [blame] | 144 | |
| 145 | /* |
| 146 | * Set up BM-DMA capability (PnP BIOS should have done this) |
| 147 | */ |
Bartlomiej Zolnierkiewicz | b123f56 | 2008-04-26 22:25:22 +0200 | [diff] [blame] | 148 | int ide_pci_set_master(struct pci_dev *dev, const char *name) |
Bartlomiej Zolnierkiewicz | d54452f | 2008-04-26 22:25:21 +0200 | [diff] [blame] | 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) { |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 159 | printk(KERN_ERR "%s %s: error updating PCICMD\n", |
| 160 | name, pci_name(dev)); |
Bartlomiej Zolnierkiewicz | d54452f | 2008-04-26 22:25:21 +0200 | [diff] [blame] | 161 | return -EIO; |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | return 0; |
| 166 | } |
Bartlomiej Zolnierkiewicz | b123f56 | 2008-04-26 22:25:22 +0200 | [diff] [blame] | 167 | EXPORT_SYMBOL_GPL(ide_pci_set_master); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | #endif /* CONFIG_BLK_DEV_IDEDMA_PCI */ |
| 169 | |
Bartlomiej Zolnierkiewicz | 8562043 | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 170 | void ide_setup_pci_noise(struct pci_dev *dev, const struct ide_port_info *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | { |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 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); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | EXPORT_SYMBOL_GPL(ide_setup_pci_noise); |
| 177 | |
| 178 | |
| 179 | /** |
| 180 | * ide_pci_enable - do PCI enables |
| 181 | * @dev: PCI device |
Bartlomiej Zolnierkiewicz | a06876a | 2017-10-03 14:17:13 +0200 | [diff] [blame] | 182 | * @bars: PCI BARs mask |
Bartlomiej Zolnierkiewicz | 039788e | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 183 | * @d: IDE port info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | * |
| 185 | * Enable the IDE PCI device. We attempt to enable the device in full |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 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. |
Paolo Ciarrocchi | 846bb88 | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 189 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | * Returns zero on success or an error code |
| 191 | */ |
Bartlomiej Zolnierkiewicz | 039788e | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 192 | |
Bartlomiej Zolnierkiewicz | a06876a | 2017-10-03 14:17:13 +0200 | [diff] [blame] | 193 | static int ide_pci_enable(struct pci_dev *dev, int bars, |
| 194 | const struct ide_port_info *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | { |
Bartlomiej Zolnierkiewicz | a06876a | 2017-10-03 14:17:13 +0200 | [diff] [blame] | 196 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
| 198 | if (pci_enable_device(dev)) { |
Benjamin Herrenschmidt | 0948391 | 2007-12-20 15:28:09 +1100 | [diff] [blame] | 199 | ret = pci_enable_device_io(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | if (ret < 0) { |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 201 | printk(KERN_WARNING "%s %s: couldn't enable device\n", |
| 202 | d->name, pci_name(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | goto out; |
| 204 | } |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 205 | printk(KERN_WARNING "%s %s: BIOS configuration fixed\n", |
| 206 | d->name, pci_name(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | /* |
Bartlomiej Zolnierkiewicz | 039788e | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 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) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | */ |
Quentin Lambert | d681f116 | 2015-04-13 10:26:53 +0200 | [diff] [blame] | 214 | ret = dma_set_mask(&dev->dev, DMA_BIT_MASK(32)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | if (ret < 0) { |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 216 | printk(KERN_ERR "%s %s: can't set DMA mask\n", |
| 217 | d->name, pci_name(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | goto out; |
| 219 | } |
| 220 | |
Bartlomiej Zolnierkiewicz | 0d1bad2 | 2008-04-26 22:25:19 +0200 | [diff] [blame] | 221 | ret = pci_request_selected_regions(dev, bars, d->name); |
| 222 | if (ret < 0) |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 223 | printk(KERN_ERR "%s %s: can't reserve resources\n", |
| 224 | d->name, pci_name(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | out: |
| 226 | return ret; |
| 227 | } |
| 228 | |
| 229 | /** |
| 230 | * ide_pci_configure - configure an unconfigured device |
| 231 | * @dev: PCI device |
Bartlomiej Zolnierkiewicz | 039788e | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 232 | * @d: IDE port info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | * |
| 234 | * Enable and configure the PCI device we have been passed. |
| 235 | * Returns zero on success or an error code. |
| 236 | */ |
Bartlomiej Zolnierkiewicz | 039788e | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 237 | |
Bartlomiej Zolnierkiewicz | 8562043 | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 238 | static int ide_pci_configure(struct pci_dev *dev, const struct ide_port_info *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
Paolo Ciarrocchi | 846bb88 | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 248 | if (ide_setup_pci_baseregs(dev, d->name) || |
| 249 | pci_write_config_word(dev, PCI_COMMAND, pcicmd | PCI_COMMAND_IO)) { |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 250 | printk(KERN_INFO "%s %s: device disabled (BIOS)\n", |
| 251 | d->name, pci_name(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | return -ENODEV; |
| 253 | } |
| 254 | if (pci_read_config_word(dev, PCI_COMMAND, &pcicmd)) { |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 255 | printk(KERN_ERR "%s %s: error accessing PCI regs\n", |
| 256 | d->name, pci_name(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | return -EIO; |
| 258 | } |
| 259 | if (!(pcicmd & PCI_COMMAND_IO)) { |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 260 | printk(KERN_ERR "%s %s: unable to enable IDE controller\n", |
| 261 | d->name, pci_name(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | return -ENXIO; |
| 263 | } |
| 264 | return 0; |
| 265 | } |
| 266 | |
| 267 | /** |
| 268 | * ide_pci_check_iomem - check a register is I/O |
Bartlomiej Zolnierkiewicz | 039788e | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 269 | * @dev: PCI device |
| 270 | * @d: IDE port info |
| 271 | * @bar: BAR number |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | * |
Sergei Shtylyov | 1baccff | 2008-04-26 17:36:31 +0200 | [diff] [blame] | 273 | * Checks if a BAR is configured and points to MMIO space. If so, |
| 274 | * return an error code. Otherwise return 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | */ |
Bartlomiej Zolnierkiewicz | 039788e | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 276 | |
Sergei Shtylyov | 1baccff | 2008-04-26 17:36:31 +0200 | [diff] [blame] | 277 | static int ide_pci_check_iomem(struct pci_dev *dev, const struct ide_port_info *d, |
| 278 | int bar) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | { |
| 280 | ulong flags = pci_resource_flags(dev, bar); |
Paolo Ciarrocchi | 846bb88 | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 281 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | /* Unconfigured ? */ |
| 283 | if (!flags || pci_resource_len(dev, bar) == 0) |
| 284 | return 0; |
| 285 | |
Sergei Shtylyov | 1baccff | 2008-04-26 17:36:31 +0200 | [diff] [blame] | 286 | /* I/O space */ |
| 287 | if (flags & IORESOURCE_IO) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | return 0; |
Paolo Ciarrocchi | 846bb88 | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | /* Bad */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | return -EINVAL; |
| 292 | } |
| 293 | |
| 294 | /** |
Bartlomiej Zolnierkiewicz | 9f36d31 | 2009-05-17 19:12:25 +0200 | [diff] [blame] | 295 | * ide_hw_configure - configure a struct ide_hw instance |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | * @dev: PCI device holding interface |
Bartlomiej Zolnierkiewicz | 039788e | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 297 | * @d: IDE port info |
Bartlomiej Zolnierkiewicz | 1ebf749 | 2008-02-02 19:56:30 +0100 | [diff] [blame] | 298 | * @port: port number |
Bartlomiej Zolnierkiewicz | 9f36d31 | 2009-05-17 19:12:25 +0200 | [diff] [blame] | 299 | * @hw: struct ide_hw instance corresponding to this port |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | * |
Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 305 | * Returns zero on success or an error code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | */ |
Bartlomiej Zolnierkiewicz | 039788e | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 307 | |
Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 308 | static int ide_hw_configure(struct pci_dev *dev, const struct ide_port_info *d, |
Bartlomiej Zolnierkiewicz | 9f36d31 | 2009-05-17 19:12:25 +0200 | [diff] [blame] | 309 | unsigned int port, struct ide_hw *hw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | { |
| 311 | unsigned long ctl = 0, base = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
Bartlomiej Zolnierkiewicz | a5d8c5c | 2007-07-20 01:11:55 +0200 | [diff] [blame] | 313 | if ((d->host_flags & IDE_HFLAG_ISA_PORTS) == 0) { |
Sergei Shtylyov | 1baccff | 2008-04-26 17:36:31 +0200 | [diff] [blame] | 314 | if (ide_pci_check_iomem(dev, d, 2 * port) || |
| 315 | ide_pci_check_iomem(dev, d, 2 * port + 1)) { |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 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); |
Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 319 | return -EINVAL; |
Sergei Shtylyov | 1baccff | 2008-04-26 17:36:31 +0200 | [diff] [blame] | 320 | } |
Paolo Ciarrocchi | 846bb88 | 2008-04-26 17:36:39 +0200 | [diff] [blame] | 321 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | ctl = pci_resource_start(dev, 2*port+1); |
| 323 | base = pci_resource_start(dev, 2*port); |
Bartlomiej Zolnierkiewicz | c1da678 | 2008-07-16 20:33:41 +0200 | [diff] [blame] | 324 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | /* Use default values */ |
| 326 | ctl = port ? 0x374 : 0x3f4; |
| 327 | base = port ? 0x170 : 0x1f0; |
| 328 | } |
Bartlomiej Zolnierkiewicz | bad7c82 | 2008-04-26 17:36:31 +0200 | [diff] [blame] | 329 | |
Bartlomiej Zolnierkiewicz | c1da678 | 2008-07-16 20:33:41 +0200 | [diff] [blame] | 330 | if (!base || !ctl) { |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 331 | printk(KERN_ERR "%s %s: bad PCI BARs for port %d, skipping\n", |
| 332 | d->name, pci_name(dev), port); |
Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 333 | return -EINVAL; |
Bartlomiej Zolnierkiewicz | c1da678 | 2008-07-16 20:33:41 +0200 | [diff] [blame] | 334 | } |
| 335 | |
Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 336 | memset(hw, 0, sizeof(*hw)); |
Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 337 | hw->dev = &dev->dev; |
Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 338 | ide_std_init_ports(hw, base, ctl | 2); |
| 339 | |
Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 340 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | } |
| 342 | |
Bartlomiej Zolnierkiewicz | c413b9b | 2008-02-02 19:56:31 +0100 | [diff] [blame] | 343 | #ifdef CONFIG_BLK_DEV_IDEDMA_PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | /** |
| 345 | * ide_hwif_setup_dma - configure DMA interface |
Bartlomiej Zolnierkiewicz | 039788e | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 346 | * @hwif: IDE interface |
Bartlomiej Zolnierkiewicz | c413b9b | 2008-02-02 19:56:31 +0100 | [diff] [blame] | 347 | * @d: IDE port info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
Bartlomiej Zolnierkiewicz | 039788e | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 353 | |
Bartlomiej Zolnierkiewicz | b123f56 | 2008-04-26 22:25:22 +0200 | [diff] [blame] | 354 | int ide_hwif_setup_dma(ide_hwif_t *hwif, const struct ide_port_info *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | { |
Bartlomiej Zolnierkiewicz | c413b9b | 2008-02-02 19:56:31 +0100 | [diff] [blame] | 356 | struct pci_dev *dev = to_pci_dev(hwif->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | |
Bartlomiej Zolnierkiewicz | 47b6878 | 2007-10-19 00:30:06 +0200 | [diff] [blame] | 358 | if ((d->host_flags & IDE_HFLAG_NO_AUTODMA) == 0 || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE && |
| 360 | (dev->class & 0x80))) { |
Bartlomiej Zolnierkiewicz | b123f56 | 2008-04-26 22:25:22 +0200 | [diff] [blame] | 361 | unsigned long base = ide_pci_dma_base(hwif, d); |
Bartlomiej Zolnierkiewicz | 23658f8 | 2008-04-26 22:25:21 +0200 | [diff] [blame] | 362 | |
Bartlomiej Zolnierkiewicz | ebb00fb | 2008-07-23 19:55:51 +0200 | [diff] [blame] | 363 | if (base == 0) |
| 364 | return -1; |
| 365 | |
| 366 | hwif->dma_base = base; |
| 367 | |
Sergei Shtylyov | 592b531 | 2009-01-06 17:21:02 +0100 | [diff] [blame] | 368 | if (hwif->dma_ops == NULL) |
| 369 | hwif->dma_ops = &sff_dma_ops; |
| 370 | |
Bartlomiej Zolnierkiewicz | ebb00fb | 2008-07-23 19:55:51 +0200 | [diff] [blame] | 371 | if (ide_pci_check_simplex(hwif, d) < 0) |
| 372 | return -1; |
| 373 | |
| 374 | if (ide_pci_set_master(dev, d->name) < 0) |
Bartlomiej Zolnierkiewicz | b123f56 | 2008-04-26 22:25:22 +0200 | [diff] [blame] | 375 | return -1; |
Bartlomiej Zolnierkiewicz | d54452f | 2008-04-26 22:25:21 +0200 | [diff] [blame] | 376 | |
Bartlomiej Zolnierkiewicz | 1357214 | 2008-07-15 21:21:49 +0200 | [diff] [blame] | 377 | if (hwif->host_flags & IDE_HFLAG_MMIO) |
Bartlomiej Zolnierkiewicz | 63158d5 | 2008-04-26 22:25:21 +0200 | [diff] [blame] | 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 | |
Bartlomiej Zolnierkiewicz | b123f56 | 2008-04-26 22:25:22 +0200 | [diff] [blame] | 385 | if (ide_allocate_dma_engine(hwif)) |
| 386 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | } |
Bartlomiej Zolnierkiewicz | d54452f | 2008-04-26 22:25:21 +0200 | [diff] [blame] | 388 | |
Bartlomiej Zolnierkiewicz | b123f56 | 2008-04-26 22:25:22 +0200 | [diff] [blame] | 389 | return 0; |
Bartlomiej Zolnierkiewicz | 039788e | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 390 | } |
Bartlomiej Zolnierkiewicz | c413b9b | 2008-02-02 19:56:31 +0100 | [diff] [blame] | 391 | #endif /* CONFIG_BLK_DEV_IDEDMA_PCI */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | |
| 393 | /** |
| 394 | * ide_setup_pci_controller - set up IDE PCI |
| 395 | * @dev: PCI device |
Bartlomiej Zolnierkiewicz | a06876a | 2017-10-03 14:17:13 +0200 | [diff] [blame] | 396 | * @bars: PCI BARs mask |
Bartlomiej Zolnierkiewicz | 039788e | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 397 | * @d: IDE port info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | * @noisy: verbose flag |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
Bartlomiej Zolnierkiewicz | 039788e | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 404 | |
Bartlomiej Zolnierkiewicz | a06876a | 2017-10-03 14:17:13 +0200 | [diff] [blame] | 405 | static int ide_setup_pci_controller(struct pci_dev *dev, int bars, |
Bartlomiej Zolnierkiewicz | a95925a | 2008-07-24 22:53:11 +0200 | [diff] [blame] | 406 | const struct ide_port_info *d, int noisy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | { |
| 408 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | u16 pcicmd; |
| 410 | |
| 411 | if (noisy) |
| 412 | ide_setup_pci_noise(dev, d); |
| 413 | |
Bartlomiej Zolnierkiewicz | a06876a | 2017-10-03 14:17:13 +0200 | [diff] [blame] | 414 | ret = ide_pci_enable(dev, bars, d); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | if (ret < 0) |
| 416 | goto out; |
| 417 | |
| 418 | ret = pci_read_config_word(dev, PCI_COMMAND, &pcicmd); |
| 419 | if (ret < 0) { |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 420 | printk(KERN_ERR "%s %s: error accessing PCI regs\n", |
| 421 | d->name, pci_name(dev)); |
Bartlomiej Zolnierkiewicz | a06876a | 2017-10-03 14:17:13 +0200 | [diff] [blame] | 422 | goto out_free_bars; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | } |
| 424 | if (!(pcicmd & PCI_COMMAND_IO)) { /* is device disabled? */ |
| 425 | ret = ide_pci_configure(dev, d); |
| 426 | if (ret < 0) |
Bartlomiej Zolnierkiewicz | a06876a | 2017-10-03 14:17:13 +0200 | [diff] [blame] | 427 | goto out_free_bars; |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 428 | printk(KERN_INFO "%s %s: device enabled (Linux)\n", |
| 429 | d->name, pci_name(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | } |
| 431 | |
Bartlomiej Zolnierkiewicz | a06876a | 2017-10-03 14:17:13 +0200 | [diff] [blame] | 432 | goto out; |
| 433 | |
| 434 | out_free_bars: |
| 435 | pci_release_selected_regions(dev, bars); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | out: |
| 437 | return ret; |
| 438 | } |
| 439 | |
| 440 | /** |
| 441 | * ide_pci_setup_ports - configure ports/devices on PCI IDE |
| 442 | * @dev: PCI device |
Bartlomiej Zolnierkiewicz | 039788e | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 443 | * @d: IDE port info |
Bartlomiej Zolnierkiewicz | 9f36d31 | 2009-05-17 19:12:25 +0200 | [diff] [blame] | 444 | * @hw: struct ide_hw instances corresponding to this PCI IDE device |
| 445 | * @hws: struct ide_hw pointers table to update |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
Bartlomiej Zolnierkiewicz | 8447d9d | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 455 | |
Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 456 | void ide_pci_setup_ports(struct pci_dev *dev, const struct ide_port_info *d, |
Bartlomiej Zolnierkiewicz | 9f36d31 | 2009-05-17 19:12:25 +0200 | [diff] [blame] | 457 | struct ide_hw *hw, struct ide_hw **hws) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | { |
Bartlomiej Zolnierkiewicz | a5d8c5c | 2007-07-20 01:11:55 +0200 | [diff] [blame] | 459 | int channels = (d->host_flags & IDE_HFLAG_SINGLE) ? 1 : 2, port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | u8 tmp; |
| 461 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | /* |
| 463 | * Set up the IDE ports |
| 464 | */ |
Bartlomiej Zolnierkiewicz | cf6e854 | 2007-10-20 00:32:29 +0200 | [diff] [blame] | 465 | |
Bartlomiej Zolnierkiewicz | a5d8c5c | 2007-07-20 01:11:55 +0200 | [diff] [blame] | 466 | for (port = 0; port < channels; ++port) { |
Bartlomiej Zolnierkiewicz | c0ae502 | 2009-01-06 17:20:52 +0100 | [diff] [blame] | 467 | const struct ide_pci_enablebit *e = &d->enablebits[port]; |
Bartlomiej Zolnierkiewicz | 8562043 | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 468 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | if (e->reg && (pci_read_config_byte(dev, e->reg, &tmp) || |
Bartlomiej Zolnierkiewicz | cf6e854 | 2007-10-20 00:32:29 +0200 | [diff] [blame] | 470 | (tmp & e->mask) != e->val)) { |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 471 | printk(KERN_INFO "%s %s: IDE port disabled\n", |
| 472 | d->name, pci_name(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | continue; /* port not enabled */ |
Bartlomiej Zolnierkiewicz | cf6e854 | 2007-10-20 00:32:29 +0200 | [diff] [blame] | 474 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | |
Bartlomiej Zolnierkiewicz | 86ccf37 | 2009-03-24 23:22:53 +0100 | [diff] [blame] | 476 | if (ide_hw_configure(dev, d, port, hw + port)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | continue; |
| 478 | |
Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 479 | *(hws + port) = hw + port; |
Bartlomiej Zolnierkiewicz | 1ebf749 | 2008-02-02 19:56:30 +0100 | [diff] [blame] | 480 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | EXPORT_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 |
Bartlomiej Zolnierkiewicz | 039788e | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 491 | * we "know" about, this information is in the struct ide_port_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | * for all other chipsets, we just assume both interfaces are enabled. |
| 493 | */ |
Bartlomiej Zolnierkiewicz | 039788e | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 494 | static int do_ide_setup_pci_device(struct pci_dev *dev, |
Bartlomiej Zolnierkiewicz | 8562043 | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 495 | const struct ide_port_info *d, |
Bartlomiej Zolnierkiewicz | 51d87ed | 2008-07-23 19:55:49 +0200 | [diff] [blame] | 496 | u8 noisy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | int pciirq, ret; |
| 499 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | /* |
| 501 | * Can we trust the reported IRQ? |
| 502 | */ |
| 503 | pciirq = dev->irq; |
| 504 | |
Bartlomiej Zolnierkiewicz | 708e5f9 | 2008-07-24 22:53:11 +0200 | [diff] [blame] | 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 | */ |
Bartlomiej Zolnierkiewicz | a326b02 | 2008-07-24 22:53:33 +0200 | [diff] [blame] | 511 | ret = d->init_chipset ? d->init_chipset(dev) : 0; |
Bartlomiej Zolnierkiewicz | 708e5f9 | 2008-07-24 22:53:11 +0200 | [diff] [blame] | 512 | if (ret < 0) |
| 513 | goto out; |
| 514 | |
Bartlomiej Zolnierkiewicz | 8c6de94 | 2009-01-06 17:20:58 +0100 | [diff] [blame] | 515 | if (ide_pci_is_in_compatibility_mode(dev)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | if (noisy) |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 517 | printk(KERN_INFO "%s %s: not 100%% native mode: will " |
| 518 | "probe irqs later\n", d->name, pci_name(dev)); |
Bartlomiej Zolnierkiewicz | 2ed0ef5 | 2009-03-24 23:22:53 +0100 | [diff] [blame] | 519 | pciirq = 0; |
Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 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); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | } |
| 527 | |
Bartlomiej Zolnierkiewicz | 51d87ed | 2008-07-23 19:55:49 +0200 | [diff] [blame] | 528 | ret = pciirq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | out: |
| 530 | return ret; |
| 531 | } |
| 532 | |
Bartlomiej Zolnierkiewicz | 6cdf6eb | 2008-07-24 22:53:14 +0200 | [diff] [blame] | 533 | int ide_pci_init_two(struct pci_dev *dev1, struct pci_dev *dev2, |
| 534 | const struct ide_port_info *d, void *priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | { |
| 536 | struct pci_dev *pdev[] = { dev1, dev2 }; |
Bartlomiej Zolnierkiewicz | 6cdf6eb | 2008-07-24 22:53:14 +0200 | [diff] [blame] | 537 | struct ide_host *host; |
Bartlomiej Zolnierkiewicz | a06876a | 2017-10-03 14:17:13 +0200 | [diff] [blame] | 538 | int ret, i, n_ports = dev2 ? 4 : 2, bars; |
Bartlomiej Zolnierkiewicz | 9f36d31 | 2009-05-17 19:12:25 +0200 | [diff] [blame] | 539 | struct ide_hw hw[4], *hws[] = { NULL, NULL, NULL, NULL }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | |
Bartlomiej Zolnierkiewicz | a06876a | 2017-10-03 14:17:13 +0200 | [diff] [blame] | 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 | |
Bartlomiej Zolnierkiewicz | ad7c52d | 2009-06-10 14:37:21 +0200 | [diff] [blame] | 553 | for (i = 0; i < n_ports / 2; i++) { |
Bartlomiej Zolnierkiewicz | a06876a | 2017-10-03 14:17:13 +0200 | [diff] [blame] | 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); |
Bartlomiej Zolnierkiewicz | a742d6c | 2008-07-24 22:53:12 +0200 | [diff] [blame] | 558 | goto out; |
Bartlomiej Zolnierkiewicz | a06876a | 2017-10-03 14:17:13 +0200 | [diff] [blame] | 559 | } |
Bartlomiej Zolnierkiewicz | a742d6c | 2008-07-24 22:53:12 +0200 | [diff] [blame] | 560 | |
Bartlomiej Zolnierkiewicz | 86ccf37 | 2009-03-24 23:22:53 +0100 | [diff] [blame] | 561 | ide_pci_setup_ports(pdev[i], d, &hw[i*2], &hws[i*2]); |
Bartlomiej Zolnierkiewicz | 6cdf6eb | 2008-07-24 22:53:14 +0200 | [diff] [blame] | 562 | } |
Bartlomiej Zolnierkiewicz | 8c2eece | 2008-07-24 22:53:12 +0200 | [diff] [blame] | 563 | |
Bartlomiej Zolnierkiewicz | ad7c52d | 2009-06-10 14:37:21 +0200 | [diff] [blame] | 564 | host = ide_host_alloc(d, hws, n_ports); |
Bartlomiej Zolnierkiewicz | 6cdf6eb | 2008-07-24 22:53:14 +0200 | [diff] [blame] | 565 | if (host == NULL) { |
| 566 | ret = -ENOMEM; |
Bartlomiej Zolnierkiewicz | a06876a | 2017-10-03 14:17:13 +0200 | [diff] [blame] | 567 | goto out_free_bars; |
Bartlomiej Zolnierkiewicz | 6cdf6eb | 2008-07-24 22:53:14 +0200 | [diff] [blame] | 568 | } |
| 569 | |
| 570 | host->dev[0] = &dev1->dev; |
Bartlomiej Zolnierkiewicz | ad7c52d | 2009-06-10 14:37:21 +0200 | [diff] [blame] | 571 | if (dev2) |
| 572 | host->dev[1] = &dev2->dev; |
Bartlomiej Zolnierkiewicz | 6cdf6eb | 2008-07-24 22:53:14 +0200 | [diff] [blame] | 573 | |
| 574 | host->host_priv = priv; |
Bartlomiej Zolnierkiewicz | 255115fb | 2009-03-27 12:46:27 +0100 | [diff] [blame] | 575 | host->irq_flags = IRQF_SHARED; |
| 576 | |
Bartlomiej Zolnierkiewicz | ef0b042 | 2008-07-24 22:53:19 +0200 | [diff] [blame] | 577 | pci_set_drvdata(pdev[0], host); |
Bartlomiej Zolnierkiewicz | ad7c52d | 2009-06-10 14:37:21 +0200 | [diff] [blame] | 578 | if (dev2) |
| 579 | pci_set_drvdata(pdev[1], host); |
Bartlomiej Zolnierkiewicz | 6cdf6eb | 2008-07-24 22:53:14 +0200 | [diff] [blame] | 580 | |
Bartlomiej Zolnierkiewicz | ad7c52d | 2009-06-10 14:37:21 +0200 | [diff] [blame] | 581 | for (i = 0; i < n_ports / 2; i++) { |
Bartlomiej Zolnierkiewicz | 51d87ed | 2008-07-23 19:55:49 +0200 | [diff] [blame] | 582 | ret = do_ide_setup_pci_device(pdev[i], d, !i); |
| 583 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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) |
Bartlomiej Zolnierkiewicz | a06876a | 2017-10-03 14:17:13 +0200 | [diff] [blame] | 589 | goto out_free_bars; |
Bartlomiej Zolnierkiewicz | 51d87ed | 2008-07-23 19:55:49 +0200 | [diff] [blame] | 590 | |
Bartlomiej Zolnierkiewicz | 8c2eece | 2008-07-24 22:53:12 +0200 | [diff] [blame] | 591 | /* fixup IRQ */ |
Bartlomiej Zolnierkiewicz | f65dedf | 2009-03-24 23:22:51 +0100 | [diff] [blame] | 592 | if (ide_pci_is_in_compatibility_mode(pdev[i])) { |
Bartlomiej Zolnierkiewicz | 5bae8bf | 2009-03-24 23:22:49 +0100 | [diff] [blame] | 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); |
Bartlomiej Zolnierkiewicz | f65dedf | 2009-03-24 23:22:51 +0100 | [diff] [blame] | 595 | } else |
| 596 | hw[i*2 + 1].irq = hw[i*2].irq = ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | } |
| 598 | |
Bartlomiej Zolnierkiewicz | 6cdf6eb | 2008-07-24 22:53:14 +0200 | [diff] [blame] | 599 | ret = ide_host_register(host, d, hws); |
| 600 | if (ret) |
| 601 | ide_host_free(host); |
Bartlomiej Zolnierkiewicz | a06876a | 2017-10-03 14:17:13 +0200 | [diff] [blame] | 602 | else |
| 603 | goto out; |
| 604 | |
| 605 | out_free_bars: |
| 606 | i = n_ports / 2; |
| 607 | while (i--) |
| 608 | pci_release_selected_regions(pdev[i], bars); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | out: |
| 610 | return ret; |
| 611 | } |
Bartlomiej Zolnierkiewicz | 6cdf6eb | 2008-07-24 22:53:14 +0200 | [diff] [blame] | 612 | EXPORT_SYMBOL_GPL(ide_pci_init_two); |
Bartlomiej Zolnierkiewicz | ef0b042 | 2008-07-24 22:53:19 +0200 | [diff] [blame] | 613 | |
Bartlomiej Zolnierkiewicz | ad7c52d | 2009-06-10 14:37:21 +0200 | [diff] [blame] | 614 | int 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 | } |
| 619 | EXPORT_SYMBOL_GPL(ide_pci_init_one); |
| 620 | |
Bartlomiej Zolnierkiewicz | ef0b042 | 2008-07-24 22:53:19 +0200 | [diff] [blame] | 621 | void 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 | } |
| 649 | EXPORT_SYMBOL_GPL(ide_pci_remove); |
Bartlomiej Zolnierkiewicz | feb22b7 | 2008-10-10 22:39:32 +0200 | [diff] [blame] | 650 | |
| 651 | #ifdef CONFIG_PM |
| 652 | int 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 | } |
| 660 | EXPORT_SYMBOL_GPL(ide_pci_suspend); |
| 661 | |
| 662 | int 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 | } |
| 681 | EXPORT_SYMBOL_GPL(ide_pci_resume); |
| 682 | #endif |