76d975ad75028e0c139c5331619154607bb8d61c
[dragonfly.git] / sys / dev / atm / hea / eni_vcm.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/hea/eni_vcm.c,v 1.3 1999/08/28 00:41:47 peter Exp $
27  *      @(#) $DragonFly: src/sys/dev/atm/hea/eni_vcm.c,v 1.7 2008/03/01 22:03:13 swildner Exp $
28  */
29
30 /*
31  * Efficient ENI Adapter Support
32  * -----------------------------
33  *
34  * Virtual Channel Managment
35  *
36  */
37
38
39 #include <netproto/atm/kern_include.h>
40
41 #include "eni_stats.h"
42 #include "eni.h"
43 #include "eni_var.h"
44
45 /*
46  * VCC Stack Instantiation
47  * 
48  * This function is called via the common driver code during a device VCC
49  * stack instantiation.  The common code has already validated some of
50  * the request so we just need to check a few more ENI-specific details.
51  *
52  * Called at splnet.
53  *
54  * Arguments:
55  *      cup     pointer to device common unit
56  *      cvp     pointer to common VCC entry
57  *
58  * Returns:
59  *      0       instantiation successful
60  *      err     instantiation failed - reason indicated
61  *
62  */
63 int
64 eni_instvcc(Cmn_unit *cup, Cmn_vcc *cvp)
65 {
66         Eni_unit        *eup = (Eni_unit *)cup;
67         Eni_vcc         *evp = (Eni_vcc *)cvp;
68         Atm_attributes  *ap = &evp->ev_connvc->cvc_attr;
69
70         /*
71          * Validate requested AAL
72          */
73         switch (ap->aal.type) {
74
75         case ATM_AAL0:
76                 break;
77
78         case ATM_AAL5:
79                 if ((ap->aal.v.aal5.forward_max_SDU_size > ENI_IFF_MTU) ||
80                     (ap->aal.v.aal5.backward_max_SDU_size > ENI_IFF_MTU)) {
81                         eup->eu_stats.eni_st_drv.drv_vc_maxpdu++;
82                         return (EINVAL);
83                 }
84                 break;
85
86         default:
87                 return (EINVAL);
88         }
89
90         return (0);
91 }
92
93
94 /*
95  * Open a VCC
96  *
97  * This function is called via the common driver code after receiving a
98  * stack *_INIT* command. The common code has already validated most of
99  * the request so we just need to check a few more ENI-specific details.
100  *
101  * Called at splimp.
102  *
103  * Arguments:
104  *      cup     pointer to device common unit
105  *      cvp     pointer to common VCC entry
106  *
107  * Returns:
108  *      0       open successful
109  *      err     open failed
110  *
111  */
112 int
113 eni_openvcc(Cmn_unit *cup, Cmn_vcc *cvp)
114 {
115         Eni_unit        *eup = (Eni_unit *)cup;
116         Eni_vcc         *evp = (Eni_vcc *)cvp;
117         struct vccb     *vcp = evp->ev_connvc->cvc_vcc;
118         int             err = 0;
119
120         VCI_Table       *vct;
121         int             size;
122         int             mode;
123         int             nsize;
124
125         /*
126          * Validate the VPI and VCI values
127          */
128         if ( (vcp->vc_vpi > eup->eu_pif.pif_maxvpi) ||
129              (vcp->vc_vci > eup->eu_pif.pif_maxvci) ) {
130                 eup->eu_stats.eni_st_drv.drv_vc_badrng++;
131                 return ( EFAULT );
132         }
133
134         /*
135          * Check if this VCI is already active
136          */
137         vct = &eup->eu_vcitbl[ vcp->vc_vci ];
138         if ( vct->vci_control >> VCI_MODE_SHIFT != VCI_MODE_TRASH ) {
139                 return ( EEXIST );
140         }
141
142         /*
143          * Allocate some permanent adapter memory for the reassembly
144          * buffer. Special case the signalling channel(s) buffer size.
145          * Otherwise, the buffer size will be based on whether this is
146          * a server or client card.
147          */
148         if ( vcp->vc_vci == UNI_SIG_VCI )       /* HACK */
149                 size = RX_SIG_BSIZE;
150         else
151                 size = (eup->eu_ramsize > MAX_CLIENT_RAM * ENI_BUF_PGSZ) ?
152                         RX_SERVER_BSIZE * ENI_BUF_PGSZ :
153                         RX_CLIENT_BSIZE * ENI_BUF_PGSZ;
154
155         if ( ( evp->ev_rxbuf = eni_allocate_buffer ( eup, (u_long *)&size ) )
156             == (caddr_t)NULL ) {
157                 return ( ENOMEM );
158         }
159         evp->ev_rxpos = 0;
160
161         /*
162          * We only need to open incoming VCI's so outbound VCI's
163          * just get set to CVS_ACTIVE state.
164          */
165         if ( ( vcp->vc_type & VCC_IN ) == 0 ) {
166                 /*
167                  * Set the state and return - nothing else needs to be done.
168                  */
169                 evp->ev_state = CVS_ACTIVE;
170                 return ( 0 );
171         }
172
173         /*
174          * Set the VCI Table entry to start receiving
175          */
176         mode = ( evp->ev_connvc->cvc_attr.aal.type == ATM_AAL5
177                 ? VCI_MODE_AAL5 : VCI_MODE_AAL0 );
178         size >>= ENI_LOC_PREDIV;        /* Predivide by 256 WORDS */
179         for ( nsize = -1; size; nsize++ )
180                 size >>= 1;
181
182         vct->vci_control = mode << VCI_MODE_SHIFT |
183             PTI_MODE_TRASH << VCI_PTI_SHIFT |
184                 ( (u_int)(evp->ev_rxbuf) >> ENI_LOC_PREDIV ) << VCI_LOC_SHIFT |
185                 nsize << VCI_SIZE_SHIFT;
186         vct->vci_descr = 0;             /* Descr = Rdptr = 0 */
187         vct->vci_write = 0;             /* WritePtr = CellCount = 0 */
188
189         /*
190          * Indicate VC active
191          */
192         evp->ev_state = CVS_ACTIVE;
193
194         return ( err );
195 }
196
197 /*
198  * Close a VCC
199  *
200  * This function is called via the common driver code after receiving a
201  * stack *_TERM* command. The common code has already validated most of
202  * the request so we just need to check a few more ENI-specific details.
203  *
204  * Called at splimp.
205  *
206  * Arguments:
207  *      cup     pointer to device common unit
208  *      cvp     pointer to common VCC entry
209  *
210  * Returns:
211  *      0       close successful
212  *      err     close failed
213  *
214  */
215 int
216 eni_closevcc(Cmn_unit *cup, Cmn_vcc *cvp)
217 {
218         Eni_unit        *eup = (Eni_unit *)cup;
219         Eni_vcc         *evp = (Eni_vcc *)cvp;
220         struct vccb     *vcp = evp->ev_connvc->cvc_vcc;
221         int             err = 0;
222
223         VCI_Table       *vct;
224
225         /*
226          * Clear any references to this VCC in our transmit queue
227          */
228         /*
229          * We'll simply allow any existing TX requests to be
230          * sent as that's easier then pulling them out of
231          * everywhere. Besides, they should be ignored at the
232          * receiver whenever the other end shuts down.
233          */
234
235         /*
236          * Free the adapter receive buffer
237          */
238         (void) eni_free_buffer ( eup, (caddr_t)evp->ev_rxbuf );
239
240         /*
241          * If this is an outbound only VCI, then we can close
242          * immediately.
243          */
244         if ( ( vcp->vc_type & VCC_IN ) == 0 ) {
245                 /*
246                  * The state will be set to TERM when we return
247                  * to the *_TERM caller.
248                  */
249                 return ( 0 );
250         }
251
252         /*
253          * Find VCI entry in VCI Table
254          */
255         vct = &eup->eu_vcitbl[ vcp->vc_vci ];
256
257         /*
258          * Reset the VCI state
259          */
260         vct->vci_control = ( vct->vci_control & VCI_MODE_MASK )
261                 /* | VCI_MODE_TRASH */;
262         DELAY ( MIDWAY_DELAY );                 /* Give the adapter time to */
263                                         /* make the transition */
264
265         /*
266          * Reset everything
267          */
268         KM_ZERO ( vct, sizeof(VCI_Table) );
269
270         return ( err );
271 }
272