Loading...
1/* Sysctl interface for parport devices.
2 *
3 * Authors: David Campbell
4 * Tim Waugh <tim@cyberelk.demon.co.uk>
5 * Philip Blundell <philb@gnu.org>
6 * Andrea Arcangeli
7 * Riccardo Facchetti <fizban@tin.it>
8 *
9 * based on work by Grant Guenther <grant@torque.net>
10 * and Philip Blundell
11 *
12 * Cleaned up include files - Russell King <linux@arm.uk.linux.org>
13 */
14
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>
25
26#include <asm/uaccess.h>
27
28#if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS)
29
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
34
35static int do_active_device(struct ctl_table *table, int write,
36 void __user *result, size_t *lenp, loff_t *ppos)
37{
38 struct parport *port = (struct parport *)table->extra1;
39 char buffer[256];
40 struct pardevice *dev;
41 int len = 0;
42
43 if (write) /* can't happen anyway */
44 return -EACCES;
45
46 if (*ppos) {
47 *lenp = 0;
48 return 0;
49 }
50
51 for (dev = port->devices; dev ; dev = dev->next) {
52 if(dev == port->cad) {
53 len += sprintf(buffer, "%s\n", dev->name);
54 }
55 }
56
57 if(!len) {
58 len += sprintf(buffer, "%s\n", "none");
59 }
60
61 if (len > *lenp)
62 len = *lenp;
63 else
64 *lenp = len;
65
66 *ppos += len;
67
68 return copy_to_user(result, buffer, len) ? -EFAULT : 0;
69}
70
71#ifdef CONFIG_PARPORT_1284
72static int do_autoprobe(struct ctl_table *table, int write,
73 void __user *result, size_t *lenp, loff_t *ppos)
74{
75 struct parport_device_info *info = table->extra2;
76 const char *str;
77 char buffer[256];
78 int len = 0;
79
80 if (write) /* permissions stop this */
81 return -EACCES;
82
83 if (*ppos) {
84 *lenp = 0;
85 return 0;
86 }
87
88 if ((str = info->class_name) != NULL)
89 len += sprintf (buffer + len, "CLASS:%s;\n", str);
90
91 if ((str = info->model) != NULL)
92 len += sprintf (buffer + len, "MODEL:%s;\n", str);
93
94 if ((str = info->mfr) != NULL)
95 len += sprintf (buffer + len, "MANUFACTURER:%s;\n", str);
96
97 if ((str = info->description) != NULL)
98 len += sprintf (buffer + len, "DESCRIPTION:%s;\n", str);
99
100 if ((str = info->cmdset) != NULL)
101 len += sprintf (buffer + len, "COMMAND SET:%s;\n", str);
102
103 if (len > *lenp)
104 len = *lenp;
105 else
106 *lenp = len;
107
108 *ppos += len;
109
110 return copy_to_user (result, buffer, len) ? -EFAULT : 0;
111}
112#endif /* IEEE1284.3 support. */
113
114static int do_hardware_base_addr(struct ctl_table *table, int write,
115 void __user *result,
116 size_t *lenp, loff_t *ppos)
117{
118 struct parport *port = (struct parport *)table->extra1;
119 char buffer[20];
120 int len = 0;
121
122 if (*ppos) {
123 *lenp = 0;
124 return 0;
125 }
126
127 if (write) /* permissions prevent this anyway */
128 return -EACCES;
129
130 len += sprintf (buffer, "%lu\t%lu\n", port->base, port->base_hi);
131
132 if (len > *lenp)
133 len = *lenp;
134 else
135 *lenp = len;
136
137 *ppos += len;
138
139 return copy_to_user(result, buffer, len) ? -EFAULT : 0;
140}
141
142static int do_hardware_irq(struct ctl_table *table, int write,
143 void __user *result,
144 size_t *lenp, loff_t *ppos)
145{
146 struct parport *port = (struct parport *)table->extra1;
147 char buffer[20];
148 int len = 0;
149
150 if (*ppos) {
151 *lenp = 0;
152 return 0;
153 }
154
155 if (write) /* permissions prevent this anyway */
156 return -EACCES;
157
158 len += sprintf (buffer, "%d\n", port->irq);
159
160 if (len > *lenp)
161 len = *lenp;
162 else
163 *lenp = len;
164
165 *ppos += len;
166
167 return copy_to_user(result, buffer, len) ? -EFAULT : 0;
168}
169
170static int do_hardware_dma(struct ctl_table *table, int write,
171 void __user *result,
172 size_t *lenp, loff_t *ppos)
173{
174 struct parport *port = (struct parport *)table->extra1;
175 char buffer[20];
176 int len = 0;
177
178 if (*ppos) {
179 *lenp = 0;
180 return 0;
181 }
182
183 if (write) /* permissions prevent this anyway */
184 return -EACCES;
185
186 len += sprintf (buffer, "%d\n", port->dma);
187
188 if (len > *lenp)
189 len = *lenp;
190 else
191 *lenp = len;
192
193 *ppos += len;
194
195 return copy_to_user(result, buffer, len) ? -EFAULT : 0;
196}
197
198static int do_hardware_modes(struct ctl_table *table, int write,
199 void __user *result,
200 size_t *lenp, loff_t *ppos)
201{
202 struct parport *port = (struct parport *)table->extra1;
203 char buffer[40];
204 int len = 0;
205
206 if (*ppos) {
207 *lenp = 0;
208 return 0;
209 }
210
211 if (write) /* permissions prevent this anyway */
212 return -EACCES;
213
214 {
215#define printmode(x) {if(port->modes&PARPORT_MODE_##x){len+=sprintf(buffer+len,"%s%s",f?",":"",#x);f++;}}
216 int f = 0;
217 printmode(PCSPP);
218 printmode(TRISTATE);
219 printmode(COMPAT);
220 printmode(EPP);
221 printmode(ECP);
222 printmode(DMA);
223#undef printmode
224 }
225 buffer[len++] = '\n';
226
227 if (len > *lenp)
228 len = *lenp;
229 else
230 *lenp = len;
231
232 *ppos += len;
233
234 return copy_to_user(result, buffer, len) ? -EFAULT : 0;
235}
236
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 }
243
244static const unsigned long parport_min_timeslice_value =
245PARPORT_MIN_TIMESLICE_VALUE;
246
247static const unsigned long parport_max_timeslice_value =
248PARPORT_MAX_TIMESLICE_VALUE;
249
250static const int parport_min_spintime_value =
251PARPORT_MIN_SPINTIME_VALUE;
252
253static const int parport_max_spintime_value =
254PARPORT_MAX_SPINTIME_VALUE;
255
256
257struct 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];
264};
265
266static const struct parport_sysctl_table parport_sysctl_template = {
267 .sysctl_header = NULL,
268 {
269 {
270 .procname = "spintime",
271 .data = NULL,
272 .maxlen = sizeof(int),
273 .mode = 0644,
274 .proc_handler = proc_dointvec_minmax,
275 .extra1 = (void*) &parport_min_spintime_value,
276 .extra2 = (void*) &parport_max_spintime_value
277 },
278 {
279 .procname = "base-addr",
280 .data = NULL,
281 .maxlen = 0,
282 .mode = 0444,
283 .proc_handler = do_hardware_base_addr
284 },
285 {
286 .procname = "irq",
287 .data = NULL,
288 .maxlen = 0,
289 .mode = 0444,
290 .proc_handler = do_hardware_irq
291 },
292 {
293 .procname = "dma",
294 .data = NULL,
295 .maxlen = 0,
296 .mode = 0444,
297 .proc_handler = do_hardware_dma
298 },
299 {
300 .procname = "modes",
301 .data = NULL,
302 .maxlen = 0,
303 .mode = 0444,
304 .proc_handler = do_hardware_modes
305 },
306 PARPORT_DEVICES_ROOT_DIR,
307#ifdef CONFIG_PARPORT_1284
308 {
309 .procname = "autoprobe",
310 .data = NULL,
311 .maxlen = 0,
312 .mode = 0444,
313 .proc_handler = do_autoprobe
314 },
315 {
316 .procname = "autoprobe0",
317 .data = NULL,
318 .maxlen = 0,
319 .mode = 0444,
320 .proc_handler = do_autoprobe
321 },
322 {
323 .procname = "autoprobe1",
324 .data = NULL,
325 .maxlen = 0,
326 .mode = 0444,
327 .proc_handler = do_autoprobe
328 },
329 {
330 .procname = "autoprobe2",
331 .data = NULL,
332 .maxlen = 0,
333 .mode = 0444,
334 .proc_handler = do_autoprobe
335 },
336 {
337 .procname = "autoprobe3",
338 .data = NULL,
339 .maxlen = 0,
340 .mode = 0444,
341 .proc_handler = do_autoprobe
342 },
343#endif /* IEEE 1284 support */
344 {}
345 },
346 {
347 {
348 .procname = "active",
349 .data = NULL,
350 .maxlen = 0,
351 .mode = 0444,
352 .proc_handler = do_active_device
353 },
354 {}
355 },
356 {
357 PARPORT_PORT_DIR(NULL),
358 {}
359 },
360 {
361 PARPORT_PARPORT_DIR(NULL),
362 {}
363 },
364 {
365 PARPORT_DEV_DIR(NULL),
366 {}
367 }
368};
369
370struct parport_device_sysctl_table
371{
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];
379};
380
381static const struct parport_device_sysctl_table
382parport_device_sysctl_template = {
383 .sysctl_header = NULL,
384 {
385 {
386 .procname = "timeslice",
387 .data = NULL,
388 .maxlen = sizeof(unsigned long),
389 .mode = 0644,
390 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
391 .extra1 = (void*) &parport_min_timeslice_value,
392 .extra2 = (void*) &parport_max_timeslice_value
393 },
394 },
395 {
396 {
397 .procname = NULL,
398 .data = NULL,
399 .maxlen = 0,
400 .mode = 0555,
401 .child = NULL
402 },
403 {}
404 },
405 {
406 PARPORT_DEVICES_ROOT_DIR,
407 {}
408 },
409 {
410 PARPORT_PORT_DIR(NULL),
411 {}
412 },
413 {
414 PARPORT_PARPORT_DIR(NULL),
415 {}
416 },
417 {
418 PARPORT_DEV_DIR(NULL),
419 {}
420 }
421};
422
423struct parport_default_sysctl_table
424{
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];
430};
431
432static struct parport_default_sysctl_table
433parport_default_sysctl_table = {
434 .sysctl_header = NULL,
435 {
436 {
437 .procname = "timeslice",
438 .data = &parport_default_timeslice,
439 .maxlen = sizeof(parport_default_timeslice),
440 .mode = 0644,
441 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
442 .extra1 = (void*) &parport_min_timeslice_value,
443 .extra2 = (void*) &parport_max_timeslice_value
444 },
445 {
446 .procname = "spintime",
447 .data = &parport_default_spintime,
448 .maxlen = sizeof(parport_default_spintime),
449 .mode = 0644,
450 .proc_handler = proc_dointvec_minmax,
451 .extra1 = (void*) &parport_min_spintime_value,
452 .extra2 = (void*) &parport_max_spintime_value
453 },
454 {}
455 },
456 {
457 {
458 .procname = "default",
459 .mode = 0555,
460 .child = parport_default_sysctl_table.vars
461 },
462 {}
463 },
464 {
465 PARPORT_PARPORT_DIR(parport_default_sysctl_table.default_dir),
466 {}
467 },
468 {
469 PARPORT_DEV_DIR(parport_default_sysctl_table.parport_dir),
470 {}
471 }
472};
473
474
475int parport_proc_register(struct parport *port)
476{
477 struct parport_sysctl_table *t;
478 int i;
479
480 t = kmemdup(&parport_sysctl_template, sizeof(*t), GFP_KERNEL);
481 if (t == NULL)
482 return -ENOMEM;
483
484 t->device_dir[0].extra1 = port;
485
486 for (i = 0; i < 5; i++)
487 t->vars[i].extra1 = port;
488
489 t->vars[0].data = &port->spintime;
490 t->vars[5].child = t->device_dir;
491
492 for (i = 0; i < 5; i++)
493 t->vars[6 + i].extra2 = &port->probe_info[i];
494
495 t->port_dir[0].procname = port->name;
496
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;
500
501 t->sysctl_header = register_sysctl_table(t->dev_dir);
502 if (t->sysctl_header == NULL) {
503 kfree(t);
504 t = NULL;
505 }
506 port->sysctl_table = t;
507 return 0;
508}
509
510int parport_proc_unregister(struct parport *port)
511{
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);
516 kfree(t);
517 }
518 return 0;
519}
520
521int parport_device_proc_register(struct pardevice *device)
522{
523 struct parport_device_sysctl_table *t;
524 struct parport * port = device->port;
525
526 t = kmemdup(&parport_device_sysctl_template, sizeof(*t), GFP_KERNEL);
527 if (t == NULL)
528 return -ENOMEM;
529
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;
535
536 t->device_dir[0].procname = device->name;
537 t->device_dir[0].child = t->vars;
538 t->vars[0].data = &device->timeslice;
539
540 t->sysctl_header = register_sysctl_table(t->dev_dir);
541 if (t->sysctl_header == NULL) {
542 kfree(t);
543 t = NULL;
544 }
545 device->sysctl_table = t;
546 return 0;
547}
548
549int parport_device_proc_unregister(struct pardevice *device)
550{
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);
555 kfree(t);
556 }
557 return 0;
558}
559
560static int __init parport_default_proc_register(void)
561{
562 int ret;
563
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)
567 return -ENOMEM;
568 ret = parport_bus_init();
569 if (ret) {
570 unregister_sysctl_table(parport_default_sysctl_table.
571 sysctl_header);
572 return ret;
573 }
574 return 0;
575}
576
577static void __exit parport_default_proc_unregister(void)
578{
579 if (parport_default_sysctl_table.sysctl_header) {
580 unregister_sysctl_table(parport_default_sysctl_table.
581 sysctl_header);
582 parport_default_sysctl_table.sysctl_header = NULL;
583 }
584 parport_bus_exit();
585}
586
587#else /* no sysctl or no procfs*/
588
589int parport_proc_register(struct parport *pp)
590{
591 return 0;
592}
593
594int parport_proc_unregister(struct parport *pp)
595{
596 return 0;
597}
598
599int parport_device_proc_register(struct pardevice *device)
600{
601 return 0;
602}
603
604int parport_device_proc_unregister(struct pardevice *device)
605{
606 return 0;
607}
608
609static int __init parport_default_proc_register (void)
610{
611 return parport_bus_init();
612}
613
614static void __exit parport_default_proc_unregister (void)
615{
616 parport_bus_exit();
617}
618#endif
619
620module_init(parport_default_proc_register)
621module_exit(parport_default_proc_unregister)
1// SPDX-License-Identifier: GPL-2.0
2/* Sysctl interface for parport devices.
3 *
4 * Authors: David Campbell
5 * Tim Waugh <tim@cyberelk.demon.co.uk>
6 * Philip Blundell <philb@gnu.org>
7 * Andrea Arcangeli
8 * Riccardo Facchetti <fizban@tin.it>
9 *
10 * based on work by Grant Guenther <grant@torque.net>
11 * and Philip Blundell
12 *
13 * Cleaned up include files - Russell King <linux@arm.uk.linux.org>
14 */
15
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>
26
27#include <linux/uaccess.h>
28
29#if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS)
30
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
35
36static int do_active_device(struct ctl_table *table, int write,
37 void __user *result, size_t *lenp, loff_t *ppos)
38{
39 struct parport *port = (struct parport *)table->extra1;
40 char buffer[256];
41 struct pardevice *dev;
42 int len = 0;
43
44 if (write) /* can't happen anyway */
45 return -EACCES;
46
47 if (*ppos) {
48 *lenp = 0;
49 return 0;
50 }
51
52 for (dev = port->devices; dev ; dev = dev->next) {
53 if(dev == port->cad) {
54 len += sprintf(buffer, "%s\n", dev->name);
55 }
56 }
57
58 if(!len) {
59 len += sprintf(buffer, "%s\n", "none");
60 }
61
62 if (len > *lenp)
63 len = *lenp;
64 else
65 *lenp = len;
66
67 *ppos += len;
68
69 return copy_to_user(result, buffer, len) ? -EFAULT : 0;
70}
71
72#ifdef CONFIG_PARPORT_1284
73static int do_autoprobe(struct ctl_table *table, int write,
74 void __user *result, size_t *lenp, loff_t *ppos)
75{
76 struct parport_device_info *info = table->extra2;
77 const char *str;
78 char buffer[256];
79 int len = 0;
80
81 if (write) /* permissions stop this */
82 return -EACCES;
83
84 if (*ppos) {
85 *lenp = 0;
86 return 0;
87 }
88
89 if ((str = info->class_name) != NULL)
90 len += sprintf (buffer + len, "CLASS:%s;\n", str);
91
92 if ((str = info->model) != NULL)
93 len += sprintf (buffer + len, "MODEL:%s;\n", str);
94
95 if ((str = info->mfr) != NULL)
96 len += sprintf (buffer + len, "MANUFACTURER:%s;\n", str);
97
98 if ((str = info->description) != NULL)
99 len += sprintf (buffer + len, "DESCRIPTION:%s;\n", str);
100
101 if ((str = info->cmdset) != NULL)
102 len += sprintf (buffer + len, "COMMAND SET:%s;\n", str);
103
104 if (len > *lenp)
105 len = *lenp;
106 else
107 *lenp = len;
108
109 *ppos += len;
110
111 return copy_to_user (result, buffer, len) ? -EFAULT : 0;
112}
113#endif /* IEEE1284.3 support. */
114
115static int do_hardware_base_addr(struct ctl_table *table, int write,
116 void __user *result,
117 size_t *lenp, loff_t *ppos)
118{
119 struct parport *port = (struct parport *)table->extra1;
120 char buffer[20];
121 int len = 0;
122
123 if (*ppos) {
124 *lenp = 0;
125 return 0;
126 }
127
128 if (write) /* permissions prevent this anyway */
129 return -EACCES;
130
131 len += sprintf (buffer, "%lu\t%lu\n", port->base, port->base_hi);
132
133 if (len > *lenp)
134 len = *lenp;
135 else
136 *lenp = len;
137
138 *ppos += len;
139
140 return copy_to_user(result, buffer, len) ? -EFAULT : 0;
141}
142
143static int do_hardware_irq(struct ctl_table *table, int write,
144 void __user *result,
145 size_t *lenp, loff_t *ppos)
146{
147 struct parport *port = (struct parport *)table->extra1;
148 char buffer[20];
149 int len = 0;
150
151 if (*ppos) {
152 *lenp = 0;
153 return 0;
154 }
155
156 if (write) /* permissions prevent this anyway */
157 return -EACCES;
158
159 len += sprintf (buffer, "%d\n", port->irq);
160
161 if (len > *lenp)
162 len = *lenp;
163 else
164 *lenp = len;
165
166 *ppos += len;
167
168 return copy_to_user(result, buffer, len) ? -EFAULT : 0;
169}
170
171static int do_hardware_dma(struct ctl_table *table, int write,
172 void __user *result,
173 size_t *lenp, loff_t *ppos)
174{
175 struct parport *port = (struct parport *)table->extra1;
176 char buffer[20];
177 int len = 0;
178
179 if (*ppos) {
180 *lenp = 0;
181 return 0;
182 }
183
184 if (write) /* permissions prevent this anyway */
185 return -EACCES;
186
187 len += sprintf (buffer, "%d\n", port->dma);
188
189 if (len > *lenp)
190 len = *lenp;
191 else
192 *lenp = len;
193
194 *ppos += len;
195
196 return copy_to_user(result, buffer, len) ? -EFAULT : 0;
197}
198
199static int do_hardware_modes(struct ctl_table *table, int write,
200 void __user *result,
201 size_t *lenp, loff_t *ppos)
202{
203 struct parport *port = (struct parport *)table->extra1;
204 char buffer[40];
205 int len = 0;
206
207 if (*ppos) {
208 *lenp = 0;
209 return 0;
210 }
211
212 if (write) /* permissions prevent this anyway */
213 return -EACCES;
214
215 {
216#define printmode(x) {if(port->modes&PARPORT_MODE_##x){len+=sprintf(buffer+len,"%s%s",f?",":"",#x);f++;}}
217 int f = 0;
218 printmode(PCSPP);
219 printmode(TRISTATE);
220 printmode(COMPAT);
221 printmode(EPP);
222 printmode(ECP);
223 printmode(DMA);
224#undef printmode
225 }
226 buffer[len++] = '\n';
227
228 if (len > *lenp)
229 len = *lenp;
230 else
231 *lenp = len;
232
233 *ppos += len;
234
235 return copy_to_user(result, buffer, len) ? -EFAULT : 0;
236}
237
238#define PARPORT_PORT_DIR(CHILD) { .procname = NULL, .mode = 0555, .child = CHILD }
239#define PARPORT_PARPORT_DIR(CHILD) { .procname = "parport", \
240 .mode = 0555, .child = CHILD }
241#define PARPORT_DEV_DIR(CHILD) { .procname = "dev", .mode = 0555, .child = CHILD }
242#define PARPORT_DEVICES_ROOT_DIR { .procname = "devices", \
243 .mode = 0555, .child = NULL }
244
245static const unsigned long parport_min_timeslice_value =
246PARPORT_MIN_TIMESLICE_VALUE;
247
248static const unsigned long parport_max_timeslice_value =
249PARPORT_MAX_TIMESLICE_VALUE;
250
251static const int parport_min_spintime_value =
252PARPORT_MIN_SPINTIME_VALUE;
253
254static const int parport_max_spintime_value =
255PARPORT_MAX_SPINTIME_VALUE;
256
257
258struct parport_sysctl_table {
259 struct ctl_table_header *sysctl_header;
260 struct ctl_table vars[12];
261 struct ctl_table device_dir[2];
262 struct ctl_table port_dir[2];
263 struct ctl_table parport_dir[2];
264 struct ctl_table dev_dir[2];
265};
266
267static const struct parport_sysctl_table parport_sysctl_template = {
268 .sysctl_header = NULL,
269 {
270 {
271 .procname = "spintime",
272 .data = NULL,
273 .maxlen = sizeof(int),
274 .mode = 0644,
275 .proc_handler = proc_dointvec_minmax,
276 .extra1 = (void*) &parport_min_spintime_value,
277 .extra2 = (void*) &parport_max_spintime_value
278 },
279 {
280 .procname = "base-addr",
281 .data = NULL,
282 .maxlen = 0,
283 .mode = 0444,
284 .proc_handler = do_hardware_base_addr
285 },
286 {
287 .procname = "irq",
288 .data = NULL,
289 .maxlen = 0,
290 .mode = 0444,
291 .proc_handler = do_hardware_irq
292 },
293 {
294 .procname = "dma",
295 .data = NULL,
296 .maxlen = 0,
297 .mode = 0444,
298 .proc_handler = do_hardware_dma
299 },
300 {
301 .procname = "modes",
302 .data = NULL,
303 .maxlen = 0,
304 .mode = 0444,
305 .proc_handler = do_hardware_modes
306 },
307 PARPORT_DEVICES_ROOT_DIR,
308#ifdef CONFIG_PARPORT_1284
309 {
310 .procname = "autoprobe",
311 .data = NULL,
312 .maxlen = 0,
313 .mode = 0444,
314 .proc_handler = do_autoprobe
315 },
316 {
317 .procname = "autoprobe0",
318 .data = NULL,
319 .maxlen = 0,
320 .mode = 0444,
321 .proc_handler = do_autoprobe
322 },
323 {
324 .procname = "autoprobe1",
325 .data = NULL,
326 .maxlen = 0,
327 .mode = 0444,
328 .proc_handler = do_autoprobe
329 },
330 {
331 .procname = "autoprobe2",
332 .data = NULL,
333 .maxlen = 0,
334 .mode = 0444,
335 .proc_handler = do_autoprobe
336 },
337 {
338 .procname = "autoprobe3",
339 .data = NULL,
340 .maxlen = 0,
341 .mode = 0444,
342 .proc_handler = do_autoprobe
343 },
344#endif /* IEEE 1284 support */
345 {}
346 },
347 {
348 {
349 .procname = "active",
350 .data = NULL,
351 .maxlen = 0,
352 .mode = 0444,
353 .proc_handler = do_active_device
354 },
355 {}
356 },
357 {
358 PARPORT_PORT_DIR(NULL),
359 {}
360 },
361 {
362 PARPORT_PARPORT_DIR(NULL),
363 {}
364 },
365 {
366 PARPORT_DEV_DIR(NULL),
367 {}
368 }
369};
370
371struct parport_device_sysctl_table
372{
373 struct ctl_table_header *sysctl_header;
374 struct ctl_table vars[2];
375 struct ctl_table device_dir[2];
376 struct ctl_table devices_root_dir[2];
377 struct ctl_table port_dir[2];
378 struct ctl_table parport_dir[2];
379 struct ctl_table dev_dir[2];
380};
381
382static const struct parport_device_sysctl_table
383parport_device_sysctl_template = {
384 .sysctl_header = NULL,
385 {
386 {
387 .procname = "timeslice",
388 .data = NULL,
389 .maxlen = sizeof(unsigned long),
390 .mode = 0644,
391 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
392 .extra1 = (void*) &parport_min_timeslice_value,
393 .extra2 = (void*) &parport_max_timeslice_value
394 },
395 },
396 {
397 {
398 .procname = NULL,
399 .data = NULL,
400 .maxlen = 0,
401 .mode = 0555,
402 .child = NULL
403 },
404 {}
405 },
406 {
407 PARPORT_DEVICES_ROOT_DIR,
408 {}
409 },
410 {
411 PARPORT_PORT_DIR(NULL),
412 {}
413 },
414 {
415 PARPORT_PARPORT_DIR(NULL),
416 {}
417 },
418 {
419 PARPORT_DEV_DIR(NULL),
420 {}
421 }
422};
423
424struct parport_default_sysctl_table
425{
426 struct ctl_table_header *sysctl_header;
427 struct ctl_table vars[3];
428 struct ctl_table default_dir[2];
429 struct ctl_table parport_dir[2];
430 struct ctl_table dev_dir[2];
431};
432
433static struct parport_default_sysctl_table
434parport_default_sysctl_table = {
435 .sysctl_header = NULL,
436 {
437 {
438 .procname = "timeslice",
439 .data = &parport_default_timeslice,
440 .maxlen = sizeof(parport_default_timeslice),
441 .mode = 0644,
442 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
443 .extra1 = (void*) &parport_min_timeslice_value,
444 .extra2 = (void*) &parport_max_timeslice_value
445 },
446 {
447 .procname = "spintime",
448 .data = &parport_default_spintime,
449 .maxlen = sizeof(parport_default_spintime),
450 .mode = 0644,
451 .proc_handler = proc_dointvec_minmax,
452 .extra1 = (void*) &parport_min_spintime_value,
453 .extra2 = (void*) &parport_max_spintime_value
454 },
455 {}
456 },
457 {
458 {
459 .procname = "default",
460 .mode = 0555,
461 .child = parport_default_sysctl_table.vars
462 },
463 {}
464 },
465 {
466 PARPORT_PARPORT_DIR(parport_default_sysctl_table.default_dir),
467 {}
468 },
469 {
470 PARPORT_DEV_DIR(parport_default_sysctl_table.parport_dir),
471 {}
472 }
473};
474
475
476int parport_proc_register(struct parport *port)
477{
478 struct parport_sysctl_table *t;
479 int i;
480
481 t = kmemdup(&parport_sysctl_template, sizeof(*t), GFP_KERNEL);
482 if (t == NULL)
483 return -ENOMEM;
484
485 t->device_dir[0].extra1 = port;
486
487 for (i = 0; i < 5; i++)
488 t->vars[i].extra1 = port;
489
490 t->vars[0].data = &port->spintime;
491 t->vars[5].child = t->device_dir;
492
493 for (i = 0; i < 5; i++)
494 t->vars[6 + i].extra2 = &port->probe_info[i];
495
496 t->port_dir[0].procname = port->name;
497
498 t->port_dir[0].child = t->vars;
499 t->parport_dir[0].child = t->port_dir;
500 t->dev_dir[0].child = t->parport_dir;
501
502 t->sysctl_header = register_sysctl_table(t->dev_dir);
503 if (t->sysctl_header == NULL) {
504 kfree(t);
505 t = NULL;
506 }
507 port->sysctl_table = t;
508 return 0;
509}
510
511int parport_proc_unregister(struct parport *port)
512{
513 if (port->sysctl_table) {
514 struct parport_sysctl_table *t = port->sysctl_table;
515 port->sysctl_table = NULL;
516 unregister_sysctl_table(t->sysctl_header);
517 kfree(t);
518 }
519 return 0;
520}
521
522int parport_device_proc_register(struct pardevice *device)
523{
524 struct parport_device_sysctl_table *t;
525 struct parport * port = device->port;
526
527 t = kmemdup(&parport_device_sysctl_template, sizeof(*t), GFP_KERNEL);
528 if (t == NULL)
529 return -ENOMEM;
530
531 t->dev_dir[0].child = t->parport_dir;
532 t->parport_dir[0].child = t->port_dir;
533 t->port_dir[0].procname = port->name;
534 t->port_dir[0].child = t->devices_root_dir;
535 t->devices_root_dir[0].child = t->device_dir;
536
537 t->device_dir[0].procname = device->name;
538 t->device_dir[0].child = t->vars;
539 t->vars[0].data = &device->timeslice;
540
541 t->sysctl_header = register_sysctl_table(t->dev_dir);
542 if (t->sysctl_header == NULL) {
543 kfree(t);
544 t = NULL;
545 }
546 device->sysctl_table = t;
547 return 0;
548}
549
550int parport_device_proc_unregister(struct pardevice *device)
551{
552 if (device->sysctl_table) {
553 struct parport_device_sysctl_table *t = device->sysctl_table;
554 device->sysctl_table = NULL;
555 unregister_sysctl_table(t->sysctl_header);
556 kfree(t);
557 }
558 return 0;
559}
560
561static int __init parport_default_proc_register(void)
562{
563 int ret;
564
565 parport_default_sysctl_table.sysctl_header =
566 register_sysctl_table(parport_default_sysctl_table.dev_dir);
567 if (!parport_default_sysctl_table.sysctl_header)
568 return -ENOMEM;
569 ret = parport_bus_init();
570 if (ret) {
571 unregister_sysctl_table(parport_default_sysctl_table.
572 sysctl_header);
573 return ret;
574 }
575 return 0;
576}
577
578static void __exit parport_default_proc_unregister(void)
579{
580 if (parport_default_sysctl_table.sysctl_header) {
581 unregister_sysctl_table(parport_default_sysctl_table.
582 sysctl_header);
583 parport_default_sysctl_table.sysctl_header = NULL;
584 }
585 parport_bus_exit();
586}
587
588#else /* no sysctl or no procfs*/
589
590int parport_proc_register(struct parport *pp)
591{
592 return 0;
593}
594
595int parport_proc_unregister(struct parport *pp)
596{
597 return 0;
598}
599
600int parport_device_proc_register(struct pardevice *device)
601{
602 return 0;
603}
604
605int parport_device_proc_unregister(struct pardevice *device)
606{
607 return 0;
608}
609
610static int __init parport_default_proc_register (void)
611{
612 return parport_bus_init();
613}
614
615static void __exit parport_default_proc_unregister (void)
616{
617 parport_bus_exit();
618}
619#endif
620
621subsys_initcall(parport_default_proc_register)
622module_exit(parport_default_proc_unregister)