blob: 95d239b2f646d024236f2a3a68e2eca185b5e54d [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +02002#include <linux/kernel.h>
3#include <linux/ide.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09004#include <linux/slab.h>
Paul Gortmaker38789fd2011-07-17 15:33:58 -04005#include <linux/export.h>
Alexey Dobriyan6d703a82009-09-01 17:52:57 -07006#include <linux/seq_file.h>
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +02007
8#include "ide-disk.h"
9
10static int smart_enable(ide_drive_t *drive)
11{
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +010012 struct ide_cmd cmd;
13 struct ide_taskfile *tf = &cmd.tf;
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +020014
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +010015 memset(&cmd, 0, sizeof(cmd));
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +020016 tf->feature = ATA_SMART_ENABLE;
17 tf->lbam = ATA_SMART_LBAM_PASS;
18 tf->lbah = ATA_SMART_LBAH_PASS;
19 tf->command = ATA_CMD_SMART;
Sergei Shtylyov60f85012009-04-08 14:13:01 +020020 cmd.valid.out.tf = IDE_VALID_OUT_TF | IDE_VALID_DEVICE;
21 cmd.valid.in.tf = IDE_VALID_IN_TF | IDE_VALID_DEVICE;
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +010022
23 return ide_no_data_taskfile(drive, &cmd);
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +020024}
25
26static int get_smart_data(ide_drive_t *drive, u8 *buf, u8 sub_cmd)
27{
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +010028 struct ide_cmd cmd;
29 struct ide_taskfile *tf = &cmd.tf;
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +020030
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +010031 memset(&cmd, 0, sizeof(cmd));
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +020032 tf->feature = sub_cmd;
33 tf->nsect = 0x01;
34 tf->lbam = ATA_SMART_LBAM_PASS;
35 tf->lbah = ATA_SMART_LBAH_PASS;
36 tf->command = ATA_CMD_SMART;
Sergei Shtylyov60f85012009-04-08 14:13:01 +020037 cmd.valid.out.tf = IDE_VALID_OUT_TF | IDE_VALID_DEVICE;
38 cmd.valid.in.tf = IDE_VALID_IN_TF | IDE_VALID_DEVICE;
Bartlomiej Zolnierkiewicz0dfb9912009-03-27 12:46:39 +010039 cmd.protocol = ATA_PROT_PIO;
Bartlomiej Zolnierkiewicz39375852009-03-27 12:46:32 +010040
Bartlomiej Zolnierkiewicz22aa4b32009-03-27 12:46:37 +010041 return ide_raw_taskfile(drive, &cmd, buf, 1);
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +020042}
43
Alexey Dobriyan6d703a82009-09-01 17:52:57 -070044static int idedisk_cache_proc_show(struct seq_file *m, void *v)
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +020045{
Alexey Dobriyan6d703a82009-09-01 17:52:57 -070046 ide_drive_t *drive = (ide_drive_t *) m->private;
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +020047
48 if (drive->dev_flags & IDE_DFLAG_ID_READ)
Alexey Dobriyan6d703a82009-09-01 17:52:57 -070049 seq_printf(m, "%i\n", drive->id[ATA_ID_BUF_SIZE] / 2);
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +020050 else
Alexey Dobriyan6d703a82009-09-01 17:52:57 -070051 seq_printf(m, "(none)\n");
52 return 0;
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +020053}
54
Alexey Dobriyan6d703a82009-09-01 17:52:57 -070055static int idedisk_capacity_proc_show(struct seq_file *m, void *v)
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +020056{
Alexey Dobriyan6d703a82009-09-01 17:52:57 -070057 ide_drive_t*drive = (ide_drive_t *)m->private;
58
59 seq_printf(m, "%llu\n", (long long)ide_gd_capacity(drive));
60 return 0;
61}
62
Alexey Dobriyan6d703a82009-09-01 17:52:57 -070063static int __idedisk_proc_show(struct seq_file *m, ide_drive_t *drive, u8 sub_cmd)
64{
65 u8 *buf;
66
67 buf = kmalloc(SECTOR_SIZE, GFP_KERNEL);
68 if (!buf)
69 return -ENOMEM;
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +020070
Bartlomiej Zolnierkiewicz39375852009-03-27 12:46:32 +010071 (void)smart_enable(drive);
72
Alexey Dobriyan6d703a82009-09-01 17:52:57 -070073 if (get_smart_data(drive, buf, sub_cmd) == 0) {
74 __le16 *val = (__le16 *)buf;
75 int i;
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +020076
Alexey Dobriyan6d703a82009-09-01 17:52:57 -070077 for (i = 0; i < SECTOR_SIZE / 2; i++) {
78 seq_printf(m, "%04x%c", le16_to_cpu(val[i]),
79 (i % 8) == 7 ? '\n' : ' ');
80 }
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +020081 }
Alexey Dobriyan6d703a82009-09-01 17:52:57 -070082 kfree(buf);
83 return 0;
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +020084}
85
Alexey Dobriyan6d703a82009-09-01 17:52:57 -070086static int idedisk_sv_proc_show(struct seq_file *m, void *v)
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +020087{
Alexey Dobriyan6d703a82009-09-01 17:52:57 -070088 return __idedisk_proc_show(m, m->private, ATA_SMART_READ_VALUES);
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +020089}
90
Alexey Dobriyan6d703a82009-09-01 17:52:57 -070091static int idedisk_st_proc_show(struct seq_file *m, void *v)
92{
93 return __idedisk_proc_show(m, m->private, ATA_SMART_READ_THRESHOLDS);
94}
95
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +020096ide_proc_entry_t ide_disk_proc[] = {
Christoph Hellwigec7d9c92018-04-13 21:25:54 +020097 { "cache", S_IFREG|S_IRUGO, idedisk_cache_proc_show },
98 { "capacity", S_IFREG|S_IRUGO, idedisk_capacity_proc_show },
99 { "geometry", S_IFREG|S_IRUGO, ide_geometry_proc_show },
100 { "smart_values", S_IFREG|S_IRUSR, idedisk_sv_proc_show },
101 { "smart_thresholds", S_IFREG|S_IRUSR, idedisk_st_proc_show },
Alexey Dobriyan6d703a82009-09-01 17:52:57 -0700102 {}
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +0200103};
104
105ide_devset_rw_field(bios_cyl, bios_cyl);
106ide_devset_rw_field(bios_head, bios_head);
107ide_devset_rw_field(bios_sect, bios_sect);
108ide_devset_rw_field(failures, failures);
109ide_devset_rw_field(lun, lun);
110ide_devset_rw_field(max_failures, max_failures);
111
112const struct ide_proc_devset ide_disk_settings[] = {
113 IDE_PROC_DEVSET(acoustic, 0, 254),
114 IDE_PROC_DEVSET(address, 0, 2),
115 IDE_PROC_DEVSET(bios_cyl, 0, 65535),
116 IDE_PROC_DEVSET(bios_head, 0, 255),
117 IDE_PROC_DEVSET(bios_sect, 0, 63),
118 IDE_PROC_DEVSET(failures, 0, 65535),
119 IDE_PROC_DEVSET(lun, 0, 7),
120 IDE_PROC_DEVSET(max_failures, 0, 65535),
121 IDE_PROC_DEVSET(multcount, 0, 16),
122 IDE_PROC_DEVSET(nowerr, 0, 1),
123 IDE_PROC_DEVSET(wcache, 0, 1),
Hannes Eder71bfc7a2009-03-05 16:10:56 +0100124 { NULL },
Bartlomiej Zolnierkiewicz06b89512008-10-13 21:39:45 +0200125};