]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/ide/ide-floppy.h
Merge tag 'iomap-5.7-merge-3' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux
[mirror_ubuntu-jammy-kernel.git] / drivers / ide / ide-floppy.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
0127854d
BZ
2#ifndef __IDE_FLOPPY_H
3#define __IDE_FLOPPY_H
4
806f80a6 5#include "ide-gd.h"
c84d9bbe 6
806f80a6 7#ifdef CONFIG_IDE_GD_ATAPI
0127854d
BZ
8/*
9 * Pages of the SELECT SENSE / MODE SENSE packet commands.
10 * See SFF-8070i spec.
11 */
12#define IDEFLOPPY_CAPABILITIES_PAGE 0x1b
13#define IDEFLOPPY_FLEXIBLE_DISK_PAGE 0x05
14
15/* IOCTLs used in low-level formatting. */
16#define IDEFLOPPY_IOCTL_FORMAT_SUPPORTED 0x4600
17#define IDEFLOPPY_IOCTL_FORMAT_GET_CAPACITY 0x4601
18#define IDEFLOPPY_IOCTL_FORMAT_START 0x4602
19#define IDEFLOPPY_IOCTL_FORMAT_GET_PROGRESS 0x4603
20
21/* ide-floppy.c */
806f80a6 22extern const struct ide_disk_ops ide_atapi_disk_ops;
0127854d
BZ
23void ide_floppy_create_mode_sense_cmd(struct ide_atapi_pc *, u8);
24void ide_floppy_create_read_capacity_cmd(struct ide_atapi_pc *);
0127854d
BZ
25
26/* ide-floppy_ioctl.c */
badf8082
AV
27int ide_floppy_ioctl(ide_drive_t *, struct block_device *, fmode_t,
28 unsigned int, unsigned long);
c103d6ee
AB
29int ide_floppy_compat_ioctl(ide_drive_t *, struct block_device *, fmode_t,
30 unsigned int, unsigned long);
0127854d 31
b9103da4
BZ
32#ifdef CONFIG_IDE_PROC_FS
33/* ide-floppy_proc.c */
34extern ide_proc_entry_t ide_floppy_proc[];
35extern const struct ide_proc_devset ide_floppy_settings[];
36#endif
806f80a6
BZ
37#else
38#define ide_floppy_proc NULL
39#define ide_floppy_settings NULL
40#endif
b9103da4 41
0127854d 42#endif /*__IDE_FLOPPY_H */