blob: 9dde8390da09bd95e91c2885d1253612c4b82ff4 [file] [log] [blame]
Sergei Shtylyov60e7a822007-05-05 22:03:49 +02001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * cmd64x.c: Enable interrupts at initialization time on Ultra/PCI machines.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Due to massive hardware bugs, UltraDMA is only supported
4 * on the 646U2 and not on the 646U.
5 *
6 * Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
7 * Copyright (C) 1998 David S. Miller (davem@redhat.com)
8 *
9 * Copyright (C) 1999-2002 Andre Hedrick <andre@linux-ide.org>
Bartlomiej Zolnierkiewicz60349ab2010-01-18 07:18:26 +000010 * Copyright (C) 2007-2010 Bartlomiej Zolnierkiewicz
Sergei Shtylyov30e5ffc2009-06-15 18:52:56 +020011 * Copyright (C) 2007,2009 MontaVista Software, Inc. <source@mvista.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
15#include <linux/types.h>
16#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/ide.h>
18#include <linux/init.h>
19
20#include <asm/io.h>
21
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +020022#define DRV_NAME "cmd64x"
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024/*
25 * CMD64x specific registers definition.
26 */
27#define CFR 0x50
Sergei Shtylyove51e2522007-05-05 22:03:49 +020028#define CFR_INTR_CH0 0x04
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#define CMDTIM 0x52
31#define ARTTIM0 0x53
32#define DRWTIM0 0x54
33#define ARTTIM1 0x55
34#define DRWTIM1 0x56
35#define ARTTIM23 0x57
36#define ARTTIM23_DIS_RA2 0x04
37#define ARTTIM23_DIS_RA3 0x08
38#define ARTTIM23_INTR_CH1 0x10
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define DRWTIM2 0x58
40#define BRST 0x59
41#define DRWTIM3 0x5b
42
43#define BMIDECR0 0x70
44#define MRDMODE 0x71
45#define MRDMODE_INTR_CH0 0x04
46#define MRDMODE_INTR_CH1 0x08
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define UDIDETCR0 0x73
48#define DTPR0 0x74
49#define BMIDECR1 0x78
50#define BMIDECSR 0x79
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define UDIDETCR1 0x7B
52#define DTPR1 0x7C
53
Bartlomiej Zolnierkiewicz60349ab2010-01-18 07:18:26 +000054static void cmd64x_program_timings(ide_drive_t *drive, u8 mode)
Sergei Shtylyove277a1a2007-03-17 21:57:24 +010055{
Bartlomiej Zolnierkiewicz60349ab2010-01-18 07:18:26 +000056 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczebae41a2008-04-27 15:38:29 +020057 struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
Bartlomiej Zolnierkiewicz60349ab2010-01-18 07:18:26 +000058 int bus_speed = ide_pci_clk ? ide_pci_clk : 33;
59 const unsigned long T = 1000000 / bus_speed;
Sergei Shtylyov60e7a822007-05-05 22:03:49 +020060 static const u8 recovery_values[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 {15, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0};
Bartlomiej Zolnierkiewicz60349ab2010-01-18 07:18:26 +000062 static const u8 setup_values[] = {0x40, 0x40, 0x40, 0x80, 0, 0xc0};
63 static const u8 arttim_regs[4] = {ARTTIM0, ARTTIM1, ARTTIM23, ARTTIM23};
Sergei Shtylyov60e7a822007-05-05 22:03:49 +020064 static const u8 drwtim_regs[4] = {DRWTIM0, DRWTIM1, DRWTIM2, DRWTIM3};
Bartlomiej Zolnierkiewicz60349ab2010-01-18 07:18:26 +000065 struct ide_timing t;
66 u8 arttim = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Dan Carpenter60bea482020-01-07 16:04:41 +030068 if (drive->dn >= ARRAY_SIZE(drwtim_regs))
69 return;
70
Bartlomiej Zolnierkiewicz60349ab2010-01-18 07:18:26 +000071 ide_timing_compute(drive, mode, &t, T, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 /*
Sergei Shtylyov60e7a822007-05-05 22:03:49 +020074 * In case we've got too long recovery phase, try to lengthen
75 * the active phase
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 */
Bartlomiej Zolnierkiewicz60349ab2010-01-18 07:18:26 +000077 if (t.recover > 16) {
78 t.active += t.recover - 16;
79 t.recover = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 }
Bartlomiej Zolnierkiewicz60349ab2010-01-18 07:18:26 +000081 if (t.active > 16) /* shouldn't actually happen... */
82 t.active = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Sergei Shtylyov60e7a822007-05-05 22:03:49 +020084 /*
85 * Convert values to internal chipset representation
86 */
Bartlomiej Zolnierkiewicz60349ab2010-01-18 07:18:26 +000087 t.recover = recovery_values[t.recover];
88 t.active &= 0x0f;
Sergei Shtylyov60e7a822007-05-05 22:03:49 +020089
90 /* Program the active/recovery counts into the DRWTIM register */
Bartlomiej Zolnierkiewicz60349ab2010-01-18 07:18:26 +000091 pci_write_config_byte(dev, drwtim_regs[drive->dn],
92 (t.active << 4) | t.recover);
Sergei Shtylyov60e7a822007-05-05 22:03:49 +020093
Sergei Shtylyov60e7a822007-05-05 22:03:49 +020094 /*
95 * The primary channel has individual address setup timing registers
96 * for each drive and the hardware selects the slowest timing itself.
97 * The secondary channel has one common register and we have to select
98 * the slowest address setup timing ourselves.
99 */
100 if (hwif->channel) {
Bartlomiej Zolnierkiewicz5d44a152009-01-06 17:20:55 +0100101 ide_drive_t *pair = ide_get_pair_dev(drive);
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200102
Bartlomiej Zolnierkiewicz23d87402010-01-18 07:21:41 +0000103 if (pair) {
104 struct ide_timing tp;
Bartlomiej Zolnierkiewicz5d44a152009-01-06 17:20:55 +0100105
Bartlomiej Zolnierkiewicz23d87402010-01-18 07:21:41 +0000106 ide_timing_compute(pair, pair->pio_mode, &tp, T, 0);
107 ide_timing_merge(&t, &tp, &t, IDE_TIMING_SETUP);
108 if (pair->dma_mode) {
109 ide_timing_compute(pair, pair->dma_mode,
110 &tp, T, 0);
111 ide_timing_merge(&tp, &t, &t, IDE_TIMING_SETUP);
112 }
113 }
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200114 }
115
Bartlomiej Zolnierkiewicz60349ab2010-01-18 07:18:26 +0000116 if (t.setup > 5) /* shouldn't actually happen... */
117 t.setup = 5;
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200118
119 /*
120 * Program the address setup clocks into the ARTTIM registers.
121 * Avoid clearing the secondary channel's interrupt bit.
122 */
123 (void) pci_read_config_byte (dev, arttim_regs[drive->dn], &arttim);
124 if (hwif->channel)
125 arttim &= ~ARTTIM23_INTR_CH1;
126 arttim &= ~0xc0;
Bartlomiej Zolnierkiewicz60349ab2010-01-18 07:18:26 +0000127 arttim |= setup_values[t.setup];
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200128 (void) pci_write_config_byte(dev, arttim_regs[drive->dn], arttim);
Sergei Shtylyovf92d50e62007-03-03 17:48:53 +0100129}
130
131/*
132 * Attempts to set drive's PIO mode.
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200133 * Special cases are 8: prefetch off, 9: prefetch on (both never worked)
Sergei Shtylyovf92d50e62007-03-03 17:48:53 +0100134 */
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200135
Bartlomiej Zolnierkiewicze085b3c2010-01-19 01:44:41 -0800136static void cmd64x_set_pio_mode(ide_hwif_t *hwif, ide_drive_t *drive)
Sergei Shtylyovf92d50e62007-03-03 17:48:53 +0100137{
Bartlomiej Zolnierkiewicze085b3c2010-01-19 01:44:41 -0800138 const u8 pio = drive->pio_mode - XFER_PIO_0;
139
Sergei Shtylyovf92d50e62007-03-03 17:48:53 +0100140 /*
141 * Filter out the prefetch control values
142 * to prevent PIO5 from being programmed
143 */
144 if (pio == 8 || pio == 9)
145 return;
146
Bartlomiej Zolnierkiewicz60349ab2010-01-18 07:18:26 +0000147 cmd64x_program_timings(drive, XFER_PIO_0 + pio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Bartlomiej Zolnierkiewicz87761682010-01-19 01:45:29 -0800150static void cmd64x_set_dma_mode(ide_hwif_t *hwif, ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100152 struct pci_dev *dev = to_pci_dev(hwif->dev);
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200153 u8 unit = drive->dn & 0x01;
154 u8 regU = 0, pciU = hwif->channel ? UDIDETCR1 : UDIDETCR0;
Bartlomiej Zolnierkiewicz87761682010-01-19 01:45:29 -0800155 const u8 speed = drive->dma_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Bartlomiej Zolnierkiewicz22cabc22010-01-18 07:18:38 +0000157 pci_read_config_byte(dev, pciU, &regU);
158 regU &= ~(unit ? 0xCA : 0x35);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 switch(speed) {
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200161 case XFER_UDMA_5:
162 regU |= unit ? 0x0A : 0x05;
163 break;
164 case XFER_UDMA_4:
165 regU |= unit ? 0x4A : 0x15;
166 break;
167 case XFER_UDMA_3:
168 regU |= unit ? 0x8A : 0x25;
169 break;
170 case XFER_UDMA_2:
171 regU |= unit ? 0x42 : 0x11;
172 break;
173 case XFER_UDMA_1:
174 regU |= unit ? 0x82 : 0x21;
175 break;
176 case XFER_UDMA_0:
177 regU |= unit ? 0xC2 : 0x31;
178 break;
179 case XFER_MW_DMA_2:
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200180 case XFER_MW_DMA_1:
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200181 case XFER_MW_DMA_0:
Bartlomiej Zolnierkiewicz60349ab2010-01-18 07:18:26 +0000182 cmd64x_program_timings(drive, speed);
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200183 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 }
185
Bartlomiej Zolnierkiewicz22cabc22010-01-18 07:18:38 +0000186 pci_write_config_byte(dev, pciU, regU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
Sergei Shtylyov30e5ffc2009-06-15 18:52:56 +0200189static void cmd648_clear_irq(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +0100191 ide_hwif_t *hwif = drive->hwif;
Sergei Shtylyov30e5ffc2009-06-15 18:52:56 +0200192 struct pci_dev *dev = to_pci_dev(hwif->dev);
193 unsigned long base = pci_resource_start(dev, 4);
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200194 u8 irq_mask = hwif->channel ? MRDMODE_INTR_CH1 :
195 MRDMODE_INTR_CH0;
Bartlomiej Zolnierkiewicz1c029fd2008-01-25 22:17:05 +0100196 u8 mrdmode = inb(base + 1);
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200197
198 /* clear the interrupt bit */
Sergei Shtylyov61832892007-11-13 22:09:14 +0100199 outb((mrdmode & ~(MRDMODE_INTR_CH0 | MRDMODE_INTR_CH1)) | irq_mask,
Bartlomiej Zolnierkiewicz1c029fd2008-01-25 22:17:05 +0100200 base + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
Sergei Shtylyov30e5ffc2009-06-15 18:52:56 +0200203static void cmd64x_clear_irq(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +0100205 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100206 struct pci_dev *dev = to_pci_dev(hwif->dev);
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200207 int irq_reg = hwif->channel ? ARTTIM23 : CFR;
208 u8 irq_mask = hwif->channel ? ARTTIM23_INTR_CH1 :
209 CFR_INTR_CH0;
210 u8 irq_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200212 (void) pci_read_config_byte(dev, irq_reg, &irq_stat);
213 /* clear the interrupt bit */
214 (void) pci_write_config_byte(dev, irq_reg, irq_stat | irq_mask);
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200215}
216
Sergei Shtylyov628df2f2009-06-15 18:52:59 +0200217static int cmd648_test_irq(ide_hwif_t *hwif)
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200218{
Sergei Shtylyov628df2f2009-06-15 18:52:59 +0200219 struct pci_dev *dev = to_pci_dev(hwif->dev);
220 unsigned long base = pci_resource_start(dev, 4);
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200221 u8 irq_mask = hwif->channel ? MRDMODE_INTR_CH1 :
222 MRDMODE_INTR_CH0;
Bartlomiej Zolnierkiewicz1c029fd2008-01-25 22:17:05 +0100223 u8 mrdmode = inb(base + 1);
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200224
Sergei Shtylyov628df2f2009-06-15 18:52:59 +0200225 pr_debug("%s: mrdmode: 0x%02x irq_mask: 0x%02x\n",
226 hwif->name, mrdmode, irq_mask);
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200227
Sergei Shtylyov628df2f2009-06-15 18:52:59 +0200228 return (mrdmode & irq_mask) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Sergei Shtylyov628df2f2009-06-15 18:52:59 +0200231static int cmd64x_test_irq(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100233 struct pci_dev *dev = to_pci_dev(hwif->dev);
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200234 int irq_reg = hwif->channel ? ARTTIM23 : CFR;
235 u8 irq_mask = hwif->channel ? ARTTIM23_INTR_CH1 :
236 CFR_INTR_CH0;
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200237 u8 irq_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Sergei Shtylyove51e2522007-05-05 22:03:49 +0200239 (void) pci_read_config_byte(dev, irq_reg, &irq_stat);
240
Sergei Shtylyov628df2f2009-06-15 18:52:59 +0200241 pr_debug("%s: irq_stat: 0x%02x irq_mask: 0x%02x\n",
242 hwif->name, irq_stat, irq_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Sergei Shtylyov628df2f2009-06-15 18:52:59 +0200244 return (irq_stat & irq_mask) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
247/*
248 * ASUS P55T2P4D with CMD646 chipset revision 0x01 requires the old
249 * event order for DMA transfers.
250 */
251
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200252static int cmd646_1_dma_end(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +0100254 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 u8 dma_stat = 0, dma_cmd = 0;
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 /* get DMA status */
Bartlomiej Zolnierkiewiczcab7f8e2008-07-23 19:55:51 +0200258 dma_stat = inb(hwif->dma_base + ATA_DMA_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 /* read DMA command state */
Bartlomiej Zolnierkiewiczcab7f8e2008-07-23 19:55:51 +0200260 dma_cmd = inb(hwif->dma_base + ATA_DMA_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 /* stop DMA */
Bartlomiej Zolnierkiewiczcab7f8e2008-07-23 19:55:51 +0200262 outb(dma_cmd & ~1, hwif->dma_base + ATA_DMA_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 /* clear the INTR & ERROR bits */
Bartlomiej Zolnierkiewiczcab7f8e2008-07-23 19:55:51 +0200264 outb(dma_stat | 6, hwif->dma_base + ATA_DMA_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 /* verify good DMA status */
266 return (dma_stat & 7) != 4;
267}
268
Bartlomiej Zolnierkiewicz2ed0ef52009-03-24 23:22:53 +0100269static int init_chipset_cmd64x(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 u8 mrdmode = 0;
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 /* Set a good latency timer and cache line size value. */
274 (void) pci_write_config_byte(dev, PCI_LATENCY_TIMER, 64);
275 /* FIXME: pci_set_master() to ensure a good latency timer value */
276
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200277 /*
278 * Enable interrupts, select MEMORY READ LINE for reads.
279 *
280 * NOTE: although not mentioned in the PCI0646U specs,
281 * bits 0-1 are write only and won't be read back as
282 * set or not -- PCI0646U2 specs clarify this point.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 */
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200284 (void) pci_read_config_byte (dev, MRDMODE, &mrdmode);
285 mrdmode &= ~0x30;
286 (void) pci_write_config_byte(dev, MRDMODE, (mrdmode | 0x02));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return 0;
289}
290
Bartlomiej Zolnierkiewiczf454cbe2008-08-05 18:17:04 +0200291static u8 cmd64x_cable_detect(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100293 struct pci_dev *dev = to_pci_dev(hwif->dev);
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200294 u8 bmidecsr = 0, mask = hwif->channel ? 0x02 : 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200296 switch (dev->device) {
297 case PCI_DEVICE_ID_CMD_648:
298 case PCI_DEVICE_ID_CMD_649:
299 pci_read_config_byte(dev, BMIDECSR, &bmidecsr);
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200300 return (bmidecsr & mask) ? ATA_CBL_PATA80 : ATA_CBL_PATA40;
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200301 default:
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200302 return ATA_CBL_PATA40;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200306static const struct ide_port_ops cmd64x_port_ops = {
307 .set_pio_mode = cmd64x_set_pio_mode,
308 .set_dma_mode = cmd64x_set_dma_mode,
Sergei Shtylyov30e5ffc2009-06-15 18:52:56 +0200309 .clear_irq = cmd64x_clear_irq,
Sergei Shtylyov628df2f2009-06-15 18:52:59 +0200310 .test_irq = cmd64x_test_irq,
Sergei Shtylyov30e5ffc2009-06-15 18:52:56 +0200311 .cable_detect = cmd64x_cable_detect,
312};
313
314static const struct ide_port_ops cmd648_port_ops = {
315 .set_pio_mode = cmd64x_set_pio_mode,
316 .set_dma_mode = cmd64x_set_dma_mode,
317 .clear_irq = cmd648_clear_irq,
Sergei Shtylyov628df2f2009-06-15 18:52:59 +0200318 .test_irq = cmd648_test_irq,
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200319 .cable_detect = cmd64x_cable_detect,
320};
321
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +0200322static const struct ide_dma_ops cmd646_rev1_dma_ops = {
323 .dma_host_set = ide_dma_host_set,
324 .dma_setup = ide_dma_setup,
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +0200325 .dma_start = ide_dma_start,
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200326 .dma_end = cmd646_1_dma_end,
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +0200327 .dma_test_irq = ide_dma_test_irq,
328 .dma_lost_irq = ide_dma_lost_irq,
Bartlomiej Zolnierkiewicz22117d62009-03-27 12:46:47 +0100329 .dma_timer_expiry = ide_dma_sff_timer_expiry,
Sergei Shtylyov592b5312009-01-06 17:21:02 +0100330 .dma_sff_read_status = ide_dma_sff_read_status,
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200331};
332
Greg Kroah-Hartmanfe31edc2012-12-21 13:21:03 -0800333static const struct ide_port_info cmd64x_chipsets[] = {
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +0200334 { /* 0: CMD643 */
335 .name = DRV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 .init_chipset = init_chipset_cmd64x,
Sergei Shtylyov7accbff2007-05-05 22:03:49 +0200337 .enablebits = {{0x00,0x00,0x00}, {0x51,0x08,0x08}},
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200338 .port_ops = &cmd64x_port_ops,
Bartlomiej Zolnierkiewicz8ac2b42a2008-02-01 23:09:30 +0100339 .host_flags = IDE_HFLAG_CLEAR_SIMPLEX |
Mikulas Patocka9bd74962009-10-21 08:55:28 +0000340 IDE_HFLAG_ABUSE_PREFETCH |
341 IDE_HFLAG_SERIALIZE,
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200342 .pio_mask = ATA_PIO5,
Bartlomiej Zolnierkiewicz5f8b6c32007-10-19 00:30:07 +0200343 .mwdma_mask = ATA_MWDMA2,
Bartlomiej Zolnierkiewicz18137202007-05-10 00:01:07 +0200344 .udma_mask = 0x00, /* no udma */
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +0200345 },
346 { /* 1: CMD646 */
347 .name = DRV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 .init_chipset = init_chipset_cmd64x,
Sergei Shtylyov7accbff2007-05-05 22:03:49 +0200349 .enablebits = {{0x51,0x04,0x04}, {0x51,0x08,0x08}},
Sergei Shtylyov30e5ffc2009-06-15 18:52:56 +0200350 .port_ops = &cmd648_port_ops,
Mikulas Patocka9bd74962009-10-21 08:55:28 +0000351 .host_flags = IDE_HFLAG_ABUSE_PREFETCH |
352 IDE_HFLAG_SERIALIZE,
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200353 .pio_mask = ATA_PIO5,
Bartlomiej Zolnierkiewicz5f8b6c32007-10-19 00:30:07 +0200354 .mwdma_mask = ATA_MWDMA2,
355 .udma_mask = ATA_UDMA2,
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +0200356 },
357 { /* 2: CMD648 */
358 .name = DRV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 .init_chipset = init_chipset_cmd64x,
Sergei Shtylyov7accbff2007-05-05 22:03:49 +0200360 .enablebits = {{0x51,0x04,0x04}, {0x51,0x08,0x08}},
Sergei Shtylyov30e5ffc2009-06-15 18:52:56 +0200361 .port_ops = &cmd648_port_ops,
Bartlomiej Zolnierkiewicz5e71d9c2008-04-26 17:36:35 +0200362 .host_flags = IDE_HFLAG_ABUSE_PREFETCH,
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200363 .pio_mask = ATA_PIO5,
Bartlomiej Zolnierkiewicz5f8b6c32007-10-19 00:30:07 +0200364 .mwdma_mask = ATA_MWDMA2,
365 .udma_mask = ATA_UDMA4,
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +0200366 },
367 { /* 3: CMD649 */
368 .name = DRV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 .init_chipset = init_chipset_cmd64x,
Sergei Shtylyov7accbff2007-05-05 22:03:49 +0200370 .enablebits = {{0x51,0x04,0x04}, {0x51,0x08,0x08}},
Sergei Shtylyov30e5ffc2009-06-15 18:52:56 +0200371 .port_ops = &cmd648_port_ops,
Bartlomiej Zolnierkiewicz5e71d9c2008-04-26 17:36:35 +0200372 .host_flags = IDE_HFLAG_ABUSE_PREFETCH,
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200373 .pio_mask = ATA_PIO5,
Bartlomiej Zolnierkiewicz5f8b6c32007-10-19 00:30:07 +0200374 .mwdma_mask = ATA_MWDMA2,
375 .udma_mask = ATA_UDMA5,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377};
378
Greg Kroah-Hartmanfe31edc2012-12-21 13:21:03 -0800379static int cmd64x_init_one(struct pci_dev *dev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Bartlomiej Zolnierkiewicz039788e2007-10-20 00:32:34 +0200381 struct ide_port_info d;
Bartlomiej Zolnierkiewiczbfd314a2007-10-19 00:30:09 +0200382 u8 idx = id->driver_data;
Sergei Shtylyov7accbff2007-05-05 22:03:49 +0200383
Bartlomiej Zolnierkiewiczbfd314a2007-10-19 00:30:09 +0200384 d = cmd64x_chipsets[idx];
385
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200386 if (idx == 1) {
387 /*
388 * UltraDMA only supported on PCI646U and PCI646U2, which
389 * correspond to revisions 0x03, 0x05 and 0x07 respectively.
390 * Actually, although the CMD tech support people won't
391 * tell me the details, the 0x03 revision cannot support
392 * UDMA correctly without hardware modifications, and even
393 * then it only works with Quantum disks due to some
394 * hold time assumptions in the 646U part which are fixed
395 * in the 646U2.
396 *
397 * So we only do UltraDMA on revision 0x05 and 0x07 chipsets.
398 */
399 if (dev->revision < 5) {
400 d.udma_mask = 0x00;
401 /*
402 * The original PCI0646 didn't have the primary
403 * channel enable bit, it appeared starting with
404 * PCI0646U (i.e. revision ID 3).
405 */
406 if (dev->revision < 3) {
407 d.enablebits[0].reg = 0;
Sergei Shtylyov30e5ffc2009-06-15 18:52:56 +0200408 d.port_ops = &cmd64x_port_ops;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200409 if (dev->revision == 1)
410 d.dma_ops = &cmd646_rev1_dma_ops;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200411 }
412 }
413 }
Bartlomiej Zolnierkiewiczbfd314a2007-10-19 00:30:09 +0200414
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +0200415 return ide_pci_init_one(dev, &d, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +0200418static const struct pci_device_id cmd64x_pci_tbl[] = {
419 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_CMD_643), 0 },
420 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_CMD_646), 1 },
421 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_CMD_648), 2 },
422 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_CMD_649), 3 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 { 0, },
424};
425MODULE_DEVICE_TABLE(pci, cmd64x_pci_tbl);
426
Bartlomiej Zolnierkiewicza9ab09e2008-10-13 21:39:41 +0200427static struct pci_driver cmd64x_pci_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 .name = "CMD64x_IDE",
429 .id_table = cmd64x_pci_tbl,
430 .probe = cmd64x_init_one,
Bartlomiej Zolnierkiewicze2b15b42008-07-24 22:53:20 +0200431 .remove = ide_pci_remove,
Bartlomiej Zolnierkiewiczfeb22b72008-10-10 22:39:32 +0200432 .suspend = ide_pci_suspend,
433 .resume = ide_pci_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434};
435
Bartlomiej Zolnierkiewicz82ab1ee2007-01-27 13:46:56 +0100436static int __init cmd64x_ide_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Bartlomiej Zolnierkiewicza9ab09e2008-10-13 21:39:41 +0200438 return ide_pci_register_driver(&cmd64x_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
Bartlomiej Zolnierkiewicze2b15b42008-07-24 22:53:20 +0200441static void __exit cmd64x_ide_exit(void)
442{
Bartlomiej Zolnierkiewicza9ab09e2008-10-13 21:39:41 +0200443 pci_unregister_driver(&cmd64x_pci_driver);
Bartlomiej Zolnierkiewicze2b15b42008-07-24 22:53:20 +0200444}
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446module_init(cmd64x_ide_init);
Bartlomiej Zolnierkiewicze2b15b42008-07-24 22:53:20 +0200447module_exit(cmd64x_ide_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Bartlomiej Zolnierkiewicz60349ab2010-01-18 07:18:26 +0000449MODULE_AUTHOR("Eddie Dost, David Miller, Andre Hedrick, Bartlomiej Zolnierkiewicz");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450MODULE_DESCRIPTION("PCI driver module for CMD64x IDE");
451MODULE_LICENSE("GPL");