blob: acebc8c5a827fcbc5e8f8458bd95f21e9567e60c [file] [log] [blame]
Bartlomiej Zolnierkiewicz01278542008-10-10 22:39:38 +02001#ifndef __IDE_FLOPPY_H
2#define __IDE_FLOPPY_H
3
Bartlomiej Zolnierkiewicz806f80a2008-10-17 18:09:14 +02004#include "ide-gd.h"
Bartlomiej Zolnierkiewiczc84d9bb2008-10-17 18:09:13 +02005
Bartlomiej Zolnierkiewicz806f80a2008-10-17 18:09:14 +02006#ifdef CONFIG_IDE_GD_ATAPI
7typedef struct ide_disk_obj idefloppy_floppy_t;
Bartlomiej Zolnierkiewicz01278542008-10-10 22:39:38 +02008
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 */
Bartlomiej Zolnierkiewicz806f80a2008-10-17 18:09:14 +020023extern const struct ide_disk_ops ide_atapi_disk_ops;
Bartlomiej Zolnierkiewicz01278542008-10-10 22:39:38 +020024void ide_floppy_create_mode_sense_cmd(struct ide_atapi_pc *, u8);
25void ide_floppy_create_read_capacity_cmd(struct ide_atapi_pc *);
Bartlomiej Zolnierkiewicz01278542008-10-10 22:39:38 +020026
27/* ide-floppy_ioctl.c */
Bartlomiej Zolnierkiewicz806f80a2008-10-17 18:09:14 +020028int ide_floppy_ioctl(ide_drive_t *, struct inode *, struct file *, unsigned int,
29 unsigned long);
Bartlomiej Zolnierkiewicz01278542008-10-10 22:39:38 +020030
Bartlomiej Zolnierkiewiczb9103da2008-10-13 21:39:44 +020031#ifdef CONFIG_IDE_PROC_FS
32/* ide-floppy_proc.c */
33extern ide_proc_entry_t ide_floppy_proc[];
34extern const struct ide_proc_devset ide_floppy_settings[];
35#endif
Bartlomiej Zolnierkiewicz806f80a2008-10-17 18:09:14 +020036#else
37#define ide_floppy_proc NULL
38#define ide_floppy_settings NULL
39#endif
Bartlomiej Zolnierkiewiczb9103da2008-10-13 21:39:44 +020040
Bartlomiej Zolnierkiewicz01278542008-10-10 22:39:38 +020041#endif /*__IDE_FLOPPY_H */