]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/ide/legacy/qd65xx.c
ide: PCI BMDMA initialization fixes (take 2)
[net-next-2.6.git] / drivers / ide / legacy / qd65xx.c
CommitLineData
1da177e4
LT
1/*
2 * linux/drivers/ide/legacy/qd65xx.c Version 0.07 Sep 30, 2001
3 *
4 * Copyright (C) 1996-2001 Linus Torvalds & author (see below)
5 */
6
7/*
8 * Version 0.03 Cleaned auto-tune, added probe
9 * Version 0.04 Added second channel tuning
10 * Version 0.05 Enhanced tuning ; added qd6500 support
11 * Version 0.06 Added dos driver's list
12 * Version 0.07 Second channel bug fix
13 *
14 * QDI QD6500/QD6580 EIDE controller fast support
15 *
16 * Please set local bus speed using kernel parameter idebus
17 * for example, "idebus=33" stands for 33Mhz VLbus
18 * To activate controller support, use "ide0=qd65xx"
b6209a90
BZ
19 * To enable tuning, use "hda=autotune hdb=autotune"
20 * To enable 2nd channel tuning (qd6580 only), use "hdc=autotune hdd=autotune"
1da177e4
LT
21 */
22
23/*
24 * Rewritten from the work of Colten Edwards <pje120@cs.usask.ca> by
25 * Samuel Thibault <samuel.thibault@fnac.net>
26 */
27
1da177e4 28#include <linux/module.h>
1da177e4
LT
29#include <linux/types.h>
30#include <linux/kernel.h>
31#include <linux/delay.h>
32#include <linux/timer.h>
33#include <linux/mm.h>
34#include <linux/ioport.h>
35#include <linux/blkdev.h>
36#include <linux/hdreg.h>
37#include <linux/ide.h>
38#include <linux/init.h>
39#include <asm/system.h>
40#include <asm/io.h>
41
42#include "qd65xx.h"
43
44/*
45 * I/O ports are 0x30-0x31 (and 0x32-0x33 for qd6580)
46 * or 0xb0-0xb1 (and 0xb2-0xb3 for qd6580)
47 * -- qd6500 is a single IDE interface
48 * -- qd6580 is a dual IDE interface
49 *
50 * More research on qd6580 being done by willmore@cig.mot.com (David)
51 * More Information given by Petr Soucek (petr@ryston.cz)
52 * http://www.ryston.cz/petr/vlb
53 */
54
55/*
56 * base: Timer1
57 *
58 *
59 * base+0x01: Config (R/O)
60 *
61 * bit 0: ide baseport: 1 = 0x1f0 ; 0 = 0x170 (only useful for qd6500)
62 * bit 1: qd65xx baseport: 1 = 0xb0 ; 0 = 0x30
63 * bit 2: ID3: bus speed: 1 = <=33MHz ; 0 = >33MHz
64 * bit 3: qd6500: 1 = disabled, 0 = enabled
65 * qd6580: 1
66 * upper nibble:
67 * qd6500: 1100
68 * qd6580: either 1010 or 0101
69 *
70 *
71 * base+0x02: Timer2 (qd6580 only)
72 *
73 *
74 * base+0x03: Control (qd6580 only)
75 *
76 * bits 0-3 must always be set 1
77 * bit 4 must be set 1, but is set 0 by dos driver while measuring vlb clock
78 * bit 0 : 1 = Only primary port enabled : channel 0 for hda, channel 1 for hdb
79 * 0 = Primary and Secondary ports enabled : channel 0 for hda & hdb
80 * channel 1 for hdc & hdd
81 * bit 1 : 1 = only disks on primary port
82 * 0 = disks & ATAPI devices on primary port
83 * bit 2-4 : always 0
84 * bit 5 : status, but of what ?
85 * bit 6 : always set 1 by dos driver
86 * bit 7 : set 1 for non-ATAPI devices on primary port
87 * (maybe read-ahead and post-write buffer ?)
88 */
89
90static int timings[4]={-1,-1,-1,-1}; /* stores current timing for each timer */
91
f949820d
BZ
92static DEFINE_SPINLOCK(qd65xx_lock);
93
1da177e4
LT
94static void qd_write_reg (u8 content, unsigned long reg)
95{
96 unsigned long flags;
97
f949820d 98 spin_lock_irqsave(&qd65xx_lock, flags);
1da177e4 99 outb(content,reg);
f949820d 100 spin_unlock_irqrestore(&qd65xx_lock, flags);
1da177e4
LT
101}
102
103static u8 __init qd_read_reg (unsigned long reg)
104{
105 unsigned long flags;
106 u8 read;
107
f949820d 108 spin_lock_irqsave(&qd65xx_lock, flags);
1da177e4 109 read = inb(reg);
f949820d 110 spin_unlock_irqrestore(&qd65xx_lock, flags);
1da177e4
LT
111 return read;
112}
113
114/*
115 * qd_select:
116 *
117 * This routine is invoked from ide.c to prepare for access to a given drive.
118 */
119
120static void qd_select (ide_drive_t *drive)
121{
122 u8 index = (( (QD_TIMREG(drive)) & 0x80 ) >> 7) |
123 (QD_TIMREG(drive) & 0x02);
124
125 if (timings[index] != QD_TIMING(drive))
126 qd_write_reg(timings[index] = QD_TIMING(drive), QD_TIMREG(drive));
127}
128
129/*
130 * qd6500_compute_timing
131 *
132 * computes the timing value where
133 * lower nibble represents active time, in count of VLB clocks
134 * upper nibble represents recovery time, in count of VLB clocks
135 */
136
137static u8 qd6500_compute_timing (ide_hwif_t *hwif, int active_time, int recovery_time)
138{
139 u8 active_cycle,recovery_cycle;
140
141 if (system_bus_clock()<=33) {
142 active_cycle = 9 - IDE_IN(active_time * system_bus_clock() / 1000 + 1, 2, 9);
143 recovery_cycle = 15 - IDE_IN(recovery_time * system_bus_clock() / 1000 + 1, 0, 15);
144 } else {
145 active_cycle = 8 - IDE_IN(active_time * system_bus_clock() / 1000 + 1, 1, 8);
146 recovery_cycle = 18 - IDE_IN(recovery_time * system_bus_clock() / 1000 + 1, 3, 18);
147 }
148
149 return((recovery_cycle<<4) | 0x08 | active_cycle);
150}
151
152/*
153 * qd6580_compute_timing
154 *
155 * idem for qd6580
156 */
157
158static u8 qd6580_compute_timing (int active_time, int recovery_time)
159{
160 u8 active_cycle = 17 - IDE_IN(active_time * system_bus_clock() / 1000 + 1, 2, 17);
161 u8 recovery_cycle = 15 - IDE_IN(recovery_time * system_bus_clock() / 1000 + 1, 2, 15);
162
163 return((recovery_cycle<<4) | active_cycle);
164}
165
166/*
167 * qd_find_disk_type
168 *
169 * tries to find timing from dos driver's table
170 */
171
172static int qd_find_disk_type (ide_drive_t *drive,
173 int *active_time, int *recovery_time)
174{
175 struct qd65xx_timing_s *p;
176 char model[40];
177
178 if (!*drive->id->model) return 0;
179
180 strncpy(model,drive->id->model,40);
181 ide_fixstring(model,40,1); /* byte-swap */
182
183 for (p = qd65xx_timing ; p->offset != -1 ; p++) {
184 if (!strncmp(p->model, model+p->offset, 4)) {
185 printk(KERN_DEBUG "%s: listed !\n", drive->name);
186 *active_time = p->active;
187 *recovery_time = p->recovery;
188 return 1;
189 }
190 }
191 return 0;
192}
193
194/*
195 * qd_timing_ok:
196 *
197 * check whether timings don't conflict
198 */
199
200static int qd_timing_ok (ide_drive_t drives[])
201{
202 return (IDE_IMPLY(drives[0].present && drives[1].present,
203 IDE_IMPLY(QD_TIMREG(drives) == QD_TIMREG(drives+1),
204 QD_TIMING(drives) == QD_TIMING(drives+1))));
205 /* if same timing register, must be same timing */
206}
207
208/*
209 * qd_set_timing:
210 *
211 * records the timing, and enables selectproc as needed
212 */
213
214static void qd_set_timing (ide_drive_t *drive, u8 timing)
215{
216 ide_hwif_t *hwif = HWIF(drive);
217
218 drive->drive_data &= 0xff00;
219 drive->drive_data |= timing;
220 if (qd_timing_ok(hwif->drives)) {
221 qd_select(drive); /* selects once */
222 hwif->selectproc = NULL;
223 } else
224 hwif->selectproc = &qd_select;
225
226 printk(KERN_DEBUG "%s: %#x\n", drive->name, timing);
227}
228
26bcb879 229static void qd6500_set_pio_mode(ide_drive_t *drive, const u8 pio)
1da177e4
LT
230{
231 int active_time = 175;
232 int recovery_time = 415; /* worst case values from the dos driver */
233
26bcb879
BZ
234 /*
235 * FIXME: use "pio" value
236 */
1da177e4
LT
237 if (drive->id && !qd_find_disk_type(drive, &active_time, &recovery_time)
238 && drive->id->tPIO && (drive->id->field_valid & 0x02)
239 && drive->id->eide_pio >= 240) {
240
241 printk(KERN_INFO "%s: PIO mode%d\n", drive->name,
242 drive->id->tPIO);
243 active_time = 110;
244 recovery_time = drive->id->eide_pio - 120;
245 }
246
247 qd_set_timing(drive, qd6500_compute_timing(HWIF(drive), active_time, recovery_time));
248}
249
26bcb879 250static void qd6580_set_pio_mode(ide_drive_t *drive, const u8 pio)
1da177e4 251{
1da177e4 252 int base = HWIF(drive)->select_data;
7dd00083 253 unsigned int cycle_time;
1da177e4
LT
254 int active_time = 175;
255 int recovery_time = 415; /* worst case values from the dos driver */
256
257 if (drive->id && !qd_find_disk_type(drive, &active_time, &recovery_time)) {
7dd00083 258 cycle_time = ide_pio_cycle_time(drive, pio);
1da177e4
LT
259
260 switch (pio) {
261 case 0: break;
262 case 3:
7dd00083 263 if (cycle_time >= 110) {
1da177e4 264 active_time = 86;
7dd00083 265 recovery_time = cycle_time - 102;
1da177e4
LT
266 } else
267 printk(KERN_WARNING "%s: Strange recovery time !\n",drive->name);
268 break;
269 case 4:
7dd00083 270 if (cycle_time >= 69) {
1da177e4 271 active_time = 70;
7dd00083 272 recovery_time = cycle_time - 61;
1da177e4
LT
273 } else
274 printk(KERN_WARNING "%s: Strange recovery time !\n",drive->name);
275 break;
276 default:
7dd00083 277 if (cycle_time >= 180) {
1da177e4 278 active_time = 110;
7dd00083 279 recovery_time = cycle_time - 120;
1da177e4
LT
280 } else {
281 active_time = ide_pio_timings[pio].active_time;
7dd00083 282 recovery_time = cycle_time - active_time;
1da177e4
LT
283 }
284 }
285 printk(KERN_INFO "%s: PIO mode%d\n", drive->name,pio);
286 }
287
288 if (!HWIF(drive)->channel && drive->media != ide_disk) {
289 qd_write_reg(0x5f, QD_CONTROL_PORT);
290 printk(KERN_WARNING "%s: ATAPI: disabled read-ahead FIFO "
291 "and post-write buffer on %s.\n",
292 drive->name, HWIF(drive)->name);
293 }
294
295 qd_set_timing(drive, qd6580_compute_timing(active_time, recovery_time));
296}
297
298/*
299 * qd_testreg
300 *
301 * tests if the given port is a register
302 */
303
304static int __init qd_testreg(int port)
305{
1da177e4 306 unsigned long flags;
f949820d 307 u8 savereg, readreg;
1da177e4 308
f949820d 309 spin_lock_irqsave(&qd65xx_lock, flags);
1da177e4
LT
310 savereg = inb_p(port);
311 outb_p(QD_TESTVAL, port); /* safe value */
312 readreg = inb_p(port);
313 outb(savereg, port);
f949820d 314 spin_unlock_irqrestore(&qd65xx_lock, flags);
1da177e4
LT
315
316 if (savereg == QD_TESTVAL) {
317 printk(KERN_ERR "Outch ! the probe for qd65xx isn't reliable !\n");
318 printk(KERN_ERR "Please contact maintainers to tell about your hardware\n");
319 printk(KERN_ERR "Assuming qd65xx is not present.\n");
320 return 1;
321 }
322
323 return (readreg != QD_TESTVAL);
324}
325
326/*
327 * qd_setup:
328 *
329 * called to setup an ata channel : adjusts attributes & links for tuning
330 */
331
332static void __init qd_setup(ide_hwif_t *hwif, int base, int config,
26bcb879 333 unsigned int data0, unsigned int data1)
1da177e4
LT
334{
335 hwif->chipset = ide_qd65xx;
336 hwif->channel = hwif->index;
337 hwif->select_data = base;
338 hwif->config_data = config;
339 hwif->drives[0].drive_data = data0;
340 hwif->drives[1].drive_data = data1;
341 hwif->drives[0].io_32bit =
342 hwif->drives[1].io_32bit = 1;
4099d143 343 hwif->pio_mask = ATA_PIO4;
1da177e4
LT
344}
345
346/*
347 * qd_unsetup:
348 *
349 * called to unsetup an ata channel : back to default values, unlinks tuning
350 */
351/*
352static void __exit qd_unsetup(ide_hwif_t *hwif)
353{
354 u8 config = hwif->config_data;
355 int base = hwif->select_data;
26bcb879 356 void *set_pio_mode = (void *)hwif->set_pio_mode;
1da177e4
LT
357
358 if (hwif->chipset != ide_qd65xx)
359 return;
360
361 printk(KERN_NOTICE "%s: back to defaults\n", hwif->name);
362
363 hwif->selectproc = NULL;
26bcb879 364 hwif->set_pio_mode = NULL;
1da177e4 365
26bcb879 366 if (set_pio_mode == (void *)qd6500_set_pio_mode) {
1da177e4
LT
367 // will do it for both
368 qd_write_reg(QD6500_DEF_DATA, QD_TIMREG(&hwif->drives[0]));
26bcb879 369 } else if (set_pio_mode == (void *)qd6580_set_pio_mode) {
1da177e4
LT
370 if (QD_CONTROL(hwif) & QD_CONTR_SEC_DISABLED) {
371 qd_write_reg(QD6580_DEF_DATA, QD_TIMREG(&hwif->drives[0]));
372 qd_write_reg(QD6580_DEF_DATA2, QD_TIMREG(&hwif->drives[1]));
373 } else {
374 qd_write_reg(hwif->channel ? QD6580_DEF_DATA2 : QD6580_DEF_DATA, QD_TIMREG(&hwif->drives[0]));
375 }
376 } else {
377 printk(KERN_WARNING "Unknown qd65xx tuning fonction !\n");
378 printk(KERN_WARNING "keeping settings !\n");
379 }
380}
381*/
382
383/*
384 * qd_probe:
385 *
386 * looks at the specified baseport, and if qd found, registers & initialises it
387 * return 1 if another qd may be probed
388 */
389
390static int __init qd_probe(int base)
391{
392 ide_hwif_t *hwif;
8447d9d5 393 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
1da177e4
LT
394 u8 config;
395 u8 unit;
396
397 config = qd_read_reg(QD_CONFIG_PORT);
398
399 if (! ((config & QD_CONFIG_BASEPORT) >> 1 == (base == 0xb0)) )
400 return 1;
401
402 unit = ! (config & QD_CONFIG_IDE_BASEPORT);
403
404 if ((config & 0xf0) == QD_CONFIG_QD6500) {
405
406 if (qd_testreg(base)) return 1; /* bad register */
407
408 /* qd6500 found */
409
410 hwif = &ide_hwifs[unit];
411 printk(KERN_NOTICE "%s: qd6500 at %#x\n", hwif->name, base);
412 printk(KERN_DEBUG "qd6500: config=%#x, ID3=%u\n",
413 config, QD_ID3);
414
415 if (config & QD_CONFIG_DISABLED) {
416 printk(KERN_WARNING "qd6500 is disabled !\n");
417 return 1;
418 }
419
26bcb879
BZ
420 qd_setup(hwif, base, config, QD6500_DEF_DATA, QD6500_DEF_DATA);
421
422 hwif->set_pio_mode = &qd6500_set_pio_mode;
423
8447d9d5 424 idx[0] = unit;
1da177e4 425
8447d9d5 426 ide_device_add(idx);
1da177e4
LT
427
428 return 1;
429 }
430
431 if (((config & 0xf0) == QD_CONFIG_QD6580_A) ||
432 ((config & 0xf0) == QD_CONFIG_QD6580_B)) {
433
434 u8 control;
435
436 if (qd_testreg(base) || qd_testreg(base+0x02)) return 1;
437 /* bad registers */
438
439 /* qd6580 found */
440
441 control = qd_read_reg(QD_CONTROL_PORT);
442
443 printk(KERN_NOTICE "qd6580 at %#x\n", base);
444 printk(KERN_DEBUG "qd6580: config=%#x, control=%#x, ID3=%u\n",
445 config, control, QD_ID3);
446
447 if (control & QD_CONTR_SEC_DISABLED) {
448 /* secondary disabled */
449
450 hwif = &ide_hwifs[unit];
451 printk(KERN_INFO "%s: qd6580: single IDE board\n",
452 hwif->name);
453 qd_setup(hwif, base, config | (control << 8),
26bcb879
BZ
454 QD6580_DEF_DATA, QD6580_DEF_DATA2);
455
456 hwif->set_pio_mode = &qd6580_set_pio_mode;
457
8447d9d5 458 idx[0] = unit;
26bcb879 459
8447d9d5 460 ide_device_add(idx);
1da177e4 461
8447d9d5 462 qd_write_reg(QD_DEF_CONTR, QD_CONTROL_PORT);
1da177e4
LT
463
464 return 1;
465 } else {
466 ide_hwif_t *mate;
467
468 hwif = &ide_hwifs[0];
469 mate = &ide_hwifs[1];
470 /* secondary enabled */
471 printk(KERN_INFO "%s&%s: qd6580: dual IDE board\n",
472 hwif->name, mate->name);
473
474 qd_setup(hwif, base, config | (control << 8),
26bcb879
BZ
475 QD6580_DEF_DATA, QD6580_DEF_DATA);
476
477 hwif->set_pio_mode = &qd6580_set_pio_mode;
478
1da177e4 479 qd_setup(mate, base, config | (control << 8),
26bcb879
BZ
480 QD6580_DEF_DATA2, QD6580_DEF_DATA2);
481
482 mate->set_pio_mode = &qd6580_set_pio_mode;
483
8447d9d5
BZ
484 idx[0] = 0;
485 idx[1] = 1;
26bcb879 486
8447d9d5 487 ide_device_add(idx);
1da177e4 488
8447d9d5 489 qd_write_reg(QD_DEF_CONTR, QD_CONTROL_PORT);
1da177e4
LT
490
491 return 0; /* no other qd65xx possible */
492 }
493 }
494 /* no qd65xx found */
495 return 1;
496}
497
84913882
BZ
498int probe_qd65xx = 0;
499
500module_param_named(probe, probe_qd65xx, bool, 0);
501MODULE_PARM_DESC(probe, "probe for QD65xx chipsets");
502
1da177e4
LT
503/* Can be called directly from ide.c. */
504int __init qd65xx_init(void)
505{
84913882
BZ
506 if (probe_qd65xx == 0)
507 return -ENODEV;
508
1da177e4
LT
509 if (qd_probe(0x30))
510 qd_probe(0xb0);
511 if (ide_hwifs[0].chipset != ide_qd65xx &&
512 ide_hwifs[1].chipset != ide_qd65xx)
513 return -ENODEV;
514 return 0;
515}
516
517#ifdef MODULE
518module_init(qd65xx_init);
519#endif
520
521MODULE_AUTHOR("Samuel Thibault");
522MODULE_DESCRIPTION("support of qd65xx vlb ide chipset");
523MODULE_LICENSE("GPL");