plateform stringclasses 1
value | repo_name stringclasses 2
values | name stringlengths 1 78 | ext stringclasses 2
values | path stringlengths 15 1.11k | size int64 1 8.55M | source_encoding stringclasses 11
values | md5 stringlengths 32 32 | text stringlengths 0 8.49M |
|---|---|---|---|---|---|---|---|---|
google | android | ser-gigaset | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/gigaset/ser-gigaset.c | 18,615 | utf_8 | 11f3b7d393dcdaaf6abbfe7de450a834 | /* This is the serial hardware link layer (HLL) for the Gigaset 307x isdn
* DECT base (aka Sinus 45 isdn) using the RS232 DECT data module M101,
* written as a line discipline.
*
* =====================================================================
* ==============================================================... |
google | android | usb-gigaset | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/gigaset/usb-gigaset.c | 25,055 | utf_8 | 6ca8299ab9eadbbe93867526fed0d5d5 | /*
* USB driver for Gigaset 307x directly or using M105 Data.
*
#define DRIVER_DESC "USB Driver for Gigaset 307x using M105"
/* Module parameters */
static int startmode = SM_ISDN;
static int cidmode = 1;
module_param(startmode, int, S_IRUGO);
module_param(cidmode, int, S_IRUGO);
MODULE_PARM_DESC(startmode, "start in... |
google | android | asyncdata | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/gigaset/asyncdata.c | 17,022 | utf_8 | 472841f415eb1d139661afadd4efaff2 | /*
* Common data handling layer for ser_gigaset and usb_gigaset
*
* =====================================================================
*/
#include "gigaset.h"
#include <linux/crc-ccitt.h>
#include <linux/bitrev.h>
#include <linux/export.h>
/* check if byte must be stuffed/escaped
* I'm not sure which data shoul... |
google | android | interface | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/gigaset/interface.c | 13,971 | utf_8 | fd430015b61b0dd733f35b7994a30f98 | /*
* interface to user space for the gigaset driver
*
* =====================================================================
*/
#include "gigaset.h"
#include <linux/gigaset_dev.h>
#include <linux/tty_flip.h>
#include <linux/module.h>
/*** our ioctls ***/
static int if_lock(struct cardstate *cs, int *arg)
{
int cm... |
google | android | capi | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/gigaset/capi.c | 72,285 | utf_8 | 168e1dd58025d075e7e4d4167334ff96 | /*
* Kernel CAPI interface for the Gigaset driver
*
* =====================================================================
*/
#include "gigaset.h"
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/ratelimit.h>
#include <linux/isdn/capilli.h>
#include <linux/isdn/capicmd.h>
#include <linux/isdn... |
google | android | bas-gigaset | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/gigaset/bas-gigaset.c | 72,986 | utf_8 | e2431f5f8e91b528877dd7cd4cbcd74e | /*
* USB driver for Gigaset 307x base via direct USB connection.
*
#define DRIVER_DESC "USB Driver for Gigaset 307x"
/* Module parameters */
static int startmode = SM_ISDN;
static int cidmode = 1;
module_param(startmode, int, S_IRUGO);
module_param(cidmode, int, S_IRUGO);
MODULE_PARM_DESC(startmode, "start in isdn4li... |
google | android | dummyll | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/gigaset/dummyll.c | 1,505 | utf_8 | 770cb11bd70178ca8ae3b7b557c9c9bc | /*
* Dummy LL interface for the Gigaset driver
*
void gigaset_skb_rcvd(struct bc_state *bcs, struct sk_buff *skb)
{
}
int gigaset_isdn_icall(struct at_state_t *at_state)
{
return ICALL_IGNORE;
}
void gigaset_isdn_connD(struct bc_state *bcs)
{
}
void gigaset_isdn_hupD(struct bc_state *bcs)
{
}
void gigaset_isdn_connB... |
google | android | proc | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/gigaset/proc.c | 2,080 | utf_8 | 51c13b6c0f0c787ba7e0ddc8f90a6734 | /*
* Stuff used by all variants of the driver
*
* =====================================================================
*/
#include "gigaset.h"
static ssize_t show_cidmode(struct device *dev,
struct device_attribute *attr, char *buf)
{
struct cardstate *cs = dev_get_drvdata(dev);
return sprintf(buf, "%u\n"... |
google | android | divert_procfs | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/divert/divert_procfs.c | 9,050 | utf_8 | 5d11a94555bff182943e7c2b5ed80740 | /* $Id: divert_procfs.c,v 1.11.6.2 2001/09/23 22:24:36 kai Exp $
*
* Filesystem handling for the diversion supplementary services.
*
*
*/
#include <linux/module.h>
#include <linux/poll.h>
#include <linux/slab.h>
#ifdef CONFIG_PROC_FS
#include <linux/proc_fs.h>
#else
#include <linux/fs.h>
#endif
#include <linux/sch... |
google | android | divert_init | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/divert/divert_init.c | 2,299 | utf_8 | 5503f13f770183a21fde39b8cb988b95 | /* $Id divert_init.c,v 1.5.6.2 2001/01/24 22:18:17 kai Exp $
*
* Module init for DSS1 diversion services for i4l.
*
/****************************************/
/* structure containing interface to hl */
/****************************************/
isdn_divert_if divert_if = {
DIVERT_IF_MAGIC, /* magic value */
DIVERT... |
google | android | isdn_divert | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/divert/isdn_divert.c | 23,509 | utf_8 | dc61ef8743c0324fce511e59f451d766 | /* $Id: isdn_divert.c,v 1.6.6.3 2001/09/23 22:24:36 kai Exp $
*
* DSS1 main diversion supplementary handling for i4l.
*
*
*/
#include <linux/proc_fs.h>
#include <linux/slab.h>
#include <linux/timer.h>
#include <linux/jiffies.h>
#include "isdn_divert.h"
/**********************************/
/* structure keeping call... |
google | android | layer2 | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/layer2.c | 52,787 | utf_8 | 715c31ac908bb4e4dfbf01366dd1424a | /*
*
*
*/
#include <linux/mISDNif.h>
#include <linux/slab.h>
#include "core.h"
#include "fsm.h"
#include "layer2.h"
static u_int *debug;
static
struct Fsm l2fsm = {NULL, 0, 0, NULL, NULL};
static char *strL2State[] =
{
"ST_L2_1",
"ST_L2_2",
"ST_L2_3",
"ST_L2_4",
"ST_L2_5",
"ST_L2_6",
"ST_L2_7",
"ST_L2_8",
};... |
google | android | l1oip_core | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/l1oip_core.c | 40,455 | utf_8 | 2041e2bbc00c8eb0d90c6f0b1ee4f3e3 | /*
* l1oip.c low level driver for tunneling layer 1 over IP
*
* NOTE: It is not compatible with TDMoIP nor "ISDN over IP".
*
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
/* module parameters:
* type:
Value 1 = BRI
Value 2 = PRI
Value 3 = BRI (multi channel frame, not supported yet)
Valu... |
google | android | fsm | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/fsm.c | 4,508 | utf_8 | 2e15e3d6b016fdfb9d7db481a7e6b7c9 | /*
* finite state machine implementation
*
*
*/
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/string.h>
#include "fsm.h"
#define FSM_TIMER_DEBUG 0
void
mISDN_FsmNew(struct Fsm *fsm,
struct FsmNode *fnlist, int fncount)
{
int i;
fsm->jumpmatrix = kzalloc(sizeof(F... |
google | android | dsp_dtmf | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/dsp_dtmf.c | 7,905 | utf_8 | 437b0c4943dab6c981446c1a506461fd | /*
* DTMF decoder.
*
*
*/
#include <linux/mISDNif.h>
#include <linux/mISDNdsp.h>
#include "core.h"
#include "dsp.h"
#define NCOEFF 8 /* number of frequencies to be analyzed */
/* For DTMF recognition:
* 2 * cos(2 * PI * k / N) precalculated for all k
*/
static u64 cos2pik[NCOEFF] =
{
/* k << 15 (s... |
google | android | l1oip_codec | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/l1oip_codec.c | 11,105 | utf_8 | e2db500b364ea944afcdba9aca551f72 | /*
* l1oip_codec.c generic codec using lookup table
* -> conversion from a-Law to u-Law
* -> conversion from u-Law to a-Law
* -> compression by reducing the number of sample resolution to 4
*
* NOTE: It is not compatible with any standard codec like ADPCM.
*
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 0... |
google | android | dsp_tones | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/dsp_tones.c | 17,374 | utf_8 | df01b1d781e01c047592f8c903de586d | /*
* Audio support data for ISDN4Linux.
*
*
*/
#include <linux/gfp.h>
#include <linux/mISDNif.h>
#include <linux/mISDNdsp.h>
#include "core.h"
#include "dsp.h"
#define DATA_S sample_silence
#define SIZE_S (&sizeof_silence)
#define DATA_GA sample_german_all
#define SIZE_GA (&sizeof_german_all)
#define DATA_GO sample... |
google | android | dsp_blowfish | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/dsp_blowfish.c | 23,926 | utf_8 | 03a0524f1eac0137e6f6d82343badc71 | /*
* Blowfish encryption/decryption for mISDN_dsp.
*
*
*/
#include <linux/mISDNif.h>
#include <linux/mISDNdsp.h>
#include "core.h"
#include "dsp.h"
/*
* how to encode a sample stream to 64-bit blocks that will be encryped
*
* first of all, data is collected until a block of 9 samples are received.
* of course, ... |
google | android | dsp_cmx | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/dsp_cmx.c | 53,880 | utf_8 | c453892ff91a3211af737ce399d6194c | /*
* Audio crossconnecting/conferrencing (hardware level).
*
* 1-n = hardware-conference. The n will give the conference number.
*
* Depending on the change after removal or insertion of a party, hardware
* commands are given.
*
* The current solution is stored within the struct dsp_conf entry.
*/
/*
* HOW TH... |
google | android | hwchannel | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/hwchannel.c | 12,301 | utf_8 | 692579a33fd2dd20b18b994e562be90e | /*
*
*
*/
#include <linux/gfp.h>
#include <linux/module.h>
#include <linux/mISDNhw.h>
static void
dchannel_bh(struct work_struct *ws)
{
struct dchannel *dch = container_of(ws, struct dchannel, workq);
struct sk_buff *skb;
int err;
if (test_and_clear_bit(FLG_RECVQUEUE, &dch->Flags)) {
while ((skb = skb_dequeu... |
google | android | core | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/core.c | 8,995 | utf_8 | 952388f3979b8d717dddf0257ace614d | /*
*
*/
#include <linux/slab.h>
#include <linux/types.h>
#include <linux/stddef.h>
#include <linux/module.h>
#include <linux/spinlock.h>
#include <linux/mISDNif.h>
#include "core.h"
static u_int debug;
MODULE_AUTHOR("Karsten Keil");
module_param(debug, uint, S_IRUGO | S_IWUSR);
static u64 device_ids;
#define MAX_DEV... |
google | android | layer1 | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/layer1.c | 9,951 | utf_8 | 78673fe80318d14914903bdfb4c13c68 | /*
*
*
*/
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/mISDNhw.h>
#include "core.h"
#include "layer1.h"
#include "fsm.h"
static u_int *debug;
struct layer1 {
u_long Flags;
struct FsmInst l1m;
struct FsmTimer timer3;
struct FsmTimer timerX;
int delay;
int t3_value;
struct dchannel *dch;
d... |
google | android | timerdev | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/timerdev.c | 6,963 | utf_8 | 5c4f2fbaf9a9db3a1fdba876311711bc | /*
*
* general timer device for using in ISDN stacks
*
*
*/
#include <linux/poll.h>
#include <linux/vmalloc.h>
#include <linux/slab.h>
#include <linux/timer.h>
#include <linux/miscdevice.h>
#include <linux/module.h>
#include <linux/mISDNif.h>
#include <linux/mutex.h>
#include "core.h"
static DEFINE_MUTEX(mISDN_mut... |
google | android | tei | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/tei.c | 34,376 | utf_8 | e896be46fad61c59fe24aa32445326df | /*
*
*
*/
#include "layer2.h"
#include <linux/random.h>
#include <linux/slab.h>
#include "core.h"
#define ID_REQUEST 1
#define ID_ASSIGNED 2
#define ID_DENIED 3
#define ID_CHK_REQ 4
#define ID_CHK_RES 5
#define ID_REMOVE 6
#define ID_VERIFY 7
#define TEI_ENTITY_ID 0xf
#define MGR_PH_ACTIVE 16
#define MGR_PH_NOTREADY... |
google | android | dsp_audio | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/dsp_audio.c | 10,950 | utf_8 | 11e56f7b7d811e5809b445e70e134ae1 | /*
* Audio support data for mISDN_dsp.
*
*
*/
#include <linux/delay.h>
#include <linux/mISDNif.h>
#include <linux/mISDNdsp.h>
#include <linux/export.h>
#include <linux/bitrev.h>
#include "core.h"
#include "dsp.h"
/* ulaw[unsigned char] -> signed 16-bit */
s32 dsp_audio_ulaw_to_s32[256];
/* alaw[unsigned char] -> si... |
google | android | dsp_core | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/dsp_core.c | 33,971 | utf_8 | e37ad9860ca707931c7f63f0102c0cb3 | /*
* For changes and modifications please read
* ../../../Documentation/isdn/mISDN.cert
*
* Thanks to Karsten Keil (great drivers)
* Cologne Chip (great chips)
*
* This module does:
* Real-time tone generation
* DTMF detection
* Real-time cross-connection and conferrence
* Compensate ji... |
google | android | dsp_pipeline | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/dsp_pipeline.c | 8,429 | utf_8 | e468aa85e0cea2a38046617053433377 | /*
* dsp_pipeline.c: pipelined audio processing
*
*
*/
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/list.h>
#include <linux/string.h>
#include <linux/mISDNif.h>
#include <linux/mISDNdsp.h>
#include <linux/export.h>
#include "dsp.h"
#include "dsp_hwec.h"
/* uncomment for debugging */
/*#define P... |
google | android | dsp_hwec | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/dsp_hwec.c | 3,078 | utf_8 | ba297812c02bee84ef22ffcf37662d9f | /*
* dsp_hwec.c:
* builtin mISDN dsp pipeline element for enabling the hw echocanceller
*
*
*/
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/mISDNdsp.h>
#include <linux/mISDNif.h>
#include "core.h"
#include "dsp.h"
#include "dsp_hwec.h"
static struct mISDN_dsp_element_arg args[] = {
{ "defta... |
google | android | socket | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/socket.c | 18,128 | utf_8 | cdc9e97d50e806581547002da34f47da | /*
*
*
*/
#include <linux/mISDNif.h>
#include <linux/slab.h>
#include <linux/export.h>
#include "core.h"
static u_int *debug;
static struct proto mISDN_proto = {
.name = "misdn",
.owner = THIS_MODULE,
.obj_size = sizeof(struct mISDN_sock)
};
#define _pms(sk) ((struct mISDN_sock *)sk)
static struct mISDN_sock_li... |
google | android | stack | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/stack.c | 16,871 | utf_8 | fca826badc09ccfe1ad994fc0c0037ce | /*
*
*
*/
#include <linux/slab.h>
#include <linux/mISDNif.h>
#include <linux/kthread.h>
#include <linux/sched.h>
#include "core.h"
static u_int *debug;
static inline void
_queue_message(struct mISDNstack *st, struct sk_buff *skb)
{
struct mISDNhead *hh = mISDN_HEAD_P(skb);
if (*debug & DEBUG_QUEUE_FUNC)
printk(K... |
google | android | clock | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/mISDN/clock.c | 6,487 | utf_8 | 434f02001634aa89f7980eb5d702b093 | /*
*
* Quick API description:
*
* A clock source registers using mISDN_register_clock:
* name = text string to name clock source
* priority = value to priorize clock sources (0 = default)
* ctl = callback function to enable/disable clock source
* priv = private pointer of clock source
* return = pointer to clo... |
google | android | b1pci | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/avm/b1pci.c | 10,820 | utf_8 | bc6351973dfcf85ea2012fd5f1216132 | /* $Id: b1pci.c,v 1.1.2.2 2004/01/16 21:09:27 keil Exp $
*
* Module for AVM B1 PCI-card.
*
*
*/
#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/pci.h>
#include <linux/... |
google | android | b1 | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/avm/b1.c | 21,101 | utf_8 | 682c7d27e5993bf610378f42038888d6 | /* $Id: b1.c,v 1.1.2.2 2004/01/16 21:09:27 keil Exp $
*
* Common module for AVM B1 cards.
*
*
*/
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/pci.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/skbuff.h>
#include <linux/delay.h>
#include <linux/mm.h>
#include <linux... |
google | android | b1dma | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/avm/b1dma.c | 24,690 | utf_8 | 7e10d2533f41dbcce7b408391443f2f5 | /* $Id: b1dma.c,v 1.1.2.3 2004/02/10 01:07:12 keil Exp $
*
* Common module for AVM B1 cards that support dma with AMCC
*
*
*/
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/skbuff.h>
#include <linux/delay.h>
#include <linux/mm.h>
#include ... |
google | android | c4 | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/avm/c4.c | 34,092 | utf_8 | 3f46a256edec3e2904c089930115ac43 | /* $Id: c4.c,v 1.1.2.2 2004/01/16 21:09:27 keil Exp $
*
* Module for AVM C4 & C2 card.
*
*
*/
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/skbuff.h>
#include <linux/delay.h>
#include <linux/mm.h>
#include <linux/interrupt.h>
#include <li... |
google | android | t1isa | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/avm/t1isa.c | 15,819 | utf_8 | 082b87798e8515ef2acdf87c407925e8 | /* $Id: t1isa.c,v 1.1.2.3 2004/02/10 01:07:12 keil Exp $
*
* Module for AVM T1 HEMA-card.
*
*
*/
#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 <linu... |
google | android | b1isa | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/avm/b1isa.c | 6,000 | utf_8 | e74607f9efd8fa502fdd9e172f161292 | /* $Id: b1isa.c,v 1.1.2.3 2004/02/10 01:07:12 keil Exp $
*
* Module for AVM B1 ISA-card.
*
*
*/
#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 <linux... |
google | android | b1pcmcia | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/avm/b1pcmcia.c | 5,698 | utf_8 | 27789ab969564d8c9d9f4b1d1c0865e4 | /* $Id: b1pcmcia.c,v 1.1.2.2 2004/01/16 21:09:27 keil Exp $
*
* Module for AVM B1/M1/M2 PCMCIA-card.
*
*
*/
#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/init.h>
#in... |
google | android | t1pci | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/avm/t1pci.c | 6,759 | utf_8 | dc227b21ba4c59f81e437ffa31fce855 | /* $Id: t1pci.c,v 1.1.2.2 2004/01/16 21:09:27 keil Exp $
*
* Module for AVM T1 PCI-card.
*
*
*/
#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/pci.h>
#include <linux/... |
google | android | avm_cs | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/avm/avm_cs.c | 4,061 | utf_8 | da28182f5417eef973eba6f3fe56f099 | /* $Id: avm_cs.c,v 1.4.6.3 2001/09/23 22:24:33 kai Exp $
*
* A PCMCIA client driver for AVM B1/M1/M2
*
*
*/
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/ptrace.h>
#include <linux/string.h>
#include <linux/tty.h>
#include <linux/serial.h>
#include <linux/major.h>
#incl... |
google | android | hfcsusb | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/mISDN/hfcsusb.c | 55,584 | utf_8 | 27023bf64b930fe7873c8b0dcaa7ee17 | /* hfcsusb.c
* mISDN driver for Colognechip HFC-S USB chip
*
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*
* module params
* debug=<n>, default=0, with n=0xHHHHGGGG
* H - l1 driver flags described in hfcsusb.h
* G - common mISDN debug flags described at mISDNhw.h
*
* poll=<n>,... |
google | android | speedfax | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/mISDN/speedfax.c | 13,063 | utf_8 | 3ee0168076cbebbffce919cf4dd6159e | /*
* speedfax.c low level stuff for Sedlbauer Speedfax+ cards
* based on the ISAR DSP
* Thanks to Sedlbauer AG for informations and HW
*
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include <linux/interrupt.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/pci.h>
#includ... |
google | android | mISDNipac | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/mISDN/mISDNipac.c | 43,922 | utf_8 | 939bfc621af0c35a6c0358dd40df7e4a | /*
* isac.c ISAC specific routines
*
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include <linux/irqreturn.h>
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/mISDNhw.h>
#include "ipac.h"
#define DBUSY_TIMER_VALUE 80
#define ARCOFI_USE 1
#define ISAC_REV "2.0"
MODULE_AUTHO... |
google | android | mISDNisar | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/mISDN/mISDNisar.c | 44,103 | utf_8 | 43c0f9e36998612adcd34d69a28bc604 | /*
* mISDNisar.c ISAR (Siemens PSB 7110) specific functions
*
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
/* define this to enable static debug messages, if you kernel supports
* dynamic debugging, you should use debugfs for this
*/
/* #define DEBUG */
#include <linux/gfp.h>
#include <linu... |
google | android | avmfritz | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/mISDN/avmfritz.c | 27,904 | utf_8 | b1d5e7c1093ae8e56cf6c93765598e3c | /*
* avm_fritz.c low level stuff for AVM FRITZ!CARD PCI ISDN cards
* Thanks to AVM, Berlin for informations
*
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include <linux/interrupt.h>
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/delay.h>
#include <linux/mI... |
google | android | mISDNinfineon | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/mISDN/mISDNinfineon.c | 27,663 | utf_8 | 52c191e43a9cefa64b1d456729f06391 | /*
* mISDNinfineon.c
* Support for cards based on following Infineon ISDN chipsets
* - ISAC + HSCX
* - IPAC and IPAC-X
* - ISAC-SX + HSCX
*
* Supported cards:
* - Dialogic Diva 2.0
* - Dialogic Diva 2.0U
* - Dialogic Diva 2.01
* - Dialogic Diva 2.02
* - Sedlbauer Speedwin
* - HST Saphir3
* - De... |
google | android | w6692 | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/mISDN/w6692.c | 36,845 | utf_8 | 24ba4724473268fc9ef683a62b8181d6 | /*
* w6692.c mISDN driver for Winbond w6692 based cards
*
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include <linux/interrupt.h>
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/delay.h>
#include <linux/mISDNhw.h>
#include <linux/slab.h>
#include "w6692.h"
#define W6692_R... |
google | android | netjet | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/mISDN/netjet.c | 29,376 | utf_8 | b1ecf074785b6e44abcccc34a0b80c3e | /*
* NETJet mISDN driver
*
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include <linux/interrupt.h>
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/delay.h>
#include <linux/mISDNhw.h>
#include <linux/slab.h>
#include "ipac.h"
#include "iohelper.h"
#include "netjet.h"
#include ... |
google | android | hfcpci | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/mISDN/hfcpci.c | 64,853 | utf_8 | e53d6b06b11b26fa9cf42506fb5b6a01 | /*
*
* hfcpci.c low level driver for CCD's hfc-pci based cards
*
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Module options:
*
* debug:
* NOTE: only one poll value must be given for all cards
* See hfc_pci.h for debug flags.
*
* poll:
* NOTE: only one poll value must be given for al... |
google | android | hfcmulti | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/mISDN/hfcmulti.c | 156,239 | utf_8 | 22eb6b09adf2bc17c95ef3fdd7bcd513 | /*
* hfcmulti.c low level driver for hfc-4s/hfc-8s/hfc-e1 based cards
*
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*
* Thanks to Cologne Chip AG for this great controller!
*/
/*
* module parameters:
* type:
* By default (0), the card is automatically detected.
* Or use the following combi... |
google | android | capimain | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/capimain.c | 3,453 | utf_8 | 4f190af362543edea3aa47b0da66baef | /* $Id: capimain.c,v 1.24 2003/09/09 06:51:05 schindler Exp $
*
* ISDN interface module for Eicon active cards DIVA.
* CAPI Interface
*
*/
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/init.h>
#include <asm/uaccess.h>
#include <linux/seq_file.h>
#include <linux/skbuff.h>
#include "os_capi.h"
#i... |
google | android | divamnt | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/divamnt.c | 5,617 | utf_8 | eec6b3234716bfa6c37011668de57019 | /* $Id: divamnt.c,v 1.32.6.10 2005/02/11 19:40:25 armin Exp $
*
* Driver for Eicon DIVA Server ISDN cards.
* Maint module
*
*/
#include <linux/module.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/poll.h>
#include <linux/mutex.h>
#include <asm/uaccess.h>
#include "platform.h"
#include "di_def... |
google | android | um_idi | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/um_idi.c | 24,075 | utf_8 | f298ad0dad5329a5003a01c5e994c36e | /* $Id: um_idi.c,v 1.14 2004/03/21 17:54:37 armin Exp $ */
#include "platform.h"
#include "di_defs.h"
#include "pc.h"
#include "dqueue.h"
#include "adapter.h"
#include "entity.h"
#include "um_xdi.h"
#include "um_idi.h"
#include "debuglib.h"
#include "divasync.h"
#define DIVAS_MAX_XDI_ADAPTERS 64
/* -----------------... |
google | android | dqueue | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/dqueue.c | 2,173 | utf_8 | 950067cafc24456c02a19e46363fd3c1 | /* $Id: dqueue.c,v 1.5 2003/04/12 21:40:49 schindler Exp $
*
* Driver for Eicon DIVA Server ISDN cards.
* User Mode IDI Interface
*
*/
#include "platform.h"
#include "dqueue.h"
int
diva_data_q_init(diva_um_idi_data_queue_t *q,
int max_length, int max_segments)
{
int i;
q->max_length = max_length;
q->segments... |
google | android | divasproc | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/divasproc.c | 10,514 | utf_8 | a4913b5141ec5111dec69156027cde1c | /* $Id: divasproc.c,v 1.19.4.3 2005/01/31 12:22:20 armin Exp $
*
* Low level driver for Eicon DIVA Server ISDN cards.
* /proc functions
*
*/
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/poll.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/list.h>
#include <asm/uacce... |
google | android | s_pri | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/s_pri.c | 7,756 | utf_8 | 0d3c3bb93d5e681d032793c344d86cda | /*
*
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include "platform.h"
#include "di_defs.h"
#include "pc.h"
#include "pr_pc.h"
#include "di.h"
#include "mi_pc.h"
#include "pc_maint.h"
#include "divasync.h"
#include "io.h"
#include "help... |
google | android | capidtmf | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/capidtmf.c | 25,571 | utf_8 | b142d99ee3f86bd559ed26ca1400e80f | /*
*
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include "platform.h"
#include "capidtmf.h"
/* #define TRACE_ */
#define FILE_ "CAPIDTMF.C"
/*---------------------------------------------------------------------------*/
#define trace(a... |
google | android | diva_dma | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/diva_dma.c | 2,712 | utf_8 | c40c2d3f3d16333103b4485c1f9572e8 | /*
*
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include "platform.h"
#include "diva_dma.h"
/*
Every entry has length of PAGE_SIZE
and represents one single physical page
*/
struct _diva_dma_map_entry {
int busy;
dword phys_bus_a... |
google | android | dadapter | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/dadapter.c | 14,576 | utf_8 | 18aa28ff7f39055dd8bc5d56d01943f9 | /*
*
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include "platform.h"
#include "pc.h"
#include "debuglib.h"
#include "di_defs.h"
#include "divasync.h"
#include "dadapter.h"
/* -----------------------------------------------------------... |
google | android | s_bri | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/s_bri.c | 6,499 | utf_8 | 27591b8ae60a76f9096b041ecd6999c4 | /*
*
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include "platform.h"
#include "di_defs.h"
#include "pc.h"
#include "pr_pc.h"
#include "di.h"
#include "mi_pc.h"
#include "pc_maint.h"
#include "divasync.h"
#include "io.h"
#include "help... |
google | android | s_4bri | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/s_4bri.c | 15,335 | utf_8 | 573bb7acf9f68960003b1a0736dc6b3d | /*
*
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include "platform.h"
#include "di_defs.h"
#include "pc.h"
#include "pr_pc.h"
#include "di.h"
#include "mi_pc.h"
#include "pc_maint.h"
#include "divasync.h"
#include "pc_init.h"
#include ... |
google | android | divasmain | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/divasmain.c | 21,344 | utf_8 | 90073c7a6dabcd3548653d0510c5b809 | /* $Id: divasmain.c,v 1.55.4.6 2005/02/09 19:28:20 armin Exp $
*
* Low level driver for Eicon DIVA Server ISDN cards.
*
*/
#include <linux/module.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <asm/uaccess.h>
#include <asm/io.h>
#include <linux/ioport.h>
#include <linux/pci.h>
#include <linux/interru... |
google | android | divasfunc | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/divasfunc.c | 5,436 | utf_8 | 788810092a581820dde8b0ddbf3f1a44 | /* $Id: divasfunc.c,v 1.23.4.2 2004/08/28 20:03:53 armin Exp $
*
* Low level driver for Eicon DIVA Server ISDN cards.
*
*/
#include "platform.h"
#include "di_defs.h"
#include "pc.h"
#include "di.h"
#include "io.h"
#include "divasync.h"
#include "diva.h"
#include "xdi_vers.h"
#define DBG_MINIMUM (DL_LOG + DL_FTL + ... |
google | android | debug | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/debug.c | 63,069 | utf_8 | 8fb82d65aad0d17e9983530c027fd788 | #include "platform.h"
#include "pc.h"
#include "di_defs.h"
#include "debug_if.h"
#include "divasync.h"
#include "kst_ifc.h"
#include "maintidi.h"
#include "man_defs.h"
/*
LOCALS
*/
#define DBG_MAGIC (0x47114711L)
static void DI_register(void *arg);
static void DI_deregister(pDbgHandle hDbg);
static void DI_format(i... |
google | android | diddfunc | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/diddfunc.c | 2,644 | utf_8 | ab4d1eb3ddf4a9112f0c5ca12663286b | /* $Id: diddfunc.c,v 1.14.6.2 2004/08/28 20:03:53 armin Exp $
*
* DIDD Interface module for Eicon active cards.
*
* Functions are in dadapter.c
*
*/
#include "platform.h"
#include "di_defs.h"
#include "dadapter.h"
#include "divasync.h"
#define DBG_MINIMUM (DL_LOG + DL_FTL + DL_ERR)
#define DBG_DEFAULT (DBG_MINI... |
google | android | divasi | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/divasi.c | 12,264 | utf_8 | ffdf97dcc3bf8832a46b873809a06770 | /* $Id: divasi.c,v 1.25.6.2 2005/01/31 12:22:20 armin Exp $
*
* Driver for Eicon DIVA Server ISDN cards.
* User Mode IDI Interface
*
*/
#include <linux/module.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/poll.h>
#include <linux/proc_fs.h>
#include <linux/skbuff.h>
#... |
google | android | io | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/io.c | 26,644 | utf_8 | 301457297420eb6240304523a975c1eb | /*
*
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include "platform.h"
#include "di_defs.h"
#include "pc.h"
#include "pr_pc.h"
#include "divasync.h"
#define MIPS_SCOM
#include "pkmaint.h" /* pc_main.h, packed in os-dependent fashion */
... |
google | android | os_pri | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/os_pri.c | 26,925 | utf_8 | 914683dea00cc56f186a74a47f3632d4 | /* $Id: os_pri.c,v 1.32 2004/03/21 17:26:01 armin Exp $ */
#include "platform.h"
#include "debuglib.h"
#include "cardtype.h"
#include "pc.h"
#include "pr_pc.h"
#include "di_defs.h"
#include "dsp_defs.h"
#include "di.h"
#include "io.h"
#include "xdi_msg.h"
#include "xdi_adapter.h"
#include "os_pri.h"
#include "diva_pc... |
google | android | maintidi | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/maintidi.c | 64,655 | utf_8 | e13d7a17df4538fbabd21aaecacdb040 | /*
*
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include "platform.h"
#include "kst_ifc.h"
#include "di_defs.h"
#include "maintidi.h"
#include "pc.h"
#include "man_defs.h"
extern void diva_mnt_internal_dprintf(dword drv_id, dword type,... |
google | android | debuglib | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/debuglib.c | 4,506 | utf_8 | de972e0befdd7f4f4c1858a6dffe7573 | /*
*
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include "debuglib.h"
#ifdef DIVA_NO_DEBUGLIB
static DIVA_DI_PRINTF dprintf;
#else /* DIVA_NO_DEBUGLIB */
_DbgHandle_ myDriverDebugHandle = { 0 /*!Registered*/, DBG_HANDLE_VERSION };
DIVA... |
google | android | di | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/di.c | 27,971 | utf_8 | 4060d143f31e1af664da5642d057abd1 | /*
*
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include "platform.h"
#include "pc.h"
#include "pr_pc.h"
#include "di_defs.h"
#include "di.h"
#if !defined USE_EXTENDED_DEBUGS
#include "dimaint.h"
#else
#define dprintf
#endif
#include "... |
google | android | mntfunc | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/mntfunc.c | 8,342 | utf_8 | 120e451e257f6813756229ca70c26f43 | /* $Id: mntfunc.c,v 1.19.6.4 2005/01/31 12:22:20 armin Exp $
*
* Driver for Eicon DIVA Server ISDN cards.
* Maint module
*
*/
#include "platform.h"
#include "di_defs.h"
#include "divasync.h"
#include "debug_if.h"
extern char *DRIVERRELEASE_MNT;
#define DBG_MINIMUM (DL_LOG + DL_FTL + DL_ERR)
#define DBG_DEFAULT (... |
google | android | diva_didd | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/diva_didd.c | 3,563 | utf_8 | bb972246dafbd2911bb9e0dacf85ffcc | /* $Id: diva_didd.c,v 1.13.6.4 2005/02/11 19:40:25 armin Exp $
*
* DIDD Interface module for Eicon active cards.
*
* Functions are in dadapter.c
*
*/
#include <linux/module.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <net/net_namespace.h>
#i... |
google | android | os_bri | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/os_bri.c | 20,255 | utf_8 | a49f9a1b25afc856f9e2d1e6d5e62ef1 | /* $Id: os_bri.c,v 1.21 2004/03/21 17:26:01 armin Exp $ */
#include "platform.h"
#include "debuglib.h"
#include "cardtype.h"
#include "pc.h"
#include "pr_pc.h"
#include "di_defs.h"
#include "dsp_defs.h"
#include "di.h"
#include "io.h"
#include "xdi_msg.h"
#include "xdi_adapter.h"
#include "os_bri.h"
#include "diva_pc... |
google | android | capifunc | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/capifunc.c | 31,306 | utf_8 | b0d7194dfa9d1fd931a0364cdf3a4d6d | /* $Id: capifunc.c,v 1.61.4.7 2005/02/11 19:40:25 armin Exp $
*
* ISDN interface module for Eicon active cards DIVA.
* CAPI Interface common functions
*
*
*/
#include "platform.h"
#include "os_capi.h"
#include "di_defs.h"
#include "capi20.h"
#include "divacapi.h"
#include "divasync.h"
#include "capifunc.h"
#defin... |
google | android | message | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/message.c | 446,140 | utf_8 | f83bd43a56826a10cd2c958ae2b6930c | /*
*
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include "platform.h"
#include "di_defs.h"
#include "pc.h"
#include "capi20.h"
#include "divacapi.h"
#include "mdm_msg.h"
#include "divasync.h"
#define FILE_ "MESSAGE.C"
#define dprintf
/... |
google | android | istream | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/istream.c | 6,338 | utf_8 | c0ccbcd599ad6d02893ee1d2f06ca93f | /*
*
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include "platform.h"
#if defined(DIVA_ISTREAM) /* { */
#include "pc.h"
#include "pr_pc.h"
#include "di_defs.h"
#include "divasync.h"
#include "di.h"
#if !defined USE_EXTENDED_DEBUGS
#inc... |
google | android | os_4bri | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/os_4bri.c | 28,951 | utf_8 | b4652b17f19ad360096dd1530d0e5fbc | /* $Id: os_4bri.c,v 1.28.4.4 2005/02/11 19:40:25 armin Exp $ */
#include "platform.h"
#include "debuglib.h"
#include "cardtype.h"
#include "pc.h"
#include "pr_pc.h"
#include "di_defs.h"
#include "dsp_defs.h"
#include "di.h"
#include "io.h"
#include "xdi_msg.h"
#include "xdi_adapter.h"
#include "os_4bri.h"
#include "d... |
google | android | diva | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/diva.c | 17,142 | utf_8 | 95d430204ee314cb4232465684ef2907 | /* $Id: diva.c,v 1.21.4.1 2004/05/08 14:33:43 armin Exp $ */
#define CARDTYPE_H_WANT_DATA 1
#define CARDTYPE_H_WANT_IDI_DATA 0
#define CARDTYPE_H_WANT_RESOURCE_DATA 0
#define CARDTYPE_H_WANT_FILE_DATA 0
#include "platform.h"
#include "debuglib.h"
#include "cardtype.h"
#include "pc.h"
#includ... |
google | android | idifunc | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/hardware/eicon/idifunc.c | 6,345 | utf_8 | b2f9e8f67ce25f0ebbd7fdd1c7af7d5b | /* $Id: idifunc.c,v 1.14.4.4 2004/08/28 20:03:53 armin Exp $
*
* Driver for Eicon DIVA Server ISDN cards.
* User Mode IDI Interface
*
*/
#include "platform.h"
#include "di_defs.h"
#include "divasync.h"
#include "um_xdi.h"
#include "um_idi.h"
#define DBG_MINIMUM (DL_LOG + DL_FTL + DL_ERR)
#define DBG_DEFAULT (DBG... |
google | android | module | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/act2000/module.c | 19,501 | utf_8 | f0682e06b86b09fe5b2dc099658d2c11 | /* $Id: module.c,v 1.14.6.4 2001/09/23 22:24:32 kai Exp $
*
* ISDN lowlevel-module for the IBM ISDN-S0 Active 2000.
*
* Author Fritz Elfert
*
* Thanks to Friedemann Baitinger and IBM Germany
*
*/
#include "act2000.h"
#include "act2000_isa.h"
#include "capi.h"
#include <linux/module.h>
#include <linux/slab... |
google | android | act2000_isa | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/act2000/act2000_isa.c | 10,089 | utf_8 | 3d607286be37c8b4cc4e23dbb9905b38 | /* $Id: act2000_isa.c,v 1.11.6.3 2001/09/23 22:24:32 kai Exp $
*
* ISDN lowlevel-module for the IBM ISDN-S0 Active 2000 (ISA-Version).
*
* Author Fritz Elfert
*
* Thanks to Friedemann Baitinger and IBM Germany
*
*/
#include "act2000.h"
#include "act2000_isa.h"
#include "capi.h"
/*
* Reset Controller, the... |
google | android | capi | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/act2000/capi.c | 32,045 | utf_8 | 73e478c8b417de674aabd0312f66d58f | /* $Id: capi.c,v 1.9.6.2 2001/09/23 22:24:32 kai Exp $
*
* ISDN lowlevel-module for the IBM ISDN-S0 Active 2000.
* CAPI encoder/decoder
*
* Author Fritz Elfert
*
* Thanks to Friedemann Baitinger and IBM Germany
*
*/
#include "act2000.h"
#include "capi.h"
static actcapi_msgdsc valid_msg[] = {
{{ 0x86, 0x... |
google | android | layer2 | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/pcbit/layer2.c | 14,404 | utf_8 | 348137104de0d46b0e2e1b852d697d43 | /*
* PCBIT-D low-layer interface
*
* Hacked to compile with egcs and run with current version of isdn modules
*/
/*
* Based on documentation provided by Inesc:
* - "Interface com bus do PC para o PCBIT e PCBIT-D", Inesc, Jan 93
*/
/*
* TODO: better handling of errors
* re-writ... |
google | android | module | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/pcbit/module.c | 2,351 | utf_8 | 5834162823baaba55825ca321ea85e7f | /*
* PCBIT-D module support
*
*/
#include <linux/module.h>
#include <linux/init.h>
#include <linux/string.h>
#include <linux/kernel.h>
#include <linux/skbuff.h>
#include <linux/isdnif.h>
#include "pcbit.h"
MODULE_DESCRIPTION("ISDN4Linux: Driver for PCBIT-T card");
MODULE_AUTHOR("Pedro Roque Marques");
static int mem... |
google | android | callbacks | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/pcbit/callbacks.c | 6,852 | utf_8 | a33bd5d887d9c97b3331e0402f3112b2 | /*
* Callbacks for the FSM
*
* NULL pointer dereference in cb_in_1 (originally fixed in 2.0)
*/
#include <linux/string.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/mm.h>
#include <linux/skbuff.h>
#include <asm/io.h>
#include <linux/isdnif.h>
#include "pcbit.h"
#include "layer2.h"
#include "... |
google | android | drv | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/pcbit/drv.c | 22,293 | utf_8 | ce38cb9889155edef0f12ab0620d1225 | /*
* PCBIT-D interface with isdn4linux
*
* fixed msn_list NULL pointer dereference.
*
*/
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/mm.h>
#include <linux/interrupt.h>
#include <linux/string.h>
#include <linux/sk... |
google | android | capi | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/pcbit/capi.c | 13,137 | utf_8 | 123d2a4edbdaa7690f21ddb2202ac53e | /*
* CAPI encoder/decoder for
* Portugal Telecom CAPI 2.0
*
*
* Not compatible with the AVM Gmbh. CAPI 2.0
*
*/
/*
* Documentation:
* - "Common ISDN API - Perfil Português - Versão 2.1",
* Telecom Portugal, Fev 1992.
* - "Common ISDN API - Especificação de protocolos para
* ... |
google | android | edss1 | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/pcbit/edss1.c | 9,083 | utf_8 | fbea61dad5bea22c3bd577804a7ed3a2 | /*
* DSS.1 Finite State Machine
* base: ITU-T Rec Q.931
*
*/
/*
* TODO: complete the FSM
* move state/event descriptions to a user space logger
*/
#include <linux/string.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/mm.h>
#include <linux/skbuff.h>
#include <linux/timer... |
google | android | timer | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/sc/timer.c | 3,858 | utf_8 | 7860d03ac966d00004d8721f13429ba0 | /* $Id: timer.c,v 1.3.6.1 2001/09/23 22:24:59 kai Exp $
*
*
* SpellCaster Telecommunications Inc.
* 5621 Finch Avenue East, Unit #3
* Scarborough, Ontario Canada
* M1B 2T9
* +1 (416) 297-8565
* +1 (416) 297-6433 Facsimile
*/
#include "includes.h"
#include "hardware.h"
#include "message... |
google | android | packet | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/sc/packet.c | 6,731 | utf_8 | d42b16f60396d116138262cb1eb25106 | /* $Id: packet.c,v 1.5.8.1 2001/09/23 22:24:59 kai Exp $
*
*
* SpellCaster Telecommunications Inc.
* 5621 Finch Avenue East, Unit #3
* Scarborough, Ontario Canada
* M1B 2T9
* +1 (416) 297-8565
* +1 (416) 297-6433 Facsimile
*/
#include "includes.h"
#include "hardware.h"
#include "messag... |
google | android | init | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/sc/init.c | 13,344 | utf_8 | 3761ffdd0bea446fa59df667d826ccb9 | /*
*
*/
#include <linux/module.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/delay.h>
#include <linux/sched.h>
#include <linux/slab.h>
#include "includes.h"
#include "hardware.h"
#include "card.h"
MODULE_DESCRIPTION("ISDN4Linux: Driver for Spellcaster card");
MODULE_AUTHOR("Spellcaster Telec... |
google | android | ioctl | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/sc/ioctl.c | 14,998 | utf_8 | 8879d34f725df53871888e828d6c9160 | /*
*
*/
#include "includes.h"
#include "hardware.h"
#include "message.h"
#include "card.h"
#include "scioc.h"
static int GetStatus(int card, boardInfo *);
/*
* Process private IOCTL messages (typically from scctrl)
*/
int sc_ioctl(int card, scs_ioctl *data)
{
int status;
RspMessage *rcvmsg;
char *spid;
char ... |
google | android | message | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/sc/message.c | 5,954 | utf_8 | d9885bb80ff49abe1e4dcb97704ae369 | /* $Id: message.c,v 1.5.8.2 2001/09/23 22:24:59 kai Exp $
*
* functions for sending and receiving control messages
*
*
* SpellCaster Telecommunications Inc.
* 5621 Finch Avenue East, Unit #3
* Scarborough, Ontario Canada
* M1B 2T9
* +1 (416) 297-8565
* +1 (416) 297-6433 Facsimile
*/
... |
google | android | command | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/sc/command.c | 8,536 | utf_8 | 0c3828ffa828df68af65cf8ea2ed95a4 | /* $Id: command.c,v 1.4.10.1 2001/09/23 22:24:59 kai Exp $
*
*
* SpellCaster Telecommunications Inc.
* 5621 Finch Avenue East, Unit #3
* Scarborough, Ontario Canada
* M1B 2T9
* +1 (416) 297-8565
* +1 (416) 297-6433 Facsimile
*/
#include <linux/module.h>
#include "includes.h" /* This m... |
google | android | event | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/sc/event.c | 1,756 | utf_8 | a0cd6e16011345c13d69ae04674a117f | /* $Id: event.c,v 1.4.8.1 2001/09/23 22:24:59 kai Exp $
*
*
* SpellCaster Telecommunications Inc.
* 5621 Finch Avenue East, Unit #3
* Scarborough, Ontario Canada
* M1B 2T9
* +1 (416) 297-8565
* +1 (416) 297-6433 Facsimile
*/
#include "includes.h"
#include "hardware.h"
#include "message... |
google | android | shmem | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/sc/shmem.c | 4,019 | utf_8 | 3a98856f76ae58a09bcabb22d13bea4d | /* $Id: shmem.c,v 1.2.10.1 2001/09/23 22:24:59 kai Exp $
*
*
* SpellCaster Telecommunications Inc.
* 5621 Finch Avenue East, Unit #3
* Scarborough, Ontario Canada
* M1B 2T9
* +1 (416) 297-8565
* +1 (416) 297-6433 Facsimile
*/
#include "includes.h" /* This must be first */
#include "ha... |
google | android | interrupt | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/isdn/sc/interrupt.c | 6,631 | utf_8 | ea48bb8ac6b1aa5ce8f736fd055cf7aa | /* $Id: interrupt.c,v 1.4.8.3 2001/09/23 22:24:59 kai Exp $
*
*
* SpellCaster Telecommunications Inc.
* 5621 Finch Avenue East, Unit #3
* Scarborough, Ontario Canada
* M1B 2T9
* +1 (416) 297-8565
* +1 (416) 297-6433 Facsimile
*/
#include "includes.h"
#include "hardware.h"
#include "mes... |
google | android | platform | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/base/platform.c | 35,876 | utf_8 | 44b3983edcaca9cd2ac843dca76bc3e0 | /*
* platform.c - platform 'pseudo' bus for legacy devices
*
*
* Please see Documentation/driver-model/platform.txt for more
* information.
*/
#include <linux/string.h>
#include <linux/platform_device.h>
#include <linux/of_device.h>
#include <linux/of_irq.h>
#include <linux/module.h>
#include <linux/init.h>
#incl... |
google | android | class | .c | platform/hardware/bsp/kernel/intel/edison-v4.4/drivers/base/class.c | 15,226 | utf_8 | 4598150e2d8cbdae8ba245e900847019 | /*
* class.c - basic device class management
*
*
*/
#include <linux/device.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/string.h>
#include <linux/kdev_t.h>
#include <linux/err.h>
#include <linux/slab.h>
#include <linux/genhd.h>
#include <linux/mutex.h>
#include "base.h"
#define to_class_attr... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.