diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/isdn/hisax/hisax_isac.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'drivers/isdn/hisax/hisax_isac.h')
-rw-r--r-- | drivers/isdn/hisax/hisax_isac.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/drivers/isdn/hisax/hisax_isac.h b/drivers/isdn/hisax/hisax_isac.h new file mode 100644 index 000000000000..08890cf4d923 --- /dev/null +++ b/drivers/isdn/hisax/hisax_isac.h | |||
@@ -0,0 +1,45 @@ | |||
1 | #ifndef __HISAX_ISAC_H__ | ||
2 | #define __HISAX_ISAC_H__ | ||
3 | |||
4 | #include <linux/kernel.h> | ||
5 | #include "fsm.h" | ||
6 | #include "hisax_if.h" | ||
7 | |||
8 | #define TIMER3_VALUE 7000 | ||
9 | #define MAX_DFRAME_LEN_L1 300 | ||
10 | |||
11 | #define ISAC_IOM1 0 | ||
12 | |||
13 | struct isac { | ||
14 | void *priv; | ||
15 | |||
16 | u_long flags; | ||
17 | struct hisax_d_if hisax_d_if; | ||
18 | struct FsmInst l1m; | ||
19 | struct FsmTimer timer; | ||
20 | u_char mocr; | ||
21 | u_char adf2; | ||
22 | int type; | ||
23 | |||
24 | u_char rcvbuf[MAX_DFRAME_LEN_L1]; | ||
25 | int rcvidx; | ||
26 | |||
27 | struct sk_buff *tx_skb; | ||
28 | int tx_cnt; | ||
29 | |||
30 | u_char (*read_isac) (struct isac *, u_char); | ||
31 | void (*write_isac) (struct isac *, u_char, u_char); | ||
32 | void (*read_isac_fifo) (struct isac *, u_char *, int); | ||
33 | void (*write_isac_fifo)(struct isac *, u_char *, int); | ||
34 | }; | ||
35 | |||
36 | void isac_init(struct isac *isac); | ||
37 | void isac_d_l2l1(struct hisax_if *hisax_d_if, int pr, void *arg); | ||
38 | |||
39 | void isac_setup(struct isac *isac); | ||
40 | void isac_irq(struct isac *isac); | ||
41 | |||
42 | void isacsx_setup(struct isac *isac); | ||
43 | void isacsx_irq(struct isac *isac); | ||
44 | |||
45 | #endif | ||