📄 b1.c
字号:
/* * $Id: b1.c,v 1.20 2000/11/23 20:45:14 kai Exp $ * * Common module for AVM B1 cards. * * (c) Copyright 1999 by Carsten Paeth (calle@calle.in-berlin.de) * * $Log: b1.c,v $ * Revision 1.20 2000/11/23 20:45:14 kai * fixed module_init/exit stuff * Note: compiled-in kernel doesn't work pre 2.2.18 anymore. * * Revision 1.19 2000/11/19 17:02:47 kai * compatibility cleanup - part 3 * * Revision 1.18 2000/11/19 17:01:53 kai * compatibility cleanup - part 2 * * Revision 1.17 2000/11/01 14:05:02 calle * - use module_init/module_exit from linux/init.h. * - all static struct variables are initialized with "membername:" now. * - avm_cs.c, let it work with newer pcmcia-cs. * * Revision 1.16 2000/08/04 15:36:31 calle * copied wrong from file to file :-( * * Revision 1.15 2000/08/04 12:20:08 calle * - Fix unsigned/signed warning in the right way ... * * Revision 1.14 2000/06/19 16:51:53 keil * don't free skb in irq context * * Revision 1.13 2000/01/25 14:33:38 calle * - Added Support AVM B1 PCI V4.0 (tested with prototype) * - splitted up t1pci.c into b1dma.c for common function with b1pciv4 * - support for revision register * * Revision 1.12 1999/11/05 16:38:01 calle * Cleanups before kernel 2.4: * - Changed all messages to use card->name or driver->name instead of * constant string. * - Moved some data from struct avmcard into new struct avmctrl_info. * Changed all lowlevel capi driver to match the new structur. * * Revision 1.11 1999/10/11 22:04:12 keil * COMPAT_NEED_UACCESS (no include in isdn_compat.h) * * Revision 1.10 1999/09/15 08:16:03 calle * Implementation of 64Bit extention complete. * * Revision 1.9 1999/09/07 09:02:53 calle * SETDATA removed. Now inside the kernel the datapart of DATA_B3_REQ and * DATA_B3_IND is always directly after the CAPI message. The "Data" member * ist never used inside the kernel. * * Revision 1.8 1999/08/22 20:26:22 calle * backported changes from kernel 2.3.14: * - several #include "config.h" gone, others come. * - "struct device" changed to "struct net_device" in 2.3.14, added a * define in isdn_compat.h for older kernel versions. * * Revision 1.7 1999/08/04 10:10:09 calle * Bugfix: corrected /proc functions, added structure for new AVM cards. * * Revision 1.6 1999/07/23 08:51:04 calle * small fix and typo in checkin before. * * Revision 1.5 1999/07/23 08:41:48 calle * prepared for new AVM cards. * * Revision 1.4 1999/07/09 15:05:38 keil * compat.h is now isdn_compat.h * * Revision 1.3 1999/07/06 07:41:59 calle * - changes in /proc interface * - check and changed calls to [dev_]kfree_skb and [dev_]alloc_skb. * * Revision 1.2 1999/07/05 15:09:47 calle * - renamed "appl_release" to "appl_released". * - version und profile data now cleared on controller reset * - extended /proc interface, to allow driver and controller specific * informations to include by driver hackers. * * Revision 1.1 1999/07/01 15:26:23 calle * complete new version (I love it): * + new hardware independed "capi_driver" interface that will make it easy to: * - support other controllers with CAPI-2.0 (i.e. USB Controller) * - write a CAPI-2.0 for the passive cards * - support serial link CAPI-2.0 boxes. * + wrote "capi_driver" for all supported cards. * + "capi_driver" (supported cards) now have to be configured with * make menuconfig, in the past all supported cards where included * at once. * + new and better informations in /proc/capi/ * + new ioctl to switch trace of capi messages per controller * using "avmcapictrl trace [contr] on|off|...." * + complete testcircle with all supported cards and also the * PCMCIA cards (now patch for pcmcia-cs-3.0.13 needed) done. * * */#include <linux/module.h>#include <linux/kernel.h>#include <linux/skbuff.h>#include <linux/delay.h>#include <linux/mm.h>#include <linux/interrupt.h>#include <linux/ioport.h>#include <linux/capi.h>#include <asm/io.h>#include <linux/init.h>#include <asm/uaccess.h>#include <linux/netdevice.h>#include "capilli.h"#include "avmcard.h"#include "capicmd.h"#include "capiutil.h"static char *revision = "$Revision: 1.20 $";/* ------------------------------------------------------------- */MODULE_AUTHOR("Carsten Paeth <calle@calle.in-berlin.de>");/* ------------------------------------------------------------- */int b1_irq_table[16] ={0, 0, 0, 192, /* irq 3 */ 32, /* irq 4 */ 160, /* irq 5 */ 96, /* irq 6 */ 224, /* irq 7 */ 0, 64, /* irq 9 */ 80, /* irq 10 */ 208, /* irq 11 */ 48, /* irq 12 */ 0, 0, 112, /* irq 15 */};/* ------------------------------------------------------------- */int b1_detect(unsigned int base, enum avmcardtype cardtype){ int onoff, i; /* * Statusregister 0000 00xx */ if ((inb(base + B1_INSTAT) & 0xfc) || (inb(base + B1_OUTSTAT) & 0xfc)) return 1; /* * Statusregister 0000 001x */ b1outp(base, B1_INSTAT, 0x2); /* enable irq */ /* b1outp(base, B1_OUTSTAT, 0x2); */ if ((inb(base + B1_INSTAT) & 0xfe) != 0x2 /* || (inb(base + B1_OUTSTAT) & 0xfe) != 0x2 */) return 2; /* * Statusregister 0000 000x */ b1outp(base, B1_INSTAT, 0x0); /* disable irq */ b1outp(base, B1_OUTSTAT, 0x0); if ((inb(base + B1_INSTAT) & 0xfe) || (inb(base + B1_OUTSTAT) & 0xfe)) return 3; for (onoff = !0, i= 0; i < 10 ; i++) { b1_set_test_bit(base, cardtype, onoff); if (b1_get_test_bit(base, cardtype) != onoff) return 4; onoff = !onoff; } if (cardtype == avm_m1) return 0; if ((b1_rd_reg(base, B1_STAT1(cardtype)) & 0x0f) != 0x01) return 5; return 0;}void b1_getrevision(avmcard *card){ card->class = inb(card->port + B1_ANALYSE); card->revision = inb(card->port + B1_REVISION);}int b1_load_t4file(avmcard *card, capiloaddatapart * t4file){ unsigned char buf[256]; unsigned char *dp; int i, left, retval; unsigned int base = card->port; dp = t4file->data; left = t4file->len; while (left > sizeof(buf)) { if (t4file->user) { retval = copy_from_user(buf, dp, sizeof(buf)); if (retval) return -EFAULT; } else { memcpy(buf, dp, sizeof(buf)); } for (i = 0; i < sizeof(buf); i++) if (b1_save_put_byte(base, buf[i]) < 0) { printk(KERN_ERR "%s: corrupted firmware file ?\n", card->name); return -EIO; } left -= sizeof(buf); dp += sizeof(buf); } if (left) { if (t4file->user) { retval = copy_from_user(buf, dp, left); if (retval) return -EFAULT; } else { memcpy(buf, dp, left); } for (i = 0; i < left; i++) if (b1_save_put_byte(base, buf[i]) < 0) { printk(KERN_ERR "%s: corrupted firmware file ?\n", card->name); return -EIO; } } return 0;}int b1_load_config(avmcard *card, capiloaddatapart * config){ unsigned char buf[256]; unsigned char *dp; unsigned int base = card->port; int i, j, left, retval; dp = config->data; left = config->len; if (left) { b1_put_byte(base, SEND_CONFIG); b1_put_word(base, 1); b1_put_byte(base, SEND_CONFIG); b1_put_word(base, left); } while (left > sizeof(buf)) { if (config->user) { retval = copy_from_user(buf, dp, sizeof(buf)); if (retval) return -EFAULT; } else { memcpy(buf, dp, sizeof(buf)); } for (i = 0; i < sizeof(buf); ) { b1_put_byte(base, SEND_CONFIG); for (j=0; j < 4; j++) { b1_put_byte(base, buf[i++]); } } left -= sizeof(buf); dp += sizeof(buf); } if (left) { if (config->user) { retval = copy_from_user(buf, dp, left); if (retval) return -EFAULT; } else { memcpy(buf, dp, left); } for (i = 0; i < left; ) { b1_put_byte(base, SEND_CONFIG); for (j=0; j < 4; j++) { if (i < left) b1_put_byte(base, buf[i++]); else b1_put_byte(base, 0); } } } return 0;}int b1_loaded(avmcard *card){ unsigned int base = card->port; unsigned long stop; unsigned char ans; unsigned long tout = 2; for (stop = jiffies + tout * HZ; time_before(jiffies, stop);) { if (b1_tx_empty(base)) break; } if (!b1_tx_empty(base)) { printk(KERN_ERR "%s: b1_loaded: tx err, corrupted t4 file ?\n", card->name); return 0; } b1_put_byte(base, SEND_POLL); for (stop = jiffies + tout * HZ; time_before(jiffies, stop);) { if (b1_rx_full(base)) { if ((ans = b1_get_byte(base)) == RECEIVE_POLL) { return 1; } printk(KERN_ERR "%s: b1_loaded: got 0x%x, firmware not running\n", card->name, ans); return 0; } } printk(KERN_ERR "%s: b1_loaded: firmware not running\n", card->name); return 0;}/* ------------------------------------------------------------- */int b1_load_firmware(struct capi_ctr *ctrl, capiloaddata *data){ avmctrl_info *cinfo = (avmctrl_info *)(ctrl->driverdata); avmcard *card = cinfo->card; unsigned int port = card->port; unsigned long flags; int retval; b1_reset(port); if ((retval = b1_load_t4file(card, &data->firmware))) { b1_reset(port); printk(KERN_ERR "%s: failed to load t4file!!\n", card->name); return retval; } b1_disable_irq(port); if (data->configuration.len > 0 && data->configuration.data) { if ((retval = b1_load_config(card, &data->configuration))) { b1_reset(port); printk(KERN_ERR "%s: failed to load config!!\n", card->name); return retval; } } if (!b1_loaded(card)) { printk(KERN_ERR "%s: failed to load t4file.\n", card->name); return -EIO; } save_flags(flags); cli(); b1_setinterrupt(port, card->irq, card->cardtype); b1_put_byte(port, SEND_INIT); b1_put_word(port, AVM_NAPPS); b1_put_word(port, AVM_NCCI_PER_CHANNEL*2); b1_put_word(port, ctrl->cnr - 1); restore_flags(flags); return 0;}void b1_reset_ctr(struct capi_ctr *ctrl){ avmctrl_info *cinfo = (avmctrl_info *)(ctrl->driverdata); avmcard *card = cinfo->card; unsigned int port = card->port; b1_reset(port); b1_reset(port); memset(cinfo->version, 0, sizeof(cinfo->version)); ctrl->reseted(ctrl);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -