blob: 836a70e6e3eff11588d329b8d2cb17bc6c07bde3 [file] [log] [blame]
Bartlomiej Zolnierkiewicz01278542008-10-10 22:39:38 +02001#ifndef __IDE_FLOPPY_H
2#define __IDE_FLOPPY_H
3
Bartlomiej Zolnierkiewiczc84d9bb2008-10-17 18:09:13 +02004#define DRV_NAME "ide-floppy"
5#define PFX DRV_NAME ": "
6
7/* define to see debug info */
8#define IDEFLOPPY_DEBUG_LOG 0
9
10#if IDEFLOPPY_DEBUG_LOG
11#define ide_debug_log(lvl, fmt, args...) __ide_debug_log(lvl, fmt, args)
12#else
13#define ide_debug_log(lvl, fmt, args...) do {} while (0)
14#endif
15
Bartlomiej Zolnierkiewicz01278542008-10-10 22:39:38 +020016/*
17 * Most of our global data which we need to save even as we leave the driver
18 * due to an interrupt or a timer event is stored in a variable of type
19 * idefloppy_floppy_t, defined below.
20 */
21typedef struct ide_floppy_obj {
22 ide_drive_t *drive;
23 ide_driver_t *driver;
24 struct gendisk *disk;
25 struct kref kref;
26 unsigned int openers; /* protected by BKL for now */
27
Bartlomiej Zolnierkiewicz01278542008-10-10 22:39:38 +020028 /* Last failed packet command */
29 struct ide_atapi_pc *failed_pc;
30 /* used for blk_{fs,pc}_request() requests */
31 struct ide_atapi_pc queued_pc;
32
Bartlomiej Zolnierkiewicz01278542008-10-10 22:39:38 +020033 /* Last error information */
34 u8 sense_key, asc, ascq;
Bartlomiej Zolnierkiewiczbaf08f02008-10-13 21:39:32 +020035
Bartlomiej Zolnierkiewicz01278542008-10-10 22:39:38 +020036 int progress_indication;
37
38 /* Device information */
39 /* Current format */
40 int blocks, block_size, bs_factor;
41 /* Last format capacity descriptor */
42 u8 cap_desc[8];
43 /* Copy of the flexible disk page */
44 u8 flexible_disk_page[32];
45} idefloppy_floppy_t;
46
47/*
48 * Pages of the SELECT SENSE / MODE SENSE packet commands.
49 * See SFF-8070i spec.
50 */
51#define IDEFLOPPY_CAPABILITIES_PAGE 0x1b
52#define IDEFLOPPY_FLEXIBLE_DISK_PAGE 0x05
53
54/* IOCTLs used in low-level formatting. */
55#define IDEFLOPPY_IOCTL_FORMAT_SUPPORTED 0x4600
56#define IDEFLOPPY_IOCTL_FORMAT_GET_CAPACITY 0x4601
57#define IDEFLOPPY_IOCTL_FORMAT_START 0x4602
58#define IDEFLOPPY_IOCTL_FORMAT_GET_PROGRESS 0x4603
59
Bartlomiej Zolnierkiewiczc84d9bb2008-10-17 18:09:13 +020060sector_t ide_floppy_capacity(ide_drive_t *);
61
Bartlomiej Zolnierkiewicz01278542008-10-10 22:39:38 +020062/* ide-floppy.c */
63void ide_floppy_create_mode_sense_cmd(struct ide_atapi_pc *, u8);
64void ide_floppy_create_read_capacity_cmd(struct ide_atapi_pc *);
Bartlomiej Zolnierkiewiczc84d9bb2008-10-17 18:09:13 +020065int ide_floppy_get_capacity(ide_drive_t *);
66void ide_floppy_setup(ide_drive_t *);
67ide_startstop_t ide_floppy_do_request(ide_drive_t *, struct request *, sector_t);
68int ide_floppy_end_request(ide_drive_t *, int, int);
Bartlomiej Zolnierkiewicz01278542008-10-10 22:39:38 +020069
70/* ide-floppy_ioctl.c */
Bartlomiej Zolnierkiewicz5bb15362008-10-13 21:39:44 +020071int ide_floppy_ioctl(struct inode *, struct file *, unsigned, unsigned long);
Bartlomiej Zolnierkiewicz01278542008-10-10 22:39:38 +020072
Bartlomiej Zolnierkiewiczb9103da2008-10-13 21:39:44 +020073#ifdef CONFIG_IDE_PROC_FS
74/* ide-floppy_proc.c */
75extern ide_proc_entry_t ide_floppy_proc[];
76extern const struct ide_proc_devset ide_floppy_settings[];
77#endif
78
Bartlomiej Zolnierkiewicz01278542008-10-10 22:39:38 +020079#endif /*__IDE_FLOPPY_H */