2 * cdrom.c IOCTLs handling for ide-cd driver.
4 * Copyright (C) 1994-1996 Scott Snyder <snyder@fnald0.fnal.gov>
5 * Copyright (C) 1996-1998 Erik Andersen <andersee@debian.org>
6 * Copyright (C) 1998-2000 Jens Axboe <axboe@suse.de>
9 #include <linux/kernel.h>
10 #include <linux/cdrom.h>
11 #include <linux/ide.h>
12 #include <scsi/scsi.h>
16 /****************************************************************************
17 * Other driver requests (open, close, check media change).
19 int ide_cdrom_open_real(struct cdrom_device_info *cdi, int purpose)
25 * Close down the device. Invalidate all cached blocks.
27 void ide_cdrom_release_real(struct cdrom_device_info *cdi)
29 ide_drive_t *drive = cdi->handle;
30 struct cdrom_info *cd = drive->driver_data;
33 cd->cd_flags &= ~IDE_CD_FLAG_TOC_VALID;
37 * add logic to try GET_EVENT command first to check for media and tray
38 * status. this should be supported by newer cd-r/w and all DVD etc
41 int ide_cdrom_drive_status(struct cdrom_device_info *cdi, int slot_nr)
43 ide_drive_t *drive = cdi->handle;
44 struct media_event_desc med;
45 struct request_sense sense;
48 if (slot_nr != CDSL_CURRENT)
51 stat = cdrom_check_status(drive, &sense);
52 if (!stat || sense.sense_key == UNIT_ATTENTION)
55 if (!cdrom_get_media_event(cdi, &med)) {
56 if (med.media_present)
58 else if (med.door_open)
64 if (sense.sense_key == NOT_READY && sense.asc == 0x04
65 && sense.ascq == 0x04)
69 * If not using Mt Fuji extended media tray reports,
70 * just return TRAY_OPEN since ATAPI doesn't provide
71 * any other way to detect this...
73 if (sense.sense_key == NOT_READY) {
74 if (sense.asc == 0x3a && sense.ascq == 1)
79 return CDS_DRIVE_NOT_READY;
82 int ide_cdrom_check_media_change_real(struct cdrom_device_info *cdi,
85 ide_drive_t *drive = cdi->handle;
86 struct cdrom_info *cd = drive->driver_data;
89 if (slot_nr == CDSL_CURRENT) {
90 (void) cdrom_check_status(drive, NULL);
91 retval = (cd->cd_flags & IDE_CD_FLAG_MEDIA_CHANGED) ? 1 : 0;
92 cd->cd_flags &= ~IDE_CD_FLAG_MEDIA_CHANGED;
99 /* Eject the disk if EJECTFLAG is 0.
100 If EJECTFLAG is 1, try to reload the disk. */
102 int cdrom_eject(ide_drive_t *drive, int ejectflag,
103 struct request_sense *sense)
105 struct cdrom_info *cd = drive->driver_data;
106 struct cdrom_device_info *cdi = &cd->devinfo;
110 if ((cd->cd_flags & IDE_CD_FLAG_NO_EJECT) && !ejectflag)
111 return -EDRIVE_CANT_DO_THIS;
113 /* reload fails on some drives, if the tray is locked */
114 if ((cd->cd_flags & IDE_CD_FLAG_DOOR_LOCKED) && ejectflag)
117 ide_cd_init_rq(drive, &req);
119 /* only tell drive to close tray if open, if it can do that */
120 if (ejectflag && (cdi->mask & CDC_CLOSE_TRAY))
124 req.cmd[0] = GPCMD_START_STOP_UNIT;
125 req.cmd[4] = loej | (ejectflag != 0);
127 return ide_cd_queue_pc(drive, &req);
130 /* Lock the door if LOCKFLAG is nonzero; unlock it otherwise. */
132 int ide_cd_lockdoor(ide_drive_t *drive, int lockflag,
133 struct request_sense *sense)
135 struct cdrom_info *cd = drive->driver_data;
136 struct request_sense my_sense;
143 /* If the drive cannot lock the door, just pretend. */
144 if (cd->cd_flags & IDE_CD_FLAG_NO_DOORLOCK) {
147 ide_cd_init_rq(drive, &req);
149 req.cmd[0] = GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL;
150 req.cmd[4] = lockflag ? 1 : 0;
151 stat = ide_cd_queue_pc(drive, &req);
154 /* If we got an illegal field error, the drive
155 probably cannot lock the door. */
157 sense->sense_key == ILLEGAL_REQUEST &&
158 (sense->asc == 0x24 || sense->asc == 0x20)) {
159 printk(KERN_ERR "%s: door locking not supported\n",
161 cd->cd_flags |= IDE_CD_FLAG_NO_DOORLOCK;
165 /* no medium, that's alright. */
166 if (stat != 0 && sense->sense_key == NOT_READY && sense->asc == 0x3a)
171 cd->cd_flags |= IDE_CD_FLAG_DOOR_LOCKED;
173 cd->cd_flags &= ~IDE_CD_FLAG_DOOR_LOCKED;
179 int ide_cdrom_tray_move(struct cdrom_device_info *cdi, int position)
181 ide_drive_t *drive = cdi->handle;
182 struct request_sense sense;
185 int stat = ide_cd_lockdoor(drive, 0, &sense);
191 return cdrom_eject(drive, !position, &sense);
194 int ide_cdrom_lock_door(struct cdrom_device_info *cdi, int lock)
196 ide_drive_t *drive = cdi->handle;
198 return ide_cd_lockdoor(drive, lock, NULL);
202 * ATAPI devices are free to select the speed you request or any slower
203 * rate. :-( Requesting too fast a speed will _not_ produce an error.
205 int ide_cdrom_select_speed(struct cdrom_device_info *cdi, int speed)
207 ide_drive_t *drive = cdi->handle;
208 struct cdrom_info *cd = drive->driver_data;
210 struct request_sense sense;
211 u8 buf[ATAPI_CAPABILITIES_PAGE_SIZE];
214 ide_cd_init_rq(drive, &rq);
219 speed = 0xffff; /* set to max */
221 speed *= 177; /* Nx to kbytes/s */
223 rq.cmd[0] = GPCMD_SET_SPEED;
224 /* Read Drive speed in kbytes/second MSB/LSB */
225 rq.cmd[2] = (speed >> 8) & 0xff;
226 rq.cmd[3] = speed & 0xff;
227 if ((cdi->mask & (CDC_CD_R | CDC_CD_RW | CDC_DVD_R)) !=
228 (CDC_CD_R | CDC_CD_RW | CDC_DVD_R)) {
229 /* Write Drive speed in kbytes/second MSB/LSB */
230 rq.cmd[4] = (speed >> 8) & 0xff;
231 rq.cmd[5] = speed & 0xff;
234 stat = ide_cd_queue_pc(drive, &rq);
236 if (!ide_cdrom_get_capabilities(drive, buf)) {
237 ide_cdrom_update_speed(drive, buf);
238 cdi->speed = cd->current_speed;
244 int ide_cdrom_get_last_session(struct cdrom_device_info *cdi,
245 struct cdrom_multisession *ms_info)
247 struct atapi_toc *toc;
248 ide_drive_t *drive = cdi->handle;
249 struct cdrom_info *info = drive->driver_data;
250 struct request_sense sense;
253 if ((info->cd_flags & IDE_CD_FLAG_TOC_VALID) == 0 || !info->toc) {
254 ret = ide_cd_read_toc(drive, &sense);
260 ms_info->addr.lba = toc->last_session_lba;
261 ms_info->xa_flag = toc->xa_flag;
266 int ide_cdrom_get_mcn(struct cdrom_device_info *cdi,
267 struct cdrom_mcn *mcn_info)
269 ide_drive_t *drive = cdi->handle;
274 ide_cd_init_rq(drive, &rq);
277 rq.data_len = sizeof(buf);
279 rq.cmd[0] = GPCMD_READ_SUBCHANNEL;
280 rq.cmd[1] = 2; /* MSF addressing */
281 rq.cmd[2] = 0x40; /* request subQ data */
282 rq.cmd[3] = 2; /* format */
283 rq.cmd[8] = sizeof(buf);
285 stat = ide_cd_queue_pc(drive, &rq);
289 mcnlen = sizeof(mcn_info->medium_catalog_number) - 1;
290 memcpy(mcn_info->medium_catalog_number, buf + 9, mcnlen);
291 mcn_info->medium_catalog_number[mcnlen] = '\0';
296 int ide_cdrom_reset(struct cdrom_device_info *cdi)
298 ide_drive_t *drive = cdi->handle;
299 struct cdrom_info *cd = drive->driver_data;
300 struct request_sense sense;
304 ide_cd_init_rq(drive, &req);
305 req.cmd_type = REQ_TYPE_SPECIAL;
306 req.cmd_flags = REQ_QUIET;
307 ret = ide_do_drive_cmd(drive, &req, ide_wait);
310 * A reset will unlock the door. If it was previously locked,
313 if (cd->cd_flags & IDE_CD_FLAG_DOOR_LOCKED)
314 (void)ide_cd_lockdoor(drive, 1, &sense);
319 static int ide_cd_get_toc_entry(ide_drive_t *drive, int track,
320 struct atapi_toc_entry **ent)
322 struct cdrom_info *info = drive->driver_data;
323 struct atapi_toc *toc = info->toc;
327 * don't serve cached data, if the toc isn't valid
329 if ((info->cd_flags & IDE_CD_FLAG_TOC_VALID) == 0)
332 /* Check validity of requested track number. */
333 ntracks = toc->hdr.last_track - toc->hdr.first_track + 1;
335 if (toc->hdr.first_track == CDROM_LEADOUT)
338 if (track == CDROM_LEADOUT)
339 *ent = &toc->ent[ntracks];
340 else if (track < toc->hdr.first_track || track > toc->hdr.last_track)
343 *ent = &toc->ent[track - toc->hdr.first_track];
348 static int ide_cd_fake_play_trkind(ide_drive_t *drive, void *arg)
350 struct cdrom_ti *ti = arg;
351 struct atapi_toc_entry *first_toc, *last_toc;
352 unsigned long lba_start, lba_end;
355 struct request_sense sense;
357 stat = ide_cd_get_toc_entry(drive, ti->cdti_trk0, &first_toc);
361 stat = ide_cd_get_toc_entry(drive, ti->cdti_trk1, &last_toc);
365 if (ti->cdti_trk1 != CDROM_LEADOUT)
367 lba_start = first_toc->addr.lba;
368 lba_end = last_toc->addr.lba;
370 if (lba_end <= lba_start)
373 ide_cd_init_rq(drive, &rq);
376 rq.cmd[0] = GPCMD_PLAY_AUDIO_MSF;
377 lba_to_msf(lba_start, &rq.cmd[3], &rq.cmd[4], &rq.cmd[5]);
378 lba_to_msf(lba_end - 1, &rq.cmd[6], &rq.cmd[7], &rq.cmd[8]);
380 return ide_cd_queue_pc(drive, &rq);
383 static int ide_cd_read_tochdr(ide_drive_t *drive, void *arg)
385 struct cdrom_info *cd = drive->driver_data;
386 struct cdrom_tochdr *tochdr = arg;
387 struct atapi_toc *toc;
390 /* Make sure our saved TOC is valid. */
391 stat = ide_cd_read_toc(drive, NULL);
396 tochdr->cdth_trk0 = toc->hdr.first_track;
397 tochdr->cdth_trk1 = toc->hdr.last_track;
402 static int ide_cd_read_tocentry(ide_drive_t *drive, void *arg)
404 struct cdrom_tocentry *tocentry = arg;
405 struct atapi_toc_entry *toce;
408 stat = ide_cd_get_toc_entry(drive, tocentry->cdte_track, &toce);
412 tocentry->cdte_ctrl = toce->control;
413 tocentry->cdte_adr = toce->adr;
414 if (tocentry->cdte_format == CDROM_MSF) {
415 lba_to_msf(toce->addr.lba,
416 &tocentry->cdte_addr.msf.minute,
417 &tocentry->cdte_addr.msf.second,
418 &tocentry->cdte_addr.msf.frame);
420 tocentry->cdte_addr.lba = toce->addr.lba;
425 int ide_cdrom_audio_ioctl(struct cdrom_device_info *cdi,
426 unsigned int cmd, void *arg)
428 ide_drive_t *drive = cdi->handle;
432 * emulate PLAY_AUDIO_TI command with PLAY_AUDIO_10, since
433 * atapi doesn't support it
435 case CDROMPLAYTRKIND:
436 return ide_cd_fake_play_trkind(drive, arg);
437 case CDROMREADTOCHDR:
438 return ide_cd_read_tochdr(drive, arg);
439 case CDROMREADTOCENTRY:
440 return ide_cd_read_tocentry(drive, arg);
446 /* the generic packet interface to cdrom.c */
447 int ide_cdrom_packet(struct cdrom_device_info *cdi,
448 struct packet_command *cgc)
451 ide_drive_t *drive = cdi->handle;
453 if (cgc->timeout <= 0)
454 cgc->timeout = ATAPI_WAIT_PC;
456 /* here we queue the commands from the uniform CD-ROM
457 layer. the packet must be complete, as we do not
459 ide_cd_init_rq(drive, &req);
461 if (cgc->data_direction == CGC_DATA_WRITE)
462 req.cmd_flags |= REQ_RW;
464 memcpy(req.cmd, cgc->cmd, CDROM_PACKET_SIZE);
466 memset(cgc->sense, 0, sizeof(struct request_sense));
467 req.data = cgc->buffer;
468 req.data_len = cgc->buflen;
469 req.timeout = cgc->timeout;
472 req.cmd_flags |= REQ_QUIET;
474 req.sense = cgc->sense;
475 cgc->stat = ide_cd_queue_pc(drive, &req);
477 cgc->buflen -= req.data_len;