]>
Commit | Line | Data |
---|---|---|
594c16d8 BZ |
1 | /* |
2 | * ATAPI support. | |
3 | */ | |
4 | ||
5 | #include <linux/kernel.h> | |
4cad085e | 6 | #include <linux/cdrom.h> |
594c16d8 | 7 | #include <linux/delay.h> |
38789fda | 8 | #include <linux/export.h> |
594c16d8 | 9 | #include <linux/ide.h> |
479edf06 | 10 | #include <linux/scatterlist.h> |
5a0e3ad6 | 11 | #include <linux/gfp.h> |
479edf06 | 12 | |
646c0cb6 BZ |
13 | #include <scsi/scsi.h> |
14 | ||
103f7033 BP |
15 | #define DRV_NAME "ide-atapi" |
16 | #define PFX DRV_NAME ": " | |
17 | ||
646c0cb6 BZ |
18 | #ifdef DEBUG |
19 | #define debug_log(fmt, args...) \ | |
20 | printk(KERN_INFO "ide: " fmt, ## args) | |
21 | #else | |
22 | #define debug_log(fmt, args...) do {} while (0) | |
23 | #endif | |
24 | ||
8c662852 BP |
25 | #define ATAPI_MIN_CDB_BYTES 12 |
26 | ||
991cb26a BP |
27 | static inline int dev_is_idecd(ide_drive_t *drive) |
28 | { | |
5317464d | 29 | return drive->media == ide_cdrom || drive->media == ide_optical; |
991cb26a BP |
30 | } |
31 | ||
51509eec BZ |
32 | /* |
33 | * Check whether we can support a device, | |
34 | * based on the ATAPI IDENTIFY command results. | |
35 | */ | |
36 | int ide_check_atapi_device(ide_drive_t *drive, const char *s) | |
37 | { | |
38 | u16 *id = drive->id; | |
39 | u8 gcw[2], protocol, device_type, removable, drq_type, packet_size; | |
40 | ||
41 | *((u16 *)&gcw) = id[ATA_ID_CONFIG]; | |
42 | ||
43 | protocol = (gcw[1] & 0xC0) >> 6; | |
44 | device_type = gcw[1] & 0x1F; | |
45 | removable = (gcw[0] & 0x80) >> 7; | |
46 | drq_type = (gcw[0] & 0x60) >> 5; | |
47 | packet_size = gcw[0] & 0x03; | |
48 | ||
49 | #ifdef CONFIG_PPC | |
50 | /* kludge for Apple PowerBook internal zip */ | |
51 | if (drive->media == ide_floppy && device_type == 5 && | |
52 | !strstr((char *)&id[ATA_ID_PROD], "CD-ROM") && | |
53 | strstr((char *)&id[ATA_ID_PROD], "ZIP")) | |
54 | device_type = 0; | |
55 | #endif | |
56 | ||
57 | if (protocol != 2) | |
58 | printk(KERN_ERR "%s: %s: protocol (0x%02x) is not ATAPI\n", | |
59 | s, drive->name, protocol); | |
60 | else if ((drive->media == ide_floppy && device_type != 0) || | |
61 | (drive->media == ide_tape && device_type != 1)) | |
62 | printk(KERN_ERR "%s: %s: invalid device type (0x%02x)\n", | |
63 | s, drive->name, device_type); | |
64 | else if (removable == 0) | |
65 | printk(KERN_ERR "%s: %s: the removable flag is not set\n", | |
66 | s, drive->name); | |
67 | else if (drive->media == ide_floppy && drq_type == 3) | |
68 | printk(KERN_ERR "%s: %s: sorry, DRQ type (0x%02x) not " | |
69 | "supported\n", s, drive->name, drq_type); | |
70 | else if (packet_size != 0) | |
71 | printk(KERN_ERR "%s: %s: packet size (0x%02x) is not 12 " | |
72 | "bytes\n", s, drive->name, packet_size); | |
73 | else | |
74 | return 1; | |
75 | return 0; | |
76 | } | |
77 | EXPORT_SYMBOL_GPL(ide_check_atapi_device); | |
78 | ||
7bf7420a BZ |
79 | void ide_init_pc(struct ide_atapi_pc *pc) |
80 | { | |
81 | memset(pc, 0, sizeof(*pc)); | |
7bf7420a BZ |
82 | } |
83 | EXPORT_SYMBOL_GPL(ide_init_pc); | |
84 | ||
2ac07d92 BZ |
85 | /* |
86 | * Add a special packet command request to the tail of the request queue, | |
87 | * and wait for it to be serviced. | |
88 | */ | |
89 | int ide_queue_pc_tail(ide_drive_t *drive, struct gendisk *disk, | |
b13345f3 | 90 | struct ide_atapi_pc *pc, void *buf, unsigned int bufflen) |
2ac07d92 BZ |
91 | { |
92 | struct request *rq; | |
93 | int error; | |
94 | ||
ff005a06 | 95 | rq = blk_get_request(drive->queue, REQ_OP_DRV_IN, 0); |
2f5a8e80 | 96 | ide_req(rq)->type = ATA_PRIV_MISC; |
c267cc1c | 97 | rq->special = (char *)pc; |
3eb76c1c | 98 | |
b13345f3 BP |
99 | if (buf && bufflen) { |
100 | error = blk_rq_map_kern(drive->queue, rq, buf, bufflen, | |
5c4be572 TH |
101 | GFP_NOIO); |
102 | if (error) | |
103 | goto put_req; | |
3eb76c1c BP |
104 | } |
105 | ||
82ed4db4 | 106 | memcpy(scsi_req(rq)->cmd, pc->c, 12); |
2ac07d92 | 107 | if (drive->media == ide_tape) |
82ed4db4 | 108 | scsi_req(rq)->cmd[13] = REQ_IDETAPE_PC1; |
b7819b92 | 109 | blk_execute_rq(drive->queue, disk, rq, 0); |
17d5363b | 110 | error = scsi_req(rq)->result ? -EIO : 0; |
5c4be572 | 111 | put_req: |
2ac07d92 | 112 | blk_put_request(rq); |
2ac07d92 BZ |
113 | return error; |
114 | } | |
115 | EXPORT_SYMBOL_GPL(ide_queue_pc_tail); | |
116 | ||
de699ad5 BZ |
117 | int ide_do_test_unit_ready(ide_drive_t *drive, struct gendisk *disk) |
118 | { | |
119 | struct ide_atapi_pc pc; | |
120 | ||
121 | ide_init_pc(&pc); | |
122 | pc.c[0] = TEST_UNIT_READY; | |
123 | ||
b13345f3 | 124 | return ide_queue_pc_tail(drive, disk, &pc, NULL, 0); |
de699ad5 BZ |
125 | } |
126 | EXPORT_SYMBOL_GPL(ide_do_test_unit_ready); | |
127 | ||
0c8a6c7a BZ |
128 | int ide_do_start_stop(ide_drive_t *drive, struct gendisk *disk, int start) |
129 | { | |
130 | struct ide_atapi_pc pc; | |
131 | ||
132 | ide_init_pc(&pc); | |
133 | pc.c[0] = START_STOP; | |
134 | pc.c[4] = start; | |
135 | ||
136 | if (drive->media == ide_tape) | |
137 | pc.flags |= PC_FLAG_WAIT_FOR_DSC; | |
138 | ||
b13345f3 | 139 | return ide_queue_pc_tail(drive, disk, &pc, NULL, 0); |
0c8a6c7a BZ |
140 | } |
141 | EXPORT_SYMBOL_GPL(ide_do_start_stop); | |
142 | ||
0578042d BZ |
143 | int ide_set_media_lock(ide_drive_t *drive, struct gendisk *disk, int on) |
144 | { | |
145 | struct ide_atapi_pc pc; | |
146 | ||
42619d35 | 147 | if ((drive->dev_flags & IDE_DFLAG_DOORLOCKING) == 0) |
0578042d BZ |
148 | return 0; |
149 | ||
150 | ide_init_pc(&pc); | |
151 | pc.c[0] = ALLOW_MEDIUM_REMOVAL; | |
152 | pc.c[4] = on; | |
153 | ||
b13345f3 | 154 | return ide_queue_pc_tail(drive, disk, &pc, NULL, 0); |
0578042d BZ |
155 | } |
156 | EXPORT_SYMBOL_GPL(ide_set_media_lock); | |
157 | ||
6b0da28b BZ |
158 | void ide_create_request_sense_cmd(ide_drive_t *drive, struct ide_atapi_pc *pc) |
159 | { | |
160 | ide_init_pc(pc); | |
161 | pc->c[0] = REQUEST_SENSE; | |
162 | if (drive->media == ide_floppy) { | |
163 | pc->c[4] = 255; | |
164 | pc->req_xfer = 18; | |
165 | } else { | |
166 | pc->c[4] = 20; | |
167 | pc->req_xfer = 20; | |
168 | } | |
169 | } | |
170 | EXPORT_SYMBOL_GPL(ide_create_request_sense_cmd); | |
171 | ||
a1df5169 BP |
172 | void ide_prep_sense(ide_drive_t *drive, struct request *rq) |
173 | { | |
174 | struct request_sense *sense = &drive->sense_data; | |
82ed4db4 CH |
175 | struct request *sense_rq = drive->sense_rq; |
176 | struct scsi_request *req = scsi_req(sense_rq); | |
a1df5169 | 177 | unsigned int cmd_len, sense_len; |
5c4be572 | 178 | int err; |
a1df5169 | 179 | |
a1df5169 BP |
180 | switch (drive->media) { |
181 | case ide_floppy: | |
182 | cmd_len = 255; | |
183 | sense_len = 18; | |
184 | break; | |
185 | case ide_tape: | |
186 | cmd_len = 20; | |
187 | sense_len = 20; | |
188 | break; | |
189 | default: | |
190 | cmd_len = 18; | |
191 | sense_len = 18; | |
192 | } | |
193 | ||
194 | BUG_ON(sense_len > sizeof(*sense)); | |
195 | ||
2f5a8e80 | 196 | if (ata_sense_request(rq) || drive->sense_rq_armed) |
a1df5169 BP |
197 | return; |
198 | ||
199 | memset(sense, 0, sizeof(*sense)); | |
200 | ||
201 | blk_rq_init(rq->q, sense_rq); | |
c8d9cf22 | 202 | scsi_req_init(req); |
a1df5169 | 203 | |
5c4be572 TH |
204 | err = blk_rq_map_kern(drive->queue, sense_rq, sense, sense_len, |
205 | GFP_NOIO); | |
206 | if (unlikely(err)) { | |
207 | if (printk_ratelimit()) | |
103f7033 BP |
208 | printk(KERN_WARNING PFX "%s: failed to map sense " |
209 | "buffer\n", drive->name); | |
5c4be572 TH |
210 | return; |
211 | } | |
212 | ||
213 | sense_rq->rq_disk = rq->rq_disk; | |
aebf526b | 214 | sense_rq->cmd_flags = REQ_OP_DRV_IN; |
2f5a8e80 | 215 | ide_req(sense_rq)->type = ATA_PRIV_SENSE; |
e8064021 | 216 | sense_rq->rq_flags |= RQF_PREEMPT; |
a1df5169 | 217 | |
82ed4db4 CH |
218 | req->cmd[0] = GPCMD_REQUEST_SENSE; |
219 | req->cmd[4] = cmd_len; | |
a1df5169 | 220 | if (drive->media == ide_tape) |
82ed4db4 | 221 | req->cmd[13] = REQ_IDETAPE_PC1; |
a1df5169 BP |
222 | |
223 | drive->sense_rq_armed = true; | |
224 | } | |
225 | EXPORT_SYMBOL_GPL(ide_prep_sense); | |
226 | ||
5c4be572 | 227 | int ide_queue_sense_rq(ide_drive_t *drive, void *special) |
a1df5169 | 228 | { |
5c4be572 TH |
229 | /* deferred failure from ide_prep_sense() */ |
230 | if (!drive->sense_rq_armed) { | |
103f7033 | 231 | printk(KERN_WARNING PFX "%s: error queuing a sense request\n", |
5c4be572 TH |
232 | drive->name); |
233 | return -ENOMEM; | |
234 | } | |
a1df5169 | 235 | |
82ed4db4 | 236 | drive->sense_rq->special = special; |
a1df5169 BP |
237 | drive->sense_rq_armed = false; |
238 | ||
239 | drive->hwif->rq = NULL; | |
240 | ||
82ed4db4 | 241 | elv_add_request(drive->queue, drive->sense_rq, ELEVATOR_INSERT_FRONT); |
5c4be572 | 242 | return 0; |
a1df5169 BP |
243 | } |
244 | EXPORT_SYMBOL_GPL(ide_queue_sense_rq); | |
245 | ||
6b0da28b BZ |
246 | /* |
247 | * Called when an error was detected during the last packet command. | |
6b544fcc BP |
248 | * We queue a request sense packet command at the head of the request |
249 | * queue. | |
6b0da28b | 250 | */ |
6b544fcc | 251 | void ide_retry_pc(ide_drive_t *drive) |
6b0da28b | 252 | { |
8f6205cd | 253 | struct request *failed_rq = drive->hwif->rq; |
82ed4db4 | 254 | struct request *sense_rq = drive->sense_rq; |
6b0da28b BZ |
255 | struct ide_atapi_pc *pc = &drive->request_sense_pc; |
256 | ||
257 | (void)ide_read_error(drive); | |
6b544fcc BP |
258 | |
259 | /* init pc from sense_rq */ | |
260 | ide_init_pc(pc); | |
82ed4db4 | 261 | memcpy(pc->c, scsi_req(sense_rq)->cmd, 12); |
6b544fcc | 262 | |
6b0da28b | 263 | if (drive->media == ide_tape) |
626542ca | 264 | drive->atapi_flags |= IDE_AFLAG_IGNORE_DSC; |
6b544fcc | 265 | |
8f6205cd TH |
266 | /* |
267 | * Push back the failed request and put request sense on top | |
268 | * of it. The failed command will be retried after sense data | |
269 | * is acquired. | |
270 | */ | |
8f6205cd | 271 | drive->hwif->rq = NULL; |
1af18503 | 272 | ide_requeue_and_plug(drive, failed_rq); |
8f6205cd | 273 | if (ide_queue_sense_rq(drive, pc)) { |
9934c8c0 | 274 | blk_start_request(failed_rq); |
2a842aca | 275 | ide_complete_rq(drive, BLK_STS_IOERR, blk_rq_bytes(failed_rq)); |
8f6205cd | 276 | } |
6b0da28b BZ |
277 | } |
278 | EXPORT_SYMBOL_GPL(ide_retry_pc); | |
279 | ||
4cad085e BP |
280 | int ide_cd_expiry(ide_drive_t *drive) |
281 | { | |
b65fac32 | 282 | struct request *rq = drive->hwif->rq; |
4cad085e BP |
283 | unsigned long wait = 0; |
284 | ||
8dc7a31f | 285 | debug_log("%s: scsi_req(rq)->cmd[0]: 0x%x\n", __func__, scsi_req(rq)->cmd[0]); |
4cad085e BP |
286 | |
287 | /* | |
288 | * Some commands are *slow* and normally take a long time to complete. | |
289 | * Usually we can use the ATAPI "disconnect" to bypass this, but not all | |
290 | * commands/drives support that. Let ide_timer_expiry keep polling us | |
291 | * for these. | |
292 | */ | |
82ed4db4 | 293 | switch (scsi_req(rq)->cmd[0]) { |
4cad085e BP |
294 | case GPCMD_BLANK: |
295 | case GPCMD_FORMAT_UNIT: | |
296 | case GPCMD_RESERVE_RZONE_TRACK: | |
297 | case GPCMD_CLOSE_TRACK: | |
298 | case GPCMD_FLUSH_CACHE: | |
299 | wait = ATAPI_WAIT_PC; | |
300 | break; | |
301 | default: | |
e8064021 | 302 | if (!(rq->rq_flags & RQF_QUIET)) |
103f7033 | 303 | printk(KERN_INFO PFX "cmd 0x%x timed out\n", |
82ed4db4 | 304 | scsi_req(rq)->cmd[0]); |
4cad085e BP |
305 | wait = 0; |
306 | break; | |
307 | } | |
308 | return wait; | |
309 | } | |
310 | EXPORT_SYMBOL_GPL(ide_cd_expiry); | |
311 | ||
392de1d5 BP |
312 | int ide_cd_get_xferlen(struct request *rq) |
313 | { | |
aebf526b CH |
314 | switch (req_op(rq)) { |
315 | default: | |
392de1d5 | 316 | return 32768; |
aebf526b CH |
317 | case REQ_OP_SCSI_IN: |
318 | case REQ_OP_SCSI_OUT: | |
34b7d2c9 | 319 | return blk_rq_bytes(rq); |
aebf526b CH |
320 | case REQ_OP_DRV_IN: |
321 | case REQ_OP_DRV_OUT: | |
2f5a8e80 CH |
322 | switch (ide_req(rq)->type) { |
323 | case ATA_PRIV_PC: | |
324 | case ATA_PRIV_SENSE: | |
325 | return blk_rq_bytes(rq); | |
aebf526b CH |
326 | default: |
327 | return 0; | |
2f5a8e80 | 328 | } |
33659ebb | 329 | } |
392de1d5 BP |
330 | } |
331 | EXPORT_SYMBOL_GPL(ide_cd_get_xferlen); | |
332 | ||
0d6a9754 BZ |
333 | void ide_read_bcount_and_ireason(ide_drive_t *drive, u16 *bcount, u8 *ireason) |
334 | { | |
3153c26b | 335 | struct ide_taskfile tf; |
0d6a9754 | 336 | |
3153c26b SS |
337 | drive->hwif->tp_ops->tf_read(drive, &tf, IDE_VALID_NSECT | |
338 | IDE_VALID_LBAM | IDE_VALID_LBAH); | |
0d6a9754 | 339 | |
3153c26b SS |
340 | *bcount = (tf.lbah << 8) | tf.lbam; |
341 | *ireason = tf.nsect & 3; | |
0d6a9754 BZ |
342 | } |
343 | EXPORT_SYMBOL_GPL(ide_read_bcount_and_ireason); | |
344 | ||
103f7033 BP |
345 | /* |
346 | * Check the contents of the interrupt reason register and attempt to recover if | |
347 | * there are problems. | |
348 | * | |
349 | * Returns: | |
350 | * - 0 if everything's ok | |
351 | * - 1 if the request has to be terminated. | |
352 | */ | |
353 | int ide_check_ireason(ide_drive_t *drive, struct request *rq, int len, | |
354 | int ireason, int rw) | |
355 | { | |
356 | ide_hwif_t *hwif = drive->hwif; | |
357 | ||
358 | debug_log("ireason: 0x%x, rw: 0x%x\n", ireason, rw); | |
359 | ||
360 | if (ireason == (!rw << 1)) | |
361 | return 0; | |
362 | else if (ireason == (rw << 1)) { | |
363 | printk(KERN_ERR PFX "%s: %s: wrong transfer direction!\n", | |
364 | drive->name, __func__); | |
365 | ||
366 | if (dev_is_idecd(drive)) | |
367 | ide_pad_transfer(drive, rw, len); | |
368 | } else if (!rw && ireason == ATAPI_COD) { | |
369 | if (dev_is_idecd(drive)) { | |
370 | /* | |
371 | * Some drives (ASUS) seem to tell us that status info | |
372 | * is available. Just get it and ignore. | |
373 | */ | |
374 | (void)hwif->tp_ops->read_status(hwif); | |
375 | return 0; | |
376 | } | |
377 | } else { | |
378 | if (ireason & ATAPI_COD) | |
379 | printk(KERN_ERR PFX "%s: CoD != 0 in %s\n", drive->name, | |
380 | __func__); | |
381 | ||
382 | /* drive wants a command packet, or invalid ireason... */ | |
383 | printk(KERN_ERR PFX "%s: %s: bad interrupt reason 0x%02x\n", | |
384 | drive->name, __func__, ireason); | |
385 | } | |
386 | ||
2f5a8e80 | 387 | if (dev_is_idecd(drive) && ata_pc_request(rq)) |
e8064021 | 388 | rq->rq_flags |= RQF_FAILED; |
103f7033 BP |
389 | |
390 | return 1; | |
391 | } | |
392 | EXPORT_SYMBOL_GPL(ide_check_ireason); | |
393 | ||
aa5d2de7 BZ |
394 | /* |
395 | * This is the usual interrupt handler which will be called during a packet | |
396 | * command. We will transfer some of the data (as requested by the drive) | |
397 | * and will re-point interrupt handler to us. | |
398 | */ | |
399 | static ide_startstop_t ide_pc_intr(ide_drive_t *drive) | |
646c0cb6 | 400 | { |
2b9efba4 | 401 | struct ide_atapi_pc *pc = drive->pc; |
646c0cb6 | 402 | ide_hwif_t *hwif = drive->hwif; |
f094d4d8 | 403 | struct ide_cmd *cmd = &hwif->cmd; |
b65fac32 | 404 | struct request *rq = hwif->rq; |
374e042c | 405 | const struct ide_tp_ops *tp_ops = hwif->tp_ops; |
d93bc452 | 406 | unsigned int timeout, done; |
646c0cb6 | 407 | u16 bcount; |
5d655a03 | 408 | u8 stat, ireason, dsc = 0; |
d93bc452 | 409 | u8 write = !!(pc->flags & PC_FLAG_WRITING); |
646c0cb6 BZ |
410 | |
411 | debug_log("Enter %s - interrupt handler\n", __func__); | |
412 | ||
5d655a03 BP |
413 | timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD |
414 | : WAIT_TAPE_CMD; | |
844b9468 | 415 | |
646c0cb6 | 416 | /* Clear the interrupt */ |
374e042c | 417 | stat = tp_ops->read_status(hwif); |
646c0cb6 BZ |
418 | |
419 | if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) { | |
88b4132e | 420 | int rc; |
4453011f | 421 | |
88b4132e BZ |
422 | drive->waiting_for_dma = 0; |
423 | rc = hwif->dma_ops->dma_end(drive); | |
f094d4d8 | 424 | ide_dma_unmap_sg(drive, cmd); |
4453011f BZ |
425 | |
426 | if (rc || (drive->media == ide_tape && (stat & ATA_ERR))) { | |
5d655a03 | 427 | if (drive->media == ide_floppy) |
103f7033 | 428 | printk(KERN_ERR PFX "%s: DMA %s error\n", |
646c0cb6 BZ |
429 | drive->name, rq_data_dir(pc->rq) |
430 | ? "write" : "read"); | |
431 | pc->flags |= PC_FLAG_DMA_ERROR; | |
6d700387 | 432 | } else |
82ed4db4 | 433 | scsi_req(rq)->resid_len = 0; |
646c0cb6 BZ |
434 | debug_log("%s: DMA finished\n", drive->name); |
435 | } | |
436 | ||
437 | /* No more interrupts */ | |
3a7d2484 | 438 | if ((stat & ATA_DRQ) == 0) { |
2a842aca CH |
439 | int uptodate; |
440 | blk_status_t error; | |
03a2faae | 441 | |
646c0cb6 | 442 | debug_log("Packet command completed, %d bytes transferred\n", |
077e6dba | 443 | blk_rq_bytes(rq)); |
646c0cb6 BZ |
444 | |
445 | pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS; | |
446 | ||
447 | local_irq_enable_in_hardirq(); | |
448 | ||
5d655a03 | 449 | if (drive->media == ide_tape && |
82ed4db4 | 450 | (stat & ATA_ERR) && scsi_req(rq)->cmd[0] == REQUEST_SENSE) |
3a7d2484 | 451 | stat &= ~ATA_ERR; |
8fccf899 | 452 | |
3a7d2484 | 453 | if ((stat & ATA_ERR) || (pc->flags & PC_FLAG_DMA_ERROR)) { |
646c0cb6 BZ |
454 | /* Error detected */ |
455 | debug_log("%s: I/O error\n", drive->name); | |
456 | ||
5d655a03 | 457 | if (drive->media != ide_tape) |
17d5363b | 458 | scsi_req(pc->rq)->result++; |
646c0cb6 | 459 | |
82ed4db4 | 460 | if (scsi_req(rq)->cmd[0] == REQUEST_SENSE) { |
103f7033 BP |
461 | printk(KERN_ERR PFX "%s: I/O error in request " |
462 | "sense command\n", drive->name); | |
646c0cb6 BZ |
463 | return ide_do_reset(drive); |
464 | } | |
465 | ||
8dc7a31f | 466 | debug_log("[cmd %x]: check condition\n", scsi_req(rq)->cmd[0]); |
646c0cb6 BZ |
467 | |
468 | /* Retry operation */ | |
6b544fcc | 469 | ide_retry_pc(drive); |
8fccf899 | 470 | |
646c0cb6 BZ |
471 | /* queued, but not started */ |
472 | return ide_stopped; | |
473 | } | |
646c0cb6 | 474 | pc->error = 0; |
b14c7212 BZ |
475 | |
476 | if ((pc->flags & PC_FLAG_WAIT_FOR_DSC) && (stat & ATA_DSC) == 0) | |
477 | dsc = 1; | |
8fccf899 | 478 | |
b3071d19 TH |
479 | /* |
480 | * ->pc_callback() might change rq->data_len for | |
481 | * residual count, cache total length. | |
482 | */ | |
21d9c5d2 | 483 | done = blk_rq_bytes(rq); |
b3071d19 | 484 | |
646c0cb6 | 485 | /* Command finished - Call the callback function */ |
03a2faae BZ |
486 | uptodate = drive->pc_callback(drive, dsc); |
487 | ||
488 | if (uptodate == 0) | |
489 | drive->failed_pc = NULL; | |
490 | ||
2f5a8e80 | 491 | if (ata_misc_request(rq)) { |
17d5363b | 492 | scsi_req(rq)->result = 0; |
2a842aca | 493 | error = BLK_STS_OK; |
89f78b32 | 494 | } else { |
349d12a1 | 495 | |
aebf526b | 496 | if (blk_rq_is_passthrough(rq) && uptodate <= 0) { |
17d5363b CH |
497 | if (scsi_req(rq)->result == 0) |
498 | scsi_req(rq)->result = -EIO; | |
89f78b32 | 499 | } |
349d12a1 | 500 | |
2a842aca | 501 | error = uptodate ? BLK_STS_OK : BLK_STS_IOERR; |
89f78b32 | 502 | } |
8fccf899 | 503 | |
c3a4d78c | 504 | ide_complete_rq(drive, error, blk_rq_bytes(rq)); |
646c0cb6 BZ |
505 | return ide_stopped; |
506 | } | |
507 | ||
508 | if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) { | |
509 | pc->flags &= ~PC_FLAG_DMA_IN_PROGRESS; | |
103f7033 BP |
510 | printk(KERN_ERR PFX "%s: The device wants to issue more " |
511 | "interrupts in DMA mode\n", drive->name); | |
646c0cb6 BZ |
512 | ide_dma_off(drive); |
513 | return ide_do_reset(drive); | |
514 | } | |
646c0cb6 | 515 | |
1823649b BZ |
516 | /* Get the number of bytes to transfer on this interrupt. */ |
517 | ide_read_bcount_and_ireason(drive, &bcount, &ireason); | |
646c0cb6 | 518 | |
103f7033 | 519 | if (ide_check_ireason(drive, rq, bcount, ireason, write)) |
646c0cb6 | 520 | return ide_do_reset(drive); |
8fccf899 | 521 | |
6d700387 TH |
522 | done = min_t(unsigned int, bcount, cmd->nleft); |
523 | ide_pio_bytes(drive, cmd, write, done); | |
646c0cb6 | 524 | |
6d700387 | 525 | /* Update transferred byte count */ |
82ed4db4 | 526 | scsi_req(rq)->resid_len -= done; |
d93bc452 BZ |
527 | |
528 | bcount -= done; | |
529 | ||
530 | if (bcount) | |
531 | ide_pad_transfer(drive, write, bcount); | |
532 | ||
077e6dba | 533 | debug_log("[cmd %x] transferred %d bytes, padded %d bytes, resid: %u\n", |
8dc7a31f | 534 | scsi_req(rq)->cmd[0], done, bcount, scsi_req(rq)->resid_len); |
646c0cb6 | 535 | |
646c0cb6 | 536 | /* And set the interrupt handler again */ |
60c0cd02 | 537 | ide_set_handler(drive, ide_pc_intr, timeout); |
646c0cb6 BZ |
538 | return ide_started; |
539 | } | |
594c16d8 | 540 | |
60f85019 | 541 | static void ide_init_packet_cmd(struct ide_cmd *cmd, u8 valid_tf, |
b788ee9c | 542 | u16 bcount, u8 dma) |
7a254df0 | 543 | { |
60f85019 SS |
544 | cmd->protocol = dma ? ATAPI_PROT_DMA : ATAPI_PROT_PIO; |
545 | cmd->valid.out.tf = IDE_VALID_LBAH | IDE_VALID_LBAM | | |
546 | IDE_VALID_FEATURE | valid_tf; | |
35b5d0be | 547 | cmd->tf.command = ATA_CMD_PACKET; |
b788ee9c BZ |
548 | cmd->tf.feature = dma; /* Use PIO/DMA */ |
549 | cmd->tf.lbam = bcount & 0xff; | |
550 | cmd->tf.lbah = (bcount >> 8) & 0xff; | |
7a254df0 BZ |
551 | } |
552 | ||
88a72109 BZ |
553 | static u8 ide_read_ireason(ide_drive_t *drive) |
554 | { | |
3153c26b | 555 | struct ide_taskfile tf; |
88a72109 | 556 | |
3153c26b | 557 | drive->hwif->tp_ops->tf_read(drive, &tf, IDE_VALID_NSECT); |
88a72109 | 558 | |
3153c26b | 559 | return tf.nsect & 3; |
88a72109 BZ |
560 | } |
561 | ||
594c16d8 BZ |
562 | static u8 ide_wait_ireason(ide_drive_t *drive, u8 ireason) |
563 | { | |
594c16d8 BZ |
564 | int retries = 100; |
565 | ||
3a7d2484 BZ |
566 | while (retries-- && ((ireason & ATAPI_COD) == 0 || |
567 | (ireason & ATAPI_IO))) { | |
103f7033 | 568 | printk(KERN_ERR PFX "%s: (IO,CoD != (0,1) while issuing " |
594c16d8 BZ |
569 | "a packet command, retrying\n", drive->name); |
570 | udelay(100); | |
88a72109 | 571 | ireason = ide_read_ireason(drive); |
594c16d8 | 572 | if (retries == 0) { |
103f7033 BP |
573 | printk(KERN_ERR PFX "%s: (IO,CoD != (0,1) while issuing" |
574 | " a packet command, ignoring\n", | |
594c16d8 | 575 | drive->name); |
3a7d2484 BZ |
576 | ireason |= ATAPI_COD; |
577 | ireason &= ~ATAPI_IO; | |
594c16d8 BZ |
578 | } |
579 | } | |
580 | ||
581 | return ireason; | |
582 | } | |
583 | ||
baf08f0b BZ |
584 | static int ide_delayed_transfer_pc(ide_drive_t *drive) |
585 | { | |
586 | /* Send the actual packet */ | |
587 | drive->hwif->tp_ops->output_data(drive, NULL, drive->pc->c, 12); | |
588 | ||
589 | /* Timeout for the packet command */ | |
590 | return WAIT_FLOPPY_CMD; | |
591 | } | |
592 | ||
593 | static ide_startstop_t ide_transfer_pc(ide_drive_t *drive) | |
594c16d8 | 594 | { |
b16aabc9 | 595 | struct ide_atapi_pc *uninitialized_var(pc); |
594c16d8 | 596 | ide_hwif_t *hwif = drive->hwif; |
b65fac32 | 597 | struct request *rq = hwif->rq; |
baf08f0b BZ |
598 | ide_expiry_t *expiry; |
599 | unsigned int timeout; | |
8c662852 | 600 | int cmd_len; |
594c16d8 BZ |
601 | ide_startstop_t startstop; |
602 | u8 ireason; | |
603 | ||
3a7d2484 | 604 | if (ide_wait_stat(&startstop, drive, ATA_DRQ, ATA_BUSY, WAIT_READY)) { |
103f7033 | 605 | printk(KERN_ERR PFX "%s: Strange, packet command initiated yet " |
594c16d8 BZ |
606 | "DRQ isn't asserted\n", drive->name); |
607 | return startstop; | |
608 | } | |
609 | ||
5f25843f BP |
610 | if (drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT) { |
611 | if (drive->dma) | |
612 | drive->waiting_for_dma = 1; | |
613 | } | |
614 | ||
8c662852 BP |
615 | if (dev_is_idecd(drive)) { |
616 | /* ATAPI commands get padded out to 12 bytes minimum */ | |
82ed4db4 | 617 | cmd_len = COMMAND_SIZE(scsi_req(rq)->cmd[0]); |
8c662852 BP |
618 | if (cmd_len < ATAPI_MIN_CDB_BYTES) |
619 | cmd_len = ATAPI_MIN_CDB_BYTES; | |
8c662852 | 620 | |
def860d0 BP |
621 | timeout = rq->timeout; |
622 | expiry = ide_cd_expiry; | |
baf08f0b | 623 | } else { |
b16aabc9 BP |
624 | pc = drive->pc; |
625 | ||
def860d0 BP |
626 | cmd_len = ATAPI_MIN_CDB_BYTES; |
627 | ||
628 | /* | |
629 | * If necessary schedule the packet transfer to occur 'timeout' | |
19af5cdb | 630 | * milliseconds later in ide_delayed_transfer_pc() after the |
def860d0 BP |
631 | * device says it's ready for a packet. |
632 | */ | |
633 | if (drive->atapi_flags & IDE_AFLAG_ZIP_DRIVE) { | |
634 | timeout = drive->pc_delay; | |
635 | expiry = &ide_delayed_transfer_pc; | |
636 | } else { | |
637 | timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD | |
638 | : WAIT_TAPE_CMD; | |
639 | expiry = NULL; | |
640 | } | |
06cc2778 BP |
641 | |
642 | ireason = ide_read_ireason(drive); | |
643 | if (drive->media == ide_tape) | |
644 | ireason = ide_wait_ireason(drive, ireason); | |
645 | ||
646 | if ((ireason & ATAPI_COD) == 0 || (ireason & ATAPI_IO)) { | |
103f7033 BP |
647 | printk(KERN_ERR PFX "%s: (IO,CoD) != (0,1) while " |
648 | "issuing a packet command\n", drive->name); | |
06cc2778 BP |
649 | |
650 | return ide_do_reset(drive); | |
651 | } | |
baf08f0b BZ |
652 | } |
653 | ||
60c0cd02 BZ |
654 | hwif->expiry = expiry; |
655 | ||
594c16d8 | 656 | /* Set the interrupt routine */ |
d6251d44 BP |
657 | ide_set_handler(drive, |
658 | (dev_is_idecd(drive) ? drive->irq_handler | |
659 | : ide_pc_intr), | |
60c0cd02 | 660 | timeout); |
594c16d8 | 661 | |
2eba0827 BP |
662 | /* Send the actual packet */ |
663 | if ((drive->atapi_flags & IDE_AFLAG_ZIP_DRIVE) == 0) | |
82ed4db4 | 664 | hwif->tp_ops->output_data(drive, NULL, scsi_req(rq)->cmd, cmd_len); |
2eba0827 | 665 | |
594c16d8 | 666 | /* Begin DMA, if necessary */ |
b16aabc9 BP |
667 | if (dev_is_idecd(drive)) { |
668 | if (drive->dma) | |
669 | hwif->dma_ops->dma_start(drive); | |
670 | } else { | |
671 | if (pc->flags & PC_FLAG_DMA_OK) { | |
672 | pc->flags |= PC_FLAG_DMA_IN_PROGRESS; | |
673 | hwif->dma_ops->dma_start(drive); | |
674 | } | |
594c16d8 BZ |
675 | } |
676 | ||
594c16d8 BZ |
677 | return ide_started; |
678 | } | |
6bf1641c | 679 | |
b788ee9c | 680 | ide_startstop_t ide_issue_pc(ide_drive_t *drive, struct ide_cmd *cmd) |
6bf1641c | 681 | { |
d77612ab | 682 | struct ide_atapi_pc *pc; |
6bf1641c | 683 | ide_hwif_t *hwif = drive->hwif; |
4cad085e | 684 | ide_expiry_t *expiry = NULL; |
e6830a86 | 685 | struct request *rq = hwif->rq; |
dfb7e621 | 686 | unsigned int timeout, bytes; |
392de1d5 | 687 | u16 bcount; |
60f85019 | 688 | u8 valid_tf; |
35b5d0be | 689 | u8 drq_int = !!(drive->atapi_flags & IDE_AFLAG_DRQ_INTERRUPT); |
6bf1641c | 690 | |
ed48554f | 691 | if (dev_is_idecd(drive)) { |
60f85019 | 692 | valid_tf = IDE_VALID_NSECT | IDE_VALID_LBAL; |
e6830a86 | 693 | bcount = ide_cd_get_xferlen(rq); |
4cad085e | 694 | expiry = ide_cd_expiry; |
28ad91db | 695 | timeout = ATAPI_WAIT_PC; |
d77612ab | 696 | |
5ae5412d BZ |
697 | if (drive->dma) |
698 | drive->dma = !ide_dma_prepare(drive, cmd); | |
ed48554f | 699 | } else { |
d77612ab BP |
700 | pc = drive->pc; |
701 | ||
60f85019 | 702 | valid_tf = IDE_VALID_DEVICE; |
dfb7e621 | 703 | bytes = blk_rq_bytes(rq); |
dfb7e621 BP |
704 | bcount = ((drive->media == ide_tape) ? bytes |
705 | : min_t(unsigned int, | |
706 | bytes, 63 * 1024)); | |
6bf1641c | 707 | |
077e6dba | 708 | /* We haven't transferred any data yet */ |
82ed4db4 | 709 | scsi_req(rq)->resid_len = bcount; |
6bf1641c | 710 | |
d77612ab BP |
711 | if (pc->flags & PC_FLAG_DMA_ERROR) { |
712 | pc->flags &= ~PC_FLAG_DMA_ERROR; | |
713 | ide_dma_off(drive); | |
714 | } | |
6bf1641c | 715 | |
5ae5412d BZ |
716 | if (pc->flags & PC_FLAG_DMA_OK) |
717 | drive->dma = !ide_dma_prepare(drive, cmd); | |
6bf1641c | 718 | |
d77612ab BP |
719 | if (!drive->dma) |
720 | pc->flags &= ~PC_FLAG_DMA_OK; | |
28ad91db BP |
721 | |
722 | timeout = (drive->media == ide_floppy) ? WAIT_FLOPPY_CMD | |
723 | : WAIT_TAPE_CMD; | |
d77612ab | 724 | } |
6bf1641c | 725 | |
60f85019 | 726 | ide_init_packet_cmd(cmd, valid_tf, bcount, drive->dma); |
b788ee9c BZ |
727 | |
728 | (void)do_rw_taskfile(drive, cmd); | |
6bf1641c | 729 | |
35b5d0be | 730 | if (drq_int) { |
5f25843f BP |
731 | if (drive->dma) |
732 | drive->waiting_for_dma = 0; | |
22117d6e | 733 | hwif->expiry = expiry; |
6bf1641c | 734 | } |
35b5d0be BZ |
735 | |
736 | ide_execute_command(drive, cmd, ide_transfer_pc, timeout); | |
737 | ||
738 | return drq_int ? ide_started : ide_transfer_pc(drive); | |
6bf1641c BZ |
739 | } |
740 | EXPORT_SYMBOL_GPL(ide_issue_pc); |