binutils/ld: Don't add /usr/lib to the library search path twice.
[dragonfly.git] / sys / net / i4b / layer1 / ifpi2 / i4b_ifpi2_l1.c
1 /*
2  * Copyright (c) 1997, 2000 Hellmuth Michaelis. All rights reserved.
3  * Copyright (c) 2001 Gary Jennejohn. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  *---------------------------------------------------------------------------
27  *
28  *      i4b_ifpi2_l1.c - AVM Fritz PCI Version 2 layer 1 handler
29  *      ---------------------------------------------
30  *
31  *      $Id$ 
32  *
33  * $FreeBSD: src/sys/i4b/layer1/ifpi2/i4b_ifpi2_l1.c,v 1.2.2.1 2002/04/25 20:26:50 gj Exp $
34  * $DragonFly: src/sys/net/i4b/layer1/ifpi2/i4b_ifpi2_l1.c,v 1.4 2005/06/03 16:50:02 dillon Exp $
35  *
36  *      last edit-date: [Fri Jun  2 14:54:30 2000]
37  *
38  *---------------------------------------------------------------------------*/
39
40 #include "use_ifpi2.h"
41 #include "use_pci.h"
42
43 #if (NIFPI2 > 0) && (NPCI > 0)
44
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/mbuf.h>
48 #include <sys/socket.h>
49 #include <sys/thread2.h>
50
51 #include <net/if.h>
52
53 #include <net/i4b/include/machine/i4b_debug.h>
54 #include <net/i4b/include/machine/i4b_ioctl.h>
55 #include <net/i4b/include/machine/i4b_trace.h>
56
57 #include "../isic/i4b_isic.h"
58 #include "../isic/i4b_isac.h"
59
60 #include "i4b_ifpi2_ext.h"
61
62 #include "../i4b_l1.h"
63
64 #include "../../include/i4b_mbuf.h"
65 #include "../../include/i4b_global.h"
66
67 /*---------------------------------------------------------------------------*
68  *
69  *      L2 -> L1: PH-DATA-REQUEST
70  *      =========================
71  *
72  *      parms:
73  *              unit            physical interface unit number
74  *              m               mbuf containing L2 frame to be sent out
75  *              freeflag        MBUF_FREE: free mbuf here after having sent
76  *                                              it out
77  *                              MBUF_DONTFREE: mbuf is freed by Layer 2
78  *      returns:
79  *              ==0     fail, nothing sent out
80  *              !=0     ok, frame sent out
81  *
82  *---------------------------------------------------------------------------*/
83 int
84 ifpi2_ph_data_req(int unit, struct mbuf *m, int freeflag)
85 {
86         u_char cmd;
87         struct l1_softc *sc = ifpi2_scp[unit];
88
89 #ifdef NOTDEF
90         NDBGL1(L1_PRIM, "PH-DATA-REQ, unit %d, freeflag=%d", unit, freeflag);
91 #endif
92
93         if(m == NULL)                   /* failsafe */
94                 return (0);
95
96         crit_enter();
97
98         if(sc->sc_I430state == ST_F3)   /* layer 1 not running ? */
99         {
100                 NDBGL1(L1_I_ERR, "still in state F3!");
101                 ifpi2_ph_activate_req(unit);
102         }
103
104         if(sc->sc_state & ISAC_TX_ACTIVE)
105         {
106                 if(sc->sc_obuf2 == NULL)
107                 {
108                         sc->sc_obuf2 = m;               /* save mbuf ptr */
109
110                         if(freeflag)
111                                 sc->sc_freeflag2 = 1;   /* IRQ must mfree */
112                         else
113                                 sc->sc_freeflag2 = 0;   /* IRQ must not mfree */
114
115                         NDBGL1(L1_I_MSG, "using 2nd ISAC TX buffer, state = %s", ifpi2_printstate(sc));
116
117                         if(sc->sc_trace & TRACE_D_TX)
118                         {
119                                 i4b_trace_hdr_t hdr;
120                                 hdr.unit = L0IFPI2UNIT(unit);
121                                 hdr.type = TRC_CH_D;
122                                 hdr.dir = FROM_TE;
123                                 hdr.count = ++sc->sc_trace_dcount;
124                                 MICROTIME(hdr.time);
125                                 i4b_l1_trace_ind(&hdr, m->m_len, m->m_data);
126                         }
127                         crit_exit();
128                         return(1);
129                 }
130
131                 NDBGL1(L1_I_ERR, "No Space in TX FIFO, state = %s", ifpi2_printstate(sc));
132         
133                 if(freeflag == MBUF_FREE)
134                         i4b_Dfreembuf(m);                       
135         
136                 crit_exit();
137                 return (0);
138         }
139
140         if(sc->sc_trace & TRACE_D_TX)
141         {
142                 i4b_trace_hdr_t hdr;
143                 hdr.unit = L0IFPI2UNIT(unit);
144                 hdr.type = TRC_CH_D;
145                 hdr.dir = FROM_TE;
146                 hdr.count = ++sc->sc_trace_dcount;
147                 MICROTIME(hdr.time);
148                 i4b_l1_trace_ind(&hdr, m->m_len, m->m_data);
149         }
150         
151         sc->sc_state |= ISAC_TX_ACTIVE; /* set transmitter busy flag */
152
153         NDBGL1(L1_I_MSG, "ISAC_TX_ACTIVE set");
154
155         sc->sc_freeflag = 0;            /* IRQ must NOT mfree */
156         
157         ISAC_WRFIFO(m->m_data, min(m->m_len, ISAC_FIFO_LEN)); /* output to TX fifo */
158
159         if(m->m_len > ISAC_FIFO_LEN)    /* message > 32 bytes ? */
160         {
161                 sc->sc_obuf = m;        /* save mbuf ptr */
162                 sc->sc_op = m->m_data + ISAC_FIFO_LEN;  /* ptr for irq hdl */
163                 sc->sc_ol = m->m_len - ISAC_FIFO_LEN;   /* length for irq hdl */
164
165                 if(freeflag)
166                         sc->sc_freeflag = 1;    /* IRQ must mfree */
167                 
168                 cmd = ISAC_CMDR_XTF;
169         }
170         else
171         {
172                 sc->sc_obuf = NULL;
173                 sc->sc_op = NULL;
174                 sc->sc_ol = 0;
175
176                 if(freeflag)
177                         i4b_Dfreembuf(m);
178
179                 cmd = ISAC_CMDR_XTF | ISAC_CMDR_XME;
180         }
181
182         ISAC_WRITE(I_CMDR, cmd);
183         ISACCMDRWRDELAY();
184
185         crit_exit();
186         
187         return(1);
188 }
189
190 /*---------------------------------------------------------------------------*
191  *
192  *      L2 -> L1: PH-ACTIVATE-REQUEST
193  *      =============================
194  *
195  *      parms:
196  *              unit    physical interface unit number
197  *
198  *      returns:
199  *              ==0     
200  *              !=0     
201  *
202  *---------------------------------------------------------------------------*/
203 int
204 ifpi2_ph_activate_req(int unit)
205 {
206         struct l1_softc *sc = ifpi2_scp[unit];
207         NDBGL1(L1_PRIM, "PH-ACTIVATE-REQ, unit %d", unit);
208         ifpi2_next_state(sc, EV_PHAR);
209         return(0);
210 }
211
212 /*---------------------------------------------------------------------------*
213  *      command from the upper layers
214  *---------------------------------------------------------------------------*/
215 int
216 ifpi2_mph_command_req(int unit, int command, void *parm)
217 {
218         struct l1_softc *sc = ifpi2_scp[unit];
219
220         switch(command)
221         {
222                 case CMR_DOPEN:         /* daemon running */
223                         NDBGL1(L1_PRIM, "unit %d, command = CMR_DOPEN", unit);
224                         sc->sc_enabled = 1;                     
225                         break;
226                         
227                 case CMR_DCLOSE:        /* daemon not running */
228                         NDBGL1(L1_PRIM, "unit %d, command = CMR_DCLOSE", unit);
229                         sc->sc_enabled = 0;
230                         break;
231
232                 case CMR_SETTRACE:
233                         NDBGL1(L1_PRIM, "unit %d, command = CMR_SETTRACE, parm = %d", unit, (unsigned int)parm);
234                         sc->sc_trace = (unsigned int)parm;
235                         break;
236                 
237                 default:
238                         NDBGL1(L1_ERROR, "ERROR, unknown command = %d, unit = %d, parm = %d", command, unit, (unsigned int)parm);
239                         break;
240         }
241
242         return(0);
243 }
244
245 #endif /* NIFPI2 > 0 */