]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/ide/ide-proc.c
at91_ide: remove headers specific for at91sam9263
[mirror_ubuntu-artful-kernel.git] / drivers / ide / ide-proc.c
CommitLineData
1da177e4 1/*
1da177e4 2 * Copyright (C) 1997-1998 Mark Lord
ccd32e22 3 * Copyright (C) 2003 Red Hat
7662d046
BZ
4 *
5 * Some code was moved here from ide.c, see it for original copyrights.
1da177e4
LT
6 */
7
8/*
9 * This is the /proc/ide/ filesystem implementation.
10 *
11 * Drive/Driver settings can be retrieved by reading the drive's
12 * "settings" files. e.g. "cat /proc/ide0/hda/settings"
13 * To write a new value "val" into a specific setting "name", use:
14 * echo "name:val" >/proc/ide/ide0/hda/settings
1da177e4
LT
15 */
16
1da177e4
LT
17#include <linux/module.h>
18
19#include <asm/uaccess.h>
20#include <linux/errno.h>
1da177e4
LT
21#include <linux/proc_fs.h>
22#include <linux/stat.h>
23#include <linux/mm.h>
24#include <linux/pci.h>
25#include <linux/ctype.h>
1da177e4
LT
26#include <linux/ide.h>
27#include <linux/seq_file.h>
28
29#include <asm/io.h>
30
5cbf79cd
BZ
31static struct proc_dir_entry *proc_ide_root;
32
1da177e4
LT
33static int proc_ide_read_imodel
34 (char *page, char **start, off_t off, int count, int *eof, void *data)
35{
36 ide_hwif_t *hwif = (ide_hwif_t *) data;
37 int len;
38 const char *name;
39
1da177e4 40 switch (hwif->chipset) {
441e92da
PC
41 case ide_generic: name = "generic"; break;
42 case ide_pci: name = "pci"; break;
43 case ide_cmd640: name = "cmd640"; break;
44 case ide_dtc2278: name = "dtc2278"; break;
45 case ide_ali14xx: name = "ali14xx"; break;
46 case ide_qd65xx: name = "qd65xx"; break;
47 case ide_umc8672: name = "umc8672"; break;
48 case ide_ht6560b: name = "ht6560b"; break;
441e92da
PC
49 case ide_4drives: name = "4drives"; break;
50 case ide_pmac: name = "mac-io"; break;
51 case ide_au1xxx: name = "au1xxx"; break;
52 case ide_palm3710: name = "palm3710"; break;
441e92da
PC
53 case ide_acorn: name = "acorn"; break;
54 default: name = "(unknown)"; break;
1da177e4
LT
55 }
56 len = sprintf(page, "%s\n", name);
441e92da 57 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1da177e4
LT
58}
59
60static int proc_ide_read_mate
61 (char *page, char **start, off_t off, int count, int *eof, void *data)
62{
63 ide_hwif_t *hwif = (ide_hwif_t *) data;
64 int len;
65
4283e1ba 66 if (hwif && hwif->mate)
1da177e4
LT
67 len = sprintf(page, "%s\n", hwif->mate->name);
68 else
69 len = sprintf(page, "(none)\n");
441e92da 70 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1da177e4
LT
71}
72
73static int proc_ide_read_channel
74 (char *page, char **start, off_t off, int count, int *eof, void *data)
75{
76 ide_hwif_t *hwif = (ide_hwif_t *) data;
77 int len;
78
79 page[0] = hwif->channel ? '1' : '0';
80 page[1] = '\n';
81 len = 2;
441e92da 82 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1da177e4
LT
83}
84
85static int proc_ide_read_identify
86 (char *page, char **start, off_t off, int count, int *eof, void *data)
87{
88 ide_drive_t *drive = (ide_drive_t *)data;
89 int len = 0, i = 0;
90 int err = 0;
91
92 len = sprintf(page, "\n");
93
94 if (drive) {
7fa897b9 95 __le16 *val = (__le16 *)page;
1da177e4
LT
96
97 err = taskfile_lib_get_identify(drive, page);
98 if (!err) {
151a6701
BZ
99 char *out = (char *)page + SECTOR_SIZE;
100
1da177e4
LT
101 page = out;
102 do {
103 out += sprintf(out, "%04x%c",
7fa897b9 104 le16_to_cpup(val), (++i & 7) ? ' ' : '\n');
1da177e4 105 val += 1;
151a6701 106 } while (i < SECTOR_SIZE / 2);
1da177e4
LT
107 len = out - page;
108 }
109 }
441e92da 110 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1da177e4
LT
111}
112
7662d046 113/**
8185d5aa
BZ
114 * ide_find_setting - find a specific setting
115 * @st: setting table pointer
7662d046 116 * @name: setting name
7662d046 117 *
8185d5aa 118 * Scan's the setting table for a matching entry and returns
7662d046
BZ
119 * this or NULL if no entry is found. The caller must hold the
120 * setting semaphore
121 */
122
92f1f8fd
EO
123static
124const struct ide_proc_devset *ide_find_setting(const struct ide_proc_devset *st,
125 char *name)
7662d046 126{
92f1f8fd
EO
127 while (st->name) {
128 if (strcmp(st->name, name) == 0)
7662d046 129 break;
8185d5aa 130 st++;
7662d046 131 }
92f1f8fd 132 return st->name ? st : NULL;
7662d046
BZ
133}
134
135/**
136 * ide_read_setting - read an IDE setting
137 * @drive: drive to read from
138 * @setting: drive setting
139 *
140 * Read a drive setting and return the value. The caller
f9383c42 141 * must hold the ide_setting_mtx when making this call.
7662d046
BZ
142 *
143 * BUGS: the data return and error are the same return value
144 * so an error -EINVAL and true return of the same value cannot
145 * be told apart
146 */
147
8185d5aa 148static int ide_read_setting(ide_drive_t *drive,
92f1f8fd 149 const struct ide_proc_devset *setting)
7662d046 150{
92f1f8fd 151 const struct ide_devset *ds = setting->setting;
8185d5aa
BZ
152 int val = -EINVAL;
153
1f473e9c 154 if (ds->get)
92f1f8fd 155 val = ds->get(drive);
8185d5aa 156
7662d046
BZ
157 return val;
158}
159
160/**
161 * ide_write_setting - read an IDE setting
162 * @drive: drive to read from
163 * @setting: drive setting
164 * @val: value
165 *
166 * Write a drive setting if it is possible. The caller
f9383c42 167 * must hold the ide_setting_mtx when making this call.
7662d046
BZ
168 *
169 * BUGS: the data return and error are the same return value
170 * so an error -EINVAL and true return of the same value cannot
171 * be told apart
172 *
173 * FIXME: This should be changed to enqueue a special request
174 * to the driver to change settings, and then wait on a sema for completion.
175 * The current scheme of polling is kludgy, though safe enough.
176 */
177
8185d5aa 178static int ide_write_setting(ide_drive_t *drive,
92f1f8fd 179 const struct ide_proc_devset *setting, int val)
7662d046 180{
92f1f8fd
EO
181 const struct ide_devset *ds = setting->setting;
182
7662d046
BZ
183 if (!capable(CAP_SYS_ADMIN))
184 return -EACCES;
92f1f8fd 185 if (!ds->set)
7662d046 186 return -EPERM;
92f1f8fd
EO
187 if ((ds->flags & DS_SYNC)
188 && (val < setting->min || val > setting->max))
7662d046 189 return -EINVAL;
92f1f8fd 190 return ide_devset_execute(drive, ds, val);
7662d046
BZ
191}
192
92f1f8fd 193ide_devset_get(xfer_rate, current_speed);
8185d5aa 194
7662d046
BZ
195static int set_xfer_rate (ide_drive_t *drive, int arg)
196{
22aa4b32 197 struct ide_cmd cmd;
7662d046 198
3b2a5c71 199 if (arg < XFER_PIO_0 || arg > XFER_UDMA_6)
7662d046
BZ
200 return -EINVAL;
201
22aa4b32
BZ
202 memset(&cmd, 0, sizeof(cmd));
203 cmd.tf.command = ATA_CMD_SET_FEATURES;
204 cmd.tf.feature = SETFEATURES_XFER;
205 cmd.tf.nsect = (u8)arg;
60f85019
SS
206 cmd.valid.out.tf = IDE_VALID_FEATURE | IDE_VALID_NSECT;
207 cmd.valid.in.tf = IDE_VALID_NSECT;
665d66e8 208 cmd.tf_flags = IDE_TFLAG_SET_XFER;
34f5d5ae 209
665d66e8 210 return ide_no_data_taskfile(drive, &cmd);
7662d046
BZ
211}
212
92f1f8fd
EO
213ide_devset_rw(current_speed, xfer_rate);
214ide_devset_rw_field(init_speed, init_speed);
97100fc8 215ide_devset_rw_flag(nice1, IDE_DFLAG_NICE1);
92f1f8fd
EO
216ide_devset_rw_field(number, dn);
217
218static const struct ide_proc_devset ide_generic_settings[] = {
219 IDE_PROC_DEVSET(current_speed, 0, 70),
220 IDE_PROC_DEVSET(init_speed, 0, 70),
221 IDE_PROC_DEVSET(io_32bit, 0, 1 + (SUPPORT_VLB_SYNC << 1)),
222 IDE_PROC_DEVSET(keepsettings, 0, 1),
223 IDE_PROC_DEVSET(nice1, 0, 1),
224 IDE_PROC_DEVSET(number, 0, 3),
225 IDE_PROC_DEVSET(pio_mode, 0, 255),
226 IDE_PROC_DEVSET(unmaskirq, 0, 1),
227 IDE_PROC_DEVSET(using_dma, 0, 1),
71bfc7a7 228 { NULL },
8185d5aa 229};
7662d046 230
1da177e4
LT
231static void proc_ide_settings_warn(void)
232{
441e92da 233 static int warned;
1da177e4
LT
234
235 if (warned)
236 return;
237
238 printk(KERN_WARNING "Warning: /proc/ide/hd?/settings interface is "
239 "obsolete, and will be removed soon!\n");
240 warned = 1;
241}
242
243static int proc_ide_read_settings
244 (char *page, char **start, off_t off, int count, int *eof, void *data)
245{
92f1f8fd
EO
246 const struct ide_proc_devset *setting, *g, *d;
247 const struct ide_devset *ds;
1da177e4 248 ide_drive_t *drive = (ide_drive_t *) data;
1da177e4
LT
249 char *out = page;
250 int len, rc, mul_factor, div_factor;
251
252 proc_ide_settings_warn();
253
f9383c42 254 mutex_lock(&ide_setting_mtx);
8185d5aa
BZ
255 g = ide_generic_settings;
256 d = drive->settings;
1da177e4
LT
257 out += sprintf(out, "name\t\t\tvalue\t\tmin\t\tmax\t\tmode\n");
258 out += sprintf(out, "----\t\t\t-----\t\t---\t\t---\t\t----\n");
92f1f8fd 259 while (g->name || (d && d->name)) {
8185d5aa 260 /* read settings in the alphabetical order */
92f1f8fd
EO
261 if (g->name && d && d->name) {
262 if (strcmp(d->name, g->name) < 0)
263 setting = d++;
8185d5aa 264 else
92f1f8fd
EO
265 setting = g++;
266 } else if (d && d->name) {
267 setting = d++;
8185d5aa 268 } else
92f1f8fd 269 setting = g++;
8185d5aa
BZ
270 mul_factor = setting->mulf ? setting->mulf(drive) : 1;
271 div_factor = setting->divf ? setting->divf(drive) : 1;
1da177e4 272 out += sprintf(out, "%-24s", setting->name);
441e92da
PC
273 rc = ide_read_setting(drive, setting);
274 if (rc >= 0)
1da177e4
LT
275 out += sprintf(out, "%-16d", rc * mul_factor / div_factor);
276 else
277 out += sprintf(out, "%-16s", "write-only");
278 out += sprintf(out, "%-16d%-16d", (setting->min * mul_factor + div_factor - 1) / div_factor, setting->max * mul_factor / div_factor);
92f1f8fd
EO
279 ds = setting->setting;
280 if (ds->get)
1da177e4 281 out += sprintf(out, "r");
92f1f8fd 282 if (ds->set)
1da177e4
LT
283 out += sprintf(out, "w");
284 out += sprintf(out, "\n");
1da177e4
LT
285 }
286 len = out - page;
f9383c42 287 mutex_unlock(&ide_setting_mtx);
441e92da 288 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1da177e4
LT
289}
290
291#define MAX_LEN 30
292
293static int proc_ide_write_settings(struct file *file, const char __user *buffer,
294 unsigned long count, void *data)
295{
296 ide_drive_t *drive = (ide_drive_t *) data;
297 char name[MAX_LEN + 1];
8185d5aa 298 int for_real = 0, mul_factor, div_factor;
1da177e4 299 unsigned long n;
8185d5aa 300
92f1f8fd 301 const struct ide_proc_devset *setting;
1da177e4
LT
302 char *buf, *s;
303
304 if (!capable(CAP_SYS_ADMIN))
305 return -EACCES;
306
307 proc_ide_settings_warn();
308
309 if (count >= PAGE_SIZE)
310 return -EINVAL;
311
312 s = buf = (char *)__get_free_page(GFP_USER);
313 if (!buf)
314 return -ENOMEM;
315
316 if (copy_from_user(buf, buffer, count)) {
317 free_page((unsigned long)buf);
318 return -EFAULT;
319 }
320
321 buf[count] = '\0';
322
323 /*
324 * Skip over leading whitespace
325 */
326 while (count && isspace(*s)) {
327 --count;
328 ++s;
329 }
330 /*
331 * Do one full pass to verify all parameters,
332 * then do another to actually write the new settings.
333 */
334 do {
335 char *p = s;
336 n = count;
337 while (n > 0) {
338 unsigned val;
339 char *q = p;
340
341 while (n > 0 && *p != ':') {
342 --n;
343 p++;
344 }
345 if (*p != ':')
346 goto parse_error;
347 if (p - q > MAX_LEN)
348 goto parse_error;
349 memcpy(name, q, p - q);
350 name[p - q] = 0;
351
352 if (n > 0) {
353 --n;
354 p++;
355 } else
356 goto parse_error;
357
358 val = simple_strtoul(p, &q, 10);
359 n -= q - p;
360 p = q;
361 if (n > 0 && !isspace(*p))
362 goto parse_error;
363 while (n > 0 && isspace(*p)) {
364 --n;
365 ++p;
366 }
367
f9383c42 368 mutex_lock(&ide_setting_mtx);
8185d5aa
BZ
369 /* generic settings first, then driver specific ones */
370 setting = ide_find_setting(ide_generic_settings, name);
441e92da 371 if (!setting) {
8185d5aa
BZ
372 if (drive->settings)
373 setting = ide_find_setting(drive->settings, name);
374 if (!setting) {
375 mutex_unlock(&ide_setting_mtx);
376 goto parse_error;
377 }
378 }
379 if (for_real) {
380 mul_factor = setting->mulf ? setting->mulf(drive) : 1;
381 div_factor = setting->divf ? setting->divf(drive) : 1;
382 ide_write_setting(drive, setting, val * div_factor / mul_factor);
1da177e4 383 }
f9383c42 384 mutex_unlock(&ide_setting_mtx);
1da177e4
LT
385 }
386 } while (!for_real++);
387 free_page((unsigned long)buf);
388 return count;
389parse_error:
390 free_page((unsigned long)buf);
391 printk("proc_ide_write_settings(): parse error\n");
392 return -EINVAL;
393}
394
395int proc_ide_read_capacity
396 (char *page, char **start, off_t off, int count, int *eof, void *data)
397{
441e92da
PC
398 int len = sprintf(page, "%llu\n", (long long)0x7fffffff);
399 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1da177e4
LT
400}
401
402EXPORT_SYMBOL_GPL(proc_ide_read_capacity);
403
404int proc_ide_read_geometry
405 (char *page, char **start, off_t off, int count, int *eof, void *data)
406{
407 ide_drive_t *drive = (ide_drive_t *) data;
408 char *out = page;
409 int len;
410
441e92da 411 out += sprintf(out, "physical %d/%d/%d\n",
1da177e4 412 drive->cyl, drive->head, drive->sect);
441e92da 413 out += sprintf(out, "logical %d/%d/%d\n",
1da177e4
LT
414 drive->bios_cyl, drive->bios_head, drive->bios_sect);
415
416 len = out - page;
441e92da 417 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1da177e4
LT
418}
419
420EXPORT_SYMBOL(proc_ide_read_geometry);
421
422static int proc_ide_read_dmodel
423 (char *page, char **start, off_t off, int count, int *eof, void *data)
424{
425 ide_drive_t *drive = (ide_drive_t *) data;
4dde4492 426 char *m = (char *)&drive->id[ATA_ID_PROD];
1da177e4
LT
427 int len;
428
4dde4492 429 len = sprintf(page, "%.40s\n", m[0] ? m : "(none)");
441e92da 430 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1da177e4
LT
431}
432
433static int proc_ide_read_driver
434 (char *page, char **start, off_t off, int count, int *eof, void *data)
435{
7f3c868b
BZ
436 ide_drive_t *drive = (ide_drive_t *)data;
437 struct device *dev = &drive->gendev;
438 struct ide_driver *ide_drv;
439 int len;
1da177e4 440
8604affd 441 if (dev->driver) {
7f3c868b 442 ide_drv = to_ide_driver(dev->driver);
1da177e4 443 len = sprintf(page, "%s version %s\n",
8604affd 444 dev->driver->name, ide_drv->version);
1da177e4
LT
445 } else
446 len = sprintf(page, "ide-default version 0.9.newide\n");
441e92da 447 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1da177e4
LT
448}
449
8604affd
BZ
450static int ide_replace_subdriver(ide_drive_t *drive, const char *driver)
451{
452 struct device *dev = &drive->gendev;
453 int ret = 1;
349ae23f 454 int err;
8604affd 455
8604affd
BZ
456 device_release_driver(dev);
457 /* FIXME: device can still be in use by previous driver */
458 strlcpy(drive->driver_req, driver, sizeof(drive->driver_req));
349ae23f
RD
459 err = device_attach(dev);
460 if (err < 0)
461 printk(KERN_WARNING "IDE: %s: device_attach error: %d\n",
eb63963a 462 __func__, err);
8604affd 463 drive->driver_req[0] = 0;
349ae23f
RD
464 if (dev->driver == NULL) {
465 err = device_attach(dev);
466 if (err < 0)
467 printk(KERN_WARNING
468 "IDE: %s: device_attach(2) error: %d\n",
eb63963a 469 __func__, err);
349ae23f 470 }
8604affd
BZ
471 if (dev->driver && !strcmp(dev->driver->name, driver))
472 ret = 0;
8604affd
BZ
473
474 return ret;
475}
476
1da177e4
LT
477static int proc_ide_write_driver
478 (struct file *file, const char __user *buffer, unsigned long count, void *data)
479{
480 ide_drive_t *drive = (ide_drive_t *) data;
481 char name[32];
482
483 if (!capable(CAP_SYS_ADMIN))
484 return -EACCES;
485 if (count > 31)
486 count = 31;
487 if (copy_from_user(name, buffer, count))
488 return -EFAULT;
489 name[count] = '\0';
490 if (ide_replace_subdriver(drive, name))
491 return -EINVAL;
492 return count;
493}
494
495static int proc_ide_read_media
496 (char *page, char **start, off_t off, int count, int *eof, void *data)
497{
498 ide_drive_t *drive = (ide_drive_t *) data;
499 const char *media;
500 int len;
501
502 switch (drive->media) {
441e92da
PC
503 case ide_disk: media = "disk\n"; break;
504 case ide_cdrom: media = "cdrom\n"; break;
505 case ide_tape: media = "tape\n"; break;
506 case ide_floppy: media = "floppy\n"; break;
507 case ide_optical: media = "optical\n"; break;
508 default: media = "UNKNOWN\n"; break;
1da177e4 509 }
441e92da 510 strcpy(page, media);
1da177e4 511 len = strlen(media);
441e92da 512 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
1da177e4
LT
513}
514
515static ide_proc_entry_t generic_drive_entries[] = {
441e92da
PC
516 { "driver", S_IFREG|S_IRUGO, proc_ide_read_driver,
517 proc_ide_write_driver },
518 { "identify", S_IFREG|S_IRUSR, proc_ide_read_identify, NULL },
519 { "media", S_IFREG|S_IRUGO, proc_ide_read_media, NULL },
520 { "model", S_IFREG|S_IRUGO, proc_ide_read_dmodel, NULL },
521 { "settings", S_IFREG|S_IRUSR|S_IWUSR, proc_ide_read_settings,
522 proc_ide_write_settings },
1da177e4
LT
523 { NULL, 0, NULL, NULL }
524};
525
7662d046 526static void ide_add_proc_entries(struct proc_dir_entry *dir, ide_proc_entry_t *p, void *data)
1da177e4
LT
527{
528 struct proc_dir_entry *ent;
529
530 if (!dir || !p)
531 return;
532 while (p->name != NULL) {
533 ent = create_proc_entry(p->name, p->mode, dir);
534 if (!ent) return;
1da177e4
LT
535 ent->data = data;
536 ent->read_proc = p->read_proc;
537 ent->write_proc = p->write_proc;
538 p++;
539 }
540}
541
7662d046 542static void ide_remove_proc_entries(struct proc_dir_entry *dir, ide_proc_entry_t *p)
1da177e4
LT
543{
544 if (!dir || !p)
545 return;
546 while (p->name != NULL) {
547 remove_proc_entry(p->name, dir);
548 p++;
549 }
550}
551
7f3c868b 552void ide_proc_register_driver(ide_drive_t *drive, struct ide_driver *driver)
7662d046 553{
8185d5aa 554 mutex_lock(&ide_setting_mtx);
79cb3803 555 drive->settings = driver->proc_devsets(drive);
8185d5aa
BZ
556 mutex_unlock(&ide_setting_mtx);
557
79cb3803 558 ide_add_proc_entries(drive->proc, driver->proc_entries(drive), drive);
7662d046
BZ
559}
560
561EXPORT_SYMBOL(ide_proc_register_driver);
562
563/**
564 * ide_proc_unregister_driver - remove driver specific data
565 * @drive: drive
566 * @driver: driver
567 *
568 * Clean up the driver specific /proc files and IDE settings
569 * for a given drive.
570 *
1f473e9c 571 * Takes ide_setting_mtx.
7662d046
BZ
572 */
573
7f3c868b 574void ide_proc_unregister_driver(ide_drive_t *drive, struct ide_driver *driver)
7662d046 575{
79cb3803 576 ide_remove_proc_entries(drive->proc, driver->proc_entries(drive));
7662d046 577
f9383c42 578 mutex_lock(&ide_setting_mtx);
7662d046 579 /*
1f473e9c
BZ
580 * ide_setting_mtx protects both the settings list and the use
581 * of settings (we cannot take a setting out that is being used).
7662d046 582 */
8185d5aa 583 drive->settings = NULL;
f9383c42 584 mutex_unlock(&ide_setting_mtx);
7662d046 585}
7662d046
BZ
586EXPORT_SYMBOL(ide_proc_unregister_driver);
587
d9270a3f 588void ide_proc_port_register_devices(ide_hwif_t *hwif)
1da177e4 589{
1da177e4
LT
590 struct proc_dir_entry *ent;
591 struct proc_dir_entry *parent = hwif->proc;
2bd24a1c 592 ide_drive_t *drive;
1da177e4 593 char name[64];
2bd24a1c 594 int i;
1da177e4 595
2bd24a1c 596 ide_port_for_each_dev(i, drive, hwif) {
1902a253 597 if ((drive->dev_flags & IDE_DFLAG_PRESENT) == 0)
1da177e4
LT
598 continue;
599
600 drive->proc = proc_mkdir(drive->name, parent);
601 if (drive->proc)
602 ide_add_proc_entries(drive->proc, generic_drive_entries, drive);
441e92da 603 sprintf(name, "ide%d/%s", (drive->name[2]-'a')/2, drive->name);
1da177e4
LT
604 ent = proc_symlink(drive->name, proc_ide_root, name);
605 if (!ent) return;
606 }
607}
608
5b0c4b30 609void ide_proc_unregister_device(ide_drive_t *drive)
1da177e4
LT
610{
611 if (drive->proc) {
612 ide_remove_proc_entries(drive->proc, generic_drive_entries);
613 remove_proc_entry(drive->name, proc_ide_root);
5b0c4b30 614 remove_proc_entry(drive->name, drive->hwif->proc);
1da177e4
LT
615 drive->proc = NULL;
616 }
617}
618
1da177e4
LT
619static ide_proc_entry_t hwif_entries[] = {
620 { "channel", S_IFREG|S_IRUGO, proc_ide_read_channel, NULL },
621 { "mate", S_IFREG|S_IRUGO, proc_ide_read_mate, NULL },
622 { "model", S_IFREG|S_IRUGO, proc_ide_read_imodel, NULL },
623 { NULL, 0, NULL, NULL }
624};
625
5cbf79cd 626void ide_proc_register_port(ide_hwif_t *hwif)
1da177e4 627{
5cbf79cd
BZ
628 if (!hwif->proc) {
629 hwif->proc = proc_mkdir(hwif->name, proc_ide_root);
1da177e4 630
5cbf79cd
BZ
631 if (!hwif->proc)
632 return;
633
634 ide_add_proc_entries(hwif->proc, hwif_entries, hwif);
1da177e4
LT
635 }
636}
637
5cbf79cd 638void ide_proc_unregister_port(ide_hwif_t *hwif)
1da177e4
LT
639{
640 if (hwif->proc) {
1da177e4
LT
641 ide_remove_proc_entries(hwif->proc, hwif_entries);
642 remove_proc_entry(hwif->name, proc_ide_root);
643 hwif->proc = NULL;
644 }
645}
646
8604affd
BZ
647static int proc_print_driver(struct device_driver *drv, void *data)
648{
7f3c868b 649 struct ide_driver *ide_drv = to_ide_driver(drv);
8604affd
BZ
650 struct seq_file *s = data;
651
652 seq_printf(s, "%s version %s\n", drv->name, ide_drv->version);
653
654 return 0;
655}
656
657static int ide_drivers_show(struct seq_file *s, void *p)
658{
349ae23f
RD
659 int err;
660
661 err = bus_for_each_drv(&ide_bus_type, NULL, s, proc_print_driver);
662 if (err < 0)
663 printk(KERN_WARNING "IDE: %s: bus_for_each_drv error: %d\n",
eb63963a 664 __func__, err);
8604affd
BZ
665 return 0;
666}
667
1da177e4
LT
668static int ide_drivers_open(struct inode *inode, struct file *file)
669{
8604affd 670 return single_open(file, &ide_drivers_show, NULL);
1da177e4 671}
8604affd 672
2b8693c0 673static const struct file_operations ide_drivers_operations = {
c7705f34 674 .owner = THIS_MODULE,
1da177e4
LT
675 .open = ide_drivers_open,
676 .read = seq_read,
677 .llseek = seq_lseek,
8604affd 678 .release = single_release,
1da177e4
LT
679};
680
681void proc_ide_create(void)
682{
5cbf79cd
BZ
683 proc_ide_root = proc_mkdir("ide", NULL);
684
1da177e4
LT
685 if (!proc_ide_root)
686 return;
687
c7705f34 688 proc_create("drivers", 0, proc_ide_root, &ide_drivers_operations);
1da177e4
LT
689}
690
691void proc_ide_destroy(void)
692{
643bdc6f 693 remove_proc_entry("drivers", proc_ide_root);
1da177e4
LT
694 remove_proc_entry("ide", NULL);
695}