1 // SPDX-License-Identifier: GPL-2.0
2 /* Sysctl interface for parport devices.
4 * Authors: David Campbell
5 * Tim Waugh <tim@cyberelk.demon.co.uk>
6 * Philip Blundell <philb@gnu.org>
8 * Riccardo Facchetti <fizban@tin.it>
10 * based on work by Grant Guenther <grant@torque.net>
13 * Cleaned up include files - Russell King <linux@arm.uk.linux.org>
16 #include <linux/string.h>
17 #include <linux/init.h>
18 #include <linux/module.h>
19 #include <linux/errno.h>
20 #include <linux/kernel.h>
21 #include <linux/slab.h>
22 #include <linux/parport.h>
23 #include <linux/ctype.h>
24 #include <linux/sysctl.h>
25 #include <linux/device.h>
27 #include <linux/uaccess.h>
29 #if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS)
31 #define PARPORT_MIN_TIMESLICE_VALUE 1ul
32 #define PARPORT_MAX_TIMESLICE_VALUE ((unsigned long) HZ)
33 #define PARPORT_MIN_SPINTIME_VALUE 1
34 #define PARPORT_MAX_SPINTIME_VALUE 1000
36 static int do_active_device(struct ctl_table
*table
, int write
,
37 void *result
, size_t *lenp
, loff_t
*ppos
)
39 struct parport
*port
= (struct parport
*)table
->extra1
;
41 struct pardevice
*dev
;
44 if (write
) /* can't happen anyway */
52 for (dev
= port
->devices
; dev
; dev
= dev
->next
) {
53 if(dev
== port
->cad
) {
54 len
+= sprintf(buffer
, "%s\n", dev
->name
);
59 len
+= sprintf(buffer
, "%s\n", "none");
68 memcpy(result
, buffer
, len
);
72 #ifdef CONFIG_PARPORT_1284
73 static int do_autoprobe(struct ctl_table
*table
, int write
,
74 void *result
, size_t *lenp
, loff_t
*ppos
)
76 struct parport_device_info
*info
= table
->extra2
;
81 if (write
) /* permissions stop this */
89 if ((str
= info
->class_name
) != NULL
)
90 len
+= sprintf (buffer
+ len
, "CLASS:%s;\n", str
);
92 if ((str
= info
->model
) != NULL
)
93 len
+= sprintf (buffer
+ len
, "MODEL:%s;\n", str
);
95 if ((str
= info
->mfr
) != NULL
)
96 len
+= sprintf (buffer
+ len
, "MANUFACTURER:%s;\n", str
);
98 if ((str
= info
->description
) != NULL
)
99 len
+= sprintf (buffer
+ len
, "DESCRIPTION:%s;\n", str
);
101 if ((str
= info
->cmdset
) != NULL
)
102 len
+= sprintf (buffer
+ len
, "COMMAND SET:%s;\n", str
);
111 memcpy(result
, buffer
, len
);
114 #endif /* IEEE1284.3 support. */
116 static int do_hardware_base_addr(struct ctl_table
*table
, int write
,
117 void *result
, size_t *lenp
, loff_t
*ppos
)
119 struct parport
*port
= (struct parport
*)table
->extra1
;
128 if (write
) /* permissions prevent this anyway */
131 len
+= sprintf (buffer
, "%lu\t%lu\n", port
->base
, port
->base_hi
);
139 memcpy(result
, buffer
, len
);
143 static int do_hardware_irq(struct ctl_table
*table
, int write
,
144 void *result
, 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
);
166 memcpy(result
, buffer
, len
);
170 static int do_hardware_dma(struct ctl_table
*table
, int write
,
171 void *result
, size_t *lenp
, loff_t
*ppos
)
173 struct parport
*port
= (struct parport
*)table
->extra1
;
182 if (write
) /* permissions prevent this anyway */
185 len
+= sprintf (buffer
, "%d\n", port
->dma
);
193 memcpy(result
, buffer
, len
);
197 static int do_hardware_modes(struct ctl_table
*table
, int write
,
198 void *result
, size_t *lenp
, loff_t
*ppos
)
200 struct parport
*port
= (struct parport
*)table
->extra1
;
209 if (write
) /* permissions prevent this anyway */
213 #define printmode(x) \
215 if (port->modes & PARPORT_MODE_##x) \
216 len += sprintf(buffer + len, "%s%s", f++ ? "," : "", #x); \
227 buffer
[len
++] = '\n';
235 memcpy(result
, buffer
, len
);
239 #define PARPORT_PORT_DIR(CHILD) { .procname = NULL, .mode = 0555, .child = CHILD }
240 #define PARPORT_PARPORT_DIR(CHILD) { .procname = "parport", \
241 .mode = 0555, .child = CHILD }
242 #define PARPORT_DEV_DIR(CHILD) { .procname = "dev", .mode = 0555, .child = CHILD }
243 #define PARPORT_DEVICES_ROOT_DIR { .procname = "devices", \
244 .mode = 0555, .child = NULL }
246 static const unsigned long parport_min_timeslice_value
=
247 PARPORT_MIN_TIMESLICE_VALUE
;
249 static const unsigned long parport_max_timeslice_value
=
250 PARPORT_MAX_TIMESLICE_VALUE
;
252 static const int parport_min_spintime_value
=
253 PARPORT_MIN_SPINTIME_VALUE
;
255 static const int parport_max_spintime_value
=
256 PARPORT_MAX_SPINTIME_VALUE
;
259 struct parport_sysctl_table
{
260 struct ctl_table_header
*sysctl_header
;
261 struct ctl_table vars
[12];
262 struct ctl_table device_dir
[2];
263 struct ctl_table port_dir
[2];
264 struct ctl_table parport_dir
[2];
265 struct ctl_table dev_dir
[2];
268 static const struct parport_sysctl_table parport_sysctl_template
= {
269 .sysctl_header
= NULL
,
272 .procname
= "spintime",
274 .maxlen
= sizeof(int),
276 .proc_handler
= proc_dointvec_minmax
,
277 .extra1
= (void*) &parport_min_spintime_value
,
278 .extra2
= (void*) &parport_max_spintime_value
281 .procname
= "base-addr",
285 .proc_handler
= do_hardware_base_addr
292 .proc_handler
= do_hardware_irq
299 .proc_handler
= do_hardware_dma
306 .proc_handler
= do_hardware_modes
308 PARPORT_DEVICES_ROOT_DIR
,
309 #ifdef CONFIG_PARPORT_1284
311 .procname
= "autoprobe",
315 .proc_handler
= do_autoprobe
318 .procname
= "autoprobe0",
322 .proc_handler
= do_autoprobe
325 .procname
= "autoprobe1",
329 .proc_handler
= do_autoprobe
332 .procname
= "autoprobe2",
336 .proc_handler
= do_autoprobe
339 .procname
= "autoprobe3",
343 .proc_handler
= do_autoprobe
345 #endif /* IEEE 1284 support */
350 .procname
= "active",
354 .proc_handler
= do_active_device
359 PARPORT_PORT_DIR(NULL
),
363 PARPORT_PARPORT_DIR(NULL
),
367 PARPORT_DEV_DIR(NULL
),
372 struct parport_device_sysctl_table
374 struct ctl_table_header
*sysctl_header
;
375 struct ctl_table vars
[2];
376 struct ctl_table device_dir
[2];
377 struct ctl_table devices_root_dir
[2];
378 struct ctl_table port_dir
[2];
379 struct ctl_table parport_dir
[2];
380 struct ctl_table dev_dir
[2];
383 static const struct parport_device_sysctl_table
384 parport_device_sysctl_template
= {
385 .sysctl_header
= NULL
,
388 .procname
= "timeslice",
390 .maxlen
= sizeof(unsigned long),
392 .proc_handler
= proc_doulongvec_ms_jiffies_minmax
,
393 .extra1
= (void*) &parport_min_timeslice_value
,
394 .extra2
= (void*) &parport_max_timeslice_value
408 PARPORT_DEVICES_ROOT_DIR
,
412 PARPORT_PORT_DIR(NULL
),
416 PARPORT_PARPORT_DIR(NULL
),
420 PARPORT_DEV_DIR(NULL
),
425 struct parport_default_sysctl_table
427 struct ctl_table_header
*sysctl_header
;
428 struct ctl_table vars
[3];
429 struct ctl_table default_dir
[2];
430 struct ctl_table parport_dir
[2];
431 struct ctl_table dev_dir
[2];
434 static struct parport_default_sysctl_table
435 parport_default_sysctl_table
= {
436 .sysctl_header
= NULL
,
439 .procname
= "timeslice",
440 .data
= &parport_default_timeslice
,
441 .maxlen
= sizeof(parport_default_timeslice
),
443 .proc_handler
= proc_doulongvec_ms_jiffies_minmax
,
444 .extra1
= (void*) &parport_min_timeslice_value
,
445 .extra2
= (void*) &parport_max_timeslice_value
448 .procname
= "spintime",
449 .data
= &parport_default_spintime
,
450 .maxlen
= sizeof(parport_default_spintime
),
452 .proc_handler
= proc_dointvec_minmax
,
453 .extra1
= (void*) &parport_min_spintime_value
,
454 .extra2
= (void*) &parport_max_spintime_value
460 .procname
= "default",
462 .child
= parport_default_sysctl_table
.vars
467 PARPORT_PARPORT_DIR(parport_default_sysctl_table
.default_dir
),
471 PARPORT_DEV_DIR(parport_default_sysctl_table
.parport_dir
),
477 int parport_proc_register(struct parport
*port
)
479 struct parport_sysctl_table
*t
;
482 t
= kmemdup(&parport_sysctl_template
, sizeof(*t
), GFP_KERNEL
);
486 t
->device_dir
[0].extra1
= port
;
488 for (i
= 0; i
< 5; i
++)
489 t
->vars
[i
].extra1
= port
;
491 t
->vars
[0].data
= &port
->spintime
;
492 t
->vars
[5].child
= t
->device_dir
;
494 for (i
= 0; i
< 5; i
++)
495 t
->vars
[6 + i
].extra2
= &port
->probe_info
[i
];
497 t
->port_dir
[0].procname
= port
->name
;
499 t
->port_dir
[0].child
= t
->vars
;
500 t
->parport_dir
[0].child
= t
->port_dir
;
501 t
->dev_dir
[0].child
= t
->parport_dir
;
503 t
->sysctl_header
= register_sysctl_table(t
->dev_dir
);
504 if (t
->sysctl_header
== NULL
) {
508 port
->sysctl_table
= t
;
512 int parport_proc_unregister(struct parport
*port
)
514 if (port
->sysctl_table
) {
515 struct parport_sysctl_table
*t
= port
->sysctl_table
;
516 port
->sysctl_table
= NULL
;
517 unregister_sysctl_table(t
->sysctl_header
);
523 int parport_device_proc_register(struct pardevice
*device
)
525 struct parport_device_sysctl_table
*t
;
526 struct parport
* port
= device
->port
;
528 t
= kmemdup(&parport_device_sysctl_template
, sizeof(*t
), GFP_KERNEL
);
532 t
->dev_dir
[0].child
= t
->parport_dir
;
533 t
->parport_dir
[0].child
= t
->port_dir
;
534 t
->port_dir
[0].procname
= port
->name
;
535 t
->port_dir
[0].child
= t
->devices_root_dir
;
536 t
->devices_root_dir
[0].child
= t
->device_dir
;
538 t
->device_dir
[0].procname
= device
->name
;
539 t
->device_dir
[0].child
= t
->vars
;
540 t
->vars
[0].data
= &device
->timeslice
;
542 t
->sysctl_header
= register_sysctl_table(t
->dev_dir
);
543 if (t
->sysctl_header
== NULL
) {
547 device
->sysctl_table
= t
;
551 int parport_device_proc_unregister(struct pardevice
*device
)
553 if (device
->sysctl_table
) {
554 struct parport_device_sysctl_table
*t
= device
->sysctl_table
;
555 device
->sysctl_table
= NULL
;
556 unregister_sysctl_table(t
->sysctl_header
);
562 static int __init
parport_default_proc_register(void)
566 parport_default_sysctl_table
.sysctl_header
=
567 register_sysctl_table(parport_default_sysctl_table
.dev_dir
);
568 if (!parport_default_sysctl_table
.sysctl_header
)
570 ret
= parport_bus_init();
572 unregister_sysctl_table(parport_default_sysctl_table
.
579 static void __exit
parport_default_proc_unregister(void)
581 if (parport_default_sysctl_table
.sysctl_header
) {
582 unregister_sysctl_table(parport_default_sysctl_table
.
584 parport_default_sysctl_table
.sysctl_header
= NULL
;
589 #else /* no sysctl or no procfs*/
591 int parport_proc_register(struct parport
*pp
)
596 int parport_proc_unregister(struct parport
*pp
)
601 int parport_device_proc_register(struct pardevice
*device
)
606 int parport_device_proc_unregister(struct pardevice
*device
)
611 static int __init
parport_default_proc_register (void)
613 return parport_bus_init();
616 static void __exit
parport_default_proc_unregister (void)
622 subsys_initcall(parport_default_proc_register
)
623 module_exit(parport_default_proc_unregister
)