31639a4508111460b7262b58cd56fa1bbd540e04
[dragonfly.git] / sys / dev / atm / hfa / fore_intr.c
1 /*
2  *
3  * ===================================
4  * HARP  |  Host ATM Research Platform
5  * ===================================
6  *
7  *
8  * This Host ATM Research Platform ("HARP") file (the "Software") is
9  * made available by Network Computing Services, Inc. ("NetworkCS")
10  * "AS IS".  NetworkCS does not provide maintenance, improvements or
11  * support of any kind.
12  *
13  * NETWORKCS MAKES NO WARRANTIES OR REPRESENTATIONS, EXPRESS OR IMPLIED,
14  * INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY
15  * AND FITNESS FOR A PARTICULAR PURPOSE, AS TO ANY ELEMENT OF THE
16  * SOFTWARE OR ANY SUPPORT PROVIDED IN CONNECTION WITH THIS SOFTWARE.
17  * In no event shall NetworkCS be responsible for any damages, including
18  * but not limited to consequential damages, arising from or relating to
19  * any use of the Software or related support.
20  *
21  * Copyright 1994-1998 Network Computing Services, Inc.
22  *
23  * Copies of this Software may be made, however, the above copyright
24  * notice must be reproduced on all copies.
25  *
26  *      @(#) $FreeBSD: src/sys/dev/hfa/fore_intr.c,v 1.3 1999/08/28 00:41:50 peter Exp $
27  *      @(#) $DragonFly: src/sys/dev/atm/hfa/fore_intr.c,v 1.2 2003/06/17 04:28:27 dillon Exp $
28  */
29
30 /*
31  * FORE Systems 200-Series Adapter Support
32  * ---------------------------------------
33  *
34  * Interrupt processing
35  *
36  */
37
38 #include <dev/hfa/fore_include.h>
39
40 #if defined(sun)
41 /*
42  * Polling interrupt routine
43  * 
44  * Polling interrupts are handled by calling all interrupt service 
45  * routines for a given level until someone claims to have "handled" the 
46  * interrupt.
47  *
48  * Called at interrupt level.
49  *
50  * Arguments:
51  *      none
52  *
53  * Returns:
54  *      1               an interrupt has been serviced
55  *      0               no interrupts serviced
56  *
57  */
58 int
59 fore_poll()
60 {
61         int     serviced = 0;
62         int     unit;
63
64         /*
65          * See if any of our devices are interrupting
66          */
67         for ( unit = 0; unit < fore_nunits; unit++ )
68         {
69                 Fore_unit       *fup = fore_units[unit];
70
71                 if (fup == NULL)
72                         continue;
73
74                 serviced += fore_intr((void *)fup);
75         }
76
77         /*
78          * Indicate if we handled an interrupt
79          */
80         return (serviced ? 1 : 0);
81 }
82 #endif  /* defined(sun) */
83
84
85 /*
86  * Device interrupt routine
87  * 
88  * Called at interrupt level.
89  *
90  * Arguments:
91  *      arg             pointer to device unit structure
92  *
93  * Returns:
94  *      1               device interrupt was serviced
95  *      0               no interrupts serviced
96  *
97  */
98 #if (defined(BSD) && (BSD <= 199306))
99 int
100 #else
101 void
102 #endif
103 fore_intr(arg)
104         void    *arg;
105 {
106         Fore_unit       *fup = arg;
107         Aali    *aap;
108 #if (defined(BSD) && (BSD <= 199306))
109         int     serviced = 0;
110 #endif
111
112         /*
113          * Try to prevent stuff happening after we've paniced
114          */
115         if (panicstr) {
116                 goto done;
117         }
118
119         /*
120          * Get to the microcode shared memory interface
121          */
122         if ((aap = fup->fu_aali) == NULL)
123                 goto done;
124
125         /*
126          * Has this card issued an interrupt??
127          */
128 #ifdef FORE_PCI
129         if (*fup->fu_psr) {
130 #else
131         if (aap->aali_intr_sent) {
132 #endif
133
134                 /*
135                  * Indicate that we've serviced an interrupt. 
136                  */
137 #if (defined(BSD) && (BSD <= 199306))
138                 serviced = 1;
139 #endif
140
141                 /*
142                  * Clear the device interrupt
143                  */
144                 switch (fup->fu_config.ac_device) {
145
146 #ifdef FORE_SBUS
147                 case DEV_FORE_SBA200E:
148                         SBA200E_HCR_SET(*fup->fu_ctlreg, SBA200E_CLR_SBUS_INTR);
149                         break;
150
151                 case DEV_FORE_SBA200:
152                         *fup->fu_ctlreg = SBA200_CLR_SBUS_INTR;
153                         break;
154 #endif
155 #ifdef FORE_PCI
156                 case DEV_FORE_PCA200E:
157                         PCA200E_HCR_SET(*fup->fu_ctlreg, PCA200E_CLR_HBUS_INT);
158                         break;
159 #endif
160
161                 }
162                 aap->aali_intr_sent = CP_WRITE(0);
163
164                 /*
165                  * Reset the watchdog timer
166                  */
167                 fup->fu_timer = FORE_WATCHDOG;
168
169                 /*
170                  * Device initialization handled separately
171                  */
172                 if ((fup->fu_flags & CUF_INITED) == 0) {
173
174                         /*
175                          * We're just initializing device now, so see if
176                          * the initialization command has completed
177                          */
178                         if (CP_READ(aap->aali_init.init_status) & 
179                                                 QSTAT_COMPLETED)
180                                 fore_initialize_complete(fup);
181
182                         /*
183                          * If we're still not inited, none of the host
184                          * queues are setup yet
185                          */
186                         if ((fup->fu_flags & CUF_INITED) == 0)
187                                 goto done;
188                 }
189
190                 /*
191                  * Drain the queues of completed work
192                  */
193                 fore_cmd_drain(fup);
194                 fore_recv_drain(fup);
195                 fore_xmit_drain(fup);
196
197                 /*
198                  * Supply more buffers to the CP
199                  */
200                 fore_buf_supply(fup);
201         }
202
203 done:
204 #if (defined(BSD) && (BSD <= 199306))
205         return(serviced);
206 #else
207         return;
208 #endif
209 }
210
211
212 /*
213  * Watchdog timeout routine
214  * 
215  * Called when we haven't heard from the card in a while.  Just in case
216  * we missed an interrupt, we'll drain the queues and try to resupply the
217  * CP with more receive buffers.  If the CP is partially wedged, hopefully
218  * this will be enough to get it going again.
219  *
220  * Called with interrupts locked out.
221  *
222  * Arguments:
223  *      fup             pointer to device unit structure
224  *
225  * Returns:
226  *      none
227  *
228  */
229 void
230 fore_watchdog(fup)
231         Fore_unit       *fup;
232 {
233         /*
234          * Try to prevent stuff happening after we've paniced
235          */
236         if (panicstr) {
237                 return;
238         }
239
240         /*
241          * Reset the watchdog timer
242          */
243         fup->fu_timer = FORE_WATCHDOG;
244
245         /*
246          * If the device is initialized, nudge it (wink, wink)
247          */
248         if (fup->fu_flags & CUF_INITED) {
249
250                 /*
251                  * Drain the queues of completed work
252                  */
253                 fore_cmd_drain(fup);
254                 fore_recv_drain(fup);
255                 fore_xmit_drain(fup);
256
257                 /*
258                  * Supply more buffers to the CP
259                  */
260                 fore_buf_supply(fup);
261         }
262
263         return;
264 }