]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/ide/ide-floppy.h
ide: add generic ATA/ATAPI disk driver
[linux-2.6-omap-h63xx.git] / drivers / ide / ide-floppy.h
1 #ifndef __IDE_FLOPPY_H
2 #define __IDE_FLOPPY_H
3
4 #include "ide-gd.h"
5
6 #ifdef CONFIG_IDE_GD_ATAPI
7 typedef struct ide_disk_obj idefloppy_floppy_t;
8
9 /*
10  * Pages of the SELECT SENSE / MODE SENSE packet commands.
11  * See SFF-8070i spec.
12  */
13 #define IDEFLOPPY_CAPABILITIES_PAGE     0x1b
14 #define IDEFLOPPY_FLEXIBLE_DISK_PAGE    0x05
15
16 /* IOCTLs used in low-level formatting. */
17 #define IDEFLOPPY_IOCTL_FORMAT_SUPPORTED        0x4600
18 #define IDEFLOPPY_IOCTL_FORMAT_GET_CAPACITY     0x4601
19 #define IDEFLOPPY_IOCTL_FORMAT_START            0x4602
20 #define IDEFLOPPY_IOCTL_FORMAT_GET_PROGRESS     0x4603
21
22 /* ide-floppy.c */
23 extern const struct ide_disk_ops ide_atapi_disk_ops;
24 void ide_floppy_create_mode_sense_cmd(struct ide_atapi_pc *, u8);
25 void ide_floppy_create_read_capacity_cmd(struct ide_atapi_pc *);
26
27 /* ide-floppy_ioctl.c */
28 int ide_floppy_ioctl(ide_drive_t *, struct inode *, struct file *, unsigned int,
29                      unsigned long);
30
31 #ifdef CONFIG_IDE_PROC_FS
32 /* ide-floppy_proc.c */
33 extern ide_proc_entry_t ide_floppy_proc[];
34 extern const struct ide_proc_devset ide_floppy_settings[];
35 #endif
36 #else
37 #define ide_floppy_proc         NULL
38 #define ide_floppy_settings     NULL
39 #endif
40
41 #endif /*__IDE_FLOPPY_H */