1 /* $Id: interrupt.c,v 1.4.8.3 2001/09/23 22:24:59 kai Exp $
3 * Copyright (C) 1996 SpellCaster Telecommunications Inc.
5 * This software may be used and distributed according to the terms
6 * of the GNU General Public License, incorporated herein by reference.
8 * For more information, please contact gpl-info@spellcast.com or write:
10 * SpellCaster Telecommunications Inc.
11 * 5621 Finch Avenue East, Unit #3
12 * Scarborough, Ontario Canada
15 * +1 (416) 297-6433 Facsimile
22 #include <linux/interrupt.h>
27 irqreturn_t
interrupt_handler(int dummy
, void *card_inst
)
32 int card
= (int)(unsigned long) card_inst
;
34 if(!IS_VALID_CARD(card
)) {
35 pr_debug("Invalid param: %d is not a valid card id\n", card
);
39 pr_debug("%s: Entered Interrupt handler\n",
40 sc_adapter
[card
]->devicename
);
43 * Pull all of the waiting messages off the response queue
45 while (!receivemessage(card
, &rcvmsg
)) {
47 * Push the message to the adapter structure for
48 * send_and_receive to snoop
50 if(sc_adapter
[card
]->want_async_messages
)
51 memcpy(&(sc_adapter
[card
]->async_msg
),
52 &rcvmsg
, sizeof(RspMessage
));
54 channel
= (unsigned int) rcvmsg
.phy_link_no
;
57 * Trap Invalid request messages
59 if(IS_CM_MESSAGE(rcvmsg
, 0, 0, Invalid
)) {
60 pr_debug("%s: Invalid request Message, rsp_status = %d\n",
61 sc_adapter
[card
]->devicename
,
67 * Check for a linkRead message
69 if (IS_CE_MESSAGE(rcvmsg
, Lnk
, 1, Read
))
71 pr_debug("%s: Received packet 0x%x bytes long at 0x%lx\n",
72 sc_adapter
[card
]->devicename
,
73 rcvmsg
.msg_data
.response
.msg_len
,
74 rcvmsg
.msg_data
.response
.buff_offset
);
75 rcvpkt(card
, &rcvmsg
);
81 * Handle a write acknoledgement
83 if(IS_CE_MESSAGE(rcvmsg
, Lnk
, 1, Write
)) {
84 pr_debug("%s: Packet Send ACK on channel %d\n",
85 sc_adapter
[card
]->devicename
,
87 sc_adapter
[card
]->channel
[rcvmsg
.phy_link_no
-1].free_sendbufs
++;
92 * Handle a connection message
94 if (IS_CE_MESSAGE(rcvmsg
, Phy
, 1, Connect
))
98 pr_debug("%s: Connect message: line %d: status %d: cause 0x%x\n",
99 sc_adapter
[card
]->devicename
,
102 rcvmsg
.msg_data
.byte_array
[2]);
104 memcpy(&callid
,rcvmsg
.msg_data
.byte_array
,sizeof(int));
105 if(callid
>=0x8000 && callid
<=0xFFFF)
107 pr_debug("%s: Got Dial-Out Rsp\n",
108 sc_adapter
[card
]->devicename
);
109 indicate_status(card
, ISDN_STAT_DCONN
,
110 (unsigned long)rcvmsg
.phy_link_no
-1,NULL
);
113 else if(callid
>=0x0000 && callid
<=0x7FFF)
115 pr_debug("%s: Got Incoming Call\n",
116 sc_adapter
[card
]->devicename
);
117 strcpy(setup
.phone
,&(rcvmsg
.msg_data
.byte_array
[4]));
119 sc_adapter
[card
]->channel
[rcvmsg
.phy_link_no
-1].dn
);
125 indicate_status(card
, ISDN_STAT_ICALL
,(unsigned long)rcvmsg
.phy_link_no
-1,(char *)&setup
);
126 indicate_status(card
, ISDN_STAT_DCONN
,(unsigned long)rcvmsg
.phy_link_no
-1,NULL
);
132 * Handle a disconnection message
134 if (IS_CE_MESSAGE(rcvmsg
, Phy
, 1, Disconnect
))
136 pr_debug("%s: disconnect message: line %d: status %d: cause 0x%x\n",
137 sc_adapter
[card
]->devicename
,
140 rcvmsg
.msg_data
.byte_array
[2]);
142 indicate_status(card
, ISDN_STAT_BHUP
,(unsigned long)rcvmsg
.phy_link_no
-1,NULL
);
143 indicate_status(card
, ISDN_STAT_DHUP
,(unsigned long)rcvmsg
.phy_link_no
-1,NULL
);
149 * Handle a startProc engine up message
151 if (IS_CM_MESSAGE(rcvmsg
, 5, 0, MiscEngineUp
)) {
152 pr_debug("%s: Received EngineUp message\n",
153 sc_adapter
[card
]->devicename
);
154 sc_adapter
[card
]->EngineUp
= 1;
155 sendmessage(card
, CEPID
,ceReqTypeCall
,ceReqClass0
,ceReqCallGetMyNumber
,1,0,NULL
);
156 sendmessage(card
, CEPID
,ceReqTypeCall
,ceReqClass0
,ceReqCallGetMyNumber
,2,0,NULL
);
157 init_timer(&sc_adapter
[card
]->stat_timer
);
158 sc_adapter
[card
]->stat_timer
.function
= check_phystat
;
159 sc_adapter
[card
]->stat_timer
.data
= card
;
160 sc_adapter
[card
]->stat_timer
.expires
= jiffies
+ CHECKSTAT_TIME
;
161 add_timer(&sc_adapter
[card
]->stat_timer
);
166 * Start proc response
168 if (IS_CM_MESSAGE(rcvmsg
, 2, 0, StartProc
)) {
169 pr_debug("%s: StartProc Response Status %d\n",
170 sc_adapter
[card
]->devicename
,
176 * Handle a GetMyNumber Rsp
178 if (IS_CE_MESSAGE(rcvmsg
,Call
,0,GetMyNumber
)){
179 strcpy(sc_adapter
[card
]->channel
[rcvmsg
.phy_link_no
-1].dn
,rcvmsg
.msg_data
.byte_array
);
186 if(IS_CE_MESSAGE(rcvmsg
, Phy
, 2, Status
)) {
187 unsigned int b1stat
, b2stat
;
190 * Covert the message data to the adapter->phystat code
192 b1stat
= (unsigned int) rcvmsg
.msg_data
.byte_array
[0];
193 b2stat
= (unsigned int) rcvmsg
.msg_data
.byte_array
[1];
195 sc_adapter
[card
]->nphystat
= (b2stat
>> 8) | b1stat
; /* endian?? */
196 pr_debug("%s: PhyStat is 0x%2x\n",
197 sc_adapter
[card
]->devicename
,
198 sc_adapter
[card
]->nphystat
);
204 * Handle a GetFramFormat
206 if(IS_CE_MESSAGE(rcvmsg
, Call
, 0, GetFrameFormat
)) {
207 if(rcvmsg
.msg_data
.byte_array
[0] != HDLC_PROTO
) {
208 unsigned int proto
= HDLC_PROTO
;
210 * Set board format to HDLC if it wasn't already
212 pr_debug("%s: current frame format: 0x%x, will change to HDLC\n",
213 sc_adapter
[card
]->devicename
,
214 rcvmsg
.msg_data
.byte_array
[0]);
215 sendmessage(card
, CEPID
, ceReqTypeCall
,
217 ceReqCallSetFrameFormat
,
218 (unsigned char) channel
+1,
227 pr_debug("%s: Received unhandled message (%d,%d,%d) link %d\n",
228 sc_adapter
[card
]->devicename
,
229 rcvmsg
.type
, rcvmsg
.class, rcvmsg
.code
,
234 pr_debug("%s: Exiting Interrupt Handler\n",
235 sc_adapter
[card
]->devicename
);