blob: 60e3048a25f173e0abd2ebfe4da9013916e17b04 [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
45static void ide_outbsync (ide_drive_t *drive, u8 addr, unsigned long port)
46{
47 outb(addr, port);
48}
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050void default_hwif_iops (ide_hwif_t *hwif)
51{
52 hwif->OUTB = ide_outb;
53 hwif->OUTBSYNC = ide_outbsync;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 hwif->INB = ide_inb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/*
58 * MMIO operations, typically used for SATA controllers
59 */
60
61static u8 ide_mm_inb (unsigned long port)
62{
63 return (u8) readb((void __iomem *) port);
64}
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static void ide_mm_outb (u8 value, unsigned long port)
67{
68 writeb(value, (void __iomem *) port);
69}
70
71static void ide_mm_outbsync (ide_drive_t *drive, u8 value, unsigned long port)
72{
73 writeb(value, (void __iomem *) port);
74}
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076void default_hwif_mmiops (ide_hwif_t *hwif)
77{
78 hwif->OUTB = ide_mm_outb;
79 /* Most systems will need to override OUTBSYNC, alas however
80 this one is controller specific! */
81 hwif->OUTBSYNC = ide_mm_outbsync;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 hwif->INB = ide_mm_inb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84
85EXPORT_SYMBOL(default_hwif_mmiops);
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087void SELECT_DRIVE (ide_drive_t *drive)
88{
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +020089 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +020090 const struct ide_port_ops *port_ops = hwif->port_ops;
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +020091
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +020092 if (port_ops && port_ops->selectproc)
93 port_ops->selectproc(drive);
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +020094
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +020095 hwif->OUTB(drive->select.all, hwif->io_ports.device_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098void SELECT_MASK (ide_drive_t *drive, int mask)
99{
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200100 const struct ide_port_ops *port_ops = drive->hwif->port_ops;
101
102 if (port_ops && port_ops->maskproc)
103 port_ops->maskproc(drive, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Bartlomiej Zolnierkiewicz94cd5b62008-04-28 23:44:40 +0200106static void ide_tf_load(ide_drive_t *drive, ide_task_t *task)
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200107{
108 ide_hwif_t *hwif = drive->hwif;
109 struct ide_io_ports *io_ports = &hwif->io_ports;
110 struct ide_taskfile *tf = &task->tf;
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200111 void (*tf_outb)(u8 addr, unsigned long port);
112 u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200113 u8 HIHI = (task->tf_flags & IDE_TFLAG_LBA48) ? 0xE0 : 0xEF;
114
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200115 if (mmio)
116 tf_outb = ide_mm_outb;
117 else
118 tf_outb = ide_outb;
119
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200120 if (task->tf_flags & IDE_TFLAG_FLAGGED)
121 HIHI = 0xFF;
122
123 ide_set_irq(drive, 1);
124
125 if ((task->tf_flags & IDE_TFLAG_NO_SELECT_MASK) == 0)
126 SELECT_MASK(drive, 0);
127
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200128 if (task->tf_flags & IDE_TFLAG_OUT_DATA) {
129 u16 data = (tf->hob_data << 8) | tf->data;
130
131 if (mmio)
132 writew(data, (void __iomem *)io_ports->data_addr);
133 else
134 outw(data, io_ports->data_addr);
135 }
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200136
137 if (task->tf_flags & IDE_TFLAG_OUT_HOB_FEATURE)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200138 tf_outb(tf->hob_feature, io_ports->feature_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200139 if (task->tf_flags & IDE_TFLAG_OUT_HOB_NSECT)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200140 tf_outb(tf->hob_nsect, io_ports->nsect_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200141 if (task->tf_flags & IDE_TFLAG_OUT_HOB_LBAL)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200142 tf_outb(tf->hob_lbal, io_ports->lbal_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200143 if (task->tf_flags & IDE_TFLAG_OUT_HOB_LBAM)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200144 tf_outb(tf->hob_lbam, io_ports->lbam_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200145 if (task->tf_flags & IDE_TFLAG_OUT_HOB_LBAH)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200146 tf_outb(tf->hob_lbah, io_ports->lbah_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200147
148 if (task->tf_flags & IDE_TFLAG_OUT_FEATURE)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200149 tf_outb(tf->feature, io_ports->feature_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200150 if (task->tf_flags & IDE_TFLAG_OUT_NSECT)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200151 tf_outb(tf->nsect, io_ports->nsect_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200152 if (task->tf_flags & IDE_TFLAG_OUT_LBAL)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200153 tf_outb(tf->lbal, io_ports->lbal_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200154 if (task->tf_flags & IDE_TFLAG_OUT_LBAM)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200155 tf_outb(tf->lbam, io_ports->lbam_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200156 if (task->tf_flags & IDE_TFLAG_OUT_LBAH)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200157 tf_outb(tf->lbah, io_ports->lbah_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200158
159 if (task->tf_flags & IDE_TFLAG_OUT_DEVICE)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200160 tf_outb((tf->device & HIHI) | drive->select.all,
161 io_ports->device_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200162}
163
Bartlomiej Zolnierkiewicz94cd5b62008-04-28 23:44:40 +0200164static void ide_tf_read(ide_drive_t *drive, ide_task_t *task)
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200165{
166 ide_hwif_t *hwif = drive->hwif;
167 struct ide_io_ports *io_ports = &hwif->io_ports;
168 struct ide_taskfile *tf = &task->tf;
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200169 void (*tf_outb)(u8 addr, unsigned long port);
170 u8 (*tf_inb)(unsigned long port);
171 u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
172
173 if (mmio) {
174 tf_outb = ide_mm_outb;
175 tf_inb = ide_mm_inb;
176 } else {
177 tf_outb = ide_outb;
178 tf_inb = ide_inb;
179 }
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200180
181 if (task->tf_flags & IDE_TFLAG_IN_DATA) {
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200182 u16 data;
183
184 if (mmio)
185 data = readw((void __iomem *)io_ports->data_addr);
186 else
187 data = inw(io_ports->data_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200188
189 tf->data = data & 0xff;
190 tf->hob_data = (data >> 8) & 0xff;
191 }
192
193 /* be sure we're looking at the low order bits */
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200194 tf_outb(drive->ctl & ~0x80, io_ports->ctl_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200195
196 if (task->tf_flags & IDE_TFLAG_IN_NSECT)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200197 tf->nsect = tf_inb(io_ports->nsect_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200198 if (task->tf_flags & IDE_TFLAG_IN_LBAL)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200199 tf->lbal = tf_inb(io_ports->lbal_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200200 if (task->tf_flags & IDE_TFLAG_IN_LBAM)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200201 tf->lbam = tf_inb(io_ports->lbam_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200202 if (task->tf_flags & IDE_TFLAG_IN_LBAH)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200203 tf->lbah = tf_inb(io_ports->lbah_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200204 if (task->tf_flags & IDE_TFLAG_IN_DEVICE)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200205 tf->device = tf_inb(io_ports->device_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200206
207 if (task->tf_flags & IDE_TFLAG_LBA48) {
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200208 tf_outb(drive->ctl | 0x80, io_ports->ctl_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200209
210 if (task->tf_flags & IDE_TFLAG_IN_HOB_FEATURE)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200211 tf->hob_feature = tf_inb(io_ports->feature_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200212 if (task->tf_flags & IDE_TFLAG_IN_HOB_NSECT)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200213 tf->hob_nsect = tf_inb(io_ports->nsect_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200214 if (task->tf_flags & IDE_TFLAG_IN_HOB_LBAL)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200215 tf->hob_lbal = tf_inb(io_ports->lbal_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200216 if (task->tf_flags & IDE_TFLAG_IN_HOB_LBAM)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200217 tf->hob_lbam = tf_inb(io_ports->lbam_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200218 if (task->tf_flags & IDE_TFLAG_IN_HOB_LBAH)
Bartlomiej Zolnierkiewiczca545c12008-04-28 23:44:41 +0200219 tf->hob_lbah = tf_inb(io_ports->lbah_addr);
Bartlomiej Zolnierkiewiczd309e0b2008-04-28 23:44:39 +0200220 }
221}
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223/*
224 * Some localbus EIDE interfaces require a special access sequence
225 * when using 32-bit I/O instructions to transfer data. We call this
226 * the "vlb_sync" sequence, which consists of three successive reads
227 * of the sector count register location, with interrupts disabled
228 * to ensure that the reads all happen together.
229 */
Bartlomiej Zolnierkiewicz22cdd6c2008-04-28 23:44:41 +0200230static void ata_vlb_sync(unsigned long port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Bartlomiej Zolnierkiewicz22cdd6c2008-04-28 23:44:41 +0200232 (void)inb(port);
233 (void)inb(port);
234 (void)inb(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
237/*
238 * This is used for most PIO data transfers *from* the IDE interface
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200239 *
240 * These routines will round up any request for an odd number of bytes,
241 * so if an odd len is specified, be sure that there's at least one
242 * extra byte allocated for the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 */
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200244static void ata_input_data(ide_drive_t *drive, struct request *rq,
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200245 void *buf, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200247 ide_hwif_t *hwif = drive->hwif;
248 struct ide_io_ports *io_ports = &hwif->io_ports;
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200249 unsigned long data_addr = io_ports->data_addr;
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200250 u8 io_32bit = drive->io_32bit;
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200251 u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200253 len++;
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (io_32bit) {
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200256 unsigned long uninitialized_var(flags);
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +0200257
Bartlomiej Zolnierkiewicz22cdd6c2008-04-28 23:44:41 +0200258 if ((io_32bit & 2) && !mmio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 local_irq_save(flags);
Bartlomiej Zolnierkiewicz22cdd6c2008-04-28 23:44:41 +0200260 ata_vlb_sync(io_ports->nsect_addr);
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200261 }
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200262
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200263 if (mmio)
264 __ide_mm_insl((void __iomem *)data_addr, buf, len / 4);
265 else
266 insl(data_addr, buf, len / 4);
267
Bartlomiej Zolnierkiewicz22cdd6c2008-04-28 23:44:41 +0200268 if ((io_32bit & 2) && !mmio)
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200269 local_irq_restore(flags);
270
271 if ((len & 3) >= 2) {
272 if (mmio)
273 __ide_mm_insw((void __iomem *)data_addr,
274 (u8 *)buf + (len & ~3), 1);
275 else
276 insw(data_addr, (u8 *)buf + (len & ~3), 1);
277 }
278 } else {
279 if (mmio)
280 __ide_mm_insw((void __iomem *)data_addr, buf, len / 2);
281 else
282 insw(data_addr, buf, len / 2);
283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286/*
287 * This is used for most PIO data transfers *to* the IDE interface
288 */
Bartlomiej Zolnierkiewicz92d3ab22008-04-28 23:44:36 +0200289static void ata_output_data(ide_drive_t *drive, struct request *rq,
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200290 void *buf, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200292 ide_hwif_t *hwif = drive->hwif;
293 struct ide_io_ports *io_ports = &hwif->io_ports;
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200294 unsigned long data_addr = io_ports->data_addr;
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200295 u8 io_32bit = drive->io_32bit;
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200296 u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 if (io_32bit) {
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200299 unsigned long uninitialized_var(flags);
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +0200300
Bartlomiej Zolnierkiewicz22cdd6c2008-04-28 23:44:41 +0200301 if ((io_32bit & 2) && !mmio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 local_irq_save(flags);
Bartlomiej Zolnierkiewicz22cdd6c2008-04-28 23:44:41 +0200303 ata_vlb_sync(io_ports->nsect_addr);
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200304 }
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200305
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200306 if (mmio)
307 __ide_mm_outsl((void __iomem *)data_addr, buf, len / 4);
308 else
309 outsl(data_addr, buf, len / 4);
310
Bartlomiej Zolnierkiewicz22cdd6c2008-04-28 23:44:41 +0200311 if ((io_32bit & 2) && !mmio)
Bartlomiej Zolnierkiewicz16bb69c2008-04-28 23:44:37 +0200312 local_irq_restore(flags);
313
314 if ((len & 3) >= 2) {
315 if (mmio)
316 __ide_mm_outsw((void __iomem *)data_addr,
317 (u8 *)buf + (len & ~3), 1);
318 else
319 outsw(data_addr, (u8 *)buf + (len & ~3), 1);
320 }
321 } else {
322 if (mmio)
323 __ide_mm_outsw((void __iomem *)data_addr, buf, len / 2);
324 else
325 outsw(data_addr, buf, len / 2);
326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
329void default_hwif_transport(ide_hwif_t *hwif)
330{
Bartlomiej Zolnierkiewicz94cd5b62008-04-28 23:44:40 +0200331 hwif->tf_load = ide_tf_load;
332 hwif->tf_read = ide_tf_read;
333
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200334 hwif->input_data = ata_input_data;
335 hwif->output_data = ata_output_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338void ide_fix_driveid (struct hd_driveid *id)
339{
340#ifndef __LITTLE_ENDIAN
341# ifdef __BIG_ENDIAN
342 int i;
343 u16 *stringcast;
344
345 id->config = __le16_to_cpu(id->config);
346 id->cyls = __le16_to_cpu(id->cyls);
347 id->reserved2 = __le16_to_cpu(id->reserved2);
348 id->heads = __le16_to_cpu(id->heads);
349 id->track_bytes = __le16_to_cpu(id->track_bytes);
350 id->sector_bytes = __le16_to_cpu(id->sector_bytes);
351 id->sectors = __le16_to_cpu(id->sectors);
352 id->vendor0 = __le16_to_cpu(id->vendor0);
353 id->vendor1 = __le16_to_cpu(id->vendor1);
354 id->vendor2 = __le16_to_cpu(id->vendor2);
355 stringcast = (u16 *)&id->serial_no[0];
356 for (i = 0; i < (20/2); i++)
357 stringcast[i] = __le16_to_cpu(stringcast[i]);
358 id->buf_type = __le16_to_cpu(id->buf_type);
359 id->buf_size = __le16_to_cpu(id->buf_size);
360 id->ecc_bytes = __le16_to_cpu(id->ecc_bytes);
361 stringcast = (u16 *)&id->fw_rev[0];
362 for (i = 0; i < (8/2); i++)
363 stringcast[i] = __le16_to_cpu(stringcast[i]);
364 stringcast = (u16 *)&id->model[0];
365 for (i = 0; i < (40/2); i++)
366 stringcast[i] = __le16_to_cpu(stringcast[i]);
367 id->dword_io = __le16_to_cpu(id->dword_io);
368 id->reserved50 = __le16_to_cpu(id->reserved50);
369 id->field_valid = __le16_to_cpu(id->field_valid);
370 id->cur_cyls = __le16_to_cpu(id->cur_cyls);
371 id->cur_heads = __le16_to_cpu(id->cur_heads);
372 id->cur_sectors = __le16_to_cpu(id->cur_sectors);
373 id->cur_capacity0 = __le16_to_cpu(id->cur_capacity0);
374 id->cur_capacity1 = __le16_to_cpu(id->cur_capacity1);
375 id->lba_capacity = __le32_to_cpu(id->lba_capacity);
376 id->dma_1word = __le16_to_cpu(id->dma_1word);
377 id->dma_mword = __le16_to_cpu(id->dma_mword);
378 id->eide_pio_modes = __le16_to_cpu(id->eide_pio_modes);
379 id->eide_dma_min = __le16_to_cpu(id->eide_dma_min);
380 id->eide_dma_time = __le16_to_cpu(id->eide_dma_time);
381 id->eide_pio = __le16_to_cpu(id->eide_pio);
382 id->eide_pio_iordy = __le16_to_cpu(id->eide_pio_iordy);
383 for (i = 0; i < 2; ++i)
384 id->words69_70[i] = __le16_to_cpu(id->words69_70[i]);
385 for (i = 0; i < 4; ++i)
386 id->words71_74[i] = __le16_to_cpu(id->words71_74[i]);
387 id->queue_depth = __le16_to_cpu(id->queue_depth);
388 for (i = 0; i < 4; ++i)
389 id->words76_79[i] = __le16_to_cpu(id->words76_79[i]);
390 id->major_rev_num = __le16_to_cpu(id->major_rev_num);
391 id->minor_rev_num = __le16_to_cpu(id->minor_rev_num);
392 id->command_set_1 = __le16_to_cpu(id->command_set_1);
393 id->command_set_2 = __le16_to_cpu(id->command_set_2);
394 id->cfsse = __le16_to_cpu(id->cfsse);
395 id->cfs_enable_1 = __le16_to_cpu(id->cfs_enable_1);
396 id->cfs_enable_2 = __le16_to_cpu(id->cfs_enable_2);
397 id->csf_default = __le16_to_cpu(id->csf_default);
398 id->dma_ultra = __le16_to_cpu(id->dma_ultra);
399 id->trseuc = __le16_to_cpu(id->trseuc);
400 id->trsEuc = __le16_to_cpu(id->trsEuc);
401 id->CurAPMvalues = __le16_to_cpu(id->CurAPMvalues);
402 id->mprc = __le16_to_cpu(id->mprc);
403 id->hw_config = __le16_to_cpu(id->hw_config);
404 id->acoustic = __le16_to_cpu(id->acoustic);
405 id->msrqs = __le16_to_cpu(id->msrqs);
406 id->sxfert = __le16_to_cpu(id->sxfert);
407 id->sal = __le16_to_cpu(id->sal);
408 id->spg = __le32_to_cpu(id->spg);
409 id->lba_capacity_2 = __le64_to_cpu(id->lba_capacity_2);
410 for (i = 0; i < 22; i++)
411 id->words104_125[i] = __le16_to_cpu(id->words104_125[i]);
412 id->last_lun = __le16_to_cpu(id->last_lun);
413 id->word127 = __le16_to_cpu(id->word127);
414 id->dlf = __le16_to_cpu(id->dlf);
415 id->csfo = __le16_to_cpu(id->csfo);
416 for (i = 0; i < 26; i++)
417 id->words130_155[i] = __le16_to_cpu(id->words130_155[i]);
418 id->word156 = __le16_to_cpu(id->word156);
419 for (i = 0; i < 3; i++)
420 id->words157_159[i] = __le16_to_cpu(id->words157_159[i]);
421 id->cfa_power = __le16_to_cpu(id->cfa_power);
422 for (i = 0; i < 14; i++)
423 id->words161_175[i] = __le16_to_cpu(id->words161_175[i]);
424 for (i = 0; i < 31; i++)
425 id->words176_205[i] = __le16_to_cpu(id->words176_205[i]);
426 for (i = 0; i < 48; i++)
427 id->words206_254[i] = __le16_to_cpu(id->words206_254[i]);
428 id->integrity_word = __le16_to_cpu(id->integrity_word);
429# else
430# error "Please fix <asm/byteorder.h>"
431# endif
432#endif
433}
434
Bartlomiej Zolnierkiewicz01745112007-11-05 21:42:29 +0100435/*
436 * ide_fixstring() cleans up and (optionally) byte-swaps a text string,
437 * removing leading/trailing blanks and compressing internal blanks.
438 * It is primarily used to tidy up the model name/number fields as
439 * returned by the WIN_[P]IDENTIFY commands.
440 */
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442void ide_fixstring (u8 *s, const int bytecount, const int byteswap)
443{
444 u8 *p = s, *end = &s[bytecount & ~1]; /* bytecount must be even */
445
446 if (byteswap) {
447 /* convert from big-endian to host byte order */
448 for (p = end ; p != s;) {
449 unsigned short *pp = (unsigned short *) (p -= 2);
450 *pp = ntohs(*pp);
451 }
452 }
453 /* strip leading blanks */
454 while (s != end && *s == ' ')
455 ++s;
456 /* compress internal blanks and strip trailing blanks */
457 while (s != end && *s) {
458 if (*s++ != ' ' || (s != end && *s && *s != ' '))
459 *p++ = *(s-1);
460 }
461 /* wipe out trailing garbage */
462 while (p != end)
463 *p++ = '\0';
464}
465
466EXPORT_SYMBOL(ide_fixstring);
467
468/*
469 * Needed for PCI irq sharing
470 */
471int drive_is_ready (ide_drive_t *drive)
472{
473 ide_hwif_t *hwif = HWIF(drive);
474 u8 stat = 0;
475
476 if (drive->waiting_for_dma)
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200477 return hwif->dma_ops->dma_test_irq(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479#if 0
480 /* need to guarantee 400ns since last command was issued */
481 udelay(1);
482#endif
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 /*
485 * We do a passive status test under shared PCI interrupts on
486 * cards that truly share the ATA side interrupt, but may also share
487 * an interrupt with another pci card/device. We make no assumptions
488 * about possible isa-pnp and pci-pnp issues yet.
489 */
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200490 if (hwif->io_ports.ctl_addr)
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100491 stat = ide_read_altstatus(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 /* Note: this may clear a pending IRQ!! */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100494 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 if (stat & BUSY_STAT)
497 /* drive busy: definitely not interrupting */
498 return 0;
499
500 /* drive ready: *might* be interrupting */
501 return 1;
502}
503
504EXPORT_SYMBOL(drive_is_ready);
505
506/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 * This routine busy-waits for the drive status to be not "busy".
508 * It then checks the status for all of the "good" bits and none
509 * of the "bad" bits, and if all is okay it returns 0. All other
Bartlomiej Zolnierkiewicz74af21c2007-10-13 17:47:49 +0200510 * cases return error -- caller may then invoke ide_error().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 *
512 * This routine should get fixed to not hog the cpu during extra long waits..
513 * That could be done by busy-waiting for the first jiffy or two, and then
514 * setting a timer to wake up at half second intervals thereafter,
515 * until timeout is achieved, before timing out.
516 */
Bartlomiej Zolnierkiewiczaedea592007-10-13 17:47:50 +0200517static int __ide_wait_stat(ide_drive_t *drive, u8 good, u8 bad, unsigned long timeout, u8 *rstat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 unsigned long flags;
Bartlomiej Zolnierkiewicz74af21c2007-10-13 17:47:49 +0200520 int i;
521 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 udelay(1); /* spec allows drive 400ns to assert "BUSY" */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100524 stat = ide_read_status(drive);
525
526 if (stat & BUSY_STAT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 local_irq_set(flags);
528 timeout += jiffies;
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100529 while ((stat = ide_read_status(drive)) & BUSY_STAT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if (time_after(jiffies, timeout)) {
531 /*
532 * One last read after the timeout in case
533 * heavy interrupt load made us not make any
534 * progress during the timeout..
535 */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100536 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (!(stat & BUSY_STAT))
538 break;
539
540 local_irq_restore(flags);
Bartlomiej Zolnierkiewicz74af21c2007-10-13 17:47:49 +0200541 *rstat = stat;
542 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
544 }
545 local_irq_restore(flags);
546 }
547 /*
548 * Allow status to settle, then read it again.
549 * A few rare drives vastly violate the 400ns spec here,
550 * so we'll wait up to 10usec for a "good" status
551 * rather than expensively fail things immediately.
552 * This fix courtesy of Matthew Faupel & Niccolo Rigacci.
553 */
554 for (i = 0; i < 10; i++) {
555 udelay(1);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100556 stat = ide_read_status(drive);
557
558 if (OK_STAT(stat, good, bad)) {
Bartlomiej Zolnierkiewicz74af21c2007-10-13 17:47:49 +0200559 *rstat = stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 return 0;
Bartlomiej Zolnierkiewicz74af21c2007-10-13 17:47:49 +0200561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
Bartlomiej Zolnierkiewicz74af21c2007-10-13 17:47:49 +0200563 *rstat = stat;
564 return -EFAULT;
565}
566
567/*
568 * In case of error returns error value after doing "*startstop = ide_error()".
569 * The caller should return the updated value of "startstop" in this case,
570 * "startstop" is unchanged when the function returns 0.
571 */
572int ide_wait_stat(ide_startstop_t *startstop, ide_drive_t *drive, u8 good, u8 bad, unsigned long timeout)
573{
574 int err;
575 u8 stat;
576
577 /* bail early if we've exceeded max_failures */
578 if (drive->max_failures && (drive->failures > drive->max_failures)) {
579 *startstop = ide_stopped;
580 return 1;
581 }
582
583 err = __ide_wait_stat(drive, good, bad, timeout, &stat);
584
585 if (err) {
586 char *s = (err == -EBUSY) ? "status timeout" : "status error";
587 *startstop = ide_error(drive, s, stat);
588 }
589
590 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
593EXPORT_SYMBOL(ide_wait_stat);
594
Bartlomiej Zolnierkiewicza5b7e702007-08-20 22:42:56 +0200595/**
596 * ide_in_drive_list - look for drive in black/white list
597 * @id: drive identifier
598 * @drive_table: list to inspect
599 *
600 * Look for a drive in the blacklist and the whitelist tables
601 * Returns 1 if the drive is found in the table.
602 */
603
604int ide_in_drive_list(struct hd_driveid *id, const struct drive_list_entry *drive_table)
605{
606 for ( ; drive_table->id_model; drive_table++)
607 if ((!strcmp(drive_table->id_model, id->model)) &&
608 (!drive_table->id_firmware ||
609 strstr(id->fw_rev, drive_table->id_firmware)))
610 return 1;
611 return 0;
612}
613
Bartlomiej Zolnierkiewiczb0244a02007-08-20 22:42:57 +0200614EXPORT_SYMBOL_GPL(ide_in_drive_list);
615
Bartlomiej Zolnierkiewicza5b7e702007-08-20 22:42:56 +0200616/*
617 * Early UDMA66 devices don't set bit14 to 1, only bit13 is valid.
618 * We list them here and depend on the device side cable detection for them.
Bartlomiej Zolnierkiewicz8588a2b72007-10-26 20:31:16 +0200619 *
620 * Some optical devices with the buggy firmwares have the same problem.
Bartlomiej Zolnierkiewicza5b7e702007-08-20 22:42:56 +0200621 */
622static const struct drive_list_entry ivb_list[] = {
623 { "QUANTUM FIREBALLlct10 05" , "A03.0900" },
Bartlomiej Zolnierkiewicz8588a2b72007-10-26 20:31:16 +0200624 { "TSSTcorp CDDVDW SH-S202J" , "SB00" },
Peter Missele97564f2007-11-27 21:35:57 +0100625 { "TSSTcorp CDDVDW SH-S202J" , "SB01" },
626 { "TSSTcorp CDDVDW SH-S202N" , "SB00" },
627 { "TSSTcorp CDDVDW SH-S202N" , "SB01" },
Bartlomiej Zolnierkiewicza5b7e702007-08-20 22:42:56 +0200628 { NULL , NULL }
629};
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631/*
632 * All hosts that use the 80c ribbon must use!
633 * The name is derived from upper byte of word 93 and the 80c ribbon.
634 */
635u8 eighty_ninty_three (ide_drive_t *drive)
636{
Bartlomiej Zolnierkiewicz7f8f48a2007-05-10 00:01:10 +0200637 ide_hwif_t *hwif = drive->hwif;
638 struct hd_driveid *id = drive->id;
Bartlomiej Zolnierkiewicza5b7e702007-08-20 22:42:56 +0200639 int ivb = ide_in_drive_list(id, ivb_list);
Bartlomiej Zolnierkiewicz7f8f48a2007-05-10 00:01:10 +0200640
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200641 if (hwif->cbl == ATA_CBL_PATA40_SHORT)
642 return 1;
643
Bartlomiej Zolnierkiewicza5b7e702007-08-20 22:42:56 +0200644 if (ivb)
645 printk(KERN_DEBUG "%s: skipping word 93 validity check\n",
646 drive->name);
647
George Kibardinb98f8802008-01-10 23:03:42 +0100648 if (ide_dev_is_sata(id) && !ivb)
649 return 1;
650
Bartlomiej Zolnierkiewicza5b7e702007-08-20 22:42:56 +0200651 if (hwif->cbl != ATA_CBL_PATA80 && !ivb)
Bartlomiej Zolnierkiewicz7f8f48a2007-05-10 00:01:10 +0200652 goto no_80w;
Alan Cox1a1276e2006-06-28 04:26:58 -0700653
Bartlomiej Zolnierkiewiczf68d9322007-03-26 23:03:18 +0200654 /*
655 * FIXME:
Bartlomiej Zolnierkiewiczf367bed2008-03-29 19:48:21 +0100656 * - change master/slave IDENTIFY order
Bartlomiej Zolnierkiewicza5b7e702007-08-20 22:42:56 +0200657 * - force bit13 (80c cable present) check also for !ivb devices
Bartlomiej Zolnierkiewiczf68d9322007-03-26 23:03:18 +0200658 * (unless the slave device is pre-ATA3)
659 */
Bartlomiej Zolnierkiewicza5b7e702007-08-20 22:42:56 +0200660 if ((id->hw_config & 0x4000) || (ivb && (id->hw_config & 0x2000)))
Bartlomiej Zolnierkiewicz7f8f48a2007-05-10 00:01:10 +0200661 return 1;
662
663no_80w:
664 if (drive->udma33_warned == 1)
665 return 0;
666
667 printk(KERN_WARNING "%s: %s side 80-wire cable detection failed, "
668 "limiting max speed to UDMA33\n",
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200669 drive->name,
670 hwif->cbl == ATA_CBL_PATA80 ? "drive" : "host");
Bartlomiej Zolnierkiewicz7f8f48a2007-05-10 00:01:10 +0200671
672 drive->udma33_warned = 1;
673
674 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
Bartlomiej Zolnierkiewicz8a455132007-10-20 00:32:36 +0200677int ide_driveid_update(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Bartlomiej Zolnierkiewicz8a455132007-10-20 00:32:36 +0200679 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 struct hd_driveid *id;
Bartlomiej Zolnierkiewicz8a455132007-10-20 00:32:36 +0200681 unsigned long timeout, flags;
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100682 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 /*
685 * Re-read drive->id for possible DMA mode
686 * change (copied from ide-probe.c)
687 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 SELECT_MASK(drive, 1);
Bartlomiej Zolnierkiewicz81ca6912008-01-26 20:13:08 +0100690 ide_set_irq(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 msleep(50);
Bartlomiej Zolnierkiewicz32b3fe42008-04-28 23:44:38 +0200692 hwif->OUTBSYNC(drive, WIN_IDENTIFY, hwif->io_ports.command_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 timeout = jiffies + WAIT_WORSTCASE;
694 do {
695 if (time_after(jiffies, timeout)) {
696 SELECT_MASK(drive, 0);
697 return 0; /* drive timed-out */
698 }
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 msleep(50); /* give drive a breather */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100701 stat = ide_read_altstatus(drive);
702 } while (stat & BUSY_STAT);
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 msleep(50); /* wait for IRQ and DRQ_STAT */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100705 stat = ide_read_status(drive);
706
707 if (!OK_STAT(stat, DRQ_STAT, BAD_R_STAT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 SELECT_MASK(drive, 0);
709 printk("%s: CHECK for good STATUS\n", drive->name);
710 return 0;
711 }
712 local_irq_save(flags);
713 SELECT_MASK(drive, 0);
714 id = kmalloc(SECTOR_WORDS*4, GFP_ATOMIC);
715 if (!id) {
716 local_irq_restore(flags);
717 return 0;
718 }
Bartlomiej Zolnierkiewicz9567b342008-04-28 23:44:36 +0200719 hwif->input_data(drive, NULL, id, SECTOR_SIZE);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100720 (void)ide_read_status(drive); /* clear drive IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 local_irq_enable();
722 local_irq_restore(flags);
723 ide_fix_driveid(id);
724 if (id) {
725 drive->id->dma_ultra = id->dma_ultra;
726 drive->id->dma_mword = id->dma_mword;
727 drive->id->dma_1word = id->dma_1word;
728 /* anything more ? */
729 kfree(id);
Bartlomiej Zolnierkiewicz3ab7efe2007-12-12 23:31:58 +0100730
731 if (drive->using_dma && ide_id_dma_bug(drive))
732 ide_dma_off(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
734
735 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
Bartlomiej Zolnierkiewicz74af21c2007-10-13 17:47:49 +0200738int ide_config_drive_speed(ide_drive_t *drive, u8 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Bartlomiej Zolnierkiewicz74af21c2007-10-13 17:47:49 +0200740 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200741 struct ide_io_ports *io_ports = &hwif->io_ports;
Sergei Shtylyov89613e62007-11-27 21:35:52 +0100742 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 u8 stat;
744
745// while (HWGROUP(drive)->busy)
746// msleep(50);
747
748#ifdef CONFIG_BLK_DEV_IDEDMA
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200749 if (hwif->dma_ops) /* check if host supports DMA */
750 hwif->dma_ops->dma_host_set(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751#endif
752
Sergei Shtylyov89613e62007-11-27 21:35:52 +0100753 /* Skip setting PIO flow-control modes on pre-EIDE drives */
754 if ((speed & 0xf8) == XFER_PIO_0 && !(drive->id->capability & 0x08))
755 goto skip;
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 /*
758 * Don't use ide_wait_cmd here - it will
759 * attempt to set_geometry and recalibrate,
760 * but for some reason these don't work at
761 * this point (lost interrupt).
762 */
763 /*
764 * Select the drive, and issue the SETFEATURES command
765 */
766 disable_irq_nosync(hwif->irq);
767
768 /*
769 * FIXME: we race against the running IRQ here if
770 * this is called from non IRQ context. If we use
771 * disable_irq() we hang on the error path. Work
772 * is needed.
773 */
774
775 udelay(1);
776 SELECT_DRIVE(drive);
777 SELECT_MASK(drive, 0);
778 udelay(1);
Bartlomiej Zolnierkiewicz81ca6912008-01-26 20:13:08 +0100779 ide_set_irq(drive, 0);
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200780 hwif->OUTB(speed, io_ports->nsect_addr);
781 hwif->OUTB(SETFEATURES_XFER, io_ports->feature_addr);
782 hwif->OUTBSYNC(drive, WIN_SETFEATURES, io_ports->command_addr);
Bartlomiej Zolnierkiewicz81ca6912008-01-26 20:13:08 +0100783 if (drive->quirk_list == 2)
784 ide_set_irq(drive, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Bartlomiej Zolnierkiewicz74af21c2007-10-13 17:47:49 +0200786 error = __ide_wait_stat(drive, drive->ready_stat,
787 BUSY_STAT|DRQ_STAT|ERR_STAT,
788 WAIT_CMD, &stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 SELECT_MASK(drive, 0);
791
792 enable_irq(hwif->irq);
793
794 if (error) {
795 (void) ide_dump_status(drive, "set_drive_speed_status", stat);
796 return error;
797 }
798
799 drive->id->dma_ultra &= ~0xFF00;
800 drive->id->dma_mword &= ~0x0F00;
801 drive->id->dma_1word &= ~0x0F00;
802
Sergei Shtylyov89613e62007-11-27 21:35:52 +0100803 skip:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804#ifdef CONFIG_BLK_DEV_IDEDMA
Bartlomiej Zolnierkiewiczf37aaf92008-01-26 20:13:02 +0100805 if ((speed >= XFER_SW_DMA_0 || (hwif->host_flags & IDE_HFLAG_VDMA)) &&
806 drive->using_dma)
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200807 hwif->dma_ops->dma_host_set(drive, 1);
808 else if (hwif->dma_ops) /* check if host supports DMA */
Bartlomiej Zolnierkiewicz4a546e02008-01-26 20:13:01 +0100809 ide_dma_off_quietly(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810#endif
811
812 switch(speed) {
813 case XFER_UDMA_7: drive->id->dma_ultra |= 0x8080; break;
814 case XFER_UDMA_6: drive->id->dma_ultra |= 0x4040; break;
815 case XFER_UDMA_5: drive->id->dma_ultra |= 0x2020; break;
816 case XFER_UDMA_4: drive->id->dma_ultra |= 0x1010; break;
817 case XFER_UDMA_3: drive->id->dma_ultra |= 0x0808; break;
818 case XFER_UDMA_2: drive->id->dma_ultra |= 0x0404; break;
819 case XFER_UDMA_1: drive->id->dma_ultra |= 0x0202; break;
820 case XFER_UDMA_0: drive->id->dma_ultra |= 0x0101; break;
821 case XFER_MW_DMA_2: drive->id->dma_mword |= 0x0404; break;
822 case XFER_MW_DMA_1: drive->id->dma_mword |= 0x0202; break;
823 case XFER_MW_DMA_0: drive->id->dma_mword |= 0x0101; break;
824 case XFER_SW_DMA_2: drive->id->dma_1word |= 0x0404; break;
825 case XFER_SW_DMA_1: drive->id->dma_1word |= 0x0202; break;
826 case XFER_SW_DMA_0: drive->id->dma_1word |= 0x0101; break;
827 default: break;
828 }
829 if (!drive->init_speed)
830 drive->init_speed = speed;
831 drive->current_speed = speed;
832 return error;
833}
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835/*
836 * This should get invoked any time we exit the driver to
837 * wait for an interrupt response from a drive. handler() points
838 * at the appropriate code to handle the next interrupt, and a
839 * timer is started to prevent us from waiting forever in case
840 * something goes wrong (see the ide_timer_expiry() handler later on).
841 *
842 * See also ide_execute_command
843 */
844static void __ide_set_handler (ide_drive_t *drive, ide_handler_t *handler,
845 unsigned int timeout, ide_expiry_t *expiry)
846{
847 ide_hwgroup_t *hwgroup = HWGROUP(drive);
848
Sergei Shtylyovd30a4262008-02-11 00:32:12 +0100849 BUG_ON(hwgroup->handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 hwgroup->handler = handler;
851 hwgroup->expiry = expiry;
852 hwgroup->timer.expires = jiffies + timeout;
Sergei Shtylyovd30a4262008-02-11 00:32:12 +0100853 hwgroup->req_gen_timer = hwgroup->req_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 add_timer(&hwgroup->timer);
855}
856
857void ide_set_handler (ide_drive_t *drive, ide_handler_t *handler,
858 unsigned int timeout, ide_expiry_t *expiry)
859{
860 unsigned long flags;
861 spin_lock_irqsave(&ide_lock, flags);
862 __ide_set_handler(drive, handler, timeout, expiry);
863 spin_unlock_irqrestore(&ide_lock, flags);
864}
865
866EXPORT_SYMBOL(ide_set_handler);
867
868/**
869 * ide_execute_command - execute an IDE command
870 * @drive: IDE drive to issue the command against
871 * @command: command byte to write
872 * @handler: handler for next phase
873 * @timeout: timeout for command
874 * @expiry: handler to run on timeout
875 *
876 * Helper function to issue an IDE command. This handles the
877 * atomicity requirements, command timing and ensures that the
878 * handler and IRQ setup do not race. All IDE command kick off
879 * should go via this function or do equivalent locking.
880 */
Bartlomiej Zolnierkiewiczcd2a2d92008-01-25 22:17:06 +0100881
882void ide_execute_command(ide_drive_t *drive, u8 cmd, ide_handler_t *handler,
883 unsigned timeout, ide_expiry_t *expiry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
885 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz629f9442008-02-02 19:56:46 +0100887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 spin_lock_irqsave(&ide_lock, flags);
Bartlomiej Zolnierkiewicz629f9442008-02-02 19:56:46 +0100889 __ide_set_handler(drive, handler, timeout, expiry);
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200890 hwif->OUTBSYNC(drive, cmd, hwif->io_ports.command_addr);
Bartlomiej Zolnierkiewicz629f9442008-02-02 19:56:46 +0100891 /*
892 * Drive takes 400nS to respond, we must avoid the IRQ being
893 * serviced before that.
894 *
895 * FIXME: we could skip this delay with care on non shared devices
896 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 ndelay(400);
898 spin_unlock_irqrestore(&ide_lock, flags);
899}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900EXPORT_SYMBOL(ide_execute_command);
901
Bartlomiej Zolnierkiewicz1fc14252008-04-28 23:44:39 +0200902void ide_execute_pkt_cmd(ide_drive_t *drive)
903{
904 ide_hwif_t *hwif = drive->hwif;
905 unsigned long flags;
906
907 spin_lock_irqsave(&ide_lock, flags);
908 hwif->OUTBSYNC(drive, WIN_PACKETCMD, hwif->io_ports.command_addr);
909 ndelay(400);
910 spin_unlock_irqrestore(&ide_lock, flags);
911}
912EXPORT_SYMBOL_GPL(ide_execute_pkt_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914/* needed below */
915static ide_startstop_t do_reset1 (ide_drive_t *, int);
916
917/*
918 * atapi_reset_pollfunc() gets invoked to poll the interface for completion every 50ms
919 * during an atapi drive reset operation. If the drive has not yet responded,
920 * and we have not yet hit our maximum waiting time, then the timer is restarted
921 * for another 50ms.
922 */
923static ide_startstop_t atapi_reset_pollfunc (ide_drive_t *drive)
924{
925 ide_hwgroup_t *hwgroup = HWGROUP(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 u8 stat;
927
928 SELECT_DRIVE(drive);
929 udelay (10);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100930 stat = ide_read_status(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100932 if (OK_STAT(stat, 0, BUSY_STAT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 printk("%s: ATAPI reset complete\n", drive->name);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100934 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (time_before(jiffies, hwgroup->poll_timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 ide_set_handler(drive, &atapi_reset_pollfunc, HZ/20, NULL);
937 /* continue polling */
938 return ide_started;
939 }
940 /* end of polling */
941 hwgroup->polling = 0;
942 printk("%s: ATAPI reset timed-out, status=0x%02x\n",
943 drive->name, stat);
944 /* do it the old fashioned way */
945 return do_reset1(drive, 1);
946 }
947 /* done polling */
948 hwgroup->polling = 0;
Alan Cox913759a2006-10-03 01:14:33 -0700949 hwgroup->resetting = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 return ide_stopped;
951}
952
953/*
954 * reset_pollfunc() gets invoked to poll the interface for completion every 50ms
955 * during an ide reset operation. If the drives have not yet responded,
956 * and we have not yet hit our maximum waiting time, then the timer is restarted
957 * for another 50ms.
958 */
959static ide_startstop_t reset_pollfunc (ide_drive_t *drive)
960{
961 ide_hwgroup_t *hwgroup = HWGROUP(drive);
962 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200963 const struct ide_port_ops *port_ops = hwif->port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 u8 tmp;
965
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200966 if (port_ops && port_ops->reset_poll) {
967 if (port_ops->reset_poll(drive)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 printk(KERN_ERR "%s: host reset_poll failure for %s.\n",
969 hwif->name, drive->name);
970 return ide_stopped;
971 }
972 }
973
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100974 tmp = ide_read_status(drive);
975
976 if (!OK_STAT(tmp, 0, BUSY_STAT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (time_before(jiffies, hwgroup->poll_timeout)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 ide_set_handler(drive, &reset_pollfunc, HZ/20, NULL);
979 /* continue polling */
980 return ide_started;
981 }
982 printk("%s: reset timed-out, status=0x%02x\n", hwif->name, tmp);
983 drive->failures++;
984 } else {
985 printk("%s: reset: ", hwif->name);
Bartlomiej Zolnierkiewicz64a57fe2008-02-06 02:57:51 +0100986 tmp = ide_read_error(drive);
987
988 if (tmp == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 printk("success\n");
990 drive->failures = 0;
991 } else {
992 drive->failures++;
993 printk("master: ");
994 switch (tmp & 0x7f) {
995 case 1: printk("passed");
996 break;
997 case 2: printk("formatter device error");
998 break;
999 case 3: printk("sector buffer error");
1000 break;
1001 case 4: printk("ECC circuitry error");
1002 break;
1003 case 5: printk("controlling MPU error");
1004 break;
1005 default:printk("error (0x%02x?)", tmp);
1006 }
1007 if (tmp & 0x80)
1008 printk("; slave: failed");
1009 printk("\n");
1010 }
1011 }
1012 hwgroup->polling = 0; /* done polling */
Alan Cox913759a2006-10-03 01:14:33 -07001013 hwgroup->resetting = 0; /* done reset attempt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 return ide_stopped;
1015}
1016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017static void ide_disk_pre_reset(ide_drive_t *drive)
1018{
1019 int legacy = (drive->id->cfs_enable_2 & 0x0400) ? 0 : 1;
1020
1021 drive->special.all = 0;
1022 drive->special.b.set_geometry = legacy;
1023 drive->special.b.recalibrate = legacy;
Bartlomiej Zolnierkiewicz4ee06b72008-01-25 22:17:08 +01001024 drive->mult_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (!drive->keep_settings && !drive->using_dma)
1026 drive->mult_req = 0;
1027 if (drive->mult_req != drive->mult_count)
1028 drive->special.b.set_multmode = 1;
1029}
1030
1031static void pre_reset(ide_drive_t *drive)
1032{
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001033 const struct ide_port_ops *port_ops = drive->hwif->port_ops;
1034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 if (drive->media == ide_disk)
1036 ide_disk_pre_reset(drive);
1037 else
1038 drive->post_reset = 1;
1039
Bartlomiej Zolnierkiewicz99ffbe02008-02-02 19:56:47 +01001040 if (drive->using_dma) {
1041 if (drive->crc_count)
Bartlomiej Zolnierkiewicz578cfa02008-02-02 19:56:47 +01001042 ide_check_dma_crc(drive);
Bartlomiej Zolnierkiewicz99ffbe02008-02-02 19:56:47 +01001043 else
1044 ide_dma_off(drive);
1045 }
1046
1047 if (!drive->keep_settings) {
1048 if (!drive->using_dma) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 drive->unmask = 0;
1050 drive->io_32bit = 0;
1051 }
1052 return;
1053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001055 if (port_ops && port_ops->pre_reset)
1056 port_ops->pre_reset(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Suleiman Souhlal513daad2007-03-26 23:03:20 +02001058 if (drive->current_speed != 0xff)
1059 drive->desired_speed = drive->current_speed;
1060 drive->current_speed = 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061}
1062
1063/*
1064 * do_reset1() attempts to recover a confused drive by resetting it.
1065 * Unfortunately, resetting a disk drive actually resets all devices on
1066 * the same interface, so it can really be thought of as resetting the
1067 * interface rather than resetting the drive.
1068 *
1069 * ATAPI devices have their own reset mechanism which allows them to be
1070 * individually reset without clobbering other devices on the same interface.
1071 *
1072 * Unfortunately, the IDE interface does not generate an interrupt to let
1073 * us know when the reset operation has finished, so we must poll for this.
1074 * Equally poor, though, is the fact that this may a very long time to complete,
1075 * (up to 30 seconds worstcase). So, instead of busy-waiting here for it,
1076 * we set a timer to poll at 50ms intervals.
1077 */
1078static ide_startstop_t do_reset1 (ide_drive_t *drive, int do_not_try_atapi)
1079{
1080 unsigned int unit;
1081 unsigned long flags;
1082 ide_hwif_t *hwif;
1083 ide_hwgroup_t *hwgroup;
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001084 struct ide_io_ports *io_ports;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001085 const struct ide_port_ops *port_ops;
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +02001086 u8 ctl;
1087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 spin_lock_irqsave(&ide_lock, flags);
1089 hwif = HWIF(drive);
1090 hwgroup = HWGROUP(drive);
1091
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001092 io_ports = &hwif->io_ports;
1093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 /* We must not reset with running handlers */
Eric Sesterhenn125e1872006-06-23 02:06:06 -07001095 BUG_ON(hwgroup->handler != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 /* For an ATAPI device, first try an ATAPI SRST. */
1098 if (drive->media != ide_disk && !do_not_try_atapi) {
Alan Cox913759a2006-10-03 01:14:33 -07001099 hwgroup->resetting = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 pre_reset(drive);
1101 SELECT_DRIVE(drive);
1102 udelay (20);
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001103 hwif->OUTBSYNC(drive, WIN_SRST, io_ports->command_addr);
Alan Cox68ad9912005-06-27 15:24:25 -07001104 ndelay(400);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 hwgroup->poll_timeout = jiffies + WAIT_WORSTCASE;
1106 hwgroup->polling = 1;
1107 __ide_set_handler(drive, &atapi_reset_pollfunc, HZ/20, NULL);
1108 spin_unlock_irqrestore(&ide_lock, flags);
1109 return ide_started;
1110 }
1111
1112 /*
1113 * First, reset any device state data we were maintaining
1114 * for any of the drives on this interface.
1115 */
1116 for (unit = 0; unit < MAX_DRIVES; ++unit)
1117 pre_reset(&hwif->drives[unit]);
1118
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001119 if (io_ports->ctl_addr == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 spin_unlock_irqrestore(&ide_lock, flags);
1121 return ide_stopped;
1122 }
1123
Alan Cox913759a2006-10-03 01:14:33 -07001124 hwgroup->resetting = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 /*
1126 * Note that we also set nIEN while resetting the device,
1127 * to mask unwanted interrupts from the interface during the reset.
1128 * However, due to the design of PC hardware, this will cause an
1129 * immediate interrupt due to the edge transition it produces.
1130 * This single interrupt gives us a "fast poll" for drives that
1131 * recover from reset very quickly, saving us the first 50ms wait time.
1132 */
1133 /* set SRST and nIEN */
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001134 hwif->OUTBSYNC(drive, drive->ctl|6, io_ports->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 /* more than enough time */
1136 udelay(10);
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +02001137 if (drive->quirk_list == 2)
1138 ctl = drive->ctl; /* clear SRST and nIEN */
1139 else
1140 ctl = drive->ctl | 2; /* clear SRST, leave nIEN */
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001141 hwif->OUTBSYNC(drive, ctl, io_ports->ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 /* more than enough time */
1143 udelay(10);
1144 hwgroup->poll_timeout = jiffies + WAIT_WORSTCASE;
1145 hwgroup->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 */
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001153 port_ops = hwif->port_ops;
1154 if (port_ops && port_ops->resetproc)
1155 port_ops->resetproc(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
1157 spin_unlock_irqrestore(&ide_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
1165ide_startstop_t ide_do_reset (ide_drive_t *drive)
1166{
1167 return do_reset1(drive, 0);
1168}
1169
1170EXPORT_SYMBOL(ide_do_reset);
1171
1172/*
1173 * ide_wait_not_busy() waits for the currently selected device on the hwif
Bartlomiej Zolnierkiewicz9d501522008-02-01 23:09:36 +01001174 * to report a non-busy status, see comments in ide_probe_port().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 */
1176int 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);
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001186 stat = hwif->INB(hwif->io_ports.status_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 if ((stat & BUSY_STAT) == 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;
Ingo Molnar6842f8c2006-02-03 03:04:55 -08001196 touch_softlockup_watchdog();
Michal Schmidt1e862402006-07-30 03:03:29 -07001197 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 }
1199 return -EBUSY;
1200}
1201
1202EXPORT_SYMBOL_GPL(ide_wait_not_busy);
1203