Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 1 | /* |
| 2 | * pata_amd.c - AMD PATA for new ATA layer |
| 3 | * (C) 2005-2006 Red Hat Inc |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 4 | * |
| 5 | * Based on pata-sil680. Errata information is taken from data sheets |
| 6 | * and the amd74xx.c driver by Vojtech Pavlik. Nvidia SATA devices are |
| 7 | * claimed by sata-nv.c. |
| 8 | * |
| 9 | * TODO: |
| 10 | * Variable system clock when/if it makes sense |
| 11 | * Power management on ports |
| 12 | * |
| 13 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 14 | * Documentation publicly available. |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 15 | */ |
| 16 | |
| 17 | #include <linux/kernel.h> |
| 18 | #include <linux/module.h> |
| 19 | #include <linux/pci.h> |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 20 | #include <linux/blkdev.h> |
| 21 | #include <linux/delay.h> |
| 22 | #include <scsi/scsi_host.h> |
| 23 | #include <linux/libata.h> |
| 24 | |
| 25 | #define DRV_NAME "pata_amd" |
Alan Cox | c48052c | 2009-02-11 13:08:41 -0800 | [diff] [blame] | 26 | #define DRV_VERSION "0.4.1" |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 27 | |
| 28 | /** |
| 29 | * timing_setup - shared timing computation and load |
| 30 | * @ap: ATA port being set up |
| 31 | * @adev: drive being configured |
| 32 | * @offset: port offset |
| 33 | * @speed: target speed |
| 34 | * @clock: clock multiplier (number of times 33MHz for this part) |
| 35 | * |
| 36 | * Perform the actual timing set up for Nvidia or AMD PATA devices. |
| 37 | * The actual devices vary so they all call into this helper function |
| 38 | * providing the clock multipler and offset (because AMD and Nvidia put |
| 39 | * the ports at different locations). |
| 40 | */ |
| 41 | |
| 42 | static void timing_setup(struct ata_port *ap, struct ata_device *adev, int offset, int speed, int clock) |
| 43 | { |
| 44 | static const unsigned char amd_cyc2udma[] = { |
| 45 | 6, 6, 5, 4, 0, 1, 1, 2, 2, 3, 3, 3, 3, 3, 3, 7 |
| 46 | }; |
| 47 | |
| 48 | struct pci_dev *pdev = to_pci_dev(ap->host->dev); |
| 49 | struct ata_device *peer = ata_dev_pair(adev); |
| 50 | int dn = ap->port_no * 2 + adev->devno; |
| 51 | struct ata_timing at, apeer; |
| 52 | int T, UT; |
| 53 | const int amd_clock = 33333; /* KHz. */ |
| 54 | u8 t; |
| 55 | |
| 56 | T = 1000000000 / amd_clock; |
Harvey Harrison | d9c74fb | 2008-03-28 14:33:56 -0700 | [diff] [blame] | 57 | UT = T; |
| 58 | if (clock >= 2) |
| 59 | UT = T / 2; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 60 | |
| 61 | if (ata_timing_compute(adev, speed, &at, T, UT) < 0) { |
Joe Perches | a44fec1 | 2011-04-15 15:51:58 -0700 | [diff] [blame] | 62 | dev_err(&pdev->dev, "unknown mode %d\n", speed); |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 63 | return; |
| 64 | } |
| 65 | |
| 66 | if (peer) { |
| 67 | /* This may be over conservative */ |
| 68 | if (peer->dma_mode) { |
| 69 | ata_timing_compute(peer, peer->dma_mode, &apeer, T, UT); |
| 70 | ata_timing_merge(&apeer, &at, &at, ATA_TIMING_8BIT); |
| 71 | } |
| 72 | ata_timing_compute(peer, peer->pio_mode, &apeer, T, UT); |
| 73 | ata_timing_merge(&apeer, &at, &at, ATA_TIMING_8BIT); |
| 74 | } |
| 75 | |
| 76 | if (speed == XFER_UDMA_5 && amd_clock <= 33333) at.udma = 1; |
| 77 | if (speed == XFER_UDMA_6 && amd_clock <= 33333) at.udma = 15; |
| 78 | |
| 79 | /* |
| 80 | * Now do the setup work |
| 81 | */ |
| 82 | |
| 83 | /* Configure the address set up timing */ |
| 84 | pci_read_config_byte(pdev, offset + 0x0C, &t); |
Harvey Harrison | 07633b5 | 2008-05-14 16:17:00 -0700 | [diff] [blame] | 85 | t = (t & ~(3 << ((3 - dn) << 1))) | ((clamp_val(at.setup, 1, 4) - 1) << ((3 - dn) << 1)); |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 86 | pci_write_config_byte(pdev, offset + 0x0C , t); |
| 87 | |
| 88 | /* Configure the 8bit I/O timing */ |
| 89 | pci_write_config_byte(pdev, offset + 0x0E + (1 - (dn >> 1)), |
Harvey Harrison | 07633b5 | 2008-05-14 16:17:00 -0700 | [diff] [blame] | 90 | ((clamp_val(at.act8b, 1, 16) - 1) << 4) | (clamp_val(at.rec8b, 1, 16) - 1)); |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 91 | |
| 92 | /* Drive timing */ |
| 93 | pci_write_config_byte(pdev, offset + 0x08 + (3 - dn), |
Harvey Harrison | 07633b5 | 2008-05-14 16:17:00 -0700 | [diff] [blame] | 94 | ((clamp_val(at.active, 1, 16) - 1) << 4) | (clamp_val(at.recover, 1, 16) - 1)); |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 95 | |
| 96 | switch (clock) { |
| 97 | case 1: |
Harvey Harrison | 07633b5 | 2008-05-14 16:17:00 -0700 | [diff] [blame] | 98 | t = at.udma ? (0xc0 | (clamp_val(at.udma, 2, 5) - 2)) : 0x03; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 99 | break; |
| 100 | |
| 101 | case 2: |
Harvey Harrison | 07633b5 | 2008-05-14 16:17:00 -0700 | [diff] [blame] | 102 | t = at.udma ? (0xc0 | amd_cyc2udma[clamp_val(at.udma, 2, 10)]) : 0x03; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 103 | break; |
| 104 | |
| 105 | case 3: |
Harvey Harrison | 07633b5 | 2008-05-14 16:17:00 -0700 | [diff] [blame] | 106 | t = at.udma ? (0xc0 | amd_cyc2udma[clamp_val(at.udma, 1, 10)]) : 0x03; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 107 | break; |
| 108 | |
| 109 | case 4: |
Harvey Harrison | 07633b5 | 2008-05-14 16:17:00 -0700 | [diff] [blame] | 110 | t = at.udma ? (0xc0 | amd_cyc2udma[clamp_val(at.udma, 1, 15)]) : 0x03; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 111 | break; |
| 112 | |
| 113 | default: |
| 114 | return; |
| 115 | } |
| 116 | |
| 117 | /* UDMA timing */ |
Bartlomiej Zolnierkiewicz | 943547a | 2007-12-02 03:47:01 +0100 | [diff] [blame] | 118 | if (at.udma) |
| 119 | pci_write_config_byte(pdev, offset + 0x10 + (3 - dn), t); |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | /** |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 123 | * amd_pre_reset - perform reset handling |
| 124 | * @link: ATA link |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 125 | * @deadline: deadline jiffies for the operation |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 126 | * |
Alan Cox | eb4a2c7 | 2007-04-11 00:04:20 +0100 | [diff] [blame] | 127 | * Reset sequence checking enable bits to see which ports are |
| 128 | * active. |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 129 | */ |
| 130 | |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 131 | static int amd_pre_reset(struct ata_link *link, unsigned long deadline) |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 132 | { |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 133 | static const struct pci_bits amd_enable_bits[] = { |
| 134 | { 0x40, 1, 0x02, 0x02 }, |
| 135 | { 0x40, 1, 0x01, 0x01 } |
| 136 | }; |
| 137 | |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 138 | struct ata_port *ap = link->ap; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 139 | struct pci_dev *pdev = to_pci_dev(ap->host->dev); |
Jeff Garzik | 85cd725 | 2006-08-31 00:03:49 -0400 | [diff] [blame] | 140 | |
Alan Cox | c961922 | 2006-09-26 17:53:38 +0100 | [diff] [blame] | 141 | if (!pci_test_config_bits(pdev, &amd_enable_bits[ap->port_no])) |
| 142 | return -ENOENT; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 143 | |
Tejun Heo | 9363c38 | 2008-04-07 22:47:16 +0900 | [diff] [blame] | 144 | return ata_sff_prereset(link, deadline); |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 145 | } |
| 146 | |
Alan Cox | c48052c | 2009-02-11 13:08:41 -0800 | [diff] [blame] | 147 | /** |
| 148 | * amd_cable_detect - report cable type |
| 149 | * @ap: port |
| 150 | * |
| 151 | * AMD controller/BIOS setups record the cable type in word 0x42 |
| 152 | */ |
| 153 | |
Alan Cox | eb4a2c7 | 2007-04-11 00:04:20 +0100 | [diff] [blame] | 154 | static int amd_cable_detect(struct ata_port *ap) |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 155 | { |
Alan Cox | eb4a2c7 | 2007-04-11 00:04:20 +0100 | [diff] [blame] | 156 | static const u32 bitmask[2] = {0x03, 0x0C}; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 157 | struct pci_dev *pdev = to_pci_dev(ap->host->dev); |
Alan Cox | eb4a2c7 | 2007-04-11 00:04:20 +0100 | [diff] [blame] | 158 | u8 ata66; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 159 | |
Alan Cox | eb4a2c7 | 2007-04-11 00:04:20 +0100 | [diff] [blame] | 160 | pci_read_config_byte(pdev, 0x42, &ata66); |
| 161 | if (ata66 & bitmask[ap->port_no]) |
| 162 | return ATA_CBL_PATA80; |
| 163 | return ATA_CBL_PATA40; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | /** |
Alan Cox | c48052c | 2009-02-11 13:08:41 -0800 | [diff] [blame] | 167 | * amd_fifo_setup - set the PIO FIFO for ATA/ATAPI |
| 168 | * @ap: ATA interface |
| 169 | * @adev: ATA device |
| 170 | * |
| 171 | * Set the PCI fifo for this device according to the devices present |
| 172 | * on the bus at this point in time. We need to turn the post write buffer |
| 173 | * off for ATAPI devices as we may need to issue a word sized write to the |
| 174 | * device as the final I/O |
| 175 | */ |
| 176 | |
| 177 | static void amd_fifo_setup(struct ata_port *ap) |
| 178 | { |
| 179 | struct ata_device *adev; |
| 180 | struct pci_dev *pdev = to_pci_dev(ap->host->dev); |
| 181 | static const u8 fifobit[2] = { 0xC0, 0x30}; |
| 182 | u8 fifo = fifobit[ap->port_no]; |
| 183 | u8 r; |
| 184 | |
| 185 | |
| 186 | ata_for_each_dev(adev, &ap->link, ENABLED) { |
| 187 | if (adev->class == ATA_DEV_ATAPI) |
| 188 | fifo = 0; |
| 189 | } |
| 190 | if (pdev->device == PCI_DEVICE_ID_AMD_VIPER_7411) /* FIFO is broken */ |
| 191 | fifo = 0; |
| 192 | |
| 193 | /* On the later chips the read prefetch bits become no-op bits */ |
| 194 | pci_read_config_byte(pdev, 0x41, &r); |
| 195 | r &= ~fifobit[ap->port_no]; |
| 196 | r |= fifo; |
| 197 | pci_write_config_byte(pdev, 0x41, r); |
| 198 | } |
| 199 | |
| 200 | /** |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 201 | * amd33_set_piomode - set initial PIO mode data |
| 202 | * @ap: ATA interface |
| 203 | * @adev: ATA device |
| 204 | * |
| 205 | * Program the AMD registers for PIO mode. |
| 206 | */ |
| 207 | |
| 208 | static void amd33_set_piomode(struct ata_port *ap, struct ata_device *adev) |
| 209 | { |
Alan Cox | c48052c | 2009-02-11 13:08:41 -0800 | [diff] [blame] | 210 | amd_fifo_setup(ap); |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 211 | timing_setup(ap, adev, 0x40, adev->pio_mode, 1); |
| 212 | } |
| 213 | |
| 214 | static void amd66_set_piomode(struct ata_port *ap, struct ata_device *adev) |
| 215 | { |
Alan Cox | c48052c | 2009-02-11 13:08:41 -0800 | [diff] [blame] | 216 | amd_fifo_setup(ap); |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 217 | timing_setup(ap, adev, 0x40, adev->pio_mode, 2); |
| 218 | } |
| 219 | |
| 220 | static void amd100_set_piomode(struct ata_port *ap, struct ata_device *adev) |
| 221 | { |
Alan Cox | c48052c | 2009-02-11 13:08:41 -0800 | [diff] [blame] | 222 | amd_fifo_setup(ap); |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 223 | timing_setup(ap, adev, 0x40, adev->pio_mode, 3); |
| 224 | } |
| 225 | |
| 226 | static void amd133_set_piomode(struct ata_port *ap, struct ata_device *adev) |
| 227 | { |
Alan Cox | c48052c | 2009-02-11 13:08:41 -0800 | [diff] [blame] | 228 | amd_fifo_setup(ap); |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 229 | timing_setup(ap, adev, 0x40, adev->pio_mode, 4); |
| 230 | } |
| 231 | |
| 232 | /** |
| 233 | * amd33_set_dmamode - set initial DMA mode data |
| 234 | * @ap: ATA interface |
| 235 | * @adev: ATA device |
| 236 | * |
| 237 | * Program the MWDMA/UDMA modes for the AMD and Nvidia |
| 238 | * chipset. |
| 239 | */ |
| 240 | |
| 241 | static void amd33_set_dmamode(struct ata_port *ap, struct ata_device *adev) |
| 242 | { |
| 243 | timing_setup(ap, adev, 0x40, adev->dma_mode, 1); |
| 244 | } |
| 245 | |
| 246 | static void amd66_set_dmamode(struct ata_port *ap, struct ata_device *adev) |
| 247 | { |
| 248 | timing_setup(ap, adev, 0x40, adev->dma_mode, 2); |
| 249 | } |
| 250 | |
| 251 | static void amd100_set_dmamode(struct ata_port *ap, struct ata_device *adev) |
| 252 | { |
| 253 | timing_setup(ap, adev, 0x40, adev->dma_mode, 3); |
| 254 | } |
| 255 | |
| 256 | static void amd133_set_dmamode(struct ata_port *ap, struct ata_device *adev) |
| 257 | { |
| 258 | timing_setup(ap, adev, 0x40, adev->dma_mode, 4); |
| 259 | } |
| 260 | |
Tejun Heo | ce54d16 | 2007-12-18 16:33:07 +0900 | [diff] [blame] | 261 | /* Both host-side and drive-side detection results are worthless on NV |
| 262 | * PATAs. Ignore them and just follow what BIOS configured. Both the |
| 263 | * current configuration in PCI config reg and ACPI GTM result are |
| 264 | * cached during driver attach and are consulted to select transfer |
| 265 | * mode. |
| 266 | */ |
| 267 | static unsigned long nv_mode_filter(struct ata_device *dev, |
| 268 | unsigned long xfer_mask) |
| 269 | { |
| 270 | static const unsigned int udma_mask_map[] = |
| 271 | { ATA_UDMA2, ATA_UDMA1, ATA_UDMA0, 0, |
| 272 | ATA_UDMA3, ATA_UDMA4, ATA_UDMA5, ATA_UDMA6 }; |
| 273 | struct ata_port *ap = dev->link->ap; |
| 274 | char acpi_str[32] = ""; |
| 275 | u32 saved_udma, udma; |
| 276 | const struct ata_acpi_gtm *gtm; |
| 277 | unsigned long bios_limit = 0, acpi_limit = 0, limit; |
| 278 | |
| 279 | /* find out what BIOS configured */ |
| 280 | udma = saved_udma = (unsigned long)ap->host->private_data; |
| 281 | |
| 282 | if (ap->port_no == 0) |
| 283 | udma >>= 16; |
| 284 | if (dev->devno == 0) |
| 285 | udma >>= 8; |
| 286 | |
| 287 | if ((udma & 0xc0) == 0xc0) |
| 288 | bios_limit = ata_pack_xfermask(0, 0, udma_mask_map[udma & 0x7]); |
| 289 | |
| 290 | /* consult ACPI GTM too */ |
| 291 | gtm = ata_acpi_init_gtm(ap); |
| 292 | if (gtm) { |
| 293 | acpi_limit = ata_acpi_gtm_xfermask(dev, gtm); |
| 294 | |
| 295 | snprintf(acpi_str, sizeof(acpi_str), " (%u:%u:0x%x)", |
| 296 | gtm->drive[0].dma, gtm->drive[1].dma, gtm->flags); |
| 297 | } |
| 298 | |
| 299 | /* be optimistic, EH can take care of things if something goes wrong */ |
| 300 | limit = bios_limit | acpi_limit; |
| 301 | |
| 302 | /* If PIO or DMA isn't configured at all, don't limit. Let EH |
| 303 | * handle it. |
| 304 | */ |
| 305 | if (!(limit & ATA_MASK_PIO)) |
| 306 | limit |= ATA_MASK_PIO; |
| 307 | if (!(limit & (ATA_MASK_MWDMA | ATA_MASK_UDMA))) |
| 308 | limit |= ATA_MASK_MWDMA | ATA_MASK_UDMA; |
Robert Hancock | 90950a2 | 2009-09-12 23:54:47 -0600 | [diff] [blame] | 309 | /* PIO4, MWDMA2, UDMA2 should always be supported regardless of |
| 310 | cable detection result */ |
| 311 | limit |= ata_pack_xfermask(ATA_PIO4, ATA_MWDMA2, ATA_UDMA2); |
Tejun Heo | ce54d16 | 2007-12-18 16:33:07 +0900 | [diff] [blame] | 312 | |
Joe Perches | a9a79df | 2011-04-15 15:51:59 -0700 | [diff] [blame] | 313 | ata_port_dbg(ap, "nv_mode_filter: 0x%lx&0x%lx->0x%lx, " |
Tejun Heo | ce54d16 | 2007-12-18 16:33:07 +0900 | [diff] [blame] | 314 | "BIOS=0x%lx (0x%x) ACPI=0x%lx%s\n", |
| 315 | xfer_mask, limit, xfer_mask & limit, bios_limit, |
| 316 | saved_udma, acpi_limit, acpi_str); |
| 317 | |
| 318 | return xfer_mask & limit; |
| 319 | } |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 320 | |
| 321 | /** |
| 322 | * nv_probe_init - cable detection |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 323 | * @lin: ATA link |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 324 | * |
| 325 | * Perform cable detection. The BIOS stores this in PCI config |
| 326 | * space for us. |
| 327 | */ |
| 328 | |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 329 | static int nv_pre_reset(struct ata_link *link, unsigned long deadline) |
Tejun Heo | d4b2bab | 2007-02-02 16:50:52 +0900 | [diff] [blame] | 330 | { |
Alan Cox | 76ff3c6 | 2006-09-12 17:14:03 +0100 | [diff] [blame] | 331 | static const struct pci_bits nv_enable_bits[] = { |
| 332 | { 0x50, 1, 0x02, 0x02 }, |
| 333 | { 0x50, 1, 0x01, 0x01 } |
| 334 | }; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 335 | |
Tejun Heo | cc0680a | 2007-08-06 18:36:23 +0900 | [diff] [blame] | 336 | struct ata_port *ap = link->ap; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 337 | struct pci_dev *pdev = to_pci_dev(ap->host->dev); |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 338 | |
Alan Cox | c961922 | 2006-09-26 17:53:38 +0100 | [diff] [blame] | 339 | if (!pci_test_config_bits(pdev, &nv_enable_bits[ap->port_no])) |
| 340 | return -ENOENT; |
Alan Cox | 76ff3c6 | 2006-09-12 17:14:03 +0100 | [diff] [blame] | 341 | |
Tejun Heo | 9363c38 | 2008-04-07 22:47:16 +0900 | [diff] [blame] | 342 | return ata_sff_prereset(link, deadline); |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 343 | } |
| 344 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 345 | /** |
| 346 | * nv100_set_piomode - set initial PIO mode data |
| 347 | * @ap: ATA interface |
| 348 | * @adev: ATA device |
| 349 | * |
| 350 | * Program the AMD registers for PIO mode. |
| 351 | */ |
| 352 | |
| 353 | static void nv100_set_piomode(struct ata_port *ap, struct ata_device *adev) |
| 354 | { |
| 355 | timing_setup(ap, adev, 0x50, adev->pio_mode, 3); |
| 356 | } |
| 357 | |
| 358 | static void nv133_set_piomode(struct ata_port *ap, struct ata_device *adev) |
| 359 | { |
| 360 | timing_setup(ap, adev, 0x50, adev->pio_mode, 4); |
| 361 | } |
| 362 | |
| 363 | /** |
| 364 | * nv100_set_dmamode - set initial DMA mode data |
| 365 | * @ap: ATA interface |
| 366 | * @adev: ATA device |
| 367 | * |
| 368 | * Program the MWDMA/UDMA modes for the AMD and Nvidia |
| 369 | * chipset. |
| 370 | */ |
| 371 | |
| 372 | static void nv100_set_dmamode(struct ata_port *ap, struct ata_device *adev) |
| 373 | { |
| 374 | timing_setup(ap, adev, 0x50, adev->dma_mode, 3); |
| 375 | } |
| 376 | |
| 377 | static void nv133_set_dmamode(struct ata_port *ap, struct ata_device *adev) |
| 378 | { |
| 379 | timing_setup(ap, adev, 0x50, adev->dma_mode, 4); |
| 380 | } |
| 381 | |
Tejun Heo | ce54d16 | 2007-12-18 16:33:07 +0900 | [diff] [blame] | 382 | static void nv_host_stop(struct ata_host *host) |
| 383 | { |
| 384 | u32 udma = (unsigned long)host->private_data; |
| 385 | |
| 386 | /* restore PCI config register 0x60 */ |
| 387 | pci_write_config_dword(to_pci_dev(host->dev), 0x60, udma); |
| 388 | } |
| 389 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 390 | static struct scsi_host_template amd_sht = { |
Tejun Heo | 68d1d07 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 391 | ATA_BMDMA_SHT(DRV_NAME), |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 392 | }; |
| 393 | |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 394 | static const struct ata_port_operations amd_base_port_ops = { |
Alan Cox | 871af12 | 2009-01-05 14:16:39 +0000 | [diff] [blame] | 395 | .inherits = &ata_bmdma32_port_ops, |
Tejun Heo | 887125e | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 396 | .prereset = amd_pre_reset, |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 397 | }; |
| 398 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 399 | static struct ata_port_operations amd33_port_ops = { |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 400 | .inherits = &amd_base_port_ops, |
| 401 | .cable_detect = ata_cable_40wire, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 402 | .set_piomode = amd33_set_piomode, |
| 403 | .set_dmamode = amd33_set_dmamode, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 404 | }; |
| 405 | |
| 406 | static struct ata_port_operations amd66_port_ops = { |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 407 | .inherits = &amd_base_port_ops, |
| 408 | .cable_detect = ata_cable_unknown, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 409 | .set_piomode = amd66_set_piomode, |
| 410 | .set_dmamode = amd66_set_dmamode, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 411 | }; |
| 412 | |
| 413 | static struct ata_port_operations amd100_port_ops = { |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 414 | .inherits = &amd_base_port_ops, |
| 415 | .cable_detect = ata_cable_unknown, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 416 | .set_piomode = amd100_set_piomode, |
| 417 | .set_dmamode = amd100_set_dmamode, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 418 | }; |
| 419 | |
| 420 | static struct ata_port_operations amd133_port_ops = { |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 421 | .inherits = &amd_base_port_ops, |
| 422 | .cable_detect = amd_cable_detect, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 423 | .set_piomode = amd133_set_piomode, |
| 424 | .set_dmamode = amd133_set_dmamode, |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 425 | }; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 426 | |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 427 | static const struct ata_port_operations nv_base_port_ops = { |
| 428 | .inherits = &ata_bmdma_port_ops, |
| 429 | .cable_detect = ata_cable_ignore, |
| 430 | .mode_filter = nv_mode_filter, |
Tejun Heo | 887125e | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 431 | .prereset = nv_pre_reset, |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 432 | .host_stop = nv_host_stop, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 433 | }; |
| 434 | |
| 435 | static struct ata_port_operations nv100_port_ops = { |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 436 | .inherits = &nv_base_port_ops, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 437 | .set_piomode = nv100_set_piomode, |
| 438 | .set_dmamode = nv100_set_dmamode, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 439 | }; |
| 440 | |
| 441 | static struct ata_port_operations nv133_port_ops = { |
Tejun Heo | 029cfd6 | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 442 | .inherits = &nv_base_port_ops, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 443 | .set_piomode = nv133_set_piomode, |
| 444 | .set_dmamode = nv133_set_dmamode, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 445 | }; |
| 446 | |
Alan Cox | c48052c | 2009-02-11 13:08:41 -0800 | [diff] [blame] | 447 | static void amd_clear_fifo(struct pci_dev *pdev) |
| 448 | { |
| 449 | u8 fifo; |
| 450 | /* Disable the FIFO, the FIFO logic will re-enable it as |
| 451 | appropriate */ |
| 452 | pci_read_config_byte(pdev, 0x41, &fifo); |
| 453 | fifo &= 0x0F; |
| 454 | pci_write_config_byte(pdev, 0x41, fifo); |
| 455 | } |
| 456 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 457 | static int amd_init_one(struct pci_dev *pdev, const struct pci_device_id *id) |
| 458 | { |
Tejun Heo | 1626aeb | 2007-05-04 12:43:58 +0200 | [diff] [blame] | 459 | static const struct ata_port_info info[10] = { |
Erik Inge Bolsø | 14bdef9 | 2009-03-14 21:38:24 +0100 | [diff] [blame] | 460 | { /* 0: AMD 7401 - no swdma */ |
Jeff Garzik | 1d2808f | 2007-05-28 06:59:48 -0400 | [diff] [blame] | 461 | .flags = ATA_FLAG_SLAVE_POSS, |
Erik Inge Bolsø | 14bdef9 | 2009-03-14 21:38:24 +0100 | [diff] [blame] | 462 | .pio_mask = ATA_PIO4, |
| 463 | .mwdma_mask = ATA_MWDMA2, |
| 464 | .udma_mask = ATA_UDMA2, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 465 | .port_ops = &amd33_port_ops |
| 466 | }, |
| 467 | { /* 1: Early AMD7409 - no swdma */ |
Jeff Garzik | 1d2808f | 2007-05-28 06:59:48 -0400 | [diff] [blame] | 468 | .flags = ATA_FLAG_SLAVE_POSS, |
Erik Inge Bolsø | 14bdef9 | 2009-03-14 21:38:24 +0100 | [diff] [blame] | 469 | .pio_mask = ATA_PIO4, |
| 470 | .mwdma_mask = ATA_MWDMA2, |
| 471 | .udma_mask = ATA_UDMA4, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 472 | .port_ops = &amd66_port_ops |
| 473 | }, |
Erik Inge Bolsø | 14bdef9 | 2009-03-14 21:38:24 +0100 | [diff] [blame] | 474 | { /* 2: AMD 7409 */ |
Jeff Garzik | 1d2808f | 2007-05-28 06:59:48 -0400 | [diff] [blame] | 475 | .flags = ATA_FLAG_SLAVE_POSS, |
Erik Inge Bolsø | 14bdef9 | 2009-03-14 21:38:24 +0100 | [diff] [blame] | 476 | .pio_mask = ATA_PIO4, |
| 477 | .mwdma_mask = ATA_MWDMA2, |
| 478 | .udma_mask = ATA_UDMA4, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 479 | .port_ops = &amd66_port_ops |
| 480 | }, |
| 481 | { /* 3: AMD 7411 */ |
Jeff Garzik | 1d2808f | 2007-05-28 06:59:48 -0400 | [diff] [blame] | 482 | .flags = ATA_FLAG_SLAVE_POSS, |
Erik Inge Bolsø | 14bdef9 | 2009-03-14 21:38:24 +0100 | [diff] [blame] | 483 | .pio_mask = ATA_PIO4, |
| 484 | .mwdma_mask = ATA_MWDMA2, |
| 485 | .udma_mask = ATA_UDMA5, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 486 | .port_ops = &amd100_port_ops |
| 487 | }, |
| 488 | { /* 4: AMD 7441 */ |
Jeff Garzik | 1d2808f | 2007-05-28 06:59:48 -0400 | [diff] [blame] | 489 | .flags = ATA_FLAG_SLAVE_POSS, |
Erik Inge Bolsø | 14bdef9 | 2009-03-14 21:38:24 +0100 | [diff] [blame] | 490 | .pio_mask = ATA_PIO4, |
| 491 | .mwdma_mask = ATA_MWDMA2, |
| 492 | .udma_mask = ATA_UDMA5, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 493 | .port_ops = &amd100_port_ops |
| 494 | }, |
Erik Inge Bolsø | 14bdef9 | 2009-03-14 21:38:24 +0100 | [diff] [blame] | 495 | { /* 5: AMD 8111 - no swdma */ |
Jeff Garzik | 1d2808f | 2007-05-28 06:59:48 -0400 | [diff] [blame] | 496 | .flags = ATA_FLAG_SLAVE_POSS, |
Erik Inge Bolsø | 14bdef9 | 2009-03-14 21:38:24 +0100 | [diff] [blame] | 497 | .pio_mask = ATA_PIO4, |
| 498 | .mwdma_mask = ATA_MWDMA2, |
| 499 | .udma_mask = ATA_UDMA6, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 500 | .port_ops = &amd133_port_ops |
| 501 | }, |
Erik Inge Bolsø | 14bdef9 | 2009-03-14 21:38:24 +0100 | [diff] [blame] | 502 | { /* 6: AMD 8111 UDMA 100 (Serenade) - no swdma */ |
Jeff Garzik | 1d2808f | 2007-05-28 06:59:48 -0400 | [diff] [blame] | 503 | .flags = ATA_FLAG_SLAVE_POSS, |
Erik Inge Bolsø | 14bdef9 | 2009-03-14 21:38:24 +0100 | [diff] [blame] | 504 | .pio_mask = ATA_PIO4, |
| 505 | .mwdma_mask = ATA_MWDMA2, |
| 506 | .udma_mask = ATA_UDMA5, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 507 | .port_ops = &amd133_port_ops |
| 508 | }, |
| 509 | { /* 7: Nvidia Nforce */ |
Jeff Garzik | 1d2808f | 2007-05-28 06:59:48 -0400 | [diff] [blame] | 510 | .flags = ATA_FLAG_SLAVE_POSS, |
Erik Inge Bolsø | 14bdef9 | 2009-03-14 21:38:24 +0100 | [diff] [blame] | 511 | .pio_mask = ATA_PIO4, |
| 512 | .mwdma_mask = ATA_MWDMA2, |
| 513 | .udma_mask = ATA_UDMA5, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 514 | .port_ops = &nv100_port_ops |
| 515 | }, |
Erik Inge Bolsø | 14bdef9 | 2009-03-14 21:38:24 +0100 | [diff] [blame] | 516 | { /* 8: Nvidia Nforce2 and later - no swdma */ |
Jeff Garzik | 1d2808f | 2007-05-28 06:59:48 -0400 | [diff] [blame] | 517 | .flags = ATA_FLAG_SLAVE_POSS, |
Erik Inge Bolsø | 14bdef9 | 2009-03-14 21:38:24 +0100 | [diff] [blame] | 518 | .pio_mask = ATA_PIO4, |
| 519 | .mwdma_mask = ATA_MWDMA2, |
| 520 | .udma_mask = ATA_UDMA6, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 521 | .port_ops = &nv133_port_ops |
| 522 | }, |
| 523 | { /* 9: AMD CS5536 (Geode companion) */ |
Jeff Garzik | 1d2808f | 2007-05-28 06:59:48 -0400 | [diff] [blame] | 524 | .flags = ATA_FLAG_SLAVE_POSS, |
Erik Inge Bolsø | 14bdef9 | 2009-03-14 21:38:24 +0100 | [diff] [blame] | 525 | .pio_mask = ATA_PIO4, |
| 526 | .mwdma_mask = ATA_MWDMA2, |
| 527 | .udma_mask = ATA_UDMA5, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 528 | .port_ops = &amd100_port_ops |
| 529 | } |
| 530 | }; |
Tejun Heo | 887125e | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 531 | const struct ata_port_info *ppi[] = { NULL, NULL }; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 532 | int type = id->driver_data; |
Tejun Heo | 887125e | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 533 | void *hpriv = NULL; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 534 | u8 fifo; |
Tejun Heo | f08048e | 2008-03-25 12:22:47 +0900 | [diff] [blame] | 535 | int rc; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 536 | |
Joe Perches | 06296a1 | 2011-04-15 15:52:00 -0700 | [diff] [blame] | 537 | ata_print_version_once(&pdev->dev, DRV_VERSION); |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 538 | |
Tejun Heo | f08048e | 2008-03-25 12:22:47 +0900 | [diff] [blame] | 539 | rc = pcim_enable_device(pdev); |
| 540 | if (rc) |
| 541 | return rc; |
| 542 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 543 | pci_read_config_byte(pdev, 0x41, &fifo); |
| 544 | |
| 545 | /* Check for AMD7409 without swdma errata and if found adjust type */ |
Auke Kok | 44c1013 | 2007-06-08 15:46:36 -0700 | [diff] [blame] | 546 | if (type == 1 && pdev->revision > 0x7) |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 547 | type = 2; |
| 548 | |
Tejun Heo | ce54d16 | 2007-12-18 16:33:07 +0900 | [diff] [blame] | 549 | /* Serenade ? */ |
| 550 | if (type == 5 && pdev->subsystem_vendor == PCI_VENDOR_ID_AMD && |
| 551 | pdev->subsystem_device == PCI_DEVICE_ID_AMD_SERENADE) |
| 552 | type = 6; /* UDMA 100 only */ |
| 553 | |
| 554 | /* |
| 555 | * Okay, type is determined now. Apply type-specific workarounds. |
| 556 | */ |
Tejun Heo | 887125e | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 557 | ppi[0] = &info[type]; |
Tejun Heo | ce54d16 | 2007-12-18 16:33:07 +0900 | [diff] [blame] | 558 | |
| 559 | if (type < 3) |
Tejun Heo | 9363c38 | 2008-04-07 22:47:16 +0900 | [diff] [blame] | 560 | ata_pci_bmdma_clear_simplex(pdev); |
Alan Cox | c48052c | 2009-02-11 13:08:41 -0800 | [diff] [blame] | 561 | if (pdev->vendor == PCI_VENDOR_ID_AMD) |
| 562 | amd_clear_fifo(pdev); |
Tejun Heo | ce54d16 | 2007-12-18 16:33:07 +0900 | [diff] [blame] | 563 | /* Cable detection on Nvidia chips doesn't work too well, |
| 564 | * cache BIOS programmed UDMA mode. |
| 565 | */ |
| 566 | if (type == 7 || type == 8) { |
| 567 | u32 udma; |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 568 | |
Tejun Heo | ce54d16 | 2007-12-18 16:33:07 +0900 | [diff] [blame] | 569 | pci_read_config_dword(pdev, 0x60, &udma); |
Tejun Heo | 887125e | 2008-03-25 12:22:49 +0900 | [diff] [blame] | 570 | hpriv = (void *)(unsigned long)udma; |
Tejun Heo | ce54d16 | 2007-12-18 16:33:07 +0900 | [diff] [blame] | 571 | } |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 572 | |
| 573 | /* And fire it up */ |
Tejun Heo | 1c5afdf | 2010-05-19 22:10:22 +0200 | [diff] [blame] | 574 | return ata_pci_bmdma_init_one(pdev, ppi, &amd_sht, hpriv, 0); |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 575 | } |
| 576 | |
Bartlomiej Zolnierkiewicz | 58eb8cd | 2014-05-07 17:17:44 +0200 | [diff] [blame] | 577 | #ifdef CONFIG_PM_SLEEP |
Alan | c304193 | 2006-11-27 16:21:24 +0000 | [diff] [blame] | 578 | static int amd_reinit_one(struct pci_dev *pdev) |
| 579 | { |
Jingoo Han | 0a86e1c | 2013-06-03 14:05:36 +0900 | [diff] [blame] | 580 | struct ata_host *host = pci_get_drvdata(pdev); |
Tejun Heo | f08048e | 2008-03-25 12:22:47 +0900 | [diff] [blame] | 581 | int rc; |
| 582 | |
| 583 | rc = ata_pci_device_do_resume(pdev); |
| 584 | if (rc) |
| 585 | return rc; |
| 586 | |
Alan | c304193 | 2006-11-27 16:21:24 +0000 | [diff] [blame] | 587 | if (pdev->vendor == PCI_VENDOR_ID_AMD) { |
Alan Cox | c48052c | 2009-02-11 13:08:41 -0800 | [diff] [blame] | 588 | amd_clear_fifo(pdev); |
Alan | c304193 | 2006-11-27 16:21:24 +0000 | [diff] [blame] | 589 | if (pdev->device == PCI_DEVICE_ID_AMD_VIPER_7409 || |
| 590 | pdev->device == PCI_DEVICE_ID_AMD_COBRA_7401) |
Tejun Heo | 9363c38 | 2008-04-07 22:47:16 +0900 | [diff] [blame] | 591 | ata_pci_bmdma_clear_simplex(pdev); |
Alan | c304193 | 2006-11-27 16:21:24 +0000 | [diff] [blame] | 592 | } |
Tejun Heo | f08048e | 2008-03-25 12:22:47 +0900 | [diff] [blame] | 593 | ata_host_resume(host); |
| 594 | return 0; |
Alan | c304193 | 2006-11-27 16:21:24 +0000 | [diff] [blame] | 595 | } |
Tejun Heo | 438ac6d | 2007-03-02 17:31:26 +0900 | [diff] [blame] | 596 | #endif |
Alan | c304193 | 2006-11-27 16:21:24 +0000 | [diff] [blame] | 597 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 598 | static const struct pci_device_id amd[] = { |
Jeff Garzik | 2d2744f | 2006-09-28 20:21:59 -0400 | [diff] [blame] | 599 | { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_COBRA_7401), 0 }, |
| 600 | { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_VIPER_7409), 1 }, |
| 601 | { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_VIPER_7411), 3 }, |
| 602 | { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_OPUS_7441), 4 }, |
| 603 | { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_8111_IDE), 5 }, |
| 604 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_IDE), 7 }, |
| 605 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE2_IDE), 8 }, |
| 606 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE2S_IDE), 8 }, |
| 607 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE3_IDE), 8 }, |
| 608 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE3S_IDE), 8 }, |
| 609 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_CK804_IDE), 8 }, |
| 610 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP04_IDE), 8 }, |
| 611 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_IDE), 8 }, |
| 612 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_IDE), 8 }, |
| 613 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_IDE), 8 }, |
Peer Chen | 05e2867 | 2006-11-02 17:58:21 -0500 | [diff] [blame] | 614 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP65_IDE), 8 }, |
| 615 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP67_IDE), 8 }, |
Peer Chen | 9f78975 | 2007-06-07 18:23:12 +0800 | [diff] [blame] | 616 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP73_IDE), 8 }, |
| 617 | { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP77_IDE), 8 }, |
Jeff Garzik | 2d2744f | 2006-09-28 20:21:59 -0400 | [diff] [blame] | 618 | { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_CS5536_IDE), 9 }, |
| 619 | |
| 620 | { }, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 621 | }; |
| 622 | |
| 623 | static struct pci_driver amd_pci_driver = { |
Jeff Garzik | 2d2744f | 2006-09-28 20:21:59 -0400 | [diff] [blame] | 624 | .name = DRV_NAME, |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 625 | .id_table = amd, |
| 626 | .probe = amd_init_one, |
Alan | c304193 | 2006-11-27 16:21:24 +0000 | [diff] [blame] | 627 | .remove = ata_pci_remove_one, |
Bartlomiej Zolnierkiewicz | 58eb8cd | 2014-05-07 17:17:44 +0200 | [diff] [blame] | 628 | #ifdef CONFIG_PM_SLEEP |
Alan | c304193 | 2006-11-27 16:21:24 +0000 | [diff] [blame] | 629 | .suspend = ata_pci_device_suspend, |
| 630 | .resume = amd_reinit_one, |
Tejun Heo | 438ac6d | 2007-03-02 17:31:26 +0900 | [diff] [blame] | 631 | #endif |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 632 | }; |
| 633 | |
Axel Lin | 2fc75da | 2012-04-19 13:43:05 +0800 | [diff] [blame] | 634 | module_pci_driver(amd_pci_driver); |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 635 | |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 636 | MODULE_AUTHOR("Alan Cox"); |
Alan Cox | c9544bc | 2008-02-08 15:22:39 +0000 | [diff] [blame] | 637 | MODULE_DESCRIPTION("low-level driver for AMD and Nvidia PATA IDE"); |
Jeff Garzik | 669a5db | 2006-08-29 18:12:40 -0400 | [diff] [blame] | 638 | MODULE_LICENSE("GPL"); |
| 639 | MODULE_DEVICE_TABLE(pci, amd); |
| 640 | MODULE_VERSION(DRV_VERSION); |