blob: c9d15be4c48d3c54eaa998a330082fb6727fd193 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 2000-2002 Andre Hedrick <andre@linux-ide.org>
3 * Copyright (C) 2003 Red Hat <alan@redhat.com>
4 *
5 */
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#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/hdreg.h>
22#include <linux/ide.h>
23#include <linux/bitops.h>
Michal Schmidt1e862402006-07-30 03:03:29 -070024#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include <asm/byteorder.h>
27#include <asm/irq.h>
28#include <asm/uaccess.h>
29#include <asm/io.h>
30
31/*
32 * Conventional PIO operations for ATA devices
33 */
34
35static u8 ide_inb (unsigned long port)
36{
37 return (u8) inb(port);
38}
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040static void ide_outb (u8 val, unsigned long port)
41{
42 outb(val, port);
43}
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/*
46 * MMIO operations, typically used for SATA controllers
47 */
48
49static u8 ide_mm_inb (unsigned long port)
50{
51 return (u8) readb((void __iomem *) port);
52}
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054static void ide_mm_outb (u8 value, unsigned long port)
55{
56 writeb(value, (void __iomem *) port);
57}
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059void SELECT_DRIVE (ide_drive_t *drive)
60{
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +020061 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +020062 const struct ide_port_ops *port_ops = hwif->port_ops;
Bartlomiej Zolnierkiewicz40f095f2008-07-23 19:55:53 +020063 ide_task_t task;
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +020064
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +020065 if (port_ops && port_ops->selectproc)
66 port_ops->selectproc(drive);
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +020067
Bartlomiej Zolnierkiewicz40f095f2008-07-23 19:55:53 +020068 memset(&task, 0, sizeof(task));
69 task.tf_flags = IDE_TFLAG_OUT_DEVICE;
70
71 drive->hwif->tf_load(drive, &task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
73
Bartlomiej Zolnierkiewiczed4af482008-07-15 21:21:48 +020074void SELECT_MASK(ide_drive_t *drive, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +020076 const struct ide_port_ops *port_ops = drive->hwif->port_ops;
77
78 if (port_ops && port_ops->maskproc)
79 port_ops->maskproc(drive, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
81
Bartlomiej Zolnierkiewiczc6dfa862008-07-23 19:55:51 +020082static void ide_exec_command(ide_hwif_t *hwif, u8 cmd)
83{
84 if (hwif->host_flags & IDE_HFLAG_MMIO)
85 writeb(cmd, (void __iomem *)hwif->io_ports.command_addr);
86 else
87 outb(cmd, hwif->io_ports.command_addr);
88}
89
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +020090static 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
Bartlomiej Zolnierkiewicz1f6d8a02008-07-23 19:55:52 +020098static u8 ide_read_altstatus(ide_hwif_t *hwif)
99{
100 if (hwif->host_flags & IDE_HFLAG_MMIO)
101 return readb((void __iomem *)hwif->io_ports.ctl_addr);
102 else
103 return inb(hwif->io_ports.ctl_addr);
104}
105
Bartlomiej Zolnierkiewiczb2f951a2008-07-23 19:55:50 +0200106static u8 ide_read_sff_dma_status(ide_hwif_t *hwif)
107{
108 if (hwif->host_flags & IDE_HFLAG_MMIO)
Bartlomiej Zolnierkiewiczcab7f8e2008-07-23 19:55:51 +0200109 return readb((void __iomem *)(hwif->dma_base + ATA_DMA_STATUS));
Bartlomiej Zolnierkiewiczb2f951a2008-07-23 19:55:50 +0200110 else
Bartlomiej Zolnierkiewiczcab7f8e2008-07-23 19:55:51 +0200111 return inb(hwif->dma_base + ATA_DMA_STATUS);
Bartlomiej Zolnierkiewiczb2f951a2008-07-23 19:55:50 +0200112}
113
Bartlomiej Zolnierkiewicz6e6afb32008-07-23 19:55:52 +0200114static void ide_set_irq(ide_hwif_t *hwif, int on)
115{
116 u8 ctl = ATA_DEVCTL_OBS;
117
118 if (on == 4) { /* hack for SRST */
119 ctl |= 4;
120 on &= ~4;
121 }
122
123 ctl |= on ? 0 : 2;
124
125 if (hwif->host_flags & IDE_HFLAG_MMIO)
126 writeb(ctl, (void __iomem *)hwif->io_ports.ctl_addr);
127 else
128 outb(ctl, hwif->io_ports.ctl_addr);
129}
130
Bartlomiej Zolnierkiewicz94cd5b62008-04-28 23:44:40 +0200131static void ide_tf_load(ide_drive_t *drive, ide_task_t *task)
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200132{
133 ide_hwif_t *hwif = drive->hwif;
134 struct ide_io_ports *io_ports = &hwif->io_ports;
135 struct ide_taskfile *tf = &task->tf;
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200136 void (*tf_outb)(u8 addr, unsigned long port);
137 u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200138 u8 HIHI = (task->tf_flags & IDE_TFLAG_LBA48) ? 0xE0 : 0xEF;
139
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200140 if (mmio)
141 tf_outb = ide_mm_outb;
142 else
143 tf_outb = ide_outb;
144
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200145 if (task->tf_flags & IDE_TFLAG_FLAGGED)
146 HIHI = 0xFF;
147
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200148 if (task->tf_flags & IDE_TFLAG_OUT_DATA) {
149 u16 data = (tf->hob_data << 8) | tf->data;
150
151 if (mmio)
152 writew(data, (void __iomem *)io_ports->data_addr);
153 else
154 outw(data, io_ports->data_addr);
155 }
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200156
157 if (task->tf_flags & IDE_TFLAG_OUT_HOB_FEATURE)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200158 tf_outb(tf->hob_feature, io_ports->feature_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200159 if (task->tf_flags & IDE_TFLAG_OUT_HOB_NSECT)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200160 tf_outb(tf->hob_nsect, io_ports->nsect_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200161 if (task->tf_flags & IDE_TFLAG_OUT_HOB_LBAL)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200162 tf_outb(tf->hob_lbal, io_ports->lbal_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200163 if (task->tf_flags & IDE_TFLAG_OUT_HOB_LBAM)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200164 tf_outb(tf->hob_lbam, io_ports->lbam_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200165 if (task->tf_flags & IDE_TFLAG_OUT_HOB_LBAH)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200166 tf_outb(tf->hob_lbah, io_ports->lbah_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200167
168 if (task->tf_flags & IDE_TFLAG_OUT_FEATURE)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200169 tf_outb(tf->feature, io_ports->feature_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200170 if (task->tf_flags & IDE_TFLAG_OUT_NSECT)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200171 tf_outb(tf->nsect, io_ports->nsect_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200172 if (task->tf_flags & IDE_TFLAG_OUT_LBAL)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200173 tf_outb(tf->lbal, io_ports->lbal_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200174 if (task->tf_flags & IDE_TFLAG_OUT_LBAM)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200175 tf_outb(tf->lbam, io_ports->lbam_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200176 if (task->tf_flags & IDE_TFLAG_OUT_LBAH)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200177 tf_outb(tf->lbah, io_ports->lbah_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200178
179 if (task->tf_flags & IDE_TFLAG_OUT_DEVICE)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200180 tf_outb((tf->device & HIHI) | drive->select.all,
181 io_ports->device_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200182}
183
Bartlomiej Zolnierkiewicz94cd5b62008-04-28 23:44:40 +0200184static void ide_tf_read(ide_drive_t *drive, ide_task_t *task)
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200185{
186 ide_hwif_t *hwif = drive->hwif;
187 struct ide_io_ports *io_ports = &hwif->io_ports;
188 struct ide_taskfile *tf = &task->tf;
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200189 void (*tf_outb)(u8 addr, unsigned long port);
190 u8 (*tf_inb)(unsigned long port);
191 u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
192
193 if (mmio) {
194 tf_outb = ide_mm_outb;
195 tf_inb = ide_mm_inb;
196 } else {
197 tf_outb = ide_outb;
198 tf_inb = ide_inb;
199 }
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200200
201 if (task->tf_flags & IDE_TFLAG_IN_DATA) {
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200202 u16 data;
203
204 if (mmio)
205 data = readw((void __iomem *)io_ports->data_addr);
206 else
207 data = inw(io_ports->data_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200208
209 tf->data = data & 0xff;
210 tf->hob_data = (data >> 8) & 0xff;
211 }
212
213 /* be sure we're looking at the low order bits */
Bartlomiej Zolnierkiewiczff074882008-07-15 21:21:50 +0200214 tf_outb(ATA_DEVCTL_OBS & ~0x80, io_ports->ctl_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200215
Bartlomiej Zolnierkiewicz92eb4382008-07-23 19:55:53 +0200216 if (task->tf_flags & IDE_TFLAG_IN_FEATURE)
217 tf->feature = tf_inb(io_ports->feature_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200218 if (task->tf_flags & IDE_TFLAG_IN_NSECT)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200219 tf->nsect = tf_inb(io_ports->nsect_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200220 if (task->tf_flags & IDE_TFLAG_IN_LBAL)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200221 tf->lbal = tf_inb(io_ports->lbal_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200222 if (task->tf_flags & IDE_TFLAG_IN_LBAM)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200223 tf->lbam = tf_inb(io_ports->lbam_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200224 if (task->tf_flags & IDE_TFLAG_IN_LBAH)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200225 tf->lbah = tf_inb(io_ports->lbah_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200226 if (task->tf_flags & IDE_TFLAG_IN_DEVICE)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200227 tf->device = tf_inb(io_ports->device_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200228
229 if (task->tf_flags & IDE_TFLAG_LBA48) {
Bartlomiej Zolnierkiewiczff074882008-07-15 21:21:50 +0200230 tf_outb(ATA_DEVCTL_OBS | 0x80, io_ports->ctl_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200231
232 if (task->tf_flags & IDE_TFLAG_IN_HOB_FEATURE)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200233 tf->hob_feature = tf_inb(io_ports->feature_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200234 if (task->tf_flags & IDE_TFLAG_IN_HOB_NSECT)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200235 tf->hob_nsect = tf_inb(io_ports->nsect_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200236 if (task->tf_flags & IDE_TFLAG_IN_HOB_LBAL)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200237 tf->hob_lbal = tf_inb(io_ports->lbal_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200238 if (task->tf_flags & IDE_TFLAG_IN_HOB_LBAM)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200239 tf->hob_lbam = tf_inb(io_ports->lbam_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200240 if (task->tf_flags & IDE_TFLAG_IN_HOB_LBAH)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200241 tf->hob_lbah = tf_inb(io_ports->lbah_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200242 }
243}
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245/*
246 * Some localbus EIDE interfaces require a special access sequence
247 * when using 32-bit I/O instructions to transfer data. We call this
248 * the "vlb_sync" sequence, which consists of three successive reads
249 * of the sector count register location, with interrupts disabled
250 * to ensure that the reads all happen together.
251 */
Bartlomiej Zolnierkiewicz22cdd6c2008-04-28 23:44:41 +0200252static void ata_vlb_sync(unsigned long port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Bartlomiej Zolnierkiewicz22cdd6c2008-04-28 23:44:41 +0200254 (void)inb(port);
255 (void)inb(port);
256 (void)inb(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
259/*
260 * This is used for most PIO data transfers *from* the IDE interface
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200261 *
262 * These routines will round up any request for an odd number of bytes,
263 * so if an odd len is specified, be sure that there's at least one
264 * extra byte allocated for the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 */
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200266static void ata_input_data(ide_drive_t *drive, struct request *rq,
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200267 void *buf, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200269 ide_hwif_t *hwif = drive->hwif;
270 struct ide_io_ports *io_ports = &hwif->io_ports;
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200271 unsigned long data_addr = io_ports->data_addr;
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200272 u8 io_32bit = drive->io_32bit;
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200273 u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200275 len++;
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (io_32bit) {
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200278 unsigned long uninitialized_var(flags);
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +0200279
Bartlomiej Zolnierkiewicz22cdd6c2008-04-28 23:44:41 +0200280 if ((io_32bit & 2) && !mmio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 local_irq_save(flags);
Bartlomiej Zolnierkiewicz22cdd6c2008-04-28 23:44:41 +0200282 ata_vlb_sync(io_ports->nsect_addr);
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200283 }
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200284
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200285 if (mmio)
286 __ide_mm_insl((void __iomem *)data_addr, buf, len / 4);
287 else
288 insl(data_addr, buf, len / 4);
289
Bartlomiej Zolnierkiewicz22cdd6c2008-04-28 23:44:41 +0200290 if ((io_32bit & 2) && !mmio)
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200291 local_irq_restore(flags);
292
293 if ((len & 3) >= 2) {
294 if (mmio)
295 __ide_mm_insw((void __iomem *)data_addr,
296 (u8 *)buf + (len & ~3), 1);
297 else
298 insw(data_addr, (u8 *)buf + (len & ~3), 1);
299 }
300 } else {
301 if (mmio)
302 __ide_mm_insw((void __iomem *)data_addr, buf, len / 2);
303 else
304 insw(data_addr, buf, len / 2);
305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
308/*
309 * This is used for most PIO data transfers *to* the IDE interface
310 */
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200311static void ata_output_data(ide_drive_t *drive, struct request *rq,
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200312 void *buf, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200314 ide_hwif_t *hwif = drive->hwif;
315 struct ide_io_ports *io_ports = &hwif->io_ports;
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200316 unsigned long data_addr = io_ports->data_addr;
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200317 u8 io_32bit = drive->io_32bit;
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200318 u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 if (io_32bit) {
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200321 unsigned long uninitialized_var(flags);
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +0200322
Bartlomiej Zolnierkiewicz22cdd6c2008-04-28 23:44:41 +0200323 if ((io_32bit & 2) && !mmio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 local_irq_save(flags);
Bartlomiej Zolnierkiewicz22cdd6c2008-04-28 23:44:41 +0200325 ata_vlb_sync(io_ports->nsect_addr);
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200326 }
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200327
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200328 if (mmio)
329 __ide_mm_outsl((void __iomem *)data_addr, buf, len / 4);
330 else
331 outsl(data_addr, buf, len / 4);
332
Bartlomiej Zolnierkiewicz22cdd6c2008-04-28 23:44:41 +0200333 if ((io_32bit & 2) && !mmio)
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200334 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
351void default_hwif_transport(ide_hwif_t *hwif)
352{
Bartlomiej Zolnierkiewiczc6dfa862008-07-23 19:55:51 +0200353 hwif->exec_command = ide_exec_command;
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200354 hwif->read_status = ide_read_status;
Bartlomiej Zolnierkiewicz1f6d8a02008-07-23 19:55:52 +0200355 hwif->read_altstatus = ide_read_altstatus;
Bartlomiej Zolnierkiewiczb2f951a2008-07-23 19:55:50 +0200356 hwif->read_sff_dma_status = ide_read_sff_dma_status;
357
Bartlomiej Zolnierkiewicz6e6afb32008-07-23 19:55:52 +0200358 hwif->set_irq = ide_set_irq;
359
Bartlomiej Zolnierkiewicz94cd5b62008-04-28 23:44:40 +0200360 hwif->tf_load = ide_tf_load;
361 hwif->tf_read = ide_tf_read;
362
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200363 hwif->input_data = ata_input_data;
364 hwif->output_data = ata_output_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
Bartlomiej Zolnierkiewicz92eb4382008-07-23 19:55:53 +0200367u8 ide_read_error(ide_drive_t *drive)
368{
369 ide_task_t task;
370
371 memset(&task, 0, sizeof(task));
372 task.tf_flags = IDE_TFLAG_IN_FEATURE;
373
374 drive->hwif->tf_read(drive, &task);
375
376 return task.tf.error;
377}
378EXPORT_SYMBOL_GPL(ide_read_error);
379
Bartlomiej Zolnierkiewicz18236492008-07-23 19:55:54 +0200380void ide_read_bcount_and_ireason(ide_drive_t *drive, u16 *bcount, u8 *ireason)
381{
382 ide_task_t task;
383
384 memset(&task, 0, sizeof(task));
385 task.tf_flags = IDE_TFLAG_IN_LBAH | IDE_TFLAG_IN_LBAM |
386 IDE_TFLAG_IN_NSECT;
387
388 drive->hwif->tf_read(drive, &task);
389
390 *bcount = (task.tf.lbah << 8) | task.tf.lbam;
391 *ireason = task.tf.nsect & 3;
392}
393EXPORT_SYMBOL_GPL(ide_read_bcount_and_ireason);
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395void ide_fix_driveid (struct hd_driveid *id)
396{
397#ifndef __LITTLE_ENDIAN
398# ifdef __BIG_ENDIAN
399 int i;
400 u16 *stringcast;
401
402 id->config = __le16_to_cpu(id->config);
403 id->cyls = __le16_to_cpu(id->cyls);
404 id->reserved2 = __le16_to_cpu(id->reserved2);
405 id->heads = __le16_to_cpu(id->heads);
406 id->track_bytes = __le16_to_cpu(id->track_bytes);
407 id->sector_bytes = __le16_to_cpu(id->sector_bytes);
408 id->sectors = __le16_to_cpu(id->sectors);
409 id->vendor0 = __le16_to_cpu(id->vendor0);
410 id->vendor1 = __le16_to_cpu(id->vendor1);
411 id->vendor2 = __le16_to_cpu(id->vendor2);
412 stringcast = (u16 *)&id->serial_no[0];
413 for (i = 0; i < (20/2); i++)
414 stringcast[i] = __le16_to_cpu(stringcast[i]);
415 id->buf_type = __le16_to_cpu(id->buf_type);
416 id->buf_size = __le16_to_cpu(id->buf_size);
417 id->ecc_bytes = __le16_to_cpu(id->ecc_bytes);
418 stringcast = (u16 *)&id->fw_rev[0];
419 for (i = 0; i < (8/2); i++)
420 stringcast[i] = __le16_to_cpu(stringcast[i]);
421 stringcast = (u16 *)&id->model[0];
422 for (i = 0; i < (40/2); i++)
423 stringcast[i] = __le16_to_cpu(stringcast[i]);
424 id->dword_io = __le16_to_cpu(id->dword_io);
425 id->reserved50 = __le16_to_cpu(id->reserved50);
426 id->field_valid = __le16_to_cpu(id->field_valid);
427 id->cur_cyls = __le16_to_cpu(id->cur_cyls);
428 id->cur_heads = __le16_to_cpu(id->cur_heads);
429 id->cur_sectors = __le16_to_cpu(id->cur_sectors);
430 id->cur_capacity0 = __le16_to_cpu(id->cur_capacity0);
431 id->cur_capacity1 = __le16_to_cpu(id->cur_capacity1);
432 id->lba_capacity = __le32_to_cpu(id->lba_capacity);
433 id->dma_1word = __le16_to_cpu(id->dma_1word);
434 id->dma_mword = __le16_to_cpu(id->dma_mword);
435 id->eide_pio_modes = __le16_to_cpu(id->eide_pio_modes);
436 id->eide_dma_min = __le16_to_cpu(id->eide_dma_min);
437 id->eide_dma_time = __le16_to_cpu(id->eide_dma_time);
438 id->eide_pio = __le16_to_cpu(id->eide_pio);
439 id->eide_pio_iordy = __le16_to_cpu(id->eide_pio_iordy);
440 for (i = 0; i < 2; ++i)
441 id->words69_70[i] = __le16_to_cpu(id->words69_70[i]);
442 for (i = 0; i < 4; ++i)
443 id->words71_74[i] = __le16_to_cpu(id->words71_74[i]);
444 id->queue_depth = __le16_to_cpu(id->queue_depth);
445 for (i = 0; i < 4; ++i)
446 id->words76_79[i] = __le16_to_cpu(id->words76_79[i]);
447 id->major_rev_num = __le16_to_cpu(id->major_rev_num);
448 id->minor_rev_num = __le16_to_cpu(id->minor_rev_num);
449 id->command_set_1 = __le16_to_cpu(id->command_set_1);
450 id->command_set_2 = __le16_to_cpu(id->command_set_2);
451 id->cfsse = __le16_to_cpu(id->cfsse);
452 id->cfs_enable_1 = __le16_to_cpu(id->cfs_enable_1);
453 id->cfs_enable_2 = __le16_to_cpu(id->cfs_enable_2);
454 id->csf_default = __le16_to_cpu(id->csf_default);
455 id->dma_ultra = __le16_to_cpu(id->dma_ultra);
456 id->trseuc = __le16_to_cpu(id->trseuc);
457 id->trsEuc = __le16_to_cpu(id->trsEuc);
458 id->CurAPMvalues = __le16_to_cpu(id->CurAPMvalues);
459 id->mprc = __le16_to_cpu(id->mprc);
460 id->hw_config = __le16_to_cpu(id->hw_config);
461 id->acoustic = __le16_to_cpu(id->acoustic);
462 id->msrqs = __le16_to_cpu(id->msrqs);
463 id->sxfert = __le16_to_cpu(id->sxfert);
464 id->sal = __le16_to_cpu(id->sal);
465 id->spg = __le32_to_cpu(id->spg);
466 id->lba_capacity_2 = __le64_to_cpu(id->lba_capacity_2);
467 for (i = 0; i < 22; i++)
468 id->words104_125[i] = __le16_to_cpu(id->words104_125[i]);
469 id->last_lun = __le16_to_cpu(id->last_lun);
470 id->word127 = __le16_to_cpu(id->word127);
471 id->dlf = __le16_to_cpu(id->dlf);
472 id->csfo = __le16_to_cpu(id->csfo);
473 for (i = 0; i < 26; i++)
474 id->words130_155[i] = __le16_to_cpu(id->words130_155[i]);
475 id->word156 = __le16_to_cpu(id->word156);
476 for (i = 0; i < 3; i++)
477 id->words157_159[i] = __le16_to_cpu(id->words157_159[i]);
478 id->cfa_power = __le16_to_cpu(id->cfa_power);
479 for (i = 0; i < 14; i++)
480 id->words161_175[i] = __le16_to_cpu(id->words161_175[i]);
481 for (i = 0; i < 31; i++)
482 id->words176_205[i] = __le16_to_cpu(id->words176_205[i]);
483 for (i = 0; i < 48; i++)
484 id->words206_254[i] = __le16_to_cpu(id->words206_254[i]);
485 id->integrity_word = __le16_to_cpu(id->integrity_word);
486# else
487# error "Please fix <asm/byteorder.h>"
488# endif
489#endif
490}
491
Bartlomiej Zolnierkiewicz01745112007-11-05 21:42:29 +0100492/*
493 * ide_fixstring() cleans up and (optionally) byte-swaps a text string,
494 * removing leading/trailing blanks and compressing internal blanks.
495 * It is primarily used to tidy up the model name/number fields as
496 * returned by the WIN_[P]IDENTIFY commands.
497 */
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499void ide_fixstring (u8 *s, const int bytecount, const int byteswap)
500{
501 u8 *p = s, *end = &s[bytecount & ~1]; /* bytecount must be even */
502
503 if (byteswap) {
504 /* convert from big-endian to host byte order */
505 for (p = end ; p != s;) {
506 unsigned short *pp = (unsigned short *) (p -= 2);
507 *pp = ntohs(*pp);
508 }
509 }
510 /* strip leading blanks */
511 while (s != end && *s == ' ')
512 ++s;
513 /* compress internal blanks and strip trailing blanks */
514 while (s != end && *s) {
515 if (*s++ != ' ' || (s != end && *s && *s != ' '))
516 *p++ = *(s-1);
517 }
518 /* wipe out trailing garbage */
519 while (p != end)
520 *p++ = '\0';
521}
522
523EXPORT_SYMBOL(ide_fixstring);
524
525/*
526 * Needed for PCI irq sharing
527 */
528int drive_is_ready (ide_drive_t *drive)
529{
530 ide_hwif_t *hwif = HWIF(drive);
531 u8 stat = 0;
532
533 if (drive->waiting_for_dma)
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200534 return hwif->dma_ops->dma_test_irq(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536#if 0
537 /* need to guarantee 400ns since last command was issued */
538 udelay(1);
539#endif
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 /*
542 * We do a passive status test under shared PCI interrupts on
543 * cards that truly share the ATA side interrupt, but may also share
544 * an interrupt with another pci card/device. We make no assumptions
545 * about possible isa-pnp and pci-pnp issues yet.
546 */
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200547 if (hwif->io_ports.ctl_addr)
Bartlomiej Zolnierkiewicz1f6d8a02008-07-23 19:55:52 +0200548 stat = hwif->read_altstatus(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 /* Note: this may clear a pending IRQ!! */
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200551 stat = hwif->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 if (stat & BUSY_STAT)
554 /* drive busy: definitely not interrupting */
555 return 0;
556
557 /* drive ready: *might* be interrupting */
558 return 1;
559}
560
561EXPORT_SYMBOL(drive_is_ready);
562
563/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 * This routine busy-waits for the drive status to be not "busy".
565 * It then checks the status for all of the "good" bits and none
566 * of the "bad" bits, and if all is okay it returns 0. All other
Bartlomiej Zolnierkiewicz74af21c2007-10-13 17:47:49 +0200567 * cases return error -- caller may then invoke ide_error().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 *
569 * This routine should get fixed to not hog the cpu during extra long waits..
570 * That could be done by busy-waiting for the first jiffy or two, and then
571 * setting a timer to wake up at half second intervals thereafter,
572 * until timeout is achieved, before timing out.
573 */
Bartlomiej Zolnierkiewiczaedea592007-10-13 17:47:50 +0200574static int __ide_wait_stat(ide_drive_t *drive, u8 good, u8 bad, unsigned long timeout, u8 *rstat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200576 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 unsigned long flags;
Bartlomiej Zolnierkiewicz74af21c2007-10-13 17:47:49 +0200578 int i;
579 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 udelay(1); /* spec allows drive 400ns to assert "BUSY" */
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200582 stat = hwif->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100583
584 if (stat & BUSY_STAT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 local_irq_set(flags);
586 timeout += jiffies;
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200587 while ((stat = hwif->read_status(hwif)) & BUSY_STAT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (time_after(jiffies, timeout)) {
589 /*
590 * One last read after the timeout in case
591 * heavy interrupt load made us not make any
592 * progress during the timeout..
593 */
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200594 stat = hwif->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 if (!(stat & BUSY_STAT))
596 break;
597
598 local_irq_restore(flags);
Bartlomiej Zolnierkiewicz74af21c2007-10-13 17:47:49 +0200599 *rstat = stat;
600 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
602 }
603 local_irq_restore(flags);
604 }
605 /*
606 * Allow status to settle, then read it again.
607 * A few rare drives vastly violate the 400ns spec here,
608 * so we'll wait up to 10usec for a "good" status
609 * rather than expensively fail things immediately.
610 * This fix courtesy of Matthew Faupel & Niccolo Rigacci.
611 */
612 for (i = 0; i < 10; i++) {
613 udelay(1);
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200614 stat = hwif->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100615
616 if (OK_STAT(stat, good, bad)) {
Bartlomiej Zolnierkiewicz74af21c2007-10-13 17:47:49 +0200617 *rstat = stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 return 0;
Bartlomiej Zolnierkiewicz74af21c2007-10-13 17:47:49 +0200619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
Bartlomiej Zolnierkiewicz74af21c2007-10-13 17:47:49 +0200621 *rstat = stat;
622 return -EFAULT;
623}
624
625/*
626 * In case of error returns error value after doing "*startstop = ide_error()".
627 * The caller should return the updated value of "startstop" in this case,
628 * "startstop" is unchanged when the function returns 0.
629 */
630int ide_wait_stat(ide_startstop_t *startstop, ide_drive_t *drive, u8 good, u8 bad, unsigned long timeout)
631{
632 int err;
633 u8 stat;
634
635 /* bail early if we've exceeded max_failures */
636 if (drive->max_failures && (drive->failures > drive->max_failures)) {
637 *startstop = ide_stopped;
638 return 1;
639 }
640
641 err = __ide_wait_stat(drive, good, bad, timeout, &stat);
642
643 if (err) {
644 char *s = (err == -EBUSY) ? "status timeout" : "status error";
645 *startstop = ide_error(drive, s, stat);
646 }
647
648 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
650
651EXPORT_SYMBOL(ide_wait_stat);
652
Bartlomiej Zolnierkiewicza5b7e702007-08-20 22:42:56 +0200653/**
654 * ide_in_drive_list - look for drive in black/white list
655 * @id: drive identifier
656 * @drive_table: list to inspect
657 *
658 * Look for a drive in the blacklist and the whitelist tables
659 * Returns 1 if the drive is found in the table.
660 */
661
662int ide_in_drive_list(struct hd_driveid *id, const struct drive_list_entry *drive_table)
663{
664 for ( ; drive_table->id_model; drive_table++)
665 if ((!strcmp(drive_table->id_model, id->model)) &&
666 (!drive_table->id_firmware ||
667 strstr(id->fw_rev, drive_table->id_firmware)))
668 return 1;
669 return 0;
670}
671
Bartlomiej Zolnierkiewiczb0244a02007-08-20 22:42:57 +0200672EXPORT_SYMBOL_GPL(ide_in_drive_list);
673
Bartlomiej Zolnierkiewicza5b7e702007-08-20 22:42:56 +0200674/*
675 * Early UDMA66 devices don't set bit14 to 1, only bit13 is valid.
676 * We list them here and depend on the device side cable detection for them.
Bartlomiej Zolnierkiewicz8588a2b72007-10-26 20:31:16 +0200677 *
678 * Some optical devices with the buggy firmwares have the same problem.
Bartlomiej Zolnierkiewicza5b7e702007-08-20 22:42:56 +0200679 */
680static const struct drive_list_entry ivb_list[] = {
681 { "QUANTUM FIREBALLlct10 05" , "A03.0900" },
Bartlomiej Zolnierkiewicz8588a2b72007-10-26 20:31:16 +0200682 { "TSSTcorp CDDVDW SH-S202J" , "SB00" },
Peter Missele97564f2007-11-27 21:35:57 +0100683 { "TSSTcorp CDDVDW SH-S202J" , "SB01" },
684 { "TSSTcorp CDDVDW SH-S202N" , "SB00" },
685 { "TSSTcorp CDDVDW SH-S202N" , "SB01" },
Alexander Smal3ced5c42008-04-28 23:44:43 +0200686 { "TSSTcorp CDDVDW SH-S202H" , "SB00" },
687 { "TSSTcorp CDDVDW SH-S202H" , "SB01" },
Bartlomiej Zolnierkiewicza5b7e702007-08-20 22:42:56 +0200688 { NULL , NULL }
689};
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691/*
692 * All hosts that use the 80c ribbon must use!
693 * The name is derived from upper byte of word 93 and the 80c ribbon.
694 */
695u8 eighty_ninty_three (ide_drive_t *drive)
696{
Bartlomiej Zolnierkiewicz7f8f48a2007-05-10 00:01:10 +0200697 ide_hwif_t *hwif = drive->hwif;
698 struct hd_driveid *id = drive->id;
Bartlomiej Zolnierkiewicza5b7e702007-08-20 22:42:56 +0200699 int ivb = ide_in_drive_list(id, ivb_list);
Bartlomiej Zolnierkiewicz7f8f48a2007-05-10 00:01:10 +0200700
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200701 if (hwif->cbl == ATA_CBL_PATA40_SHORT)
702 return 1;
703
Bartlomiej Zolnierkiewicza5b7e702007-08-20 22:42:56 +0200704 if (ivb)
705 printk(KERN_DEBUG "%s: skipping word 93 validity check\n",
706 drive->name);
707
George Kibardinb98f8802008-01-10 23:03:42 +0100708 if (ide_dev_is_sata(id) && !ivb)
709 return 1;
710
Bartlomiej Zolnierkiewicza5b7e702007-08-20 22:42:56 +0200711 if (hwif->cbl != ATA_CBL_PATA80 && !ivb)
Bartlomiej Zolnierkiewicz7f8f48a2007-05-10 00:01:10 +0200712 goto no_80w;
Alan Cox1a1276e2006-06-28 04:26:58 -0700713
Bartlomiej Zolnierkiewiczf68d9322007-03-26 23:03:18 +0200714 /*
715 * FIXME:
Bartlomiej Zolnierkiewiczf367bed2008-03-29 19:48:21 +0100716 * - change master/slave IDENTIFY order
Bartlomiej Zolnierkiewicza5b7e702007-08-20 22:42:56 +0200717 * - force bit13 (80c cable present) check also for !ivb devices
Bartlomiej Zolnierkiewiczf68d9322007-03-26 23:03:18 +0200718 * (unless the slave device is pre-ATA3)
719 */
Bartlomiej Zolnierkiewicza5b7e702007-08-20 22:42:56 +0200720 if ((id->hw_config & 0x4000) || (ivb && (id->hw_config & 0x2000)))
Bartlomiej Zolnierkiewicz7f8f48a2007-05-10 00:01:10 +0200721 return 1;
722
723no_80w:
724 if (drive->udma33_warned == 1)
725 return 0;
726
727 printk(KERN_WARNING "%s: %s side 80-wire cable detection failed, "
728 "limiting max speed to UDMA33\n",
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200729 drive->name,
730 hwif->cbl == ATA_CBL_PATA80 ? "drive" : "host");
Bartlomiej Zolnierkiewicz7f8f48a2007-05-10 00:01:10 +0200731
732 drive->udma33_warned = 1;
733
734 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
Bartlomiej Zolnierkiewicz8a455132007-10-20 00:32:36 +0200737int ide_driveid_update(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Bartlomiej Zolnierkiewicz8a455132007-10-20 00:32:36 +0200739 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 struct hd_driveid *id;
Bartlomiej Zolnierkiewicz8a455132007-10-20 00:32:36 +0200741 unsigned long timeout, flags;
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100742 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 /*
745 * Re-read drive->id for possible DMA mode
746 * change (copied from ide-probe.c)
747 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 SELECT_MASK(drive, 1);
Bartlomiej Zolnierkiewicz6e6afb32008-07-23 19:55:52 +0200750 hwif->set_irq(hwif, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 msleep(50);
Bartlomiej Zolnierkiewiczc6dfa862008-07-23 19:55:51 +0200752 hwif->exec_command(hwif, WIN_IDENTIFY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 timeout = jiffies + WAIT_WORSTCASE;
754 do {
755 if (time_after(jiffies, timeout)) {
756 SELECT_MASK(drive, 0);
757 return 0; /* drive timed-out */
758 }
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 msleep(50); /* give drive a breather */
Bartlomiej Zolnierkiewicz1f6d8a02008-07-23 19:55:52 +0200761 stat = hwif->read_altstatus(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100762 } while (stat & BUSY_STAT);
763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 msleep(50); /* wait for IRQ and DRQ_STAT */
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200765 stat = hwif->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100766
767 if (!OK_STAT(stat, DRQ_STAT, BAD_R_STAT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 SELECT_MASK(drive, 0);
769 printk("%s: CHECK for good STATUS\n", drive->name);
770 return 0;
771 }
772 local_irq_save(flags);
773 SELECT_MASK(drive, 0);
774 id = kmalloc(SECTOR_WORDS*4, GFP_ATOMIC);
775 if (!id) {
776 local_irq_restore(flags);
777 return 0;
778 }
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200779 hwif->input_data(drive, NULL, id, SECTOR_SIZE);
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200780 (void)hwif->read_status(hwif); /* clear drive IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 local_irq_enable();
782 local_irq_restore(flags);
783 ide_fix_driveid(id);
784 if (id) {
785 drive->id->dma_ultra = id->dma_ultra;
786 drive->id->dma_mword = id->dma_mword;
787 drive->id->dma_1word = id->dma_1word;
788 /* anything more ? */
789 kfree(id);
Bartlomiej Zolnierkiewicz3ab7efe2007-12-12 23:31:58 +0100790
791 if (drive->using_dma && ide_id_dma_bug(drive))
792 ide_dma_off(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
794
795 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
797
Bartlomiej Zolnierkiewicz74af21c2007-10-13 17:47:49 +0200798int ide_config_drive_speed(ide_drive_t *drive, u8 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Bartlomiej Zolnierkiewicz74af21c2007-10-13 17:47:49 +0200800 ide_hwif_t *hwif = drive->hwif;
Sergei Shtylyov89613e62007-11-27 21:35:52 +0100801 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 u8 stat;
Bartlomiej Zolnierkiewicz59be2c82008-07-23 19:55:52 +0200803 ide_task_t task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805#ifdef CONFIG_BLK_DEV_IDEDMA
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200806 if (hwif->dma_ops) /* check if host supports DMA */
807 hwif->dma_ops->dma_host_set(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808#endif
809
Sergei Shtylyov89613e62007-11-27 21:35:52 +0100810 /* Skip setting PIO flow-control modes on pre-EIDE drives */
811 if ((speed & 0xf8) == XFER_PIO_0 && !(drive->id->capability & 0x08))
812 goto skip;
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 /*
815 * Don't use ide_wait_cmd here - it will
816 * attempt to set_geometry and recalibrate,
817 * but for some reason these don't work at
818 * this point (lost interrupt).
819 */
820 /*
821 * Select the drive, and issue the SETFEATURES command
822 */
823 disable_irq_nosync(hwif->irq);
824
825 /*
826 * FIXME: we race against the running IRQ here if
827 * this is called from non IRQ context. If we use
828 * disable_irq() we hang on the error path. Work
829 * is needed.
830 */
831
832 udelay(1);
833 SELECT_DRIVE(drive);
834 SELECT_MASK(drive, 0);
835 udelay(1);
Bartlomiej Zolnierkiewicz6e6afb32008-07-23 19:55:52 +0200836 hwif->set_irq(hwif, 0);
Bartlomiej Zolnierkiewicz59be2c82008-07-23 19:55:52 +0200837
838 memset(&task, 0, sizeof(task));
839 task.tf_flags = IDE_TFLAG_OUT_FEATURE | IDE_TFLAG_OUT_NSECT;
840 task.tf.feature = SETFEATURES_XFER;
841 task.tf.nsect = speed;
842
843 hwif->tf_load(drive, &task);
844
Bartlomiej Zolnierkiewiczc6dfa862008-07-23 19:55:51 +0200845 hwif->exec_command(hwif, WIN_SETFEATURES);
Bartlomiej Zolnierkiewicz59be2c82008-07-23 19:55:52 +0200846
Bartlomiej Zolnierkiewicz81ca6912008-01-26 20:13:08 +0100847 if (drive->quirk_list == 2)
Bartlomiej Zolnierkiewicz6e6afb32008-07-23 19:55:52 +0200848 hwif->set_irq(hwif, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Bartlomiej Zolnierkiewicz74af21c2007-10-13 17:47:49 +0200850 error = __ide_wait_stat(drive, drive->ready_stat,
851 BUSY_STAT|DRQ_STAT|ERR_STAT,
852 WAIT_CMD, &stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 SELECT_MASK(drive, 0);
855
856 enable_irq(hwif->irq);
857
858 if (error) {
859 (void) ide_dump_status(drive, "set_drive_speed_status", stat);
860 return error;
861 }
862
863 drive->id->dma_ultra &= ~0xFF00;
864 drive->id->dma_mword &= ~0x0F00;
865 drive->id->dma_1word &= ~0x0F00;
866
Sergei Shtylyov89613e62007-11-27 21:35:52 +0100867 skip:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868#ifdef CONFIG_BLK_DEV_IDEDMA
Bartlomiej Zolnierkiewiczba4b2e62008-07-23 19:55:55 +0200869 if (speed >= XFER_SW_DMA_0 && drive->using_dma)
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200870 hwif->dma_ops->dma_host_set(drive, 1);
871 else if (hwif->dma_ops) /* check if host supports DMA */
Bartlomiej Zolnierkiewicz4a546e02008-01-26 20:13:01 +0100872 ide_dma_off_quietly(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873#endif
874
875 switch(speed) {
876 case XFER_UDMA_7: drive->id->dma_ultra |= 0x8080; break;
877 case XFER_UDMA_6: drive->id->dma_ultra |= 0x4040; break;
878 case XFER_UDMA_5: drive->id->dma_ultra |= 0x2020; break;
879 case XFER_UDMA_4: drive->id->dma_ultra |= 0x1010; break;
880 case XFER_UDMA_3: drive->id->dma_ultra |= 0x0808; break;
881 case XFER_UDMA_2: drive->id->dma_ultra |= 0x0404; break;
882 case XFER_UDMA_1: drive->id->dma_ultra |= 0x0202; break;
883 case XFER_UDMA_0: drive->id->dma_ultra |= 0x0101; break;
884 case XFER_MW_DMA_2: drive->id->dma_mword |= 0x0404; break;
885 case XFER_MW_DMA_1: drive->id->dma_mword |= 0x0202; break;
886 case XFER_MW_DMA_0: drive->id->dma_mword |= 0x0101; break;
887 case XFER_SW_DMA_2: drive->id->dma_1word |= 0x0404; break;
888 case XFER_SW_DMA_1: drive->id->dma_1word |= 0x0202; break;
889 case XFER_SW_DMA_0: drive->id->dma_1word |= 0x0101; break;
890 default: break;
891 }
892 if (!drive->init_speed)
893 drive->init_speed = speed;
894 drive->current_speed = speed;
895 return error;
896}
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898/*
899 * This should get invoked any time we exit the driver to
900 * wait for an interrupt response from a drive. handler() points
901 * at the appropriate code to handle the next interrupt, and a
902 * timer is started to prevent us from waiting forever in case
903 * something goes wrong (see the ide_timer_expiry() handler later on).
904 *
905 * See also ide_execute_command
906 */
907static void __ide_set_handler (ide_drive_t *drive, ide_handler_t *handler,
908 unsigned int timeout, ide_expiry_t *expiry)
909{
910 ide_hwgroup_t *hwgroup = HWGROUP(drive);
911
Sergei Shtylyovd30a4262008-02-11 00:32:12 +0100912 BUG_ON(hwgroup->handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 hwgroup->handler = handler;
914 hwgroup->expiry = expiry;
915 hwgroup->timer.expires = jiffies + timeout;
Sergei Shtylyovd30a4262008-02-11 00:32:12 +0100916 hwgroup->req_gen_timer = hwgroup->req_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 add_timer(&hwgroup->timer);
918}
919
920void ide_set_handler (ide_drive_t *drive, ide_handler_t *handler,
921 unsigned int timeout, ide_expiry_t *expiry)
922{
923 unsigned long flags;
924 spin_lock_irqsave(&ide_lock, flags);
925 __ide_set_handler(drive, handler, timeout, expiry);
926 spin_unlock_irqrestore(&ide_lock, flags);
927}
928
929EXPORT_SYMBOL(ide_set_handler);
930
931/**
932 * ide_execute_command - execute an IDE command
933 * @drive: IDE drive to issue the command against
934 * @command: command byte to write
935 * @handler: handler for next phase
936 * @timeout: timeout for command
937 * @expiry: handler to run on timeout
938 *
939 * Helper function to issue an IDE command. This handles the
940 * atomicity requirements, command timing and ensures that the
941 * handler and IRQ setup do not race. All IDE command kick off
942 * should go via this function or do equivalent locking.
943 */
Bartlomiej Zolnierkiewiczcd2a2d92008-01-25 22:17:06 +0100944
945void ide_execute_command(ide_drive_t *drive, u8 cmd, ide_handler_t *handler,
946 unsigned timeout, ide_expiry_t *expiry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
948 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz629f9442008-02-02 19:56:46 +0100950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 spin_lock_irqsave(&ide_lock, flags);
Bartlomiej Zolnierkiewicz629f9442008-02-02 19:56:46 +0100952 __ide_set_handler(drive, handler, timeout, expiry);
Bartlomiej Zolnierkiewiczc6dfa862008-07-23 19:55:51 +0200953 hwif->exec_command(hwif, cmd);
Bartlomiej Zolnierkiewicz629f9442008-02-02 19:56:46 +0100954 /*
955 * Drive takes 400nS to respond, we must avoid the IRQ being
956 * serviced before that.
957 *
958 * FIXME: we could skip this delay with care on non shared devices
959 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 ndelay(400);
961 spin_unlock_irqrestore(&ide_lock, flags);
962}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963EXPORT_SYMBOL(ide_execute_command);
964
Bartlomiej Zolnierkiewicz1fc14252008-04-28 23:44:39 +0200965void ide_execute_pkt_cmd(ide_drive_t *drive)
966{
967 ide_hwif_t *hwif = drive->hwif;
968 unsigned long flags;
969
970 spin_lock_irqsave(&ide_lock, flags);
Bartlomiej Zolnierkiewiczc6dfa862008-07-23 19:55:51 +0200971 hwif->exec_command(hwif, WIN_PACKETCMD);
Bartlomiej Zolnierkiewicz1fc14252008-04-28 23:44:39 +0200972 ndelay(400);
973 spin_unlock_irqrestore(&ide_lock, flags);
974}
975EXPORT_SYMBOL_GPL(ide_execute_pkt_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Elias Oltmanns64a8f002008-07-16 20:33:48 +0200977static inline void ide_complete_drive_reset(ide_drive_t *drive, int err)
Elias Oltmanns79e36a92008-07-16 20:33:48 +0200978{
979 struct request *rq = drive->hwif->hwgroup->rq;
980
981 if (rq && blk_special_request(rq) && rq->cmd[0] == REQ_DRIVE_RESET)
Elias Oltmanns64a8f002008-07-16 20:33:48 +0200982 ide_end_request(drive, err ? err : 1, 0);
Elias Oltmanns79e36a92008-07-16 20:33:48 +0200983}
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985/* needed below */
986static ide_startstop_t do_reset1 (ide_drive_t *, int);
987
988/*
989 * atapi_reset_pollfunc() gets invoked to poll the interface for completion every 50ms
990 * during an atapi drive reset operation. If the drive has not yet responded,
991 * and we have not yet hit our maximum waiting time, then the timer is restarted
992 * for another 50ms.
993 */
994static ide_startstop_t atapi_reset_pollfunc (ide_drive_t *drive)
995{
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +0200996 ide_hwif_t *hwif = drive->hwif;
997 ide_hwgroup_t *hwgroup = hwif->hwgroup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 u8 stat;
999
1000 SELECT_DRIVE(drive);
1001 udelay (10);
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +02001002 stat = hwif->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +01001004 if (OK_STAT(stat, 0, BUSY_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 printk("%s: ATAPI reset complete\n", drive->name);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +01001006 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 if (time_before(jiffies, hwgroup->poll_timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 ide_set_handler(drive, &atapi_reset_pollfunc, HZ/20, NULL);
1009 /* continue polling */
1010 return ide_started;
1011 }
1012 /* end of polling */
1013 hwgroup->polling = 0;
1014 printk("%s: ATAPI reset timed-out, status=0x%02x\n",
1015 drive->name, stat);
1016 /* do it the old fashioned way */
1017 return do_reset1(drive, 1);
1018 }
1019 /* done polling */
1020 hwgroup->polling = 0;
Elias Oltmanns64a8f002008-07-16 20:33:48 +02001021 ide_complete_drive_reset(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return ide_stopped;
1023}
1024
1025/*
1026 * reset_pollfunc() gets invoked to poll the interface for completion every 50ms
1027 * during an ide reset operation. If the drives have not yet responded,
1028 * and we have not yet hit our maximum waiting time, then the timer is restarted
1029 * for another 50ms.
1030 */
1031static ide_startstop_t reset_pollfunc (ide_drive_t *drive)
1032{
1033 ide_hwgroup_t *hwgroup = HWGROUP(drive);
1034 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001035 const struct ide_port_ops *port_ops = hwif->port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 u8 tmp;
Elias Oltmanns64a8f002008-07-16 20:33:48 +02001037 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001039 if (port_ops && port_ops->reset_poll) {
Elias Oltmanns64a8f002008-07-16 20:33:48 +02001040 err = port_ops->reset_poll(drive);
1041 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 printk(KERN_ERR "%s: host reset_poll failure for %s.\n",
1043 hwif->name, drive->name);
Elias Oltmanns79e36a92008-07-16 20:33:48 +02001044 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046 }
1047
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +02001048 tmp = hwif->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +01001049
1050 if (!OK_STAT(tmp, 0, BUSY_STAT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 if (time_before(jiffies, hwgroup->poll_timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 ide_set_handler(drive, &reset_pollfunc, HZ/20, NULL);
1053 /* continue polling */
1054 return ide_started;
1055 }
1056 printk("%s: reset timed-out, status=0x%02x\n", hwif->name, tmp);
1057 drive->failures++;
Elias Oltmanns64a8f002008-07-16 20:33:48 +02001058 err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 } else {
1060 printk("%s: reset: ", hwif->name);
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +01001061 tmp = ide_read_error(drive);
1062
1063 if (tmp == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 printk("success\n");
1065 drive->failures = 0;
1066 } else {
1067 drive->failures++;
1068 printk("master: ");
1069 switch (tmp & 0x7f) {
1070 case 1: printk("passed");
1071 break;
1072 case 2: printk("formatter device error");
1073 break;
1074 case 3: printk("sector buffer error");
1075 break;
1076 case 4: printk("ECC circuitry error");
1077 break;
1078 case 5: printk("controlling MPU error");
1079 break;
1080 default:printk("error (0x%02x?)", tmp);
1081 }
1082 if (tmp & 0x80)
1083 printk("; slave: failed");
1084 printk("\n");
Elias Oltmanns64a8f002008-07-16 20:33:48 +02001085 err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
1087 }
Elias Oltmanns79e36a92008-07-16 20:33:48 +02001088out:
Elias Oltmanns64a8f002008-07-16 20:33:48 +02001089 hwgroup->polling = 0; /* done polling */
1090 ide_complete_drive_reset(drive, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 return ide_stopped;
1092}
1093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094static void ide_disk_pre_reset(ide_drive_t *drive)
1095{
1096 int legacy = (drive->id->cfs_enable_2 & 0x0400) ? 0 : 1;
1097
1098 drive->special.all = 0;
1099 drive->special.b.set_geometry = legacy;
1100 drive->special.b.recalibrate = legacy;
Bartlomiej Zolnierkiewicz4ee06b72008-01-25 22:17:08 +01001101 drive->mult_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 if (!drive->keep_settings && !drive->using_dma)
1103 drive->mult_req = 0;
1104 if (drive->mult_req != drive->mult_count)
1105 drive->special.b.set_multmode = 1;
1106}
1107
1108static void pre_reset(ide_drive_t *drive)
1109{
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001110 const struct ide_port_ops *port_ops = drive->hwif->port_ops;
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 if (drive->media == ide_disk)
1113 ide_disk_pre_reset(drive);
1114 else
1115 drive->post_reset = 1;
1116
Bartlomiej Zolnierkiewicz99ffbe02008-02-02 19:56:47 +01001117 if (drive->using_dma) {
1118 if (drive->crc_count)
Bartlomiej Zolnierkiewicz578cfa02008-02-02 19:56:47 +01001119 ide_check_dma_crc(drive);
Bartlomiej Zolnierkiewicz99ffbe02008-02-02 19:56:47 +01001120 else
1121 ide_dma_off(drive);
1122 }
1123
1124 if (!drive->keep_settings) {
1125 if (!drive->using_dma) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 drive->unmask = 0;
1127 drive->io_32bit = 0;
1128 }
1129 return;
1130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001132 if (port_ops && port_ops->pre_reset)
1133 port_ops->pre_reset(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Suleiman Souhlal513daad2007-03-26 23:03:20 +02001135 if (drive->current_speed != 0xff)
1136 drive->desired_speed = drive->current_speed;
1137 drive->current_speed = 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138}
1139
1140/*
1141 * do_reset1() attempts to recover a confused drive by resetting it.
1142 * Unfortunately, resetting a disk drive actually resets all devices on
1143 * the same interface, so it can really be thought of as resetting the
1144 * interface rather than resetting the drive.
1145 *
1146 * ATAPI devices have their own reset mechanism which allows them to be
1147 * individually reset without clobbering other devices on the same interface.
1148 *
1149 * Unfortunately, the IDE interface does not generate an interrupt to let
1150 * us know when the reset operation has finished, so we must poll for this.
1151 * Equally poor, though, is the fact that this may a very long time to complete,
1152 * (up to 30 seconds worstcase). So, instead of busy-waiting here for it,
1153 * we set a timer to poll at 50ms intervals.
1154 */
1155static ide_startstop_t do_reset1 (ide_drive_t *drive, int do_not_try_atapi)
1156{
1157 unsigned int unit;
1158 unsigned long flags;
1159 ide_hwif_t *hwif;
1160 ide_hwgroup_t *hwgroup;
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001161 struct ide_io_ports *io_ports;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001162 const struct ide_port_ops *port_ops;
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +02001163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 spin_lock_irqsave(&ide_lock, flags);
1165 hwif = HWIF(drive);
1166 hwgroup = HWGROUP(drive);
1167
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001168 io_ports = &hwif->io_ports;
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 /* We must not reset with running handlers */
Eric Sesterhenn125e1872006-06-23 02:06:06 -07001171 BUG_ON(hwgroup->handler != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
1173 /* For an ATAPI device, first try an ATAPI SRST. */
1174 if (drive->media != ide_disk && !do_not_try_atapi) {
1175 pre_reset(drive);
1176 SELECT_DRIVE(drive);
1177 udelay (20);
Bartlomiej Zolnierkiewiczc6dfa862008-07-23 19:55:51 +02001178 hwif->exec_command(hwif, WIN_SRST);
Alan Cox68ad9912005-06-27 15:24:25 -07001179 ndelay(400);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 hwgroup->poll_timeout = jiffies + WAIT_WORSTCASE;
1181 hwgroup->polling = 1;
1182 __ide_set_handler(drive, &atapi_reset_pollfunc, HZ/20, NULL);
1183 spin_unlock_irqrestore(&ide_lock, flags);
1184 return ide_started;
1185 }
1186
1187 /*
1188 * First, reset any device state data we were maintaining
1189 * for any of the drives on this interface.
1190 */
1191 for (unit = 0; unit < MAX_DRIVES; ++unit)
1192 pre_reset(&hwif->drives[unit]);
1193
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001194 if (io_ports->ctl_addr == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 spin_unlock_irqrestore(&ide_lock, flags);
Elias Oltmanns64a8f002008-07-16 20:33:48 +02001196 ide_complete_drive_reset(drive, -ENXIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 return ide_stopped;
1198 }
1199
1200 /*
1201 * Note that we also set nIEN while resetting the device,
1202 * to mask unwanted interrupts from the interface during the reset.
1203 * However, due to the design of PC hardware, this will cause an
1204 * immediate interrupt due to the edge transition it produces.
1205 * This single interrupt gives us a "fast poll" for drives that
1206 * recover from reset very quickly, saving us the first 50ms wait time.
Bartlomiej Zolnierkiewicz6e6afb32008-07-23 19:55:52 +02001207 *
1208 * TODO: add ->softreset method and stop abusing ->set_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 */
1210 /* set SRST and nIEN */
Bartlomiej Zolnierkiewicz6e6afb32008-07-23 19:55:52 +02001211 hwif->set_irq(hwif, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 /* more than enough time */
1213 udelay(10);
Bartlomiej Zolnierkiewicz6e6afb32008-07-23 19:55:52 +02001214 /* clear SRST, leave nIEN (unless device is on the quirk list) */
1215 hwif->set_irq(hwif, drive->quirk_list == 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 /* more than enough time */
1217 udelay(10);
1218 hwgroup->poll_timeout = jiffies + WAIT_WORSTCASE;
1219 hwgroup->polling = 1;
1220 __ide_set_handler(drive, &reset_pollfunc, HZ/20, NULL);
1221
1222 /*
1223 * Some weird controller like resetting themselves to a strange
1224 * state when the disks are reset this way. At least, the Winbond
1225 * 553 documentation says that
1226 */
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001227 port_ops = hwif->port_ops;
1228 if (port_ops && port_ops->resetproc)
1229 port_ops->resetproc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 spin_unlock_irqrestore(&ide_lock, flags);
1232 return ide_started;
1233}
1234
1235/*
1236 * ide_do_reset() is the entry point to the drive/interface reset code.
1237 */
1238
1239ide_startstop_t ide_do_reset (ide_drive_t *drive)
1240{
1241 return do_reset1(drive, 0);
1242}
1243
1244EXPORT_SYMBOL(ide_do_reset);
1245
1246/*
1247 * ide_wait_not_busy() waits for the currently selected device on the hwif
Bartlomiej Zolnierkiewicz9d501522008-02-01 23:09:36 +01001248 * to report a non-busy status, see comments in ide_probe_port().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 */
1250int ide_wait_not_busy(ide_hwif_t *hwif, unsigned long timeout)
1251{
1252 u8 stat = 0;
1253
1254 while(timeout--) {
1255 /*
1256 * Turn this into a schedule() sleep once I'm sure
1257 * about locking issues (2.5 work ?).
1258 */
1259 mdelay(1);
Bartlomiej Zolnierkiewiczb73c7ee2008-07-23 19:55:52 +02001260 stat = hwif->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 if ((stat & BUSY_STAT) == 0)
1262 return 0;
1263 /*
1264 * Assume a value of 0xff means nothing is connected to
1265 * the interface and it doesn't implement the pull-down
1266 * resistor on D7.
1267 */
1268 if (stat == 0xff)
1269 return -ENODEV;
Ingo Molnar6842f8c2006-02-03 03:04:55 -08001270 touch_softlockup_watchdog();
Michal Schmidt1e862402006-07-30 03:03:29 -07001271 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
1273 return -EBUSY;
1274}
1275
1276EXPORT_SYMBOL_GPL(ide_wait_not_busy);
1277