i82557.c revision 1.46 1 1.46 thorpej /* $NetBSD: i82557.c,v 1.46 2001/05/21 20:59:38 thorpej Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*-
4 1.1 thorpej * Copyright (c) 1997, 1998, 1999 The NetBSD Foundation, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.1 thorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.1 thorpej * NASA Ames Research Center.
10 1.1 thorpej *
11 1.1 thorpej * Redistribution and use in source and binary forms, with or without
12 1.1 thorpej * modification, are permitted provided that the following conditions
13 1.1 thorpej * are met:
14 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
15 1.1 thorpej * notice, this list of conditions and the following disclaimer.
16 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
17 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
18 1.1 thorpej * documentation and/or other materials provided with the distribution.
19 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
20 1.1 thorpej * must display the following acknowledgement:
21 1.1 thorpej * This product includes software developed by the NetBSD
22 1.1 thorpej * Foundation, Inc. and its contributors.
23 1.1 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.1 thorpej * contributors may be used to endorse or promote products derived
25 1.1 thorpej * from this software without specific prior written permission.
26 1.1 thorpej *
27 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
38 1.1 thorpej */
39 1.1 thorpej
40 1.1 thorpej /*
41 1.1 thorpej * Copyright (c) 1995, David Greenman
42 1.1 thorpej * All rights reserved.
43 1.1 thorpej *
44 1.1 thorpej * Redistribution and use in source and binary forms, with or without
45 1.1 thorpej * modification, are permitted provided that the following conditions
46 1.1 thorpej * are met:
47 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
48 1.1 thorpej * notice unmodified, this list of conditions, and the following
49 1.1 thorpej * disclaimer.
50 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
51 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
52 1.1 thorpej * documentation and/or other materials provided with the distribution.
53 1.1 thorpej *
54 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
55 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 1.1 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 1.1 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
58 1.1 thorpej * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 1.1 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 1.1 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 1.1 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 1.1 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64 1.1 thorpej * SUCH DAMAGE.
65 1.1 thorpej *
66 1.1 thorpej * Id: if_fxp.c,v 1.47 1998/01/08 23:42:29 eivind Exp
67 1.1 thorpej */
68 1.1 thorpej
69 1.1 thorpej /*
70 1.14 sommerfe * Device driver for the Intel i82557 fast Ethernet controller,
71 1.14 sommerfe * and its successors, the i82558 and i82559.
72 1.1 thorpej */
73 1.1 thorpej
74 1.1 thorpej #include "opt_inet.h"
75 1.1 thorpej #include "opt_ns.h"
76 1.1 thorpej #include "bpfilter.h"
77 1.1 thorpej #include "rnd.h"
78 1.1 thorpej
79 1.1 thorpej #include <sys/param.h>
80 1.1 thorpej #include <sys/systm.h>
81 1.24 thorpej #include <sys/callout.h>
82 1.1 thorpej #include <sys/mbuf.h>
83 1.1 thorpej #include <sys/malloc.h>
84 1.1 thorpej #include <sys/kernel.h>
85 1.1 thorpej #include <sys/socket.h>
86 1.1 thorpej #include <sys/ioctl.h>
87 1.1 thorpej #include <sys/errno.h>
88 1.1 thorpej #include <sys/device.h>
89 1.1 thorpej
90 1.15 thorpej #include <machine/endian.h>
91 1.15 thorpej
92 1.35 mrg #include <uvm/uvm_extern.h>
93 1.1 thorpej
94 1.1 thorpej #if NRND > 0
95 1.1 thorpej #include <sys/rnd.h>
96 1.1 thorpej #endif
97 1.1 thorpej
98 1.1 thorpej #include <net/if.h>
99 1.1 thorpej #include <net/if_dl.h>
100 1.1 thorpej #include <net/if_media.h>
101 1.1 thorpej #include <net/if_ether.h>
102 1.1 thorpej
103 1.1 thorpej #if NBPFILTER > 0
104 1.1 thorpej #include <net/bpf.h>
105 1.1 thorpej #endif
106 1.1 thorpej
107 1.1 thorpej #ifdef INET
108 1.1 thorpej #include <netinet/in.h>
109 1.1 thorpej #include <netinet/if_inarp.h>
110 1.1 thorpej #endif
111 1.1 thorpej
112 1.1 thorpej #ifdef NS
113 1.1 thorpej #include <netns/ns.h>
114 1.1 thorpej #include <netns/ns_if.h>
115 1.1 thorpej #endif
116 1.1 thorpej
117 1.1 thorpej #include <machine/bus.h>
118 1.1 thorpej #include <machine/intr.h>
119 1.1 thorpej
120 1.1 thorpej #include <dev/mii/miivar.h>
121 1.1 thorpej
122 1.1 thorpej #include <dev/ic/i82557reg.h>
123 1.1 thorpej #include <dev/ic/i82557var.h>
124 1.1 thorpej
125 1.1 thorpej /*
126 1.1 thorpej * NOTE! On the Alpha, we have an alignment constraint. The
127 1.1 thorpej * card DMAs the packet immediately following the RFA. However,
128 1.1 thorpej * the first thing in the packet is a 14-byte Ethernet header.
129 1.1 thorpej * This means that the packet is misaligned. To compensate,
130 1.1 thorpej * we actually offset the RFA 2 bytes into the cluster. This
131 1.1 thorpej * alignes the packet after the Ethernet header at a 32-bit
132 1.1 thorpej * boundary. HOWEVER! This means that the RFA is misaligned!
133 1.1 thorpej */
134 1.1 thorpej #define RFA_ALIGNMENT_FUDGE 2
135 1.1 thorpej
136 1.1 thorpej /*
137 1.1 thorpej * Template for default configuration parameters.
138 1.1 thorpej * See struct fxp_cb_config for the bit definitions.
139 1.1 thorpej */
140 1.1 thorpej u_int8_t fxp_cb_config_template[] = {
141 1.1 thorpej 0x0, 0x0, /* cb_status */
142 1.1 thorpej 0x80, 0x2, /* cb_command */
143 1.1 thorpej 0xff, 0xff, 0xff, 0xff, /* link_addr */
144 1.1 thorpej 0x16, /* 0 */
145 1.1 thorpej 0x8, /* 1 */
146 1.1 thorpej 0x0, /* 2 */
147 1.1 thorpej 0x0, /* 3 */
148 1.1 thorpej 0x0, /* 4 */
149 1.1 thorpej 0x80, /* 5 */
150 1.1 thorpej 0xb2, /* 6 */
151 1.1 thorpej 0x3, /* 7 */
152 1.1 thorpej 0x1, /* 8 */
153 1.1 thorpej 0x0, /* 9 */
154 1.1 thorpej 0x26, /* 10 */
155 1.1 thorpej 0x0, /* 11 */
156 1.1 thorpej 0x60, /* 12 */
157 1.1 thorpej 0x0, /* 13 */
158 1.1 thorpej 0xf2, /* 14 */
159 1.1 thorpej 0x48, /* 15 */
160 1.1 thorpej 0x0, /* 16 */
161 1.1 thorpej 0x40, /* 17 */
162 1.1 thorpej 0xf3, /* 18 */
163 1.1 thorpej 0x0, /* 19 */
164 1.1 thorpej 0x3f, /* 20 */
165 1.1 thorpej 0x5 /* 21 */
166 1.1 thorpej };
167 1.1 thorpej
168 1.46 thorpej void fxp_mii_initmedia(struct fxp_softc *);
169 1.46 thorpej int fxp_mii_mediachange(struct ifnet *);
170 1.46 thorpej void fxp_mii_mediastatus(struct ifnet *, struct ifmediareq *);
171 1.46 thorpej
172 1.46 thorpej void fxp_80c24_initmedia(struct fxp_softc *);
173 1.46 thorpej int fxp_80c24_mediachange(struct ifnet *);
174 1.46 thorpej void fxp_80c24_mediastatus(struct ifnet *, struct ifmediareq *);
175 1.46 thorpej
176 1.46 thorpej void fxp_start(struct ifnet *);
177 1.46 thorpej int fxp_ioctl(struct ifnet *, u_long, caddr_t);
178 1.46 thorpej void fxp_watchdog(struct ifnet *);
179 1.46 thorpej int fxp_init(struct ifnet *);
180 1.46 thorpej void fxp_stop(struct ifnet *, int);
181 1.46 thorpej
182 1.46 thorpej void fxp_rxdrain(struct fxp_softc *);
183 1.46 thorpej int fxp_add_rfabuf(struct fxp_softc *, bus_dmamap_t, int);
184 1.46 thorpej int fxp_mdi_read(struct device *, int, int);
185 1.46 thorpej void fxp_statchg(struct device *);
186 1.46 thorpej void fxp_mdi_write(struct device *, int, int, int);
187 1.46 thorpej void fxp_autosize_eeprom(struct fxp_softc*);
188 1.46 thorpej void fxp_read_eeprom(struct fxp_softc *, u_int16_t *, int, int);
189 1.46 thorpej void fxp_get_info(struct fxp_softc *, u_int8_t *);
190 1.46 thorpej void fxp_tick(void *);
191 1.46 thorpej void fxp_mc_setup(struct fxp_softc *);
192 1.1 thorpej
193 1.46 thorpej void fxp_shutdown(void *);
194 1.46 thorpej void fxp_power(int, void *);
195 1.1 thorpej
196 1.7 thorpej int fxp_copy_small = 0;
197 1.10 sommerfe
198 1.1 thorpej struct fxp_phytype {
199 1.1 thorpej int fp_phy; /* type of PHY, -1 for MII at the end. */
200 1.46 thorpej void (*fp_init)(struct fxp_softc *);
201 1.1 thorpej } fxp_phytype_table[] = {
202 1.1 thorpej { FXP_PHY_80C24, fxp_80c24_initmedia },
203 1.1 thorpej { -1, fxp_mii_initmedia },
204 1.1 thorpej };
205 1.1 thorpej
206 1.1 thorpej /*
207 1.1 thorpej * Set initial transmit threshold at 64 (512 bytes). This is
208 1.1 thorpej * increased by 64 (512 bytes) at a time, to maximum of 192
209 1.1 thorpej * (1536 bytes), if an underrun occurs.
210 1.1 thorpej */
211 1.1 thorpej static int tx_threshold = 64;
212 1.1 thorpej
213 1.1 thorpej /*
214 1.1 thorpej * Wait for the previous command to be accepted (but not necessarily
215 1.1 thorpej * completed).
216 1.1 thorpej */
217 1.46 thorpej static __inline void
218 1.46 thorpej fxp_scb_wait(struct fxp_softc *sc)
219 1.1 thorpej {
220 1.1 thorpej int i = 10000;
221 1.1 thorpej
222 1.1 thorpej while (CSR_READ_1(sc, FXP_CSR_SCB_COMMAND) && --i)
223 1.2 thorpej delay(2);
224 1.1 thorpej if (i == 0)
225 1.1 thorpej printf("%s: WARNING: SCB timed out!\n", sc->sc_dev.dv_xname);
226 1.1 thorpej }
227 1.1 thorpej
228 1.1 thorpej /*
229 1.1 thorpej * Finish attaching an i82557 interface. Called by bus-specific front-end.
230 1.1 thorpej */
231 1.1 thorpej void
232 1.46 thorpej fxp_attach(struct fxp_softc *sc)
233 1.1 thorpej {
234 1.37 tsutsui u_int8_t enaddr[ETHER_ADDR_LEN];
235 1.1 thorpej struct ifnet *ifp;
236 1.1 thorpej bus_dma_segment_t seg;
237 1.1 thorpej int rseg, i, error;
238 1.1 thorpej struct fxp_phytype *fp;
239 1.1 thorpej
240 1.24 thorpej callout_init(&sc->sc_callout);
241 1.24 thorpej
242 1.1 thorpej /*
243 1.1 thorpej * Allocate the control data structures, and create and load the
244 1.1 thorpej * DMA map for it.
245 1.1 thorpej */
246 1.1 thorpej if ((error = bus_dmamem_alloc(sc->sc_dmat,
247 1.1 thorpej sizeof(struct fxp_control_data), PAGE_SIZE, 0, &seg, 1, &rseg,
248 1.1 thorpej 0)) != 0) {
249 1.1 thorpej printf("%s: unable to allocate control data, error = %d\n",
250 1.1 thorpej sc->sc_dev.dv_xname, error);
251 1.1 thorpej goto fail_0;
252 1.1 thorpej }
253 1.1 thorpej
254 1.1 thorpej if ((error = bus_dmamem_map(sc->sc_dmat, &seg, rseg,
255 1.2 thorpej sizeof(struct fxp_control_data), (caddr_t *)&sc->sc_control_data,
256 1.1 thorpej BUS_DMA_COHERENT)) != 0) {
257 1.1 thorpej printf("%s: unable to map control data, error = %d\n",
258 1.1 thorpej sc->sc_dev.dv_xname, error);
259 1.1 thorpej goto fail_1;
260 1.1 thorpej }
261 1.18 joda sc->sc_cdseg = seg;
262 1.18 joda sc->sc_cdnseg = rseg;
263 1.18 joda
264 1.2 thorpej bzero(sc->sc_control_data, sizeof(struct fxp_control_data));
265 1.1 thorpej
266 1.1 thorpej if ((error = bus_dmamap_create(sc->sc_dmat,
267 1.1 thorpej sizeof(struct fxp_control_data), 1,
268 1.1 thorpej sizeof(struct fxp_control_data), 0, 0, &sc->sc_dmamap)) != 0) {
269 1.1 thorpej printf("%s: unable to create control data DMA map, "
270 1.1 thorpej "error = %d\n", sc->sc_dev.dv_xname, error);
271 1.1 thorpej goto fail_2;
272 1.1 thorpej }
273 1.1 thorpej
274 1.1 thorpej if ((error = bus_dmamap_load(sc->sc_dmat, sc->sc_dmamap,
275 1.2 thorpej sc->sc_control_data, sizeof(struct fxp_control_data), NULL,
276 1.1 thorpej 0)) != 0) {
277 1.1 thorpej printf("%s: can't load control data DMA map, error = %d\n",
278 1.1 thorpej sc->sc_dev.dv_xname, error);
279 1.1 thorpej goto fail_3;
280 1.1 thorpej }
281 1.1 thorpej
282 1.1 thorpej /*
283 1.1 thorpej * Create the transmit buffer DMA maps.
284 1.1 thorpej */
285 1.1 thorpej for (i = 0; i < FXP_NTXCB; i++) {
286 1.1 thorpej if ((error = bus_dmamap_create(sc->sc_dmat, MCLBYTES,
287 1.1 thorpej FXP_NTXSEG, MCLBYTES, 0, 0,
288 1.2 thorpej &FXP_DSTX(sc, i)->txs_dmamap)) != 0) {
289 1.1 thorpej printf("%s: unable to create tx DMA map %d, "
290 1.1 thorpej "error = %d\n", sc->sc_dev.dv_xname, i, error);
291 1.1 thorpej goto fail_4;
292 1.1 thorpej }
293 1.1 thorpej }
294 1.1 thorpej
295 1.1 thorpej /*
296 1.1 thorpej * Create the receive buffer DMA maps.
297 1.1 thorpej */
298 1.1 thorpej for (i = 0; i < FXP_NRFABUFS; i++) {
299 1.1 thorpej if ((error = bus_dmamap_create(sc->sc_dmat, MCLBYTES, 1,
300 1.7 thorpej MCLBYTES, 0, 0, &sc->sc_rxmaps[i])) != 0) {
301 1.1 thorpej printf("%s: unable to create rx DMA map %d, "
302 1.1 thorpej "error = %d\n", sc->sc_dev.dv_xname, i, error);
303 1.1 thorpej goto fail_5;
304 1.1 thorpej }
305 1.1 thorpej }
306 1.1 thorpej
307 1.1 thorpej /* Initialize MAC address and media structures. */
308 1.1 thorpej fxp_get_info(sc, enaddr);
309 1.1 thorpej
310 1.1 thorpej printf("%s: Ethernet address %s, %s Mb/s\n", sc->sc_dev.dv_xname,
311 1.1 thorpej ether_sprintf(enaddr), sc->phy_10Mbps_only ? "10" : "10/100");
312 1.1 thorpej
313 1.1 thorpej ifp = &sc->sc_ethercom.ec_if;
314 1.1 thorpej
315 1.1 thorpej /*
316 1.1 thorpej * Get info about our media interface, and initialize it. Note
317 1.1 thorpej * the table terminates itself with a phy of -1, indicating
318 1.1 thorpej * that we're using MII.
319 1.1 thorpej */
320 1.1 thorpej for (fp = fxp_phytype_table; fp->fp_phy != -1; fp++)
321 1.1 thorpej if (fp->fp_phy == sc->phy_primary_device)
322 1.1 thorpej break;
323 1.1 thorpej (*fp->fp_init)(sc);
324 1.1 thorpej
325 1.1 thorpej bcopy(sc->sc_dev.dv_xname, ifp->if_xname, IFNAMSIZ);
326 1.1 thorpej ifp->if_softc = sc;
327 1.1 thorpej ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
328 1.1 thorpej ifp->if_ioctl = fxp_ioctl;
329 1.1 thorpej ifp->if_start = fxp_start;
330 1.1 thorpej ifp->if_watchdog = fxp_watchdog;
331 1.40 thorpej ifp->if_init = fxp_init;
332 1.40 thorpej ifp->if_stop = fxp_stop;
333 1.43 thorpej IFQ_SET_READY(&ifp->if_snd);
334 1.1 thorpej
335 1.1 thorpej /*
336 1.39 thorpej * We can support 802.1Q VLAN-sized frames.
337 1.39 thorpej */
338 1.39 thorpej sc->sc_ethercom.ec_capabilities |= ETHERCAP_VLAN_MTU;
339 1.39 thorpej
340 1.39 thorpej /*
341 1.1 thorpej * Attach the interface.
342 1.1 thorpej */
343 1.1 thorpej if_attach(ifp);
344 1.1 thorpej ether_ifattach(ifp, enaddr);
345 1.1 thorpej #if NRND > 0
346 1.1 thorpej rnd_attach_source(&sc->rnd_source, sc->sc_dev.dv_xname,
347 1.19 enami RND_TYPE_NET, 0);
348 1.1 thorpej #endif
349 1.1 thorpej
350 1.1 thorpej /*
351 1.1 thorpej * Add shutdown hook so that DMA is disabled prior to reboot. Not
352 1.1 thorpej * doing do could allow DMA to corrupt kernel memory during the
353 1.1 thorpej * reboot before the driver initializes.
354 1.1 thorpej */
355 1.1 thorpej sc->sc_sdhook = shutdownhook_establish(fxp_shutdown, sc);
356 1.1 thorpej if (sc->sc_sdhook == NULL)
357 1.1 thorpej printf("%s: WARNING: unable to establish shutdown hook\n",
358 1.1 thorpej sc->sc_dev.dv_xname);
359 1.9 sommerfe /*
360 1.9 sommerfe * Add suspend hook, for similar reasons..
361 1.9 sommerfe */
362 1.9 sommerfe sc->sc_powerhook = powerhook_establish(fxp_power, sc);
363 1.9 sommerfe if (sc->sc_powerhook == NULL)
364 1.9 sommerfe printf("%s: WARNING: unable to establish power hook\n",
365 1.9 sommerfe sc->sc_dev.dv_xname);
366 1.34 jhawk
367 1.34 jhawk /* The attach is successful. */
368 1.34 jhawk sc->sc_flags |= FXPF_ATTACHED;
369 1.34 jhawk
370 1.1 thorpej return;
371 1.1 thorpej
372 1.1 thorpej /*
373 1.1 thorpej * Free any resources we've allocated during the failed attach
374 1.1 thorpej * attempt. Do this in reverse order and fall though.
375 1.1 thorpej */
376 1.1 thorpej fail_5:
377 1.1 thorpej for (i = 0; i < FXP_NRFABUFS; i++) {
378 1.7 thorpej if (sc->sc_rxmaps[i] != NULL)
379 1.7 thorpej bus_dmamap_destroy(sc->sc_dmat, sc->sc_rxmaps[i]);
380 1.1 thorpej }
381 1.1 thorpej fail_4:
382 1.1 thorpej for (i = 0; i < FXP_NTXCB; i++) {
383 1.2 thorpej if (FXP_DSTX(sc, i)->txs_dmamap != NULL)
384 1.1 thorpej bus_dmamap_destroy(sc->sc_dmat,
385 1.2 thorpej FXP_DSTX(sc, i)->txs_dmamap);
386 1.1 thorpej }
387 1.1 thorpej bus_dmamap_unload(sc->sc_dmat, sc->sc_dmamap);
388 1.1 thorpej fail_3:
389 1.1 thorpej bus_dmamap_destroy(sc->sc_dmat, sc->sc_dmamap);
390 1.1 thorpej fail_2:
391 1.2 thorpej bus_dmamem_unmap(sc->sc_dmat, (caddr_t)sc->sc_control_data,
392 1.1 thorpej sizeof(struct fxp_control_data));
393 1.1 thorpej fail_1:
394 1.1 thorpej bus_dmamem_free(sc->sc_dmat, &seg, rseg);
395 1.1 thorpej fail_0:
396 1.1 thorpej return;
397 1.1 thorpej }
398 1.1 thorpej
399 1.1 thorpej void
400 1.46 thorpej fxp_mii_initmedia(struct fxp_softc *sc)
401 1.1 thorpej {
402 1.1 thorpej
403 1.6 thorpej sc->sc_flags |= FXPF_MII;
404 1.6 thorpej
405 1.1 thorpej sc->sc_mii.mii_ifp = &sc->sc_ethercom.ec_if;
406 1.1 thorpej sc->sc_mii.mii_readreg = fxp_mdi_read;
407 1.1 thorpej sc->sc_mii.mii_writereg = fxp_mdi_write;
408 1.1 thorpej sc->sc_mii.mii_statchg = fxp_statchg;
409 1.1 thorpej ifmedia_init(&sc->sc_mii.mii_media, 0, fxp_mii_mediachange,
410 1.1 thorpej fxp_mii_mediastatus);
411 1.17 thorpej /*
412 1.17 thorpej * The i82557 wedges if all of its PHYs are isolated!
413 1.17 thorpej */
414 1.16 thorpej mii_attach(&sc->sc_dev, &sc->sc_mii, 0xffffffff, MII_PHY_ANY,
415 1.17 thorpej MII_OFFSET_ANY, MIIF_NOISOLATE);
416 1.1 thorpej if (LIST_FIRST(&sc->sc_mii.mii_phys) == NULL) {
417 1.1 thorpej ifmedia_add(&sc->sc_mii.mii_media, IFM_ETHER|IFM_NONE, 0, NULL);
418 1.1 thorpej ifmedia_set(&sc->sc_mii.mii_media, IFM_ETHER|IFM_NONE);
419 1.1 thorpej } else
420 1.1 thorpej ifmedia_set(&sc->sc_mii.mii_media, IFM_ETHER|IFM_AUTO);
421 1.1 thorpej }
422 1.1 thorpej
423 1.1 thorpej void
424 1.46 thorpej fxp_80c24_initmedia(struct fxp_softc *sc)
425 1.1 thorpej {
426 1.1 thorpej
427 1.1 thorpej /*
428 1.1 thorpej * The Seeq 80c24 AutoDUPLEX(tm) Ethernet Interface Adapter
429 1.1 thorpej * doesn't have a programming interface of any sort. The
430 1.1 thorpej * media is sensed automatically based on how the link partner
431 1.1 thorpej * is configured. This is, in essence, manual configuration.
432 1.1 thorpej */
433 1.1 thorpej printf("%s: Seeq 80c24 AutoDUPLEX media interface present\n",
434 1.1 thorpej sc->sc_dev.dv_xname);
435 1.1 thorpej ifmedia_init(&sc->sc_mii.mii_media, 0, fxp_80c24_mediachange,
436 1.1 thorpej fxp_80c24_mediastatus);
437 1.1 thorpej ifmedia_add(&sc->sc_mii.mii_media, IFM_ETHER|IFM_MANUAL, 0, NULL);
438 1.1 thorpej ifmedia_set(&sc->sc_mii.mii_media, IFM_ETHER|IFM_MANUAL);
439 1.1 thorpej }
440 1.1 thorpej
441 1.1 thorpej /*
442 1.1 thorpej * Device shutdown routine. Called at system shutdown after sync. The
443 1.1 thorpej * main purpose of this routine is to shut off receiver DMA so that
444 1.1 thorpej * kernel memory doesn't get clobbered during warmboot.
445 1.1 thorpej */
446 1.1 thorpej void
447 1.46 thorpej fxp_shutdown(void *arg)
448 1.1 thorpej {
449 1.2 thorpej struct fxp_softc *sc = arg;
450 1.1 thorpej
451 1.9 sommerfe /*
452 1.9 sommerfe * Since the system's going to halt shortly, don't bother
453 1.9 sommerfe * freeing mbufs.
454 1.9 sommerfe */
455 1.40 thorpej fxp_stop(&sc->sc_ethercom.ec_if, 0);
456 1.9 sommerfe }
457 1.9 sommerfe /*
458 1.9 sommerfe * Power handler routine. Called when the system is transitioning
459 1.9 sommerfe * into/out of power save modes. As with fxp_shutdown, the main
460 1.9 sommerfe * purpose of this routine is to shut off receiver DMA so it doesn't
461 1.9 sommerfe * clobber kernel memory at the wrong time.
462 1.9 sommerfe */
463 1.9 sommerfe void
464 1.46 thorpej fxp_power(int why, void *arg)
465 1.9 sommerfe {
466 1.9 sommerfe struct fxp_softc *sc = arg;
467 1.40 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
468 1.9 sommerfe int s;
469 1.9 sommerfe
470 1.9 sommerfe s = splnet();
471 1.42 takemura switch (why) {
472 1.42 takemura case PWR_SUSPEND:
473 1.42 takemura case PWR_STANDBY:
474 1.40 thorpej fxp_stop(ifp, 0);
475 1.42 takemura break;
476 1.42 takemura case PWR_RESUME:
477 1.9 sommerfe if (ifp->if_flags & IFF_UP)
478 1.40 thorpej fxp_init(ifp);
479 1.42 takemura break;
480 1.42 takemura case PWR_SOFTSUSPEND:
481 1.42 takemura case PWR_SOFTSTANDBY:
482 1.42 takemura case PWR_SOFTRESUME:
483 1.42 takemura break;
484 1.9 sommerfe }
485 1.9 sommerfe splx(s);
486 1.1 thorpej }
487 1.1 thorpej
488 1.1 thorpej /*
489 1.1 thorpej * Initialize the interface media.
490 1.1 thorpej */
491 1.1 thorpej void
492 1.46 thorpej fxp_get_info(struct fxp_softc *sc, u_int8_t *enaddr)
493 1.1 thorpej {
494 1.37 tsutsui u_int16_t data, myea[ETHER_ADDR_LEN / 2];
495 1.1 thorpej
496 1.1 thorpej /*
497 1.1 thorpej * Reset to a stable state.
498 1.1 thorpej */
499 1.1 thorpej CSR_WRITE_4(sc, FXP_CSR_PORT, FXP_PORT_SELECTIVE_RESET);
500 1.1 thorpej DELAY(10);
501 1.1 thorpej
502 1.13 joda sc->sc_eeprom_size = 0;
503 1.13 joda fxp_autosize_eeprom(sc);
504 1.13 joda if(sc->sc_eeprom_size == 0) {
505 1.28 soren printf("%s: failed to detect EEPROM size\n", sc->sc_dev.dv_xname);
506 1.13 joda sc->sc_eeprom_size = 6; /* XXX panic here? */
507 1.10 sommerfe }
508 1.10 sommerfe #ifdef DEBUG
509 1.13 joda printf("%s: detected %d word EEPROM\n",
510 1.10 sommerfe sc->sc_dev.dv_xname,
511 1.10 sommerfe 1 << sc->sc_eeprom_size);
512 1.10 sommerfe #endif
513 1.10 sommerfe
514 1.10 sommerfe /*
515 1.1 thorpej * Get info about the primary PHY
516 1.1 thorpej */
517 1.1 thorpej fxp_read_eeprom(sc, &data, 6, 1);
518 1.1 thorpej sc->phy_primary_addr = data & 0xff;
519 1.1 thorpej sc->phy_primary_device = (data >> 8) & 0x3f;
520 1.1 thorpej sc->phy_10Mbps_only = data >> 15;
521 1.1 thorpej
522 1.1 thorpej /*
523 1.1 thorpej * Read MAC address.
524 1.1 thorpej */
525 1.1 thorpej fxp_read_eeprom(sc, myea, 0, 3);
526 1.31 soren enaddr[0] = myea[0] & 0xff;
527 1.31 soren enaddr[1] = myea[0] >> 8;
528 1.31 soren enaddr[2] = myea[1] & 0xff;
529 1.31 soren enaddr[3] = myea[1] >> 8;
530 1.31 soren enaddr[4] = myea[2] & 0xff;
531 1.31 soren enaddr[5] = myea[2] >> 8;
532 1.1 thorpej }
533 1.1 thorpej
534 1.1 thorpej /*
535 1.13 joda * Figure out EEPROM size.
536 1.13 joda *
537 1.13 joda * 559's can have either 64-word or 256-word EEPROMs, the 558
538 1.13 joda * datasheet only talks about 64-word EEPROMs, and the 557 datasheet
539 1.13 joda * talks about the existance of 16 to 256 word EEPROMs.
540 1.13 joda *
541 1.13 joda * The only known sizes are 64 and 256, where the 256 version is used
542 1.13 joda * by CardBus cards to store CIS information.
543 1.13 joda *
544 1.13 joda * The address is shifted in msb-to-lsb, and after the last
545 1.13 joda * address-bit the EEPROM is supposed to output a `dummy zero' bit,
546 1.13 joda * after which follows the actual data. We try to detect this zero, by
547 1.13 joda * probing the data-out bit in the EEPROM control register just after
548 1.13 joda * having shifted in a bit. If the bit is zero, we assume we've
549 1.13 joda * shifted enough address bits. The data-out should be tri-state,
550 1.13 joda * before this, which should translate to a logical one.
551 1.13 joda *
552 1.13 joda * Other ways to do this would be to try to read a register with known
553 1.13 joda * contents with a varying number of address bits, but no such
554 1.13 joda * register seem to be available. The high bits of register 10 are 01
555 1.13 joda * on the 558 and 559, but apparently not on the 557.
556 1.13 joda *
557 1.13 joda * The Linux driver computes a checksum on the EEPROM data, but the
558 1.13 joda * value of this checksum is not very well documented.
559 1.13 joda */
560 1.13 joda
561 1.13 joda void
562 1.46 thorpej fxp_autosize_eeprom(struct fxp_softc *sc)
563 1.13 joda {
564 1.13 joda u_int16_t reg;
565 1.13 joda int x;
566 1.13 joda
567 1.13 joda CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, FXP_EEPROM_EECS);
568 1.13 joda /*
569 1.13 joda * Shift in read opcode.
570 1.13 joda */
571 1.13 joda for (x = 3; x > 0; x--) {
572 1.13 joda if (FXP_EEPROM_OPC_READ & (1 << (x - 1))) {
573 1.13 joda reg = FXP_EEPROM_EECS | FXP_EEPROM_EEDI;
574 1.13 joda } else {
575 1.13 joda reg = FXP_EEPROM_EECS;
576 1.13 joda }
577 1.13 joda CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, reg);
578 1.13 joda CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL,
579 1.13 joda reg | FXP_EEPROM_EESK);
580 1.33 tsutsui DELAY(4);
581 1.13 joda CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, reg);
582 1.33 tsutsui DELAY(4);
583 1.13 joda }
584 1.13 joda /*
585 1.13 joda * Shift in address, wait for the dummy zero following a correct
586 1.13 joda * address shift.
587 1.13 joda */
588 1.13 joda for (x = 1; x <= 8; x++) {
589 1.13 joda CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, FXP_EEPROM_EECS);
590 1.13 joda CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL,
591 1.19 enami FXP_EEPROM_EECS | FXP_EEPROM_EESK);
592 1.33 tsutsui DELAY(4);
593 1.13 joda if((CSR_READ_2(sc, FXP_CSR_EEPROMCONTROL) &
594 1.13 joda FXP_EEPROM_EEDO) == 0)
595 1.13 joda break;
596 1.13 joda CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, FXP_EEPROM_EECS);
597 1.33 tsutsui DELAY(4);
598 1.13 joda }
599 1.13 joda CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, 0);
600 1.33 tsutsui DELAY(4);
601 1.13 joda if(x != 6 && x != 8) {
602 1.13 joda #ifdef DEBUG
603 1.13 joda printf("%s: strange EEPROM size (%d)\n",
604 1.13 joda sc->sc_dev.dv_xname, 1 << x);
605 1.13 joda #endif
606 1.13 joda } else
607 1.13 joda sc->sc_eeprom_size = x;
608 1.13 joda }
609 1.13 joda
610 1.13 joda /*
611 1.1 thorpej * Read from the serial EEPROM. Basically, you manually shift in
612 1.1 thorpej * the read opcode (one bit at a time) and then shift in the address,
613 1.1 thorpej * and then you shift out the data (all of this one bit at a time).
614 1.1 thorpej * The word size is 16 bits, so you have to provide the address for
615 1.1 thorpej * every 16 bits of data.
616 1.1 thorpej */
617 1.1 thorpej void
618 1.46 thorpej fxp_read_eeprom(struct fxp_softc *sc, u_int16_t *data, int offset, int words)
619 1.1 thorpej {
620 1.1 thorpej u_int16_t reg;
621 1.1 thorpej int i, x;
622 1.1 thorpej
623 1.1 thorpej for (i = 0; i < words; i++) {
624 1.1 thorpej CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, FXP_EEPROM_EECS);
625 1.1 thorpej /*
626 1.1 thorpej * Shift in read opcode.
627 1.1 thorpej */
628 1.1 thorpej for (x = 3; x > 0; x--) {
629 1.1 thorpej if (FXP_EEPROM_OPC_READ & (1 << (x - 1))) {
630 1.1 thorpej reg = FXP_EEPROM_EECS | FXP_EEPROM_EEDI;
631 1.1 thorpej } else {
632 1.1 thorpej reg = FXP_EEPROM_EECS;
633 1.1 thorpej }
634 1.1 thorpej CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, reg);
635 1.1 thorpej CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL,
636 1.1 thorpej reg | FXP_EEPROM_EESK);
637 1.33 tsutsui DELAY(4);
638 1.1 thorpej CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, reg);
639 1.33 tsutsui DELAY(4);
640 1.1 thorpej }
641 1.1 thorpej /*
642 1.1 thorpej * Shift in address.
643 1.1 thorpej */
644 1.10 sommerfe for (x = sc->sc_eeprom_size; x > 0; x--) {
645 1.1 thorpej if ((i + offset) & (1 << (x - 1))) {
646 1.13 joda reg = FXP_EEPROM_EECS | FXP_EEPROM_EEDI;
647 1.1 thorpej } else {
648 1.13 joda reg = FXP_EEPROM_EECS;
649 1.1 thorpej }
650 1.1 thorpej CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, reg);
651 1.1 thorpej CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL,
652 1.19 enami reg | FXP_EEPROM_EESK);
653 1.33 tsutsui DELAY(4);
654 1.1 thorpej CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, reg);
655 1.33 tsutsui DELAY(4);
656 1.1 thorpej }
657 1.1 thorpej reg = FXP_EEPROM_EECS;
658 1.1 thorpej data[i] = 0;
659 1.1 thorpej /*
660 1.1 thorpej * Shift out data.
661 1.1 thorpej */
662 1.1 thorpej for (x = 16; x > 0; x--) {
663 1.1 thorpej CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL,
664 1.1 thorpej reg | FXP_EEPROM_EESK);
665 1.33 tsutsui DELAY(4);
666 1.1 thorpej if (CSR_READ_2(sc, FXP_CSR_EEPROMCONTROL) &
667 1.1 thorpej FXP_EEPROM_EEDO)
668 1.1 thorpej data[i] |= (1 << (x - 1));
669 1.1 thorpej CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, reg);
670 1.33 tsutsui DELAY(4);
671 1.1 thorpej }
672 1.1 thorpej CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, 0);
673 1.33 tsutsui DELAY(4);
674 1.1 thorpej }
675 1.1 thorpej }
676 1.1 thorpej
677 1.1 thorpej /*
678 1.1 thorpej * Start packet transmission on the interface.
679 1.1 thorpej */
680 1.1 thorpej void
681 1.46 thorpej fxp_start(struct ifnet *ifp)
682 1.1 thorpej {
683 1.1 thorpej struct fxp_softc *sc = ifp->if_softc;
684 1.2 thorpej struct mbuf *m0, *m;
685 1.2 thorpej struct fxp_cb_tx *txd;
686 1.2 thorpej struct fxp_txsoft *txs;
687 1.2 thorpej struct fxp_tbdlist *tbd;
688 1.1 thorpej bus_dmamap_t dmamap;
689 1.2 thorpej int error, lasttx, nexttx, opending, seg;
690 1.1 thorpej
691 1.1 thorpej /*
692 1.8 thorpej * If we want a re-init, bail out now.
693 1.1 thorpej */
694 1.8 thorpej if (sc->sc_flags & FXPF_WANTINIT) {
695 1.1 thorpej ifp->if_flags |= IFF_OACTIVE;
696 1.1 thorpej return;
697 1.1 thorpej }
698 1.1 thorpej
699 1.8 thorpej if ((ifp->if_flags & (IFF_RUNNING|IFF_OACTIVE)) != IFF_RUNNING)
700 1.8 thorpej return;
701 1.8 thorpej
702 1.1 thorpej /*
703 1.2 thorpej * Remember the previous txpending and the current lasttx.
704 1.1 thorpej */
705 1.2 thorpej opending = sc->sc_txpending;
706 1.2 thorpej lasttx = sc->sc_txlast;
707 1.1 thorpej
708 1.2 thorpej /*
709 1.2 thorpej * Loop through the send queue, setting up transmit descriptors
710 1.2 thorpej * until we drain the queue, or use up all available transmit
711 1.2 thorpej * descriptors.
712 1.2 thorpej */
713 1.2 thorpej while (sc->sc_txpending < FXP_NTXCB) {
714 1.1 thorpej /*
715 1.2 thorpej * Grab a packet off the queue.
716 1.1 thorpej */
717 1.43 thorpej IFQ_POLL(&ifp->if_snd, m0);
718 1.2 thorpej if (m0 == NULL)
719 1.2 thorpej break;
720 1.44 thorpej m = NULL;
721 1.1 thorpej
722 1.1 thorpej /*
723 1.2 thorpej * Get the next available transmit descriptor.
724 1.1 thorpej */
725 1.2 thorpej nexttx = FXP_NEXTTX(sc->sc_txlast);
726 1.2 thorpej txd = FXP_CDTX(sc, nexttx);
727 1.2 thorpej tbd = FXP_CDTBD(sc, nexttx);
728 1.2 thorpej txs = FXP_DSTX(sc, nexttx);
729 1.2 thorpej dmamap = txs->txs_dmamap;
730 1.1 thorpej
731 1.1 thorpej /*
732 1.2 thorpej * Load the DMA map. If this fails, the packet either
733 1.2 thorpej * didn't fit in the allotted number of frags, or we were
734 1.2 thorpej * short on resources. In this case, we'll copy and try
735 1.2 thorpej * again.
736 1.1 thorpej */
737 1.2 thorpej if (bus_dmamap_load_mbuf(sc->sc_dmat, dmamap, m0,
738 1.2 thorpej BUS_DMA_NOWAIT) != 0) {
739 1.2 thorpej MGETHDR(m, M_DONTWAIT, MT_DATA);
740 1.2 thorpej if (m == NULL) {
741 1.2 thorpej printf("%s: unable to allocate Tx mbuf\n",
742 1.2 thorpej sc->sc_dev.dv_xname);
743 1.2 thorpej break;
744 1.1 thorpej }
745 1.2 thorpej if (m0->m_pkthdr.len > MHLEN) {
746 1.2 thorpej MCLGET(m, M_DONTWAIT);
747 1.2 thorpej if ((m->m_flags & M_EXT) == 0) {
748 1.2 thorpej printf("%s: unable to allocate Tx "
749 1.2 thorpej "cluster\n", sc->sc_dev.dv_xname);
750 1.2 thorpej m_freem(m);
751 1.2 thorpej break;
752 1.1 thorpej }
753 1.1 thorpej }
754 1.2 thorpej m_copydata(m0, 0, m0->m_pkthdr.len, mtod(m, caddr_t));
755 1.2 thorpej m->m_pkthdr.len = m->m_len = m0->m_pkthdr.len;
756 1.2 thorpej error = bus_dmamap_load_mbuf(sc->sc_dmat, dmamap,
757 1.44 thorpej m, BUS_DMA_NOWAIT);
758 1.2 thorpej if (error) {
759 1.2 thorpej printf("%s: unable to load Tx buffer, "
760 1.2 thorpej "error = %d\n", sc->sc_dev.dv_xname, error);
761 1.2 thorpej break;
762 1.2 thorpej }
763 1.2 thorpej }
764 1.43 thorpej
765 1.43 thorpej IFQ_DEQUEUE(&ifp->if_snd, m0);
766 1.44 thorpej if (m != NULL) {
767 1.44 thorpej m_freem(m0);
768 1.44 thorpej m0 = m;
769 1.44 thorpej }
770 1.1 thorpej
771 1.2 thorpej /* Initialize the fraglist. */
772 1.2 thorpej for (seg = 0; seg < dmamap->dm_nsegs; seg++) {
773 1.2 thorpej tbd->tbd_d[seg].tb_addr =
774 1.15 thorpej htole32(dmamap->dm_segs[seg].ds_addr);
775 1.2 thorpej tbd->tbd_d[seg].tb_size =
776 1.15 thorpej htole32(dmamap->dm_segs[seg].ds_len);
777 1.1 thorpej }
778 1.1 thorpej
779 1.2 thorpej FXP_CDTBDSYNC(sc, nexttx, BUS_DMASYNC_PREWRITE);
780 1.1 thorpej
781 1.2 thorpej /* Sync the DMA map. */
782 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, dmamap, 0, dmamap->dm_mapsize,
783 1.1 thorpej BUS_DMASYNC_PREWRITE);
784 1.1 thorpej
785 1.1 thorpej /*
786 1.2 thorpej * Store a pointer to the packet so we can free it later.
787 1.1 thorpej */
788 1.2 thorpej txs->txs_mbuf = m0;
789 1.1 thorpej
790 1.1 thorpej /*
791 1.2 thorpej * Initialize the transmit descriptor.
792 1.1 thorpej */
793 1.15 thorpej /* BIG_ENDIAN: no need to swap to store 0 */
794 1.2 thorpej txd->cb_status = 0;
795 1.2 thorpej txd->cb_command =
796 1.15 thorpej htole16(FXP_CB_COMMAND_XMIT | FXP_CB_COMMAND_SF);
797 1.2 thorpej txd->tx_threshold = tx_threshold;
798 1.2 thorpej txd->tbd_number = dmamap->dm_nsegs;
799 1.1 thorpej
800 1.2 thorpej FXP_CDTXSYNC(sc, nexttx,
801 1.2 thorpej BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
802 1.2 thorpej
803 1.2 thorpej /* Advance the tx pointer. */
804 1.2 thorpej sc->sc_txpending++;
805 1.2 thorpej sc->sc_txlast = nexttx;
806 1.1 thorpej
807 1.1 thorpej #if NBPFILTER > 0
808 1.1 thorpej /*
809 1.1 thorpej * Pass packet to bpf if there is a listener.
810 1.1 thorpej */
811 1.1 thorpej if (ifp->if_bpf)
812 1.2 thorpej bpf_mtap(ifp->if_bpf, m0);
813 1.1 thorpej #endif
814 1.1 thorpej }
815 1.1 thorpej
816 1.2 thorpej if (sc->sc_txpending == FXP_NTXCB) {
817 1.2 thorpej /* No more slots; notify upper layer. */
818 1.2 thorpej ifp->if_flags |= IFF_OACTIVE;
819 1.2 thorpej }
820 1.2 thorpej
821 1.2 thorpej if (sc->sc_txpending != opending) {
822 1.2 thorpej /*
823 1.2 thorpej * We enqueued packets. If the transmitter was idle,
824 1.2 thorpej * reset the txdirty pointer.
825 1.2 thorpej */
826 1.2 thorpej if (opending == 0)
827 1.2 thorpej sc->sc_txdirty = FXP_NEXTTX(lasttx);
828 1.2 thorpej
829 1.2 thorpej /*
830 1.2 thorpej * Cause the chip to interrupt and suspend command
831 1.2 thorpej * processing once the last packet we've enqueued
832 1.2 thorpej * has been transmitted.
833 1.2 thorpej */
834 1.2 thorpej FXP_CDTX(sc, sc->sc_txlast)->cb_command |=
835 1.15 thorpej htole16(FXP_CB_COMMAND_I | FXP_CB_COMMAND_S);
836 1.2 thorpej FXP_CDTXSYNC(sc, sc->sc_txlast,
837 1.2 thorpej BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
838 1.2 thorpej
839 1.2 thorpej /*
840 1.2 thorpej * The entire packet chain is set up. Clear the suspend bit
841 1.2 thorpej * on the command prior to the first packet we set up.
842 1.2 thorpej */
843 1.2 thorpej FXP_CDTXSYNC(sc, lasttx,
844 1.2 thorpej BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
845 1.15 thorpej FXP_CDTX(sc, lasttx)->cb_command &= htole16(~FXP_CB_COMMAND_S);
846 1.2 thorpej FXP_CDTXSYNC(sc, lasttx,
847 1.2 thorpej BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
848 1.2 thorpej
849 1.2 thorpej /*
850 1.2 thorpej * Issue a Resume command in case the chip was suspended.
851 1.2 thorpej */
852 1.1 thorpej fxp_scb_wait(sc);
853 1.1 thorpej CSR_WRITE_1(sc, FXP_CSR_SCB_COMMAND, FXP_SCB_COMMAND_CU_RESUME);
854 1.1 thorpej
855 1.2 thorpej /* Set a watchdog timer in case the chip flakes out. */
856 1.1 thorpej ifp->if_timer = 5;
857 1.1 thorpej }
858 1.1 thorpej }
859 1.1 thorpej
860 1.1 thorpej /*
861 1.1 thorpej * Process interface interrupts.
862 1.1 thorpej */
863 1.1 thorpej int
864 1.46 thorpej fxp_intr(void *arg)
865 1.1 thorpej {
866 1.1 thorpej struct fxp_softc *sc = arg;
867 1.39 thorpej struct ethercom *ec = &sc->sc_ethercom;
868 1.2 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
869 1.2 thorpej struct fxp_cb_tx *txd;
870 1.2 thorpej struct fxp_txsoft *txs;
871 1.7 thorpej struct mbuf *m, *m0;
872 1.7 thorpej bus_dmamap_t rxmap;
873 1.7 thorpej struct fxp_rfa *rfa;
874 1.8 thorpej int i, claimed = 0;
875 1.15 thorpej u_int16_t len, rxstat, txstat;
876 1.1 thorpej u_int8_t statack;
877 1.1 thorpej
878 1.18 joda if ((sc->sc_dev.dv_flags & DVF_ACTIVE) == 0)
879 1.20 enami return (0);
880 1.9 sommerfe /*
881 1.9 sommerfe * If the interface isn't running, don't try to
882 1.9 sommerfe * service the interrupt.. just ack it and bail.
883 1.9 sommerfe */
884 1.9 sommerfe if ((ifp->if_flags & IFF_RUNNING) == 0) {
885 1.9 sommerfe statack = CSR_READ_1(sc, FXP_CSR_SCB_STATACK);
886 1.9 sommerfe if (statack) {
887 1.9 sommerfe claimed = 1;
888 1.9 sommerfe CSR_WRITE_1(sc, FXP_CSR_SCB_STATACK, statack);
889 1.9 sommerfe }
890 1.20 enami return (claimed);
891 1.9 sommerfe }
892 1.9 sommerfe
893 1.1 thorpej while ((statack = CSR_READ_1(sc, FXP_CSR_SCB_STATACK)) != 0) {
894 1.1 thorpej claimed = 1;
895 1.1 thorpej
896 1.1 thorpej /*
897 1.1 thorpej * First ACK all the interrupts in this pass.
898 1.1 thorpej */
899 1.1 thorpej CSR_WRITE_1(sc, FXP_CSR_SCB_STATACK, statack);
900 1.1 thorpej
901 1.1 thorpej /*
902 1.1 thorpej * Process receiver interrupts. If a no-resource (RNR)
903 1.1 thorpej * condition exists, get whatever packets we can and
904 1.1 thorpej * re-start the receiver.
905 1.1 thorpej */
906 1.1 thorpej if (statack & (FXP_SCB_STATACK_FR | FXP_SCB_STATACK_RNR)) {
907 1.1 thorpej rcvloop:
908 1.7 thorpej m = sc->sc_rxq.ifq_head;
909 1.7 thorpej rfa = FXP_MTORFA(m);
910 1.7 thorpej rxmap = M_GETCTX(m, bus_dmamap_t);
911 1.1 thorpej
912 1.7 thorpej FXP_RFASYNC(sc, m,
913 1.1 thorpej BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
914 1.1 thorpej
915 1.15 thorpej rxstat = le16toh(rfa->rfa_status);
916 1.15 thorpej
917 1.15 thorpej if ((rxstat & FXP_RFA_STATUS_C) == 0) {
918 1.1 thorpej /*
919 1.7 thorpej * We have processed all of the
920 1.7 thorpej * receive buffers.
921 1.1 thorpej */
922 1.36 thorpej FXP_RFASYNC(sc, m, BUS_DMASYNC_PREREAD);
923 1.7 thorpej goto do_transmit;
924 1.7 thorpej }
925 1.7 thorpej
926 1.7 thorpej IF_DEQUEUE(&sc->sc_rxq, m);
927 1.7 thorpej
928 1.7 thorpej FXP_RXBUFSYNC(sc, m, BUS_DMASYNC_POSTREAD);
929 1.7 thorpej
930 1.15 thorpej len = le16toh(rfa->actual_size) &
931 1.15 thorpej (m->m_ext.ext_size - 1);
932 1.1 thorpej
933 1.7 thorpej if (len < sizeof(struct ether_header)) {
934 1.1 thorpej /*
935 1.7 thorpej * Runt packet; drop it now.
936 1.1 thorpej */
937 1.7 thorpej FXP_INIT_RFABUF(sc, m);
938 1.7 thorpej goto rcvloop;
939 1.7 thorpej }
940 1.7 thorpej
941 1.7 thorpej /*
942 1.39 thorpej * If support for 802.1Q VLAN sized frames is
943 1.39 thorpej * enabled, we need to do some additional error
944 1.39 thorpej * checking (as we are saving bad frames, in
945 1.39 thorpej * order to receive the larger ones).
946 1.39 thorpej */
947 1.39 thorpej if ((ec->ec_capenable & ETHERCAP_VLAN_MTU) != 0 &&
948 1.39 thorpej (rxstat & (FXP_RFA_STATUS_OVERRUN|
949 1.39 thorpej FXP_RFA_STATUS_RNR|
950 1.39 thorpej FXP_RFA_STATUS_ALIGN|
951 1.39 thorpej FXP_RFA_STATUS_CRC)) != 0) {
952 1.39 thorpej FXP_INIT_RFABUF(sc, m);
953 1.39 thorpej goto rcvloop;
954 1.39 thorpej }
955 1.39 thorpej
956 1.39 thorpej /*
957 1.7 thorpej * If the packet is small enough to fit in a
958 1.7 thorpej * single header mbuf, allocate one and copy
959 1.7 thorpej * the data into it. This greatly reduces
960 1.7 thorpej * memory consumption when we receive lots
961 1.7 thorpej * of small packets.
962 1.7 thorpej *
963 1.7 thorpej * Otherwise, we add a new buffer to the receive
964 1.7 thorpej * chain. If this fails, we drop the packet and
965 1.7 thorpej * recycle the old buffer.
966 1.7 thorpej */
967 1.7 thorpej if (fxp_copy_small != 0 && len <= MHLEN) {
968 1.7 thorpej MGETHDR(m0, M_DONTWAIT, MT_DATA);
969 1.7 thorpej if (m == NULL)
970 1.7 thorpej goto dropit;
971 1.7 thorpej memcpy(mtod(m0, caddr_t),
972 1.7 thorpej mtod(m, caddr_t), len);
973 1.7 thorpej FXP_INIT_RFABUF(sc, m);
974 1.7 thorpej m = m0;
975 1.7 thorpej } else {
976 1.7 thorpej if (fxp_add_rfabuf(sc, rxmap, 1) != 0) {
977 1.7 thorpej dropit:
978 1.7 thorpej ifp->if_ierrors++;
979 1.7 thorpej FXP_INIT_RFABUF(sc, m);
980 1.7 thorpej goto rcvloop;
981 1.7 thorpej }
982 1.7 thorpej }
983 1.7 thorpej
984 1.7 thorpej m->m_pkthdr.rcvif = ifp;
985 1.7 thorpej m->m_pkthdr.len = m->m_len = len;
986 1.7 thorpej
987 1.1 thorpej #if NBPFILTER > 0
988 1.7 thorpej /*
989 1.7 thorpej * Pass this up to any BPF listeners, but only
990 1.7 thorpej * pass it up the stack it its for us.
991 1.7 thorpej */
992 1.38 thorpej if (ifp->if_bpf)
993 1.7 thorpej bpf_mtap(ifp->if_bpf, m);
994 1.38 thorpej #endif
995 1.7 thorpej
996 1.7 thorpej /* Pass it on. */
997 1.7 thorpej (*ifp->if_input)(ifp, m);
998 1.7 thorpej goto rcvloop;
999 1.7 thorpej }
1000 1.7 thorpej
1001 1.7 thorpej do_transmit:
1002 1.7 thorpej if (statack & FXP_SCB_STATACK_RNR) {
1003 1.7 thorpej rxmap = M_GETCTX(sc->sc_rxq.ifq_head, bus_dmamap_t);
1004 1.7 thorpej fxp_scb_wait(sc);
1005 1.7 thorpej CSR_WRITE_4(sc, FXP_CSR_SCB_GENERAL,
1006 1.7 thorpej rxmap->dm_segs[0].ds_addr +
1007 1.7 thorpej RFA_ALIGNMENT_FUDGE);
1008 1.7 thorpej CSR_WRITE_1(sc, FXP_CSR_SCB_COMMAND,
1009 1.7 thorpej FXP_SCB_COMMAND_RU_START);
1010 1.1 thorpej }
1011 1.7 thorpej
1012 1.1 thorpej /*
1013 1.1 thorpej * Free any finished transmit mbuf chains.
1014 1.1 thorpej */
1015 1.5 thorpej if (statack & (FXP_SCB_STATACK_CXTNO|FXP_SCB_STATACK_CNA)) {
1016 1.2 thorpej ifp->if_flags &= ~IFF_OACTIVE;
1017 1.2 thorpej for (i = sc->sc_txdirty; sc->sc_txpending != 0;
1018 1.2 thorpej i = FXP_NEXTTX(i), sc->sc_txpending--) {
1019 1.2 thorpej txd = FXP_CDTX(sc, i);
1020 1.2 thorpej txs = FXP_DSTX(sc, i);
1021 1.2 thorpej
1022 1.2 thorpej FXP_CDTXSYNC(sc, i,
1023 1.1 thorpej BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
1024 1.2 thorpej
1025 1.15 thorpej txstat = le16toh(txd->cb_status);
1026 1.15 thorpej
1027 1.15 thorpej if ((txstat & FXP_CB_STATUS_C) == 0)
1028 1.1 thorpej break;
1029 1.2 thorpej
1030 1.2 thorpej FXP_CDTBDSYNC(sc, i, BUS_DMASYNC_POSTWRITE);
1031 1.2 thorpej
1032 1.2 thorpej bus_dmamap_sync(sc->sc_dmat, txs->txs_dmamap,
1033 1.2 thorpej 0, txs->txs_dmamap->dm_mapsize,
1034 1.2 thorpej BUS_DMASYNC_POSTWRITE);
1035 1.2 thorpej bus_dmamap_unload(sc->sc_dmat, txs->txs_dmamap);
1036 1.2 thorpej m_freem(txs->txs_mbuf);
1037 1.2 thorpej txs->txs_mbuf = NULL;
1038 1.1 thorpej }
1039 1.2 thorpej
1040 1.2 thorpej /* Update the dirty transmit buffer pointer. */
1041 1.2 thorpej sc->sc_txdirty = i;
1042 1.2 thorpej
1043 1.2 thorpej /*
1044 1.2 thorpej * Cancel the watchdog timer if there are no pending
1045 1.2 thorpej * transmissions.
1046 1.2 thorpej */
1047 1.2 thorpej if (sc->sc_txpending == 0) {
1048 1.1 thorpej ifp->if_timer = 0;
1049 1.2 thorpej
1050 1.2 thorpej /*
1051 1.8 thorpej * If we want a re-init, do that now.
1052 1.2 thorpej */
1053 1.8 thorpej if (sc->sc_flags & FXPF_WANTINIT)
1054 1.40 thorpej (void) fxp_init(ifp);
1055 1.1 thorpej }
1056 1.2 thorpej
1057 1.1 thorpej /*
1058 1.2 thorpej * Try to get more packets going.
1059 1.1 thorpej */
1060 1.2 thorpej fxp_start(ifp);
1061 1.1 thorpej }
1062 1.1 thorpej }
1063 1.1 thorpej
1064 1.1 thorpej #if NRND > 0
1065 1.1 thorpej if (claimed)
1066 1.1 thorpej rnd_add_uint32(&sc->rnd_source, statack);
1067 1.1 thorpej #endif
1068 1.1 thorpej return (claimed);
1069 1.1 thorpej }
1070 1.1 thorpej
1071 1.1 thorpej /*
1072 1.1 thorpej * Update packet in/out/collision statistics. The i82557 doesn't
1073 1.1 thorpej * allow you to access these counters without doing a fairly
1074 1.1 thorpej * expensive DMA to get _all_ of the statistics it maintains, so
1075 1.1 thorpej * we do this operation here only once per second. The statistics
1076 1.1 thorpej * counters in the kernel are updated from the previous dump-stats
1077 1.1 thorpej * DMA and then a new dump-stats DMA is started. The on-chip
1078 1.1 thorpej * counters are zeroed when the DMA completes. If we can't start
1079 1.1 thorpej * the DMA immediately, we don't wait - we just prepare to read
1080 1.1 thorpej * them again next time.
1081 1.1 thorpej */
1082 1.1 thorpej void
1083 1.46 thorpej fxp_tick(void *arg)
1084 1.1 thorpej {
1085 1.1 thorpej struct fxp_softc *sc = arg;
1086 1.2 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
1087 1.2 thorpej struct fxp_stats *sp = &sc->sc_control_data->fcd_stats;
1088 1.8 thorpej int s;
1089 1.2 thorpej
1090 1.20 enami if ((sc->sc_dev.dv_flags & DVF_ACTIVE) == 0)
1091 1.20 enami return;
1092 1.20 enami
1093 1.2 thorpej s = splnet();
1094 1.2 thorpej
1095 1.32 tsutsui FXP_CDSTATSSYNC(sc, BUS_DMASYNC_POSTREAD);
1096 1.32 tsutsui
1097 1.15 thorpej ifp->if_opackets += le32toh(sp->tx_good);
1098 1.15 thorpej ifp->if_collisions += le32toh(sp->tx_total_collisions);
1099 1.1 thorpej if (sp->rx_good) {
1100 1.15 thorpej ifp->if_ipackets += le32toh(sp->rx_good);
1101 1.7 thorpej sc->sc_rxidle = 0;
1102 1.1 thorpej } else {
1103 1.7 thorpej sc->sc_rxidle++;
1104 1.1 thorpej }
1105 1.1 thorpej ifp->if_ierrors +=
1106 1.15 thorpej le32toh(sp->rx_crc_errors) +
1107 1.15 thorpej le32toh(sp->rx_alignment_errors) +
1108 1.15 thorpej le32toh(sp->rx_rnr_errors) +
1109 1.15 thorpej le32toh(sp->rx_overrun_errors);
1110 1.1 thorpej /*
1111 1.1 thorpej * If any transmit underruns occured, bump up the transmit
1112 1.1 thorpej * threshold by another 512 bytes (64 * 8).
1113 1.1 thorpej */
1114 1.1 thorpej if (sp->tx_underruns) {
1115 1.15 thorpej ifp->if_oerrors += le32toh(sp->tx_underruns);
1116 1.1 thorpej if (tx_threshold < 192)
1117 1.1 thorpej tx_threshold += 64;
1118 1.1 thorpej }
1119 1.1 thorpej
1120 1.1 thorpej /*
1121 1.1 thorpej * If we haven't received any packets in FXP_MAC_RX_IDLE seconds,
1122 1.1 thorpej * then assume the receiver has locked up and attempt to clear
1123 1.8 thorpej * the condition by reprogramming the multicast filter (actually,
1124 1.8 thorpej * resetting the interface). This is a work-around for a bug in
1125 1.8 thorpej * the 82557 where the receiver locks up if it gets certain types
1126 1.8 thorpej * of garbage in the syncronization bits prior to the packet header.
1127 1.8 thorpej * This bug is supposed to only occur in 10Mbps mode, but has been
1128 1.8 thorpej * seen to occur in 100Mbps mode as well (perhaps due to a 10/100
1129 1.8 thorpej * speed transition).
1130 1.1 thorpej */
1131 1.7 thorpej if (sc->sc_rxidle > FXP_MAX_RX_IDLE) {
1132 1.40 thorpej (void) fxp_init(ifp);
1133 1.8 thorpej splx(s);
1134 1.8 thorpej return;
1135 1.1 thorpej }
1136 1.1 thorpej /*
1137 1.1 thorpej * If there is no pending command, start another stats
1138 1.1 thorpej * dump. Otherwise punt for now.
1139 1.1 thorpej */
1140 1.1 thorpej if (CSR_READ_1(sc, FXP_CSR_SCB_COMMAND) == 0) {
1141 1.1 thorpej /*
1142 1.1 thorpej * Start another stats dump.
1143 1.1 thorpej */
1144 1.32 tsutsui FXP_CDSTATSSYNC(sc, BUS_DMASYNC_PREREAD);
1145 1.1 thorpej CSR_WRITE_1(sc, FXP_CSR_SCB_COMMAND,
1146 1.1 thorpej FXP_SCB_COMMAND_CU_DUMPRESET);
1147 1.1 thorpej } else {
1148 1.1 thorpej /*
1149 1.1 thorpej * A previous command is still waiting to be accepted.
1150 1.1 thorpej * Just zero our copy of the stats and wait for the
1151 1.1 thorpej * next timer event to update them.
1152 1.1 thorpej */
1153 1.15 thorpej /* BIG_ENDIAN: no swap required to store 0 */
1154 1.1 thorpej sp->tx_good = 0;
1155 1.1 thorpej sp->tx_underruns = 0;
1156 1.1 thorpej sp->tx_total_collisions = 0;
1157 1.1 thorpej
1158 1.1 thorpej sp->rx_good = 0;
1159 1.1 thorpej sp->rx_crc_errors = 0;
1160 1.1 thorpej sp->rx_alignment_errors = 0;
1161 1.1 thorpej sp->rx_rnr_errors = 0;
1162 1.1 thorpej sp->rx_overrun_errors = 0;
1163 1.1 thorpej }
1164 1.1 thorpej
1165 1.6 thorpej if (sc->sc_flags & FXPF_MII) {
1166 1.6 thorpej /* Tick the MII clock. */
1167 1.6 thorpej mii_tick(&sc->sc_mii);
1168 1.6 thorpej }
1169 1.2 thorpej
1170 1.1 thorpej splx(s);
1171 1.1 thorpej
1172 1.1 thorpej /*
1173 1.1 thorpej * Schedule another timeout one second from now.
1174 1.1 thorpej */
1175 1.24 thorpej callout_reset(&sc->sc_callout, hz, fxp_tick, sc);
1176 1.1 thorpej }
1177 1.1 thorpej
1178 1.1 thorpej /*
1179 1.7 thorpej * Drain the receive queue.
1180 1.7 thorpej */
1181 1.7 thorpej void
1182 1.46 thorpej fxp_rxdrain(struct fxp_softc *sc)
1183 1.7 thorpej {
1184 1.7 thorpej bus_dmamap_t rxmap;
1185 1.7 thorpej struct mbuf *m;
1186 1.7 thorpej
1187 1.7 thorpej for (;;) {
1188 1.7 thorpej IF_DEQUEUE(&sc->sc_rxq, m);
1189 1.7 thorpej if (m == NULL)
1190 1.7 thorpej break;
1191 1.7 thorpej rxmap = M_GETCTX(m, bus_dmamap_t);
1192 1.7 thorpej bus_dmamap_unload(sc->sc_dmat, rxmap);
1193 1.7 thorpej FXP_RXMAP_PUT(sc, rxmap);
1194 1.7 thorpej m_freem(m);
1195 1.7 thorpej }
1196 1.7 thorpej }
1197 1.7 thorpej
1198 1.7 thorpej /*
1199 1.1 thorpej * Stop the interface. Cancels the statistics updater and resets
1200 1.1 thorpej * the interface.
1201 1.1 thorpej */
1202 1.1 thorpej void
1203 1.46 thorpej fxp_stop(struct ifnet *ifp, int disable)
1204 1.1 thorpej {
1205 1.40 thorpej struct fxp_softc *sc = ifp->if_softc;
1206 1.2 thorpej struct fxp_txsoft *txs;
1207 1.1 thorpej int i;
1208 1.1 thorpej
1209 1.1 thorpej /*
1210 1.9 sommerfe * Turn down interface (done early to avoid bad interactions
1211 1.9 sommerfe * between panics, shutdown hooks, and the watchdog timer)
1212 1.9 sommerfe */
1213 1.9 sommerfe ifp->if_timer = 0;
1214 1.9 sommerfe ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
1215 1.9 sommerfe
1216 1.9 sommerfe /*
1217 1.1 thorpej * Cancel stats updater.
1218 1.1 thorpej */
1219 1.24 thorpej callout_stop(&sc->sc_callout);
1220 1.12 thorpej if (sc->sc_flags & FXPF_MII) {
1221 1.12 thorpej /* Down the MII. */
1222 1.12 thorpej mii_down(&sc->sc_mii);
1223 1.12 thorpej }
1224 1.1 thorpej
1225 1.1 thorpej /*
1226 1.1 thorpej * Issue software reset
1227 1.1 thorpej */
1228 1.1 thorpej CSR_WRITE_4(sc, FXP_CSR_PORT, FXP_PORT_SELECTIVE_RESET);
1229 1.1 thorpej DELAY(10);
1230 1.1 thorpej
1231 1.1 thorpej /*
1232 1.1 thorpej * Release any xmit buffers.
1233 1.1 thorpej */
1234 1.2 thorpej for (i = 0; i < FXP_NTXCB; i++) {
1235 1.2 thorpej txs = FXP_DSTX(sc, i);
1236 1.2 thorpej if (txs->txs_mbuf != NULL) {
1237 1.2 thorpej bus_dmamap_unload(sc->sc_dmat, txs->txs_dmamap);
1238 1.2 thorpej m_freem(txs->txs_mbuf);
1239 1.2 thorpej txs->txs_mbuf = NULL;
1240 1.1 thorpej }
1241 1.1 thorpej }
1242 1.2 thorpej sc->sc_txpending = 0;
1243 1.1 thorpej
1244 1.40 thorpej if (disable) {
1245 1.7 thorpej fxp_rxdrain(sc);
1246 1.40 thorpej fxp_disable(sc);
1247 1.1 thorpej }
1248 1.1 thorpej
1249 1.1 thorpej }
1250 1.1 thorpej
1251 1.1 thorpej /*
1252 1.1 thorpej * Watchdog/transmission transmit timeout handler. Called when a
1253 1.1 thorpej * transmission is started on the interface, but no interrupt is
1254 1.1 thorpej * received before the timeout. This usually indicates that the
1255 1.1 thorpej * card has wedged for some reason.
1256 1.1 thorpej */
1257 1.1 thorpej void
1258 1.46 thorpej fxp_watchdog(struct ifnet *ifp)
1259 1.1 thorpej {
1260 1.1 thorpej struct fxp_softc *sc = ifp->if_softc;
1261 1.1 thorpej
1262 1.3 thorpej printf("%s: device timeout\n", sc->sc_dev.dv_xname);
1263 1.3 thorpej ifp->if_oerrors++;
1264 1.1 thorpej
1265 1.40 thorpej (void) fxp_init(ifp);
1266 1.1 thorpej }
1267 1.1 thorpej
1268 1.2 thorpej /*
1269 1.2 thorpej * Initialize the interface. Must be called at splnet().
1270 1.2 thorpej */
1271 1.7 thorpej int
1272 1.46 thorpej fxp_init(struct ifnet *ifp)
1273 1.1 thorpej {
1274 1.40 thorpej struct fxp_softc *sc = ifp->if_softc;
1275 1.1 thorpej struct fxp_cb_config *cbp;
1276 1.1 thorpej struct fxp_cb_ias *cb_ias;
1277 1.2 thorpej struct fxp_cb_tx *txd;
1278 1.7 thorpej bus_dmamap_t rxmap;
1279 1.39 thorpej int i, prm, save_bf, allm, error = 0;
1280 1.1 thorpej
1281 1.40 thorpej if ((error = fxp_enable(sc)) != 0)
1282 1.40 thorpej goto out;
1283 1.40 thorpej
1284 1.1 thorpej /*
1285 1.1 thorpej * Cancel any pending I/O
1286 1.1 thorpej */
1287 1.40 thorpej fxp_stop(ifp, 0);
1288 1.1 thorpej
1289 1.21 joda /*
1290 1.21 joda * XXX just setting sc_flags to 0 here clears any FXPF_MII
1291 1.21 joda * flag, and this prevents the MII from detaching resulting in
1292 1.21 joda * a panic. The flags field should perhaps be split in runtime
1293 1.21 joda * flags and more static information. For now, just clear the
1294 1.21 joda * only other flag set.
1295 1.21 joda */
1296 1.21 joda
1297 1.21 joda sc->sc_flags &= ~FXPF_WANTINIT;
1298 1.1 thorpej
1299 1.1 thorpej /*
1300 1.1 thorpej * Initialize base of CBL and RFA memory. Loading with zero
1301 1.1 thorpej * sets it up for regular linear addressing.
1302 1.1 thorpej */
1303 1.2 thorpej fxp_scb_wait(sc);
1304 1.1 thorpej CSR_WRITE_4(sc, FXP_CSR_SCB_GENERAL, 0);
1305 1.1 thorpej CSR_WRITE_1(sc, FXP_CSR_SCB_COMMAND, FXP_SCB_COMMAND_CU_BASE);
1306 1.1 thorpej
1307 1.1 thorpej fxp_scb_wait(sc);
1308 1.1 thorpej CSR_WRITE_1(sc, FXP_CSR_SCB_COMMAND, FXP_SCB_COMMAND_RU_BASE);
1309 1.1 thorpej
1310 1.1 thorpej /*
1311 1.2 thorpej * Initialize the multicast filter. Do this now, since we might
1312 1.2 thorpej * have to setup the config block differently.
1313 1.2 thorpej */
1314 1.3 thorpej fxp_mc_setup(sc);
1315 1.2 thorpej
1316 1.2 thorpej prm = (ifp->if_flags & IFF_PROMISC) ? 1 : 0;
1317 1.2 thorpej allm = (ifp->if_flags & IFF_ALLMULTI) ? 1 : 0;
1318 1.2 thorpej
1319 1.2 thorpej /*
1320 1.39 thorpej * In order to support receiving 802.1Q VLAN frames, we have to
1321 1.39 thorpej * enable "save bad frames", since they are 4 bytes larger than
1322 1.39 thorpej * the normal Ethernet maximum frame length.
1323 1.39 thorpej */
1324 1.39 thorpej save_bf = (sc->sc_ethercom.ec_capenable & ETHERCAP_VLAN_MTU) ? 1 : 0;
1325 1.39 thorpej
1326 1.39 thorpej /*
1327 1.1 thorpej * Initialize base of dump-stats buffer.
1328 1.1 thorpej */
1329 1.1 thorpej fxp_scb_wait(sc);
1330 1.1 thorpej CSR_WRITE_4(sc, FXP_CSR_SCB_GENERAL,
1331 1.2 thorpej sc->sc_cddma + FXP_CDSTATSOFF);
1332 1.32 tsutsui FXP_CDSTATSSYNC(sc, BUS_DMASYNC_PREREAD);
1333 1.1 thorpej CSR_WRITE_1(sc, FXP_CSR_SCB_COMMAND, FXP_SCB_COMMAND_CU_DUMP_ADR);
1334 1.1 thorpej
1335 1.2 thorpej cbp = &sc->sc_control_data->fcd_configcb;
1336 1.2 thorpej memset(cbp, 0, sizeof(struct fxp_cb_config));
1337 1.1 thorpej
1338 1.1 thorpej /*
1339 1.2 thorpej * This copy is kind of disgusting, but there are a bunch of must be
1340 1.1 thorpej * zero and must be one bits in this structure and this is the easiest
1341 1.1 thorpej * way to initialize them all to proper values.
1342 1.1 thorpej */
1343 1.2 thorpej memcpy(cbp, fxp_cb_config_template, sizeof(fxp_cb_config_template));
1344 1.1 thorpej
1345 1.15 thorpej /* BIG_ENDIAN: no need to swap to store 0 */
1346 1.1 thorpej cbp->cb_status = 0;
1347 1.15 thorpej cbp->cb_command = htole16(FXP_CB_COMMAND_CONFIG |
1348 1.15 thorpej FXP_CB_COMMAND_EL);
1349 1.15 thorpej /* BIG_ENDIAN: no need to swap to store 0xffffffff */
1350 1.15 thorpej cbp->link_addr = 0xffffffff; /* (no) next command */
1351 1.1 thorpej cbp->byte_count = 22; /* (22) bytes to config */
1352 1.1 thorpej cbp->rx_fifo_limit = 8; /* rx fifo threshold (32 bytes) */
1353 1.1 thorpej cbp->tx_fifo_limit = 0; /* tx fifo threshold (0 bytes) */
1354 1.1 thorpej cbp->adaptive_ifs = 0; /* (no) adaptive interframe spacing */
1355 1.1 thorpej cbp->rx_dma_bytecount = 0; /* (no) rx DMA max */
1356 1.1 thorpej cbp->tx_dma_bytecount = 0; /* (no) tx DMA max */
1357 1.1 thorpej cbp->dma_bce = 0; /* (disable) dma max counters */
1358 1.1 thorpej cbp->late_scb = 0; /* (don't) defer SCB update */
1359 1.1 thorpej cbp->tno_int = 0; /* (disable) tx not okay interrupt */
1360 1.4 thorpej cbp->ci_int = 1; /* interrupt on CU idle */
1361 1.39 thorpej cbp->save_bf = save_bf;/* save bad frames */
1362 1.1 thorpej cbp->disc_short_rx = !prm; /* discard short packets */
1363 1.1 thorpej cbp->underrun_retry = 1; /* retry mode (1) on DMA underrun */
1364 1.1 thorpej cbp->mediatype = !sc->phy_10Mbps_only; /* interface mode */
1365 1.1 thorpej cbp->nsai = 1; /* (don't) disable source addr insert */
1366 1.1 thorpej cbp->preamble_length = 2; /* (7 byte) preamble */
1367 1.1 thorpej cbp->loopback = 0; /* (don't) loopback */
1368 1.1 thorpej cbp->linear_priority = 0; /* (normal CSMA/CD operation) */
1369 1.1 thorpej cbp->linear_pri_mode = 0; /* (wait after xmit only) */
1370 1.1 thorpej cbp->interfrm_spacing = 6; /* (96 bits of) interframe spacing */
1371 1.1 thorpej cbp->promiscuous = prm; /* promiscuous mode */
1372 1.1 thorpej cbp->bcast_disable = 0; /* (don't) disable broadcasts */
1373 1.1 thorpej cbp->crscdt = 0; /* (CRS only) */
1374 1.1 thorpej cbp->stripping = !prm; /* truncate rx packet to byte count */
1375 1.1 thorpej cbp->padding = 1; /* (do) pad short tx packets */
1376 1.1 thorpej cbp->rcv_crc_xfer = 0; /* (don't) xfer CRC to host */
1377 1.1 thorpej cbp->force_fdx = 0; /* (don't) force full duplex */
1378 1.1 thorpej cbp->fdx_pin_en = 1; /* (enable) FDX# pin */
1379 1.1 thorpej cbp->multi_ia = 0; /* (don't) accept multiple IAs */
1380 1.2 thorpej cbp->mc_all = allm; /* accept all multicasts */
1381 1.1 thorpej
1382 1.2 thorpej FXP_CDCONFIGSYNC(sc, BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
1383 1.1 thorpej
1384 1.1 thorpej /*
1385 1.1 thorpej * Start the config command/DMA.
1386 1.1 thorpej */
1387 1.1 thorpej fxp_scb_wait(sc);
1388 1.2 thorpej CSR_WRITE_4(sc, FXP_CSR_SCB_GENERAL, sc->sc_cddma + FXP_CDCONFIGOFF);
1389 1.1 thorpej CSR_WRITE_1(sc, FXP_CSR_SCB_COMMAND, FXP_SCB_COMMAND_CU_START);
1390 1.1 thorpej /* ...and wait for it to complete. */
1391 1.27 jhawk i = 1000;
1392 1.2 thorpej do {
1393 1.2 thorpej FXP_CDCONFIGSYNC(sc,
1394 1.2 thorpej BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
1395 1.27 jhawk DELAY(1);
1396 1.31 soren } while ((le16toh(cbp->cb_status) & FXP_CB_STATUS_C) == 0 && --i);
1397 1.26 jhawk if (i == 0) {
1398 1.27 jhawk printf("%s at line %d: dmasync timeout\n",
1399 1.27 jhawk sc->sc_dev.dv_xname, __LINE__);
1400 1.26 jhawk return ETIMEDOUT;
1401 1.26 jhawk }
1402 1.1 thorpej
1403 1.1 thorpej /*
1404 1.2 thorpej * Initialize the station address.
1405 1.1 thorpej */
1406 1.2 thorpej cb_ias = &sc->sc_control_data->fcd_iascb;
1407 1.15 thorpej /* BIG_ENDIAN: no need to swap to store 0 */
1408 1.1 thorpej cb_ias->cb_status = 0;
1409 1.15 thorpej cb_ias->cb_command = htole16(FXP_CB_COMMAND_IAS | FXP_CB_COMMAND_EL);
1410 1.15 thorpej /* BIG_ENDIAN: no need to swap to store 0xffffffff */
1411 1.15 thorpej cb_ias->link_addr = 0xffffffff;
1412 1.2 thorpej memcpy((void *)cb_ias->macaddr, LLADDR(ifp->if_sadl), ETHER_ADDR_LEN);
1413 1.1 thorpej
1414 1.2 thorpej FXP_CDIASSYNC(sc, BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
1415 1.1 thorpej
1416 1.1 thorpej /*
1417 1.1 thorpej * Start the IAS (Individual Address Setup) command/DMA.
1418 1.1 thorpej */
1419 1.1 thorpej fxp_scb_wait(sc);
1420 1.2 thorpej CSR_WRITE_4(sc, FXP_CSR_SCB_GENERAL, sc->sc_cddma + FXP_CDIASOFF);
1421 1.1 thorpej CSR_WRITE_1(sc, FXP_CSR_SCB_COMMAND, FXP_SCB_COMMAND_CU_START);
1422 1.1 thorpej /* ...and wait for it to complete. */
1423 1.27 jhawk i = 1000;
1424 1.2 thorpej do {
1425 1.2 thorpej FXP_CDIASSYNC(sc,
1426 1.2 thorpej BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
1427 1.27 jhawk DELAY(1);
1428 1.31 soren } while ((le16toh(cb_ias->cb_status) & FXP_CB_STATUS_C) == 0 && --i);
1429 1.26 jhawk if (i == 0) {
1430 1.27 jhawk printf("%s at line %d: dmasync timeout\n",
1431 1.27 jhawk sc->sc_dev.dv_xname, __LINE__);
1432 1.26 jhawk return ETIMEDOUT;
1433 1.26 jhawk }
1434 1.27 jhawk
1435 1.1 thorpej /*
1436 1.2 thorpej * Initialize the transmit descriptor ring. txlast is initialized
1437 1.2 thorpej * to the end of the list so that it will wrap around to the first
1438 1.2 thorpej * descriptor when the first packet is transmitted.
1439 1.1 thorpej */
1440 1.1 thorpej for (i = 0; i < FXP_NTXCB; i++) {
1441 1.2 thorpej txd = FXP_CDTX(sc, i);
1442 1.2 thorpej memset(txd, 0, sizeof(struct fxp_cb_tx));
1443 1.15 thorpej txd->cb_command =
1444 1.15 thorpej htole16(FXP_CB_COMMAND_NOP | FXP_CB_COMMAND_S);
1445 1.15 thorpej txd->tbd_array_addr = htole32(FXP_CDTBDADDR(sc, i));
1446 1.15 thorpej txd->link_addr = htole32(FXP_CDTXADDR(sc, FXP_NEXTTX(i)));
1447 1.2 thorpej FXP_CDTXSYNC(sc, i, BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
1448 1.2 thorpej }
1449 1.2 thorpej sc->sc_txpending = 0;
1450 1.2 thorpej sc->sc_txdirty = 0;
1451 1.2 thorpej sc->sc_txlast = FXP_NTXCB - 1;
1452 1.2 thorpej
1453 1.2 thorpej /*
1454 1.7 thorpej * Initialize the receive buffer list.
1455 1.7 thorpej */
1456 1.7 thorpej sc->sc_rxq.ifq_maxlen = FXP_NRFABUFS;
1457 1.7 thorpej while (sc->sc_rxq.ifq_len < FXP_NRFABUFS) {
1458 1.7 thorpej rxmap = FXP_RXMAP_GET(sc);
1459 1.7 thorpej if ((error = fxp_add_rfabuf(sc, rxmap, 0)) != 0) {
1460 1.7 thorpej printf("%s: unable to allocate or map rx "
1461 1.7 thorpej "buffer %d, error = %d\n",
1462 1.7 thorpej sc->sc_dev.dv_xname,
1463 1.7 thorpej sc->sc_rxq.ifq_len, error);
1464 1.7 thorpej /*
1465 1.7 thorpej * XXX Should attempt to run with fewer receive
1466 1.7 thorpej * XXX buffers instead of just failing.
1467 1.7 thorpej */
1468 1.7 thorpej FXP_RXMAP_PUT(sc, rxmap);
1469 1.7 thorpej fxp_rxdrain(sc);
1470 1.7 thorpej goto out;
1471 1.7 thorpej }
1472 1.7 thorpej }
1473 1.8 thorpej sc->sc_rxidle = 0;
1474 1.7 thorpej
1475 1.7 thorpej /*
1476 1.2 thorpej * Give the transmit ring to the chip. We do this by pointing
1477 1.2 thorpej * the chip at the last descriptor (which is a NOP|SUSPEND), and
1478 1.2 thorpej * issuing a start command. It will execute the NOP and then
1479 1.2 thorpej * suspend, pointing at the first descriptor.
1480 1.1 thorpej */
1481 1.1 thorpej fxp_scb_wait(sc);
1482 1.2 thorpej CSR_WRITE_4(sc, FXP_CSR_SCB_GENERAL, FXP_CDTXADDR(sc, sc->sc_txlast));
1483 1.1 thorpej CSR_WRITE_1(sc, FXP_CSR_SCB_COMMAND, FXP_SCB_COMMAND_CU_START);
1484 1.1 thorpej
1485 1.1 thorpej /*
1486 1.1 thorpej * Initialize receiver buffer area - RFA.
1487 1.1 thorpej */
1488 1.7 thorpej rxmap = M_GETCTX(sc->sc_rxq.ifq_head, bus_dmamap_t);
1489 1.1 thorpej fxp_scb_wait(sc);
1490 1.1 thorpej CSR_WRITE_4(sc, FXP_CSR_SCB_GENERAL,
1491 1.7 thorpej rxmap->dm_segs[0].ds_addr + RFA_ALIGNMENT_FUDGE);
1492 1.1 thorpej CSR_WRITE_1(sc, FXP_CSR_SCB_COMMAND, FXP_SCB_COMMAND_RU_START);
1493 1.1 thorpej
1494 1.6 thorpej if (sc->sc_flags & FXPF_MII) {
1495 1.6 thorpej /*
1496 1.6 thorpej * Set current media.
1497 1.6 thorpej */
1498 1.6 thorpej mii_mediachg(&sc->sc_mii);
1499 1.6 thorpej }
1500 1.1 thorpej
1501 1.2 thorpej /*
1502 1.2 thorpej * ...all done!
1503 1.2 thorpej */
1504 1.1 thorpej ifp->if_flags |= IFF_RUNNING;
1505 1.1 thorpej ifp->if_flags &= ~IFF_OACTIVE;
1506 1.1 thorpej
1507 1.1 thorpej /*
1508 1.7 thorpej * Start the one second timer.
1509 1.1 thorpej */
1510 1.24 thorpej callout_reset(&sc->sc_callout, hz, fxp_tick, sc);
1511 1.2 thorpej
1512 1.2 thorpej /*
1513 1.2 thorpej * Attempt to start output on the interface.
1514 1.2 thorpej */
1515 1.2 thorpej fxp_start(ifp);
1516 1.7 thorpej
1517 1.7 thorpej out:
1518 1.40 thorpej if (error) {
1519 1.40 thorpej ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
1520 1.40 thorpej ifp->if_timer = 0;
1521 1.7 thorpej printf("%s: interface not running\n", sc->sc_dev.dv_xname);
1522 1.40 thorpej }
1523 1.7 thorpej return (error);
1524 1.1 thorpej }
1525 1.1 thorpej
1526 1.1 thorpej /*
1527 1.1 thorpej * Change media according to request.
1528 1.1 thorpej */
1529 1.1 thorpej int
1530 1.46 thorpej fxp_mii_mediachange(struct ifnet *ifp)
1531 1.1 thorpej {
1532 1.1 thorpej struct fxp_softc *sc = ifp->if_softc;
1533 1.1 thorpej
1534 1.1 thorpej if (ifp->if_flags & IFF_UP)
1535 1.1 thorpej mii_mediachg(&sc->sc_mii);
1536 1.1 thorpej return (0);
1537 1.1 thorpej }
1538 1.1 thorpej
1539 1.1 thorpej /*
1540 1.1 thorpej * Notify the world which media we're using.
1541 1.1 thorpej */
1542 1.1 thorpej void
1543 1.46 thorpej fxp_mii_mediastatus(struct ifnet *ifp, struct ifmediareq *ifmr)
1544 1.1 thorpej {
1545 1.1 thorpej struct fxp_softc *sc = ifp->if_softc;
1546 1.1 thorpej
1547 1.10 sommerfe if(sc->sc_enabled == 0) {
1548 1.10 sommerfe ifmr->ifm_active = IFM_ETHER | IFM_NONE;
1549 1.10 sommerfe ifmr->ifm_status = 0;
1550 1.10 sommerfe return;
1551 1.10 sommerfe }
1552 1.10 sommerfe
1553 1.1 thorpej mii_pollstat(&sc->sc_mii);
1554 1.1 thorpej ifmr->ifm_status = sc->sc_mii.mii_media_status;
1555 1.1 thorpej ifmr->ifm_active = sc->sc_mii.mii_media_active;
1556 1.1 thorpej }
1557 1.1 thorpej
1558 1.1 thorpej int
1559 1.46 thorpej fxp_80c24_mediachange(struct ifnet *ifp)
1560 1.1 thorpej {
1561 1.1 thorpej
1562 1.1 thorpej /* Nothing to do here. */
1563 1.1 thorpej return (0);
1564 1.1 thorpej }
1565 1.1 thorpej
1566 1.1 thorpej void
1567 1.46 thorpej fxp_80c24_mediastatus(struct ifnet *ifp, struct ifmediareq *ifmr)
1568 1.1 thorpej {
1569 1.1 thorpej struct fxp_softc *sc = ifp->if_softc;
1570 1.1 thorpej
1571 1.1 thorpej /*
1572 1.1 thorpej * Media is currently-selected media. We cannot determine
1573 1.1 thorpej * the link status.
1574 1.1 thorpej */
1575 1.1 thorpej ifmr->ifm_status = 0;
1576 1.1 thorpej ifmr->ifm_active = sc->sc_mii.mii_media.ifm_cur->ifm_media;
1577 1.1 thorpej }
1578 1.1 thorpej
1579 1.1 thorpej /*
1580 1.1 thorpej * Add a buffer to the end of the RFA buffer list.
1581 1.7 thorpej * Return 0 if successful, error code on failure.
1582 1.7 thorpej *
1583 1.1 thorpej * The RFA struct is stuck at the beginning of mbuf cluster and the
1584 1.1 thorpej * data pointer is fixed up to point just past it.
1585 1.1 thorpej */
1586 1.1 thorpej int
1587 1.46 thorpej fxp_add_rfabuf(struct fxp_softc *sc, bus_dmamap_t rxmap, int unload)
1588 1.1 thorpej {
1589 1.7 thorpej struct mbuf *m;
1590 1.7 thorpej int error;
1591 1.1 thorpej
1592 1.7 thorpej MGETHDR(m, M_DONTWAIT, MT_DATA);
1593 1.7 thorpej if (m == NULL)
1594 1.7 thorpej return (ENOBUFS);
1595 1.1 thorpej
1596 1.7 thorpej MCLGET(m, M_DONTWAIT);
1597 1.7 thorpej if ((m->m_flags & M_EXT) == 0) {
1598 1.7 thorpej m_freem(m);
1599 1.7 thorpej return (ENOBUFS);
1600 1.1 thorpej }
1601 1.1 thorpej
1602 1.7 thorpej if (unload)
1603 1.7 thorpej bus_dmamap_unload(sc->sc_dmat, rxmap);
1604 1.1 thorpej
1605 1.7 thorpej M_SETCTX(m, rxmap);
1606 1.1 thorpej
1607 1.7 thorpej error = bus_dmamap_load(sc->sc_dmat, rxmap,
1608 1.7 thorpej m->m_ext.ext_buf, m->m_ext.ext_size, NULL, BUS_DMA_NOWAIT);
1609 1.7 thorpej if (error) {
1610 1.7 thorpej printf("%s: can't load rx DMA map %d, error = %d\n",
1611 1.7 thorpej sc->sc_dev.dv_xname, sc->sc_rxq.ifq_len, error);
1612 1.7 thorpej panic("fxp_add_rfabuf"); /* XXX */
1613 1.1 thorpej }
1614 1.1 thorpej
1615 1.7 thorpej FXP_INIT_RFABUF(sc, m);
1616 1.1 thorpej
1617 1.7 thorpej return (0);
1618 1.1 thorpej }
1619 1.1 thorpej
1620 1.45 lukem int
1621 1.46 thorpej fxp_mdi_read(struct device *self, int phy, int reg)
1622 1.1 thorpej {
1623 1.1 thorpej struct fxp_softc *sc = (struct fxp_softc *)self;
1624 1.1 thorpej int count = 10000;
1625 1.1 thorpej int value;
1626 1.1 thorpej
1627 1.1 thorpej CSR_WRITE_4(sc, FXP_CSR_MDICONTROL,
1628 1.1 thorpej (FXP_MDI_READ << 26) | (reg << 16) | (phy << 21));
1629 1.1 thorpej
1630 1.1 thorpej while (((value = CSR_READ_4(sc, FXP_CSR_MDICONTROL)) & 0x10000000) == 0
1631 1.1 thorpej && count--)
1632 1.1 thorpej DELAY(10);
1633 1.1 thorpej
1634 1.1 thorpej if (count <= 0)
1635 1.1 thorpej printf("%s: fxp_mdi_read: timed out\n", sc->sc_dev.dv_xname);
1636 1.1 thorpej
1637 1.1 thorpej return (value & 0xffff);
1638 1.1 thorpej }
1639 1.1 thorpej
1640 1.1 thorpej void
1641 1.46 thorpej fxp_statchg(struct device *self)
1642 1.1 thorpej {
1643 1.1 thorpej
1644 1.22 thorpej /* Nothing to do. */
1645 1.1 thorpej }
1646 1.1 thorpej
1647 1.1 thorpej void
1648 1.46 thorpej fxp_mdi_write(struct device *self, int phy, int reg, int value)
1649 1.1 thorpej {
1650 1.1 thorpej struct fxp_softc *sc = (struct fxp_softc *)self;
1651 1.1 thorpej int count = 10000;
1652 1.1 thorpej
1653 1.1 thorpej CSR_WRITE_4(sc, FXP_CSR_MDICONTROL,
1654 1.1 thorpej (FXP_MDI_WRITE << 26) | (reg << 16) | (phy << 21) |
1655 1.1 thorpej (value & 0xffff));
1656 1.1 thorpej
1657 1.1 thorpej while((CSR_READ_4(sc, FXP_CSR_MDICONTROL) & 0x10000000) == 0 &&
1658 1.1 thorpej count--)
1659 1.1 thorpej DELAY(10);
1660 1.1 thorpej
1661 1.1 thorpej if (count <= 0)
1662 1.1 thorpej printf("%s: fxp_mdi_write: timed out\n", sc->sc_dev.dv_xname);
1663 1.1 thorpej }
1664 1.1 thorpej
1665 1.1 thorpej int
1666 1.46 thorpej fxp_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
1667 1.1 thorpej {
1668 1.1 thorpej struct fxp_softc *sc = ifp->if_softc;
1669 1.1 thorpej struct ifreq *ifr = (struct ifreq *)data;
1670 1.40 thorpej int s, error;
1671 1.1 thorpej
1672 1.1 thorpej s = splnet();
1673 1.1 thorpej
1674 1.40 thorpej switch (cmd) {
1675 1.40 thorpej case SIOCSIFMEDIA:
1676 1.40 thorpej case SIOCGIFMEDIA:
1677 1.40 thorpej error = ifmedia_ioctl(ifp, ifr, &sc->sc_mii.mii_media, cmd);
1678 1.1 thorpej break;
1679 1.1 thorpej
1680 1.40 thorpej default:
1681 1.40 thorpej error = ether_ioctl(ifp, cmd, data);
1682 1.1 thorpej if (error == ENETRESET) {
1683 1.40 thorpej if (sc->sc_enabled) {
1684 1.40 thorpej /*
1685 1.40 thorpej * Multicast list has changed; set the
1686 1.40 thorpej * hardware filter accordingly.
1687 1.40 thorpej */
1688 1.40 thorpej if (sc->sc_txpending) {
1689 1.40 thorpej sc->sc_flags |= FXPF_WANTINIT;
1690 1.40 thorpej error = 0;
1691 1.40 thorpej } else
1692 1.40 thorpej error = fxp_init(ifp);
1693 1.40 thorpej } else
1694 1.8 thorpej error = 0;
1695 1.1 thorpej }
1696 1.1 thorpej break;
1697 1.40 thorpej }
1698 1.1 thorpej
1699 1.40 thorpej /* Try to get more packets going. */
1700 1.40 thorpej if (sc->sc_enabled)
1701 1.40 thorpej fxp_start(ifp);
1702 1.2 thorpej
1703 1.2 thorpej splx(s);
1704 1.1 thorpej return (error);
1705 1.1 thorpej }
1706 1.1 thorpej
1707 1.1 thorpej /*
1708 1.1 thorpej * Program the multicast filter.
1709 1.1 thorpej *
1710 1.2 thorpej * This function must be called at splnet().
1711 1.1 thorpej */
1712 1.1 thorpej void
1713 1.46 thorpej fxp_mc_setup(struct fxp_softc *sc)
1714 1.1 thorpej {
1715 1.2 thorpej struct fxp_cb_mcs *mcsp = &sc->sc_control_data->fcd_mcscb;
1716 1.2 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
1717 1.1 thorpej struct ethercom *ec = &sc->sc_ethercom;
1718 1.1 thorpej struct ether_multi *enm;
1719 1.1 thorpej struct ether_multistep step;
1720 1.26 jhawk int count, nmcasts;
1721 1.1 thorpej
1722 1.8 thorpej #ifdef DIAGNOSTIC
1723 1.8 thorpej if (sc->sc_txpending)
1724 1.8 thorpej panic("fxp_mc_setup: pending transmissions");
1725 1.8 thorpej #endif
1726 1.2 thorpej
1727 1.2 thorpej ifp->if_flags &= ~IFF_ALLMULTI;
1728 1.1 thorpej
1729 1.1 thorpej /*
1730 1.1 thorpej * Initialize multicast setup descriptor.
1731 1.1 thorpej */
1732 1.1 thorpej nmcasts = 0;
1733 1.2 thorpej ETHER_FIRST_MULTI(step, ec, enm);
1734 1.2 thorpej while (enm != NULL) {
1735 1.2 thorpej /*
1736 1.2 thorpej * Check for too many multicast addresses or if we're
1737 1.2 thorpej * listening to a range. Either way, we simply have
1738 1.2 thorpej * to accept all multicasts.
1739 1.2 thorpej */
1740 1.2 thorpej if (nmcasts >= MAXMCADDR ||
1741 1.2 thorpej memcmp(enm->enm_addrlo, enm->enm_addrhi,
1742 1.19 enami ETHER_ADDR_LEN) != 0) {
1743 1.1 thorpej /*
1744 1.2 thorpej * Callers of this function must do the
1745 1.2 thorpej * right thing with this. If we're called
1746 1.2 thorpej * from outside fxp_init(), the caller must
1747 1.2 thorpej * detect if the state if IFF_ALLMULTI changes.
1748 1.2 thorpej * If it does, the caller must then call
1749 1.2 thorpej * fxp_init(), since allmulti is handled by
1750 1.2 thorpej * the config block.
1751 1.1 thorpej */
1752 1.2 thorpej ifp->if_flags |= IFF_ALLMULTI;
1753 1.2 thorpej return;
1754 1.1 thorpej }
1755 1.2 thorpej memcpy((void *)&mcsp->mc_addr[nmcasts][0], enm->enm_addrlo,
1756 1.2 thorpej ETHER_ADDR_LEN);
1757 1.2 thorpej nmcasts++;
1758 1.2 thorpej ETHER_NEXT_MULTI(step, enm);
1759 1.2 thorpej }
1760 1.2 thorpej
1761 1.15 thorpej /* BIG_ENDIAN: no need to swap to store 0 */
1762 1.2 thorpej mcsp->cb_status = 0;
1763 1.15 thorpej mcsp->cb_command = htole16(FXP_CB_COMMAND_MCAS | FXP_CB_COMMAND_EL);
1764 1.15 thorpej mcsp->link_addr = htole32(FXP_CDTXADDR(sc, FXP_NEXTTX(sc->sc_txlast)));
1765 1.15 thorpej mcsp->mc_cnt = htole16(nmcasts * ETHER_ADDR_LEN);
1766 1.1 thorpej
1767 1.2 thorpej FXP_CDMCSSYNC(sc, BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
1768 1.1 thorpej
1769 1.1 thorpej /*
1770 1.2 thorpej * Wait until the command unit is not active. This should never
1771 1.2 thorpej * happen since nothing is queued, but make sure anyway.
1772 1.1 thorpej */
1773 1.27 jhawk count = 100;
1774 1.1 thorpej while ((CSR_READ_1(sc, FXP_CSR_SCB_RUSCUS) >> 6) ==
1775 1.26 jhawk FXP_SCB_CUS_ACTIVE && --count)
1776 1.27 jhawk DELAY(1);
1777 1.26 jhawk if (count == 0) {
1778 1.27 jhawk printf("%s at line %d: command queue timeout\n",
1779 1.27 jhawk sc->sc_dev.dv_xname, __LINE__);
1780 1.26 jhawk return;
1781 1.26 jhawk }
1782 1.1 thorpej
1783 1.1 thorpej /*
1784 1.2 thorpej * Start the multicast setup command/DMA.
1785 1.1 thorpej */
1786 1.1 thorpej fxp_scb_wait(sc);
1787 1.2 thorpej CSR_WRITE_4(sc, FXP_CSR_SCB_GENERAL, sc->sc_cddma + FXP_CDMCSOFF);
1788 1.1 thorpej CSR_WRITE_1(sc, FXP_CSR_SCB_COMMAND, FXP_SCB_COMMAND_CU_START);
1789 1.1 thorpej
1790 1.3 thorpej /* ...and wait for it to complete. */
1791 1.27 jhawk count = 1000;
1792 1.3 thorpej do {
1793 1.3 thorpej FXP_CDMCSSYNC(sc,
1794 1.3 thorpej BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
1795 1.27 jhawk DELAY(1);
1796 1.31 soren } while ((le16toh(mcsp->cb_status) & FXP_CB_STATUS_C) == 0 && --count);
1797 1.26 jhawk if (count == 0) {
1798 1.27 jhawk printf("%s at line %d: dmasync timeout\n",
1799 1.27 jhawk sc->sc_dev.dv_xname, __LINE__);
1800 1.26 jhawk return;
1801 1.26 jhawk }
1802 1.10 sommerfe }
1803 1.10 sommerfe
1804 1.10 sommerfe int
1805 1.46 thorpej fxp_enable(struct fxp_softc *sc)
1806 1.10 sommerfe {
1807 1.10 sommerfe
1808 1.10 sommerfe if (sc->sc_enabled == 0 && sc->sc_enable != NULL) {
1809 1.10 sommerfe if ((*sc->sc_enable)(sc) != 0) {
1810 1.10 sommerfe printf("%s: device enable failed\n",
1811 1.19 enami sc->sc_dev.dv_xname);
1812 1.10 sommerfe return (EIO);
1813 1.10 sommerfe }
1814 1.10 sommerfe }
1815 1.10 sommerfe
1816 1.10 sommerfe sc->sc_enabled = 1;
1817 1.19 enami return (0);
1818 1.10 sommerfe }
1819 1.10 sommerfe
1820 1.10 sommerfe void
1821 1.46 thorpej fxp_disable(struct fxp_softc *sc)
1822 1.10 sommerfe {
1823 1.19 enami
1824 1.10 sommerfe if (sc->sc_enabled != 0 && sc->sc_disable != NULL) {
1825 1.10 sommerfe (*sc->sc_disable)(sc);
1826 1.10 sommerfe sc->sc_enabled = 0;
1827 1.10 sommerfe }
1828 1.18 joda }
1829 1.18 joda
1830 1.20 enami /*
1831 1.20 enami * fxp_activate:
1832 1.20 enami *
1833 1.20 enami * Handle device activation/deactivation requests.
1834 1.20 enami */
1835 1.20 enami int
1836 1.46 thorpej fxp_activate(struct device *self, enum devact act)
1837 1.20 enami {
1838 1.20 enami struct fxp_softc *sc = (void *) self;
1839 1.20 enami int s, error = 0;
1840 1.20 enami
1841 1.20 enami s = splnet();
1842 1.20 enami switch (act) {
1843 1.20 enami case DVACT_ACTIVATE:
1844 1.20 enami error = EOPNOTSUPP;
1845 1.20 enami break;
1846 1.20 enami
1847 1.20 enami case DVACT_DEACTIVATE:
1848 1.20 enami if (sc->sc_flags & FXPF_MII)
1849 1.20 enami mii_activate(&sc->sc_mii, act, MII_PHY_ANY,
1850 1.20 enami MII_OFFSET_ANY);
1851 1.20 enami if_deactivate(&sc->sc_ethercom.ec_if);
1852 1.20 enami break;
1853 1.20 enami }
1854 1.20 enami splx(s);
1855 1.20 enami
1856 1.20 enami return (error);
1857 1.20 enami }
1858 1.20 enami
1859 1.20 enami /*
1860 1.20 enami * fxp_detach:
1861 1.20 enami *
1862 1.20 enami * Detach an i82557 interface.
1863 1.20 enami */
1864 1.18 joda int
1865 1.46 thorpej fxp_detach(struct fxp_softc *sc)
1866 1.18 joda {
1867 1.18 joda struct ifnet *ifp = &sc->sc_ethercom.ec_if;
1868 1.18 joda int i;
1869 1.34 jhawk
1870 1.34 jhawk /* Succeed now if there's no work to do. */
1871 1.34 jhawk if ((sc->sc_flags & FXPF_ATTACHED) == 0)
1872 1.34 jhawk return (0);
1873 1.18 joda
1874 1.18 joda /* Unhook our tick handler. */
1875 1.24 thorpej callout_stop(&sc->sc_callout);
1876 1.18 joda
1877 1.18 joda if (sc->sc_flags & FXPF_MII) {
1878 1.18 joda /* Detach all PHYs */
1879 1.18 joda mii_detach(&sc->sc_mii, MII_PHY_ANY, MII_OFFSET_ANY);
1880 1.18 joda }
1881 1.18 joda
1882 1.18 joda /* Delete all remaining media. */
1883 1.18 joda ifmedia_delete_instance(&sc->sc_mii.mii_media, IFM_INST_ANY);
1884 1.18 joda
1885 1.18 joda #if NRND > 0
1886 1.18 joda rnd_detach_source(&sc->rnd_source);
1887 1.18 joda #endif
1888 1.18 joda ether_ifdetach(ifp);
1889 1.18 joda if_detach(ifp);
1890 1.18 joda
1891 1.18 joda for (i = 0; i < FXP_NRFABUFS; i++) {
1892 1.18 joda bus_dmamap_unload(sc->sc_dmat, sc->sc_rxmaps[i]);
1893 1.18 joda bus_dmamap_destroy(sc->sc_dmat, sc->sc_rxmaps[i]);
1894 1.18 joda }
1895 1.18 joda
1896 1.18 joda for (i = 0; i < FXP_NTXCB; i++) {
1897 1.18 joda bus_dmamap_unload(sc->sc_dmat, FXP_DSTX(sc, i)->txs_dmamap);
1898 1.18 joda bus_dmamap_destroy(sc->sc_dmat, FXP_DSTX(sc, i)->txs_dmamap);
1899 1.18 joda }
1900 1.18 joda
1901 1.18 joda bus_dmamap_unload(sc->sc_dmat, sc->sc_dmamap);
1902 1.18 joda bus_dmamap_destroy(sc->sc_dmat, sc->sc_dmamap);
1903 1.18 joda bus_dmamem_unmap(sc->sc_dmat, (caddr_t)sc->sc_control_data,
1904 1.19 enami sizeof(struct fxp_control_data));
1905 1.18 joda bus_dmamem_free(sc->sc_dmat, &sc->sc_cdseg, sc->sc_cdnseg);
1906 1.18 joda
1907 1.18 joda shutdownhook_disestablish(sc->sc_sdhook);
1908 1.23 thorpej powerhook_disestablish(sc->sc_powerhook);
1909 1.18 joda
1910 1.18 joda return (0);
1911 1.1 thorpej }
1912