Bartlomiej Zolnierkiewicz | 06b8951 | 2008-10-13 21:39:45 +0200 | [diff] [blame] | 1 | #include <linux/kernel.h> |
| 2 | #include <linux/ide.h> |
| 3 | #include <linux/hdreg.h> |
| 4 | |
| 5 | #include "ide-disk.h" |
| 6 | |
| 7 | static int smart_enable(ide_drive_t *drive) |
| 8 | { |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 9 | struct ide_cmd cmd; |
| 10 | struct ide_taskfile *tf = &cmd.tf; |
Bartlomiej Zolnierkiewicz | 06b8951 | 2008-10-13 21:39:45 +0200 | [diff] [blame] | 11 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 12 | memset(&cmd, 0, sizeof(cmd)); |
Bartlomiej Zolnierkiewicz | 06b8951 | 2008-10-13 21:39:45 +0200 | [diff] [blame] | 13 | tf->feature = ATA_SMART_ENABLE; |
| 14 | tf->lbam = ATA_SMART_LBAM_PASS; |
| 15 | tf->lbah = ATA_SMART_LBAH_PASS; |
| 16 | tf->command = ATA_CMD_SMART; |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 17 | cmd.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE; |
| 18 | |
| 19 | return ide_no_data_taskfile(drive, &cmd); |
Bartlomiej Zolnierkiewicz | 06b8951 | 2008-10-13 21:39:45 +0200 | [diff] [blame] | 20 | } |
| 21 | |
| 22 | static int get_smart_data(ide_drive_t *drive, u8 *buf, u8 sub_cmd) |
| 23 | { |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 24 | struct ide_cmd cmd; |
| 25 | struct ide_taskfile *tf = &cmd.tf; |
Bartlomiej Zolnierkiewicz | 06b8951 | 2008-10-13 21:39:45 +0200 | [diff] [blame] | 26 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 27 | memset(&cmd, 0, sizeof(cmd)); |
Bartlomiej Zolnierkiewicz | 06b8951 | 2008-10-13 21:39:45 +0200 | [diff] [blame] | 28 | tf->feature = sub_cmd; |
| 29 | tf->nsect = 0x01; |
| 30 | tf->lbam = ATA_SMART_LBAM_PASS; |
| 31 | tf->lbah = ATA_SMART_LBAH_PASS; |
| 32 | tf->command = ATA_CMD_SMART; |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 33 | cmd.tf_flags = IDE_TFLAG_TF | IDE_TFLAG_DEVICE; |
| 34 | cmd.data_phase = TASKFILE_IN; |
Bartlomiej Zolnierkiewicz | 3937585 | 2009-03-27 12:46:32 +0100 | [diff] [blame] | 35 | |
Bartlomiej Zolnierkiewicz | 22aa4b3 | 2009-03-27 12:46:37 +0100 | [diff] [blame] | 36 | return ide_raw_taskfile(drive, &cmd, buf, 1); |
Bartlomiej Zolnierkiewicz | 06b8951 | 2008-10-13 21:39:45 +0200 | [diff] [blame] | 37 | } |
| 38 | |
| 39 | static int proc_idedisk_read_cache |
| 40 | (char *page, char **start, off_t off, int count, int *eof, void *data) |
| 41 | { |
| 42 | ide_drive_t *drive = (ide_drive_t *) data; |
| 43 | char *out = page; |
| 44 | int len; |
| 45 | |
| 46 | if (drive->dev_flags & IDE_DFLAG_ID_READ) |
| 47 | len = sprintf(out, "%i\n", drive->id[ATA_ID_BUF_SIZE] / 2); |
| 48 | else |
| 49 | len = sprintf(out, "(none)\n"); |
| 50 | |
| 51 | PROC_IDE_READ_RETURN(page, start, off, count, eof, len); |
| 52 | } |
| 53 | |
| 54 | static int proc_idedisk_read_capacity |
| 55 | (char *page, char **start, off_t off, int count, int *eof, void *data) |
| 56 | { |
| 57 | ide_drive_t*drive = (ide_drive_t *)data; |
| 58 | int len; |
| 59 | |
Bartlomiej Zolnierkiewicz | 5fef0e5 | 2008-10-17 18:09:12 +0200 | [diff] [blame] | 60 | len = sprintf(page, "%llu\n", (long long)ide_gd_capacity(drive)); |
Bartlomiej Zolnierkiewicz | 06b8951 | 2008-10-13 21:39:45 +0200 | [diff] [blame] | 61 | |
| 62 | PROC_IDE_READ_RETURN(page, start, off, count, eof, len); |
| 63 | } |
| 64 | |
| 65 | static int proc_idedisk_read_smart(char *page, char **start, off_t off, |
| 66 | int count, int *eof, void *data, u8 sub_cmd) |
| 67 | { |
| 68 | ide_drive_t *drive = (ide_drive_t *)data; |
| 69 | int len = 0, i = 0; |
| 70 | |
Bartlomiej Zolnierkiewicz | 3937585 | 2009-03-27 12:46:32 +0100 | [diff] [blame] | 71 | (void)smart_enable(drive); |
| 72 | |
Bartlomiej Zolnierkiewicz | 06b8951 | 2008-10-13 21:39:45 +0200 | [diff] [blame] | 73 | if (get_smart_data(drive, page, sub_cmd) == 0) { |
| 74 | unsigned short *val = (unsigned short *) page; |
| 75 | char *out = (char *)val + SECTOR_SIZE; |
| 76 | |
| 77 | page = out; |
| 78 | do { |
| 79 | out += sprintf(out, "%04x%c", le16_to_cpu(*val), |
| 80 | (++i & 7) ? ' ' : '\n'); |
| 81 | val += 1; |
| 82 | } while (i < SECTOR_SIZE / 2); |
| 83 | len = out - page; |
| 84 | } |
| 85 | |
| 86 | PROC_IDE_READ_RETURN(page, start, off, count, eof, len); |
| 87 | } |
| 88 | |
| 89 | static int proc_idedisk_read_sv |
| 90 | (char *page, char **start, off_t off, int count, int *eof, void *data) |
| 91 | { |
| 92 | return proc_idedisk_read_smart(page, start, off, count, eof, data, |
| 93 | ATA_SMART_READ_VALUES); |
| 94 | } |
| 95 | |
| 96 | static int proc_idedisk_read_st |
| 97 | (char *page, char **start, off_t off, int count, int *eof, void *data) |
| 98 | { |
| 99 | return proc_idedisk_read_smart(page, start, off, count, eof, data, |
| 100 | ATA_SMART_READ_THRESHOLDS); |
| 101 | } |
| 102 | |
| 103 | ide_proc_entry_t ide_disk_proc[] = { |
| 104 | { "cache", S_IFREG|S_IRUGO, proc_idedisk_read_cache, NULL }, |
| 105 | { "capacity", S_IFREG|S_IRUGO, proc_idedisk_read_capacity, NULL }, |
| 106 | { "geometry", S_IFREG|S_IRUGO, proc_ide_read_geometry, NULL }, |
| 107 | { "smart_values", S_IFREG|S_IRUSR, proc_idedisk_read_sv, NULL }, |
| 108 | { "smart_thresholds", S_IFREG|S_IRUSR, proc_idedisk_read_st, NULL }, |
| 109 | { NULL, 0, NULL, NULL } |
| 110 | }; |
| 111 | |
| 112 | ide_devset_rw_field(bios_cyl, bios_cyl); |
| 113 | ide_devset_rw_field(bios_head, bios_head); |
| 114 | ide_devset_rw_field(bios_sect, bios_sect); |
| 115 | ide_devset_rw_field(failures, failures); |
| 116 | ide_devset_rw_field(lun, lun); |
| 117 | ide_devset_rw_field(max_failures, max_failures); |
| 118 | |
| 119 | const struct ide_proc_devset ide_disk_settings[] = { |
| 120 | IDE_PROC_DEVSET(acoustic, 0, 254), |
| 121 | IDE_PROC_DEVSET(address, 0, 2), |
| 122 | IDE_PROC_DEVSET(bios_cyl, 0, 65535), |
| 123 | IDE_PROC_DEVSET(bios_head, 0, 255), |
| 124 | IDE_PROC_DEVSET(bios_sect, 0, 63), |
| 125 | IDE_PROC_DEVSET(failures, 0, 65535), |
| 126 | IDE_PROC_DEVSET(lun, 0, 7), |
| 127 | IDE_PROC_DEVSET(max_failures, 0, 65535), |
| 128 | IDE_PROC_DEVSET(multcount, 0, 16), |
| 129 | IDE_PROC_DEVSET(nowerr, 0, 1), |
| 130 | IDE_PROC_DEVSET(wcache, 0, 1), |
Hannes Eder | 71bfc7a | 2009-03-05 16:10:56 +0100 | [diff] [blame] | 131 | { NULL }, |
Bartlomiej Zolnierkiewicz | 06b8951 | 2008-10-13 21:39:45 +0200 | [diff] [blame] | 132 | }; |