1 /* $Id: divasproc.c,v 1.19.4.3 2005/01/31 12:22:20 armin Exp $
3 * Low level driver for Eicon DIVA Server ISDN cards.
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/kernel.h>
15 #include <linux/poll.h>
16 #include <linux/proc_fs.h>
17 #include <linux/list.h>
18 #include <asm/uaccess.h>
30 #include "xdi_adapter.h"
35 extern PISDN_ADAPTER IoAdapters[MAX_ADAPTER];
36 extern void divas_get_version(char *);
37 extern void diva_get_vserial_number(PISDN_ADAPTER IoAdapter, char *buf);
39 /*********************************************************
40 ** Functions for /proc interface / File operations
41 *********************************************************/
43 static char *divas_proc_name = "divas";
44 static char *adapter_dir_name = "adapter";
45 static char *info_proc_name = "info";
46 static char *grp_opt_proc_name = "group_optimization";
47 static char *d_l1_down_proc_name = "dynamic_l1_down";
53 extern struct proc_dir_entry *proc_net_eicon;
54 static struct proc_dir_entry *divas_proc_entry = NULL;
57 divas_read(struct file *file, char __user *buf, size_t count, loff_t * off)
67 divas_get_version(tmpbuf);
68 if (copy_to_user(buf + len, &tmpbuf, strlen(tmpbuf)))
70 len += strlen(tmpbuf);
72 for (cadapter = 0; cadapter < MAX_ADAPTER; cadapter++) {
73 if (IoAdapters[cadapter]) {
74 diva_get_vserial_number(IoAdapters[cadapter],
77 "%2d: %-30s Serial:%-10s IRQ:%2d\n",
79 IoAdapters[cadapter]->Properties.Name,
81 IoAdapters[cadapter]->irq_info.irq_nr);
82 if ((strlen(tmpbuf) + len) > count)
86 strlen(tmpbuf))) return -EFAULT;
87 len += strlen(tmpbuf);
96 divas_write(struct file *file, const char __user *buf, size_t count, loff_t * off)
101 static unsigned int divas_poll(struct file *file, poll_table * wait)
106 static int divas_open(struct inode *inode, struct file *file)
108 return nonseekable_open(inode, file);
111 static int divas_close(struct inode *inode, struct file *file)
116 static struct file_operations divas_fops = {
117 .owner = THIS_MODULE,
120 .write = divas_write,
123 .release = divas_close
126 int create_divas_proc(void)
128 divas_proc_entry = create_proc_entry(divas_proc_name,
131 if (!divas_proc_entry)
134 divas_proc_entry->proc_fops = &divas_fops;
135 divas_proc_entry->owner = THIS_MODULE;
140 void remove_divas_proc(void)
142 if (divas_proc_entry) {
143 remove_proc_entry(divas_proc_name, proc_net_eicon);
144 divas_proc_entry = NULL;
149 ** write group_optimization
152 write_grp_opt(struct file *file, const char __user *buffer, unsigned long count,
155 diva_os_xdi_adapter_t *a = (diva_os_xdi_adapter_t *) data;
156 PISDN_ADAPTER IoAdapter = IoAdapters[a->controller - 1];
158 if ((count == 1) || (count == 2)) {
160 if (get_user(c, buffer))
164 IoAdapter->capi_cfg.cfg_1 &=
165 ~DIVA_XDI_CAPI_CFG_1_GROUP_POPTIMIZATION_ON;
168 IoAdapter->capi_cfg.cfg_1 |=
169 DIVA_XDI_CAPI_CFG_1_GROUP_POPTIMIZATION_ON;
180 ** write dynamic_l1_down
183 write_d_l1_down(struct file *file, const char __user *buffer, unsigned long count,
186 diva_os_xdi_adapter_t *a = (diva_os_xdi_adapter_t *) data;
187 PISDN_ADAPTER IoAdapter = IoAdapters[a->controller - 1];
189 if ((count == 1) || (count == 2)) {
191 if (get_user(c, buffer))
195 IoAdapter->capi_cfg.cfg_1 &=
196 ~DIVA_XDI_CAPI_CFG_1_DYNAMIC_L1_ON;
199 IoAdapter->capi_cfg.cfg_1 |=
200 DIVA_XDI_CAPI_CFG_1_DYNAMIC_L1_ON;
212 ** read dynamic_l1_down
215 read_d_l1_down(char *page, char **start, off_t off, int count, int *eof,
219 diva_os_xdi_adapter_t *a = (diva_os_xdi_adapter_t *) data;
220 PISDN_ADAPTER IoAdapter = IoAdapters[a->controller - 1];
222 len += sprintf(page + len, "%s\n",
223 (IoAdapter->capi_cfg.
224 cfg_1 & DIVA_XDI_CAPI_CFG_1_DYNAMIC_L1_ON) ? "1" :
227 if (off + count >= len)
232 return ((count < len - off) ? count : len - off);
236 ** read group_optimization
239 read_grp_opt(char *page, char **start, off_t off, int count, int *eof,
243 diva_os_xdi_adapter_t *a = (diva_os_xdi_adapter_t *) data;
244 PISDN_ADAPTER IoAdapter = IoAdapters[a->controller - 1];
246 len += sprintf(page + len, "%s\n",
247 (IoAdapter->capi_cfg.
248 cfg_1 & DIVA_XDI_CAPI_CFG_1_GROUP_POPTIMIZATION_ON)
251 if (off + count >= len)
256 return ((count < len - off) ? count : len - off);
263 info_write(struct file *file, const char __user *buffer, unsigned long count,
266 diva_os_xdi_adapter_t *a = (diva_os_xdi_adapter_t *) data;
267 PISDN_ADAPTER IoAdapter = IoAdapters[a->controller - 1];
273 if (copy_from_user(c, buffer, 4))
276 /* this is for test purposes only */
277 if (!memcmp(c, "trap", 4)) {
278 (*(IoAdapter->os_trap_nfy_Fnc)) (IoAdapter, IoAdapter->ANum);
288 info_read(char *page, char **start, off_t off, int count, int *eof,
295 diva_os_xdi_adapter_t *a = (diva_os_xdi_adapter_t *) data;
296 PISDN_ADAPTER IoAdapter = IoAdapters[a->controller - 1];
299 sprintf(page + len, "Name : %s\n",
300 IoAdapter->Properties.Name);
301 len += sprintf(page + len, "DSP state : %08x\n", a->dsp_mask);
302 len += sprintf(page + len, "Channels : %02d\n",
303 IoAdapter->Properties.Channels);
304 len += sprintf(page + len, "E. max/used : %03d/%03d\n",
305 IoAdapter->e_max, IoAdapter->e_count);
306 diva_get_vserial_number(IoAdapter, tmpser);
307 len += sprintf(page + len, "Serial : %s\n", tmpser);
309 sprintf(page + len, "IRQ : %d\n",
310 IoAdapter->irq_info.irq_nr);
311 len += sprintf(page + len, "CardIndex : %d\n", a->CardIndex);
312 len += sprintf(page + len, "CardOrdinal : %d\n", a->CardOrdinal);
313 len += sprintf(page + len, "Controller : %d\n", a->controller);
314 len += sprintf(page + len, "Bus-Type : %s\n",
316 DIVAS_XDI_ADAPTER_BUS_ISA) ? "ISA" : "PCI");
317 len += sprintf(page + len, "Port-Name : %s\n", a->port_name);
318 if (a->Bus == DIVAS_XDI_ADAPTER_BUS_PCI) {
320 sprintf(page + len, "PCI-bus : %d\n",
321 a->resources.pci.bus);
323 sprintf(page + len, "PCI-func : %d\n",
324 a->resources.pci.func);
325 for (i = 0; i < 8; i++) {
326 if (a->resources.pci.bar[i]) {
329 "Mem / I/O %d : 0x%x / mapped : 0x%lx",
330 i, a->resources.pci.bar[i],
331 (unsigned long) a->resources.
333 if (a->resources.pci.length[i]) {
340 len += sprintf(page + len, "\n");
344 if ((!a->xdi_adapter.port) &&
345 ((!a->xdi_adapter.ram) ||
346 (!a->xdi_adapter.reset)
347 || (!a->xdi_adapter.cfg))) {
348 if (!IoAdapter->irq_info.irq_nr) {
351 p = "out of service";
353 } else if (a->xdi_adapter.trapped) {
355 } else if (a->xdi_adapter.Initialized) {
360 len += sprintf(page + len, "State : %s\n", p);
362 if (off + count >= len)
367 return ((count < len - off) ? count : len - off);
371 ** adapter proc init/de-init
374 /* --------------------------------------------------------------------------
375 Create adapter directory and files in proc file system
376 -------------------------------------------------------------------------- */
377 int create_adapter_proc(diva_os_xdi_adapter_t * a)
379 struct proc_dir_entry *de, *pe;
382 sprintf(tmp, "%s%d", adapter_dir_name, a->controller);
383 if (!(de = proc_mkdir(tmp, proc_net_eicon)))
385 a->proc_adapter_dir = (void *) de;
388 create_proc_entry(info_proc_name, S_IFREG | S_IRUGO | S_IWUSR, de)))
390 a->proc_info = (void *) pe;
391 pe->write_proc = info_write;
392 pe->read_proc = info_read;
395 if ((pe = create_proc_entry(grp_opt_proc_name,
396 S_IFREG | S_IRUGO | S_IWUSR, de))) {
397 a->proc_grp_opt = (void *) pe;
398 pe->write_proc = write_grp_opt;
399 pe->read_proc = read_grp_opt;
402 if ((pe = create_proc_entry(d_l1_down_proc_name,
403 S_IFREG | S_IRUGO | S_IWUSR, de))) {
404 a->proc_d_l1_down = (void *) pe;
405 pe->write_proc = write_d_l1_down;
406 pe->read_proc = read_d_l1_down;
410 DBG_TRC(("proc entry %s created", tmp));
415 /* --------------------------------------------------------------------------
416 Remove adapter directory and files in proc file system
417 -------------------------------------------------------------------------- */
418 void remove_adapter_proc(diva_os_xdi_adapter_t * a)
422 if (a->proc_adapter_dir) {
423 if (a->proc_d_l1_down) {
424 remove_proc_entry(d_l1_down_proc_name,
425 (struct proc_dir_entry *) a->proc_adapter_dir);
427 if (a->proc_grp_opt) {
428 remove_proc_entry(grp_opt_proc_name,
429 (struct proc_dir_entry *) a->proc_adapter_dir);
432 remove_proc_entry(info_proc_name,
433 (struct proc_dir_entry *) a->proc_adapter_dir);
435 sprintf(tmp, "%s%d", adapter_dir_name, a->controller);
436 remove_proc_entry(tmp, proc_net_eicon);
437 DBG_TRC(("proc entry %s%d removed", adapter_dir_name,