blob: 85f5e42eb831bbb2be97f5c3fdf6834263a1f70e [file] [log] [blame]
Sergei Shtylyov60e7a822007-05-05 22:03:49 +02001/*
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +02002 * linux/drivers/ide/pci/cmd64x.c Version 1.50 May 10, 2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * cmd64x.c: Enable interrupts at initialization time on Ultra/PCI machines.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Due to massive hardware bugs, UltraDMA is only supported
6 * on the 646U2 and not on the 646U.
7 *
8 * Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
9 * Copyright (C) 1998 David S. Miller (davem@redhat.com)
10 *
11 * Copyright (C) 1999-2002 Andre Hedrick <andre@linux-ide.org>
Sergei Shtylyovf92d50e62007-03-03 17:48:53 +010012 * Copyright (C) 2007 MontaVista Software, Inc. <source@mvista.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/module.h>
16#include <linux/types.h>
17#include <linux/pci.h>
18#include <linux/delay.h>
19#include <linux/hdreg.h>
20#include <linux/ide.h>
21#include <linux/init.h>
22
23#include <asm/io.h>
24
25#define DISPLAY_CMD64X_TIMINGS
26
27#define CMD_DEBUG 0
28
29#if CMD_DEBUG
30#define cmdprintk(x...) printk(x)
31#else
32#define cmdprintk(x...)
33#endif
34
35/*
36 * CMD64x specific registers definition.
37 */
38#define CFR 0x50
Sergei Shtylyove51e2522007-05-05 22:03:49 +020039#define CFR_INTR_CH0 0x04
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define CNTRL 0x51
Sergei Shtylyov5826b312007-05-05 22:03:50 +020041#define CNTRL_ENA_1ST 0x04
42#define CNTRL_ENA_2ND 0x08
43#define CNTRL_DIS_RA0 0x40
44#define CNTRL_DIS_RA1 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#define CMDTIM 0x52
47#define ARTTIM0 0x53
48#define DRWTIM0 0x54
49#define ARTTIM1 0x55
50#define DRWTIM1 0x56
51#define ARTTIM23 0x57
52#define ARTTIM23_DIS_RA2 0x04
53#define ARTTIM23_DIS_RA3 0x08
54#define ARTTIM23_INTR_CH1 0x10
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define DRWTIM2 0x58
56#define BRST 0x59
57#define DRWTIM3 0x5b
58
59#define BMIDECR0 0x70
60#define MRDMODE 0x71
61#define MRDMODE_INTR_CH0 0x04
62#define MRDMODE_INTR_CH1 0x08
63#define MRDMODE_BLK_CH0 0x10
64#define MRDMODE_BLK_CH1 0x20
65#define BMIDESR0 0x72
66#define UDIDETCR0 0x73
67#define DTPR0 0x74
68#define BMIDECR1 0x78
69#define BMIDECSR 0x79
70#define BMIDESR1 0x7A
71#define UDIDETCR1 0x7B
72#define DTPR1 0x7C
73
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +020074#if defined(DISPLAY_CMD64X_TIMINGS) && defined(CONFIG_IDE_PROC_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#include <linux/stat.h>
76#include <linux/proc_fs.h>
77
78static u8 cmd64x_proc = 0;
79
80#define CMD_MAX_DEVS 5
81
82static struct pci_dev *cmd_devs[CMD_MAX_DEVS];
83static int n_cmd_devs;
84
85static char * print_cmd64x_get_info (char *buf, struct pci_dev *dev, int index)
86{
87 char *p = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 u8 reg72 = 0, reg73 = 0; /* primary */
89 u8 reg7a = 0, reg7b = 0; /* secondary */
Sergei Shtylyov5826b312007-05-05 22:03:50 +020090 u8 reg50 = 1, reg51 = 1, reg57 = 0, reg71 = 0; /* extra */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 p += sprintf(p, "\nController: %d\n", index);
Sergei Shtylyov5826b312007-05-05 22:03:50 +020093 p += sprintf(p, "PCI-%x Chipset.\n", dev->device);
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 (void) pci_read_config_byte(dev, CFR, &reg50);
Sergei Shtylyov5826b312007-05-05 22:03:50 +020096 (void) pci_read_config_byte(dev, CNTRL, &reg51);
97 (void) pci_read_config_byte(dev, ARTTIM23, &reg57);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 (void) pci_read_config_byte(dev, MRDMODE, &reg71);
99 (void) pci_read_config_byte(dev, BMIDESR0, &reg72);
100 (void) pci_read_config_byte(dev, UDIDETCR0, &reg73);
101 (void) pci_read_config_byte(dev, BMIDESR1, &reg7a);
102 (void) pci_read_config_byte(dev, UDIDETCR1, &reg7b);
103
Sergei Shtylyov5826b312007-05-05 22:03:50 +0200104 /* PCI0643/6 originally didn't have the primary channel enable bit */
Sergei Shtylyov5826b312007-05-05 22:03:50 +0200105 if ((dev->device == PCI_DEVICE_ID_CMD_643) ||
Auke Kok44c10132007-06-08 15:46:36 -0700106 (dev->device == PCI_DEVICE_ID_CMD_646 && dev->revision < 3))
Sergei Shtylyov5826b312007-05-05 22:03:50 +0200107 reg51 |= CNTRL_ENA_1ST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Sergei Shtylyov5826b312007-05-05 22:03:50 +0200109 p += sprintf(p, "---------------- Primary Channel "
110 "---------------- Secondary Channel ------------\n");
111 p += sprintf(p, " %s %s\n",
112 (reg51 & CNTRL_ENA_1ST) ? "enabled " : "disabled",
113 (reg51 & CNTRL_ENA_2ND) ? "enabled " : "disabled");
114 p += sprintf(p, "---------------- drive0 --------- drive1 "
115 "-------- drive0 --------- drive1 ------\n");
116 p += sprintf(p, "DMA enabled: %s %s"
117 " %s %s\n",
118 (reg72 & 0x20) ? "yes" : "no ", (reg72 & 0x40) ? "yes" : "no ",
119 (reg7a & 0x20) ? "yes" : "no ", (reg7a & 0x40) ? "yes" : "no ");
120 p += sprintf(p, "UltraDMA mode: %s (%c) %s (%c)",
121 ( reg73 & 0x01) ? " on" : "off",
122 ((reg73 & 0x30) == 0x30) ? ((reg73 & 0x04) ? '3' : '0') :
123 ((reg73 & 0x30) == 0x20) ? ((reg73 & 0x04) ? '3' : '1') :
124 ((reg73 & 0x30) == 0x10) ? ((reg73 & 0x04) ? '4' : '2') :
125 ((reg73 & 0x30) == 0x00) ? ((reg73 & 0x04) ? '5' : '2') : '?',
126 ( reg73 & 0x02) ? " on" : "off",
127 ((reg73 & 0xC0) == 0xC0) ? ((reg73 & 0x08) ? '3' : '0') :
128 ((reg73 & 0xC0) == 0x80) ? ((reg73 & 0x08) ? '3' : '1') :
129 ((reg73 & 0xC0) == 0x40) ? ((reg73 & 0x08) ? '4' : '2') :
130 ((reg73 & 0xC0) == 0x00) ? ((reg73 & 0x08) ? '5' : '2') : '?');
131 p += sprintf(p, " %s (%c) %s (%c)\n",
132 ( reg7b & 0x01) ? " on" : "off",
133 ((reg7b & 0x30) == 0x30) ? ((reg7b & 0x04) ? '3' : '0') :
134 ((reg7b & 0x30) == 0x20) ? ((reg7b & 0x04) ? '3' : '1') :
135 ((reg7b & 0x30) == 0x10) ? ((reg7b & 0x04) ? '4' : '2') :
136 ((reg7b & 0x30) == 0x00) ? ((reg7b & 0x04) ? '5' : '2') : '?',
137 ( reg7b & 0x02) ? " on" : "off",
138 ((reg7b & 0xC0) == 0xC0) ? ((reg7b & 0x08) ? '3' : '0') :
139 ((reg7b & 0xC0) == 0x80) ? ((reg7b & 0x08) ? '3' : '1') :
140 ((reg7b & 0xC0) == 0x40) ? ((reg7b & 0x08) ? '4' : '2') :
141 ((reg7b & 0xC0) == 0x00) ? ((reg7b & 0x08) ? '5' : '2') : '?');
142 p += sprintf(p, "Interrupt: %s, %s %s, %s\n",
143 (reg71 & MRDMODE_BLK_CH0 ) ? "blocked" : "enabled",
144 (reg50 & CFR_INTR_CH0 ) ? "pending" : "clear ",
145 (reg71 & MRDMODE_BLK_CH1 ) ? "blocked" : "enabled",
146 (reg57 & ARTTIM23_INTR_CH1) ? "pending" : "clear ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 return (char *)p;
149}
150
151static int cmd64x_get_info (char *buffer, char **addr, off_t offset, int count)
152{
153 char *p = buffer;
154 int i;
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 for (i = 0; i < n_cmd_devs; i++) {
157 struct pci_dev *dev = cmd_devs[i];
158 p = print_cmd64x_get_info(p, dev, i);
159 }
160 return p-buffer; /* => must be less than 4k! */
161}
162
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +0200163#endif /* defined(DISPLAY_CMD64X_TIMINGS) && defined(CONFIG_IDE_PROC_FS) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Sergei Shtylyove277a1a2007-03-17 21:57:24 +0100165static u8 quantize_timing(int timing, int quant)
166{
167 return (timing + quant - 1) / quant;
168}
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170/*
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200171 * This routine calculates active/recovery counts and then writes them into
172 * the chipset registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 */
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200174static void program_cycle_times (ide_drive_t *drive, int cycle_time, int active_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200176 struct pci_dev *dev = HWIF(drive)->pci_dev;
177 int clock_time = 1000 / system_bus_clock();
178 u8 cycle_count, active_count, recovery_count, drwtim;
179 static const u8 recovery_values[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 {15, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0};
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200181 static const u8 drwtim_regs[4] = {DRWTIM0, DRWTIM1, DRWTIM2, DRWTIM3};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200183 cmdprintk("program_cycle_times parameters: total=%d, active=%d\n",
184 cycle_time, active_time);
185
186 cycle_count = quantize_timing( cycle_time, clock_time);
187 active_count = quantize_timing(active_time, clock_time);
188 recovery_count = cycle_count - active_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 /*
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200191 * In case we've got too long recovery phase, try to lengthen
192 * the active phase
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (recovery_count > 16) {
195 active_count += recovery_count - 16;
196 recovery_count = 16;
197 }
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200198 if (active_count > 16) /* shouldn't actually happen... */
199 active_count = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200201 cmdprintk("Final counts: total=%d, active=%d, recovery=%d\n",
202 cycle_count, active_count, recovery_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200204 /*
205 * Convert values to internal chipset representation
206 */
207 recovery_count = recovery_values[recovery_count];
208 active_count &= 0x0f;
209
210 /* Program the active/recovery counts into the DRWTIM register */
211 drwtim = (active_count << 4) | recovery_count;
212 (void) pci_write_config_byte(dev, drwtim_regs[drive->dn], drwtim);
213 cmdprintk("Write 0x%02x to reg 0x%x\n", drwtim, drwtim_regs[drive->dn]);
214}
215
216/*
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200217 * This routine writes into the chipset registers
218 * PIO setup/active/recovery timings.
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200219 */
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200220static void cmd64x_tune_pio(ide_drive_t *drive, const u8 pio)
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200221{
222 ide_hwif_t *hwif = HWIF(drive);
223 struct pci_dev *dev = hwif->pci_dev;
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200224 unsigned int cycle_time;
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200225 u8 setup_count, arttim = 0;
226
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200227 static const u8 setup_values[] = {0x40, 0x40, 0x40, 0x80, 0, 0xc0};
228 static const u8 arttim_regs[4] = {ARTTIM0, ARTTIM1, ARTTIM23, ARTTIM23};
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200229
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200230 cycle_time = ide_pio_cycle_time(drive, pio);
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200231
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200232 program_cycle_times(drive, cycle_time,
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200233 ide_pio_timings[pio].active_time);
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200234
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200235 setup_count = quantize_timing(ide_pio_timings[pio].setup_time,
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200236 1000 / system_bus_clock());
237
238 /*
239 * The primary channel has individual address setup timing registers
240 * for each drive and the hardware selects the slowest timing itself.
241 * The secondary channel has one common register and we have to select
242 * the slowest address setup timing ourselves.
243 */
244 if (hwif->channel) {
245 ide_drive_t *drives = hwif->drives;
246
247 drive->drive_data = setup_count;
248 setup_count = max(drives[0].drive_data, drives[1].drive_data);
249 }
250
251 if (setup_count > 5) /* shouldn't actually happen... */
252 setup_count = 5;
253 cmdprintk("Final address setup count: %d\n", setup_count);
254
255 /*
256 * Program the address setup clocks into the ARTTIM registers.
257 * Avoid clearing the secondary channel's interrupt bit.
258 */
259 (void) pci_read_config_byte (dev, arttim_regs[drive->dn], &arttim);
260 if (hwif->channel)
261 arttim &= ~ARTTIM23_INTR_CH1;
262 arttim &= ~0xc0;
263 arttim |= setup_values[setup_count];
264 (void) pci_write_config_byte(dev, arttim_regs[drive->dn], arttim);
265 cmdprintk("Write 0x%02x to reg 0x%x\n", arttim, arttim_regs[drive->dn]);
Sergei Shtylyovf92d50e62007-03-03 17:48:53 +0100266}
267
268/*
269 * Attempts to set drive's PIO mode.
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200270 * Special cases are 8: prefetch off, 9: prefetch on (both never worked)
Sergei Shtylyovf92d50e62007-03-03 17:48:53 +0100271 */
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200272
273static void cmd64x_set_pio_mode(ide_drive_t *drive, const u8 pio)
Sergei Shtylyovf92d50e62007-03-03 17:48:53 +0100274{
275 /*
276 * Filter out the prefetch control values
277 * to prevent PIO5 from being programmed
278 */
279 if (pio == 8 || pio == 9)
280 return;
281
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200282 cmd64x_tune_pio(drive, pio);
Sergei Shtylyovf92d50e62007-03-03 17:48:53 +0100283 (void) ide_config_drive_speed(drive, XFER_PIO_0 + pio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Bartlomiej Zolnierkiewiczf212ff22007-10-11 23:53:59 +0200286static int cmd64x_tune_chipset(ide_drive_t *drive, const u8 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 ide_hwif_t *hwif = HWIF(drive);
289 struct pci_dev *dev = hwif->pci_dev;
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200290 u8 unit = drive->dn & 0x01;
291 u8 regU = 0, pciU = hwif->channel ? UDIDETCR1 : UDIDETCR0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Sergei Shtylyovf92d50e62007-03-03 17:48:53 +0100293 if (speed >= XFER_SW_DMA_0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 (void) pci_read_config_byte(dev, pciU, &regU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 regU &= ~(unit ? 0xCA : 0x35);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
297
298 switch(speed) {
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200299 case XFER_UDMA_5:
300 regU |= unit ? 0x0A : 0x05;
301 break;
302 case XFER_UDMA_4:
303 regU |= unit ? 0x4A : 0x15;
304 break;
305 case XFER_UDMA_3:
306 regU |= unit ? 0x8A : 0x25;
307 break;
308 case XFER_UDMA_2:
309 regU |= unit ? 0x42 : 0x11;
310 break;
311 case XFER_UDMA_1:
312 regU |= unit ? 0x82 : 0x21;
313 break;
314 case XFER_UDMA_0:
315 regU |= unit ? 0xC2 : 0x31;
316 break;
317 case XFER_MW_DMA_2:
318 program_cycle_times(drive, 120, 70);
319 break;
320 case XFER_MW_DMA_1:
321 program_cycle_times(drive, 150, 80);
322 break;
323 case XFER_MW_DMA_0:
324 program_cycle_times(drive, 480, 215);
325 break;
326 case XFER_PIO_5:
327 case XFER_PIO_4:
328 case XFER_PIO_3:
329 case XFER_PIO_2:
330 case XFER_PIO_1:
331 case XFER_PIO_0:
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200332 cmd64x_tune_pio(drive, speed - XFER_PIO_0);
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200333 break;
334 default:
335 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
337
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200338 if (speed >= XFER_SW_DMA_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 (void) pci_write_config_byte(dev, pciU, regU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Sergei Shtylyov60e7a822007-05-05 22:03:49 +0200341 return ide_config_drive_speed(drive, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344static int cmd64x_config_drive_for_dma (ide_drive_t *drive)
345{
Bartlomiej Zolnierkiewicz4728d542007-05-16 00:51:46 +0200346 if (ide_tune_dma(drive))
Bartlomiej Zolnierkiewicz3608b5d2007-02-17 02:40:26 +0100347 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Bartlomiej Zolnierkiewiczd8f44692007-02-17 02:40:25 +0100349 if (ide_use_fast_pio(drive))
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200350 ide_set_max_pio(drive);
Bartlomiej Zolnierkiewiczd8f44692007-02-17 02:40:25 +0100351
Bartlomiej Zolnierkiewicz3608b5d2007-02-17 02:40:26 +0100352 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200355static int cmd648_ide_dma_end (ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200357 ide_hwif_t *hwif = HWIF(drive);
358 int err = __ide_dma_end(drive);
359 u8 irq_mask = hwif->channel ? MRDMODE_INTR_CH1 :
360 MRDMODE_INTR_CH0;
361 u8 mrdmode = inb(hwif->dma_master + 0x01);
362
363 /* clear the interrupt bit */
364 outb(mrdmode | irq_mask, hwif->dma_master + 0x01);
365
366 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
369static int cmd64x_ide_dma_end (ide_drive_t *drive)
370{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 ide_hwif_t *hwif = HWIF(drive);
372 struct pci_dev *dev = hwif->pci_dev;
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200373 int irq_reg = hwif->channel ? ARTTIM23 : CFR;
374 u8 irq_mask = hwif->channel ? ARTTIM23_INTR_CH1 :
375 CFR_INTR_CH0;
376 u8 irq_stat = 0;
377 int err = __ide_dma_end(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200379 (void) pci_read_config_byte(dev, irq_reg, &irq_stat);
380 /* clear the interrupt bit */
381 (void) pci_write_config_byte(dev, irq_reg, irq_stat | irq_mask);
382
383 return err;
384}
385
386static int cmd648_ide_dma_test_irq (ide_drive_t *drive)
387{
388 ide_hwif_t *hwif = HWIF(drive);
389 u8 irq_mask = hwif->channel ? MRDMODE_INTR_CH1 :
390 MRDMODE_INTR_CH0;
391 u8 dma_stat = inb(hwif->dma_status);
392 u8 mrdmode = inb(hwif->dma_master + 0x01);
393
394#ifdef DEBUG
395 printk("%s: dma_stat: 0x%02x mrdmode: 0x%02x irq_mask: 0x%02x\n",
396 drive->name, dma_stat, mrdmode, irq_mask);
397#endif
398 if (!(mrdmode & irq_mask))
399 return 0;
400
401 /* return 1 if INTR asserted */
402 if (dma_stat & 4)
403 return 1;
404
405 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
407
408static int cmd64x_ide_dma_test_irq (ide_drive_t *drive)
409{
Sergei Shtylyove51e2522007-05-05 22:03:49 +0200410 ide_hwif_t *hwif = HWIF(drive);
411 struct pci_dev *dev = hwif->pci_dev;
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200412 int irq_reg = hwif->channel ? ARTTIM23 : CFR;
413 u8 irq_mask = hwif->channel ? ARTTIM23_INTR_CH1 :
414 CFR_INTR_CH0;
415 u8 dma_stat = inb(hwif->dma_status);
416 u8 irq_stat = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Sergei Shtylyove51e2522007-05-05 22:03:49 +0200418 (void) pci_read_config_byte(dev, irq_reg, &irq_stat);
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420#ifdef DEBUG
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200421 printk("%s: dma_stat: 0x%02x irq_stat: 0x%02x irq_mask: 0x%02x\n",
422 drive->name, dma_stat, irq_stat, irq_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423#endif
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200424 if (!(irq_stat & irq_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 return 0;
426
427 /* return 1 if INTR asserted */
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200428 if (dma_stat & 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 return 1;
430
431 return 0;
432}
433
434/*
435 * ASUS P55T2P4D with CMD646 chipset revision 0x01 requires the old
436 * event order for DMA transfers.
437 */
438
439static int cmd646_1_ide_dma_end (ide_drive_t *drive)
440{
441 ide_hwif_t *hwif = HWIF(drive);
442 u8 dma_stat = 0, dma_cmd = 0;
443
444 drive->waiting_for_dma = 0;
445 /* get DMA status */
Bartlomiej Zolnierkiewicz0ecdca22007-02-17 02:40:25 +0100446 dma_stat = inb(hwif->dma_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 /* read DMA command state */
Bartlomiej Zolnierkiewicz0ecdca22007-02-17 02:40:25 +0100448 dma_cmd = inb(hwif->dma_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 /* stop DMA */
Bartlomiej Zolnierkiewicz0ecdca22007-02-17 02:40:25 +0100450 outb(dma_cmd & ~1, hwif->dma_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 /* clear the INTR & ERROR bits */
Bartlomiej Zolnierkiewicz0ecdca22007-02-17 02:40:25 +0100452 outb(dma_stat | 6, hwif->dma_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 /* and free any DMA resources */
454 ide_destroy_dmatable(drive);
455 /* verify good DMA status */
456 return (dma_stat & 7) != 4;
457}
458
459static unsigned int __devinit init_chipset_cmd64x(struct pci_dev *dev, const char *name)
460{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 u8 mrdmode = 0;
462
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200463 if (dev->device == PCI_DEVICE_ID_CMD_646) {
464 u8 rev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200466 pci_read_config_byte(dev, PCI_REVISION_ID, &rev);
467
468 switch (rev) {
469 case 0x07:
470 case 0x05:
Meelis Roosb37c6b82007-08-01 23:46:44 +0200471 printk("%s: UltraDMA capable\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 break;
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200473 case 0x03:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 default:
Meelis Roosb37c6b82007-08-01 23:46:44 +0200475 printk("%s: MultiWord DMA force limited\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 break;
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200477 case 0x01:
478 printk("%s: MultiWord DMA limited, "
479 "IRQ workaround enabled\n", name);
480 break;
481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
483
484 /* Set a good latency timer and cache line size value. */
485 (void) pci_write_config_byte(dev, PCI_LATENCY_TIMER, 64);
486 /* FIXME: pci_set_master() to ensure a good latency timer value */
487
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200488 /*
489 * Enable interrupts, select MEMORY READ LINE for reads.
490 *
491 * NOTE: although not mentioned in the PCI0646U specs,
492 * bits 0-1 are write only and won't be read back as
493 * set or not -- PCI0646U2 specs clarify this point.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 */
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200495 (void) pci_read_config_byte (dev, MRDMODE, &mrdmode);
496 mrdmode &= ~0x30;
497 (void) pci_write_config_byte(dev, MRDMODE, (mrdmode | 0x02));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +0200499#if defined(DISPLAY_CMD64X_TIMINGS) && defined(CONFIG_IDE_PROC_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 cmd_devs[n_cmd_devs++] = dev;
502
503 if (!cmd64x_proc) {
504 cmd64x_proc = 1;
505 ide_pci_create_host_proc("cmd64x", cmd64x_get_info);
506 }
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +0200507#endif /* DISPLAY_CMD64X_TIMINGS && CONFIG_IDE_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 return 0;
510}
511
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200512static u8 __devinit ata66_cmd64x(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200514 struct pci_dev *dev = hwif->pci_dev;
515 u8 bmidecsr = 0, mask = hwif->channel ? 0x02 : 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200517 switch (dev->device) {
518 case PCI_DEVICE_ID_CMD_648:
519 case PCI_DEVICE_ID_CMD_649:
520 pci_read_config_byte(dev, BMIDECSR, &bmidecsr);
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200521 return (bmidecsr & mask) ? ATA_CBL_PATA80 : ATA_CBL_PATA40;
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200522 default:
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200523 return ATA_CBL_PATA40;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
527static void __devinit init_hwif_cmd64x(ide_hwif_t *hwif)
528{
529 struct pci_dev *dev = hwif->pci_dev;
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200530 u8 rev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200532 pci_read_config_byte(dev, PCI_REVISION_ID, &rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200534 hwif->set_pio_mode = &cmd64x_set_pio_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 hwif->speedproc = &cmd64x_tune_chipset;
536
Sergei Shtylyovf92d50e62007-03-03 17:48:53 +0100537 hwif->drives[0].autotune = hwif->drives[1].autotune = 1;
538
539 if (!hwif->dma_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200542 hwif->atapi_dma = 1;
543 hwif->mwdma_mask = 0x07;
Bartlomiej Zolnierkiewicz18137202007-05-10 00:01:07 +0200544 hwif->ultra_mask = hwif->cds->udma_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200546 /*
547 * UltraDMA only supported on PCI646U and PCI646U2, which
548 * correspond to revisions 0x03, 0x05 and 0x07 respectively.
549 * Actually, although the CMD tech support people won't
550 * tell me the details, the 0x03 revision cannot support
551 * UDMA correctly without hardware modifications, and even
552 * then it only works with Quantum disks due to some
553 * hold time assumptions in the 646U part which are fixed
554 * in the 646U2.
555 *
556 * So we only do UltraDMA on revision 0x05 and 0x07 chipsets.
557 */
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200558 if (dev->device == PCI_DEVICE_ID_CMD_646 && rev < 5)
Bartlomiej Zolnierkiewicz18137202007-05-10 00:01:07 +0200559 hwif->ultra_mask = 0x00;
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 hwif->ide_dma_check = &cmd64x_config_drive_for_dma;
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200562
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200563 if (hwif->cbl != ATA_CBL_PATA40_SHORT)
564 hwif->cbl = ata66_cmd64x(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200566 switch (dev->device) {
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200567 case PCI_DEVICE_ID_CMD_648:
568 case PCI_DEVICE_ID_CMD_649:
569 alt_irq_bits:
570 hwif->ide_dma_end = &cmd648_ide_dma_end;
571 hwif->ide_dma_test_irq = &cmd648_ide_dma_test_irq;
572 break;
573 case PCI_DEVICE_ID_CMD_646:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 hwif->chipset = ide_cmd646;
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200575 if (rev == 0x01) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 hwif->ide_dma_end = &cmd646_1_ide_dma_end;
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200577 break;
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200578 } else if (rev >= 0x03)
Sergei Shtylyov66602c82007-05-05 22:03:50 +0200579 goto alt_irq_bits;
580 /* fall thru */
581 default:
582 hwif->ide_dma_end = &cmd64x_ide_dma_end;
583 hwif->ide_dma_test_irq = &cmd64x_ide_dma_test_irq;
584 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (!noautodma)
588 hwif->autodma = 1;
Sergei Shtylyov83a6d4a2007-07-09 23:17:55 +0200589 hwif->drives[0].autodma = hwif->drives[1].autodma = hwif->autodma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Sergei Shtylyov7accbff2007-05-05 22:03:49 +0200592static int __devinit init_setup_cmd64x(struct pci_dev *dev, ide_pci_device_t *d)
593{
594 return ide_setup_pci_device(dev, d);
595}
596
597static int __devinit init_setup_cmd646(struct pci_dev *dev, ide_pci_device_t *d)
598{
Sergei Shtylyov7accbff2007-05-05 22:03:49 +0200599 /*
600 * The original PCI0646 didn't have the primary channel enable bit,
601 * it appeared starting with PCI0646U (i.e. revision ID 3).
602 */
Auke Kok44c10132007-06-08 15:46:36 -0700603 if (dev->revision < 3)
Sergei Shtylyov7accbff2007-05-05 22:03:49 +0200604 d->enablebits[0].reg = 0;
605
606 return ide_setup_pci_device(dev, d);
607}
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609static ide_pci_device_t cmd64x_chipsets[] __devinitdata = {
610 { /* 0 */
611 .name = "CMD643",
Sergei Shtylyov7accbff2007-05-05 22:03:49 +0200612 .init_setup = init_setup_cmd64x,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 .init_chipset = init_chipset_cmd64x,
614 .init_hwif = init_hwif_cmd64x,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 .autodma = AUTODMA,
Sergei Shtylyov7accbff2007-05-05 22:03:49 +0200616 .enablebits = {{0x00,0x00,0x00}, {0x51,0x08,0x08}},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 .bootable = ON_BOARD,
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200618 .host_flags = IDE_HFLAG_ABUSE_PREFETCH,
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200619 .pio_mask = ATA_PIO5,
Bartlomiej Zolnierkiewicz18137202007-05-10 00:01:07 +0200620 .udma_mask = 0x00, /* no udma */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 },{ /* 1 */
622 .name = "CMD646",
Sergei Shtylyov7accbff2007-05-05 22:03:49 +0200623 .init_setup = init_setup_cmd646,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 .init_chipset = init_chipset_cmd64x,
625 .init_hwif = init_hwif_cmd64x,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 .autodma = AUTODMA,
Sergei Shtylyov7accbff2007-05-05 22:03:49 +0200627 .enablebits = {{0x51,0x04,0x04}, {0x51,0x08,0x08}},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 .bootable = ON_BOARD,
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200629 .host_flags = IDE_HFLAG_ABUSE_PREFETCH,
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200630 .pio_mask = ATA_PIO5,
Bartlomiej Zolnierkiewicz18137202007-05-10 00:01:07 +0200631 .udma_mask = 0x07, /* udma0-2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 },{ /* 2 */
633 .name = "CMD648",
Sergei Shtylyov7accbff2007-05-05 22:03:49 +0200634 .init_setup = init_setup_cmd64x,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 .init_chipset = init_chipset_cmd64x,
636 .init_hwif = init_hwif_cmd64x,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 .autodma = AUTODMA,
Sergei Shtylyov7accbff2007-05-05 22:03:49 +0200638 .enablebits = {{0x51,0x04,0x04}, {0x51,0x08,0x08}},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 .bootable = ON_BOARD,
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200640 .host_flags = IDE_HFLAG_ABUSE_PREFETCH,
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200641 .pio_mask = ATA_PIO5,
Bartlomiej Zolnierkiewicz18137202007-05-10 00:01:07 +0200642 .udma_mask = 0x1f, /* udma0-4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 },{ /* 3 */
644 .name = "CMD649",
Sergei Shtylyov7accbff2007-05-05 22:03:49 +0200645 .init_setup = init_setup_cmd64x,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 .init_chipset = init_chipset_cmd64x,
647 .init_hwif = init_hwif_cmd64x,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 .autodma = AUTODMA,
Sergei Shtylyov7accbff2007-05-05 22:03:49 +0200649 .enablebits = {{0x51,0x04,0x04}, {0x51,0x08,0x08}},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 .bootable = ON_BOARD,
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200651 .host_flags = IDE_HFLAG_ABUSE_PREFETCH,
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200652 .pio_mask = ATA_PIO5,
Bartlomiej Zolnierkiewicz18137202007-05-10 00:01:07 +0200653 .udma_mask = 0x3f, /* udma0-5 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 }
655};
656
Sergei Shtylyov7accbff2007-05-05 22:03:49 +0200657/*
658 * We may have to modify enablebits for PCI0646, so we'd better pass
659 * a local copy of the ide_pci_device_t structure down the call chain...
660 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661static int __devinit cmd64x_init_one(struct pci_dev *dev, const struct pci_device_id *id)
662{
Sergei Shtylyov7accbff2007-05-05 22:03:49 +0200663 ide_pci_device_t d = cmd64x_chipsets[id->driver_data];
664
665 return d.init_setup(dev, &d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
667
668static struct pci_device_id cmd64x_pci_tbl[] = {
669 { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_CMD_643, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
670 { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_CMD_646, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1},
671 { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_CMD_648, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2},
672 { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_CMD_649, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 3},
673 { 0, },
674};
675MODULE_DEVICE_TABLE(pci, cmd64x_pci_tbl);
676
677static struct pci_driver driver = {
678 .name = "CMD64x_IDE",
679 .id_table = cmd64x_pci_tbl,
680 .probe = cmd64x_init_one,
681};
682
Bartlomiej Zolnierkiewicz82ab1ee2007-01-27 13:46:56 +0100683static int __init cmd64x_ide_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
685 return ide_pci_register_driver(&driver);
686}
687
688module_init(cmd64x_ide_init);
689
690MODULE_AUTHOR("Eddie Dost, David Miller, Andre Hedrick");
691MODULE_DESCRIPTION("PCI driver module for CMD64x IDE");
692MODULE_LICENSE("GPL");