1 // SPDX-License-Identifier: GPL-2.0
3 * cdrom.c IOCTLs handling for ide-cd driver.
5 * Copyright (C) 1994-1996 Scott Snyder <snyder@fnald0.fnal.gov>
6 * Copyright (C) 1996-1998 Erik Andersen <andersee@debian.org>
7 * Copyright (C) 1998-2000 Jens Axboe <axboe@suse.de>
10 #include <linux/kernel.h>
11 #include <linux/cdrom.h>
12 #include <linux/gfp.h>
13 #include <linux/ide.h>
14 #include <scsi/scsi.h>
18 /****************************************************************************
19 * Other driver requests (open, close, check media change).
21 int ide_cdrom_open_real(struct cdrom_device_info
*cdi
, int purpose
)
27 * Close down the device. Invalidate all cached blocks.
29 void ide_cdrom_release_real(struct cdrom_device_info
*cdi
)
31 ide_drive_t
*drive
= cdi
->handle
;
34 drive
->atapi_flags
&= ~IDE_AFLAG_TOC_VALID
;
38 * add logic to try GET_EVENT command first to check for media and tray
39 * status. this should be supported by newer cd-r/w and all DVD etc
42 int ide_cdrom_drive_status(struct cdrom_device_info
*cdi
, int slot_nr
)
44 ide_drive_t
*drive
= cdi
->handle
;
45 struct media_event_desc med
;
46 struct scsi_sense_hdr sshdr
;
49 if (slot_nr
!= CDSL_CURRENT
)
52 stat
= cdrom_check_status(drive
, &sshdr
);
53 if (!stat
|| sshdr
.sense_key
== UNIT_ATTENTION
)
56 if (!cdrom_get_media_event(cdi
, &med
)) {
57 if (med
.media_present
)
59 else if (med
.door_open
)
65 if (sshdr
.sense_key
== NOT_READY
&& sshdr
.asc
== 0x04
66 && sshdr
.ascq
== 0x04)
70 * If not using Mt Fuji extended media tray reports,
71 * just return TRAY_OPEN since ATAPI doesn't provide
72 * any other way to detect this...
74 if (sshdr
.sense_key
== NOT_READY
) {
75 if (sshdr
.asc
== 0x3a && sshdr
.ascq
== 1)
80 return CDS_DRIVE_NOT_READY
;
84 * ide-cd always generates media changed event if media is missing, which
85 * makes it impossible to use for proper event reporting, so disk->events
86 * is cleared to 0 and the following function is used only to trigger
87 * revalidation and never propagated to userland.
89 unsigned int ide_cdrom_check_events_real(struct cdrom_device_info
*cdi
,
90 unsigned int clearing
, int slot_nr
)
92 ide_drive_t
*drive
= cdi
->handle
;
95 if (slot_nr
== CDSL_CURRENT
) {
96 (void) cdrom_check_status(drive
, NULL
);
97 retval
= (drive
->dev_flags
& IDE_DFLAG_MEDIA_CHANGED
) ? 1 : 0;
98 drive
->dev_flags
&= ~IDE_DFLAG_MEDIA_CHANGED
;
99 return retval
? DISK_EVENT_MEDIA_CHANGE
: 0;
105 /* Eject the disk if EJECTFLAG is 0.
106 If EJECTFLAG is 1, try to reload the disk. */
108 int cdrom_eject(ide_drive_t
*drive
, int ejectflag
)
110 struct cdrom_info
*cd
= drive
->driver_data
;
111 struct cdrom_device_info
*cdi
= &cd
->devinfo
;
113 unsigned char cmd
[BLK_MAX_CDB
];
115 if ((drive
->atapi_flags
& IDE_AFLAG_NO_EJECT
) && !ejectflag
)
116 return -EDRIVE_CANT_DO_THIS
;
118 /* reload fails on some drives, if the tray is locked */
119 if ((drive
->atapi_flags
& IDE_AFLAG_DOOR_LOCKED
) && ejectflag
)
122 /* only tell drive to close tray if open, if it can do that */
123 if (ejectflag
&& (cdi
->mask
& CDC_CLOSE_TRAY
))
126 memset(cmd
, 0, BLK_MAX_CDB
);
128 cmd
[0] = GPCMD_START_STOP_UNIT
;
129 cmd
[4] = loej
| (ejectflag
!= 0);
131 return ide_cd_queue_pc(drive
, cmd
, 0, NULL
, NULL
, NULL
, 0, 0);
134 /* Lock the door if LOCKFLAG is nonzero; unlock it otherwise. */
136 int ide_cd_lockdoor(ide_drive_t
*drive
, int lockflag
)
138 struct scsi_sense_hdr sshdr
;
141 /* If the drive cannot lock the door, just pretend. */
142 if ((drive
->dev_flags
& IDE_DFLAG_DOORLOCKING
) == 0) {
145 unsigned char cmd
[BLK_MAX_CDB
];
147 memset(cmd
, 0, BLK_MAX_CDB
);
149 cmd
[0] = GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL
;
150 cmd
[4] = lockflag
? 1 : 0;
152 stat
= ide_cd_queue_pc(drive
, cmd
, 0, NULL
, NULL
,
156 /* If we got an illegal field error, the drive
157 probably cannot lock the door. */
159 sshdr
.sense_key
== ILLEGAL_REQUEST
&&
160 (sshdr
.asc
== 0x24 || sshdr
.asc
== 0x20)) {
161 printk(KERN_ERR
"%s: door locking not supported\n",
163 drive
->dev_flags
&= ~IDE_DFLAG_DOORLOCKING
;
167 /* no medium, that's alright. */
168 if (stat
!= 0 && sshdr
.sense_key
== NOT_READY
&& sshdr
.asc
== 0x3a)
173 drive
->atapi_flags
|= IDE_AFLAG_DOOR_LOCKED
;
175 drive
->atapi_flags
&= ~IDE_AFLAG_DOOR_LOCKED
;
181 int ide_cdrom_tray_move(struct cdrom_device_info
*cdi
, int position
)
183 ide_drive_t
*drive
= cdi
->handle
;
186 int stat
= ide_cd_lockdoor(drive
, 0);
192 return cdrom_eject(drive
, !position
);
195 int ide_cdrom_lock_door(struct cdrom_device_info
*cdi
, int lock
)
197 ide_drive_t
*drive
= cdi
->handle
;
199 return ide_cd_lockdoor(drive
, lock
);
203 * ATAPI devices are free to select the speed you request or any slower
204 * rate. :-( Requesting too fast a speed will _not_ produce an error.
206 int ide_cdrom_select_speed(struct cdrom_device_info
*cdi
, int speed
)
208 ide_drive_t
*drive
= cdi
->handle
;
209 struct cdrom_info
*cd
= drive
->driver_data
;
210 u8 buf
[ATAPI_CAPABILITIES_PAGE_SIZE
];
212 unsigned char cmd
[BLK_MAX_CDB
];
215 speed
= 0xffff; /* set to max */
217 speed
*= 177; /* Nx to kbytes/s */
219 memset(cmd
, 0, BLK_MAX_CDB
);
221 cmd
[0] = GPCMD_SET_SPEED
;
222 /* Read Drive speed in kbytes/second MSB/LSB */
223 cmd
[2] = (speed
>> 8) & 0xff;
224 cmd
[3] = speed
& 0xff;
225 if ((cdi
->mask
& (CDC_CD_R
| CDC_CD_RW
| CDC_DVD_R
)) !=
226 (CDC_CD_R
| CDC_CD_RW
| CDC_DVD_R
)) {
227 /* Write Drive speed in kbytes/second MSB/LSB */
228 cmd
[4] = (speed
>> 8) & 0xff;
229 cmd
[5] = speed
& 0xff;
232 stat
= ide_cd_queue_pc(drive
, cmd
, 0, NULL
, NULL
, NULL
, 0, 0);
234 if (!ide_cdrom_get_capabilities(drive
, buf
)) {
235 ide_cdrom_update_speed(drive
, buf
);
236 cdi
->speed
= cd
->current_speed
;
242 int ide_cdrom_get_last_session(struct cdrom_device_info
*cdi
,
243 struct cdrom_multisession
*ms_info
)
245 struct atapi_toc
*toc
;
246 ide_drive_t
*drive
= cdi
->handle
;
247 struct cdrom_info
*info
= drive
->driver_data
;
250 if ((drive
->atapi_flags
& IDE_AFLAG_TOC_VALID
) == 0 || !info
->toc
) {
251 ret
= ide_cd_read_toc(drive
);
257 ms_info
->addr
.lba
= toc
->last_session_lba
;
258 ms_info
->xa_flag
= toc
->xa_flag
;
263 int ide_cdrom_get_mcn(struct cdrom_device_info
*cdi
,
264 struct cdrom_mcn
*mcn_info
)
266 ide_drive_t
*drive
= cdi
->handle
;
269 unsigned char cmd
[BLK_MAX_CDB
];
270 unsigned len
= sizeof(buf
);
272 memset(cmd
, 0, BLK_MAX_CDB
);
274 cmd
[0] = GPCMD_READ_SUBCHANNEL
;
275 cmd
[1] = 2; /* MSF addressing */
276 cmd
[2] = 0x40; /* request subQ data */
277 cmd
[3] = 2; /* format */
280 stat
= ide_cd_queue_pc(drive
, cmd
, 0, buf
, &len
, NULL
, 0, 0);
284 mcnlen
= sizeof(mcn_info
->medium_catalog_number
) - 1;
285 memcpy(mcn_info
->medium_catalog_number
, buf
+ 9, mcnlen
);
286 mcn_info
->medium_catalog_number
[mcnlen
] = '\0';
291 int ide_cdrom_reset(struct cdrom_device_info
*cdi
)
293 ide_drive_t
*drive
= cdi
->handle
;
294 struct cdrom_info
*cd
= drive
->driver_data
;
298 rq
= blk_get_request(drive
->queue
, REQ_OP_DRV_IN
, 0);
299 ide_req(rq
)->type
= ATA_PRIV_MISC
;
300 rq
->rq_flags
= RQF_QUIET
;
301 blk_execute_rq(drive
->queue
, cd
->disk
, rq
, 0);
302 ret
= scsi_req(rq
)->result
? -EIO
: 0;
305 * A reset will unlock the door. If it was previously locked,
308 if (drive
->atapi_flags
& IDE_AFLAG_DOOR_LOCKED
)
309 (void)ide_cd_lockdoor(drive
, 1);
314 static int ide_cd_get_toc_entry(ide_drive_t
*drive
, int track
,
315 struct atapi_toc_entry
**ent
)
317 struct cdrom_info
*info
= drive
->driver_data
;
318 struct atapi_toc
*toc
= info
->toc
;
322 * don't serve cached data, if the toc isn't valid
324 if ((drive
->atapi_flags
& IDE_AFLAG_TOC_VALID
) == 0)
327 /* Check validity of requested track number. */
328 ntracks
= toc
->hdr
.last_track
- toc
->hdr
.first_track
+ 1;
330 if (toc
->hdr
.first_track
== CDROM_LEADOUT
)
333 if (track
== CDROM_LEADOUT
)
334 *ent
= &toc
->ent
[ntracks
];
335 else if (track
< toc
->hdr
.first_track
|| track
> toc
->hdr
.last_track
)
338 *ent
= &toc
->ent
[track
- toc
->hdr
.first_track
];
343 static int ide_cd_fake_play_trkind(ide_drive_t
*drive
, void *arg
)
345 struct cdrom_ti
*ti
= arg
;
346 struct atapi_toc_entry
*first_toc
, *last_toc
;
347 unsigned long lba_start
, lba_end
;
349 unsigned char cmd
[BLK_MAX_CDB
];
351 stat
= ide_cd_get_toc_entry(drive
, ti
->cdti_trk0
, &first_toc
);
355 stat
= ide_cd_get_toc_entry(drive
, ti
->cdti_trk1
, &last_toc
);
359 if (ti
->cdti_trk1
!= CDROM_LEADOUT
)
361 lba_start
= first_toc
->addr
.lba
;
362 lba_end
= last_toc
->addr
.lba
;
364 if (lba_end
<= lba_start
)
367 memset(cmd
, 0, BLK_MAX_CDB
);
369 cmd
[0] = GPCMD_PLAY_AUDIO_MSF
;
370 lba_to_msf(lba_start
, &cmd
[3], &cmd
[4], &cmd
[5]);
371 lba_to_msf(lba_end
- 1, &cmd
[6], &cmd
[7], &cmd
[8]);
373 return ide_cd_queue_pc(drive
, cmd
, 0, NULL
, NULL
, NULL
, 0, 0);
376 static int ide_cd_read_tochdr(ide_drive_t
*drive
, void *arg
)
378 struct cdrom_info
*cd
= drive
->driver_data
;
379 struct cdrom_tochdr
*tochdr
= arg
;
380 struct atapi_toc
*toc
;
383 /* Make sure our saved TOC is valid. */
384 stat
= ide_cd_read_toc(drive
);
389 tochdr
->cdth_trk0
= toc
->hdr
.first_track
;
390 tochdr
->cdth_trk1
= toc
->hdr
.last_track
;
395 static int ide_cd_read_tocentry(ide_drive_t
*drive
, void *arg
)
397 struct cdrom_tocentry
*tocentry
= arg
;
398 struct atapi_toc_entry
*toce
;
401 stat
= ide_cd_get_toc_entry(drive
, tocentry
->cdte_track
, &toce
);
405 tocentry
->cdte_ctrl
= toce
->control
;
406 tocentry
->cdte_adr
= toce
->adr
;
407 if (tocentry
->cdte_format
== CDROM_MSF
) {
408 lba_to_msf(toce
->addr
.lba
,
409 &tocentry
->cdte_addr
.msf
.minute
,
410 &tocentry
->cdte_addr
.msf
.second
,
411 &tocentry
->cdte_addr
.msf
.frame
);
413 tocentry
->cdte_addr
.lba
= toce
->addr
.lba
;
418 int ide_cdrom_audio_ioctl(struct cdrom_device_info
*cdi
,
419 unsigned int cmd
, void *arg
)
421 ide_drive_t
*drive
= cdi
->handle
;
425 * emulate PLAY_AUDIO_TI command with PLAY_AUDIO_10, since
426 * atapi doesn't support it
428 case CDROMPLAYTRKIND
:
429 return ide_cd_fake_play_trkind(drive
, arg
);
430 case CDROMREADTOCHDR
:
431 return ide_cd_read_tochdr(drive
, arg
);
432 case CDROMREADTOCENTRY
:
433 return ide_cd_read_tocentry(drive
, arg
);
439 /* the generic packet interface to cdrom.c */
440 int ide_cdrom_packet(struct cdrom_device_info
*cdi
,
441 struct packet_command
*cgc
)
443 ide_drive_t
*drive
= cdi
->handle
;
444 req_flags_t flags
= 0;
445 unsigned len
= cgc
->buflen
;
447 if (cgc
->timeout
<= 0)
448 cgc
->timeout
= ATAPI_WAIT_PC
;
450 /* here we queue the commands from the uniform CD-ROM
451 layer. the packet must be complete, as we do not
455 memset(cgc
->sshdr
, 0, sizeof(*cgc
->sshdr
));
460 cgc
->stat
= ide_cd_queue_pc(drive
, cgc
->cmd
,
461 cgc
->data_direction
== CGC_DATA_WRITE
,
463 cgc
->sshdr
, cgc
->timeout
, flags
);