1 #include <linux/kernel.h>
3 #include <linux/slab.h>
4 #include <linux/export.h>
5 #include <linux/seq_file.h>
9 static int smart_enable(ide_drive_t
*drive
)
12 struct ide_taskfile
*tf
= &cmd
.tf
;
14 memset(&cmd
, 0, sizeof(cmd
));
15 tf
->feature
= ATA_SMART_ENABLE
;
16 tf
->lbam
= ATA_SMART_LBAM_PASS
;
17 tf
->lbah
= ATA_SMART_LBAH_PASS
;
18 tf
->command
= ATA_CMD_SMART
;
19 cmd
.valid
.out
.tf
= IDE_VALID_OUT_TF
| IDE_VALID_DEVICE
;
20 cmd
.valid
.in
.tf
= IDE_VALID_IN_TF
| IDE_VALID_DEVICE
;
22 return ide_no_data_taskfile(drive
, &cmd
);
25 static int get_smart_data(ide_drive_t
*drive
, u8
*buf
, u8 sub_cmd
)
28 struct ide_taskfile
*tf
= &cmd
.tf
;
30 memset(&cmd
, 0, sizeof(cmd
));
31 tf
->feature
= sub_cmd
;
33 tf
->lbam
= ATA_SMART_LBAM_PASS
;
34 tf
->lbah
= ATA_SMART_LBAH_PASS
;
35 tf
->command
= ATA_CMD_SMART
;
36 cmd
.valid
.out
.tf
= IDE_VALID_OUT_TF
| IDE_VALID_DEVICE
;
37 cmd
.valid
.in
.tf
= IDE_VALID_IN_TF
| IDE_VALID_DEVICE
;
38 cmd
.protocol
= ATA_PROT_PIO
;
40 return ide_raw_taskfile(drive
, &cmd
, buf
, 1);
43 static int idedisk_cache_proc_show(struct seq_file
*m
, void *v
)
45 ide_drive_t
*drive
= (ide_drive_t
*) m
->private;
47 if (drive
->dev_flags
& IDE_DFLAG_ID_READ
)
48 seq_printf(m
, "%i\n", drive
->id
[ATA_ID_BUF_SIZE
] / 2);
50 seq_printf(m
, "(none)\n");
54 static int idedisk_cache_proc_open(struct inode
*inode
, struct file
*file
)
56 return single_open(file
, idedisk_cache_proc_show
, PDE(inode
)->data
);
59 static const struct file_operations idedisk_cache_proc_fops
= {
61 .open
= idedisk_cache_proc_open
,
64 .release
= single_release
,
67 static int idedisk_capacity_proc_show(struct seq_file
*m
, void *v
)
69 ide_drive_t
*drive
= (ide_drive_t
*)m
->private;
71 seq_printf(m
, "%llu\n", (long long)ide_gd_capacity(drive
));
75 static int idedisk_capacity_proc_open(struct inode
*inode
, struct file
*file
)
77 return single_open(file
, idedisk_capacity_proc_show
, PDE(inode
)->data
);
80 static const struct file_operations idedisk_capacity_proc_fops
= {
82 .open
= idedisk_capacity_proc_open
,
85 .release
= single_release
,
88 static int __idedisk_proc_show(struct seq_file
*m
, ide_drive_t
*drive
, u8 sub_cmd
)
92 buf
= kmalloc(SECTOR_SIZE
, GFP_KERNEL
);
96 (void)smart_enable(drive
);
98 if (get_smart_data(drive
, buf
, sub_cmd
) == 0) {
99 __le16
*val
= (__le16
*)buf
;
102 for (i
= 0; i
< SECTOR_SIZE
/ 2; i
++) {
103 seq_printf(m
, "%04x%c", le16_to_cpu(val
[i
]),
104 (i
% 8) == 7 ? '\n' : ' ');
111 static int idedisk_sv_proc_show(struct seq_file
*m
, void *v
)
113 return __idedisk_proc_show(m
, m
->private, ATA_SMART_READ_VALUES
);
116 static int idedisk_sv_proc_open(struct inode
*inode
, struct file
*file
)
118 return single_open(file
, idedisk_sv_proc_show
, PDE(inode
)->data
);
121 static const struct file_operations idedisk_sv_proc_fops
= {
122 .owner
= THIS_MODULE
,
123 .open
= idedisk_sv_proc_open
,
126 .release
= single_release
,
129 static int idedisk_st_proc_show(struct seq_file
*m
, void *v
)
131 return __idedisk_proc_show(m
, m
->private, ATA_SMART_READ_THRESHOLDS
);
134 static int idedisk_st_proc_open(struct inode
*inode
, struct file
*file
)
136 return single_open(file
, idedisk_st_proc_show
, PDE(inode
)->data
);
139 static const struct file_operations idedisk_st_proc_fops
= {
140 .owner
= THIS_MODULE
,
141 .open
= idedisk_st_proc_open
,
144 .release
= single_release
,
147 ide_proc_entry_t ide_disk_proc
[] = {
148 { "cache", S_IFREG
|S_IRUGO
, &idedisk_cache_proc_fops
},
149 { "capacity", S_IFREG
|S_IRUGO
, &idedisk_capacity_proc_fops
},
150 { "geometry", S_IFREG
|S_IRUGO
, &ide_geometry_proc_fops
},
151 { "smart_values", S_IFREG
|S_IRUSR
, &idedisk_sv_proc_fops
},
152 { "smart_thresholds", S_IFREG
|S_IRUSR
, &idedisk_st_proc_fops
},
156 ide_devset_rw_field(bios_cyl
, bios_cyl
);
157 ide_devset_rw_field(bios_head
, bios_head
);
158 ide_devset_rw_field(bios_sect
, bios_sect
);
159 ide_devset_rw_field(failures
, failures
);
160 ide_devset_rw_field(lun
, lun
);
161 ide_devset_rw_field(max_failures
, max_failures
);
163 const struct ide_proc_devset ide_disk_settings
[] = {
164 IDE_PROC_DEVSET(acoustic
, 0, 254),
165 IDE_PROC_DEVSET(address
, 0, 2),
166 IDE_PROC_DEVSET(bios_cyl
, 0, 65535),
167 IDE_PROC_DEVSET(bios_head
, 0, 255),
168 IDE_PROC_DEVSET(bios_sect
, 0, 63),
169 IDE_PROC_DEVSET(failures
, 0, 65535),
170 IDE_PROC_DEVSET(lun
, 0, 7),
171 IDE_PROC_DEVSET(max_failures
, 0, 65535),
172 IDE_PROC_DEVSET(multcount
, 0, 16),
173 IDE_PROC_DEVSET(nowerr
, 0, 1),
174 IDE_PROC_DEVSET(wcache
, 0, 1),