ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / drivers / char / misc.c
1 /*
2  * linux/drivers/char/misc.c
3  *
4  * Generic misc open routine by Johan Myreen
5  *
6  * Based on code from Linus
7  *
8  * Teemu Rantanen's Microsoft Busmouse support and Derrick Cole's
9  *   changes incorporated into 0.97pl4
10  *   by Peter Cervasio (pete%q106fm.uucp@wupost.wustl.edu) (08SEP92)
11  *   See busmouse.c for particulars.
12  *
13  * Made things a lot mode modular - easy to compile in just one or two
14  * of the misc drivers, as they are now completely independent. Linus.
15  *
16  * Support for loadable modules. 8-Sep-95 Philip Blundell <pjb27@cam.ac.uk>
17  *
18  * Fixed a failing symbol register to free the device registration
19  *              Alan Cox <alan@lxorguk.ukuu.org.uk> 21-Jan-96
20  *
21  * Dynamic minors and /proc/mice by Alessandro Rubini. 26-Mar-96
22  *
23  * Renamed to misc and miscdevice to be more accurate. Alan Cox 26-Mar-96
24  *
25  * Handling of mouse minor numbers for kerneld:
26  *  Idea by Jacques Gelinas <jack@solucorp.qc.ca>,
27  *  adapted by Bjorn Ekwall <bj0rn@blox.se>
28  *  corrected by Alan Cox <alan@lxorguk.ukuu.org.uk>
29  *
30  * Changes for kmod (from kerneld):
31  *      Cyrus Durgin <cider@speakeasy.org>
32  *
33  * Added devfs support. Richard Gooch <rgooch@atnf.csiro.au>  10-Jan-1998
34  */
35
36 #include <linux/module.h>
37 #include <linux/config.h>
38
39 #include <linux/fs.h>
40 #include <linux/errno.h>
41 #include <linux/miscdevice.h>
42 #include <linux/kernel.h>
43 #include <linux/major.h>
44 #include <linux/slab.h>
45 #include <linux/proc_fs.h>
46 #include <linux/seq_file.h>
47 #include <linux/devfs_fs_kernel.h>
48 #include <linux/stat.h>
49 #include <linux/init.h>
50 #include <linux/device.h>
51 #include <linux/tty.h>
52 #include <linux/kmod.h>
53
54 /*
55  * Head entry for the doubly linked miscdevice list
56  */
57 static LIST_HEAD(misc_list);
58 static DECLARE_MUTEX(misc_sem);
59
60 /*
61  * Assigned numbers, used for dynamic minors
62  */
63 #define DYNAMIC_MINORS 64 /* like dynamic majors */
64 static unsigned char misc_minors[DYNAMIC_MINORS / 8];
65
66 #ifdef CONFIG_SGI_NEWPORT_GFX
67 extern void gfx_register(void);
68 #endif
69 extern void streamable_init(void);
70 extern int rtc_DP8570A_init(void);
71 extern int rtc_MK48T08_init(void);
72 extern int ds1286_init(void);
73 extern int pmu_device_init(void);
74 extern int tosh_init(void);
75 extern int i8k_init(void);
76
77 #ifdef CONFIG_PROC_FS
78 static void *misc_seq_start(struct seq_file *seq, loff_t *pos)
79 {
80         struct miscdevice *p;
81         loff_t off = 0;
82
83         down(&misc_sem);
84         list_for_each_entry(p, &misc_list, list) {
85                 if (*pos == off++) 
86                         return p;
87         }
88         return NULL;
89 }
90
91 static void *misc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
92 {
93         struct list_head *n = ((struct miscdevice *)v)->list.next;
94
95         ++*pos;
96
97         return (n != &misc_list) ? list_entry(n, struct miscdevice, list)
98                  : NULL;
99 }
100
101 static void misc_seq_stop(struct seq_file *seq, void *v)
102 {
103         up(&misc_sem);
104 }
105
106 static int misc_seq_show(struct seq_file *seq, void *v)
107 {
108         const struct miscdevice *p = v;
109
110         seq_printf(seq, "%3i %s\n", p->minor, p->name ? p->name : "");
111         return 0;
112 }
113
114
115 static struct seq_operations misc_seq_ops = {
116         .start = misc_seq_start,
117         .next  = misc_seq_next,
118         .stop  = misc_seq_stop,
119         .show  = misc_seq_show,
120 };
121
122 static int misc_seq_open(struct inode *inode, struct file *file)
123 {
124         return seq_open(file, &misc_seq_ops);
125 }
126
127 static struct file_operations misc_proc_fops = {
128         .owner   = THIS_MODULE,
129         .open    = misc_seq_open,
130         .read    = seq_read,
131         .llseek  = seq_lseek,
132         .release = seq_release,
133 };
134 #endif
135
136 static int misc_open(struct inode * inode, struct file * file)
137 {
138         int minor = iminor(inode);
139         struct miscdevice *c;
140         int err = -ENODEV;
141         struct file_operations *old_fops, *new_fops = NULL;
142         
143         down(&misc_sem);
144         
145         list_for_each_entry(c, &misc_list, list) {
146                 if (c->minor == minor) {
147                         new_fops = fops_get(c->fops);           
148                         break;
149                 }
150         }
151                 
152         if (!new_fops) {
153                 up(&misc_sem);
154                 request_module("char-major-%d-%d", MISC_MAJOR, minor);
155                 down(&misc_sem);
156
157                 list_for_each_entry(c, &misc_list, list) {
158                         if (c->minor == minor) {
159                                 new_fops = fops_get(c->fops);
160                                 break;
161                         }
162                 }
163                 if (!new_fops)
164                         goto fail;
165         }
166
167         err = 0;
168         old_fops = file->f_op;
169         file->f_op = new_fops;
170         if (file->f_op->open) {
171                 err=file->f_op->open(inode,file);
172                 if (err) {
173                         fops_put(file->f_op);
174                         file->f_op = fops_get(old_fops);
175                 }
176         }
177         fops_put(old_fops);
178 fail:
179         up(&misc_sem);
180         return err;
181 }
182
183 /* 
184  * TODO for 2.7:
185  *  - add a struct class_device to struct miscdevice and make all usages of
186  *    them dynamic.
187  */
188 static struct class_simple *misc_class;
189
190 static struct file_operations misc_fops = {
191         .owner          = THIS_MODULE,
192         .open           = misc_open,
193 };
194
195
196 /**
197  *      misc_register   -       register a miscellaneous device
198  *      @misc: device structure
199  *      
200  *      Register a miscellaneous device with the kernel. If the minor
201  *      number is set to %MISC_DYNAMIC_MINOR a minor number is assigned
202  *      and placed in the minor field of the structure. For other cases
203  *      the minor number requested is used.
204  *
205  *      The structure passed is linked into the kernel and may not be
206  *      destroyed until it has been unregistered.
207  *
208  *      A zero is returned on success and a negative errno code for
209  *      failure.
210  */
211  
212 int misc_register(struct miscdevice * misc)
213 {
214         struct miscdevice *c;
215         struct class_device *class;
216         dev_t dev;
217         int err;
218         
219         down(&misc_sem);
220         list_for_each_entry(c, &misc_list, list) {
221                 if (c->minor == misc->minor) {
222                         up(&misc_sem);
223                         return -EBUSY;
224                 }
225         }
226
227         if (misc->minor == MISC_DYNAMIC_MINOR) {
228                 int i = DYNAMIC_MINORS;
229                 while (--i >= 0)
230                         if ( (misc_minors[i>>3] & (1 << (i&7))) == 0)
231                                 break;
232                 if (i<0)
233                 {
234                         up(&misc_sem);
235                         return -EBUSY;
236                 }
237                 misc->minor = i;
238         }
239
240         if (misc->minor < DYNAMIC_MINORS)
241                 misc_minors[misc->minor >> 3] |= 1 << (misc->minor & 7);
242         if (misc->devfs_name[0] == '\0') {
243                 snprintf(misc->devfs_name, sizeof(misc->devfs_name),
244                                 "misc/%s", misc->name);
245         }
246         dev = MKDEV(MISC_MAJOR, misc->minor);
247
248         class = class_simple_device_add(misc_class, dev,
249                                         misc->dev, misc->name);
250         if (IS_ERR(class)) {
251                 err = PTR_ERR(class);
252                 goto out;
253         }
254
255         err = devfs_mk_cdev(dev, S_IFCHR|S_IRUSR|S_IWUSR|S_IRGRP, 
256                             misc->devfs_name);
257         if (err) {
258                 class_simple_device_remove(dev);
259                 goto out;
260         }
261
262         /*
263          * Add it to the front, so that later devices can "override"
264          * earlier defaults
265          */
266         list_add(&misc->list, &misc_list);
267  out:
268         up(&misc_sem);
269         return err;
270 }
271
272 /**
273  *      misc_deregister - unregister a miscellaneous device
274  *      @misc: device to unregister
275  *
276  *      Unregister a miscellaneous device that was previously
277  *      successfully registered with misc_register(). Success
278  *      is indicated by a zero return, a negative errno code
279  *      indicates an error.
280  */
281
282 int misc_deregister(struct miscdevice * misc)
283 {
284         int i = misc->minor;
285
286         if (list_empty(&misc->list))
287                 return -EINVAL;
288
289         down(&misc_sem);
290         list_del(&misc->list);
291         class_simple_device_remove(MKDEV(MISC_MAJOR, misc->minor));
292         devfs_remove(misc->devfs_name);
293         if (i < DYNAMIC_MINORS && i>0) {
294                 misc_minors[i>>3] &= ~(1 << (misc->minor & 7));
295         }
296         up(&misc_sem);
297         return 0;
298 }
299
300 EXPORT_SYMBOL(misc_register);
301 EXPORT_SYMBOL(misc_deregister);
302
303 static int __init misc_init(void)
304 {
305 #ifdef CONFIG_PROC_FS
306         struct proc_dir_entry *ent;
307
308         ent = create_proc_entry("misc", 0, NULL);
309         if (ent)
310                 ent->proc_fops = &misc_proc_fops;
311 #endif
312         misc_class = class_simple_create(THIS_MODULE, "misc");
313         if (IS_ERR(misc_class))
314                 return PTR_ERR(misc_class);
315 #ifdef CONFIG_MVME16x
316         rtc_MK48T08_init();
317 #endif
318 #ifdef CONFIG_BVME6000
319         rtc_DP8570A_init();
320 #endif
321 #ifdef CONFIG_SGI_DS1286
322         ds1286_init();
323 #endif
324 #ifdef CONFIG_PMAC_PBOOK
325         pmu_device_init();
326 #endif
327 #ifdef CONFIG_SGI_NEWPORT_GFX
328         gfx_register ();
329 #endif
330 #ifdef CONFIG_SGI_IP22
331         streamable_init ();
332 #endif
333 #ifdef CONFIG_SGI_NEWPORT_GFX
334         gfx_register ();
335 #endif
336 #ifdef CONFIG_TOSHIBA
337         tosh_init();
338 #endif
339 #ifdef CONFIG_I8K
340         i8k_init();
341 #endif
342         if (register_chrdev(MISC_MAJOR,"misc",&misc_fops)) {
343                 printk("unable to get major %d for misc devices\n",
344                        MISC_MAJOR);
345                 class_simple_destroy(misc_class);
346                 return -EIO;
347         }
348         return 0;
349 }
350 subsys_initcall(misc_init);