2 #include <linux/kernel.h>
4 #include <linux/delay.h>
6 static ide_startstop_t
ide_ata_error(ide_drive_t
*drive
, struct request
*rq
,
9 ide_hwif_t
*hwif
= drive
->hwif
;
11 if ((stat
& ATA_BUSY
) ||
12 ((stat
& ATA_DF
) && (drive
->dev_flags
& IDE_DFLAG_NOWERR
) == 0)) {
13 /* other bits are useless when BUSY */
14 rq
->errors
|= ERROR_RESET
;
15 } else if (stat
& ATA_ERR
) {
16 /* err has different meaning on cdrom and tape */
17 if (err
== ATA_ABORTED
) {
18 if ((drive
->dev_flags
& IDE_DFLAG_LBA
) &&
19 /* some newer drives don't support ATA_CMD_INIT_DEV_PARAMS */
20 hwif
->tp_ops
->read_status(hwif
) == ATA_CMD_INIT_DEV_PARAMS
)
22 } else if ((err
& BAD_CRC
) == BAD_CRC
) {
23 /* UDMA crc error, just retry the operation */
25 } else if (err
& (ATA_BBK
| ATA_UNC
)) {
26 /* retries won't help these */
27 rq
->errors
= ERROR_MAX
;
28 } else if (err
& ATA_TRK0NF
) {
29 /* help it find track zero */
30 rq
->errors
|= ERROR_RECAL
;
34 if ((stat
& ATA_DRQ
) && rq_data_dir(rq
) == READ
&&
35 (hwif
->host_flags
& IDE_HFLAG_ERROR_STOPS_FIFO
) == 0) {
36 int nsect
= drive
->mult_count
? drive
->mult_count
: 1;
38 ide_pad_transfer(drive
, READ
, nsect
* SECTOR_SIZE
);
41 if (rq
->errors
>= ERROR_MAX
|| blk_noretry_request(rq
)) {
42 ide_kill_rq(drive
, rq
);
46 if (hwif
->tp_ops
->read_status(hwif
) & (ATA_BUSY
| ATA_DRQ
))
47 rq
->errors
|= ERROR_RESET
;
49 if ((rq
->errors
& ERROR_RESET
) == ERROR_RESET
) {
51 return ide_do_reset(drive
);
54 if ((rq
->errors
& ERROR_RECAL
) == ERROR_RECAL
)
55 drive
->special_flags
|= IDE_SFLAG_RECALIBRATE
;
62 static ide_startstop_t
ide_atapi_error(ide_drive_t
*drive
, struct request
*rq
,
65 ide_hwif_t
*hwif
= drive
->hwif
;
67 if ((stat
& ATA_BUSY
) ||
68 ((stat
& ATA_DF
) && (drive
->dev_flags
& IDE_DFLAG_NOWERR
) == 0)) {
69 /* other bits are useless when BUSY */
70 rq
->errors
|= ERROR_RESET
;
72 /* add decoding error stuff */
75 if (hwif
->tp_ops
->read_status(hwif
) & (ATA_BUSY
| ATA_DRQ
))
77 hwif
->tp_ops
->exec_command(hwif
, ATA_CMD_IDLEIMMEDIATE
);
79 if (rq
->errors
>= ERROR_MAX
) {
80 ide_kill_rq(drive
, rq
);
82 if ((rq
->errors
& ERROR_RESET
) == ERROR_RESET
) {
84 return ide_do_reset(drive
);
92 static ide_startstop_t
__ide_error(ide_drive_t
*drive
, struct request
*rq
,
95 if (drive
->media
== ide_disk
)
96 return ide_ata_error(drive
, rq
, stat
, err
);
97 return ide_atapi_error(drive
, rq
, stat
, err
);
101 * ide_error - handle an error on the IDE
102 * @drive: drive the error occurred on
103 * @msg: message to report
106 * ide_error() takes action based on the error returned by the drive.
107 * For normal I/O that may well include retries. We deal with
108 * both new-style (taskfile) and old style command handling here.
109 * In the case of taskfile command handling there is work left to
113 ide_startstop_t
ide_error(ide_drive_t
*drive
, const char *msg
, u8 stat
)
118 err
= ide_dump_status(drive
, msg
, stat
);
120 rq
= drive
->hwif
->rq
;
124 /* retry only "normal" I/O: */
125 if (rq
->cmd_type
!= REQ_TYPE_FS
) {
126 if (rq
->cmd_type
== REQ_TYPE_ATA_TASKFILE
) {
127 struct ide_cmd
*cmd
= rq
->special
;
130 ide_complete_cmd(drive
, cmd
, stat
, err
);
131 } else if (blk_pm_request(rq
)) {
133 ide_complete_pm_rq(drive
, rq
);
137 ide_complete_rq(drive
, err
? -EIO
: 0, blk_rq_bytes(rq
));
141 return __ide_error(drive
, rq
, stat
, err
);
143 EXPORT_SYMBOL_GPL(ide_error
);
145 static inline void ide_complete_drive_reset(ide_drive_t
*drive
, int err
)
147 struct request
*rq
= drive
->hwif
->rq
;
149 if (rq
&& rq
->cmd_type
== REQ_TYPE_SPECIAL
&&
150 rq
->cmd
[0] == REQ_DRIVE_RESET
) {
151 if (err
<= 0 && rq
->errors
== 0)
153 ide_complete_rq(drive
, err
? err
: 0, blk_rq_bytes(rq
));
158 static ide_startstop_t
do_reset1(ide_drive_t
*, int);
161 * atapi_reset_pollfunc() gets invoked to poll the interface for completion
162 * every 50ms during an atapi drive reset operation. If the drive has not yet
163 * responded, and we have not yet hit our maximum waiting time, then the timer
164 * is restarted for another 50ms.
166 static ide_startstop_t
atapi_reset_pollfunc(ide_drive_t
*drive
)
168 ide_hwif_t
*hwif
= drive
->hwif
;
169 const struct ide_tp_ops
*tp_ops
= hwif
->tp_ops
;
172 tp_ops
->dev_select(drive
);
174 stat
= tp_ops
->read_status(hwif
);
176 if (OK_STAT(stat
, 0, ATA_BUSY
))
177 printk(KERN_INFO
"%s: ATAPI reset complete\n", drive
->name
);
179 if (time_before(jiffies
, hwif
->poll_timeout
)) {
180 ide_set_handler(drive
, &atapi_reset_pollfunc
, HZ
/20);
181 /* continue polling */
186 printk(KERN_ERR
"%s: ATAPI reset timed-out, status=0x%02x\n",
188 /* do it the old fashioned way */
189 return do_reset1(drive
, 1);
193 ide_complete_drive_reset(drive
, 0);
197 static void ide_reset_report_error(ide_hwif_t
*hwif
, u8 err
)
199 static const char *err_master_vals
[] =
200 { NULL
, "passed", "formatter device error",
201 "sector buffer error", "ECC circuitry error",
202 "controlling MPU error" };
204 u8 err_master
= err
& 0x7f;
206 printk(KERN_ERR
"%s: reset: master: ", hwif
->name
);
207 if (err_master
&& err_master
< 6)
208 printk(KERN_CONT
"%s", err_master_vals
[err_master
]);
210 printk(KERN_CONT
"error (0x%02x?)", err
);
212 printk(KERN_CONT
"; slave: failed");
213 printk(KERN_CONT
"\n");
217 * reset_pollfunc() gets invoked to poll the interface for completion every 50ms
218 * during an ide reset operation. If the drives have not yet responded,
219 * and we have not yet hit our maximum waiting time, then the timer is restarted
222 static ide_startstop_t
reset_pollfunc(ide_drive_t
*drive
)
224 ide_hwif_t
*hwif
= drive
->hwif
;
225 const struct ide_port_ops
*port_ops
= hwif
->port_ops
;
229 if (port_ops
&& port_ops
->reset_poll
) {
230 err
= port_ops
->reset_poll(drive
);
232 printk(KERN_ERR
"%s: host reset_poll failure for %s.\n",
233 hwif
->name
, drive
->name
);
238 tmp
= hwif
->tp_ops
->read_status(hwif
);
240 if (!OK_STAT(tmp
, 0, ATA_BUSY
)) {
241 if (time_before(jiffies
, hwif
->poll_timeout
)) {
242 ide_set_handler(drive
, &reset_pollfunc
, HZ
/20);
243 /* continue polling */
246 printk(KERN_ERR
"%s: reset timed-out, status=0x%02x\n",
251 tmp
= ide_read_error(drive
);
254 printk(KERN_INFO
"%s: reset: success\n", hwif
->name
);
257 ide_reset_report_error(hwif
, tmp
);
263 hwif
->polling
= 0; /* done polling */
264 ide_complete_drive_reset(drive
, err
);
268 static void ide_disk_pre_reset(ide_drive_t
*drive
)
270 int legacy
= (drive
->id
[ATA_ID_CFS_ENABLE_2
] & 0x0400) ? 0 : 1;
272 drive
->special_flags
=
273 legacy
? (IDE_SFLAG_SET_GEOMETRY
| IDE_SFLAG_RECALIBRATE
) : 0;
275 drive
->mult_count
= 0;
276 drive
->dev_flags
&= ~IDE_DFLAG_PARKED
;
278 if ((drive
->dev_flags
& IDE_DFLAG_KEEP_SETTINGS
) == 0 &&
279 (drive
->dev_flags
& IDE_DFLAG_USING_DMA
) == 0)
282 if (drive
->mult_req
!= drive
->mult_count
)
283 drive
->special_flags
|= IDE_SFLAG_SET_MULTMODE
;
286 static void pre_reset(ide_drive_t
*drive
)
288 const struct ide_port_ops
*port_ops
= drive
->hwif
->port_ops
;
290 if (drive
->media
== ide_disk
)
291 ide_disk_pre_reset(drive
);
293 drive
->dev_flags
|= IDE_DFLAG_POST_RESET
;
295 if (drive
->dev_flags
& IDE_DFLAG_USING_DMA
) {
296 if (drive
->crc_count
)
297 ide_check_dma_crc(drive
);
302 if ((drive
->dev_flags
& IDE_DFLAG_KEEP_SETTINGS
) == 0) {
303 if ((drive
->dev_flags
& IDE_DFLAG_USING_DMA
) == 0) {
304 drive
->dev_flags
&= ~IDE_DFLAG_UNMASK
;
310 if (port_ops
&& port_ops
->pre_reset
)
311 port_ops
->pre_reset(drive
);
313 if (drive
->current_speed
!= 0xff)
314 drive
->desired_speed
= drive
->current_speed
;
315 drive
->current_speed
= 0xff;
319 * do_reset1() attempts to recover a confused drive by resetting it.
320 * Unfortunately, resetting a disk drive actually resets all devices on
321 * the same interface, so it can really be thought of as resetting the
322 * interface rather than resetting the drive.
324 * ATAPI devices have their own reset mechanism which allows them to be
325 * individually reset without clobbering other devices on the same interface.
327 * Unfortunately, the IDE interface does not generate an interrupt to let
328 * us know when the reset operation has finished, so we must poll for this.
329 * Equally poor, though, is the fact that this may a very long time to complete,
330 * (up to 30 seconds worstcase). So, instead of busy-waiting here for it,
331 * we set a timer to poll at 50ms intervals.
333 static ide_startstop_t
do_reset1(ide_drive_t
*drive
, int do_not_try_atapi
)
335 ide_hwif_t
*hwif
= drive
->hwif
;
336 struct ide_io_ports
*io_ports
= &hwif
->io_ports
;
337 const struct ide_tp_ops
*tp_ops
= hwif
->tp_ops
;
338 const struct ide_port_ops
*port_ops
;
340 unsigned long flags
, timeout
;
344 spin_lock_irqsave(&hwif
->lock
, flags
);
346 /* We must not reset with running handlers */
347 BUG_ON(hwif
->handler
!= NULL
);
349 /* For an ATAPI device, first try an ATAPI SRST. */
350 if (drive
->media
!= ide_disk
&& !do_not_try_atapi
) {
352 tp_ops
->dev_select(drive
);
354 tp_ops
->exec_command(hwif
, ATA_CMD_DEV_RESET
);
356 hwif
->poll_timeout
= jiffies
+ WAIT_WORSTCASE
;
358 __ide_set_handler(drive
, &atapi_reset_pollfunc
, HZ
/20);
359 spin_unlock_irqrestore(&hwif
->lock
, flags
);
363 /* We must not disturb devices in the IDE_DFLAG_PARKED state. */
367 prepare_to_wait(&ide_park_wq
, &wait
, TASK_UNINTERRUPTIBLE
);
369 ide_port_for_each_present_dev(i
, tdrive
, hwif
) {
370 if ((tdrive
->dev_flags
& IDE_DFLAG_PARKED
) &&
371 time_after(tdrive
->sleep
, timeout
))
372 timeout
= tdrive
->sleep
;
376 if (time_before_eq(timeout
, now
))
379 spin_unlock_irqrestore(&hwif
->lock
, flags
);
380 timeout
= schedule_timeout_uninterruptible(timeout
- now
);
381 spin_lock_irqsave(&hwif
->lock
, flags
);
383 finish_wait(&ide_park_wq
, &wait
);
386 * First, reset any device state data we were maintaining
387 * for any of the drives on this interface.
389 ide_port_for_each_dev(i
, tdrive
, hwif
)
392 if (io_ports
->ctl_addr
== 0) {
393 spin_unlock_irqrestore(&hwif
->lock
, flags
);
394 ide_complete_drive_reset(drive
, -ENXIO
);
399 * Note that we also set nIEN while resetting the device,
400 * to mask unwanted interrupts from the interface during the reset.
401 * However, due to the design of PC hardware, this will cause an
402 * immediate interrupt due to the edge transition it produces.
403 * This single interrupt gives us a "fast poll" for drives that
404 * recover from reset very quickly, saving us the first 50ms wait time.
406 /* set SRST and nIEN */
407 tp_ops
->write_devctl(hwif
, ATA_SRST
| ATA_NIEN
| ATA_DEVCTL_OBS
);
408 /* more than enough time */
410 /* clear SRST, leave nIEN (unless device is on the quirk list) */
411 tp_ops
->write_devctl(hwif
,
412 ((drive
->dev_flags
& IDE_DFLAG_NIEN_QUIRK
) ? 0 : ATA_NIEN
) |
414 /* more than enough time */
416 hwif
->poll_timeout
= jiffies
+ WAIT_WORSTCASE
;
418 __ide_set_handler(drive
, &reset_pollfunc
, HZ
/20);
421 * Some weird controller like resetting themselves to a strange
422 * state when the disks are reset this way. At least, the Winbond
423 * 553 documentation says that
425 port_ops
= hwif
->port_ops
;
426 if (port_ops
&& port_ops
->resetproc
)
427 port_ops
->resetproc(drive
);
429 spin_unlock_irqrestore(&hwif
->lock
, flags
);
434 * ide_do_reset() is the entry point to the drive/interface reset code.
437 ide_startstop_t
ide_do_reset(ide_drive_t
*drive
)
439 return do_reset1(drive
, 0);
441 EXPORT_SYMBOL(ide_do_reset
);