2 * Copyright (C) 1997-1998 Mark Lord
3 * Copyright (C) 2003 Red Hat
5 * Some code was moved here from ide.c, see it for original copyrights.
9 * This is the /proc/ide/ filesystem implementation.
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
17 #include <linux/module.h>
19 #include <asm/uaccess.h>
20 #include <linux/errno.h>
21 #include <linux/proc_fs.h>
22 #include <linux/stat.h>
24 #include <linux/pci.h>
25 #include <linux/ctype.h>
26 #include <linux/ide.h>
27 #include <linux/seq_file.h>
31 static struct proc_dir_entry *proc_ide_root;
33 static int proc_ide_read_imodel
34 (char *page, char **start, off_t off, int count, int *eof, void *data)
36 ide_hwif_t *hwif = (ide_hwif_t *) data;
40 switch (hwif->chipset) {
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;
49 case ide_rz1000: name = "rz1000"; break;
50 case ide_trm290: name = "trm290"; break;
51 case ide_cy82c693: name = "cy82c693"; break;
52 case ide_4drives: name = "4drives"; break;
53 case ide_pmac: name = "mac-io"; break;
54 case ide_au1xxx: name = "au1xxx"; break;
55 case ide_palm3710: name = "palm3710"; break;
56 case ide_acorn: name = "acorn"; break;
57 default: name = "(unknown)"; break;
59 len = sprintf(page, "%s\n", name);
60 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
63 static int proc_ide_read_mate
64 (char *page, char **start, off_t off, int count, int *eof, void *data)
66 ide_hwif_t *hwif = (ide_hwif_t *) data;
69 if (hwif && hwif->mate)
70 len = sprintf(page, "%s\n", hwif->mate->name);
72 len = sprintf(page, "(none)\n");
73 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
76 static int proc_ide_read_channel
77 (char *page, char **start, off_t off, int count, int *eof, void *data)
79 ide_hwif_t *hwif = (ide_hwif_t *) data;
82 page[0] = hwif->channel ? '1' : '0';
85 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
88 static int proc_ide_read_identify
89 (char *page, char **start, off_t off, int count, int *eof, void *data)
91 ide_drive_t *drive = (ide_drive_t *)data;
95 len = sprintf(page, "\n");
98 __le16 *val = (__le16 *)page;
100 err = taskfile_lib_get_identify(drive, page);
102 char *out = (char *)page + SECTOR_SIZE;
106 out += sprintf(out, "%04x%c",
107 le16_to_cpup(val), (++i & 7) ? ' ' : '\n');
109 } while (i < SECTOR_SIZE / 2);
113 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
117 * ide_find_setting - find a specific setting
118 * @st: setting table pointer
119 * @name: setting name
121 * Scan's the setting table for a matching entry and returns
122 * this or NULL if no entry is found. The caller must hold the
127 const struct ide_proc_devset *ide_find_setting(const struct ide_proc_devset *st,
131 if (strcmp(st->name, name) == 0)
135 return st->name ? st : NULL;
139 * ide_read_setting - read an IDE setting
140 * @drive: drive to read from
141 * @setting: drive setting
143 * Read a drive setting and return the value. The caller
144 * must hold the ide_setting_mtx when making this call.
146 * BUGS: the data return and error are the same return value
147 * so an error -EINVAL and true return of the same value cannot
151 static int ide_read_setting(ide_drive_t *drive,
152 const struct ide_proc_devset *setting)
154 const struct ide_devset *ds = setting->setting;
158 val = ds->get(drive);
164 * ide_write_setting - read an IDE setting
165 * @drive: drive to read from
166 * @setting: drive setting
169 * Write a drive setting if it is possible. The caller
170 * must hold the ide_setting_mtx when making this call.
172 * BUGS: the data return and error are the same return value
173 * so an error -EINVAL and true return of the same value cannot
176 * FIXME: This should be changed to enqueue a special request
177 * to the driver to change settings, and then wait on a sema for completion.
178 * The current scheme of polling is kludgy, though safe enough.
181 static int ide_write_setting(ide_drive_t *drive,
182 const struct ide_proc_devset *setting, int val)
184 const struct ide_devset *ds = setting->setting;
186 if (!capable(CAP_SYS_ADMIN))
190 if ((ds->flags & DS_SYNC)
191 && (val < setting->min || val > setting->max))
193 return ide_devset_execute(drive, ds, val);
196 ide_devset_get(xfer_rate, current_speed);
198 static int set_xfer_rate (ide_drive_t *drive, int arg)
203 if (arg < XFER_PIO_0 || arg > XFER_UDMA_6)
206 memset(&task, 0, sizeof(task));
207 task.tf.command = ATA_CMD_SET_FEATURES;
208 task.tf.feature = SETFEATURES_XFER;
209 task.tf.nsect = (u8)arg;
210 task.tf_flags = IDE_TFLAG_OUT_FEATURE | IDE_TFLAG_OUT_NSECT |
213 err = ide_no_data_taskfile(drive, &task);
216 ide_set_xfer_rate(drive, (u8) arg);
217 ide_driveid_update(drive);
222 ide_devset_rw(current_speed, xfer_rate);
223 ide_devset_rw_field(init_speed, init_speed);
224 ide_devset_rw_flag(nice1, IDE_DFLAG_NICE1);
225 ide_devset_rw_field(number, dn);
227 static const struct ide_proc_devset ide_generic_settings[] = {
228 IDE_PROC_DEVSET(current_speed, 0, 70),
229 IDE_PROC_DEVSET(init_speed, 0, 70),
230 IDE_PROC_DEVSET(io_32bit, 0, 1 + (SUPPORT_VLB_SYNC << 1)),
231 IDE_PROC_DEVSET(keepsettings, 0, 1),
232 IDE_PROC_DEVSET(nice1, 0, 1),
233 IDE_PROC_DEVSET(number, 0, 3),
234 IDE_PROC_DEVSET(pio_mode, 0, 255),
235 IDE_PROC_DEVSET(unmaskirq, 0, 1),
236 IDE_PROC_DEVSET(using_dma, 0, 1),
240 static void proc_ide_settings_warn(void)
247 printk(KERN_WARNING "Warning: /proc/ide/hd?/settings interface is "
248 "obsolete, and will be removed soon!\n");
252 static int proc_ide_read_settings
253 (char *page, char **start, off_t off, int count, int *eof, void *data)
255 const struct ide_proc_devset *setting, *g, *d;
256 const struct ide_devset *ds;
257 ide_drive_t *drive = (ide_drive_t *) data;
259 int len, rc, mul_factor, div_factor;
261 proc_ide_settings_warn();
263 mutex_lock(&ide_setting_mtx);
264 g = ide_generic_settings;
266 out += sprintf(out, "name\t\t\tvalue\t\tmin\t\tmax\t\tmode\n");
267 out += sprintf(out, "----\t\t\t-----\t\t---\t\t---\t\t----\n");
268 while (g->name || (d && d->name)) {
269 /* read settings in the alphabetical order */
270 if (g->name && d && d->name) {
271 if (strcmp(d->name, g->name) < 0)
275 } else if (d && d->name) {
279 mul_factor = setting->mulf ? setting->mulf(drive) : 1;
280 div_factor = setting->divf ? setting->divf(drive) : 1;
281 out += sprintf(out, "%-24s", setting->name);
282 rc = ide_read_setting(drive, setting);
284 out += sprintf(out, "%-16d", rc * mul_factor / div_factor);
286 out += sprintf(out, "%-16s", "write-only");
287 out += sprintf(out, "%-16d%-16d", (setting->min * mul_factor + div_factor - 1) / div_factor, setting->max * mul_factor / div_factor);
288 ds = setting->setting;
290 out += sprintf(out, "r");
292 out += sprintf(out, "w");
293 out += sprintf(out, "\n");
296 mutex_unlock(&ide_setting_mtx);
297 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
302 static int proc_ide_write_settings(struct file *file, const char __user *buffer,
303 unsigned long count, void *data)
305 ide_drive_t *drive = (ide_drive_t *) data;
306 char name[MAX_LEN + 1];
307 int for_real = 0, mul_factor, div_factor;
310 const struct ide_proc_devset *setting;
313 if (!capable(CAP_SYS_ADMIN))
316 proc_ide_settings_warn();
318 if (count >= PAGE_SIZE)
321 s = buf = (char *)__get_free_page(GFP_USER);
325 if (copy_from_user(buf, buffer, count)) {
326 free_page((unsigned long)buf);
333 * Skip over leading whitespace
335 while (count && isspace(*s)) {
340 * Do one full pass to verify all parameters,
341 * then do another to actually write the new settings.
350 while (n > 0 && *p != ':') {
358 memcpy(name, q, p - q);
367 val = simple_strtoul(p, &q, 10);
370 if (n > 0 && !isspace(*p))
372 while (n > 0 && isspace(*p)) {
377 mutex_lock(&ide_setting_mtx);
378 /* generic settings first, then driver specific ones */
379 setting = ide_find_setting(ide_generic_settings, name);
382 setting = ide_find_setting(drive->settings, name);
384 mutex_unlock(&ide_setting_mtx);
389 mul_factor = setting->mulf ? setting->mulf(drive) : 1;
390 div_factor = setting->divf ? setting->divf(drive) : 1;
391 ide_write_setting(drive, setting, val * div_factor / mul_factor);
393 mutex_unlock(&ide_setting_mtx);
395 } while (!for_real++);
396 free_page((unsigned long)buf);
399 free_page((unsigned long)buf);
400 printk("proc_ide_write_settings(): parse error\n");
404 int proc_ide_read_capacity
405 (char *page, char **start, off_t off, int count, int *eof, void *data)
407 int len = sprintf(page, "%llu\n", (long long)0x7fffffff);
408 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
411 EXPORT_SYMBOL_GPL(proc_ide_read_capacity);
413 int proc_ide_read_geometry
414 (char *page, char **start, off_t off, int count, int *eof, void *data)
416 ide_drive_t *drive = (ide_drive_t *) data;
420 out += sprintf(out, "physical %d/%d/%d\n",
421 drive->cyl, drive->head, drive->sect);
422 out += sprintf(out, "logical %d/%d/%d\n",
423 drive->bios_cyl, drive->bios_head, drive->bios_sect);
426 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
429 EXPORT_SYMBOL(proc_ide_read_geometry);
431 static int proc_ide_read_dmodel
432 (char *page, char **start, off_t off, int count, int *eof, void *data)
434 ide_drive_t *drive = (ide_drive_t *) data;
435 char *m = (char *)&drive->id[ATA_ID_PROD];
438 len = sprintf(page, "%.40s\n", m[0] ? m : "(none)");
439 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
442 static int proc_ide_read_driver
443 (char *page, char **start, off_t off, int count, int *eof, void *data)
445 ide_drive_t *drive = (ide_drive_t *) data;
446 struct device *dev = &drive->gendev;
447 ide_driver_t *ide_drv;
451 ide_drv = container_of(dev->driver, ide_driver_t, gen_driver);
452 len = sprintf(page, "%s version %s\n",
453 dev->driver->name, ide_drv->version);
455 len = sprintf(page, "ide-default version 0.9.newide\n");
456 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
459 static int ide_replace_subdriver(ide_drive_t *drive, const char *driver)
461 struct device *dev = &drive->gendev;
465 device_release_driver(dev);
466 /* FIXME: device can still be in use by previous driver */
467 strlcpy(drive->driver_req, driver, sizeof(drive->driver_req));
468 err = device_attach(dev);
470 printk(KERN_WARNING "IDE: %s: device_attach error: %d\n",
472 drive->driver_req[0] = 0;
473 if (dev->driver == NULL) {
474 err = device_attach(dev);
477 "IDE: %s: device_attach(2) error: %d\n",
480 if (dev->driver && !strcmp(dev->driver->name, driver))
486 static int proc_ide_write_driver
487 (struct file *file, const char __user *buffer, unsigned long count, void *data)
489 ide_drive_t *drive = (ide_drive_t *) data;
492 if (!capable(CAP_SYS_ADMIN))
496 if (copy_from_user(name, buffer, count))
499 if (ide_replace_subdriver(drive, name))
504 static int proc_ide_read_media
505 (char *page, char **start, off_t off, int count, int *eof, void *data)
507 ide_drive_t *drive = (ide_drive_t *) data;
511 switch (drive->media) {
512 case ide_disk: media = "disk\n"; break;
513 case ide_cdrom: media = "cdrom\n"; break;
514 case ide_tape: media = "tape\n"; break;
515 case ide_floppy: media = "floppy\n"; break;
516 case ide_optical: media = "optical\n"; break;
517 default: media = "UNKNOWN\n"; break;
521 PROC_IDE_READ_RETURN(page, start, off, count, eof, len);
524 static ide_proc_entry_t generic_drive_entries[] = {
525 { "driver", S_IFREG|S_IRUGO, proc_ide_read_driver,
526 proc_ide_write_driver },
527 { "identify", S_IFREG|S_IRUSR, proc_ide_read_identify, NULL },
528 { "media", S_IFREG|S_IRUGO, proc_ide_read_media, NULL },
529 { "model", S_IFREG|S_IRUGO, proc_ide_read_dmodel, NULL },
530 { "settings", S_IFREG|S_IRUSR|S_IWUSR, proc_ide_read_settings,
531 proc_ide_write_settings },
532 { NULL, 0, NULL, NULL }
535 static void ide_add_proc_entries(struct proc_dir_entry *dir, ide_proc_entry_t *p, void *data)
537 struct proc_dir_entry *ent;
541 while (p->name != NULL) {
542 ent = create_proc_entry(p->name, p->mode, dir);
545 ent->read_proc = p->read_proc;
546 ent->write_proc = p->write_proc;
551 static void ide_remove_proc_entries(struct proc_dir_entry *dir, ide_proc_entry_t *p)
555 while (p->name != NULL) {
556 remove_proc_entry(p->name, dir);
561 void ide_proc_register_driver(ide_drive_t *drive, ide_driver_t *driver)
563 mutex_lock(&ide_setting_mtx);
564 drive->settings = driver->proc_devsets(drive);
565 mutex_unlock(&ide_setting_mtx);
567 ide_add_proc_entries(drive->proc, driver->proc_entries(drive), drive);
570 EXPORT_SYMBOL(ide_proc_register_driver);
573 * ide_proc_unregister_driver - remove driver specific data
577 * Clean up the driver specific /proc files and IDE settings
580 * Takes ide_setting_mtx.
583 void ide_proc_unregister_driver(ide_drive_t *drive, ide_driver_t *driver)
585 ide_remove_proc_entries(drive->proc, driver->proc_entries(drive));
587 mutex_lock(&ide_setting_mtx);
589 * ide_setting_mtx protects both the settings list and the use
590 * of settings (we cannot take a setting out that is being used).
592 drive->settings = NULL;
593 mutex_unlock(&ide_setting_mtx);
595 EXPORT_SYMBOL(ide_proc_unregister_driver);
597 void ide_proc_port_register_devices(ide_hwif_t *hwif)
600 struct proc_dir_entry *ent;
601 struct proc_dir_entry *parent = hwif->proc;
604 for (d = 0; d < MAX_DRIVES; d++) {
605 ide_drive_t *drive = &hwif->drives[d];
607 if ((drive->dev_flags & IDE_DFLAG_PRESENT) == 0 || drive->proc)
610 drive->proc = proc_mkdir(drive->name, parent);
612 ide_add_proc_entries(drive->proc, generic_drive_entries, drive);
613 sprintf(name, "ide%d/%s", (drive->name[2]-'a')/2, drive->name);
614 ent = proc_symlink(drive->name, proc_ide_root, name);
619 void ide_proc_unregister_device(ide_drive_t *drive)
622 ide_remove_proc_entries(drive->proc, generic_drive_entries);
623 remove_proc_entry(drive->name, proc_ide_root);
624 remove_proc_entry(drive->name, drive->hwif->proc);
629 static ide_proc_entry_t hwif_entries[] = {
630 { "channel", S_IFREG|S_IRUGO, proc_ide_read_channel, NULL },
631 { "mate", S_IFREG|S_IRUGO, proc_ide_read_mate, NULL },
632 { "model", S_IFREG|S_IRUGO, proc_ide_read_imodel, NULL },
633 { NULL, 0, NULL, NULL }
636 void ide_proc_register_port(ide_hwif_t *hwif)
639 hwif->proc = proc_mkdir(hwif->name, proc_ide_root);
644 ide_add_proc_entries(hwif->proc, hwif_entries, hwif);
648 void ide_proc_unregister_port(ide_hwif_t *hwif)
651 ide_remove_proc_entries(hwif->proc, hwif_entries);
652 remove_proc_entry(hwif->name, proc_ide_root);
657 static int proc_print_driver(struct device_driver *drv, void *data)
659 ide_driver_t *ide_drv = container_of(drv, ide_driver_t, gen_driver);
660 struct seq_file *s = data;
662 seq_printf(s, "%s version %s\n", drv->name, ide_drv->version);
667 static int ide_drivers_show(struct seq_file *s, void *p)
671 err = bus_for_each_drv(&ide_bus_type, NULL, s, proc_print_driver);
673 printk(KERN_WARNING "IDE: %s: bus_for_each_drv error: %d\n",
678 static int ide_drivers_open(struct inode *inode, struct file *file)
680 return single_open(file, &ide_drivers_show, NULL);
683 static const struct file_operations ide_drivers_operations = {
684 .owner = THIS_MODULE,
685 .open = ide_drivers_open,
688 .release = single_release,
691 void proc_ide_create(void)
693 proc_ide_root = proc_mkdir("ide", NULL);
698 proc_create("drivers", 0, proc_ide_root, &ide_drivers_operations);
701 void proc_ide_destroy(void)
703 remove_proc_entry("drivers", proc_ide_root);
704 remove_proc_entry("ide", NULL);