Bartlomiej Zolnierkiewicz | b9103da | 2008-10-13 21:39:44 +0200 | [diff] [blame] | 1 | #include <linux/kernel.h> |
Paul Gortmaker | 38789fd | 2011-07-17 15:33:58 -0400 | [diff] [blame] | 2 | #include <linux/export.h> |
Bartlomiej Zolnierkiewicz | b9103da | 2008-10-13 21:39:44 +0200 | [diff] [blame] | 3 | #include <linux/ide.h> |
Alexey Dobriyan | 6d703a8 | 2009-09-01 17:52:57 -0700 | [diff] [blame] | 4 | #include <linux/seq_file.h> |
Bartlomiej Zolnierkiewicz | b9103da | 2008-10-13 21:39:44 +0200 | [diff] [blame] | 5 | |
| 6 | #include "ide-floppy.h" |
| 7 | |
Alexey Dobriyan | 6d703a8 | 2009-09-01 17:52:57 -0700 | [diff] [blame] | 8 | static int idefloppy_capacity_proc_show(struct seq_file *m, void *v) |
Bartlomiej Zolnierkiewicz | b9103da | 2008-10-13 21:39:44 +0200 | [diff] [blame] | 9 | { |
Alexey Dobriyan | 6d703a8 | 2009-09-01 17:52:57 -0700 | [diff] [blame] | 10 | ide_drive_t*drive = (ide_drive_t *)m->private; |
Bartlomiej Zolnierkiewicz | b9103da | 2008-10-13 21:39:44 +0200 | [diff] [blame] | 11 | |
Alexey Dobriyan | 6d703a8 | 2009-09-01 17:52:57 -0700 | [diff] [blame] | 12 | seq_printf(m, "%llu\n", (long long)ide_gd_capacity(drive)); |
| 13 | return 0; |
Bartlomiej Zolnierkiewicz | b9103da | 2008-10-13 21:39:44 +0200 | [diff] [blame] | 14 | } |
| 15 | |
Alexey Dobriyan | 6d703a8 | 2009-09-01 17:52:57 -0700 | [diff] [blame] | 16 | static int idefloppy_capacity_proc_open(struct inode *inode, struct file *file) |
| 17 | { |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 18 | return single_open(file, idefloppy_capacity_proc_show, PDE_DATA(inode)); |
Alexey Dobriyan | 6d703a8 | 2009-09-01 17:52:57 -0700 | [diff] [blame] | 19 | } |
| 20 | |
| 21 | static const struct file_operations idefloppy_capacity_proc_fops = { |
| 22 | .owner = THIS_MODULE, |
| 23 | .open = idefloppy_capacity_proc_open, |
| 24 | .read = seq_read, |
| 25 | .llseek = seq_lseek, |
| 26 | .release = single_release, |
| 27 | }; |
| 28 | |
Bartlomiej Zolnierkiewicz | b9103da | 2008-10-13 21:39:44 +0200 | [diff] [blame] | 29 | ide_proc_entry_t ide_floppy_proc[] = { |
Alexey Dobriyan | 6d703a8 | 2009-09-01 17:52:57 -0700 | [diff] [blame] | 30 | { "capacity", S_IFREG|S_IRUGO, &idefloppy_capacity_proc_fops }, |
| 31 | { "geometry", S_IFREG|S_IRUGO, &ide_geometry_proc_fops }, |
| 32 | {} |
Bartlomiej Zolnierkiewicz | b9103da | 2008-10-13 21:39:44 +0200 | [diff] [blame] | 33 | }; |
| 34 | |
| 35 | ide_devset_rw_field(bios_cyl, bios_cyl); |
| 36 | ide_devset_rw_field(bios_head, bios_head); |
| 37 | ide_devset_rw_field(bios_sect, bios_sect); |
| 38 | ide_devset_rw_field(ticks, pc_delay); |
| 39 | |
| 40 | const struct ide_proc_devset ide_floppy_settings[] = { |
| 41 | IDE_PROC_DEVSET(bios_cyl, 0, 1023), |
| 42 | IDE_PROC_DEVSET(bios_head, 0, 255), |
| 43 | IDE_PROC_DEVSET(bios_sect, 0, 63), |
| 44 | IDE_PROC_DEVSET(ticks, 0, 255), |
Hannes Eder | 71bfc7a | 2009-03-05 16:10:56 +0100 | [diff] [blame] | 45 | { NULL }, |
Bartlomiej Zolnierkiewicz | b9103da | 2008-10-13 21:39:44 +0200 | [diff] [blame] | 46 | }; |