]> git.karo-electronics.de Git - mv-sheeva.git/blob - drivers/ide/ide-iops.c
ide: move xfer mode tuning code to ide-xfer-mode.c
[mv-sheeva.git] / drivers / ide / ide-iops.c
1 /*
2  *  Copyright (C) 2000-2002     Andre Hedrick <andre@linux-ide.org>
3  *  Copyright (C) 2003          Red Hat
4  *
5  */
6
7 #include <linux/module.h>
8 #include <linux/types.h>
9 #include <linux/string.h>
10 #include <linux/kernel.h>
11 #include <linux/timer.h>
12 #include <linux/mm.h>
13 #include <linux/interrupt.h>
14 #include <linux/major.h>
15 #include <linux/errno.h>
16 #include <linux/genhd.h>
17 #include <linux/blkpg.h>
18 #include <linux/slab.h>
19 #include <linux/pci.h>
20 #include <linux/delay.h>
21 #include <linux/ide.h>
22 #include <linux/bitops.h>
23 #include <linux/nmi.h>
24
25 #include <asm/byteorder.h>
26 #include <asm/irq.h>
27 #include <asm/uaccess.h>
28 #include <asm/io.h>
29
30 /*
31  *      Conventional PIO operations for ATA devices
32  */
33
34 static u8 ide_inb (unsigned long port)
35 {
36         return (u8) inb(port);
37 }
38
39 static void ide_outb (u8 val, unsigned long port)
40 {
41         outb(val, port);
42 }
43
44 /*
45  *      MMIO operations, typically used for SATA controllers
46  */
47
48 static u8 ide_mm_inb (unsigned long port)
49 {
50         return (u8) readb((void __iomem *) port);
51 }
52
53 static void ide_mm_outb (u8 value, unsigned long port)
54 {
55         writeb(value, (void __iomem *) port);
56 }
57
58 void SELECT_DRIVE (ide_drive_t *drive)
59 {
60         ide_hwif_t *hwif = drive->hwif;
61         const struct ide_port_ops *port_ops = hwif->port_ops;
62         ide_task_t task;
63
64         if (port_ops && port_ops->selectproc)
65                 port_ops->selectproc(drive);
66
67         memset(&task, 0, sizeof(task));
68         task.tf_flags = IDE_TFLAG_OUT_DEVICE;
69
70         drive->hwif->tp_ops->tf_load(drive, &task);
71 }
72
73 void SELECT_MASK(ide_drive_t *drive, int mask)
74 {
75         const struct ide_port_ops *port_ops = drive->hwif->port_ops;
76
77         if (port_ops && port_ops->maskproc)
78                 port_ops->maskproc(drive, mask);
79 }
80
81 void ide_exec_command(ide_hwif_t *hwif, u8 cmd)
82 {
83         if (hwif->host_flags & IDE_HFLAG_MMIO)
84                 writeb(cmd, (void __iomem *)hwif->io_ports.command_addr);
85         else
86                 outb(cmd, hwif->io_ports.command_addr);
87 }
88 EXPORT_SYMBOL_GPL(ide_exec_command);
89
90 u8 ide_read_status(ide_hwif_t *hwif)
91 {
92         if (hwif->host_flags & IDE_HFLAG_MMIO)
93                 return readb((void __iomem *)hwif->io_ports.status_addr);
94         else
95                 return inb(hwif->io_ports.status_addr);
96 }
97 EXPORT_SYMBOL_GPL(ide_read_status);
98
99 u8 ide_read_altstatus(ide_hwif_t *hwif)
100 {
101         if (hwif->host_flags & IDE_HFLAG_MMIO)
102                 return readb((void __iomem *)hwif->io_ports.ctl_addr);
103         else
104                 return inb(hwif->io_ports.ctl_addr);
105 }
106 EXPORT_SYMBOL_GPL(ide_read_altstatus);
107
108 void ide_set_irq(ide_hwif_t *hwif, int on)
109 {
110         u8 ctl = ATA_DEVCTL_OBS;
111
112         if (on == 4) { /* hack for SRST */
113                 ctl |= 4;
114                 on &= ~4;
115         }
116
117         ctl |= on ? 0 : 2;
118
119         if (hwif->host_flags & IDE_HFLAG_MMIO)
120                 writeb(ctl, (void __iomem *)hwif->io_ports.ctl_addr);
121         else
122                 outb(ctl, hwif->io_ports.ctl_addr);
123 }
124 EXPORT_SYMBOL_GPL(ide_set_irq);
125
126 void ide_tf_load(ide_drive_t *drive, ide_task_t *task)
127 {
128         ide_hwif_t *hwif = drive->hwif;
129         struct ide_io_ports *io_ports = &hwif->io_ports;
130         struct ide_taskfile *tf = &task->tf;
131         void (*tf_outb)(u8 addr, unsigned long port);
132         u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
133         u8 HIHI = (task->tf_flags & IDE_TFLAG_LBA48) ? 0xE0 : 0xEF;
134
135         if (mmio)
136                 tf_outb = ide_mm_outb;
137         else
138                 tf_outb = ide_outb;
139
140         if (task->tf_flags & IDE_TFLAG_FLAGGED)
141                 HIHI = 0xFF;
142
143         if (task->tf_flags & IDE_TFLAG_OUT_DATA) {
144                 u16 data = (tf->hob_data << 8) | tf->data;
145
146                 if (mmio)
147                         writew(data, (void __iomem *)io_ports->data_addr);
148                 else
149                         outw(data, io_ports->data_addr);
150         }
151
152         if (task->tf_flags & IDE_TFLAG_OUT_HOB_FEATURE)
153                 tf_outb(tf->hob_feature, io_ports->feature_addr);
154         if (task->tf_flags & IDE_TFLAG_OUT_HOB_NSECT)
155                 tf_outb(tf->hob_nsect, io_ports->nsect_addr);
156         if (task->tf_flags & IDE_TFLAG_OUT_HOB_LBAL)
157                 tf_outb(tf->hob_lbal, io_ports->lbal_addr);
158         if (task->tf_flags & IDE_TFLAG_OUT_HOB_LBAM)
159                 tf_outb(tf->hob_lbam, io_ports->lbam_addr);
160         if (task->tf_flags & IDE_TFLAG_OUT_HOB_LBAH)
161                 tf_outb(tf->hob_lbah, io_ports->lbah_addr);
162
163         if (task->tf_flags & IDE_TFLAG_OUT_FEATURE)
164                 tf_outb(tf->feature, io_ports->feature_addr);
165         if (task->tf_flags & IDE_TFLAG_OUT_NSECT)
166                 tf_outb(tf->nsect, io_ports->nsect_addr);
167         if (task->tf_flags & IDE_TFLAG_OUT_LBAL)
168                 tf_outb(tf->lbal, io_ports->lbal_addr);
169         if (task->tf_flags & IDE_TFLAG_OUT_LBAM)
170                 tf_outb(tf->lbam, io_ports->lbam_addr);
171         if (task->tf_flags & IDE_TFLAG_OUT_LBAH)
172                 tf_outb(tf->lbah, io_ports->lbah_addr);
173
174         if (task->tf_flags & IDE_TFLAG_OUT_DEVICE)
175                 tf_outb((tf->device & HIHI) | drive->select,
176                          io_ports->device_addr);
177 }
178 EXPORT_SYMBOL_GPL(ide_tf_load);
179
180 void ide_tf_read(ide_drive_t *drive, ide_task_t *task)
181 {
182         ide_hwif_t *hwif = drive->hwif;
183         struct ide_io_ports *io_ports = &hwif->io_ports;
184         struct ide_taskfile *tf = &task->tf;
185         void (*tf_outb)(u8 addr, unsigned long port);
186         u8 (*tf_inb)(unsigned long port);
187         u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
188
189         if (mmio) {
190                 tf_outb = ide_mm_outb;
191                 tf_inb  = ide_mm_inb;
192         } else {
193                 tf_outb = ide_outb;
194                 tf_inb  = ide_inb;
195         }
196
197         if (task->tf_flags & IDE_TFLAG_IN_DATA) {
198                 u16 data;
199
200                 if (mmio)
201                         data = readw((void __iomem *)io_ports->data_addr);
202                 else
203                         data = inw(io_ports->data_addr);
204
205                 tf->data = data & 0xff;
206                 tf->hob_data = (data >> 8) & 0xff;
207         }
208
209         /* be sure we're looking at the low order bits */
210         tf_outb(ATA_DEVCTL_OBS & ~0x80, io_ports->ctl_addr);
211
212         if (task->tf_flags & IDE_TFLAG_IN_FEATURE)
213                 tf->feature = tf_inb(io_ports->feature_addr);
214         if (task->tf_flags & IDE_TFLAG_IN_NSECT)
215                 tf->nsect  = tf_inb(io_ports->nsect_addr);
216         if (task->tf_flags & IDE_TFLAG_IN_LBAL)
217                 tf->lbal   = tf_inb(io_ports->lbal_addr);
218         if (task->tf_flags & IDE_TFLAG_IN_LBAM)
219                 tf->lbam   = tf_inb(io_ports->lbam_addr);
220         if (task->tf_flags & IDE_TFLAG_IN_LBAH)
221                 tf->lbah   = tf_inb(io_ports->lbah_addr);
222         if (task->tf_flags & IDE_TFLAG_IN_DEVICE)
223                 tf->device = tf_inb(io_ports->device_addr);
224
225         if (task->tf_flags & IDE_TFLAG_LBA48) {
226                 tf_outb(ATA_DEVCTL_OBS | 0x80, io_ports->ctl_addr);
227
228                 if (task->tf_flags & IDE_TFLAG_IN_HOB_FEATURE)
229                         tf->hob_feature = tf_inb(io_ports->feature_addr);
230                 if (task->tf_flags & IDE_TFLAG_IN_HOB_NSECT)
231                         tf->hob_nsect   = tf_inb(io_ports->nsect_addr);
232                 if (task->tf_flags & IDE_TFLAG_IN_HOB_LBAL)
233                         tf->hob_lbal    = tf_inb(io_ports->lbal_addr);
234                 if (task->tf_flags & IDE_TFLAG_IN_HOB_LBAM)
235                         tf->hob_lbam    = tf_inb(io_ports->lbam_addr);
236                 if (task->tf_flags & IDE_TFLAG_IN_HOB_LBAH)
237                         tf->hob_lbah    = tf_inb(io_ports->lbah_addr);
238         }
239 }
240 EXPORT_SYMBOL_GPL(ide_tf_read);
241
242 /*
243  * Some localbus EIDE interfaces require a special access sequence
244  * when using 32-bit I/O instructions to transfer data.  We call this
245  * the "vlb_sync" sequence, which consists of three successive reads
246  * of the sector count register location, with interrupts disabled
247  * to ensure that the reads all happen together.
248  */
249 static void ata_vlb_sync(unsigned long port)
250 {
251         (void)inb(port);
252         (void)inb(port);
253         (void)inb(port);
254 }
255
256 /*
257  * This is used for most PIO data transfers *from* the IDE interface
258  *
259  * These routines will round up any request for an odd number of bytes,
260  * so if an odd len is specified, be sure that there's at least one
261  * extra byte allocated for the buffer.
262  */
263 void ide_input_data(ide_drive_t *drive, struct request *rq, void *buf,
264                     unsigned int len)
265 {
266         ide_hwif_t *hwif = drive->hwif;
267         struct ide_io_ports *io_ports = &hwif->io_ports;
268         unsigned long data_addr = io_ports->data_addr;
269         u8 io_32bit = drive->io_32bit;
270         u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
271
272         len++;
273
274         if (io_32bit) {
275                 unsigned long uninitialized_var(flags);
276
277                 if ((io_32bit & 2) && !mmio) {
278                         local_irq_save(flags);
279                         ata_vlb_sync(io_ports->nsect_addr);
280                 }
281
282                 if (mmio)
283                         __ide_mm_insl((void __iomem *)data_addr, buf, len / 4);
284                 else
285                         insl(data_addr, buf, len / 4);
286
287                 if ((io_32bit & 2) && !mmio)
288                         local_irq_restore(flags);
289
290                 if ((len & 3) >= 2) {
291                         if (mmio)
292                                 __ide_mm_insw((void __iomem *)data_addr,
293                                                 (u8 *)buf + (len & ~3), 1);
294                         else
295                                 insw(data_addr, (u8 *)buf + (len & ~3), 1);
296                 }
297         } else {
298                 if (mmio)
299                         __ide_mm_insw((void __iomem *)data_addr, buf, len / 2);
300                 else
301                         insw(data_addr, buf, len / 2);
302         }
303 }
304 EXPORT_SYMBOL_GPL(ide_input_data);
305
306 /*
307  * This is used for most PIO data transfers *to* the IDE interface
308  */
309 void ide_output_data(ide_drive_t *drive, struct request *rq, void *buf,
310                      unsigned int len)
311 {
312         ide_hwif_t *hwif = drive->hwif;
313         struct ide_io_ports *io_ports = &hwif->io_ports;
314         unsigned long data_addr = io_ports->data_addr;
315         u8 io_32bit = drive->io_32bit;
316         u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
317
318         len++;
319
320         if (io_32bit) {
321                 unsigned long uninitialized_var(flags);
322
323                 if ((io_32bit & 2) && !mmio) {
324                         local_irq_save(flags);
325                         ata_vlb_sync(io_ports->nsect_addr);
326                 }
327
328                 if (mmio)
329                         __ide_mm_outsl((void __iomem *)data_addr, buf, len / 4);
330                 else
331                         outsl(data_addr, buf, len / 4);
332
333                 if ((io_32bit & 2) && !mmio)
334                         local_irq_restore(flags);
335
336                 if ((len & 3) >= 2) {
337                         if (mmio)
338                                 __ide_mm_outsw((void __iomem *)data_addr,
339                                                  (u8 *)buf + (len & ~3), 1);
340                         else
341                                 outsw(data_addr, (u8 *)buf + (len & ~3), 1);
342                 }
343         } else {
344                 if (mmio)
345                         __ide_mm_outsw((void __iomem *)data_addr, buf, len / 2);
346                 else
347                         outsw(data_addr, buf, len / 2);
348         }
349 }
350 EXPORT_SYMBOL_GPL(ide_output_data);
351
352 u8 ide_read_error(ide_drive_t *drive)
353 {
354         ide_task_t task;
355
356         memset(&task, 0, sizeof(task));
357         task.tf_flags = IDE_TFLAG_IN_FEATURE;
358
359         drive->hwif->tp_ops->tf_read(drive, &task);
360
361         return task.tf.error;
362 }
363 EXPORT_SYMBOL_GPL(ide_read_error);
364
365 void ide_read_bcount_and_ireason(ide_drive_t *drive, u16 *bcount, u8 *ireason)
366 {
367         ide_task_t task;
368
369         memset(&task, 0, sizeof(task));
370         task.tf_flags = IDE_TFLAG_IN_LBAH | IDE_TFLAG_IN_LBAM |
371                         IDE_TFLAG_IN_NSECT;
372
373         drive->hwif->tp_ops->tf_read(drive, &task);
374
375         *bcount = (task.tf.lbah << 8) | task.tf.lbam;
376         *ireason = task.tf.nsect & 3;
377 }
378 EXPORT_SYMBOL_GPL(ide_read_bcount_and_ireason);
379
380 const struct ide_tp_ops default_tp_ops = {
381         .exec_command           = ide_exec_command,
382         .read_status            = ide_read_status,
383         .read_altstatus         = ide_read_altstatus,
384
385         .set_irq                = ide_set_irq,
386
387         .tf_load                = ide_tf_load,
388         .tf_read                = ide_tf_read,
389
390         .input_data             = ide_input_data,
391         .output_data            = ide_output_data,
392 };
393
394 void ide_fix_driveid(u16 *id)
395 {
396 #ifndef __LITTLE_ENDIAN
397 # ifdef __BIG_ENDIAN
398         int i;
399
400         for (i = 0; i < 256; i++)
401                 id[i] = __le16_to_cpu(id[i]);
402 # else
403 #  error "Please fix <asm/byteorder.h>"
404 # endif
405 #endif
406 }
407
408 /*
409  * ide_fixstring() cleans up and (optionally) byte-swaps a text string,
410  * removing leading/trailing blanks and compressing internal blanks.
411  * It is primarily used to tidy up the model name/number fields as
412  * returned by the ATA_CMD_ID_ATA[PI] commands.
413  */
414
415 void ide_fixstring (u8 *s, const int bytecount, const int byteswap)
416 {
417         u8 *p, *end = &s[bytecount & ~1]; /* bytecount must be even */
418
419         if (byteswap) {
420                 /* convert from big-endian to host byte order */
421                 for (p = s ; p != end ; p += 2)
422                         be16_to_cpus((u16 *) p);
423         }
424
425         /* strip leading blanks */
426         p = s;
427         while (s != end && *s == ' ')
428                 ++s;
429         /* compress internal blanks and strip trailing blanks */
430         while (s != end && *s) {
431                 if (*s++ != ' ' || (s != end && *s && *s != ' '))
432                         *p++ = *(s-1);
433         }
434         /* wipe out trailing garbage */
435         while (p != end)
436                 *p++ = '\0';
437 }
438
439 EXPORT_SYMBOL(ide_fixstring);
440
441 /*
442  * This routine busy-waits for the drive status to be not "busy".
443  * It then checks the status for all of the "good" bits and none
444  * of the "bad" bits, and if all is okay it returns 0.  All other
445  * cases return error -- caller may then invoke ide_error().
446  *
447  * This routine should get fixed to not hog the cpu during extra long waits..
448  * That could be done by busy-waiting for the first jiffy or two, and then
449  * setting a timer to wake up at half second intervals thereafter,
450  * until timeout is achieved, before timing out.
451  */
452 static int __ide_wait_stat(ide_drive_t *drive, u8 good, u8 bad, unsigned long timeout, u8 *rstat)
453 {
454         ide_hwif_t *hwif = drive->hwif;
455         const struct ide_tp_ops *tp_ops = hwif->tp_ops;
456         unsigned long flags;
457         int i;
458         u8 stat;
459
460         udelay(1);      /* spec allows drive 400ns to assert "BUSY" */
461         stat = tp_ops->read_status(hwif);
462
463         if (stat & ATA_BUSY) {
464                 local_save_flags(flags);
465                 local_irq_enable_in_hardirq();
466                 timeout += jiffies;
467                 while ((stat = tp_ops->read_status(hwif)) & ATA_BUSY) {
468                         if (time_after(jiffies, timeout)) {
469                                 /*
470                                  * One last read after the timeout in case
471                                  * heavy interrupt load made us not make any
472                                  * progress during the timeout..
473                                  */
474                                 stat = tp_ops->read_status(hwif);
475                                 if ((stat & ATA_BUSY) == 0)
476                                         break;
477
478                                 local_irq_restore(flags);
479                                 *rstat = stat;
480                                 return -EBUSY;
481                         }
482                 }
483                 local_irq_restore(flags);
484         }
485         /*
486          * Allow status to settle, then read it again.
487          * A few rare drives vastly violate the 400ns spec here,
488          * so we'll wait up to 10usec for a "good" status
489          * rather than expensively fail things immediately.
490          * This fix courtesy of Matthew Faupel & Niccolo Rigacci.
491          */
492         for (i = 0; i < 10; i++) {
493                 udelay(1);
494                 stat = tp_ops->read_status(hwif);
495
496                 if (OK_STAT(stat, good, bad)) {
497                         *rstat = stat;
498                         return 0;
499                 }
500         }
501         *rstat = stat;
502         return -EFAULT;
503 }
504
505 /*
506  * In case of error returns error value after doing "*startstop = ide_error()".
507  * The caller should return the updated value of "startstop" in this case,
508  * "startstop" is unchanged when the function returns 0.
509  */
510 int ide_wait_stat(ide_startstop_t *startstop, ide_drive_t *drive, u8 good, u8 bad, unsigned long timeout)
511 {
512         int err;
513         u8 stat;
514
515         /* bail early if we've exceeded max_failures */
516         if (drive->max_failures && (drive->failures > drive->max_failures)) {
517                 *startstop = ide_stopped;
518                 return 1;
519         }
520
521         err = __ide_wait_stat(drive, good, bad, timeout, &stat);
522
523         if (err) {
524                 char *s = (err == -EBUSY) ? "status timeout" : "status error";
525                 *startstop = ide_error(drive, s, stat);
526         }
527
528         return err;
529 }
530
531 EXPORT_SYMBOL(ide_wait_stat);
532
533 /**
534  *      ide_in_drive_list       -       look for drive in black/white list
535  *      @id: drive identifier
536  *      @table: list to inspect
537  *
538  *      Look for a drive in the blacklist and the whitelist tables
539  *      Returns 1 if the drive is found in the table.
540  */
541
542 int ide_in_drive_list(u16 *id, const struct drive_list_entry *table)
543 {
544         for ( ; table->id_model; table++)
545                 if ((!strcmp(table->id_model, (char *)&id[ATA_ID_PROD])) &&
546                     (!table->id_firmware ||
547                      strstr((char *)&id[ATA_ID_FW_REV], table->id_firmware)))
548                         return 1;
549         return 0;
550 }
551
552 EXPORT_SYMBOL_GPL(ide_in_drive_list);
553
554 /*
555  * Early UDMA66 devices don't set bit14 to 1, only bit13 is valid.
556  * We list them here and depend on the device side cable detection for them.
557  *
558  * Some optical devices with the buggy firmwares have the same problem.
559  */
560 static const struct drive_list_entry ivb_list[] = {
561         { "QUANTUM FIREBALLlct10 05"    , "A03.0900"    },
562         { "TSSTcorp CDDVDW SH-S202J"    , "SB00"        },
563         { "TSSTcorp CDDVDW SH-S202J"    , "SB01"        },
564         { "TSSTcorp CDDVDW SH-S202N"    , "SB00"        },
565         { "TSSTcorp CDDVDW SH-S202N"    , "SB01"        },
566         { "TSSTcorp CDDVDW SH-S202H"    , "SB00"        },
567         { "TSSTcorp CDDVDW SH-S202H"    , "SB01"        },
568         { "SAMSUNG SP0822N"             , "WA100-10"    },
569         { NULL                          , NULL          }
570 };
571
572 /*
573  *  All hosts that use the 80c ribbon must use!
574  *  The name is derived from upper byte of word 93 and the 80c ribbon.
575  */
576 u8 eighty_ninty_three (ide_drive_t *drive)
577 {
578         ide_hwif_t *hwif = drive->hwif;
579         u16 *id = drive->id;
580         int ivb = ide_in_drive_list(id, ivb_list);
581
582         if (hwif->cbl == ATA_CBL_PATA40_SHORT)
583                 return 1;
584
585         if (ivb)
586                 printk(KERN_DEBUG "%s: skipping word 93 validity check\n",
587                                   drive->name);
588
589         if (ata_id_is_sata(id) && !ivb)
590                 return 1;
591
592         if (hwif->cbl != ATA_CBL_PATA80 && !ivb)
593                 goto no_80w;
594
595         /*
596          * FIXME:
597          * - change master/slave IDENTIFY order
598          * - force bit13 (80c cable present) check also for !ivb devices
599          *   (unless the slave device is pre-ATA3)
600          */
601         if ((id[ATA_ID_HW_CONFIG] & 0x4000) ||
602             (ivb && (id[ATA_ID_HW_CONFIG] & 0x2000)))
603                 return 1;
604
605 no_80w:
606         if (drive->dev_flags & IDE_DFLAG_UDMA33_WARNED)
607                 return 0;
608
609         printk(KERN_WARNING "%s: %s side 80-wire cable detection failed, "
610                             "limiting max speed to UDMA33\n",
611                             drive->name,
612                             hwif->cbl == ATA_CBL_PATA80 ? "drive" : "host");
613
614         drive->dev_flags |= IDE_DFLAG_UDMA33_WARNED;
615
616         return 0;
617 }
618
619 int ide_driveid_update(ide_drive_t *drive)
620 {
621         ide_hwif_t *hwif = drive->hwif;
622         const struct ide_tp_ops *tp_ops = hwif->tp_ops;
623         u16 *id;
624         unsigned long flags;
625         u8 stat;
626
627         /*
628          * Re-read drive->id for possible DMA mode
629          * change (copied from ide-probe.c)
630          */
631
632         SELECT_MASK(drive, 1);
633         tp_ops->set_irq(hwif, 0);
634         msleep(50);
635         tp_ops->exec_command(hwif, ATA_CMD_ID_ATA);
636
637         if (ide_busy_sleep(hwif, WAIT_WORSTCASE, 1)) {
638                 SELECT_MASK(drive, 0);
639                 return 0;
640         }
641
642         msleep(50);     /* wait for IRQ and ATA_DRQ */
643         stat = tp_ops->read_status(hwif);
644
645         if (!OK_STAT(stat, ATA_DRQ, BAD_R_STAT)) {
646                 SELECT_MASK(drive, 0);
647                 printk("%s: CHECK for good STATUS\n", drive->name);
648                 return 0;
649         }
650         local_irq_save(flags);
651         SELECT_MASK(drive, 0);
652         id = kmalloc(SECTOR_SIZE, GFP_ATOMIC);
653         if (!id) {
654                 local_irq_restore(flags);
655                 return 0;
656         }
657         tp_ops->input_data(drive, NULL, id, SECTOR_SIZE);
658         (void)tp_ops->read_status(hwif);        /* clear drive IRQ */
659         local_irq_enable();
660         local_irq_restore(flags);
661         ide_fix_driveid(id);
662
663         drive->id[ATA_ID_UDMA_MODES]  = id[ATA_ID_UDMA_MODES];
664         drive->id[ATA_ID_MWDMA_MODES] = id[ATA_ID_MWDMA_MODES];
665         drive->id[ATA_ID_SWDMA_MODES] = id[ATA_ID_SWDMA_MODES];
666         /* anything more ? */
667
668         kfree(id);
669
670         if ((drive->dev_flags & IDE_DFLAG_USING_DMA) && ide_id_dma_bug(drive))
671                 ide_dma_off(drive);
672
673         return 1;
674 }
675
676 int ide_config_drive_speed(ide_drive_t *drive, u8 speed)
677 {
678         ide_hwif_t *hwif = drive->hwif;
679         const struct ide_tp_ops *tp_ops = hwif->tp_ops;
680         u16 *id = drive->id, i;
681         int error = 0;
682         u8 stat;
683         ide_task_t task;
684
685 #ifdef CONFIG_BLK_DEV_IDEDMA
686         if (hwif->dma_ops)      /* check if host supports DMA */
687                 hwif->dma_ops->dma_host_set(drive, 0);
688 #endif
689
690         /* Skip setting PIO flow-control modes on pre-EIDE drives */
691         if ((speed & 0xf8) == XFER_PIO_0 && ata_id_has_iordy(drive->id) == 0)
692                 goto skip;
693
694         /*
695          * Don't use ide_wait_cmd here - it will
696          * attempt to set_geometry and recalibrate,
697          * but for some reason these don't work at
698          * this point (lost interrupt).
699          */
700         /*
701          * Select the drive, and issue the SETFEATURES command
702          */
703         disable_irq_nosync(hwif->irq);
704         
705         /*
706          *      FIXME: we race against the running IRQ here if
707          *      this is called from non IRQ context. If we use
708          *      disable_irq() we hang on the error path. Work
709          *      is needed.
710          */
711          
712         udelay(1);
713         SELECT_DRIVE(drive);
714         SELECT_MASK(drive, 1);
715         udelay(1);
716         tp_ops->set_irq(hwif, 0);
717
718         memset(&task, 0, sizeof(task));
719         task.tf_flags = IDE_TFLAG_OUT_FEATURE | IDE_TFLAG_OUT_NSECT;
720         task.tf.feature = SETFEATURES_XFER;
721         task.tf.nsect   = speed;
722
723         tp_ops->tf_load(drive, &task);
724
725         tp_ops->exec_command(hwif, ATA_CMD_SET_FEATURES);
726
727         if (drive->quirk_list == 2)
728                 tp_ops->set_irq(hwif, 1);
729
730         error = __ide_wait_stat(drive, drive->ready_stat,
731                                 ATA_BUSY | ATA_DRQ | ATA_ERR,
732                                 WAIT_CMD, &stat);
733
734         SELECT_MASK(drive, 0);
735
736         enable_irq(hwif->irq);
737
738         if (error) {
739                 (void) ide_dump_status(drive, "set_drive_speed_status", stat);
740                 return error;
741         }
742
743         id[ATA_ID_UDMA_MODES]  &= ~0xFF00;
744         id[ATA_ID_MWDMA_MODES] &= ~0x0F00;
745         id[ATA_ID_SWDMA_MODES] &= ~0x0F00;
746
747  skip:
748 #ifdef CONFIG_BLK_DEV_IDEDMA
749         if (speed >= XFER_SW_DMA_0 && (drive->dev_flags & IDE_DFLAG_USING_DMA))
750                 hwif->dma_ops->dma_host_set(drive, 1);
751         else if (hwif->dma_ops) /* check if host supports DMA */
752                 ide_dma_off_quietly(drive);
753 #endif
754
755         if (speed >= XFER_UDMA_0) {
756                 i = 1 << (speed - XFER_UDMA_0);
757                 id[ATA_ID_UDMA_MODES] |= (i << 8 | i);
758         } else if (speed >= XFER_MW_DMA_0) {
759                 i = 1 << (speed - XFER_MW_DMA_0);
760                 id[ATA_ID_MWDMA_MODES] |= (i << 8 | i);
761         } else if (speed >= XFER_SW_DMA_0) {
762                 i = 1 << (speed - XFER_SW_DMA_0);
763                 id[ATA_ID_SWDMA_MODES] |= (i << 8 | i);
764         }
765
766         if (!drive->init_speed)
767                 drive->init_speed = speed;
768         drive->current_speed = speed;
769         return error;
770 }
771
772 /*
773  * This should get invoked any time we exit the driver to
774  * wait for an interrupt response from a drive.  handler() points
775  * at the appropriate code to handle the next interrupt, and a
776  * timer is started to prevent us from waiting forever in case
777  * something goes wrong (see the ide_timer_expiry() handler later on).
778  *
779  * See also ide_execute_command
780  */
781 static void __ide_set_handler (ide_drive_t *drive, ide_handler_t *handler,
782                       unsigned int timeout, ide_expiry_t *expiry)
783 {
784         ide_hwif_t *hwif = drive->hwif;
785
786         BUG_ON(hwif->handler);
787         hwif->handler           = handler;
788         hwif->expiry            = expiry;
789         hwif->timer.expires     = jiffies + timeout;
790         hwif->req_gen_timer     = hwif->req_gen;
791         add_timer(&hwif->timer);
792 }
793
794 void ide_set_handler (ide_drive_t *drive, ide_handler_t *handler,
795                       unsigned int timeout, ide_expiry_t *expiry)
796 {
797         ide_hwif_t *hwif = drive->hwif;
798         unsigned long flags;
799
800         spin_lock_irqsave(&hwif->lock, flags);
801         __ide_set_handler(drive, handler, timeout, expiry);
802         spin_unlock_irqrestore(&hwif->lock, flags);
803 }
804
805 EXPORT_SYMBOL(ide_set_handler);
806  
807 /**
808  *      ide_execute_command     -       execute an IDE command
809  *      @drive: IDE drive to issue the command against
810  *      @command: command byte to write
811  *      @handler: handler for next phase
812  *      @timeout: timeout for command
813  *      @expiry:  handler to run on timeout
814  *
815  *      Helper function to issue an IDE command. This handles the
816  *      atomicity requirements, command timing and ensures that the 
817  *      handler and IRQ setup do not race. All IDE command kick off
818  *      should go via this function or do equivalent locking.
819  */
820
821 void ide_execute_command(ide_drive_t *drive, u8 cmd, ide_handler_t *handler,
822                          unsigned timeout, ide_expiry_t *expiry)
823 {
824         ide_hwif_t *hwif = drive->hwif;
825         unsigned long flags;
826
827         spin_lock_irqsave(&hwif->lock, flags);
828         __ide_set_handler(drive, handler, timeout, expiry);
829         hwif->tp_ops->exec_command(hwif, cmd);
830         /*
831          * Drive takes 400nS to respond, we must avoid the IRQ being
832          * serviced before that.
833          *
834          * FIXME: we could skip this delay with care on non shared devices
835          */
836         ndelay(400);
837         spin_unlock_irqrestore(&hwif->lock, flags);
838 }
839 EXPORT_SYMBOL(ide_execute_command);
840
841 void ide_execute_pkt_cmd(ide_drive_t *drive)
842 {
843         ide_hwif_t *hwif = drive->hwif;
844         unsigned long flags;
845
846         spin_lock_irqsave(&hwif->lock, flags);
847         hwif->tp_ops->exec_command(hwif, ATA_CMD_PACKET);
848         ndelay(400);
849         spin_unlock_irqrestore(&hwif->lock, flags);
850 }
851 EXPORT_SYMBOL_GPL(ide_execute_pkt_cmd);
852
853 static inline void ide_complete_drive_reset(ide_drive_t *drive, int err)
854 {
855         struct request *rq = drive->hwif->rq;
856
857         if (rq && blk_special_request(rq) && rq->cmd[0] == REQ_DRIVE_RESET)
858                 ide_end_request(drive, err ? err : 1, 0);
859 }
860
861 /* needed below */
862 static ide_startstop_t do_reset1 (ide_drive_t *, int);
863
864 /*
865  * atapi_reset_pollfunc() gets invoked to poll the interface for completion every 50ms
866  * during an atapi drive reset operation. If the drive has not yet responded,
867  * and we have not yet hit our maximum waiting time, then the timer is restarted
868  * for another 50ms.
869  */
870 static ide_startstop_t atapi_reset_pollfunc (ide_drive_t *drive)
871 {
872         ide_hwif_t *hwif = drive->hwif;
873         u8 stat;
874
875         SELECT_DRIVE(drive);
876         udelay (10);
877         stat = hwif->tp_ops->read_status(hwif);
878
879         if (OK_STAT(stat, 0, ATA_BUSY))
880                 printk("%s: ATAPI reset complete\n", drive->name);
881         else {
882                 if (time_before(jiffies, hwif->poll_timeout)) {
883                         ide_set_handler(drive, &atapi_reset_pollfunc, HZ/20, NULL);
884                         /* continue polling */
885                         return ide_started;
886                 }
887                 /* end of polling */
888                 hwif->polling = 0;
889                 printk("%s: ATAPI reset timed-out, status=0x%02x\n",
890                                 drive->name, stat);
891                 /* do it the old fashioned way */
892                 return do_reset1(drive, 1);
893         }
894         /* done polling */
895         hwif->polling = 0;
896         ide_complete_drive_reset(drive, 0);
897         return ide_stopped;
898 }
899
900 static void ide_reset_report_error(ide_hwif_t *hwif, u8 err)
901 {
902         static const char *err_master_vals[] =
903                 { NULL, "passed", "formatter device error",
904                   "sector buffer error", "ECC circuitry error",
905                   "controlling MPU error" };
906
907         u8 err_master = err & 0x7f;
908
909         printk(KERN_ERR "%s: reset: master: ", hwif->name);
910         if (err_master && err_master < 6)
911                 printk(KERN_CONT "%s", err_master_vals[err_master]);
912         else
913                 printk(KERN_CONT "error (0x%02x?)", err);
914         if (err & 0x80)
915                 printk(KERN_CONT "; slave: failed");
916         printk(KERN_CONT "\n");
917 }
918
919 /*
920  * reset_pollfunc() gets invoked to poll the interface for completion every 50ms
921  * during an ide reset operation. If the drives have not yet responded,
922  * and we have not yet hit our maximum waiting time, then the timer is restarted
923  * for another 50ms.
924  */
925 static ide_startstop_t reset_pollfunc (ide_drive_t *drive)
926 {
927         ide_hwif_t *hwif = drive->hwif;
928         const struct ide_port_ops *port_ops = hwif->port_ops;
929         u8 tmp;
930         int err = 0;
931
932         if (port_ops && port_ops->reset_poll) {
933                 err = port_ops->reset_poll(drive);
934                 if (err) {
935                         printk(KERN_ERR "%s: host reset_poll failure for %s.\n",
936                                 hwif->name, drive->name);
937                         goto out;
938                 }
939         }
940
941         tmp = hwif->tp_ops->read_status(hwif);
942
943         if (!OK_STAT(tmp, 0, ATA_BUSY)) {
944                 if (time_before(jiffies, hwif->poll_timeout)) {
945                         ide_set_handler(drive, &reset_pollfunc, HZ/20, NULL);
946                         /* continue polling */
947                         return ide_started;
948                 }
949                 printk("%s: reset timed-out, status=0x%02x\n", hwif->name, tmp);
950                 drive->failures++;
951                 err = -EIO;
952         } else  {
953                 tmp = ide_read_error(drive);
954
955                 if (tmp == 1) {
956                         printk(KERN_INFO "%s: reset: success\n", hwif->name);
957                         drive->failures = 0;
958                 } else {
959                         ide_reset_report_error(hwif, tmp);
960                         drive->failures++;
961                         err = -EIO;
962                 }
963         }
964 out:
965         hwif->polling = 0;      /* done polling */
966         ide_complete_drive_reset(drive, err);
967         return ide_stopped;
968 }
969
970 static void ide_disk_pre_reset(ide_drive_t *drive)
971 {
972         int legacy = (drive->id[ATA_ID_CFS_ENABLE_2] & 0x0400) ? 0 : 1;
973
974         drive->special.all = 0;
975         drive->special.b.set_geometry = legacy;
976         drive->special.b.recalibrate  = legacy;
977
978         drive->mult_count = 0;
979         drive->dev_flags &= ~IDE_DFLAG_PARKED;
980
981         if ((drive->dev_flags & IDE_DFLAG_KEEP_SETTINGS) == 0 &&
982             (drive->dev_flags & IDE_DFLAG_USING_DMA) == 0)
983                 drive->mult_req = 0;
984
985         if (drive->mult_req != drive->mult_count)
986                 drive->special.b.set_multmode = 1;
987 }
988
989 static void pre_reset(ide_drive_t *drive)
990 {
991         const struct ide_port_ops *port_ops = drive->hwif->port_ops;
992
993         if (drive->media == ide_disk)
994                 ide_disk_pre_reset(drive);
995         else
996                 drive->dev_flags |= IDE_DFLAG_POST_RESET;
997
998         if (drive->dev_flags & IDE_DFLAG_USING_DMA) {
999                 if (drive->crc_count)
1000                         ide_check_dma_crc(drive);
1001                 else
1002                         ide_dma_off(drive);
1003         }
1004
1005         if ((drive->dev_flags & IDE_DFLAG_KEEP_SETTINGS) == 0) {
1006                 if ((drive->dev_flags & IDE_DFLAG_USING_DMA) == 0) {
1007                         drive->dev_flags &= ~IDE_DFLAG_UNMASK;
1008                         drive->io_32bit = 0;
1009                 }
1010                 return;
1011         }
1012
1013         if (port_ops && port_ops->pre_reset)
1014                 port_ops->pre_reset(drive);
1015
1016         if (drive->current_speed != 0xff)
1017                 drive->desired_speed = drive->current_speed;
1018         drive->current_speed = 0xff;
1019 }
1020
1021 /*
1022  * do_reset1() attempts to recover a confused drive by resetting it.
1023  * Unfortunately, resetting a disk drive actually resets all devices on
1024  * the same interface, so it can really be thought of as resetting the
1025  * interface rather than resetting the drive.
1026  *
1027  * ATAPI devices have their own reset mechanism which allows them to be
1028  * individually reset without clobbering other devices on the same interface.
1029  *
1030  * Unfortunately, the IDE interface does not generate an interrupt to let
1031  * us know when the reset operation has finished, so we must poll for this.
1032  * Equally poor, though, is the fact that this may a very long time to complete,
1033  * (up to 30 seconds worstcase).  So, instead of busy-waiting here for it,
1034  * we set a timer to poll at 50ms intervals.
1035  */
1036 static ide_startstop_t do_reset1 (ide_drive_t *drive, int do_not_try_atapi)
1037 {
1038         ide_hwif_t *hwif = drive->hwif;
1039         struct ide_io_ports *io_ports = &hwif->io_ports;
1040         const struct ide_tp_ops *tp_ops = hwif->tp_ops;
1041         const struct ide_port_ops *port_ops;
1042         ide_drive_t *tdrive;
1043         unsigned long flags, timeout;
1044         int i;
1045         DEFINE_WAIT(wait);
1046
1047         spin_lock_irqsave(&hwif->lock, flags);
1048
1049         /* We must not reset with running handlers */
1050         BUG_ON(hwif->handler != NULL);
1051
1052         /* For an ATAPI device, first try an ATAPI SRST. */
1053         if (drive->media != ide_disk && !do_not_try_atapi) {
1054                 pre_reset(drive);
1055                 SELECT_DRIVE(drive);
1056                 udelay (20);
1057                 tp_ops->exec_command(hwif, ATA_CMD_DEV_RESET);
1058                 ndelay(400);
1059                 hwif->poll_timeout = jiffies + WAIT_WORSTCASE;
1060                 hwif->polling = 1;
1061                 __ide_set_handler(drive, &atapi_reset_pollfunc, HZ/20, NULL);
1062                 spin_unlock_irqrestore(&hwif->lock, flags);
1063                 return ide_started;
1064         }
1065
1066         /* We must not disturb devices in the IDE_DFLAG_PARKED state. */
1067         do {
1068                 unsigned long now;
1069
1070                 prepare_to_wait(&ide_park_wq, &wait, TASK_UNINTERRUPTIBLE);
1071                 timeout = jiffies;
1072                 ide_port_for_each_present_dev(i, tdrive, hwif) {
1073                         if ((tdrive->dev_flags & IDE_DFLAG_PARKED) &&
1074                             time_after(tdrive->sleep, timeout))
1075                                 timeout = tdrive->sleep;
1076                 }
1077
1078                 now = jiffies;
1079                 if (time_before_eq(timeout, now))
1080                         break;
1081
1082                 spin_unlock_irqrestore(&hwif->lock, flags);
1083                 timeout = schedule_timeout_uninterruptible(timeout - now);
1084                 spin_lock_irqsave(&hwif->lock, flags);
1085         } while (timeout);
1086         finish_wait(&ide_park_wq, &wait);
1087
1088         /*
1089          * First, reset any device state data we were maintaining
1090          * for any of the drives on this interface.
1091          */
1092         ide_port_for_each_dev(i, tdrive, hwif)
1093                 pre_reset(tdrive);
1094
1095         if (io_ports->ctl_addr == 0) {
1096                 spin_unlock_irqrestore(&hwif->lock, flags);
1097                 ide_complete_drive_reset(drive, -ENXIO);
1098                 return ide_stopped;
1099         }
1100
1101         /*
1102          * Note that we also set nIEN while resetting the device,
1103          * to mask unwanted interrupts from the interface during the reset.
1104          * However, due to the design of PC hardware, this will cause an
1105          * immediate interrupt due to the edge transition it produces.
1106          * This single interrupt gives us a "fast poll" for drives that
1107          * recover from reset very quickly, saving us the first 50ms wait time.
1108          *
1109          * TODO: add ->softreset method and stop abusing ->set_irq
1110          */
1111         /* set SRST and nIEN */
1112         tp_ops->set_irq(hwif, 4);
1113         /* more than enough time */
1114         udelay(10);
1115         /* clear SRST, leave nIEN (unless device is on the quirk list) */
1116         tp_ops->set_irq(hwif, drive->quirk_list == 2);
1117         /* more than enough time */
1118         udelay(10);
1119         hwif->poll_timeout = jiffies + WAIT_WORSTCASE;
1120         hwif->polling = 1;
1121         __ide_set_handler(drive, &reset_pollfunc, HZ/20, NULL);
1122
1123         /*
1124          * Some weird controller like resetting themselves to a strange
1125          * state when the disks are reset this way. At least, the Winbond
1126          * 553 documentation says that
1127          */
1128         port_ops = hwif->port_ops;
1129         if (port_ops && port_ops->resetproc)
1130                 port_ops->resetproc(drive);
1131
1132         spin_unlock_irqrestore(&hwif->lock, flags);
1133         return ide_started;
1134 }
1135
1136 /*
1137  * ide_do_reset() is the entry point to the drive/interface reset code.
1138  */
1139
1140 ide_startstop_t ide_do_reset (ide_drive_t *drive)
1141 {
1142         return do_reset1(drive, 0);
1143 }
1144
1145 EXPORT_SYMBOL(ide_do_reset);
1146
1147 /*
1148  * ide_wait_not_busy() waits for the currently selected device on the hwif
1149  * to report a non-busy status, see comments in ide_probe_port().
1150  */
1151 int ide_wait_not_busy(ide_hwif_t *hwif, unsigned long timeout)
1152 {
1153         u8 stat = 0;
1154
1155         while(timeout--) {
1156                 /*
1157                  * Turn this into a schedule() sleep once I'm sure
1158                  * about locking issues (2.5 work ?).
1159                  */
1160                 mdelay(1);
1161                 stat = hwif->tp_ops->read_status(hwif);
1162                 if ((stat & ATA_BUSY) == 0)
1163                         return 0;
1164                 /*
1165                  * Assume a value of 0xff means nothing is connected to
1166                  * the interface and it doesn't implement the pull-down
1167                  * resistor on D7.
1168                  */
1169                 if (stat == 0xff)
1170                         return -ENODEV;
1171                 touch_softlockup_watchdog();
1172                 touch_nmi_watchdog();
1173         }
1174         return -EBUSY;
1175 }