ide: remove stale comments from drive_is_ready()
[safe/jmp/linux-2.6] / 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 int drive_is_ready (ide_drive_t *drive)
442 {
443         ide_hwif_t *hwif        = drive->hwif;
444         u8 stat                 = 0;
445
446         if (drive->waiting_for_dma)
447                 return hwif->dma_ops->dma_test_irq(drive);
448
449         if (hwif->io_ports.ctl_addr &&
450             (hwif->host_flags & IDE_HFLAG_BROKEN_ALTSTATUS) == 0)
451                 stat = hwif->tp_ops->read_altstatus(hwif);
452         else
453                 /* Note: this may clear a pending IRQ!! */
454                 stat = hwif->tp_ops->read_status(hwif);
455
456         if (stat & ATA_BUSY)
457                 /* drive busy:  definitely not interrupting */
458                 return 0;
459
460         /* drive ready: *might* be interrupting */
461         return 1;
462 }
463
464 EXPORT_SYMBOL(drive_is_ready);
465
466 /*
467  * This routine busy-waits for the drive status to be not "busy".
468  * It then checks the status for all of the "good" bits and none
469  * of the "bad" bits, and if all is okay it returns 0.  All other
470  * cases return error -- caller may then invoke ide_error().
471  *
472  * This routine should get fixed to not hog the cpu during extra long waits..
473  * That could be done by busy-waiting for the first jiffy or two, and then
474  * setting a timer to wake up at half second intervals thereafter,
475  * until timeout is achieved, before timing out.
476  */
477 static int __ide_wait_stat(ide_drive_t *drive, u8 good, u8 bad, unsigned long timeout, u8 *rstat)
478 {
479         ide_hwif_t *hwif = drive->hwif;
480         const struct ide_tp_ops *tp_ops = hwif->tp_ops;
481         unsigned long flags;
482         int i;
483         u8 stat;
484
485         udelay(1);      /* spec allows drive 400ns to assert "BUSY" */
486         stat = tp_ops->read_status(hwif);
487
488         if (stat & ATA_BUSY) {
489                 local_save_flags(flags);
490                 local_irq_enable_in_hardirq();
491                 timeout += jiffies;
492                 while ((stat = tp_ops->read_status(hwif)) & ATA_BUSY) {
493                         if (time_after(jiffies, timeout)) {
494                                 /*
495                                  * One last read after the timeout in case
496                                  * heavy interrupt load made us not make any
497                                  * progress during the timeout..
498                                  */
499                                 stat = tp_ops->read_status(hwif);
500                                 if ((stat & ATA_BUSY) == 0)
501                                         break;
502
503                                 local_irq_restore(flags);
504                                 *rstat = stat;
505                                 return -EBUSY;
506                         }
507                 }
508                 local_irq_restore(flags);
509         }
510         /*
511          * Allow status to settle, then read it again.
512          * A few rare drives vastly violate the 400ns spec here,
513          * so we'll wait up to 10usec for a "good" status
514          * rather than expensively fail things immediately.
515          * This fix courtesy of Matthew Faupel & Niccolo Rigacci.
516          */
517         for (i = 0; i < 10; i++) {
518                 udelay(1);
519                 stat = tp_ops->read_status(hwif);
520
521                 if (OK_STAT(stat, good, bad)) {
522                         *rstat = stat;
523                         return 0;
524                 }
525         }
526         *rstat = stat;
527         return -EFAULT;
528 }
529
530 /*
531  * In case of error returns error value after doing "*startstop = ide_error()".
532  * The caller should return the updated value of "startstop" in this case,
533  * "startstop" is unchanged when the function returns 0.
534  */
535 int ide_wait_stat(ide_startstop_t *startstop, ide_drive_t *drive, u8 good, u8 bad, unsigned long timeout)
536 {
537         int err;
538         u8 stat;
539
540         /* bail early if we've exceeded max_failures */
541         if (drive->max_failures && (drive->failures > drive->max_failures)) {
542                 *startstop = ide_stopped;
543                 return 1;
544         }
545
546         err = __ide_wait_stat(drive, good, bad, timeout, &stat);
547
548         if (err) {
549                 char *s = (err == -EBUSY) ? "status timeout" : "status error";
550                 *startstop = ide_error(drive, s, stat);
551         }
552
553         return err;
554 }
555
556 EXPORT_SYMBOL(ide_wait_stat);
557
558 /**
559  *      ide_in_drive_list       -       look for drive in black/white list
560  *      @id: drive identifier
561  *      @table: list to inspect
562  *
563  *      Look for a drive in the blacklist and the whitelist tables
564  *      Returns 1 if the drive is found in the table.
565  */
566
567 int ide_in_drive_list(u16 *id, const struct drive_list_entry *table)
568 {
569         for ( ; table->id_model; table++)
570                 if ((!strcmp(table->id_model, (char *)&id[ATA_ID_PROD])) &&
571                     (!table->id_firmware ||
572                      strstr((char *)&id[ATA_ID_FW_REV], table->id_firmware)))
573                         return 1;
574         return 0;
575 }
576
577 EXPORT_SYMBOL_GPL(ide_in_drive_list);
578
579 /*
580  * Early UDMA66 devices don't set bit14 to 1, only bit13 is valid.
581  * We list them here and depend on the device side cable detection for them.
582  *
583  * Some optical devices with the buggy firmwares have the same problem.
584  */
585 static const struct drive_list_entry ivb_list[] = {
586         { "QUANTUM FIREBALLlct10 05"    , "A03.0900"    },
587         { "TSSTcorp CDDVDW SH-S202J"    , "SB00"        },
588         { "TSSTcorp CDDVDW SH-S202J"    , "SB01"        },
589         { "TSSTcorp CDDVDW SH-S202N"    , "SB00"        },
590         { "TSSTcorp CDDVDW SH-S202N"    , "SB01"        },
591         { "TSSTcorp CDDVDW SH-S202H"    , "SB00"        },
592         { "TSSTcorp CDDVDW SH-S202H"    , "SB01"        },
593         { "SAMSUNG SP0822N"             , "WA100-10"    },
594         { NULL                          , NULL          }
595 };
596
597 /*
598  *  All hosts that use the 80c ribbon must use!
599  *  The name is derived from upper byte of word 93 and the 80c ribbon.
600  */
601 u8 eighty_ninty_three (ide_drive_t *drive)
602 {
603         ide_hwif_t *hwif = drive->hwif;
604         u16 *id = drive->id;
605         int ivb = ide_in_drive_list(id, ivb_list);
606
607         if (hwif->cbl == ATA_CBL_PATA40_SHORT)
608                 return 1;
609
610         if (ivb)
611                 printk(KERN_DEBUG "%s: skipping word 93 validity check\n",
612                                   drive->name);
613
614         if (ata_id_is_sata(id) && !ivb)
615                 return 1;
616
617         if (hwif->cbl != ATA_CBL_PATA80 && !ivb)
618                 goto no_80w;
619
620         /*
621          * FIXME:
622          * - change master/slave IDENTIFY order
623          * - force bit13 (80c cable present) check also for !ivb devices
624          *   (unless the slave device is pre-ATA3)
625          */
626         if ((id[ATA_ID_HW_CONFIG] & 0x4000) ||
627             (ivb && (id[ATA_ID_HW_CONFIG] & 0x2000)))
628                 return 1;
629
630 no_80w:
631         if (drive->dev_flags & IDE_DFLAG_UDMA33_WARNED)
632                 return 0;
633
634         printk(KERN_WARNING "%s: %s side 80-wire cable detection failed, "
635                             "limiting max speed to UDMA33\n",
636                             drive->name,
637                             hwif->cbl == ATA_CBL_PATA80 ? "drive" : "host");
638
639         drive->dev_flags |= IDE_DFLAG_UDMA33_WARNED;
640
641         return 0;
642 }
643
644 int ide_driveid_update(ide_drive_t *drive)
645 {
646         ide_hwif_t *hwif = drive->hwif;
647         const struct ide_tp_ops *tp_ops = hwif->tp_ops;
648         u16 *id;
649         unsigned long flags;
650         u8 stat;
651
652         /*
653          * Re-read drive->id for possible DMA mode
654          * change (copied from ide-probe.c)
655          */
656
657         SELECT_MASK(drive, 1);
658         tp_ops->set_irq(hwif, 0);
659         msleep(50);
660         tp_ops->exec_command(hwif, ATA_CMD_ID_ATA);
661
662         if (ide_busy_sleep(hwif, WAIT_WORSTCASE, 1)) {
663                 SELECT_MASK(drive, 0);
664                 return 0;
665         }
666
667         msleep(50);     /* wait for IRQ and ATA_DRQ */
668         stat = tp_ops->read_status(hwif);
669
670         if (!OK_STAT(stat, ATA_DRQ, BAD_R_STAT)) {
671                 SELECT_MASK(drive, 0);
672                 printk("%s: CHECK for good STATUS\n", drive->name);
673                 return 0;
674         }
675         local_irq_save(flags);
676         SELECT_MASK(drive, 0);
677         id = kmalloc(SECTOR_SIZE, GFP_ATOMIC);
678         if (!id) {
679                 local_irq_restore(flags);
680                 return 0;
681         }
682         tp_ops->input_data(drive, NULL, id, SECTOR_SIZE);
683         (void)tp_ops->read_status(hwif);        /* clear drive IRQ */
684         local_irq_enable();
685         local_irq_restore(flags);
686         ide_fix_driveid(id);
687
688         drive->id[ATA_ID_UDMA_MODES]  = id[ATA_ID_UDMA_MODES];
689         drive->id[ATA_ID_MWDMA_MODES] = id[ATA_ID_MWDMA_MODES];
690         drive->id[ATA_ID_SWDMA_MODES] = id[ATA_ID_SWDMA_MODES];
691         /* anything more ? */
692
693         kfree(id);
694
695         if ((drive->dev_flags & IDE_DFLAG_USING_DMA) && ide_id_dma_bug(drive))
696                 ide_dma_off(drive);
697
698         return 1;
699 }
700
701 int ide_config_drive_speed(ide_drive_t *drive, u8 speed)
702 {
703         ide_hwif_t *hwif = drive->hwif;
704         const struct ide_tp_ops *tp_ops = hwif->tp_ops;
705         u16 *id = drive->id, i;
706         int error = 0;
707         u8 stat;
708         ide_task_t task;
709
710 #ifdef CONFIG_BLK_DEV_IDEDMA
711         if (hwif->dma_ops)      /* check if host supports DMA */
712                 hwif->dma_ops->dma_host_set(drive, 0);
713 #endif
714
715         /* Skip setting PIO flow-control modes on pre-EIDE drives */
716         if ((speed & 0xf8) == XFER_PIO_0 && ata_id_has_iordy(drive->id) == 0)
717                 goto skip;
718
719         /*
720          * Don't use ide_wait_cmd here - it will
721          * attempt to set_geometry and recalibrate,
722          * but for some reason these don't work at
723          * this point (lost interrupt).
724          */
725         /*
726          * Select the drive, and issue the SETFEATURES command
727          */
728         disable_irq_nosync(hwif->irq);
729         
730         /*
731          *      FIXME: we race against the running IRQ here if
732          *      this is called from non IRQ context. If we use
733          *      disable_irq() we hang on the error path. Work
734          *      is needed.
735          */
736          
737         udelay(1);
738         SELECT_DRIVE(drive);
739         SELECT_MASK(drive, 1);
740         udelay(1);
741         tp_ops->set_irq(hwif, 0);
742
743         memset(&task, 0, sizeof(task));
744         task.tf_flags = IDE_TFLAG_OUT_FEATURE | IDE_TFLAG_OUT_NSECT;
745         task.tf.feature = SETFEATURES_XFER;
746         task.tf.nsect   = speed;
747
748         tp_ops->tf_load(drive, &task);
749
750         tp_ops->exec_command(hwif, ATA_CMD_SET_FEATURES);
751
752         if (drive->quirk_list == 2)
753                 tp_ops->set_irq(hwif, 1);
754
755         error = __ide_wait_stat(drive, drive->ready_stat,
756                                 ATA_BUSY | ATA_DRQ | ATA_ERR,
757                                 WAIT_CMD, &stat);
758
759         SELECT_MASK(drive, 0);
760
761         enable_irq(hwif->irq);
762
763         if (error) {
764                 (void) ide_dump_status(drive, "set_drive_speed_status", stat);
765                 return error;
766         }
767
768         id[ATA_ID_UDMA_MODES]  &= ~0xFF00;
769         id[ATA_ID_MWDMA_MODES] &= ~0x0F00;
770         id[ATA_ID_SWDMA_MODES] &= ~0x0F00;
771
772  skip:
773 #ifdef CONFIG_BLK_DEV_IDEDMA
774         if (speed >= XFER_SW_DMA_0 && (drive->dev_flags & IDE_DFLAG_USING_DMA))
775                 hwif->dma_ops->dma_host_set(drive, 1);
776         else if (hwif->dma_ops) /* check if host supports DMA */
777                 ide_dma_off_quietly(drive);
778 #endif
779
780         if (speed >= XFER_UDMA_0) {
781                 i = 1 << (speed - XFER_UDMA_0);
782                 id[ATA_ID_UDMA_MODES] |= (i << 8 | i);
783         } else if (speed >= XFER_MW_DMA_0) {
784                 i = 1 << (speed - XFER_MW_DMA_0);
785                 id[ATA_ID_MWDMA_MODES] |= (i << 8 | i);
786         } else if (speed >= XFER_SW_DMA_0) {
787                 i = 1 << (speed - XFER_SW_DMA_0);
788                 id[ATA_ID_SWDMA_MODES] |= (i << 8 | i);
789         }
790
791         if (!drive->init_speed)
792                 drive->init_speed = speed;
793         drive->current_speed = speed;
794         return error;
795 }
796
797 /*
798  * This should get invoked any time we exit the driver to
799  * wait for an interrupt response from a drive.  handler() points
800  * at the appropriate code to handle the next interrupt, and a
801  * timer is started to prevent us from waiting forever in case
802  * something goes wrong (see the ide_timer_expiry() handler later on).
803  *
804  * See also ide_execute_command
805  */
806 static void __ide_set_handler (ide_drive_t *drive, ide_handler_t *handler,
807                       unsigned int timeout, ide_expiry_t *expiry)
808 {
809         ide_hwif_t *hwif = drive->hwif;
810
811         BUG_ON(hwif->handler);
812         hwif->handler           = handler;
813         hwif->expiry            = expiry;
814         hwif->timer.expires     = jiffies + timeout;
815         hwif->req_gen_timer     = hwif->req_gen;
816         add_timer(&hwif->timer);
817 }
818
819 void ide_set_handler (ide_drive_t *drive, ide_handler_t *handler,
820                       unsigned int timeout, ide_expiry_t *expiry)
821 {
822         ide_hwif_t *hwif = drive->hwif;
823         unsigned long flags;
824
825         spin_lock_irqsave(&hwif->lock, flags);
826         __ide_set_handler(drive, handler, timeout, expiry);
827         spin_unlock_irqrestore(&hwif->lock, flags);
828 }
829
830 EXPORT_SYMBOL(ide_set_handler);
831  
832 /**
833  *      ide_execute_command     -       execute an IDE command
834  *      @drive: IDE drive to issue the command against
835  *      @command: command byte to write
836  *      @handler: handler for next phase
837  *      @timeout: timeout for command
838  *      @expiry:  handler to run on timeout
839  *
840  *      Helper function to issue an IDE command. This handles the
841  *      atomicity requirements, command timing and ensures that the 
842  *      handler and IRQ setup do not race. All IDE command kick off
843  *      should go via this function or do equivalent locking.
844  */
845
846 void ide_execute_command(ide_drive_t *drive, u8 cmd, ide_handler_t *handler,
847                          unsigned timeout, ide_expiry_t *expiry)
848 {
849         ide_hwif_t *hwif = drive->hwif;
850         unsigned long flags;
851
852         spin_lock_irqsave(&hwif->lock, flags);
853         __ide_set_handler(drive, handler, timeout, expiry);
854         hwif->tp_ops->exec_command(hwif, cmd);
855         /*
856          * Drive takes 400nS to respond, we must avoid the IRQ being
857          * serviced before that.
858          *
859          * FIXME: we could skip this delay with care on non shared devices
860          */
861         ndelay(400);
862         spin_unlock_irqrestore(&hwif->lock, flags);
863 }
864 EXPORT_SYMBOL(ide_execute_command);
865
866 void ide_execute_pkt_cmd(ide_drive_t *drive)
867 {
868         ide_hwif_t *hwif = drive->hwif;
869         unsigned long flags;
870
871         spin_lock_irqsave(&hwif->lock, flags);
872         hwif->tp_ops->exec_command(hwif, ATA_CMD_PACKET);
873         ndelay(400);
874         spin_unlock_irqrestore(&hwif->lock, flags);
875 }
876 EXPORT_SYMBOL_GPL(ide_execute_pkt_cmd);
877
878 static inline void ide_complete_drive_reset(ide_drive_t *drive, int err)
879 {
880         struct request *rq = drive->hwif->rq;
881
882         if (rq && blk_special_request(rq) && rq->cmd[0] == REQ_DRIVE_RESET)
883                 ide_end_request(drive, err ? err : 1, 0);
884 }
885
886 /* needed below */
887 static ide_startstop_t do_reset1 (ide_drive_t *, int);
888
889 /*
890  * atapi_reset_pollfunc() gets invoked to poll the interface for completion every 50ms
891  * during an atapi drive reset operation. If the drive has not yet responded,
892  * and we have not yet hit our maximum waiting time, then the timer is restarted
893  * for another 50ms.
894  */
895 static ide_startstop_t atapi_reset_pollfunc (ide_drive_t *drive)
896 {
897         ide_hwif_t *hwif = drive->hwif;
898         u8 stat;
899
900         SELECT_DRIVE(drive);
901         udelay (10);
902         stat = hwif->tp_ops->read_status(hwif);
903
904         if (OK_STAT(stat, 0, ATA_BUSY))
905                 printk("%s: ATAPI reset complete\n", drive->name);
906         else {
907                 if (time_before(jiffies, hwif->poll_timeout)) {
908                         ide_set_handler(drive, &atapi_reset_pollfunc, HZ/20, NULL);
909                         /* continue polling */
910                         return ide_started;
911                 }
912                 /* end of polling */
913                 hwif->polling = 0;
914                 printk("%s: ATAPI reset timed-out, status=0x%02x\n",
915                                 drive->name, stat);
916                 /* do it the old fashioned way */
917                 return do_reset1(drive, 1);
918         }
919         /* done polling */
920         hwif->polling = 0;
921         ide_complete_drive_reset(drive, 0);
922         return ide_stopped;
923 }
924
925 static void ide_reset_report_error(ide_hwif_t *hwif, u8 err)
926 {
927         static const char *err_master_vals[] =
928                 { NULL, "passed", "formatter device error",
929                   "sector buffer error", "ECC circuitry error",
930                   "controlling MPU error" };
931
932         u8 err_master = err & 0x7f;
933
934         printk(KERN_ERR "%s: reset: master: ", hwif->name);
935         if (err_master && err_master < 6)
936                 printk(KERN_CONT "%s", err_master_vals[err_master]);
937         else
938                 printk(KERN_CONT "error (0x%02x?)", err);
939         if (err & 0x80)
940                 printk(KERN_CONT "; slave: failed");
941         printk(KERN_CONT "\n");
942 }
943
944 /*
945  * reset_pollfunc() gets invoked to poll the interface for completion every 50ms
946  * during an ide reset operation. If the drives have not yet responded,
947  * and we have not yet hit our maximum waiting time, then the timer is restarted
948  * for another 50ms.
949  */
950 static ide_startstop_t reset_pollfunc (ide_drive_t *drive)
951 {
952         ide_hwif_t *hwif = drive->hwif;
953         const struct ide_port_ops *port_ops = hwif->port_ops;
954         u8 tmp;
955         int err = 0;
956
957         if (port_ops && port_ops->reset_poll) {
958                 err = port_ops->reset_poll(drive);
959                 if (err) {
960                         printk(KERN_ERR "%s: host reset_poll failure for %s.\n",
961                                 hwif->name, drive->name);
962                         goto out;
963                 }
964         }
965
966         tmp = hwif->tp_ops->read_status(hwif);
967
968         if (!OK_STAT(tmp, 0, ATA_BUSY)) {
969                 if (time_before(jiffies, hwif->poll_timeout)) {
970                         ide_set_handler(drive, &reset_pollfunc, HZ/20, NULL);
971                         /* continue polling */
972                         return ide_started;
973                 }
974                 printk("%s: reset timed-out, status=0x%02x\n", hwif->name, tmp);
975                 drive->failures++;
976                 err = -EIO;
977         } else  {
978                 tmp = ide_read_error(drive);
979
980                 if (tmp == 1) {
981                         printk(KERN_INFO "%s: reset: success\n", hwif->name);
982                         drive->failures = 0;
983                 } else {
984                         ide_reset_report_error(hwif, tmp);
985                         drive->failures++;
986                         err = -EIO;
987                 }
988         }
989 out:
990         hwif->polling = 0;      /* done polling */
991         ide_complete_drive_reset(drive, err);
992         return ide_stopped;
993 }
994
995 static void ide_disk_pre_reset(ide_drive_t *drive)
996 {
997         int legacy = (drive->id[ATA_ID_CFS_ENABLE_2] & 0x0400) ? 0 : 1;
998
999         drive->special.all = 0;
1000         drive->special.b.set_geometry = legacy;
1001         drive->special.b.recalibrate  = legacy;
1002
1003         drive->mult_count = 0;
1004         drive->dev_flags &= ~IDE_DFLAG_PARKED;
1005
1006         if ((drive->dev_flags & IDE_DFLAG_KEEP_SETTINGS) == 0 &&
1007             (drive->dev_flags & IDE_DFLAG_USING_DMA) == 0)
1008                 drive->mult_req = 0;
1009
1010         if (drive->mult_req != drive->mult_count)
1011                 drive->special.b.set_multmode = 1;
1012 }
1013
1014 static void pre_reset(ide_drive_t *drive)
1015 {
1016         const struct ide_port_ops *port_ops = drive->hwif->port_ops;
1017
1018         if (drive->media == ide_disk)
1019                 ide_disk_pre_reset(drive);
1020         else
1021                 drive->dev_flags |= IDE_DFLAG_POST_RESET;
1022
1023         if (drive->dev_flags & IDE_DFLAG_USING_DMA) {
1024                 if (drive->crc_count)
1025                         ide_check_dma_crc(drive);
1026                 else
1027                         ide_dma_off(drive);
1028         }
1029
1030         if ((drive->dev_flags & IDE_DFLAG_KEEP_SETTINGS) == 0) {
1031                 if ((drive->dev_flags & IDE_DFLAG_USING_DMA) == 0) {
1032                         drive->dev_flags &= ~IDE_DFLAG_UNMASK;
1033                         drive->io_32bit = 0;
1034                 }
1035                 return;
1036         }
1037
1038         if (port_ops && port_ops->pre_reset)
1039                 port_ops->pre_reset(drive);
1040
1041         if (drive->current_speed != 0xff)
1042                 drive->desired_speed = drive->current_speed;
1043         drive->current_speed = 0xff;
1044 }
1045
1046 /*
1047  * do_reset1() attempts to recover a confused drive by resetting it.
1048  * Unfortunately, resetting a disk drive actually resets all devices on
1049  * the same interface, so it can really be thought of as resetting the
1050  * interface rather than resetting the drive.
1051  *
1052  * ATAPI devices have their own reset mechanism which allows them to be
1053  * individually reset without clobbering other devices on the same interface.
1054  *
1055  * Unfortunately, the IDE interface does not generate an interrupt to let
1056  * us know when the reset operation has finished, so we must poll for this.
1057  * Equally poor, though, is the fact that this may a very long time to complete,
1058  * (up to 30 seconds worstcase).  So, instead of busy-waiting here for it,
1059  * we set a timer to poll at 50ms intervals.
1060  */
1061 static ide_startstop_t do_reset1 (ide_drive_t *drive, int do_not_try_atapi)
1062 {
1063         ide_hwif_t *hwif = drive->hwif;
1064         struct ide_io_ports *io_ports = &hwif->io_ports;
1065         const struct ide_tp_ops *tp_ops = hwif->tp_ops;
1066         const struct ide_port_ops *port_ops;
1067         ide_drive_t *tdrive;
1068         unsigned long flags, timeout;
1069         int i;
1070         DEFINE_WAIT(wait);
1071
1072         spin_lock_irqsave(&hwif->lock, flags);
1073
1074         /* We must not reset with running handlers */
1075         BUG_ON(hwif->handler != NULL);
1076
1077         /* For an ATAPI device, first try an ATAPI SRST. */
1078         if (drive->media != ide_disk && !do_not_try_atapi) {
1079                 pre_reset(drive);
1080                 SELECT_DRIVE(drive);
1081                 udelay (20);
1082                 tp_ops->exec_command(hwif, ATA_CMD_DEV_RESET);
1083                 ndelay(400);
1084                 hwif->poll_timeout = jiffies + WAIT_WORSTCASE;
1085                 hwif->polling = 1;
1086                 __ide_set_handler(drive, &atapi_reset_pollfunc, HZ/20, NULL);
1087                 spin_unlock_irqrestore(&hwif->lock, flags);
1088                 return ide_started;
1089         }
1090
1091         /* We must not disturb devices in the IDE_DFLAG_PARKED state. */
1092         do {
1093                 unsigned long now;
1094
1095                 prepare_to_wait(&ide_park_wq, &wait, TASK_UNINTERRUPTIBLE);
1096                 timeout = jiffies;
1097                 ide_port_for_each_present_dev(i, tdrive, hwif) {
1098                         if ((tdrive->dev_flags & IDE_DFLAG_PARKED) &&
1099                             time_after(tdrive->sleep, timeout))
1100                                 timeout = tdrive->sleep;
1101                 }
1102
1103                 now = jiffies;
1104                 if (time_before_eq(timeout, now))
1105                         break;
1106
1107                 spin_unlock_irqrestore(&hwif->lock, flags);
1108                 timeout = schedule_timeout_uninterruptible(timeout - now);
1109                 spin_lock_irqsave(&hwif->lock, flags);
1110         } while (timeout);
1111         finish_wait(&ide_park_wq, &wait);
1112
1113         /*
1114          * First, reset any device state data we were maintaining
1115          * for any of the drives on this interface.
1116          */
1117         ide_port_for_each_dev(i, tdrive, hwif)
1118                 pre_reset(tdrive);
1119
1120         if (io_ports->ctl_addr == 0) {
1121                 spin_unlock_irqrestore(&hwif->lock, flags);
1122                 ide_complete_drive_reset(drive, -ENXIO);
1123                 return ide_stopped;
1124         }
1125
1126         /*
1127          * Note that we also set nIEN while resetting the device,
1128          * to mask unwanted interrupts from the interface during the reset.
1129          * However, due to the design of PC hardware, this will cause an
1130          * immediate interrupt due to the edge transition it produces.
1131          * This single interrupt gives us a "fast poll" for drives that
1132          * recover from reset very quickly, saving us the first 50ms wait time.
1133          *
1134          * TODO: add ->softreset method and stop abusing ->set_irq
1135          */
1136         /* set SRST and nIEN */
1137         tp_ops->set_irq(hwif, 4);
1138         /* more than enough time */
1139         udelay(10);
1140         /* clear SRST, leave nIEN (unless device is on the quirk list) */
1141         tp_ops->set_irq(hwif, drive->quirk_list == 2);
1142         /* more than enough time */
1143         udelay(10);
1144         hwif->poll_timeout = jiffies + WAIT_WORSTCASE;
1145         hwif->polling = 1;
1146         __ide_set_handler(drive, &reset_pollfunc, HZ/20, NULL);
1147
1148         /*
1149          * Some weird controller like resetting themselves to a strange
1150          * state when the disks are reset this way. At least, the Winbond
1151          * 553 documentation says that
1152          */
1153         port_ops = hwif->port_ops;
1154         if (port_ops && port_ops->resetproc)
1155                 port_ops->resetproc(drive);
1156
1157         spin_unlock_irqrestore(&hwif->lock, flags);
1158         return ide_started;
1159 }
1160
1161 /*
1162  * ide_do_reset() is the entry point to the drive/interface reset code.
1163  */
1164
1165 ide_startstop_t ide_do_reset (ide_drive_t *drive)
1166 {
1167         return do_reset1(drive, 0);
1168 }
1169
1170 EXPORT_SYMBOL(ide_do_reset);
1171
1172 /*
1173  * ide_wait_not_busy() waits for the currently selected device on the hwif
1174  * to report a non-busy status, see comments in ide_probe_port().
1175  */
1176 int ide_wait_not_busy(ide_hwif_t *hwif, unsigned long timeout)
1177 {
1178         u8 stat = 0;
1179
1180         while(timeout--) {
1181                 /*
1182                  * Turn this into a schedule() sleep once I'm sure
1183                  * about locking issues (2.5 work ?).
1184                  */
1185                 mdelay(1);
1186                 stat = hwif->tp_ops->read_status(hwif);
1187                 if ((stat & ATA_BUSY) == 0)
1188                         return 0;
1189                 /*
1190                  * Assume a value of 0xff means nothing is connected to
1191                  * the interface and it doesn't implement the pull-down
1192                  * resistor on D7.
1193                  */
1194                 if (stat == 0xff)
1195                         return -ENODEV;
1196                 touch_softlockup_watchdog();
1197                 touch_nmi_watchdog();
1198         }
1199         return -EBUSY;
1200 }