proc 2/2: remove struct proc_dir_entry::owner
[linux-2.6/mini2440.git] / drivers / isdn / hardware / eicon / divasi.c
blob69e71ebe7841830bf2af1dc68b894186b776cb91
1 /* $Id: divasi.c,v 1.25.6.2 2005/01/31 12:22:20 armin Exp $
3 * Driver for Eicon DIVA Server ISDN cards.
4 * User Mode IDI Interface
6 * Copyright 2000-2003 by Armin Schindler (mac@melware.de)
7 * Copyright 2000-2003 Cytronics & Melware (info@melware.de)
9 * This software may be used and distributed according to the terms
10 * of the GNU General Public License, incorporated herein by reference.
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/kernel.h>
16 #include <linux/sched.h>
17 #include <linux/poll.h>
18 #include <linux/proc_fs.h>
19 #include <linux/skbuff.h>
20 #include <linux/smp_lock.h>
21 #include <asm/uaccess.h>
23 #include "platform.h"
24 #include "di_defs.h"
25 #include "divasync.h"
26 #include "um_xdi.h"
27 #include "um_idi.h"
29 static char *main_revision = "$Revision: 1.25.6.2 $";
31 static int major;
33 MODULE_DESCRIPTION("User IDI Interface for Eicon ISDN cards");
34 MODULE_AUTHOR("Cytronics & Melware, Eicon Networks");
35 MODULE_SUPPORTED_DEVICE("DIVA card driver");
36 MODULE_LICENSE("GPL");
38 typedef struct _diva_um_idi_os_context {
39 wait_queue_head_t read_wait;
40 wait_queue_head_t close_wait;
41 struct timer_list diva_timer_id;
42 int aborted;
43 int adapter_nr;
44 } diva_um_idi_os_context_t;
46 static char *DRIVERNAME = "Eicon DIVA - User IDI (http://www.melware.net)";
47 static char *DRIVERLNAME = "diva_idi";
48 static char *DEVNAME = "DivasIDI";
49 char *DRIVERRELEASE_IDI = "2.0";
51 extern int idifunc_init(void);
52 extern void idifunc_finit(void);
55 * helper functions
57 static char *getrev(const char *revision)
59 char *rev;
60 char *p;
61 if ((p = strchr(revision, ':'))) {
62 rev = p + 2;
63 p = strchr(rev, '$');
64 *--p = 0;
65 } else
66 rev = "1.0";
67 return rev;
71 * LOCALS
73 static ssize_t um_idi_read(struct file *file, char __user *buf, size_t count,
74 loff_t * offset);
75 static ssize_t um_idi_write(struct file *file, const char __user *buf,
76 size_t count, loff_t * offset);
77 static unsigned int um_idi_poll(struct file *file, poll_table * wait);
78 static int um_idi_open(struct inode *inode, struct file *file);
79 static int um_idi_release(struct inode *inode, struct file *file);
80 static int remove_entity(void *entity);
81 static void diva_um_timer_function(unsigned long data);
84 * proc entry
86 extern struct proc_dir_entry *proc_net_eicon;
87 static struct proc_dir_entry *um_idi_proc_entry = NULL;
89 static int
90 um_idi_proc_read(char *page, char **start, off_t off, int count, int *eof,
91 void *data)
93 int len = 0;
94 char tmprev[32];
96 len += sprintf(page + len, "%s\n", DRIVERNAME);
97 len += sprintf(page + len, "name : %s\n", DRIVERLNAME);
98 len += sprintf(page + len, "release : %s\n", DRIVERRELEASE_IDI);
99 strcpy(tmprev, main_revision);
100 len += sprintf(page + len, "revision : %s\n", getrev(tmprev));
101 len += sprintf(page + len, "build : %s\n", DIVA_BUILD);
102 len += sprintf(page + len, "major : %d\n", major);
104 if (off + count >= len)
105 *eof = 1;
106 if (len < off)
107 return 0;
108 *start = page + off;
109 return ((count < len - off) ? count : len - off);
112 static int DIVA_INIT_FUNCTION create_um_idi_proc(void)
114 um_idi_proc_entry = create_proc_entry(DRIVERLNAME,
115 S_IFREG | S_IRUGO | S_IWUSR,
116 proc_net_eicon);
117 if (!um_idi_proc_entry)
118 return (0);
120 um_idi_proc_entry->read_proc = um_idi_proc_read;
122 return (1);
125 static void remove_um_idi_proc(void)
127 if (um_idi_proc_entry) {
128 remove_proc_entry(DRIVERLNAME, proc_net_eicon);
129 um_idi_proc_entry = NULL;
133 static const struct file_operations divas_idi_fops = {
134 .owner = THIS_MODULE,
135 .llseek = no_llseek,
136 .read = um_idi_read,
137 .write = um_idi_write,
138 .poll = um_idi_poll,
139 .open = um_idi_open,
140 .release = um_idi_release
143 static void divas_idi_unregister_chrdev(void)
145 unregister_chrdev(major, DEVNAME);
148 static int DIVA_INIT_FUNCTION divas_idi_register_chrdev(void)
150 if ((major = register_chrdev(0, DEVNAME, &divas_idi_fops)) < 0)
152 printk(KERN_ERR "%s: failed to create /dev entry.\n",
153 DRIVERLNAME);
154 return (0);
157 return (1);
161 ** Driver Load
163 static int DIVA_INIT_FUNCTION divasi_init(void)
165 char tmprev[50];
166 int ret = 0;
168 printk(KERN_INFO "%s\n", DRIVERNAME);
169 printk(KERN_INFO "%s: Rel:%s Rev:", DRIVERLNAME, DRIVERRELEASE_IDI);
170 strcpy(tmprev, main_revision);
171 printk("%s Build: %s\n", getrev(tmprev), DIVA_BUILD);
173 if (!divas_idi_register_chrdev()) {
174 ret = -EIO;
175 goto out;
178 if (!create_um_idi_proc()) {
179 divas_idi_unregister_chrdev();
180 printk(KERN_ERR "%s: failed to create proc entry.\n",
181 DRIVERLNAME);
182 ret = -EIO;
183 goto out;
186 if (!(idifunc_init())) {
187 remove_um_idi_proc();
188 divas_idi_unregister_chrdev();
189 printk(KERN_ERR "%s: failed to connect to DIDD.\n",
190 DRIVERLNAME);
191 ret = -EIO;
192 goto out;
194 printk(KERN_INFO "%s: started with major %d\n", DRIVERLNAME, major);
196 out:
197 return (ret);
202 ** Driver Unload
204 static void DIVA_EXIT_FUNCTION divasi_exit(void)
206 idifunc_finit();
207 remove_um_idi_proc();
208 divas_idi_unregister_chrdev();
210 printk(KERN_INFO "%s: module unloaded.\n", DRIVERLNAME);
213 module_init(divasi_init);
214 module_exit(divasi_exit);
218 * FILE OPERATIONS
221 static int
222 divas_um_idi_copy_to_user(void *os_handle, void *dst, const void *src,
223 int length)
225 memcpy(dst, src, length);
226 return (length);
229 static ssize_t
230 um_idi_read(struct file *file, char __user *buf, size_t count, loff_t * offset)
232 diva_um_idi_os_context_t *p_os;
233 int ret = -EINVAL;
234 void *data;
236 if (!file->private_data) {
237 return (-ENODEV);
240 if (!
241 (p_os =
242 (diva_um_idi_os_context_t *) diva_um_id_get_os_context(file->
243 private_data)))
245 return (-ENODEV);
247 if (p_os->aborted) {
248 return (-ENODEV);
251 if (!(data = diva_os_malloc(0, count))) {
252 return (-ENOMEM);
255 ret = diva_um_idi_read(file->private_data,
256 file, data, count,
257 divas_um_idi_copy_to_user);
258 switch (ret) {
259 case 0: /* no message available */
260 ret = (-EAGAIN);
261 break;
262 case (-1): /* adapter was removed */
263 ret = (-ENODEV);
264 break;
265 case (-2): /* message_length > length of user buffer */
266 ret = (-EFAULT);
267 break;
270 if (ret > 0) {
271 if (copy_to_user(buf, data, ret)) {
272 ret = (-EFAULT);
276 diva_os_free(0, data);
277 DBG_TRC(("read: ret %d", ret));
278 return (ret);
282 static int
283 divas_um_idi_copy_from_user(void *os_handle, void *dst, const void *src,
284 int length)
286 memcpy(dst, src, length);
287 return (length);
290 static int um_idi_open_adapter(struct file *file, int adapter_nr)
292 diva_um_idi_os_context_t *p_os;
293 void *e =
294 divas_um_idi_create_entity((dword) adapter_nr, (void *) file);
296 if (!(file->private_data = e)) {
297 return (0);
299 p_os = (diva_um_idi_os_context_t *) diva_um_id_get_os_context(e);
300 init_waitqueue_head(&p_os->read_wait);
301 init_waitqueue_head(&p_os->close_wait);
302 init_timer(&p_os->diva_timer_id);
303 p_os->diva_timer_id.function = (void *) diva_um_timer_function;
304 p_os->diva_timer_id.data = (unsigned long) p_os;
305 p_os->aborted = 0;
306 p_os->adapter_nr = adapter_nr;
307 return (1);
310 static ssize_t
311 um_idi_write(struct file *file, const char __user *buf, size_t count,
312 loff_t * offset)
314 diva_um_idi_os_context_t *p_os;
315 int ret = -EINVAL;
316 void *data;
317 int adapter_nr = 0;
319 if (!file->private_data) {
320 /* the first write() selects the adapter_nr */
321 if (count == sizeof(int)) {
322 if (copy_from_user
323 ((void *) &adapter_nr, buf,
324 count)) return (-EFAULT);
325 if (!(um_idi_open_adapter(file, adapter_nr)))
326 return (-ENODEV);
327 return (count);
328 } else
329 return (-ENODEV);
332 if (!(p_os =
333 (diva_um_idi_os_context_t *) diva_um_id_get_os_context(file->
334 private_data)))
336 return (-ENODEV);
338 if (p_os->aborted) {
339 return (-ENODEV);
342 if (!(data = diva_os_malloc(0, count))) {
343 return (-ENOMEM);
346 if (copy_from_user(data, buf, count)) {
347 ret = -EFAULT;
348 } else {
349 ret = diva_um_idi_write(file->private_data,
350 file, data, count,
351 divas_um_idi_copy_from_user);
352 switch (ret) {
353 case 0: /* no space available */
354 ret = (-EAGAIN);
355 break;
356 case (-1): /* adapter was removed */
357 ret = (-ENODEV);
358 break;
359 case (-2): /* length of user buffer > max message_length */
360 ret = (-EFAULT);
361 break;
364 diva_os_free(0, data);
365 DBG_TRC(("write: ret %d", ret));
366 return (ret);
369 static unsigned int um_idi_poll(struct file *file, poll_table * wait)
371 diva_um_idi_os_context_t *p_os;
373 if (!file->private_data) {
374 return (POLLERR);
377 if ((!(p_os =
378 (diva_um_idi_os_context_t *)
379 diva_um_id_get_os_context(file->private_data)))
380 || p_os->aborted) {
381 return (POLLERR);
384 poll_wait(file, &p_os->read_wait, wait);
386 if (p_os->aborted) {
387 return (POLLERR);
390 switch (diva_user_mode_idi_ind_ready(file->private_data, file)) {
391 case (-1):
392 return (POLLERR);
394 case 0:
395 return (0);
398 return (POLLIN | POLLRDNORM);
401 static int um_idi_open(struct inode *inode, struct file *file)
403 cycle_kernel_lock();
404 return (0);
408 static int um_idi_release(struct inode *inode, struct file *file)
410 diva_um_idi_os_context_t *p_os;
411 unsigned int adapter_nr;
412 int ret = 0;
414 if (!(file->private_data)) {
415 ret = -ENODEV;
416 goto out;
419 if (!(p_os =
420 (diva_um_idi_os_context_t *) diva_um_id_get_os_context(file->private_data))) {
421 ret = -ENODEV;
422 goto out;
425 adapter_nr = p_os->adapter_nr;
427 if ((ret = remove_entity(file->private_data))) {
428 goto out;
431 if (divas_um_idi_delete_entity
432 ((int) adapter_nr, file->private_data)) {
433 ret = -ENODEV;
434 goto out;
437 out:
438 return (ret);
441 int diva_os_get_context_size(void)
443 return (sizeof(diva_um_idi_os_context_t));
446 void diva_os_wakeup_read(void *os_context)
448 diva_um_idi_os_context_t *p_os =
449 (diva_um_idi_os_context_t *) os_context;
450 wake_up_interruptible(&p_os->read_wait);
453 void diva_os_wakeup_close(void *os_context)
455 diva_um_idi_os_context_t *p_os =
456 (diva_um_idi_os_context_t *) os_context;
457 wake_up_interruptible(&p_os->close_wait);
460 static
461 void diva_um_timer_function(unsigned long data)
463 diva_um_idi_os_context_t *p_os = (diva_um_idi_os_context_t *) data;
465 p_os->aborted = 1;
466 wake_up_interruptible(&p_os->read_wait);
467 wake_up_interruptible(&p_os->close_wait);
468 DBG_ERR(("entity removal watchdog"))
472 ** If application exits without entity removal this function will remove
473 ** entity and block until removal is complete
475 static int remove_entity(void *entity)
477 struct task_struct *curtask = current;
478 diva_um_idi_os_context_t *p_os;
480 diva_um_idi_stop_wdog(entity);
482 if (!entity) {
483 DBG_FTL(("Zero entity on remove"))
484 return (0);
487 if (!(p_os =
488 (diva_um_idi_os_context_t *)
489 diva_um_id_get_os_context(entity))) {
490 DBG_FTL(("Zero entity os context on remove"))
491 return (0);
494 if (!divas_um_idi_entity_assigned(entity) || p_os->aborted) {
496 Entity is not assigned, also can be removed
498 return (0);
501 DBG_TRC(("E(%08x) check remove", entity))
504 If adapter not answers on remove request inside of
505 10 Sec, then adapter is dead
507 diva_um_idi_start_wdog(entity);
510 DECLARE_WAITQUEUE(wait, curtask);
512 add_wait_queue(&p_os->close_wait, &wait);
513 for (;;) {
514 set_current_state(TASK_INTERRUPTIBLE);
515 if (!divas_um_idi_entity_start_remove(entity)
516 || p_os->aborted) {
517 break;
519 schedule();
521 set_current_state(TASK_RUNNING);
522 remove_wait_queue(&p_os->close_wait, &wait);
525 DBG_TRC(("E(%08x) start remove", entity))
527 DECLARE_WAITQUEUE(wait, curtask);
529 add_wait_queue(&p_os->close_wait, &wait);
530 for (;;) {
531 set_current_state(TASK_INTERRUPTIBLE);
532 if (!divas_um_idi_entity_assigned(entity)
533 || p_os->aborted) {
534 break;
536 schedule();
538 set_current_state(TASK_RUNNING);
539 remove_wait_queue(&p_os->close_wait, &wait);
542 DBG_TRC(("E(%08x) remove complete, aborted:%d", entity,
543 p_os->aborted))
545 diva_um_idi_stop_wdog(entity);
547 p_os->aborted = 0;
549 return (0);
553 * timer watchdog
555 void diva_um_idi_start_wdog(void *entity)
557 diva_um_idi_os_context_t *p_os;
559 if (entity &&
560 ((p_os =
561 (diva_um_idi_os_context_t *)
562 diva_um_id_get_os_context(entity)))) {
563 mod_timer(&p_os->diva_timer_id, jiffies + 10 * HZ);
567 void diva_um_idi_stop_wdog(void *entity)
569 diva_um_idi_os_context_t *p_os;
571 if (entity &&
572 ((p_os =
573 (diva_um_idi_os_context_t *)
574 diva_um_id_get_os_context(entity)))) {
575 del_timer(&p_os->diva_timer_id);