2 * ide-floppy IOCTLs handling.
5 #include <linux/kernel.h>
7 #include <linux/cdrom.h>
9 #include <asm/unaligned.h>
11 #include <scsi/scsi_ioctl.h>
13 #include "ide-floppy.h"
16 * Obtain the list of formattable capacities.
17 * Very similar to ide_floppy_get_capacity, except that we push the capacity
18 * descriptors to userland, instead of our own structures.
20 * Userland gives us the following structure:
22 * struct idefloppy_format_capacities {
30 * userland initializes nformats to the number of allocated formats[] records.
31 * On exit we set nformats to the number of records we've actually initialized.
34 static int ide_floppy_get_format_capacities(ide_drive_t
*drive
,
35 struct ide_atapi_pc
*pc
,
38 struct ide_disk_obj
*floppy
= drive
->driver_data
;
39 int i
, blocks
, length
, u_array_size
, u_index
;
41 u8 pc_buf
[256], header_len
, desc_cnt
;
43 if (get_user(u_array_size
, arg
))
46 if (u_array_size
<= 0)
49 ide_floppy_create_read_capacity_cmd(pc
);
51 pc
->buf_size
= sizeof(pc_buf
);
53 if (ide_queue_pc_tail(drive
, floppy
->disk
, pc
)) {
54 printk(KERN_ERR
"ide-floppy: Can't get floppy parameters\n");
58 header_len
= pc
->buf
[3];
59 desc_cnt
= header_len
/ 8; /* capacity descriptor of 8 bytes */
65 * We always skip the first capacity descriptor. That's the current
66 * capacity. We are interested in the remaining descriptors, the
67 * formattable capacities.
69 for (i
= 1; i
< desc_cnt
; i
++) {
70 unsigned int desc_start
= 4 + i
*8;
72 if (u_index
>= u_array_size
)
73 break; /* User-supplied buffer too small */
75 blocks
= be32_to_cpup((__be32
*)&pc
->buf
[desc_start
]);
76 length
= be16_to_cpup((__be16
*)&pc
->buf
[desc_start
+ 6]);
78 if (put_user(blocks
, argp
))
83 if (put_user(length
, argp
))
91 if (put_user(u_index
, arg
))
97 static void ide_floppy_create_format_unit_cmd(struct ide_atapi_pc
*pc
, int b
,
101 pc
->c
[0] = GPCMD_FORMAT_UNIT
;
104 memset(pc
->buf
, 0, 12);
106 /* Default format list header, u8 1: FOV/DCRT/IMM bits set */
108 if (flags
& 1) /* Verify bit on... */
109 pc
->buf
[1] ^= 0x20; /* ... turn off DCRT bit */
112 put_unaligned(cpu_to_be32(b
), (unsigned int *)(&pc
->buf
[4]));
113 put_unaligned(cpu_to_be32(l
), (unsigned int *)(&pc
->buf
[8]));
115 pc
->flags
|= PC_FLAG_WRITING
;
118 static int ide_floppy_get_sfrp_bit(ide_drive_t
*drive
, struct ide_atapi_pc
*pc
)
120 struct ide_disk_obj
*floppy
= drive
->driver_data
;
122 drive
->atapi_flags
&= ~IDE_AFLAG_SRFP
;
124 ide_floppy_create_mode_sense_cmd(pc
, IDEFLOPPY_CAPABILITIES_PAGE
);
125 pc
->flags
|= PC_FLAG_SUPPRESS_ERROR
;
127 if (ide_queue_pc_tail(drive
, floppy
->disk
, pc
))
130 if (pc
->buf
[8 + 2] & 0x40)
131 drive
->atapi_flags
|= IDE_AFLAG_SRFP
;
136 static int ide_floppy_format_unit(ide_drive_t
*drive
, struct ide_atapi_pc
*pc
,
139 struct ide_disk_obj
*floppy
= drive
->driver_data
;
140 int blocks
, length
, flags
, err
= 0;
142 if (floppy
->openers
> 1) {
143 /* Don't format if someone is using the disk */
144 drive
->dev_flags
&= ~IDE_DFLAG_FORMAT_IN_PROGRESS
;
148 drive
->dev_flags
|= IDE_DFLAG_FORMAT_IN_PROGRESS
;
151 * Send ATAPI_FORMAT_UNIT to the drive.
153 * Userland gives us the following structure:
155 * struct idefloppy_format_command {
161 * flags is a bitmask, currently, the only defined flag is:
163 * 0x01 - verify media after format.
165 if (get_user(blocks
, arg
) ||
166 get_user(length
, arg
+1) ||
167 get_user(flags
, arg
+2)) {
172 ide_floppy_get_sfrp_bit(drive
, pc
);
173 ide_floppy_create_format_unit_cmd(pc
, blocks
, length
, flags
);
175 if (ide_queue_pc_tail(drive
, floppy
->disk
, pc
))
180 drive
->dev_flags
&= ~IDE_DFLAG_FORMAT_IN_PROGRESS
;
185 * Get ATAPI_FORMAT_UNIT progress indication.
187 * Userland gives a pointer to an int. The int is set to a progress
188 * indicator 0-65536, with 65536=100%.
190 * If the drive does not support format progress indication, we just check
191 * the dsc bit, and return either 0 or 65536.
194 static int ide_floppy_get_format_progress(ide_drive_t
*drive
,
195 struct ide_atapi_pc
*pc
,
198 struct ide_disk_obj
*floppy
= drive
->driver_data
;
199 int progress_indication
= 0x10000;
201 if (drive
->atapi_flags
& IDE_AFLAG_SRFP
) {
202 ide_create_request_sense_cmd(drive
, pc
);
203 if (ide_queue_pc_tail(drive
, floppy
->disk
, pc
))
206 if (floppy
->sense_key
== 2 &&
209 progress_indication
= floppy
->progress_indication
;
211 /* Else assume format_unit has finished, and we're at 0x10000 */
213 ide_hwif_t
*hwif
= drive
->hwif
;
217 local_irq_save(flags
);
218 stat
= hwif
->tp_ops
->read_status(hwif
);
219 local_irq_restore(flags
);
221 progress_indication
= ((stat
& ATA_DSC
) == 0) ? 0 : 0x10000;
224 if (put_user(progress_indication
, arg
))
230 static int ide_floppy_lockdoor(ide_drive_t
*drive
, struct ide_atapi_pc
*pc
,
231 unsigned long arg
, unsigned int cmd
)
233 struct ide_disk_obj
*floppy
= drive
->driver_data
;
234 struct gendisk
*disk
= floppy
->disk
;
235 int prevent
= (arg
&& cmd
!= CDROMEJECT
) ? 1 : 0;
237 if (floppy
->openers
> 1)
240 ide_set_media_lock(drive
, disk
, prevent
);
242 if (cmd
== CDROMEJECT
)
243 ide_do_start_stop(drive
, disk
, 2);
248 static int ide_floppy_format_ioctl(ide_drive_t
*drive
, struct ide_atapi_pc
*pc
,
249 fmode_t mode
, unsigned int cmd
,
253 case IDEFLOPPY_IOCTL_FORMAT_SUPPORTED
:
255 case IDEFLOPPY_IOCTL_FORMAT_GET_CAPACITY
:
256 return ide_floppy_get_format_capacities(drive
, pc
, argp
);
257 case IDEFLOPPY_IOCTL_FORMAT_START
:
258 if (!(mode
& FMODE_WRITE
))
260 return ide_floppy_format_unit(drive
, pc
, (int __user
*)argp
);
261 case IDEFLOPPY_IOCTL_FORMAT_GET_PROGRESS
:
262 return ide_floppy_get_format_progress(drive
, pc
, argp
);
268 int ide_floppy_ioctl(ide_drive_t
*drive
, struct block_device
*bdev
,
269 fmode_t mode
, unsigned int cmd
, unsigned long arg
)
271 struct ide_atapi_pc pc
;
272 void __user
*argp
= (void __user
*)arg
;
275 if (cmd
== CDROMEJECT
|| cmd
== CDROM_LOCKDOOR
)
276 return ide_floppy_lockdoor(drive
, &pc
, arg
, cmd
);
278 err
= ide_floppy_format_ioctl(drive
, &pc
, mode
, cmd
, argp
);
283 * skip SCSI_IOCTL_SEND_COMMAND (deprecated)
284 * and CDROM_SEND_PACKET (legacy) ioctls
286 if (cmd
!= CDROM_SEND_PACKET
&& cmd
!= SCSI_IOCTL_SEND_COMMAND
)
287 err
= scsi_cmd_ioctl(bdev
->bd_disk
->queue
, bdev
->bd_disk
,
291 err
= generic_ide_ioctl(drive
, bdev
, cmd
, arg
);