Bartlomiej Zolnierkiewicz | 0127854 | 2008-10-10 22:39:38 +0200 | [diff] [blame] | 1 | #ifndef __IDE_FLOPPY_H |
| 2 | #define __IDE_FLOPPY_H |
| 3 | |
Bartlomiej Zolnierkiewicz | 806f80a | 2008-10-17 18:09:14 +0200 | [diff] [blame] | 4 | #include "ide-gd.h" |
Bartlomiej Zolnierkiewicz | c84d9bb | 2008-10-17 18:09:13 +0200 | [diff] [blame] | 5 | |
Bartlomiej Zolnierkiewicz | 806f80a | 2008-10-17 18:09:14 +0200 | [diff] [blame] | 6 | #ifdef CONFIG_IDE_GD_ATAPI |
Bartlomiej Zolnierkiewicz | 0127854 | 2008-10-10 22:39:38 +0200 | [diff] [blame] | 7 | /* |
| 8 | * Pages of the SELECT SENSE / MODE SENSE packet commands. |
| 9 | * See SFF-8070i spec. |
| 10 | */ |
| 11 | #define IDEFLOPPY_CAPABILITIES_PAGE 0x1b |
| 12 | #define IDEFLOPPY_FLEXIBLE_DISK_PAGE 0x05 |
| 13 | |
| 14 | /* IOCTLs used in low-level formatting. */ |
| 15 | #define IDEFLOPPY_IOCTL_FORMAT_SUPPORTED 0x4600 |
| 16 | #define IDEFLOPPY_IOCTL_FORMAT_GET_CAPACITY 0x4601 |
| 17 | #define IDEFLOPPY_IOCTL_FORMAT_START 0x4602 |
| 18 | #define IDEFLOPPY_IOCTL_FORMAT_GET_PROGRESS 0x4603 |
| 19 | |
| 20 | /* ide-floppy.c */ |
Bartlomiej Zolnierkiewicz | 806f80a | 2008-10-17 18:09:14 +0200 | [diff] [blame] | 21 | extern const struct ide_disk_ops ide_atapi_disk_ops; |
Bartlomiej Zolnierkiewicz | 0127854 | 2008-10-10 22:39:38 +0200 | [diff] [blame] | 22 | void ide_floppy_create_mode_sense_cmd(struct ide_atapi_pc *, u8); |
| 23 | void ide_floppy_create_read_capacity_cmd(struct ide_atapi_pc *); |
Bartlomiej Zolnierkiewicz | 0127854 | 2008-10-10 22:39:38 +0200 | [diff] [blame] | 24 | |
| 25 | /* ide-floppy_ioctl.c */ |
Al Viro | badf808 | 2008-10-16 10:23:20 -0400 | [diff] [blame] | 26 | int ide_floppy_ioctl(ide_drive_t *, struct block_device *, fmode_t, |
| 27 | unsigned int, unsigned long); |
Bartlomiej Zolnierkiewicz | 0127854 | 2008-10-10 22:39:38 +0200 | [diff] [blame] | 28 | |
Bartlomiej Zolnierkiewicz | b9103da | 2008-10-13 21:39:44 +0200 | [diff] [blame] | 29 | #ifdef CONFIG_IDE_PROC_FS |
| 30 | /* ide-floppy_proc.c */ |
| 31 | extern ide_proc_entry_t ide_floppy_proc[]; |
| 32 | extern const struct ide_proc_devset ide_floppy_settings[]; |
| 33 | #endif |
Bartlomiej Zolnierkiewicz | 806f80a | 2008-10-17 18:09:14 +0200 | [diff] [blame] | 34 | #else |
| 35 | #define ide_floppy_proc NULL |
| 36 | #define ide_floppy_settings NULL |
| 37 | #endif |
Bartlomiej Zolnierkiewicz | b9103da | 2008-10-13 21:39:44 +0200 | [diff] [blame] | 38 | |
Bartlomiej Zolnierkiewicz | 0127854 | 2008-10-10 22:39:38 +0200 | [diff] [blame] | 39 | #endif /*__IDE_FLOPPY_H */ |