blob: 6d439f9a76b21e53ea16a84f67c2dcc5a66f8d88 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Kernel CAPI 2.0 Module
Joe Perches475be4d2012-02-19 19:52:38 -08003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright 1999 by Carsten Paeth <calle@calle.de>
5 * Copyright 2002 by Kai Germaschewski <kai@germaschewski.name>
Joe Perches475be4d2012-02-19 19:52:38 -08006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * This software may be used and distributed according to the terms
8 * of the GNU General Public License, incorporated herein by reference.
9 *
10 */
11
12
13#include <linux/kernel.h>
14#include <linux/spinlock.h>
15#include <linux/list.h>
16#include <linux/isdn/capilli.h>
17
18#ifdef KCAPI_DEBUG
Joe Perches475be4d2012-02-19 19:52:38 -080019#define DBG(format, arg...) do { \
20 printk(KERN_DEBUG "%s: " format "\n" , __func__ , ## arg); \
21 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#else
23#define DBG(format, arg...) /* */
24#endif
25
26enum {
Jan Kiszka0ca3a012010-02-08 10:12:14 +000027 CAPI_CTR_DETACHED = 0,
Jan Kiszka52253032010-02-08 10:12:10 +000028 CAPI_CTR_DETECTED = 1,
29 CAPI_CTR_LOADING = 2,
30 CAPI_CTR_RUNNING = 3,
Linus Torvalds1da177e2005-04-16 15:20:36 -070031};
32
33extern struct list_head capi_drivers;
Jan Kiszka9717fb82010-02-08 10:12:11 +000034extern struct mutex capi_drivers_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Jan Kiszka52253032010-02-08 10:12:10 +000036extern struct capi_ctr *capi_controller[CAPI_MAXCONTR];
Jan Kiszka0ca3a012010-02-08 10:12:14 +000037extern struct mutex capi_controller_lock;
38
39extern struct capi20_appl *capi_applications[CAPI_MAXAPPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#ifdef CONFIG_PROC_FS
42
43void kcapi_proc_init(void);
44void kcapi_proc_exit(void);
45
46#else
47
48static inline void kcapi_proc_init(void) { };
49static inline void kcapi_proc_exit(void) { };
50
51#endif