blob: 57dd00f463d3367a33f24cf5f1808cc1c1f294ec [file] [log] [blame]
Jeff Garzik669a5db2006-08-29 18:12:40 -04001/*
2 * pata_amd.c - AMD PATA for new ATA layer
3 * (C) 2005-2006 Red Hat Inc
4 * Alan Cox <alan@redhat.com>
5 *
6 * Based on pata-sil680. Errata information is taken from data sheets
7 * and the amd74xx.c driver by Vojtech Pavlik. Nvidia SATA devices are
8 * claimed by sata-nv.c.
9 *
10 * TODO:
11 * Variable system clock when/if it makes sense
12 * Power management on ports
13 *
14 *
15 * Documentation publically available.
16 */
17
18#include <linux/kernel.h>
19#include <linux/module.h>
20#include <linux/pci.h>
21#include <linux/init.h>
22#include <linux/blkdev.h>
23#include <linux/delay.h>
24#include <scsi/scsi_host.h>
25#include <linux/libata.h>
26
27#define DRV_NAME "pata_amd"
Bartlomiej Zolnierkiewicz943547a2007-12-02 03:47:01 +010028#define DRV_VERSION "0.3.10"
Jeff Garzik669a5db2006-08-29 18:12:40 -040029
30/**
31 * timing_setup - shared timing computation and load
32 * @ap: ATA port being set up
33 * @adev: drive being configured
34 * @offset: port offset
35 * @speed: target speed
36 * @clock: clock multiplier (number of times 33MHz for this part)
37 *
38 * Perform the actual timing set up for Nvidia or AMD PATA devices.
39 * The actual devices vary so they all call into this helper function
40 * providing the clock multipler and offset (because AMD and Nvidia put
41 * the ports at different locations).
42 */
43
44static void timing_setup(struct ata_port *ap, struct ata_device *adev, int offset, int speed, int clock)
45{
46 static const unsigned char amd_cyc2udma[] = {
47 6, 6, 5, 4, 0, 1, 1, 2, 2, 3, 3, 3, 3, 3, 3, 7
48 };
49
50 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
51 struct ata_device *peer = ata_dev_pair(adev);
52 int dn = ap->port_no * 2 + adev->devno;
53 struct ata_timing at, apeer;
54 int T, UT;
55 const int amd_clock = 33333; /* KHz. */
56 u8 t;
57
58 T = 1000000000 / amd_clock;
Harvey Harrisond9c74fb2008-03-28 14:33:56 -070059 UT = T;
60 if (clock >= 2)
61 UT = T / 2;
Jeff Garzik669a5db2006-08-29 18:12:40 -040062
63 if (ata_timing_compute(adev, speed, &at, T, UT) < 0) {
64 dev_printk(KERN_ERR, &pdev->dev, "unknown mode %d.\n", speed);
65 return;
66 }
67
68 if (peer) {
69 /* This may be over conservative */
70 if (peer->dma_mode) {
71 ata_timing_compute(peer, peer->dma_mode, &apeer, T, UT);
72 ata_timing_merge(&apeer, &at, &at, ATA_TIMING_8BIT);
73 }
74 ata_timing_compute(peer, peer->pio_mode, &apeer, T, UT);
75 ata_timing_merge(&apeer, &at, &at, ATA_TIMING_8BIT);
76 }
77
78 if (speed == XFER_UDMA_5 && amd_clock <= 33333) at.udma = 1;
79 if (speed == XFER_UDMA_6 && amd_clock <= 33333) at.udma = 15;
80
81 /*
82 * Now do the setup work
83 */
84
85 /* Configure the address set up timing */
86 pci_read_config_byte(pdev, offset + 0x0C, &t);
Harvey Harrison07633b52008-05-14 16:17:00 -070087 t = (t & ~(3 << ((3 - dn) << 1))) | ((clamp_val(at.setup, 1, 4) - 1) << ((3 - dn) << 1));
Jeff Garzik669a5db2006-08-29 18:12:40 -040088 pci_write_config_byte(pdev, offset + 0x0C , t);
89
90 /* Configure the 8bit I/O timing */
91 pci_write_config_byte(pdev, offset + 0x0E + (1 - (dn >> 1)),
Harvey Harrison07633b52008-05-14 16:17:00 -070092 ((clamp_val(at.act8b, 1, 16) - 1) << 4) | (clamp_val(at.rec8b, 1, 16) - 1));
Jeff Garzik669a5db2006-08-29 18:12:40 -040093
94 /* Drive timing */
95 pci_write_config_byte(pdev, offset + 0x08 + (3 - dn),
Harvey Harrison07633b52008-05-14 16:17:00 -070096 ((clamp_val(at.active, 1, 16) - 1) << 4) | (clamp_val(at.recover, 1, 16) - 1));
Jeff Garzik669a5db2006-08-29 18:12:40 -040097
98 switch (clock) {
99 case 1:
Harvey Harrison07633b52008-05-14 16:17:00 -0700100 t = at.udma ? (0xc0 | (clamp_val(at.udma, 2, 5) - 2)) : 0x03;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400101 break;
102
103 case 2:
Harvey Harrison07633b52008-05-14 16:17:00 -0700104 t = at.udma ? (0xc0 | amd_cyc2udma[clamp_val(at.udma, 2, 10)]) : 0x03;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400105 break;
106
107 case 3:
Harvey Harrison07633b52008-05-14 16:17:00 -0700108 t = at.udma ? (0xc0 | amd_cyc2udma[clamp_val(at.udma, 1, 10)]) : 0x03;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400109 break;
110
111 case 4:
Harvey Harrison07633b52008-05-14 16:17:00 -0700112 t = at.udma ? (0xc0 | amd_cyc2udma[clamp_val(at.udma, 1, 15)]) : 0x03;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400113 break;
114
115 default:
116 return;
117 }
118
119 /* UDMA timing */
Bartlomiej Zolnierkiewicz943547a2007-12-02 03:47:01 +0100120 if (at.udma)
121 pci_write_config_byte(pdev, offset + 0x10 + (3 - dn), t);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400122}
123
124/**
Tejun Heocc0680a2007-08-06 18:36:23 +0900125 * amd_pre_reset - perform reset handling
126 * @link: ATA link
Tejun Heod4b2bab2007-02-02 16:50:52 +0900127 * @deadline: deadline jiffies for the operation
Jeff Garzik669a5db2006-08-29 18:12:40 -0400128 *
Alan Coxeb4a2c72007-04-11 00:04:20 +0100129 * Reset sequence checking enable bits to see which ports are
130 * active.
Jeff Garzik669a5db2006-08-29 18:12:40 -0400131 */
132
Tejun Heocc0680a2007-08-06 18:36:23 +0900133static int amd_pre_reset(struct ata_link *link, unsigned long deadline)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400134{
Jeff Garzik669a5db2006-08-29 18:12:40 -0400135 static const struct pci_bits amd_enable_bits[] = {
136 { 0x40, 1, 0x02, 0x02 },
137 { 0x40, 1, 0x01, 0x01 }
138 };
139
Tejun Heocc0680a2007-08-06 18:36:23 +0900140 struct ata_port *ap = link->ap;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400141 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400142
Alan Coxc9619222006-09-26 17:53:38 +0100143 if (!pci_test_config_bits(pdev, &amd_enable_bits[ap->port_no]))
144 return -ENOENT;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400145
Tejun Heo9363c382008-04-07 22:47:16 +0900146 return ata_sff_prereset(link, deadline);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400147}
148
Alan Coxeb4a2c72007-04-11 00:04:20 +0100149static int amd_cable_detect(struct ata_port *ap)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400150{
Alan Coxeb4a2c72007-04-11 00:04:20 +0100151 static const u32 bitmask[2] = {0x03, 0x0C};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400152 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Alan Coxeb4a2c72007-04-11 00:04:20 +0100153 u8 ata66;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400154
Alan Coxeb4a2c72007-04-11 00:04:20 +0100155 pci_read_config_byte(pdev, 0x42, &ata66);
156 if (ata66 & bitmask[ap->port_no])
157 return ATA_CBL_PATA80;
158 return ATA_CBL_PATA40;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400159}
160
161/**
162 * amd33_set_piomode - set initial PIO mode data
163 * @ap: ATA interface
164 * @adev: ATA device
165 *
166 * Program the AMD registers for PIO mode.
167 */
168
169static void amd33_set_piomode(struct ata_port *ap, struct ata_device *adev)
170{
171 timing_setup(ap, adev, 0x40, adev->pio_mode, 1);
172}
173
174static void amd66_set_piomode(struct ata_port *ap, struct ata_device *adev)
175{
176 timing_setup(ap, adev, 0x40, adev->pio_mode, 2);
177}
178
179static void amd100_set_piomode(struct ata_port *ap, struct ata_device *adev)
180{
181 timing_setup(ap, adev, 0x40, adev->pio_mode, 3);
182}
183
184static void amd133_set_piomode(struct ata_port *ap, struct ata_device *adev)
185{
186 timing_setup(ap, adev, 0x40, adev->pio_mode, 4);
187}
188
189/**
190 * amd33_set_dmamode - set initial DMA mode data
191 * @ap: ATA interface
192 * @adev: ATA device
193 *
194 * Program the MWDMA/UDMA modes for the AMD and Nvidia
195 * chipset.
196 */
197
198static void amd33_set_dmamode(struct ata_port *ap, struct ata_device *adev)
199{
200 timing_setup(ap, adev, 0x40, adev->dma_mode, 1);
201}
202
203static void amd66_set_dmamode(struct ata_port *ap, struct ata_device *adev)
204{
205 timing_setup(ap, adev, 0x40, adev->dma_mode, 2);
206}
207
208static void amd100_set_dmamode(struct ata_port *ap, struct ata_device *adev)
209{
210 timing_setup(ap, adev, 0x40, adev->dma_mode, 3);
211}
212
213static void amd133_set_dmamode(struct ata_port *ap, struct ata_device *adev)
214{
215 timing_setup(ap, adev, 0x40, adev->dma_mode, 4);
216}
217
Tejun Heoce54d162007-12-18 16:33:07 +0900218/* Both host-side and drive-side detection results are worthless on NV
219 * PATAs. Ignore them and just follow what BIOS configured. Both the
220 * current configuration in PCI config reg and ACPI GTM result are
221 * cached during driver attach and are consulted to select transfer
222 * mode.
223 */
224static unsigned long nv_mode_filter(struct ata_device *dev,
225 unsigned long xfer_mask)
226{
227 static const unsigned int udma_mask_map[] =
228 { ATA_UDMA2, ATA_UDMA1, ATA_UDMA0, 0,
229 ATA_UDMA3, ATA_UDMA4, ATA_UDMA5, ATA_UDMA6 };
230 struct ata_port *ap = dev->link->ap;
231 char acpi_str[32] = "";
232 u32 saved_udma, udma;
233 const struct ata_acpi_gtm *gtm;
234 unsigned long bios_limit = 0, acpi_limit = 0, limit;
235
236 /* find out what BIOS configured */
237 udma = saved_udma = (unsigned long)ap->host->private_data;
238
239 if (ap->port_no == 0)
240 udma >>= 16;
241 if (dev->devno == 0)
242 udma >>= 8;
243
244 if ((udma & 0xc0) == 0xc0)
245 bios_limit = ata_pack_xfermask(0, 0, udma_mask_map[udma & 0x7]);
246
247 /* consult ACPI GTM too */
248 gtm = ata_acpi_init_gtm(ap);
249 if (gtm) {
250 acpi_limit = ata_acpi_gtm_xfermask(dev, gtm);
251
252 snprintf(acpi_str, sizeof(acpi_str), " (%u:%u:0x%x)",
253 gtm->drive[0].dma, gtm->drive[1].dma, gtm->flags);
254 }
255
256 /* be optimistic, EH can take care of things if something goes wrong */
257 limit = bios_limit | acpi_limit;
258
259 /* If PIO or DMA isn't configured at all, don't limit. Let EH
260 * handle it.
261 */
262 if (!(limit & ATA_MASK_PIO))
263 limit |= ATA_MASK_PIO;
264 if (!(limit & (ATA_MASK_MWDMA | ATA_MASK_UDMA)))
265 limit |= ATA_MASK_MWDMA | ATA_MASK_UDMA;
266
267 ata_port_printk(ap, KERN_DEBUG, "nv_mode_filter: 0x%lx&0x%lx->0x%lx, "
268 "BIOS=0x%lx (0x%x) ACPI=0x%lx%s\n",
269 xfer_mask, limit, xfer_mask & limit, bios_limit,
270 saved_udma, acpi_limit, acpi_str);
271
272 return xfer_mask & limit;
273}
Jeff Garzik669a5db2006-08-29 18:12:40 -0400274
275/**
276 * nv_probe_init - cable detection
Tejun Heocc0680a2007-08-06 18:36:23 +0900277 * @lin: ATA link
Jeff Garzik669a5db2006-08-29 18:12:40 -0400278 *
279 * Perform cable detection. The BIOS stores this in PCI config
280 * space for us.
281 */
282
Tejun Heocc0680a2007-08-06 18:36:23 +0900283static int nv_pre_reset(struct ata_link *link, unsigned long deadline)
Tejun Heod4b2bab2007-02-02 16:50:52 +0900284{
Alan Cox76ff3c62006-09-12 17:14:03 +0100285 static const struct pci_bits nv_enable_bits[] = {
286 { 0x50, 1, 0x02, 0x02 },
287 { 0x50, 1, 0x01, 0x01 }
288 };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400289
Tejun Heocc0680a2007-08-06 18:36:23 +0900290 struct ata_port *ap = link->ap;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400291 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400292
Alan Coxc9619222006-09-26 17:53:38 +0100293 if (!pci_test_config_bits(pdev, &nv_enable_bits[ap->port_no]))
294 return -ENOENT;
Alan Cox76ff3c62006-09-12 17:14:03 +0100295
Tejun Heo9363c382008-04-07 22:47:16 +0900296 return ata_sff_prereset(link, deadline);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400297}
298
Jeff Garzik669a5db2006-08-29 18:12:40 -0400299/**
300 * nv100_set_piomode - set initial PIO mode data
301 * @ap: ATA interface
302 * @adev: ATA device
303 *
304 * Program the AMD registers for PIO mode.
305 */
306
307static void nv100_set_piomode(struct ata_port *ap, struct ata_device *adev)
308{
309 timing_setup(ap, adev, 0x50, adev->pio_mode, 3);
310}
311
312static void nv133_set_piomode(struct ata_port *ap, struct ata_device *adev)
313{
314 timing_setup(ap, adev, 0x50, adev->pio_mode, 4);
315}
316
317/**
318 * nv100_set_dmamode - set initial DMA mode data
319 * @ap: ATA interface
320 * @adev: ATA device
321 *
322 * Program the MWDMA/UDMA modes for the AMD and Nvidia
323 * chipset.
324 */
325
326static void nv100_set_dmamode(struct ata_port *ap, struct ata_device *adev)
327{
328 timing_setup(ap, adev, 0x50, adev->dma_mode, 3);
329}
330
331static void nv133_set_dmamode(struct ata_port *ap, struct ata_device *adev)
332{
333 timing_setup(ap, adev, 0x50, adev->dma_mode, 4);
334}
335
Tejun Heoce54d162007-12-18 16:33:07 +0900336static void nv_host_stop(struct ata_host *host)
337{
338 u32 udma = (unsigned long)host->private_data;
339
340 /* restore PCI config register 0x60 */
341 pci_write_config_dword(to_pci_dev(host->dev), 0x60, udma);
342}
343
Jeff Garzik669a5db2006-08-29 18:12:40 -0400344static struct scsi_host_template amd_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900345 ATA_BMDMA_SHT(DRV_NAME),
Jeff Garzik669a5db2006-08-29 18:12:40 -0400346};
347
Tejun Heo029cfd62008-03-25 12:22:49 +0900348static const struct ata_port_operations amd_base_port_ops = {
349 .inherits = &ata_bmdma_port_ops,
Tejun Heo887125e2008-03-25 12:22:49 +0900350 .prereset = amd_pre_reset,
Tejun Heo029cfd62008-03-25 12:22:49 +0900351};
352
Jeff Garzik669a5db2006-08-29 18:12:40 -0400353static struct ata_port_operations amd33_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900354 .inherits = &amd_base_port_ops,
355 .cable_detect = ata_cable_40wire,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400356 .set_piomode = amd33_set_piomode,
357 .set_dmamode = amd33_set_dmamode,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400358};
359
360static struct ata_port_operations amd66_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900361 .inherits = &amd_base_port_ops,
362 .cable_detect = ata_cable_unknown,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400363 .set_piomode = amd66_set_piomode,
364 .set_dmamode = amd66_set_dmamode,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400365};
366
367static struct ata_port_operations amd100_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900368 .inherits = &amd_base_port_ops,
369 .cable_detect = ata_cable_unknown,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400370 .set_piomode = amd100_set_piomode,
371 .set_dmamode = amd100_set_dmamode,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400372};
373
374static struct ata_port_operations amd133_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900375 .inherits = &amd_base_port_ops,
376 .cable_detect = amd_cable_detect,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400377 .set_piomode = amd133_set_piomode,
378 .set_dmamode = amd133_set_dmamode,
Tejun Heo029cfd62008-03-25 12:22:49 +0900379};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400380
Tejun Heo029cfd62008-03-25 12:22:49 +0900381static const struct ata_port_operations nv_base_port_ops = {
382 .inherits = &ata_bmdma_port_ops,
383 .cable_detect = ata_cable_ignore,
384 .mode_filter = nv_mode_filter,
Tejun Heo887125e2008-03-25 12:22:49 +0900385 .prereset = nv_pre_reset,
Tejun Heo029cfd62008-03-25 12:22:49 +0900386 .host_stop = nv_host_stop,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400387};
388
389static struct ata_port_operations nv100_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900390 .inherits = &nv_base_port_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400391 .set_piomode = nv100_set_piomode,
392 .set_dmamode = nv100_set_dmamode,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400393};
394
395static struct ata_port_operations nv133_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900396 .inherits = &nv_base_port_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400397 .set_piomode = nv133_set_piomode,
398 .set_dmamode = nv133_set_dmamode,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400399};
400
401static int amd_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
402{
Tejun Heo1626aeb2007-05-04 12:43:58 +0200403 static const struct ata_port_info info[10] = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400404 { /* 0: AMD 7401 */
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400405 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400406 .pio_mask = 0x1f,
407 .mwdma_mask = 0x07, /* No SWDMA */
408 .udma_mask = 0x07, /* UDMA 33 */
409 .port_ops = &amd33_port_ops
410 },
411 { /* 1: Early AMD7409 - no swdma */
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400412 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400413 .pio_mask = 0x1f,
414 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400415 .udma_mask = ATA_UDMA4, /* UDMA 66 */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400416 .port_ops = &amd66_port_ops
417 },
418 { /* 2: AMD 7409, no swdma errata */
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400419 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400420 .pio_mask = 0x1f,
421 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400422 .udma_mask = ATA_UDMA4, /* UDMA 66 */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400423 .port_ops = &amd66_port_ops
424 },
425 { /* 3: AMD 7411 */
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400426 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400427 .pio_mask = 0x1f,
428 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400429 .udma_mask = ATA_UDMA5, /* UDMA 100 */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400430 .port_ops = &amd100_port_ops
431 },
432 { /* 4: AMD 7441 */
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400433 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400434 .pio_mask = 0x1f,
435 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400436 .udma_mask = ATA_UDMA5, /* UDMA 100 */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400437 .port_ops = &amd100_port_ops
438 },
439 { /* 5: AMD 8111*/
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400440 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400441 .pio_mask = 0x1f,
442 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400443 .udma_mask = ATA_UDMA6, /* UDMA 133, no swdma */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400444 .port_ops = &amd133_port_ops
445 },
446 { /* 6: AMD 8111 UDMA 100 (Serenade) */
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400447 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400448 .pio_mask = 0x1f,
449 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400450 .udma_mask = ATA_UDMA5, /* UDMA 100, no swdma */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400451 .port_ops = &amd133_port_ops
452 },
453 { /* 7: Nvidia Nforce */
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400454 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400455 .pio_mask = 0x1f,
456 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400457 .udma_mask = ATA_UDMA5, /* UDMA 100 */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400458 .port_ops = &nv100_port_ops
459 },
460 { /* 8: Nvidia Nforce2 and later */
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400461 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400462 .pio_mask = 0x1f,
463 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400464 .udma_mask = ATA_UDMA6, /* UDMA 133, no swdma */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400465 .port_ops = &nv133_port_ops
466 },
467 { /* 9: AMD CS5536 (Geode companion) */
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400468 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400469 .pio_mask = 0x1f,
470 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400471 .udma_mask = ATA_UDMA5, /* UDMA 100 */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400472 .port_ops = &amd100_port_ops
473 }
474 };
Tejun Heo887125e2008-03-25 12:22:49 +0900475 const struct ata_port_info *ppi[] = { NULL, NULL };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400476 static int printed_version;
477 int type = id->driver_data;
Tejun Heo887125e2008-03-25 12:22:49 +0900478 void *hpriv = NULL;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400479 u8 fifo;
Tejun Heof08048e2008-03-25 12:22:47 +0900480 int rc;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400481
482 if (!printed_version++)
483 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
484
Tejun Heof08048e2008-03-25 12:22:47 +0900485 rc = pcim_enable_device(pdev);
486 if (rc)
487 return rc;
488
Jeff Garzik669a5db2006-08-29 18:12:40 -0400489 pci_read_config_byte(pdev, 0x41, &fifo);
490
491 /* Check for AMD7409 without swdma errata and if found adjust type */
Auke Kok44c10132007-06-08 15:46:36 -0700492 if (type == 1 && pdev->revision > 0x7)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400493 type = 2;
494
Tejun Heoce54d162007-12-18 16:33:07 +0900495 /* Serenade ? */
496 if (type == 5 && pdev->subsystem_vendor == PCI_VENDOR_ID_AMD &&
497 pdev->subsystem_device == PCI_DEVICE_ID_AMD_SERENADE)
498 type = 6; /* UDMA 100 only */
499
500 /*
501 * Okay, type is determined now. Apply type-specific workarounds.
502 */
Tejun Heo887125e2008-03-25 12:22:49 +0900503 ppi[0] = &info[type];
Tejun Heoce54d162007-12-18 16:33:07 +0900504
505 if (type < 3)
Tejun Heo9363c382008-04-07 22:47:16 +0900506 ata_pci_bmdma_clear_simplex(pdev);
Tejun Heoce54d162007-12-18 16:33:07 +0900507
Jeff Garzik669a5db2006-08-29 18:12:40 -0400508 /* Check for AMD7411 */
509 if (type == 3)
510 /* FIFO is broken */
511 pci_write_config_byte(pdev, 0x41, fifo & 0x0F);
512 else
513 pci_write_config_byte(pdev, 0x41, fifo | 0xF0);
514
Tejun Heoce54d162007-12-18 16:33:07 +0900515 /* Cable detection on Nvidia chips doesn't work too well,
516 * cache BIOS programmed UDMA mode.
517 */
518 if (type == 7 || type == 8) {
519 u32 udma;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400520
Tejun Heoce54d162007-12-18 16:33:07 +0900521 pci_read_config_dword(pdev, 0x60, &udma);
Tejun Heo887125e2008-03-25 12:22:49 +0900522 hpriv = (void *)(unsigned long)udma;
Tejun Heoce54d162007-12-18 16:33:07 +0900523 }
Jeff Garzik669a5db2006-08-29 18:12:40 -0400524
525 /* And fire it up */
Tejun Heo9363c382008-04-07 22:47:16 +0900526 return ata_pci_sff_init_one(pdev, ppi, &amd_sht, hpriv);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400527}
528
Tejun Heo438ac6d2007-03-02 17:31:26 +0900529#ifdef CONFIG_PM
Alanc3041932006-11-27 16:21:24 +0000530static int amd_reinit_one(struct pci_dev *pdev)
531{
Tejun Heof08048e2008-03-25 12:22:47 +0900532 struct ata_host *host = dev_get_drvdata(&pdev->dev);
533 int rc;
534
535 rc = ata_pci_device_do_resume(pdev);
536 if (rc)
537 return rc;
538
Alanc3041932006-11-27 16:21:24 +0000539 if (pdev->vendor == PCI_VENDOR_ID_AMD) {
540 u8 fifo;
541 pci_read_config_byte(pdev, 0x41, &fifo);
542 if (pdev->device == PCI_DEVICE_ID_AMD_VIPER_7411)
543 /* FIFO is broken */
544 pci_write_config_byte(pdev, 0x41, fifo & 0x0F);
545 else
546 pci_write_config_byte(pdev, 0x41, fifo | 0xF0);
547 if (pdev->device == PCI_DEVICE_ID_AMD_VIPER_7409 ||
548 pdev->device == PCI_DEVICE_ID_AMD_COBRA_7401)
Tejun Heo9363c382008-04-07 22:47:16 +0900549 ata_pci_bmdma_clear_simplex(pdev);
Alanc3041932006-11-27 16:21:24 +0000550 }
Tejun Heof08048e2008-03-25 12:22:47 +0900551
552 ata_host_resume(host);
553 return 0;
Alanc3041932006-11-27 16:21:24 +0000554}
Tejun Heo438ac6d2007-03-02 17:31:26 +0900555#endif
Alanc3041932006-11-27 16:21:24 +0000556
Jeff Garzik669a5db2006-08-29 18:12:40 -0400557static const struct pci_device_id amd[] = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400558 { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_COBRA_7401), 0 },
559 { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_VIPER_7409), 1 },
560 { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_VIPER_7411), 3 },
561 { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_OPUS_7441), 4 },
562 { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_8111_IDE), 5 },
563 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_IDE), 7 },
564 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE2_IDE), 8 },
565 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE2S_IDE), 8 },
566 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE3_IDE), 8 },
567 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE3S_IDE), 8 },
568 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_CK804_IDE), 8 },
569 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP04_IDE), 8 },
570 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_IDE), 8 },
571 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_IDE), 8 },
572 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_IDE), 8 },
Peer Chen05e28672006-11-02 17:58:21 -0500573 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP65_IDE), 8 },
574 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP67_IDE), 8 },
Peer Chen9f789752007-06-07 18:23:12 +0800575 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP73_IDE), 8 },
576 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP77_IDE), 8 },
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400577 { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_CS5536_IDE), 9 },
578
579 { },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400580};
581
582static struct pci_driver amd_pci_driver = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400583 .name = DRV_NAME,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400584 .id_table = amd,
585 .probe = amd_init_one,
Alanc3041932006-11-27 16:21:24 +0000586 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900587#ifdef CONFIG_PM
Alanc3041932006-11-27 16:21:24 +0000588 .suspend = ata_pci_device_suspend,
589 .resume = amd_reinit_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900590#endif
Jeff Garzik669a5db2006-08-29 18:12:40 -0400591};
592
593static int __init amd_init(void)
594{
595 return pci_register_driver(&amd_pci_driver);
596}
597
598static void __exit amd_exit(void)
599{
600 pci_unregister_driver(&amd_pci_driver);
601}
602
Jeff Garzik669a5db2006-08-29 18:12:40 -0400603MODULE_AUTHOR("Alan Cox");
Alan Coxc9544bc2008-02-08 15:22:39 +0000604MODULE_DESCRIPTION("low-level driver for AMD and Nvidia PATA IDE");
Jeff Garzik669a5db2006-08-29 18:12:40 -0400605MODULE_LICENSE("GPL");
606MODULE_DEVICE_TABLE(pci, amd);
607MODULE_VERSION(DRV_VERSION);
608
609module_init(amd_init);
610module_exit(amd_exit);