blob: e80cc76bc3142f79f5df99f5173559ab938a6029 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $Id: interrupt.c,v 1.4.8.3 2001/09/23 22:24:59 kai Exp $
2 *
3 * Copyright (C) 1996 SpellCaster Telecommunications Inc.
4 *
5 * This software may be used and distributed according to the terms
6 * of the GNU General Public License, incorporated herein by reference.
7 *
8 * For more information, please contact gpl-info@spellcast.com or write:
9 *
10 * SpellCaster Telecommunications Inc.
11 * 5621 Finch Avenue East, Unit #3
12 * Scarborough, Ontario Canada
13 * M1B 2T9
14 * +1 (416) 297-8565
15 * +1 (416) 297-6433 Facsimile
16 */
17
18#include "includes.h"
19#include "hardware.h"
20#include "message.h"
21#include "card.h"
22#include <linux/interrupt.h>
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024/*
Joe Perches475be4d2012-02-19 19:52:38 -080025 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 */
Jeff Garzik080eb422007-10-19 19:31:27 -040027irqreturn_t interrupt_handler(int dummy, void *card_inst)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028{
29
30 RspMessage rcvmsg;
31 int channel;
Jeff Garzik080eb422007-10-19 19:31:27 -040032 int card = (int)(unsigned long) card_inst;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Joe Perches475be4d2012-02-19 19:52:38 -080034 if (!IS_VALID_CARD(card)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 pr_debug("Invalid param: %d is not a valid card id\n", card);
36 return IRQ_NONE;
37 }
38
39 pr_debug("%s: Entered Interrupt handler\n",
Joe Perches475be4d2012-02-19 19:52:38 -080040 sc_adapter[card]->devicename);
41
42 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * Pull all of the waiting messages off the response queue
44 */
45 while (!receivemessage(card, &rcvmsg)) {
46 /*
47 * Push the message to the adapter structure for
48 * send_and_receive to snoop
49 */
Joe Perches475be4d2012-02-19 19:52:38 -080050 if (sc_adapter[card]->want_async_messages)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 memcpy(&(sc_adapter[card]->async_msg),
Joe Perches475be4d2012-02-19 19:52:38 -080052 &rcvmsg, sizeof(RspMessage));
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54 channel = (unsigned int) rcvmsg.phy_link_no;
Joe Perches475be4d2012-02-19 19:52:38 -080055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 /*
57 * Trap Invalid request messages
58 */
Joe Perches475be4d2012-02-19 19:52:38 -080059 if (IS_CM_MESSAGE(rcvmsg, 0, 0, Invalid)) {
60 pr_debug("%s: Invalid request Message, rsp_status = %d\n",
61 sc_adapter[card]->devicename,
62 rcvmsg.rsp_status);
63 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 }
Joe Perches475be4d2012-02-19 19:52:38 -080065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 /*
67 * Check for a linkRead message
68 */
69 if (IS_CE_MESSAGE(rcvmsg, Lnk, 1, Read))
70 {
Andrew Morton3879b6b2006-10-03 01:16:15 -070071 pr_debug("%s: Received packet 0x%x bytes long at 0x%lx\n",
Joe Perches475be4d2012-02-19 19:52:38 -080072 sc_adapter[card]->devicename,
73 rcvmsg.msg_data.response.msg_len,
74 rcvmsg.msg_data.response.buff_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 rcvpkt(card, &rcvmsg);
76 continue;
77
78 }
79
80 /*
81 * Handle a write acknoledgement
82 */
Joe Perches475be4d2012-02-19 19:52:38 -080083 if (IS_CE_MESSAGE(rcvmsg, Lnk, 1, Write)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 pr_debug("%s: Packet Send ACK on channel %d\n",
Joe Perches475be4d2012-02-19 19:52:38 -080085 sc_adapter[card]->devicename,
86 rcvmsg.phy_link_no);
87 sc_adapter[card]->channel[rcvmsg.phy_link_no - 1].free_sendbufs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 continue;
89 }
90
91 /*
92 * Handle a connection message
93 */
Joe Perches475be4d2012-02-19 19:52:38 -080094 if (IS_CE_MESSAGE(rcvmsg, Phy, 1, Connect))
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 {
96 unsigned int callid;
Joe Perches475be4d2012-02-19 19:52:38 -080097 setup_parm setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 pr_debug("%s: Connect message: line %d: status %d: cause 0x%x\n",
Joe Perches475be4d2012-02-19 19:52:38 -080099 sc_adapter[card]->devicename,
100 rcvmsg.phy_link_no,
101 rcvmsg.rsp_status,
102 rcvmsg.msg_data.byte_array[2]);
103
104 memcpy(&callid, rcvmsg.msg_data.byte_array, sizeof(int));
105 if (callid >= 0x8000 && callid <= 0xFFFF)
106 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 pr_debug("%s: Got Dial-Out Rsp\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800108 sc_adapter[card]->devicename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 indicate_status(card, ISDN_STAT_DCONN,
Joe Perches475be4d2012-02-19 19:52:38 -0800110 (unsigned long)rcvmsg.phy_link_no - 1, NULL);
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
Joe Perches475be4d2012-02-19 19:52:38 -0800113 else if (callid >= 0x0000 && callid <= 0x7FFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 {
Dan Carpenterb530fb62010-10-08 10:21:22 -0700115 int len;
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 pr_debug("%s: Got Incoming Call\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800118 sc_adapter[card]->devicename);
Dan Carpenterb530fb62010-10-08 10:21:22 -0700119 len = strlcpy(setup.phone, &(rcvmsg.msg_data.byte_array[4]),
Joe Perches475be4d2012-02-19 19:52:38 -0800120 sizeof(setup.phone));
Dan Carpenterb530fb62010-10-08 10:21:22 -0700121 if (len >= sizeof(setup.phone))
122 continue;
123 len = strlcpy(setup.eazmsn,
Joe Perches475be4d2012-02-19 19:52:38 -0800124 sc_adapter[card]->channel[rcvmsg.phy_link_no - 1].dn,
125 sizeof(setup.eazmsn));
Dan Carpenterb530fb62010-10-08 10:21:22 -0700126 if (len >= sizeof(setup.eazmsn))
127 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 setup.si1 = 7;
129 setup.si2 = 0;
130 setup.plan = 0;
131 setup.screen = 0;
132
Joe Perches475be4d2012-02-19 19:52:38 -0800133 indicate_status(card, ISDN_STAT_ICALL, (unsigned long)rcvmsg.phy_link_no - 1, (char *)&setup);
134 indicate_status(card, ISDN_STAT_DCONN, (unsigned long)rcvmsg.phy_link_no - 1, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136 continue;
137 }
138
139 /*
140 * Handle a disconnection message
141 */
Joe Perches475be4d2012-02-19 19:52:38 -0800142 if (IS_CE_MESSAGE(rcvmsg, Phy, 1, Disconnect))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 {
144 pr_debug("%s: disconnect message: line %d: status %d: cause 0x%x\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800145 sc_adapter[card]->devicename,
146 rcvmsg.phy_link_no,
147 rcvmsg.rsp_status,
148 rcvmsg.msg_data.byte_array[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Joe Perches475be4d2012-02-19 19:52:38 -0800150 indicate_status(card, ISDN_STAT_BHUP, (unsigned long)rcvmsg.phy_link_no - 1, NULL);
151 indicate_status(card, ISDN_STAT_DHUP, (unsigned long)rcvmsg.phy_link_no - 1, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 continue;
153
154 }
155
156 /*
157 * Handle a startProc engine up message
158 */
159 if (IS_CM_MESSAGE(rcvmsg, 5, 0, MiscEngineUp)) {
160 pr_debug("%s: Received EngineUp message\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800161 sc_adapter[card]->devicename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 sc_adapter[card]->EngineUp = 1;
Joe Perches475be4d2012-02-19 19:52:38 -0800163 sendmessage(card, CEPID, ceReqTypeCall, ceReqClass0, ceReqCallGetMyNumber, 1, 0, NULL);
164 sendmessage(card, CEPID, ceReqTypeCall, ceReqClass0, ceReqCallGetMyNumber, 2, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 init_timer(&sc_adapter[card]->stat_timer);
166 sc_adapter[card]->stat_timer.function = check_phystat;
167 sc_adapter[card]->stat_timer.data = card;
168 sc_adapter[card]->stat_timer.expires = jiffies + CHECKSTAT_TIME;
169 add_timer(&sc_adapter[card]->stat_timer);
170 continue;
171 }
172
173 /*
174 * Start proc response
175 */
176 if (IS_CM_MESSAGE(rcvmsg, 2, 0, StartProc)) {
177 pr_debug("%s: StartProc Response Status %d\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800178 sc_adapter[card]->devicename,
179 rcvmsg.rsp_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 continue;
181 }
182
183 /*
184 * Handle a GetMyNumber Rsp
185 */
Joe Perches475be4d2012-02-19 19:52:38 -0800186 if (IS_CE_MESSAGE(rcvmsg, Call, 0, GetMyNumber)) {
Dan Carpenterb530fb62010-10-08 10:21:22 -0700187 strlcpy(sc_adapter[card]->channel[rcvmsg.phy_link_no - 1].dn,
188 rcvmsg.msg_data.byte_array,
189 sizeof(rcvmsg.msg_data.byte_array));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 continue;
191 }
Joe Perches475be4d2012-02-19 19:52:38 -0800192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 /*
194 * PhyStatus response
195 */
Joe Perches475be4d2012-02-19 19:52:38 -0800196 if (IS_CE_MESSAGE(rcvmsg, Phy, 2, Status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 unsigned int b1stat, b2stat;
198
199 /*
200 * Covert the message data to the adapter->phystat code
201 */
202 b1stat = (unsigned int) rcvmsg.msg_data.byte_array[0];
203 b2stat = (unsigned int) rcvmsg.msg_data.byte_array[1];
204
205 sc_adapter[card]->nphystat = (b2stat >> 8) | b1stat; /* endian?? */
206 pr_debug("%s: PhyStat is 0x%2x\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800207 sc_adapter[card]->devicename,
208 sc_adapter[card]->nphystat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 continue;
210 }
211
212
Joe Perches475be4d2012-02-19 19:52:38 -0800213 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 * Handle a GetFramFormat
215 */
Joe Perches475be4d2012-02-19 19:52:38 -0800216 if (IS_CE_MESSAGE(rcvmsg, Call, 0, GetFrameFormat)) {
217 if (rcvmsg.msg_data.byte_array[0] != HDLC_PROTO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 unsigned int proto = HDLC_PROTO;
219 /*
220 * Set board format to HDLC if it wasn't already
221 */
222 pr_debug("%s: current frame format: 0x%x, will change to HDLC\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800223 sc_adapter[card]->devicename,
224 rcvmsg.msg_data.byte_array[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 sendmessage(card, CEPID, ceReqTypeCall,
Joe Perches475be4d2012-02-19 19:52:38 -0800226 ceReqClass0,
227 ceReqCallSetFrameFormat,
228 (unsigned char)channel + 1,
229 1, &proto);
230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 continue;
232 }
233
234 /*
235 * Hmm...
236 */
237 pr_debug("%s: Received unhandled message (%d,%d,%d) link %d\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800238 sc_adapter[card]->devicename,
239 rcvmsg.type, rcvmsg.class, rcvmsg.code,
240 rcvmsg.phy_link_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 } /* while */
243
244 pr_debug("%s: Exiting Interrupt Handler\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800245 sc_adapter[card]->devicename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return IRQ_HANDLED;
247}