1 /* Sysctl interface for parport devices.
3 * Authors: David Campbell
4 * Tim Waugh <tim@cyberelk.demon.co.uk>
5 * Philip Blundell <philb@gnu.org>
7 * Riccardo Facchetti <fizban@tin.it>
9 * based on work by Grant Guenther <grant@torque.net>
12 * Cleaned up include files - Russell King <linux@arm.uk.linux.org>
15 #include <linux/string.h>
16 #include <linux/init.h>
17 #include <linux/module.h>
18 #include <linux/errno.h>
19 #include <linux/kernel.h>
20 #include <linux/slab.h>
21 #include <linux/parport.h>
22 #include <linux/ctype.h>
23 #include <linux/sysctl.h>
24 #include <linux/device.h>
26 #include <linux/uaccess.h>
28 #if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS)
30 #define PARPORT_MIN_TIMESLICE_VALUE 1ul
31 #define PARPORT_MAX_TIMESLICE_VALUE ((unsigned long) HZ)
32 #define PARPORT_MIN_SPINTIME_VALUE 1
33 #define PARPORT_MAX_SPINTIME_VALUE 1000
35 static int do_active_device(struct ctl_table
*table
, int write
,
36 void __user
*result
, size_t *lenp
, loff_t
*ppos
)
38 struct parport
*port
= (struct parport
*)table
->extra1
;
40 struct pardevice
*dev
;
43 if (write
) /* can't happen anyway */
51 for (dev
= port
->devices
; dev
; dev
= dev
->next
) {
52 if(dev
== port
->cad
) {
53 len
+= sprintf(buffer
, "%s\n", dev
->name
);
58 len
+= sprintf(buffer
, "%s\n", "none");
68 return copy_to_user(result
, buffer
, len
) ? -EFAULT
: 0;
71 #ifdef CONFIG_PARPORT_1284
72 static int do_autoprobe(struct ctl_table
*table
, int write
,
73 void __user
*result
, size_t *lenp
, loff_t
*ppos
)
75 struct parport_device_info
*info
= table
->extra2
;
80 if (write
) /* permissions stop this */
88 if ((str
= info
->class_name
) != NULL
)
89 len
+= sprintf (buffer
+ len
, "CLASS:%s;\n", str
);
91 if ((str
= info
->model
) != NULL
)
92 len
+= sprintf (buffer
+ len
, "MODEL:%s;\n", str
);
94 if ((str
= info
->mfr
) != NULL
)
95 len
+= sprintf (buffer
+ len
, "MANUFACTURER:%s;\n", str
);
97 if ((str
= info
->description
) != NULL
)
98 len
+= sprintf (buffer
+ len
, "DESCRIPTION:%s;\n", str
);
100 if ((str
= info
->cmdset
) != NULL
)
101 len
+= sprintf (buffer
+ len
, "COMMAND SET:%s;\n", str
);
110 return copy_to_user (result
, buffer
, len
) ? -EFAULT
: 0;
112 #endif /* IEEE1284.3 support. */
114 static int do_hardware_base_addr(struct ctl_table
*table
, int write
,
116 size_t *lenp
, loff_t
*ppos
)
118 struct parport
*port
= (struct parport
*)table
->extra1
;
127 if (write
) /* permissions prevent this anyway */
130 len
+= sprintf (buffer
, "%lu\t%lu\n", port
->base
, port
->base_hi
);
139 return copy_to_user(result
, buffer
, len
) ? -EFAULT
: 0;
142 static int do_hardware_irq(struct ctl_table
*table
, int write
,
144 size_t *lenp
, loff_t
*ppos
)
146 struct parport
*port
= (struct parport
*)table
->extra1
;
155 if (write
) /* permissions prevent this anyway */
158 len
+= sprintf (buffer
, "%d\n", port
->irq
);
167 return copy_to_user(result
, buffer
, len
) ? -EFAULT
: 0;
170 static int do_hardware_dma(struct ctl_table
*table
, int write
,
172 size_t *lenp
, loff_t
*ppos
)
174 struct parport
*port
= (struct parport
*)table
->extra1
;
183 if (write
) /* permissions prevent this anyway */
186 len
+= sprintf (buffer
, "%d\n", port
->dma
);
195 return copy_to_user(result
, buffer
, len
) ? -EFAULT
: 0;
198 static int do_hardware_modes(struct ctl_table
*table
, int write
,
200 size_t *lenp
, loff_t
*ppos
)
202 struct parport
*port
= (struct parport
*)table
->extra1
;
211 if (write
) /* permissions prevent this anyway */
215 #define printmode(x) {if(port->modes&PARPORT_MODE_##x){len+=sprintf(buffer+len,"%s%s",f?",":"",#x);f++;}}
225 buffer
[len
++] = '\n';
234 return copy_to_user(result
, buffer
, len
) ? -EFAULT
: 0;
237 #define PARPORT_PORT_DIR(CHILD) { .procname = NULL, .mode = 0555, .child = CHILD }
238 #define PARPORT_PARPORT_DIR(CHILD) { .procname = "parport", \
239 .mode = 0555, .child = CHILD }
240 #define PARPORT_DEV_DIR(CHILD) { .procname = "dev", .mode = 0555, .child = CHILD }
241 #define PARPORT_DEVICES_ROOT_DIR { .procname = "devices", \
242 .mode = 0555, .child = NULL }
244 static const unsigned long parport_min_timeslice_value
=
245 PARPORT_MIN_TIMESLICE_VALUE
;
247 static const unsigned long parport_max_timeslice_value
=
248 PARPORT_MAX_TIMESLICE_VALUE
;
250 static const int parport_min_spintime_value
=
251 PARPORT_MIN_SPINTIME_VALUE
;
253 static const int parport_max_spintime_value
=
254 PARPORT_MAX_SPINTIME_VALUE
;
257 struct parport_sysctl_table
{
258 struct ctl_table_header
*sysctl_header
;
259 struct ctl_table vars
[12];
260 struct ctl_table device_dir
[2];
261 struct ctl_table port_dir
[2];
262 struct ctl_table parport_dir
[2];
263 struct ctl_table dev_dir
[2];
266 static const struct parport_sysctl_table parport_sysctl_template
= {
267 .sysctl_header
= NULL
,
270 .procname
= "spintime",
272 .maxlen
= sizeof(int),
274 .proc_handler
= proc_dointvec_minmax
,
275 .extra1
= (void*) &parport_min_spintime_value
,
276 .extra2
= (void*) &parport_max_spintime_value
279 .procname
= "base-addr",
283 .proc_handler
= do_hardware_base_addr
290 .proc_handler
= do_hardware_irq
297 .proc_handler
= do_hardware_dma
304 .proc_handler
= do_hardware_modes
306 PARPORT_DEVICES_ROOT_DIR
,
307 #ifdef CONFIG_PARPORT_1284
309 .procname
= "autoprobe",
313 .proc_handler
= do_autoprobe
316 .procname
= "autoprobe0",
320 .proc_handler
= do_autoprobe
323 .procname
= "autoprobe1",
327 .proc_handler
= do_autoprobe
330 .procname
= "autoprobe2",
334 .proc_handler
= do_autoprobe
337 .procname
= "autoprobe3",
341 .proc_handler
= do_autoprobe
343 #endif /* IEEE 1284 support */
348 .procname
= "active",
352 .proc_handler
= do_active_device
357 PARPORT_PORT_DIR(NULL
),
361 PARPORT_PARPORT_DIR(NULL
),
365 PARPORT_DEV_DIR(NULL
),
370 struct parport_device_sysctl_table
372 struct ctl_table_header
*sysctl_header
;
373 struct ctl_table vars
[2];
374 struct ctl_table device_dir
[2];
375 struct ctl_table devices_root_dir
[2];
376 struct ctl_table port_dir
[2];
377 struct ctl_table parport_dir
[2];
378 struct ctl_table dev_dir
[2];
381 static const struct parport_device_sysctl_table
382 parport_device_sysctl_template
= {
383 .sysctl_header
= NULL
,
386 .procname
= "timeslice",
388 .maxlen
= sizeof(unsigned long),
390 .proc_handler
= proc_doulongvec_ms_jiffies_minmax
,
391 .extra1
= (void*) &parport_min_timeslice_value
,
392 .extra2
= (void*) &parport_max_timeslice_value
406 PARPORT_DEVICES_ROOT_DIR
,
410 PARPORT_PORT_DIR(NULL
),
414 PARPORT_PARPORT_DIR(NULL
),
418 PARPORT_DEV_DIR(NULL
),
423 struct parport_default_sysctl_table
425 struct ctl_table_header
*sysctl_header
;
426 struct ctl_table vars
[3];
427 struct ctl_table default_dir
[2];
428 struct ctl_table parport_dir
[2];
429 struct ctl_table dev_dir
[2];
432 static struct parport_default_sysctl_table
433 parport_default_sysctl_table
= {
434 .sysctl_header
= NULL
,
437 .procname
= "timeslice",
438 .data
= &parport_default_timeslice
,
439 .maxlen
= sizeof(parport_default_timeslice
),
441 .proc_handler
= proc_doulongvec_ms_jiffies_minmax
,
442 .extra1
= (void*) &parport_min_timeslice_value
,
443 .extra2
= (void*) &parport_max_timeslice_value
446 .procname
= "spintime",
447 .data
= &parport_default_spintime
,
448 .maxlen
= sizeof(parport_default_spintime
),
450 .proc_handler
= proc_dointvec_minmax
,
451 .extra1
= (void*) &parport_min_spintime_value
,
452 .extra2
= (void*) &parport_max_spintime_value
458 .procname
= "default",
460 .child
= parport_default_sysctl_table
.vars
465 PARPORT_PARPORT_DIR(parport_default_sysctl_table
.default_dir
),
469 PARPORT_DEV_DIR(parport_default_sysctl_table
.parport_dir
),
475 int parport_proc_register(struct parport
*port
)
477 struct parport_sysctl_table
*t
;
480 t
= kmemdup(&parport_sysctl_template
, sizeof(*t
), GFP_KERNEL
);
484 t
->device_dir
[0].extra1
= port
;
486 for (i
= 0; i
< 5; i
++)
487 t
->vars
[i
].extra1
= port
;
489 t
->vars
[0].data
= &port
->spintime
;
490 t
->vars
[5].child
= t
->device_dir
;
492 for (i
= 0; i
< 5; i
++)
493 t
->vars
[6 + i
].extra2
= &port
->probe_info
[i
];
495 t
->port_dir
[0].procname
= port
->name
;
497 t
->port_dir
[0].child
= t
->vars
;
498 t
->parport_dir
[0].child
= t
->port_dir
;
499 t
->dev_dir
[0].child
= t
->parport_dir
;
501 t
->sysctl_header
= register_sysctl_table(t
->dev_dir
);
502 if (t
->sysctl_header
== NULL
) {
506 port
->sysctl_table
= t
;
510 int parport_proc_unregister(struct parport
*port
)
512 if (port
->sysctl_table
) {
513 struct parport_sysctl_table
*t
= port
->sysctl_table
;
514 port
->sysctl_table
= NULL
;
515 unregister_sysctl_table(t
->sysctl_header
);
521 int parport_device_proc_register(struct pardevice
*device
)
523 struct parport_device_sysctl_table
*t
;
524 struct parport
* port
= device
->port
;
526 t
= kmemdup(&parport_device_sysctl_template
, sizeof(*t
), GFP_KERNEL
);
530 t
->dev_dir
[0].child
= t
->parport_dir
;
531 t
->parport_dir
[0].child
= t
->port_dir
;
532 t
->port_dir
[0].procname
= port
->name
;
533 t
->port_dir
[0].child
= t
->devices_root_dir
;
534 t
->devices_root_dir
[0].child
= t
->device_dir
;
536 t
->device_dir
[0].procname
= device
->name
;
537 t
->device_dir
[0].child
= t
->vars
;
538 t
->vars
[0].data
= &device
->timeslice
;
540 t
->sysctl_header
= register_sysctl_table(t
->dev_dir
);
541 if (t
->sysctl_header
== NULL
) {
545 device
->sysctl_table
= t
;
549 int parport_device_proc_unregister(struct pardevice
*device
)
551 if (device
->sysctl_table
) {
552 struct parport_device_sysctl_table
*t
= device
->sysctl_table
;
553 device
->sysctl_table
= NULL
;
554 unregister_sysctl_table(t
->sysctl_header
);
560 static int __init
parport_default_proc_register(void)
564 parport_default_sysctl_table
.sysctl_header
=
565 register_sysctl_table(parport_default_sysctl_table
.dev_dir
);
566 if (!parport_default_sysctl_table
.sysctl_header
)
568 ret
= parport_bus_init();
570 unregister_sysctl_table(parport_default_sysctl_table
.
577 static void __exit
parport_default_proc_unregister(void)
579 if (parport_default_sysctl_table
.sysctl_header
) {
580 unregister_sysctl_table(parport_default_sysctl_table
.
582 parport_default_sysctl_table
.sysctl_header
= NULL
;
587 #else /* no sysctl or no procfs*/
589 int parport_proc_register(struct parport
*pp
)
594 int parport_proc_unregister(struct parport
*pp
)
599 int parport_device_proc_register(struct pardevice
*device
)
604 int parport_device_proc_unregister(struct pardevice
*device
)
609 static int __init
parport_default_proc_register (void)
611 return parport_bus_init();
614 static void __exit
parport_default_proc_unregister (void)
620 subsys_initcall(parport_default_proc_register
)
621 module_exit(parport_default_proc_unregister
)