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(const 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
+= scnprintf(buffer
, sizeof(buffer
), "%s\n", dev
->name
);
59 len
+= scnprintf(buffer
, sizeof(buffer
), "%s\n", "none");
68 memcpy(result
, buffer
, len
);
72 #ifdef CONFIG_PARPORT_1284
73 static int do_autoprobe(const 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
+= scnprintf (buffer
+ len
, sizeof(buffer
) - len
, "CLASS:%s;\n", str
);
92 if ((str
= info
->model
) != NULL
)
93 len
+= scnprintf (buffer
+ len
, sizeof(buffer
) - len
, "MODEL:%s;\n", str
);
95 if ((str
= info
->mfr
) != NULL
)
96 len
+= scnprintf (buffer
+ len
, sizeof(buffer
) - len
, "MANUFACTURER:%s;\n", str
);
98 if ((str
= info
->description
) != NULL
)
99 len
+= scnprintf (buffer
+ len
, sizeof(buffer
) - len
, "DESCRIPTION:%s;\n", str
);
101 if ((str
= info
->cmdset
) != NULL
)
102 len
+= scnprintf (buffer
+ len
, sizeof(buffer
) - len
, "COMMAND SET:%s;\n", str
);
111 memcpy(result
, buffer
, len
);
114 #endif /* IEEE1284.3 support. */
116 static int do_hardware_base_addr(const 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
+= scnprintf (buffer
, sizeof(buffer
), "%lu\t%lu\n", port
->base
, port
->base_hi
);
139 memcpy(result
, buffer
, len
);
143 static int do_hardware_irq(const 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
+= scnprintf (buffer
, sizeof(buffer
), "%d\n", port
->irq
);
166 memcpy(result
, buffer
, len
);
170 static int do_hardware_dma(const 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
+= scnprintf (buffer
, sizeof(buffer
), "%d\n", port
->dma
);
193 memcpy(result
, buffer
, len
);
197 static int do_hardware_modes(const 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 += scnprintf(buffer + len, sizeof(buffer) - len, "%s%s", f++ ? "," : "", #x); \
227 buffer
[len
++] = '\n';
235 memcpy(result
, buffer
, len
);
239 static const unsigned long parport_min_timeslice_value
=
240 PARPORT_MIN_TIMESLICE_VALUE
;
242 static const unsigned long parport_max_timeslice_value
=
243 PARPORT_MAX_TIMESLICE_VALUE
;
245 static const int parport_min_spintime_value
=
246 PARPORT_MIN_SPINTIME_VALUE
;
248 static const int parport_max_spintime_value
=
249 PARPORT_MAX_SPINTIME_VALUE
;
252 struct parport_sysctl_table
{
253 struct ctl_table_header
*port_header
;
254 struct ctl_table_header
*devices_header
;
255 #ifdef CONFIG_PARPORT_1284
256 struct ctl_table vars
[10];
258 struct ctl_table vars
[5];
259 #endif /* IEEE 1284 support */
260 struct ctl_table device_dir
[1];
263 static const struct parport_sysctl_table parport_sysctl_template
= {
265 .devices_header
= NULL
,
268 .procname
= "spintime",
270 .maxlen
= sizeof(int),
272 .proc_handler
= proc_dointvec_minmax
,
273 .extra1
= (void*) &parport_min_spintime_value
,
274 .extra2
= (void*) &parport_max_spintime_value
277 .procname
= "base-addr",
281 .proc_handler
= do_hardware_base_addr
288 .proc_handler
= do_hardware_irq
295 .proc_handler
= do_hardware_dma
302 .proc_handler
= do_hardware_modes
304 #ifdef CONFIG_PARPORT_1284
306 .procname
= "autoprobe",
310 .proc_handler
= do_autoprobe
313 .procname
= "autoprobe0",
317 .proc_handler
= do_autoprobe
320 .procname
= "autoprobe1",
324 .proc_handler
= do_autoprobe
327 .procname
= "autoprobe2",
331 .proc_handler
= do_autoprobe
334 .procname
= "autoprobe3",
338 .proc_handler
= do_autoprobe
340 #endif /* IEEE 1284 support */
344 .procname
= "active",
348 .proc_handler
= do_active_device
353 struct parport_device_sysctl_table
355 struct ctl_table_header
*sysctl_header
;
356 struct ctl_table vars
[1];
357 struct ctl_table device_dir
[1];
360 static const struct parport_device_sysctl_table
361 parport_device_sysctl_template
= {
362 .sysctl_header
= NULL
,
365 .procname
= "timeslice",
367 .maxlen
= sizeof(unsigned long),
369 .proc_handler
= proc_doulongvec_ms_jiffies_minmax
,
370 .extra1
= (void*) &parport_min_timeslice_value
,
371 .extra2
= (void*) &parport_max_timeslice_value
384 struct parport_default_sysctl_table
386 struct ctl_table_header
*sysctl_header
;
387 struct ctl_table vars
[2];
390 static struct parport_default_sysctl_table
391 parport_default_sysctl_table
= {
392 .sysctl_header
= NULL
,
395 .procname
= "timeslice",
396 .data
= &parport_default_timeslice
,
397 .maxlen
= sizeof(parport_default_timeslice
),
399 .proc_handler
= proc_doulongvec_ms_jiffies_minmax
,
400 .extra1
= (void*) &parport_min_timeslice_value
,
401 .extra2
= (void*) &parport_max_timeslice_value
404 .procname
= "spintime",
405 .data
= &parport_default_spintime
,
406 .maxlen
= sizeof(parport_default_spintime
),
408 .proc_handler
= proc_dointvec_minmax
,
409 .extra1
= (void*) &parport_min_spintime_value
,
410 .extra2
= (void*) &parport_max_spintime_value
415 int parport_proc_register(struct parport
*port
)
417 struct parport_sysctl_table
*t
;
421 t
= kmemdup(&parport_sysctl_template
, sizeof(*t
), GFP_KERNEL
);
425 t
->device_dir
[0].extra1
= port
;
427 t
->vars
[0].data
= &port
->spintime
;
428 for (i
= 0; i
< 5; i
++) {
429 t
->vars
[i
].extra1
= port
;
430 #ifdef CONFIG_PARPORT_1284
431 t
->vars
[5 + i
].extra2
= &port
->probe_info
[i
];
432 #endif /* IEEE 1284 support */
435 tmp_dir_path
= kasprintf(GFP_KERNEL
, "dev/parport/%s/devices", port
->name
);
441 t
->devices_header
= register_sysctl(tmp_dir_path
, t
->device_dir
);
442 if (t
->devices_header
== NULL
) {
444 goto exit_free_tmp_dir_path
;
449 tmp_dir_path
= kasprintf(GFP_KERNEL
, "dev/parport/%s", port
->name
);
452 goto unregister_devices_h
;
455 t
->port_header
= register_sysctl(tmp_dir_path
, t
->vars
);
456 if (t
->port_header
== NULL
) {
458 goto unregister_devices_h
;
461 port
->sysctl_table
= t
;
466 unregister_devices_h
:
467 unregister_sysctl_table(t
->devices_header
);
469 exit_free_tmp_dir_path
:
477 int parport_proc_unregister(struct parport
*port
)
479 if (port
->sysctl_table
) {
480 struct parport_sysctl_table
*t
= port
->sysctl_table
;
481 port
->sysctl_table
= NULL
;
482 unregister_sysctl_table(t
->devices_header
);
483 unregister_sysctl_table(t
->port_header
);
489 int parport_device_proc_register(struct pardevice
*device
)
491 struct parport_device_sysctl_table
*t
;
492 struct parport
* port
= device
->port
;
496 t
= kmemdup(&parport_device_sysctl_template
, sizeof(*t
), GFP_KERNEL
);
500 /* Allocate a buffer for two paths: dev/parport/PORT/devices/DEVICE. */
501 tmp_dir_path
= kasprintf(GFP_KERNEL
, "dev/parport/%s/devices/%s", port
->name
, device
->name
);
507 t
->vars
[0].data
= &device
->timeslice
;
509 t
->sysctl_header
= register_sysctl(tmp_dir_path
, t
->vars
);
510 if (t
->sysctl_header
== NULL
) {
514 device
->sysctl_table
= t
;
525 int parport_device_proc_unregister(struct pardevice
*device
)
527 if (device
->sysctl_table
) {
528 struct parport_device_sysctl_table
*t
= device
->sysctl_table
;
529 device
->sysctl_table
= NULL
;
530 unregister_sysctl_table(t
->sysctl_header
);
536 static int __init
parport_default_proc_register(void)
540 parport_default_sysctl_table
.sysctl_header
=
541 register_sysctl("dev/parport/default", parport_default_sysctl_table
.vars
);
542 if (!parport_default_sysctl_table
.sysctl_header
)
544 ret
= parport_bus_init();
546 unregister_sysctl_table(parport_default_sysctl_table
.
553 static void __exit
parport_default_proc_unregister(void)
555 if (parport_default_sysctl_table
.sysctl_header
) {
556 unregister_sysctl_table(parport_default_sysctl_table
.
558 parport_default_sysctl_table
.sysctl_header
= NULL
;
563 #else /* no sysctl or no procfs*/
565 int parport_proc_register(struct parport
*pp
)
570 int parport_proc_unregister(struct parport
*pp
)
575 int parport_device_proc_register(struct pardevice
*device
)
580 int parport_device_proc_unregister(struct pardevice
*device
)
585 static int __init
parport_default_proc_register (void)
587 return parport_bus_init();
590 static void __exit
parport_default_proc_unregister (void)
596 subsys_initcall(parport_default_proc_register
)
597 module_exit(parport_default_proc_unregister
)