tulip.c revision 1.196 1 1.196 msaitoh /* $NetBSD: tulip.c,v 1.196 2019/05/28 07:41:48 msaitoh Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*-
4 1.110 mycroft * Copyright (c) 1998, 1999, 2000, 2002 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.110 mycroft * NASA Ames Research Center; and by Charles M. Hannum.
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 *
20 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
31 1.1 thorpej */
32 1.1 thorpej
33 1.1 thorpej /*
34 1.1 thorpej * Device driver for the Digital Semiconductor ``Tulip'' (21x4x)
35 1.1 thorpej * Ethernet controller family, and a variety of clone chips.
36 1.1 thorpej */
37 1.101 lukem
38 1.101 lukem #include <sys/cdefs.h>
39 1.196 msaitoh __KERNEL_RCSID(0, "$NetBSD: tulip.c,v 1.196 2019/05/28 07:41:48 msaitoh Exp $");
40 1.1 thorpej
41 1.1 thorpej
42 1.1 thorpej #include <sys/param.h>
43 1.135 perry #include <sys/systm.h>
44 1.56 thorpej #include <sys/callout.h>
45 1.135 perry #include <sys/mbuf.h>
46 1.1 thorpej #include <sys/malloc.h>
47 1.1 thorpej #include <sys/kernel.h>
48 1.1 thorpej #include <sys/socket.h>
49 1.1 thorpej #include <sys/ioctl.h>
50 1.1 thorpej #include <sys/errno.h>
51 1.1 thorpej #include <sys/device.h>
52 1.1 thorpej
53 1.35 thorpej #include <machine/endian.h>
54 1.35 thorpej
55 1.1 thorpej #include <net/if.h>
56 1.1 thorpej #include <net/if_dl.h>
57 1.1 thorpej #include <net/if_media.h>
58 1.1 thorpej #include <net/if_ether.h>
59 1.1 thorpej
60 1.1 thorpej #include <net/bpf.h>
61 1.1 thorpej
62 1.154 ad #include <sys/bus.h>
63 1.154 ad #include <sys/intr.h>
64 1.1 thorpej
65 1.1 thorpej #include <dev/mii/mii.h>
66 1.1 thorpej #include <dev/mii/miivar.h>
67 1.33 thorpej #include <dev/mii/mii_bitbang.h>
68 1.1 thorpej
69 1.1 thorpej #include <dev/ic/tulipreg.h>
70 1.1 thorpej #include <dev/ic/tulipvar.h>
71 1.38 thorpej
72 1.177 christos static const char * const tlp_chip_names[] = TULIP_CHIP_NAMES;
73 1.1 thorpej
74 1.138 thorpej static const struct tulip_txthresh_tab tlp_10_txthresh_tab[] =
75 1.60 thorpej TLP_TXTHRESH_TAB_10;
76 1.3 thorpej
77 1.138 thorpej static const struct tulip_txthresh_tab tlp_10_100_txthresh_tab[] =
78 1.60 thorpej TLP_TXTHRESH_TAB_10_100;
79 1.5 thorpej
80 1.138 thorpej static const struct tulip_txthresh_tab tlp_dm9102_txthresh_tab[] =
81 1.68 thorpej TLP_TXTHRESH_TAB_DM9102;
82 1.68 thorpej
83 1.138 thorpej static void tlp_start(struct ifnet *);
84 1.138 thorpej static void tlp_watchdog(struct ifnet *);
85 1.149 christos static int tlp_ioctl(struct ifnet *, u_long, void *);
86 1.138 thorpej static int tlp_init(struct ifnet *);
87 1.138 thorpej static void tlp_stop(struct ifnet *, int);
88 1.164 dyoung static int tlp_ifflags_cb(struct ethercom *);
89 1.138 thorpej
90 1.138 thorpej static void tlp_rxdrain(struct tulip_softc *);
91 1.138 thorpej static int tlp_add_rxbuf(struct tulip_softc *, int);
92 1.138 thorpej static void tlp_srom_idle(struct tulip_softc *);
93 1.138 thorpej static int tlp_srom_size(struct tulip_softc *);
94 1.138 thorpej
95 1.138 thorpej static int tlp_enable(struct tulip_softc *);
96 1.138 thorpej static void tlp_disable(struct tulip_softc *);
97 1.138 thorpej
98 1.138 thorpej static void tlp_filter_setup(struct tulip_softc *);
99 1.138 thorpej static void tlp_winb_filter_setup(struct tulip_softc *);
100 1.138 thorpej static void tlp_al981_filter_setup(struct tulip_softc *);
101 1.138 thorpej static void tlp_asix_filter_setup(struct tulip_softc *);
102 1.138 thorpej
103 1.138 thorpej static void tlp_rxintr(struct tulip_softc *);
104 1.138 thorpej static void tlp_txintr(struct tulip_softc *);
105 1.138 thorpej
106 1.138 thorpej static void tlp_mii_tick(void *);
107 1.181 matt static void tlp_mii_statchg(struct ifnet *);
108 1.181 matt static void tlp_winb_mii_statchg(struct ifnet *);
109 1.181 matt static void tlp_dm9102_mii_statchg(struct ifnet *);
110 1.138 thorpej
111 1.138 thorpej static void tlp_mii_getmedia(struct tulip_softc *, struct ifmediareq *);
112 1.138 thorpej static int tlp_mii_setmedia(struct tulip_softc *);
113 1.138 thorpej
114 1.192 msaitoh static int tlp_bitbang_mii_readreg(device_t, int, int, uint16_t *);
115 1.192 msaitoh static int tlp_bitbang_mii_writereg(device_t, int, int, uint16_t);
116 1.138 thorpej
117 1.192 msaitoh static int tlp_pnic_mii_readreg(device_t, int, int, uint16_t *);
118 1.192 msaitoh static int tlp_pnic_mii_writereg(device_t, int, int, uint16_t);
119 1.138 thorpej
120 1.192 msaitoh static int tlp_al981_mii_readreg(device_t, int, int, uint16_t *);
121 1.192 msaitoh static int tlp_al981_mii_writereg(device_t, int, int, uint16_t);
122 1.138 thorpej
123 1.138 thorpej static void tlp_2114x_preinit(struct tulip_softc *);
124 1.138 thorpej static void tlp_2114x_mii_preinit(struct tulip_softc *);
125 1.138 thorpej static void tlp_pnic_preinit(struct tulip_softc *);
126 1.138 thorpej static void tlp_dm9102_preinit(struct tulip_softc *);
127 1.138 thorpej static void tlp_asix_preinit(struct tulip_softc *);
128 1.138 thorpej
129 1.138 thorpej static void tlp_21140_reset(struct tulip_softc *);
130 1.138 thorpej static void tlp_21142_reset(struct tulip_softc *);
131 1.138 thorpej static void tlp_pmac_reset(struct tulip_softc *);
132 1.138 thorpej #if 0
133 1.138 thorpej static void tlp_dm9102_reset(struct tulip_softc *);
134 1.138 thorpej #endif
135 1.17 thorpej
136 1.138 thorpej static void tlp_2114x_nway_tick(void *);
137 1.108 chs
138 1.62 thorpej #define tlp_mchash(addr, sz) \
139 1.62 thorpej (ether_crc32_le((addr), ETHER_ADDR_LEN) & ((sz) - 1))
140 1.1 thorpej
141 1.33 thorpej /*
142 1.33 thorpej * MII bit-bang glue.
143 1.33 thorpej */
144 1.165 cegger static uint32_t tlp_sio_mii_bitbang_read(device_t);
145 1.165 cegger static void tlp_sio_mii_bitbang_write(device_t, uint32_t);
146 1.33 thorpej
147 1.138 thorpej static const struct mii_bitbang_ops tlp_sio_mii_bitbang_ops = {
148 1.33 thorpej tlp_sio_mii_bitbang_read,
149 1.33 thorpej tlp_sio_mii_bitbang_write,
150 1.33 thorpej {
151 1.33 thorpej MIIROM_MDO, /* MII_BIT_MDO */
152 1.33 thorpej MIIROM_MDI, /* MII_BIT_MDI */
153 1.33 thorpej MIIROM_MDC, /* MII_BIT_MDC */
154 1.33 thorpej 0, /* MII_BIT_DIR_HOST_PHY */
155 1.33 thorpej MIIROM_MIIDIR, /* MII_BIT_DIR_PHY_HOST */
156 1.33 thorpej }
157 1.33 thorpej };
158 1.33 thorpej
159 1.1 thorpej #ifdef TLP_DEBUG
160 1.5 thorpej #define DPRINTF(sc, x) if ((sc)->sc_ethercom.ec_if.if_flags & IFF_DEBUG) \
161 1.5 thorpej printf x
162 1.1 thorpej #else
163 1.5 thorpej #define DPRINTF(sc, x) /* nothing */
164 1.1 thorpej #endif
165 1.1 thorpej
166 1.23 thorpej #ifdef TLP_STATS
167 1.138 thorpej static void tlp_print_stats(struct tulip_softc *);
168 1.23 thorpej #endif
169 1.23 thorpej
170 1.1 thorpej /*
171 1.61 thorpej * Can be used to debug the SROM-related things, including contents.
172 1.61 thorpej * Initialized so that it's patchable.
173 1.61 thorpej */
174 1.61 thorpej int tlp_srom_debug = 0;
175 1.61 thorpej
176 1.61 thorpej /*
177 1.1 thorpej * tlp_attach:
178 1.1 thorpej *
179 1.1 thorpej * Attach a Tulip interface to the system.
180 1.1 thorpej */
181 1.169 cegger int
182 1.165 cegger tlp_attach(struct tulip_softc *sc, const uint8_t *enaddr)
183 1.1 thorpej {
184 1.1 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
185 1.167 cegger device_t self = sc->sc_dev;
186 1.42 thorpej int i, error;
187 1.1 thorpej
188 1.150 ad callout_init(&sc->sc_nway_callout, 0);
189 1.150 ad callout_init(&sc->sc_tick_callout, 0);
190 1.56 thorpej
191 1.1 thorpej /*
192 1.1 thorpej * NOTE: WE EXPECT THE FRONT-END TO INITIALIZE sc_regshift!
193 1.1 thorpej */
194 1.1 thorpej
195 1.1 thorpej /*
196 1.1 thorpej * Setup the transmit threshold table.
197 1.1 thorpej */
198 1.1 thorpej switch (sc->sc_chip) {
199 1.1 thorpej case TULIP_CHIP_DE425:
200 1.1 thorpej case TULIP_CHIP_21040:
201 1.1 thorpej case TULIP_CHIP_21041:
202 1.1 thorpej sc->sc_txth = tlp_10_txthresh_tab;
203 1.1 thorpej break;
204 1.1 thorpej
205 1.68 thorpej case TULIP_CHIP_DM9102:
206 1.68 thorpej case TULIP_CHIP_DM9102A:
207 1.68 thorpej sc->sc_txth = tlp_dm9102_txthresh_tab;
208 1.68 thorpej break;
209 1.68 thorpej
210 1.1 thorpej default:
211 1.1 thorpej sc->sc_txth = tlp_10_100_txthresh_tab;
212 1.1 thorpej break;
213 1.1 thorpej }
214 1.1 thorpej
215 1.1 thorpej /*
216 1.1 thorpej * Setup the filter setup function.
217 1.1 thorpej */
218 1.1 thorpej switch (sc->sc_chip) {
219 1.1 thorpej case TULIP_CHIP_WB89C840F:
220 1.1 thorpej sc->sc_filter_setup = tlp_winb_filter_setup;
221 1.1 thorpej break;
222 1.1 thorpej
223 1.21 thorpej case TULIP_CHIP_AL981:
224 1.73 thorpej case TULIP_CHIP_AN983:
225 1.73 thorpej case TULIP_CHIP_AN985:
226 1.21 thorpej sc->sc_filter_setup = tlp_al981_filter_setup;
227 1.21 thorpej break;
228 1.21 thorpej
229 1.137 rpaulo case TULIP_CHIP_AX88140:
230 1.137 rpaulo case TULIP_CHIP_AX88141:
231 1.137 rpaulo sc->sc_filter_setup = tlp_asix_filter_setup;
232 1.137 rpaulo break;
233 1.137 rpaulo
234 1.1 thorpej default:
235 1.1 thorpej sc->sc_filter_setup = tlp_filter_setup;
236 1.1 thorpej break;
237 1.1 thorpej }
238 1.1 thorpej
239 1.2 thorpej /*
240 1.5 thorpej * Set up the media status change function.
241 1.5 thorpej */
242 1.5 thorpej switch (sc->sc_chip) {
243 1.5 thorpej case TULIP_CHIP_WB89C840F:
244 1.5 thorpej sc->sc_statchg = tlp_winb_mii_statchg;
245 1.5 thorpej break;
246 1.5 thorpej
247 1.68 thorpej case TULIP_CHIP_DM9102:
248 1.68 thorpej case TULIP_CHIP_DM9102A:
249 1.68 thorpej sc->sc_statchg = tlp_dm9102_mii_statchg;
250 1.68 thorpej break;
251 1.68 thorpej
252 1.5 thorpej default:
253 1.7 thorpej /*
254 1.7 thorpej * We may override this if we have special media
255 1.7 thorpej * handling requirements (e.g. flipping GPIO pins).
256 1.7 thorpej *
257 1.7 thorpej * The pure-MII statchg function covers the basics.
258 1.7 thorpej */
259 1.5 thorpej sc->sc_statchg = tlp_mii_statchg;
260 1.5 thorpej break;
261 1.5 thorpej }
262 1.5 thorpej
263 1.5 thorpej /*
264 1.67 thorpej * Default to no FS|LS in setup packet descriptors. They're
265 1.67 thorpej * supposed to be zero according to the 21040 and 21143
266 1.67 thorpej * manuals, and some chips fall over badly if they're
267 1.67 thorpej * included. Yet, other chips seem to require them. Sigh.
268 1.67 thorpej */
269 1.67 thorpej switch (sc->sc_chip) {
270 1.67 thorpej case TULIP_CHIP_X3201_3:
271 1.194 msaitoh sc->sc_setup_fsls = TDCTL_Tx_FS | TDCTL_Tx_LS;
272 1.67 thorpej break;
273 1.67 thorpej
274 1.67 thorpej default:
275 1.67 thorpej sc->sc_setup_fsls = 0;
276 1.67 thorpej }
277 1.67 thorpej
278 1.67 thorpej /*
279 1.2 thorpej * Set up various chip-specific quirks.
280 1.41 thorpej *
281 1.41 thorpej * Note that wherever we can, we use the "ring" option for
282 1.41 thorpej * transmit and receive descriptors. This is because some
283 1.41 thorpej * clone chips apparently have problems when using chaining,
284 1.41 thorpej * although some *only* support chaining.
285 1.41 thorpej *
286 1.41 thorpej * What we do is always program the "next" pointer, and then
287 1.41 thorpej * conditionally set the TDCTL_CH and TDCTL_ER bits in the
288 1.41 thorpej * appropriate places.
289 1.2 thorpej */
290 1.2 thorpej switch (sc->sc_chip) {
291 1.13 thorpej case TULIP_CHIP_21140:
292 1.13 thorpej case TULIP_CHIP_21140A:
293 1.13 thorpej case TULIP_CHIP_21142:
294 1.13 thorpej case TULIP_CHIP_21143:
295 1.27 thorpej case TULIP_CHIP_82C115: /* 21143-like */
296 1.27 thorpej case TULIP_CHIP_MX98713: /* 21140-like */
297 1.27 thorpej case TULIP_CHIP_MX98713A: /* 21143-like */
298 1.27 thorpej case TULIP_CHIP_MX98715: /* 21143-like */
299 1.27 thorpej case TULIP_CHIP_MX98715A: /* 21143-like */
300 1.71 castor case TULIP_CHIP_MX98715AEC_X: /* 21143-like */
301 1.27 thorpej case TULIP_CHIP_MX98725: /* 21143-like */
302 1.143 rpaulo case TULIP_CHIP_RS7112: /* 21143-like */
303 1.41 thorpej /*
304 1.41 thorpej * Run these chips in ring mode.
305 1.41 thorpej */
306 1.41 thorpej sc->sc_tdctl_ch = 0;
307 1.41 thorpej sc->sc_tdctl_er = TDCTL_ER;
308 1.13 thorpej sc->sc_preinit = tlp_2114x_preinit;
309 1.13 thorpej break;
310 1.13 thorpej
311 1.3 thorpej case TULIP_CHIP_82C168:
312 1.3 thorpej case TULIP_CHIP_82C169:
313 1.41 thorpej /*
314 1.41 thorpej * Run these chips in ring mode.
315 1.41 thorpej */
316 1.41 thorpej sc->sc_tdctl_ch = 0;
317 1.41 thorpej sc->sc_tdctl_er = TDCTL_ER;
318 1.13 thorpej sc->sc_preinit = tlp_pnic_preinit;
319 1.13 thorpej
320 1.3 thorpej /*
321 1.3 thorpej * These chips seem to have busted DMA engines; just put them
322 1.3 thorpej * in Store-and-Forward mode from the get-go.
323 1.3 thorpej */
324 1.3 thorpej sc->sc_txthresh = TXTH_SF;
325 1.3 thorpej break;
326 1.3 thorpej
327 1.2 thorpej case TULIP_CHIP_WB89C840F:
328 1.41 thorpej /*
329 1.41 thorpej * Run this chip in chained mode.
330 1.41 thorpej */
331 1.41 thorpej sc->sc_tdctl_ch = TDCTL_CH;
332 1.41 thorpej sc->sc_tdctl_er = 0;
333 1.2 thorpej sc->sc_flags |= TULIPF_IC_FS;
334 1.2 thorpej break;
335 1.2 thorpej
336 1.68 thorpej case TULIP_CHIP_DM9102:
337 1.68 thorpej case TULIP_CHIP_DM9102A:
338 1.68 thorpej /*
339 1.68 thorpej * Run these chips in chained mode.
340 1.68 thorpej */
341 1.68 thorpej sc->sc_tdctl_ch = TDCTL_CH;
342 1.68 thorpej sc->sc_tdctl_er = 0;
343 1.68 thorpej sc->sc_preinit = tlp_dm9102_preinit;
344 1.68 thorpej
345 1.68 thorpej /*
346 1.68 thorpej * These chips have a broken bus interface, so we
347 1.68 thorpej * can't use any optimized bus commands. For this
348 1.68 thorpej * reason, we tend to underrun pretty quickly, so
349 1.68 thorpej * just to Store-and-Forward mode from the get-go.
350 1.68 thorpej */
351 1.68 thorpej sc->sc_txthresh = TXTH_DM9102_SF;
352 1.68 thorpej break;
353 1.68 thorpej
354 1.137 rpaulo case TULIP_CHIP_AX88140:
355 1.137 rpaulo case TULIP_CHIP_AX88141:
356 1.137 rpaulo /*
357 1.137 rpaulo * Run these chips in ring mode.
358 1.137 rpaulo */
359 1.137 rpaulo sc->sc_tdctl_ch = 0;
360 1.137 rpaulo sc->sc_tdctl_er = TDCTL_ER;
361 1.137 rpaulo sc->sc_preinit = tlp_asix_preinit;
362 1.137 rpaulo break;
363 1.137 rpaulo
364 1.2 thorpej default:
365 1.41 thorpej /*
366 1.41 thorpej * Default to running in ring mode.
367 1.41 thorpej */
368 1.41 thorpej sc->sc_tdctl_ch = 0;
369 1.41 thorpej sc->sc_tdctl_er = TDCTL_ER;
370 1.2 thorpej }
371 1.2 thorpej
372 1.33 thorpej /*
373 1.33 thorpej * Set up the MII bit-bang operations.
374 1.33 thorpej */
375 1.33 thorpej switch (sc->sc_chip) {
376 1.33 thorpej case TULIP_CHIP_WB89C840F: /* XXX direction bit different? */
377 1.33 thorpej sc->sc_bitbang_ops = &tlp_sio_mii_bitbang_ops;
378 1.33 thorpej break;
379 1.33 thorpej
380 1.33 thorpej default:
381 1.33 thorpej sc->sc_bitbang_ops = &tlp_sio_mii_bitbang_ops;
382 1.33 thorpej }
383 1.33 thorpej
384 1.1 thorpej SIMPLEQ_INIT(&sc->sc_txfreeq);
385 1.1 thorpej SIMPLEQ_INIT(&sc->sc_txdirtyq);
386 1.1 thorpej
387 1.1 thorpej /*
388 1.1 thorpej * Allocate the control data structures, and create and load the
389 1.1 thorpej * DMA map for it.
390 1.1 thorpej */
391 1.1 thorpej if ((error = bus_dmamem_alloc(sc->sc_dmat,
392 1.42 thorpej sizeof(struct tulip_control_data), PAGE_SIZE, 0, &sc->sc_cdseg,
393 1.42 thorpej 1, &sc->sc_cdnseg, 0)) != 0) {
394 1.188 msaitoh aprint_error_dev(self,
395 1.188 msaitoh "unable to allocate control data, error = %d\n", error);
396 1.1 thorpej goto fail_0;
397 1.1 thorpej }
398 1.1 thorpej
399 1.42 thorpej if ((error = bus_dmamem_map(sc->sc_dmat, &sc->sc_cdseg, sc->sc_cdnseg,
400 1.149 christos sizeof(struct tulip_control_data), (void **)&sc->sc_control_data,
401 1.1 thorpej BUS_DMA_COHERENT)) != 0) {
402 1.188 msaitoh aprint_error_dev(self,
403 1.188 msaitoh "unable to map control data, error = %d\n", error);
404 1.1 thorpej goto fail_1;
405 1.1 thorpej }
406 1.1 thorpej
407 1.1 thorpej if ((error = bus_dmamap_create(sc->sc_dmat,
408 1.1 thorpej sizeof(struct tulip_control_data), 1,
409 1.1 thorpej sizeof(struct tulip_control_data), 0, 0, &sc->sc_cddmamap)) != 0) {
410 1.168 cegger sc->sc_cddmamap = NULL;
411 1.188 msaitoh aprint_error_dev(self,
412 1.188 msaitoh "unable to create control data DMA map, error = %d\n",
413 1.188 msaitoh error);
414 1.1 thorpej goto fail_2;
415 1.1 thorpej }
416 1.1 thorpej
417 1.1 thorpej if ((error = bus_dmamap_load(sc->sc_dmat, sc->sc_cddmamap,
418 1.1 thorpej sc->sc_control_data, sizeof(struct tulip_control_data), NULL,
419 1.1 thorpej 0)) != 0) {
420 1.188 msaitoh aprint_error_dev(self,
421 1.188 msaitoh "unable to load control data DMA map, error = %d\n",
422 1.162 cegger error);
423 1.1 thorpej goto fail_3;
424 1.1 thorpej }
425 1.1 thorpej
426 1.1 thorpej /*
427 1.1 thorpej * Create the transmit buffer DMA maps.
428 1.39 thorpej *
429 1.39 thorpej * Note that on the Xircom clone, transmit buffers must be
430 1.39 thorpej * 4-byte aligned. We're almost guaranteed to have to copy
431 1.39 thorpej * the packet in that case, so we just limit ourselves to
432 1.39 thorpej * one segment.
433 1.68 thorpej *
434 1.68 thorpej * On the DM9102, the transmit logic can only handle one
435 1.68 thorpej * DMA segment.
436 1.1 thorpej */
437 1.39 thorpej switch (sc->sc_chip) {
438 1.39 thorpej case TULIP_CHIP_X3201_3:
439 1.68 thorpej case TULIP_CHIP_DM9102:
440 1.68 thorpej case TULIP_CHIP_DM9102A:
441 1.137 rpaulo case TULIP_CHIP_AX88140:
442 1.137 rpaulo case TULIP_CHIP_AX88141:
443 1.39 thorpej sc->sc_ntxsegs = 1;
444 1.39 thorpej break;
445 1.39 thorpej
446 1.39 thorpej default:
447 1.39 thorpej sc->sc_ntxsegs = TULIP_NTXSEGS;
448 1.39 thorpej }
449 1.1 thorpej for (i = 0; i < TULIP_TXQUEUELEN; i++) {
450 1.1 thorpej if ((error = bus_dmamap_create(sc->sc_dmat, MCLBYTES,
451 1.39 thorpej sc->sc_ntxsegs, MCLBYTES, 0, 0,
452 1.1 thorpej &sc->sc_txsoft[i].txs_dmamap)) != 0) {
453 1.168 cegger sc->sc_txsoft[i].txs_dmamap = NULL;
454 1.188 msaitoh aprint_error_dev(self,
455 1.188 msaitoh "unable to create tx DMA map %d, error = %d\n", i,
456 1.188 msaitoh error);
457 1.1 thorpej goto fail_4;
458 1.1 thorpej }
459 1.1 thorpej }
460 1.1 thorpej
461 1.1 thorpej /*
462 1.92 wiz * Create the receive buffer DMA maps.
463 1.1 thorpej */
464 1.1 thorpej for (i = 0; i < TULIP_NRXDESC; i++) {
465 1.1 thorpej if ((error = bus_dmamap_create(sc->sc_dmat, MCLBYTES, 1,
466 1.1 thorpej MCLBYTES, 0, 0, &sc->sc_rxsoft[i].rxs_dmamap)) != 0) {
467 1.195 msaitoh sc->sc_rxsoft[i].rxs_dmamap = NULL;
468 1.188 msaitoh aprint_error_dev(self,
469 1.188 msaitoh "unable to create rx DMA map %d, error = %d\n", i,
470 1.188 msaitoh error);
471 1.1 thorpej goto fail_5;
472 1.1 thorpej }
473 1.1 thorpej sc->sc_rxsoft[i].rxs_mbuf = NULL;
474 1.1 thorpej }
475 1.1 thorpej
476 1.1 thorpej /*
477 1.53 thorpej * From this point forward, the attachment cannot fail. A failure
478 1.53 thorpej * before this point releases all resources that may have been
479 1.53 thorpej * allocated.
480 1.53 thorpej */
481 1.53 thorpej sc->sc_flags |= TULIPF_ATTACHED;
482 1.53 thorpej
483 1.53 thorpej /*
484 1.1 thorpej * Reset the chip to a known state.
485 1.1 thorpej */
486 1.1 thorpej tlp_reset(sc);
487 1.1 thorpej
488 1.1 thorpej /* Announce ourselves. */
489 1.171 jmcneill aprint_normal_dev(self, "%s%sEthernet address %s\n",
490 1.9 thorpej sc->sc_name[0] != '\0' ? sc->sc_name : "",
491 1.9 thorpej sc->sc_name[0] != '\0' ? ", " : "",
492 1.1 thorpej ether_sprintf(enaddr));
493 1.1 thorpej
494 1.1 thorpej /*
495 1.126 thorpej * Check to see if we're the simulated Ethernet on Connectix
496 1.126 thorpej * Virtual PC.
497 1.126 thorpej */
498 1.126 thorpej if (enaddr[0] == 0x00 && enaddr[1] == 0x03 && enaddr[2] == 0xff)
499 1.126 thorpej sc->sc_flags |= TULIPF_VPC;
500 1.126 thorpej
501 1.126 thorpej /*
502 1.1 thorpej * Initialize our media structures. This may probe the MII, if
503 1.1 thorpej * present.
504 1.1 thorpej */
505 1.1 thorpej (*sc->sc_mediasw->tmsw_init)(sc);
506 1.1 thorpej
507 1.167 cegger strlcpy(ifp->if_xname, device_xname(self), IFNAMSIZ);
508 1.1 thorpej ifp->if_softc = sc;
509 1.1 thorpej ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
510 1.133 kim sc->sc_if_flags = ifp->if_flags;
511 1.1 thorpej ifp->if_ioctl = tlp_ioctl;
512 1.1 thorpej ifp->if_start = tlp_start;
513 1.1 thorpej ifp->if_watchdog = tlp_watchdog;
514 1.79 thorpej ifp->if_init = tlp_init;
515 1.79 thorpej ifp->if_stop = tlp_stop;
516 1.83 thorpej IFQ_SET_READY(&ifp->if_snd);
517 1.1 thorpej
518 1.1 thorpej /*
519 1.74 thorpej * We can support 802.1Q VLAN-sized frames.
520 1.74 thorpej */
521 1.74 thorpej sc->sc_ethercom.ec_capabilities |= ETHERCAP_VLAN_MTU;
522 1.74 thorpej
523 1.74 thorpej /*
524 1.1 thorpej * Attach the interface.
525 1.1 thorpej */
526 1.1 thorpej if_attach(ifp);
527 1.190 ozaki if_deferred_start_init(ifp, NULL);
528 1.1 thorpej ether_ifattach(ifp, enaddr);
529 1.164 dyoung ether_set_ifflags_cb(&sc->sc_ethercom, tlp_ifflags_cb);
530 1.180 tls
531 1.167 cegger rnd_attach_source(&sc->sc_rnd_source, device_xname(self),
532 1.184 tls RND_TYPE_NET, RND_FLAG_DEFAULT);
533 1.1 thorpej
534 1.172 tsutsui if (pmf_device_register(self, NULL, NULL))
535 1.172 tsutsui pmf_class_network_register(self, ifp);
536 1.172 tsutsui else
537 1.158 jmcneill aprint_error_dev(self, "couldn't establish power handler\n");
538 1.54 thorpej
539 1.169 cegger return 0;
540 1.1 thorpej
541 1.1 thorpej /*
542 1.1 thorpej * Free any resources we've allocated during the failed attach
543 1.1 thorpej * attempt. Do this in reverse order and fall through.
544 1.1 thorpej */
545 1.1 thorpej fail_5:
546 1.1 thorpej for (i = 0; i < TULIP_NRXDESC; i++) {
547 1.1 thorpej if (sc->sc_rxsoft[i].rxs_dmamap != NULL)
548 1.1 thorpej bus_dmamap_destroy(sc->sc_dmat,
549 1.1 thorpej sc->sc_rxsoft[i].rxs_dmamap);
550 1.1 thorpej }
551 1.1 thorpej fail_4:
552 1.1 thorpej for (i = 0; i < TULIP_TXQUEUELEN; i++) {
553 1.1 thorpej if (sc->sc_txsoft[i].txs_dmamap != NULL)
554 1.1 thorpej bus_dmamap_destroy(sc->sc_dmat,
555 1.1 thorpej sc->sc_txsoft[i].txs_dmamap);
556 1.1 thorpej }
557 1.1 thorpej bus_dmamap_unload(sc->sc_dmat, sc->sc_cddmamap);
558 1.1 thorpej fail_3:
559 1.1 thorpej bus_dmamap_destroy(sc->sc_dmat, sc->sc_cddmamap);
560 1.1 thorpej fail_2:
561 1.149 christos bus_dmamem_unmap(sc->sc_dmat, (void *)sc->sc_control_data,
562 1.1 thorpej sizeof(struct tulip_control_data));
563 1.1 thorpej fail_1:
564 1.42 thorpej bus_dmamem_free(sc->sc_dmat, &sc->sc_cdseg, sc->sc_cdnseg);
565 1.1 thorpej fail_0:
566 1.169 cegger return error;
567 1.1 thorpej }
568 1.1 thorpej
569 1.1 thorpej /*
570 1.42 thorpej * tlp_activate:
571 1.42 thorpej *
572 1.42 thorpej * Handle device activation/deactivation requests.
573 1.42 thorpej */
574 1.42 thorpej int
575 1.165 cegger tlp_activate(device_t self, enum devact act)
576 1.42 thorpej {
577 1.166 cegger struct tulip_softc *sc = device_private(self);
578 1.42 thorpej
579 1.42 thorpej switch (act) {
580 1.42 thorpej case DVACT_DEACTIVATE:
581 1.42 thorpej if_deactivate(&sc->sc_ethercom.ec_if);
582 1.173 dyoung return 0;
583 1.173 dyoung default:
584 1.173 dyoung return EOPNOTSUPP;
585 1.42 thorpej }
586 1.42 thorpej }
587 1.42 thorpej
588 1.42 thorpej /*
589 1.42 thorpej * tlp_detach:
590 1.42 thorpej *
591 1.42 thorpej * Detach a Tulip interface.
592 1.42 thorpej */
593 1.42 thorpej int
594 1.138 thorpej tlp_detach(struct tulip_softc *sc)
595 1.42 thorpej {
596 1.42 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
597 1.42 thorpej struct tulip_rxsoft *rxs;
598 1.42 thorpej struct tulip_txsoft *txs;
599 1.167 cegger device_t self = sc->sc_dev;
600 1.185 nakayama int i, s;
601 1.42 thorpej
602 1.53 thorpej /*
603 1.98 wiz * Succeed now if there isn't any work to do.
604 1.53 thorpej */
605 1.53 thorpej if ((sc->sc_flags & TULIPF_ATTACHED) == 0)
606 1.194 msaitoh return 0;
607 1.53 thorpej
608 1.185 nakayama s = splnet();
609 1.185 nakayama /* Stop the interface. Callouts are stopped in it. */
610 1.185 nakayama tlp_stop(ifp, 1);
611 1.185 nakayama splx(s);
612 1.185 nakayama
613 1.185 nakayama /* Destroy our callouts. */
614 1.185 nakayama callout_destroy(&sc->sc_nway_callout);
615 1.185 nakayama callout_destroy(&sc->sc_tick_callout);
616 1.42 thorpej
617 1.42 thorpej if (sc->sc_flags & TULIPF_HAS_MII) {
618 1.42 thorpej /* Detach all PHYs */
619 1.43 thorpej mii_detach(&sc->sc_mii, MII_PHY_ANY, MII_OFFSET_ANY);
620 1.42 thorpej }
621 1.42 thorpej
622 1.42 thorpej /* Delete all remaining media. */
623 1.42 thorpej ifmedia_delete_instance(&sc->sc_mii.mii_media, IFM_INST_ANY);
624 1.42 thorpej
625 1.76 enami rnd_detach_source(&sc->sc_rnd_source);
626 1.180 tls
627 1.42 thorpej ether_ifdetach(ifp);
628 1.42 thorpej if_detach(ifp);
629 1.42 thorpej
630 1.42 thorpej for (i = 0; i < TULIP_NRXDESC; i++) {
631 1.42 thorpej rxs = &sc->sc_rxsoft[i];
632 1.42 thorpej if (rxs->rxs_mbuf != NULL) {
633 1.42 thorpej bus_dmamap_unload(sc->sc_dmat, rxs->rxs_dmamap);
634 1.42 thorpej m_freem(rxs->rxs_mbuf);
635 1.42 thorpej rxs->rxs_mbuf = NULL;
636 1.42 thorpej }
637 1.42 thorpej bus_dmamap_destroy(sc->sc_dmat, rxs->rxs_dmamap);
638 1.42 thorpej }
639 1.42 thorpej for (i = 0; i < TULIP_TXQUEUELEN; i++) {
640 1.42 thorpej txs = &sc->sc_txsoft[i];
641 1.42 thorpej if (txs->txs_mbuf != NULL) {
642 1.42 thorpej bus_dmamap_unload(sc->sc_dmat, txs->txs_dmamap);
643 1.42 thorpej m_freem(txs->txs_mbuf);
644 1.42 thorpej txs->txs_mbuf = NULL;
645 1.42 thorpej }
646 1.42 thorpej bus_dmamap_destroy(sc->sc_dmat, txs->txs_dmamap);
647 1.42 thorpej }
648 1.42 thorpej bus_dmamap_unload(sc->sc_dmat, sc->sc_cddmamap);
649 1.42 thorpej bus_dmamap_destroy(sc->sc_dmat, sc->sc_cddmamap);
650 1.149 christos bus_dmamem_unmap(sc->sc_dmat, (void *)sc->sc_control_data,
651 1.42 thorpej sizeof(struct tulip_control_data));
652 1.42 thorpej bus_dmamem_free(sc->sc_dmat, &sc->sc_cdseg, sc->sc_cdnseg);
653 1.42 thorpej
654 1.158 jmcneill pmf_device_deregister(self);
655 1.42 thorpej
656 1.47 mycroft if (sc->sc_srom)
657 1.47 mycroft free(sc->sc_srom, M_DEVBUF);
658 1.47 mycroft
659 1.194 msaitoh return 0;
660 1.42 thorpej }
661 1.42 thorpej
662 1.42 thorpej /*
663 1.1 thorpej * tlp_start: [ifnet interface function]
664 1.1 thorpej *
665 1.1 thorpej * Start packet transmission on the interface.
666 1.1 thorpej */
667 1.138 thorpej static void
668 1.138 thorpej tlp_start(struct ifnet *ifp)
669 1.1 thorpej {
670 1.1 thorpej struct tulip_softc *sc = ifp->if_softc;
671 1.1 thorpej struct mbuf *m0, *m;
672 1.124 christos struct tulip_txsoft *txs, *last_txs = NULL;
673 1.1 thorpej bus_dmamap_t dmamap;
674 1.124 christos int error, firsttx, nexttx, lasttx = 1, ofree, seg;
675 1.178 christos struct tulip_desc *txd;
676 1.1 thorpej
677 1.5 thorpej DPRINTF(sc, ("%s: tlp_start: sc_flags 0x%08x, if_flags 0x%08x\n",
678 1.167 cegger device_xname(sc->sc_dev), sc->sc_flags, ifp->if_flags));
679 1.1 thorpej
680 1.1 thorpej /*
681 1.1 thorpej * If we want a filter setup, it means no more descriptors were
682 1.1 thorpej * available for the setup routine. Let it get a chance to wedge
683 1.1 thorpej * itself into the ring.
684 1.1 thorpej */
685 1.1 thorpej if (sc->sc_flags & TULIPF_WANT_SETUP)
686 1.1 thorpej ifp->if_flags |= IFF_OACTIVE;
687 1.1 thorpej
688 1.194 msaitoh if ((ifp->if_flags & (IFF_RUNNING | IFF_OACTIVE)) != IFF_RUNNING)
689 1.1 thorpej return;
690 1.1 thorpej
691 1.108 chs if (sc->sc_tick == tlp_2114x_nway_tick &&
692 1.108 chs (sc->sc_flags & TULIPF_LINK_UP) == 0 && ifp->if_snd.ifq_len < 10)
693 1.108 chs return;
694 1.108 chs
695 1.1 thorpej /*
696 1.1 thorpej * Remember the previous number of free descriptors and
697 1.1 thorpej * the first descriptor we'll use.
698 1.1 thorpej */
699 1.1 thorpej ofree = sc->sc_txfree;
700 1.1 thorpej firsttx = sc->sc_txnext;
701 1.1 thorpej
702 1.5 thorpej DPRINTF(sc, ("%s: tlp_start: txfree %d, txnext %d\n",
703 1.167 cegger device_xname(sc->sc_dev), ofree, firsttx));
704 1.1 thorpej
705 1.1 thorpej /*
706 1.1 thorpej * Loop through the send queue, setting up transmit descriptors
707 1.1 thorpej * until we drain the queue, or use up all available transmit
708 1.1 thorpej * descriptors.
709 1.1 thorpej */
710 1.1 thorpej while ((txs = SIMPLEQ_FIRST(&sc->sc_txfreeq)) != NULL &&
711 1.1 thorpej sc->sc_txfree != 0) {
712 1.1 thorpej /*
713 1.1 thorpej * Grab a packet off the queue.
714 1.1 thorpej */
715 1.83 thorpej IFQ_POLL(&ifp->if_snd, m0);
716 1.1 thorpej if (m0 == NULL)
717 1.1 thorpej break;
718 1.84 thorpej m = NULL;
719 1.1 thorpej
720 1.1 thorpej dmamap = txs->txs_dmamap;
721 1.1 thorpej
722 1.1 thorpej /*
723 1.1 thorpej * Load the DMA map. If this fails, the packet either
724 1.1 thorpej * didn't fit in the alloted number of segments, or we were
725 1.1 thorpej * short on resources. In this case, we'll copy and try
726 1.1 thorpej * again.
727 1.39 thorpej *
728 1.39 thorpej * Note that if we're only allowed 1 Tx segment, we
729 1.39 thorpej * have an alignment restriction. Do this test before
730 1.39 thorpej * attempting to load the DMA map, because it's more
731 1.39 thorpej * likely we'll trip the alignment test than the
732 1.39 thorpej * more-than-one-segment test.
733 1.39 thorpej */
734 1.97 mrg if ((sc->sc_ntxsegs == 1 && (mtod(m0, uintptr_t) & 3) != 0) ||
735 1.39 thorpej bus_dmamap_load_mbuf(sc->sc_dmat, dmamap, m0,
736 1.194 msaitoh BUS_DMA_WRITE | BUS_DMA_NOWAIT) != 0) {
737 1.1 thorpej MGETHDR(m, M_DONTWAIT, MT_DATA);
738 1.1 thorpej if (m == NULL) {
739 1.167 cegger aprint_error_dev(sc->sc_dev, "unable to allocate Tx mbuf\n");
740 1.1 thorpej break;
741 1.1 thorpej }
742 1.122 matt MCLAIM(m, &sc->sc_ethercom.ec_tx_mowner);
743 1.1 thorpej if (m0->m_pkthdr.len > MHLEN) {
744 1.1 thorpej MCLGET(m, M_DONTWAIT);
745 1.1 thorpej if ((m->m_flags & M_EXT) == 0) {
746 1.171 jmcneill aprint_error_dev(sc->sc_dev,
747 1.171 jmcneill "unable to allocate Tx cluster\n");
748 1.1 thorpej m_freem(m);
749 1.1 thorpej break;
750 1.1 thorpej }
751 1.1 thorpej }
752 1.149 christos m_copydata(m0, 0, m0->m_pkthdr.len, mtod(m, void *));
753 1.1 thorpej m->m_pkthdr.len = m->m_len = m0->m_pkthdr.len;
754 1.1 thorpej error = bus_dmamap_load_mbuf(sc->sc_dmat, dmamap,
755 1.194 msaitoh m, BUS_DMA_WRITE | BUS_DMA_NOWAIT);
756 1.1 thorpej if (error) {
757 1.171 jmcneill aprint_error_dev(sc->sc_dev,
758 1.171 jmcneill "unable to load Tx buffer, error = %d",
759 1.171 jmcneill error);
760 1.1 thorpej break;
761 1.1 thorpej }
762 1.1 thorpej }
763 1.1 thorpej
764 1.1 thorpej /*
765 1.1 thorpej * Ensure we have enough descriptors free to describe
766 1.1 thorpej * the packet.
767 1.1 thorpej */
768 1.1 thorpej if (dmamap->dm_nsegs > sc->sc_txfree) {
769 1.1 thorpej /*
770 1.1 thorpej * Not enough free descriptors to transmit this
771 1.1 thorpej * packet. We haven't committed to anything yet,
772 1.1 thorpej * so just unload the DMA map, put the packet
773 1.1 thorpej * back on the queue, and punt. Notify the upper
774 1.1 thorpej * layer that there are no more slots left.
775 1.1 thorpej *
776 1.1 thorpej * XXX We could allocate an mbuf and copy, but
777 1.1 thorpej * XXX it is worth it?
778 1.1 thorpej */
779 1.1 thorpej ifp->if_flags |= IFF_OACTIVE;
780 1.1 thorpej bus_dmamap_unload(sc->sc_dmat, dmamap);
781 1.84 thorpej if (m != NULL)
782 1.84 thorpej m_freem(m);
783 1.1 thorpej break;
784 1.1 thorpej }
785 1.83 thorpej
786 1.83 thorpej IFQ_DEQUEUE(&ifp->if_snd, m0);
787 1.84 thorpej if (m != NULL) {
788 1.84 thorpej m_freem(m0);
789 1.84 thorpej m0 = m;
790 1.84 thorpej }
791 1.1 thorpej
792 1.1 thorpej /*
793 1.1 thorpej * WE ARE NOW COMMITTED TO TRANSMITTING THE PACKET.
794 1.1 thorpej */
795 1.1 thorpej
796 1.1 thorpej /* Sync the DMA map. */
797 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, dmamap, 0, dmamap->dm_mapsize,
798 1.1 thorpej BUS_DMASYNC_PREWRITE);
799 1.1 thorpej
800 1.1 thorpej /*
801 1.1 thorpej * Initialize the transmit descriptors.
802 1.1 thorpej */
803 1.1 thorpej for (nexttx = sc->sc_txnext, seg = 0;
804 1.1 thorpej seg < dmamap->dm_nsegs;
805 1.1 thorpej seg++, nexttx = TULIP_NEXTTX(nexttx)) {
806 1.1 thorpej /*
807 1.1 thorpej * If this is the first descriptor we're
808 1.1 thorpej * enqueueing, don't set the OWN bit just
809 1.1 thorpej * yet. That could cause a race condition.
810 1.1 thorpej * We'll do it below.
811 1.1 thorpej */
812 1.178 christos txd = &sc->sc_txdescs[nexttx];
813 1.178 christos txd->td_status =
814 1.35 thorpej (nexttx == firsttx) ? 0 : htole32(TDSTAT_OWN);
815 1.178 christos txd->td_bufaddr1 =
816 1.35 thorpej htole32(dmamap->dm_segs[seg].ds_addr);
817 1.178 christos txd->td_ctl =
818 1.35 thorpej htole32((dmamap->dm_segs[seg].ds_len <<
819 1.195 msaitoh TDCTL_SIZE1_SHIFT) | sc->sc_tdctl_ch |
820 1.41 thorpej (nexttx == (TULIP_NTXDESC - 1) ?
821 1.41 thorpej sc->sc_tdctl_er : 0));
822 1.1 thorpej lasttx = nexttx;
823 1.1 thorpej }
824 1.1 thorpej
825 1.124 christos KASSERT(lasttx != -1);
826 1.124 christos
827 1.1 thorpej /* Set `first segment' and `last segment' appropriately. */
828 1.35 thorpej sc->sc_txdescs[sc->sc_txnext].td_ctl |= htole32(TDCTL_Tx_FS);
829 1.35 thorpej sc->sc_txdescs[lasttx].td_ctl |= htole32(TDCTL_Tx_LS);
830 1.1 thorpej
831 1.1 thorpej #ifdef TLP_DEBUG
832 1.5 thorpej if (ifp->if_flags & IFF_DEBUG) {
833 1.66 thorpej printf(" txsoft %p transmit chain:\n", txs);
834 1.5 thorpej for (seg = sc->sc_txnext;; seg = TULIP_NEXTTX(seg)) {
835 1.179 jakllsch txd = &sc->sc_txdescs[seg];
836 1.5 thorpej printf(" descriptor %d:\n", seg);
837 1.5 thorpej printf(" td_status: 0x%08x\n",
838 1.178 christos le32toh(txd->td_status));
839 1.5 thorpej printf(" td_ctl: 0x%08x\n",
840 1.178 christos le32toh(txd->td_ctl));
841 1.5 thorpej printf(" td_bufaddr1: 0x%08x\n",
842 1.178 christos le32toh(txd->td_bufaddr1));
843 1.5 thorpej printf(" td_bufaddr2: 0x%08x\n",
844 1.178 christos le32toh(txd->td_bufaddr2));
845 1.5 thorpej if (seg == lasttx)
846 1.5 thorpej break;
847 1.5 thorpej }
848 1.1 thorpej }
849 1.1 thorpej #endif
850 1.1 thorpej
851 1.1 thorpej /* Sync the descriptors we're using. */
852 1.1 thorpej TULIP_CDTXSYNC(sc, sc->sc_txnext, dmamap->dm_nsegs,
853 1.194 msaitoh BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
854 1.1 thorpej
855 1.1 thorpej /*
856 1.1 thorpej * Store a pointer to the packet so we can free it later,
857 1.1 thorpej * and remember what txdirty will be once the packet is
858 1.1 thorpej * done.
859 1.1 thorpej */
860 1.1 thorpej txs->txs_mbuf = m0;
861 1.1 thorpej txs->txs_firstdesc = sc->sc_txnext;
862 1.1 thorpej txs->txs_lastdesc = lasttx;
863 1.40 thorpej txs->txs_ndescs = dmamap->dm_nsegs;
864 1.1 thorpej
865 1.1 thorpej /* Advance the tx pointer. */
866 1.1 thorpej sc->sc_txfree -= dmamap->dm_nsegs;
867 1.1 thorpej sc->sc_txnext = nexttx;
868 1.1 thorpej
869 1.115 lukem SIMPLEQ_REMOVE_HEAD(&sc->sc_txfreeq, txs_q);
870 1.1 thorpej SIMPLEQ_INSERT_TAIL(&sc->sc_txdirtyq, txs, txs_q);
871 1.1 thorpej
872 1.2 thorpej last_txs = txs;
873 1.2 thorpej
874 1.1 thorpej /*
875 1.1 thorpej * Pass the packet to any BPF listeners.
876 1.1 thorpej */
877 1.191 msaitoh bpf_mtap(ifp, m0, BPF_D_OUT);
878 1.1 thorpej }
879 1.1 thorpej
880 1.1 thorpej if (txs == NULL || sc->sc_txfree == 0) {
881 1.1 thorpej /* No more slots left; notify upper layer. */
882 1.1 thorpej ifp->if_flags |= IFF_OACTIVE;
883 1.1 thorpej }
884 1.1 thorpej
885 1.1 thorpej if (sc->sc_txfree != ofree) {
886 1.5 thorpej DPRINTF(sc, ("%s: packets enqueued, IC on %d, OWN on %d\n",
887 1.167 cegger device_xname(sc->sc_dev), lasttx, firsttx));
888 1.1 thorpej /*
889 1.1 thorpej * Cause a transmit interrupt to happen on the
890 1.1 thorpej * last packet we enqueued.
891 1.1 thorpej */
892 1.35 thorpej sc->sc_txdescs[lasttx].td_ctl |= htole32(TDCTL_Tx_IC);
893 1.1 thorpej TULIP_CDTXSYNC(sc, lasttx, 1,
894 1.194 msaitoh BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
895 1.2 thorpej
896 1.2 thorpej /*
897 1.2 thorpej * Some clone chips want IC on the *first* segment in
898 1.2 thorpej * the packet. Appease them.
899 1.2 thorpej */
900 1.124 christos KASSERT(last_txs != NULL);
901 1.2 thorpej if ((sc->sc_flags & TULIPF_IC_FS) != 0 &&
902 1.2 thorpej last_txs->txs_firstdesc != lasttx) {
903 1.2 thorpej sc->sc_txdescs[last_txs->txs_firstdesc].td_ctl |=
904 1.35 thorpej htole32(TDCTL_Tx_IC);
905 1.2 thorpej TULIP_CDTXSYNC(sc, last_txs->txs_firstdesc, 1,
906 1.194 msaitoh BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
907 1.2 thorpej }
908 1.1 thorpej
909 1.1 thorpej /*
910 1.1 thorpej * The entire packet chain is set up. Give the
911 1.1 thorpej * first descriptor to the chip now.
912 1.1 thorpej */
913 1.35 thorpej sc->sc_txdescs[firsttx].td_status |= htole32(TDSTAT_OWN);
914 1.1 thorpej TULIP_CDTXSYNC(sc, firsttx, 1,
915 1.194 msaitoh BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
916 1.1 thorpej
917 1.1 thorpej /* Wake up the transmitter. */
918 1.1 thorpej /* XXX USE AUTOPOLLING? */
919 1.1 thorpej TULIP_WRITE(sc, CSR_TXPOLL, TXPOLL_TPD);
920 1.1 thorpej
921 1.1 thorpej /* Set a watchdog timer in case the chip flakes out. */
922 1.1 thorpej ifp->if_timer = 5;
923 1.1 thorpej }
924 1.1 thorpej }
925 1.1 thorpej
926 1.1 thorpej /*
927 1.1 thorpej * tlp_watchdog: [ifnet interface function]
928 1.1 thorpej *
929 1.1 thorpej * Watchdog timer handler.
930 1.1 thorpej */
931 1.138 thorpej static void
932 1.138 thorpej tlp_watchdog(struct ifnet *ifp)
933 1.1 thorpej {
934 1.1 thorpej struct tulip_softc *sc = ifp->if_softc;
935 1.4 thorpej int doing_setup, doing_transmit;
936 1.4 thorpej
937 1.4 thorpej doing_setup = (sc->sc_flags & TULIPF_DOING_SETUP);
938 1.115 lukem doing_transmit = (! SIMPLEQ_EMPTY(&sc->sc_txdirtyq));
939 1.4 thorpej
940 1.4 thorpej if (doing_setup && doing_transmit) {
941 1.188 msaitoh printf("%s: filter setup and transmit timeout\n",
942 1.188 msaitoh device_xname(sc->sc_dev));
943 1.4 thorpej ifp->if_oerrors++;
944 1.4 thorpej } else if (doing_transmit) {
945 1.167 cegger printf("%s: transmit timeout\n", device_xname(sc->sc_dev));
946 1.4 thorpej ifp->if_oerrors++;
947 1.4 thorpej } else if (doing_setup)
948 1.167 cegger printf("%s: filter setup timeout\n", device_xname(sc->sc_dev));
949 1.4 thorpej else
950 1.188 msaitoh printf("%s: spurious watchdog timeout\n",
951 1.188 msaitoh device_xname(sc->sc_dev));
952 1.1 thorpej
953 1.79 thorpej (void) tlp_init(ifp);
954 1.1 thorpej
955 1.1 thorpej /* Try to get more packets going. */
956 1.1 thorpej tlp_start(ifp);
957 1.1 thorpej }
958 1.1 thorpej
959 1.164 dyoung /* If the interface is up and running, only modify the receive
960 1.164 dyoung * filter when setting promiscuous or debug mode. Otherwise fall
961 1.164 dyoung * through to ether_ioctl, which will reset the chip.
962 1.164 dyoung */
963 1.164 dyoung static int
964 1.164 dyoung tlp_ifflags_cb(struct ethercom *ec)
965 1.164 dyoung {
966 1.164 dyoung struct ifnet *ifp = &ec->ec_if;
967 1.164 dyoung struct tulip_softc *sc = ifp->if_softc;
968 1.164 dyoung int change = ifp->if_flags ^ sc->sc_if_flags;
969 1.164 dyoung
970 1.194 msaitoh if ((change & ~(IFF_CANTCHANGE | IFF_DEBUG)) != 0)
971 1.164 dyoung return ENETRESET;
972 1.164 dyoung if ((change & IFF_PROMISC) != 0)
973 1.164 dyoung (*sc->sc_filter_setup)(sc);
974 1.164 dyoung return 0;
975 1.164 dyoung }
976 1.164 dyoung
977 1.1 thorpej /*
978 1.1 thorpej * tlp_ioctl: [ifnet interface function]
979 1.1 thorpej *
980 1.1 thorpej * Handle control requests from the operator.
981 1.1 thorpej */
982 1.138 thorpej static int
983 1.149 christos tlp_ioctl(struct ifnet *ifp, u_long cmd, void *data)
984 1.1 thorpej {
985 1.1 thorpej struct tulip_softc *sc = ifp->if_softc;
986 1.79 thorpej int s, error;
987 1.1 thorpej
988 1.1 thorpej s = splnet();
989 1.1 thorpej
990 1.1 thorpej switch (cmd) {
991 1.1 thorpej default:
992 1.79 thorpej error = ether_ioctl(ifp, cmd, data);
993 1.79 thorpej if (error == ENETRESET) {
994 1.129 thorpej if (ifp->if_flags & IFF_RUNNING) {
995 1.79 thorpej /*
996 1.79 thorpej * Multicast list has changed. Set the
997 1.79 thorpej * hardware filter accordingly.
998 1.79 thorpej */
999 1.79 thorpej (*sc->sc_filter_setup)(sc);
1000 1.79 thorpej }
1001 1.79 thorpej error = 0;
1002 1.79 thorpej }
1003 1.1 thorpej break;
1004 1.1 thorpej }
1005 1.1 thorpej
1006 1.1 thorpej /* Try to get more packets going. */
1007 1.53 thorpej if (TULIP_IS_ENABLED(sc))
1008 1.53 thorpej tlp_start(ifp);
1009 1.1 thorpej
1010 1.133 kim sc->sc_if_flags = ifp->if_flags;
1011 1.1 thorpej splx(s);
1012 1.194 msaitoh return error;
1013 1.1 thorpej }
1014 1.1 thorpej
1015 1.1 thorpej /*
1016 1.1 thorpej * tlp_intr:
1017 1.1 thorpej *
1018 1.1 thorpej * Interrupt service routine.
1019 1.1 thorpej */
1020 1.1 thorpej int
1021 1.138 thorpej tlp_intr(void *arg)
1022 1.1 thorpej {
1023 1.1 thorpej struct tulip_softc *sc = arg;
1024 1.1 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
1025 1.165 cegger uint32_t status, rxstatus, txstatus;
1026 1.1 thorpej int handled = 0, txthresh;
1027 1.1 thorpej
1028 1.167 cegger DPRINTF(sc, ("%s: tlp_intr\n", device_xname(sc->sc_dev)));
1029 1.11 thorpej
1030 1.53 thorpej #ifdef DEBUG
1031 1.53 thorpej if (TULIP_IS_ENABLED(sc) == 0)
1032 1.167 cegger panic("%s: tlp_intr: not enabled", device_xname(sc->sc_dev));
1033 1.53 thorpej #endif
1034 1.53 thorpej
1035 1.11 thorpej /*
1036 1.11 thorpej * If the interface isn't running, the interrupt couldn't
1037 1.11 thorpej * possibly have come from us.
1038 1.11 thorpej */
1039 1.42 thorpej if ((ifp->if_flags & IFF_RUNNING) == 0 ||
1040 1.167 cegger !device_is_active(sc->sc_dev))
1041 1.194 msaitoh return 0;
1042 1.1 thorpej
1043 1.68 thorpej /* Disable interrupts on the DM9102 (interrupt edge bug). */
1044 1.68 thorpej switch (sc->sc_chip) {
1045 1.68 thorpej case TULIP_CHIP_DM9102:
1046 1.68 thorpej case TULIP_CHIP_DM9102A:
1047 1.68 thorpej TULIP_WRITE(sc, CSR_INTEN, 0);
1048 1.68 thorpej break;
1049 1.68 thorpej
1050 1.68 thorpej default:
1051 1.68 thorpej /* Nothing. */
1052 1.91 cgd break;
1053 1.68 thorpej }
1054 1.68 thorpej
1055 1.1 thorpej for (;;) {
1056 1.1 thorpej status = TULIP_READ(sc, CSR_STATUS);
1057 1.1 thorpej if (status)
1058 1.1 thorpej TULIP_WRITE(sc, CSR_STATUS, status);
1059 1.1 thorpej
1060 1.1 thorpej if ((status & sc->sc_inten) == 0)
1061 1.1 thorpej break;
1062 1.1 thorpej
1063 1.1 thorpej handled = 1;
1064 1.1 thorpej
1065 1.5 thorpej rxstatus = status & sc->sc_rxint_mask;
1066 1.5 thorpej txstatus = status & sc->sc_txint_mask;
1067 1.5 thorpej
1068 1.5 thorpej if (rxstatus) {
1069 1.1 thorpej /* Grab new any new packets. */
1070 1.1 thorpej tlp_rxintr(sc);
1071 1.1 thorpej
1072 1.5 thorpej if (rxstatus & STATUS_RWT)
1073 1.1 thorpej printf("%s: receive watchdog timeout\n",
1074 1.167 cegger device_xname(sc->sc_dev));
1075 1.1 thorpej
1076 1.5 thorpej if (rxstatus & STATUS_RU) {
1077 1.1 thorpej printf("%s: receive ring overrun\n",
1078 1.167 cegger device_xname(sc->sc_dev));
1079 1.1 thorpej /* Get the receive process going again. */
1080 1.63 thorpej if (sc->sc_tdctl_er != TDCTL_ER) {
1081 1.63 thorpej tlp_idle(sc, OPMODE_SR);
1082 1.63 thorpej TULIP_WRITE(sc, CSR_RXLIST,
1083 1.63 thorpej TULIP_CDRXADDR(sc, sc->sc_rxptr));
1084 1.63 thorpej TULIP_WRITE(sc, CSR_OPMODE,
1085 1.63 thorpej sc->sc_opmode);
1086 1.63 thorpej }
1087 1.1 thorpej TULIP_WRITE(sc, CSR_RXPOLL, RXPOLL_RPD);
1088 1.1 thorpej break;
1089 1.1 thorpej }
1090 1.1 thorpej }
1091 1.1 thorpej
1092 1.5 thorpej if (txstatus) {
1093 1.1 thorpej /* Sweep up transmit descriptors. */
1094 1.1 thorpej tlp_txintr(sc);
1095 1.1 thorpej
1096 1.5 thorpej if (txstatus & STATUS_TJT)
1097 1.1 thorpej printf("%s: transmit jabber timeout\n",
1098 1.167 cegger device_xname(sc->sc_dev));
1099 1.1 thorpej
1100 1.5 thorpej if (txstatus & STATUS_UNF) {
1101 1.1 thorpej /*
1102 1.1 thorpej * Increase our transmit threshold if
1103 1.1 thorpej * another is available.
1104 1.1 thorpej */
1105 1.1 thorpej txthresh = sc->sc_txthresh + 1;
1106 1.1 thorpej if (sc->sc_txth[txthresh].txth_name != NULL) {
1107 1.1 thorpej /* Idle the transmit process. */
1108 1.1 thorpej tlp_idle(sc, OPMODE_ST);
1109 1.1 thorpej
1110 1.1 thorpej sc->sc_txthresh = txthresh;
1111 1.1 thorpej sc->sc_opmode &= ~(OPMODE_TR|OPMODE_SF);
1112 1.1 thorpej sc->sc_opmode |=
1113 1.1 thorpej sc->sc_txth[txthresh].txth_opmode;
1114 1.1 thorpej printf("%s: transmit underrun; new "
1115 1.1 thorpej "threshold: %s\n",
1116 1.167 cegger device_xname(sc->sc_dev),
1117 1.1 thorpej sc->sc_txth[txthresh].txth_name);
1118 1.1 thorpej
1119 1.1 thorpej /*
1120 1.1 thorpej * Set the new threshold and restart
1121 1.1 thorpej * the transmit process.
1122 1.1 thorpej */
1123 1.1 thorpej TULIP_WRITE(sc, CSR_OPMODE,
1124 1.1 thorpej sc->sc_opmode);
1125 1.1 thorpej }
1126 1.1 thorpej /*
1127 1.1 thorpej * XXX Log every Nth underrun from
1128 1.1 thorpej * XXX now on?
1129 1.1 thorpej */
1130 1.1 thorpej }
1131 1.1 thorpej }
1132 1.1 thorpej
1133 1.194 msaitoh if (status & (STATUS_TPS | STATUS_RPS)) {
1134 1.1 thorpej if (status & STATUS_TPS)
1135 1.1 thorpej printf("%s: transmit process stopped\n",
1136 1.167 cegger device_xname(sc->sc_dev));
1137 1.1 thorpej if (status & STATUS_RPS)
1138 1.1 thorpej printf("%s: receive process stopped\n",
1139 1.167 cegger device_xname(sc->sc_dev));
1140 1.79 thorpej (void) tlp_init(ifp);
1141 1.1 thorpej break;
1142 1.1 thorpej }
1143 1.1 thorpej
1144 1.1 thorpej if (status & STATUS_SE) {
1145 1.1 thorpej const char *str;
1146 1.1 thorpej switch (status & STATUS_EB) {
1147 1.1 thorpej case STATUS_EB_PARITY:
1148 1.1 thorpej str = "parity error";
1149 1.1 thorpej break;
1150 1.1 thorpej
1151 1.1 thorpej case STATUS_EB_MABT:
1152 1.1 thorpej str = "master abort";
1153 1.1 thorpej break;
1154 1.1 thorpej
1155 1.1 thorpej case STATUS_EB_TABT:
1156 1.1 thorpej str = "target abort";
1157 1.1 thorpej break;
1158 1.1 thorpej
1159 1.1 thorpej default:
1160 1.1 thorpej str = "unknown error";
1161 1.1 thorpej break;
1162 1.1 thorpej }
1163 1.188 msaitoh aprint_error_dev(sc->sc_dev,
1164 1.188 msaitoh "fatal system error: %s\n", str);
1165 1.79 thorpej (void) tlp_init(ifp);
1166 1.1 thorpej break;
1167 1.1 thorpej }
1168 1.1 thorpej
1169 1.1 thorpej /*
1170 1.1 thorpej * Not handled:
1171 1.1 thorpej *
1172 1.1 thorpej * Transmit buffer unavailable -- normal
1173 1.1 thorpej * condition, nothing to do, really.
1174 1.1 thorpej *
1175 1.1 thorpej * General purpose timer experied -- we don't
1176 1.1 thorpej * use the general purpose timer.
1177 1.1 thorpej *
1178 1.1 thorpej * Early receive interrupt -- not available on
1179 1.1 thorpej * all chips, we just use RI. We also only
1180 1.1 thorpej * use single-segment receive DMA, so this
1181 1.1 thorpej * is mostly useless.
1182 1.1 thorpej */
1183 1.1 thorpej }
1184 1.1 thorpej
1185 1.68 thorpej /* Bring interrupts back up on the DM9102. */
1186 1.68 thorpej switch (sc->sc_chip) {
1187 1.68 thorpej case TULIP_CHIP_DM9102:
1188 1.68 thorpej case TULIP_CHIP_DM9102A:
1189 1.68 thorpej TULIP_WRITE(sc, CSR_INTEN, sc->sc_inten);
1190 1.68 thorpej break;
1191 1.68 thorpej
1192 1.68 thorpej default:
1193 1.68 thorpej /* Nothing. */
1194 1.91 cgd break;
1195 1.68 thorpej }
1196 1.68 thorpej
1197 1.1 thorpej /* Try to get more packets going. */
1198 1.190 ozaki if_schedule_deferred_start(ifp);
1199 1.1 thorpej
1200 1.76 enami if (handled)
1201 1.76 enami rnd_add_uint32(&sc->sc_rnd_source, status);
1202 1.180 tls
1203 1.194 msaitoh return handled;
1204 1.1 thorpej }
1205 1.1 thorpej
1206 1.1 thorpej /*
1207 1.1 thorpej * tlp_rxintr:
1208 1.1 thorpej *
1209 1.1 thorpej * Helper; handle receive interrupts.
1210 1.1 thorpej */
1211 1.138 thorpej static void
1212 1.138 thorpej tlp_rxintr(struct tulip_softc *sc)
1213 1.1 thorpej {
1214 1.1 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
1215 1.1 thorpej struct ether_header *eh;
1216 1.1 thorpej struct tulip_rxsoft *rxs;
1217 1.1 thorpej struct mbuf *m;
1218 1.165 cegger uint32_t rxstat, errors;
1219 1.1 thorpej int i, len;
1220 1.1 thorpej
1221 1.1 thorpej for (i = sc->sc_rxptr;; i = TULIP_NEXTRX(i)) {
1222 1.1 thorpej rxs = &sc->sc_rxsoft[i];
1223 1.1 thorpej
1224 1.1 thorpej TULIP_CDRXSYNC(sc, i,
1225 1.194 msaitoh BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1226 1.1 thorpej
1227 1.35 thorpej rxstat = le32toh(sc->sc_rxdescs[i].td_status);
1228 1.1 thorpej
1229 1.1 thorpej if (rxstat & TDSTAT_OWN) {
1230 1.1 thorpej /*
1231 1.1 thorpej * We have processed all of the receive buffers.
1232 1.1 thorpej */
1233 1.1 thorpej break;
1234 1.1 thorpej }
1235 1.1 thorpej
1236 1.1 thorpej /*
1237 1.1 thorpej * Make sure the packet fit in one buffer. This should
1238 1.1 thorpej * always be the case. But the Lite-On PNIC, rev 33
1239 1.1 thorpej * has an awful receive engine bug, which may require
1240 1.1 thorpej * a very icky work-around.
1241 1.1 thorpej */
1242 1.194 msaitoh if ((rxstat & (TDSTAT_Rx_FS | TDSTAT_Rx_LS)) !=
1243 1.194 msaitoh (TDSTAT_Rx_FS | TDSTAT_Rx_LS)) {
1244 1.1 thorpej printf("%s: incoming packet spilled, resetting\n",
1245 1.167 cegger device_xname(sc->sc_dev));
1246 1.79 thorpej (void) tlp_init(ifp);
1247 1.1 thorpej return;
1248 1.1 thorpej }
1249 1.1 thorpej
1250 1.1 thorpej /*
1251 1.1 thorpej * If any collisions were seen on the wire, count one.
1252 1.1 thorpej */
1253 1.1 thorpej if (rxstat & TDSTAT_Rx_CS)
1254 1.1 thorpej ifp->if_collisions++;
1255 1.1 thorpej
1256 1.1 thorpej /*
1257 1.99 wiz * If an error occurred, update stats, clear the status
1258 1.1 thorpej * word, and leave the packet buffer in place. It will
1259 1.1 thorpej * simply be reused the next time the ring comes around.
1260 1.160 tsutsui */
1261 1.160 tsutsui errors = TDSTAT_Rx_DE | TDSTAT_Rx_RF | TDSTAT_Rx_TL |
1262 1.160 tsutsui TDSTAT_Rx_CS | TDSTAT_Rx_RE | TDSTAT_Rx_DB | TDSTAT_Rx_CE;
1263 1.160 tsutsui /*
1264 1.75 bouyer * If 802.1Q VLAN MTU is enabled, ignore the Frame Too Long
1265 1.75 bouyer * error.
1266 1.1 thorpej */
1267 1.160 tsutsui if ((sc->sc_ethercom.ec_capenable & ETHERCAP_VLAN_MTU) != 0)
1268 1.160 tsutsui errors &= ~TDSTAT_Rx_TL;
1269 1.160 tsutsui /*
1270 1.160 tsutsui * If chip doesn't have MII, ignore the MII error bit.
1271 1.160 tsutsui */
1272 1.160 tsutsui if ((sc->sc_flags & TULIPF_HAS_MII) == 0)
1273 1.160 tsutsui errors &= ~TDSTAT_Rx_RE;
1274 1.160 tsutsui
1275 1.160 tsutsui if ((rxstat & TDSTAT_ES) != 0 &&
1276 1.160 tsutsui (rxstat & errors) != 0) {
1277 1.160 tsutsui rxstat &= errors;
1278 1.1 thorpej #define PRINTERR(bit, str) \
1279 1.1 thorpej if (rxstat & (bit)) \
1280 1.188 msaitoh aprint_error_dev(sc->sc_dev, \
1281 1.188 msaitoh "receive error: %s\n", str)
1282 1.1 thorpej ifp->if_ierrors++;
1283 1.1 thorpej PRINTERR(TDSTAT_Rx_DE, "descriptor error");
1284 1.1 thorpej PRINTERR(TDSTAT_Rx_RF, "runt frame");
1285 1.1 thorpej PRINTERR(TDSTAT_Rx_TL, "frame too long");
1286 1.1 thorpej PRINTERR(TDSTAT_Rx_RE, "MII error");
1287 1.1 thorpej PRINTERR(TDSTAT_Rx_DB, "dribbling bit");
1288 1.1 thorpej PRINTERR(TDSTAT_Rx_CE, "CRC error");
1289 1.1 thorpej #undef PRINTERR
1290 1.1 thorpej TULIP_INIT_RXDESC(sc, i);
1291 1.1 thorpej continue;
1292 1.1 thorpej }
1293 1.1 thorpej
1294 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, rxs->rxs_dmamap, 0,
1295 1.1 thorpej rxs->rxs_dmamap->dm_mapsize, BUS_DMASYNC_POSTREAD);
1296 1.1 thorpej
1297 1.1 thorpej /*
1298 1.1 thorpej * No errors; receive the packet. Note the Tulip
1299 1.80 thorpej * includes the CRC with every packet.
1300 1.1 thorpej */
1301 1.131 thorpej len = TDSTAT_Rx_LENGTH(rxstat) - ETHER_CRC_LEN;
1302 1.1 thorpej
1303 1.1 thorpej #ifdef __NO_STRICT_ALIGNMENT
1304 1.1 thorpej /*
1305 1.1 thorpej * Allocate a new mbuf cluster. If that fails, we are
1306 1.1 thorpej * out of memory, and must drop the packet and recycle
1307 1.1 thorpej * the buffer that's already attached to this descriptor.
1308 1.1 thorpej */
1309 1.1 thorpej m = rxs->rxs_mbuf;
1310 1.1 thorpej if (tlp_add_rxbuf(sc, i) != 0) {
1311 1.1 thorpej ifp->if_ierrors++;
1312 1.1 thorpej TULIP_INIT_RXDESC(sc, i);
1313 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, rxs->rxs_dmamap, 0,
1314 1.1 thorpej rxs->rxs_dmamap->dm_mapsize, BUS_DMASYNC_PREREAD);
1315 1.1 thorpej continue;
1316 1.1 thorpej }
1317 1.1 thorpej #else
1318 1.1 thorpej /*
1319 1.1 thorpej * The Tulip's receive buffers must be 4-byte aligned.
1320 1.1 thorpej * But this means that the data after the Ethernet header
1321 1.1 thorpej * is misaligned. We must allocate a new buffer and
1322 1.1 thorpej * copy the data, shifted forward 2 bytes.
1323 1.1 thorpej */
1324 1.1 thorpej MGETHDR(m, M_DONTWAIT, MT_DATA);
1325 1.1 thorpej if (m == NULL) {
1326 1.1 thorpej dropit:
1327 1.1 thorpej ifp->if_ierrors++;
1328 1.1 thorpej TULIP_INIT_RXDESC(sc, i);
1329 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, rxs->rxs_dmamap, 0,
1330 1.1 thorpej rxs->rxs_dmamap->dm_mapsize, BUS_DMASYNC_PREREAD);
1331 1.1 thorpej continue;
1332 1.1 thorpej }
1333 1.122 matt MCLAIM(m, &sc->sc_ethercom.ec_rx_mowner);
1334 1.1 thorpej if (len > (MHLEN - 2)) {
1335 1.1 thorpej MCLGET(m, M_DONTWAIT);
1336 1.1 thorpej if ((m->m_flags & M_EXT) == 0) {
1337 1.1 thorpej m_freem(m);
1338 1.1 thorpej goto dropit;
1339 1.1 thorpej }
1340 1.1 thorpej }
1341 1.1 thorpej m->m_data += 2;
1342 1.1 thorpej
1343 1.1 thorpej /*
1344 1.1 thorpej * Note that we use clusters for incoming frames, so the
1345 1.1 thorpej * buffer is virtually contiguous.
1346 1.1 thorpej */
1347 1.149 christos memcpy(mtod(m, void *), mtod(rxs->rxs_mbuf, void *), len);
1348 1.1 thorpej
1349 1.1 thorpej /* Allow the receive descriptor to continue using its mbuf. */
1350 1.1 thorpej TULIP_INIT_RXDESC(sc, i);
1351 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, rxs->rxs_dmamap, 0,
1352 1.1 thorpej rxs->rxs_dmamap->dm_mapsize, BUS_DMASYNC_PREREAD);
1353 1.1 thorpej #endif /* __NO_STRICT_ALIGNMENT */
1354 1.1 thorpej
1355 1.1 thorpej eh = mtod(m, struct ether_header *);
1356 1.187 ozaki m_set_rcvif(m, ifp);
1357 1.1 thorpej m->m_pkthdr.len = m->m_len = len;
1358 1.1 thorpej
1359 1.126 thorpej /*
1360 1.126 thorpej * XXX Work-around for a weird problem with the emulated
1361 1.126 thorpej * 21041 on Connectix Virtual PC:
1362 1.126 thorpej *
1363 1.126 thorpej * When we receive a full-size TCP segment, we seem to get
1364 1.126 thorpej * a packet there the Rx status says 1522 bytes, yet we do
1365 1.126 thorpej * not get a frame-too-long error from the chip. The extra
1366 1.126 thorpej * bytes seem to always be zeros. Perhaps Virtual PC is
1367 1.126 thorpej * inserting 4 bytes of zeros after every packet. In any
1368 1.126 thorpej * case, let's try and detect this condition and truncate
1369 1.126 thorpej * the length so that it will pass up the stack.
1370 1.126 thorpej */
1371 1.126 thorpej if (__predict_false((sc->sc_flags & TULIPF_VPC) != 0)) {
1372 1.126 thorpej uint16_t etype = ntohs(eh->ether_type);
1373 1.126 thorpej
1374 1.131 thorpej if (len > ETHER_MAX_FRAME(ifp, etype, 0))
1375 1.126 thorpej m->m_pkthdr.len = m->m_len = len =
1376 1.131 thorpej ETHER_MAX_FRAME(ifp, etype, 0);
1377 1.126 thorpej }
1378 1.126 thorpej
1379 1.1 thorpej /*
1380 1.72 thorpej * We sometimes have to run the 21140 in Hash-Only
1381 1.72 thorpej * mode. If we're in that mode, and not in promiscuous
1382 1.72 thorpej * mode, and we have a unicast packet that isn't for
1383 1.72 thorpej * us, then drop it.
1384 1.72 thorpej */
1385 1.72 thorpej if (sc->sc_filtmode == TDCTL_Tx_FT_HASHONLY &&
1386 1.72 thorpej (ifp->if_flags & IFF_PROMISC) == 0 &&
1387 1.72 thorpej ETHER_IS_MULTICAST(eh->ether_dhost) == 0 &&
1388 1.151 dyoung memcmp(CLLADDR(ifp->if_sadl), eh->ether_dhost,
1389 1.72 thorpej ETHER_ADDR_LEN) != 0) {
1390 1.72 thorpej m_freem(m);
1391 1.72 thorpej continue;
1392 1.1 thorpej }
1393 1.1 thorpej
1394 1.1 thorpej /* Pass it on. */
1395 1.186 ozaki if_percpuq_enqueue(ifp->if_percpuq, m);
1396 1.1 thorpej }
1397 1.1 thorpej
1398 1.92 wiz /* Update the receive pointer. */
1399 1.1 thorpej sc->sc_rxptr = i;
1400 1.1 thorpej }
1401 1.1 thorpej
1402 1.1 thorpej /*
1403 1.1 thorpej * tlp_txintr:
1404 1.1 thorpej *
1405 1.1 thorpej * Helper; handle transmit interrupts.
1406 1.1 thorpej */
1407 1.138 thorpej static void
1408 1.138 thorpej tlp_txintr(struct tulip_softc *sc)
1409 1.1 thorpej {
1410 1.1 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
1411 1.1 thorpej struct tulip_txsoft *txs;
1412 1.165 cegger uint32_t txstat;
1413 1.1 thorpej
1414 1.5 thorpej DPRINTF(sc, ("%s: tlp_txintr: sc_flags 0x%08x\n",
1415 1.167 cegger device_xname(sc->sc_dev), sc->sc_flags));
1416 1.1 thorpej
1417 1.1 thorpej ifp->if_flags &= ~IFF_OACTIVE;
1418 1.1 thorpej
1419 1.1 thorpej /*
1420 1.1 thorpej * Go through our Tx list and free mbufs for those
1421 1.1 thorpej * frames that have been transmitted.
1422 1.1 thorpej */
1423 1.1 thorpej while ((txs = SIMPLEQ_FIRST(&sc->sc_txdirtyq)) != NULL) {
1424 1.194 msaitoh TULIP_CDTXSYNC(sc, txs->txs_lastdesc, txs->txs_ndescs,
1425 1.194 msaitoh BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1426 1.1 thorpej
1427 1.1 thorpej #ifdef TLP_DEBUG
1428 1.5 thorpej if (ifp->if_flags & IFF_DEBUG) {
1429 1.5 thorpej int i;
1430 1.178 christos struct tulip_desc *txd;
1431 1.66 thorpej printf(" txsoft %p transmit chain:\n", txs);
1432 1.5 thorpej for (i = txs->txs_firstdesc;; i = TULIP_NEXTTX(i)) {
1433 1.179 jakllsch txd = &sc->sc_txdescs[i];
1434 1.5 thorpej printf(" descriptor %d:\n", i);
1435 1.5 thorpej printf(" td_status: 0x%08x\n",
1436 1.178 christos le32toh(txd->td_status));
1437 1.5 thorpej printf(" td_ctl: 0x%08x\n",
1438 1.178 christos le32toh(txd->td_ctl));
1439 1.5 thorpej printf(" td_bufaddr1: 0x%08x\n",
1440 1.178 christos le32toh(txd->td_bufaddr1));
1441 1.5 thorpej printf(" td_bufaddr2: 0x%08x\n",
1442 1.35 thorpej le32toh(sc->sc_txdescs[i].td_bufaddr2));
1443 1.5 thorpej if (i == txs->txs_lastdesc)
1444 1.5 thorpej break;
1445 1.5 thorpej }
1446 1.5 thorpej }
1447 1.1 thorpej #endif
1448 1.1 thorpej
1449 1.35 thorpej txstat = le32toh(sc->sc_txdescs[txs->txs_lastdesc].td_status);
1450 1.1 thorpej if (txstat & TDSTAT_OWN)
1451 1.1 thorpej break;
1452 1.1 thorpej
1453 1.115 lukem SIMPLEQ_REMOVE_HEAD(&sc->sc_txdirtyq, txs_q);
1454 1.1 thorpej
1455 1.40 thorpej sc->sc_txfree += txs->txs_ndescs;
1456 1.40 thorpej
1457 1.40 thorpej if (txs->txs_mbuf == NULL) {
1458 1.40 thorpej /*
1459 1.40 thorpej * If we didn't have an mbuf, it was the setup
1460 1.40 thorpej * packet.
1461 1.40 thorpej */
1462 1.40 thorpej #ifdef DIAGNOSTIC
1463 1.40 thorpej if ((sc->sc_flags & TULIPF_DOING_SETUP) == 0)
1464 1.40 thorpej panic("tlp_txintr: null mbuf, not doing setup");
1465 1.40 thorpej #endif
1466 1.40 thorpej TULIP_CDSPSYNC(sc, BUS_DMASYNC_POSTWRITE);
1467 1.40 thorpej sc->sc_flags &= ~TULIPF_DOING_SETUP;
1468 1.40 thorpej SIMPLEQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q);
1469 1.40 thorpej continue;
1470 1.40 thorpej }
1471 1.1 thorpej
1472 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, txs->txs_dmamap,
1473 1.1 thorpej 0, txs->txs_dmamap->dm_mapsize,
1474 1.1 thorpej BUS_DMASYNC_POSTWRITE);
1475 1.1 thorpej bus_dmamap_unload(sc->sc_dmat, txs->txs_dmamap);
1476 1.1 thorpej m_freem(txs->txs_mbuf);
1477 1.1 thorpej txs->txs_mbuf = NULL;
1478 1.1 thorpej
1479 1.1 thorpej SIMPLEQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q);
1480 1.1 thorpej
1481 1.1 thorpej /*
1482 1.1 thorpej * Check for errors and collisions.
1483 1.1 thorpej */
1484 1.23 thorpej #ifdef TLP_STATS
1485 1.23 thorpej if (txstat & TDSTAT_Tx_UF)
1486 1.23 thorpej sc->sc_stats.ts_tx_uf++;
1487 1.23 thorpej if (txstat & TDSTAT_Tx_TO)
1488 1.23 thorpej sc->sc_stats.ts_tx_to++;
1489 1.23 thorpej if (txstat & TDSTAT_Tx_EC)
1490 1.23 thorpej sc->sc_stats.ts_tx_ec++;
1491 1.23 thorpej if (txstat & TDSTAT_Tx_LC)
1492 1.23 thorpej sc->sc_stats.ts_tx_lc++;
1493 1.23 thorpej #endif
1494 1.23 thorpej
1495 1.194 msaitoh if (txstat & (TDSTAT_Tx_UF | TDSTAT_Tx_TO))
1496 1.1 thorpej ifp->if_oerrors++;
1497 1.135 perry
1498 1.23 thorpej if (txstat & TDSTAT_Tx_EC)
1499 1.23 thorpej ifp->if_collisions += 16;
1500 1.23 thorpej else
1501 1.1 thorpej ifp->if_collisions += TDSTAT_Tx_COLLISIONS(txstat);
1502 1.23 thorpej if (txstat & TDSTAT_Tx_LC)
1503 1.23 thorpej ifp->if_collisions++;
1504 1.23 thorpej
1505 1.23 thorpej ifp->if_opackets++;
1506 1.1 thorpej }
1507 1.1 thorpej
1508 1.1 thorpej /*
1509 1.1 thorpej * If there are no more pending transmissions, cancel the watchdog
1510 1.1 thorpej * timer.
1511 1.1 thorpej */
1512 1.4 thorpej if (txs == NULL && (sc->sc_flags & TULIPF_DOING_SETUP) == 0)
1513 1.1 thorpej ifp->if_timer = 0;
1514 1.1 thorpej
1515 1.1 thorpej /*
1516 1.1 thorpej * If we have a receive filter setup pending, do it now.
1517 1.1 thorpej */
1518 1.1 thorpej if (sc->sc_flags & TULIPF_WANT_SETUP)
1519 1.1 thorpej (*sc->sc_filter_setup)(sc);
1520 1.1 thorpej }
1521 1.23 thorpej
1522 1.23 thorpej #ifdef TLP_STATS
1523 1.23 thorpej void
1524 1.138 thorpej tlp_print_stats(struct tulip_softc *sc)
1525 1.23 thorpej {
1526 1.23 thorpej
1527 1.23 thorpej printf("%s: tx_uf %lu, tx_to %lu, tx_ec %lu, tx_lc %lu\n",
1528 1.167 cegger device_xname(sc->sc_dev),
1529 1.23 thorpej sc->sc_stats.ts_tx_uf, sc->sc_stats.ts_tx_to,
1530 1.23 thorpej sc->sc_stats.ts_tx_ec, sc->sc_stats.ts_tx_lc);
1531 1.23 thorpej }
1532 1.23 thorpej #endif
1533 1.1 thorpej
1534 1.1 thorpej /*
1535 1.1 thorpej * tlp_reset:
1536 1.1 thorpej *
1537 1.1 thorpej * Perform a soft reset on the Tulip.
1538 1.1 thorpej */
1539 1.1 thorpej void
1540 1.138 thorpej tlp_reset(struct tulip_softc *sc)
1541 1.1 thorpej {
1542 1.1 thorpej int i;
1543 1.1 thorpej
1544 1.1 thorpej TULIP_WRITE(sc, CSR_BUSMODE, BUSMODE_SWR);
1545 1.39 thorpej
1546 1.39 thorpej /*
1547 1.143 rpaulo * Xircom, ASIX and Conexant clones don't bring themselves
1548 1.143 rpaulo * out of reset automatically.
1549 1.39 thorpej * Instead, we have to wait at least 50 PCI cycles, and then
1550 1.39 thorpej * clear SWR.
1551 1.39 thorpej */
1552 1.143 rpaulo switch (sc->sc_chip) {
1553 1.143 rpaulo case TULIP_CHIP_X3201_3:
1554 1.143 rpaulo case TULIP_CHIP_AX88140:
1555 1.143 rpaulo case TULIP_CHIP_AX88141:
1556 1.143 rpaulo case TULIP_CHIP_RS7112:
1557 1.143 rpaulo delay(10);
1558 1.143 rpaulo TULIP_WRITE(sc, CSR_BUSMODE, 0);
1559 1.143 rpaulo break;
1560 1.143 rpaulo default:
1561 1.143 rpaulo break;
1562 1.39 thorpej }
1563 1.1 thorpej
1564 1.1 thorpej for (i = 0; i < 1000; i++) {
1565 1.12 thorpej /*
1566 1.12 thorpej * Wait at least 50 PCI cycles for the reset to
1567 1.12 thorpej * complete before peeking at the Tulip again.
1568 1.12 thorpej * 10 uSec is a bit longer than 50 PCI cycles
1569 1.12 thorpej * (at 33MHz), but it doesn't hurt have the extra
1570 1.12 thorpej * wait.
1571 1.12 thorpej */
1572 1.12 thorpej delay(10);
1573 1.1 thorpej if (TULIP_ISSET(sc, CSR_BUSMODE, BUSMODE_SWR) == 0)
1574 1.1 thorpej break;
1575 1.1 thorpej }
1576 1.1 thorpej
1577 1.1 thorpej if (TULIP_ISSET(sc, CSR_BUSMODE, BUSMODE_SWR))
1578 1.167 cegger aprint_error_dev(sc->sc_dev, "reset failed to complete\n");
1579 1.1 thorpej
1580 1.1 thorpej delay(1000);
1581 1.17 thorpej
1582 1.17 thorpej /*
1583 1.17 thorpej * If the board has any GPIO reset sequences to issue, do them now.
1584 1.17 thorpej */
1585 1.17 thorpej if (sc->sc_reset != NULL)
1586 1.17 thorpej (*sc->sc_reset)(sc);
1587 1.1 thorpej }
1588 1.1 thorpej
1589 1.1 thorpej /*
1590 1.79 thorpej * tlp_init: [ ifnet interface function ]
1591 1.1 thorpej *
1592 1.1 thorpej * Initialize the interface. Must be called at splnet().
1593 1.1 thorpej */
1594 1.138 thorpej static int
1595 1.138 thorpej tlp_init(struct ifnet *ifp)
1596 1.1 thorpej {
1597 1.79 thorpej struct tulip_softc *sc = ifp->if_softc;
1598 1.1 thorpej struct tulip_txsoft *txs;
1599 1.1 thorpej struct tulip_rxsoft *rxs;
1600 1.1 thorpej int i, error = 0;
1601 1.1 thorpej
1602 1.79 thorpej if ((error = tlp_enable(sc)) != 0)
1603 1.79 thorpej goto out;
1604 1.79 thorpej
1605 1.1 thorpej /*
1606 1.1 thorpej * Cancel any pending I/O.
1607 1.1 thorpej */
1608 1.79 thorpej tlp_stop(ifp, 0);
1609 1.1 thorpej
1610 1.1 thorpej /*
1611 1.13 thorpej * Initialize `opmode' to 0, and call the pre-init routine, if
1612 1.13 thorpej * any. This is required because the 2114x and some of the
1613 1.13 thorpej * clones require that the media-related bits in `opmode' be
1614 1.13 thorpej * set before performing a soft-reset in order to get internal
1615 1.13 thorpej * chip pathways are correct. Yay!
1616 1.13 thorpej */
1617 1.13 thorpej sc->sc_opmode = 0;
1618 1.13 thorpej if (sc->sc_preinit != NULL)
1619 1.13 thorpej (*sc->sc_preinit)(sc);
1620 1.13 thorpej
1621 1.13 thorpej /*
1622 1.1 thorpej * Reset the Tulip to a known state.
1623 1.1 thorpej */
1624 1.1 thorpej tlp_reset(sc);
1625 1.1 thorpej
1626 1.1 thorpej /*
1627 1.1 thorpej * Initialize the BUSMODE register.
1628 1.1 thorpej */
1629 1.16 thorpej sc->sc_busmode = BUSMODE_BAR;
1630 1.30 thorpej switch (sc->sc_chip) {
1631 1.30 thorpej case TULIP_CHIP_21140:
1632 1.30 thorpej case TULIP_CHIP_21140A:
1633 1.30 thorpej case TULIP_CHIP_21142:
1634 1.30 thorpej case TULIP_CHIP_21143:
1635 1.31 thorpej case TULIP_CHIP_82C115:
1636 1.31 thorpej case TULIP_CHIP_MX98725:
1637 1.30 thorpej /*
1638 1.30 thorpej * If we're allowed to do so, use Memory Read Line
1639 1.30 thorpej * and Memory Read Multiple.
1640 1.30 thorpej *
1641 1.30 thorpej * XXX Should we use Memory Write and Invalidate?
1642 1.30 thorpej */
1643 1.30 thorpej if (sc->sc_flags & TULIPF_MRL)
1644 1.30 thorpej sc->sc_busmode |= BUSMODE_RLE;
1645 1.30 thorpej if (sc->sc_flags & TULIPF_MRM)
1646 1.30 thorpej sc->sc_busmode |= BUSMODE_RME;
1647 1.30 thorpej #if 0
1648 1.30 thorpej if (sc->sc_flags & TULIPF_MWI)
1649 1.30 thorpej sc->sc_busmode |= BUSMODE_WLE;
1650 1.30 thorpej #endif
1651 1.78 onoe break;
1652 1.78 onoe
1653 1.78 onoe case TULIP_CHIP_82C168:
1654 1.78 onoe case TULIP_CHIP_82C169:
1655 1.78 onoe sc->sc_busmode |= BUSMODE_PNIC_MBO;
1656 1.78 onoe if (sc->sc_maxburst == 0)
1657 1.78 onoe sc->sc_maxburst = 16;
1658 1.78 onoe break;
1659 1.145 blymn
1660 1.137 rpaulo case TULIP_CHIP_AX88140:
1661 1.137 rpaulo case TULIP_CHIP_AX88141:
1662 1.137 rpaulo if (sc->sc_maxburst == 0)
1663 1.137 rpaulo sc->sc_maxburst = 16;
1664 1.137 rpaulo break;
1665 1.30 thorpej
1666 1.30 thorpej default:
1667 1.30 thorpej /* Nothing. */
1668 1.91 cgd break;
1669 1.30 thorpej }
1670 1.1 thorpej switch (sc->sc_cacheline) {
1671 1.1 thorpej default:
1672 1.1 thorpej /*
1673 1.1 thorpej * Note: We must *always* set these bits; a cache
1674 1.1 thorpej * alignment of 0 is RESERVED.
1675 1.1 thorpej */
1676 1.1 thorpej case 8:
1677 1.1 thorpej sc->sc_busmode |= BUSMODE_CAL_8LW;
1678 1.1 thorpej break;
1679 1.1 thorpej case 16:
1680 1.1 thorpej sc->sc_busmode |= BUSMODE_CAL_16LW;
1681 1.1 thorpej break;
1682 1.1 thorpej case 32:
1683 1.1 thorpej sc->sc_busmode |= BUSMODE_CAL_32LW;
1684 1.1 thorpej break;
1685 1.1 thorpej }
1686 1.78 onoe switch (sc->sc_maxburst) {
1687 1.78 onoe case 1:
1688 1.78 onoe sc->sc_busmode |= BUSMODE_PBL_1LW;
1689 1.78 onoe break;
1690 1.78 onoe case 2:
1691 1.78 onoe sc->sc_busmode |= BUSMODE_PBL_2LW;
1692 1.78 onoe break;
1693 1.78 onoe case 4:
1694 1.78 onoe sc->sc_busmode |= BUSMODE_PBL_4LW;
1695 1.78 onoe break;
1696 1.78 onoe case 8:
1697 1.78 onoe sc->sc_busmode |= BUSMODE_PBL_8LW;
1698 1.78 onoe break;
1699 1.78 onoe case 16:
1700 1.78 onoe sc->sc_busmode |= BUSMODE_PBL_16LW;
1701 1.78 onoe break;
1702 1.78 onoe case 32:
1703 1.78 onoe sc->sc_busmode |= BUSMODE_PBL_32LW;
1704 1.1 thorpej break;
1705 1.1 thorpej default:
1706 1.16 thorpej sc->sc_busmode |= BUSMODE_PBL_DEFAULT;
1707 1.1 thorpej break;
1708 1.1 thorpej }
1709 1.1 thorpej #if BYTE_ORDER == BIG_ENDIAN
1710 1.1 thorpej /*
1711 1.35 thorpej * Can't use BUSMODE_BLE or BUSMODE_DBO; not all chips
1712 1.35 thorpej * support them, and even on ones that do, it doesn't
1713 1.78 onoe * always work. So we always access descriptors with
1714 1.78 onoe * little endian via htole32/le32toh.
1715 1.1 thorpej */
1716 1.1 thorpej #endif
1717 1.78 onoe /*
1718 1.78 onoe * Big-endian bus requires BUSMODE_BLE anyway.
1719 1.78 onoe * Also, BUSMODE_DBO is needed because we assume
1720 1.78 onoe * descriptors are little endian.
1721 1.78 onoe */
1722 1.78 onoe if (sc->sc_flags & TULIPF_BLE)
1723 1.78 onoe sc->sc_busmode |= BUSMODE_BLE;
1724 1.78 onoe if (sc->sc_flags & TULIPF_DBO)
1725 1.78 onoe sc->sc_busmode |= BUSMODE_DBO;
1726 1.68 thorpej
1727 1.68 thorpej /*
1728 1.68 thorpej * Some chips have a broken bus interface.
1729 1.68 thorpej */
1730 1.68 thorpej switch (sc->sc_chip) {
1731 1.68 thorpej case TULIP_CHIP_DM9102:
1732 1.68 thorpej case TULIP_CHIP_DM9102A:
1733 1.68 thorpej sc->sc_busmode = 0;
1734 1.68 thorpej break;
1735 1.68 thorpej
1736 1.68 thorpej default:
1737 1.68 thorpej /* Nothing. */
1738 1.91 cgd break;
1739 1.68 thorpej }
1740 1.68 thorpej
1741 1.1 thorpej TULIP_WRITE(sc, CSR_BUSMODE, sc->sc_busmode);
1742 1.1 thorpej
1743 1.1 thorpej /*
1744 1.1 thorpej * Initialize the OPMODE register. We don't write it until
1745 1.1 thorpej * we're ready to begin the transmit and receive processes.
1746 1.1 thorpej *
1747 1.1 thorpej * Media-related OPMODE bits are set in the media callbacks
1748 1.1 thorpej * for each specific chip/board.
1749 1.1 thorpej */
1750 1.13 thorpej sc->sc_opmode |= OPMODE_SR | OPMODE_ST |
1751 1.1 thorpej sc->sc_txth[sc->sc_txthresh].txth_opmode;
1752 1.1 thorpej
1753 1.1 thorpej /*
1754 1.1 thorpej * Magical mystery initialization on the Macronix chips.
1755 1.1 thorpej * The MX98713 uses its own magic value, the rest share
1756 1.1 thorpej * a common one.
1757 1.1 thorpej */
1758 1.1 thorpej switch (sc->sc_chip) {
1759 1.1 thorpej case TULIP_CHIP_MX98713:
1760 1.1 thorpej TULIP_WRITE(sc, CSR_PMAC_TOR, PMAC_TOR_98713);
1761 1.1 thorpej break;
1762 1.1 thorpej
1763 1.1 thorpej case TULIP_CHIP_MX98713A:
1764 1.1 thorpej case TULIP_CHIP_MX98715:
1765 1.25 thorpej case TULIP_CHIP_MX98715A:
1766 1.71 castor case TULIP_CHIP_MX98715AEC_X:
1767 1.1 thorpej case TULIP_CHIP_MX98725:
1768 1.1 thorpej TULIP_WRITE(sc, CSR_PMAC_TOR, PMAC_TOR_98715);
1769 1.1 thorpej break;
1770 1.1 thorpej
1771 1.1 thorpej default:
1772 1.1 thorpej /* Nothing. */
1773 1.91 cgd break;
1774 1.1 thorpej }
1775 1.1 thorpej
1776 1.1 thorpej /*
1777 1.1 thorpej * Initialize the transmit descriptor ring.
1778 1.1 thorpej */
1779 1.1 thorpej memset(sc->sc_txdescs, 0, sizeof(sc->sc_txdescs));
1780 1.1 thorpej for (i = 0; i < TULIP_NTXDESC; i++) {
1781 1.178 christos struct tulip_desc *txd = &sc->sc_txdescs[i];
1782 1.178 christos txd->td_ctl = htole32(sc->sc_tdctl_ch);
1783 1.178 christos txd->td_bufaddr2 = htole32(TULIP_CDTXADDR(sc, TULIP_NEXTTX(i)));
1784 1.1 thorpej }
1785 1.41 thorpej sc->sc_txdescs[TULIP_NTXDESC - 1].td_ctl |= htole32(sc->sc_tdctl_er);
1786 1.1 thorpej TULIP_CDTXSYNC(sc, 0, TULIP_NTXDESC,
1787 1.194 msaitoh BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1788 1.1 thorpej sc->sc_txfree = TULIP_NTXDESC;
1789 1.1 thorpej sc->sc_txnext = 0;
1790 1.1 thorpej
1791 1.1 thorpej /*
1792 1.1 thorpej * Initialize the transmit job descriptors.
1793 1.1 thorpej */
1794 1.1 thorpej SIMPLEQ_INIT(&sc->sc_txfreeq);
1795 1.1 thorpej SIMPLEQ_INIT(&sc->sc_txdirtyq);
1796 1.1 thorpej for (i = 0; i < TULIP_TXQUEUELEN; i++) {
1797 1.1 thorpej txs = &sc->sc_txsoft[i];
1798 1.1 thorpej txs->txs_mbuf = NULL;
1799 1.1 thorpej SIMPLEQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q);
1800 1.1 thorpej }
1801 1.1 thorpej
1802 1.1 thorpej /*
1803 1.1 thorpej * Initialize the receive descriptor and receive job
1804 1.1 thorpej * descriptor rings.
1805 1.1 thorpej */
1806 1.1 thorpej for (i = 0; i < TULIP_NRXDESC; i++) {
1807 1.1 thorpej rxs = &sc->sc_rxsoft[i];
1808 1.1 thorpej if (rxs->rxs_mbuf == NULL) {
1809 1.1 thorpej if ((error = tlp_add_rxbuf(sc, i)) != 0) {
1810 1.188 msaitoh aprint_error_dev(sc->sc_dev,
1811 1.188 msaitoh "unable to allocate or map rx "
1812 1.188 msaitoh "buffer %d, error = %d\n", i, error);
1813 1.1 thorpej /*
1814 1.1 thorpej * XXX Should attempt to run with fewer receive
1815 1.1 thorpej * XXX buffers instead of just failing.
1816 1.1 thorpej */
1817 1.1 thorpej tlp_rxdrain(sc);
1818 1.1 thorpej goto out;
1819 1.1 thorpej }
1820 1.96 thorpej } else
1821 1.96 thorpej TULIP_INIT_RXDESC(sc, i);
1822 1.1 thorpej }
1823 1.1 thorpej sc->sc_rxptr = 0;
1824 1.1 thorpej
1825 1.1 thorpej /*
1826 1.1 thorpej * Initialize the interrupt mask and enable interrupts.
1827 1.1 thorpej */
1828 1.1 thorpej /* normal interrupts */
1829 1.195 msaitoh sc->sc_inten = STATUS_TI | STATUS_TU | STATUS_RI | STATUS_NIS;
1830 1.5 thorpej
1831 1.1 thorpej /* abnormal interrupts */
1832 1.1 thorpej sc->sc_inten |= STATUS_TPS | STATUS_TJT | STATUS_UNF |
1833 1.1 thorpej STATUS_RU | STATUS_RPS | STATUS_RWT | STATUS_SE | STATUS_AIS;
1834 1.1 thorpej
1835 1.194 msaitoh sc->sc_rxint_mask = STATUS_RI | STATUS_RU | STATUS_RWT;
1836 1.194 msaitoh sc->sc_txint_mask = STATUS_TI | STATUS_UNF | STATUS_TJT;
1837 1.5 thorpej
1838 1.5 thorpej switch (sc->sc_chip) {
1839 1.5 thorpej case TULIP_CHIP_WB89C840F:
1840 1.5 thorpej /*
1841 1.5 thorpej * Clear bits that we don't want that happen to
1842 1.5 thorpej * overlap or don't exist.
1843 1.5 thorpej */
1844 1.194 msaitoh sc->sc_inten &= ~(STATUS_WINB_REI | STATUS_RWT);
1845 1.5 thorpej break;
1846 1.5 thorpej
1847 1.5 thorpej default:
1848 1.5 thorpej /* Nothing. */
1849 1.91 cgd break;
1850 1.5 thorpej }
1851 1.5 thorpej
1852 1.5 thorpej sc->sc_rxint_mask &= sc->sc_inten;
1853 1.5 thorpej sc->sc_txint_mask &= sc->sc_inten;
1854 1.5 thorpej
1855 1.1 thorpej TULIP_WRITE(sc, CSR_INTEN, sc->sc_inten);
1856 1.1 thorpej TULIP_WRITE(sc, CSR_STATUS, 0xffffffff);
1857 1.1 thorpej
1858 1.1 thorpej /*
1859 1.1 thorpej * Give the transmit and receive rings to the Tulip.
1860 1.1 thorpej */
1861 1.1 thorpej TULIP_WRITE(sc, CSR_TXLIST, TULIP_CDTXADDR(sc, sc->sc_txnext));
1862 1.1 thorpej TULIP_WRITE(sc, CSR_RXLIST, TULIP_CDRXADDR(sc, sc->sc_rxptr));
1863 1.1 thorpej
1864 1.1 thorpej /*
1865 1.1 thorpej * On chips that do this differently, set the station address.
1866 1.1 thorpej */
1867 1.1 thorpej switch (sc->sc_chip) {
1868 1.1 thorpej case TULIP_CHIP_WB89C840F:
1869 1.8 thorpej {
1870 1.1 thorpej /* XXX Do this with stream writes? */
1871 1.8 thorpej bus_addr_t cpa = TULIP_CSR_OFFSET(sc, CSR_WINB_CPA0);
1872 1.8 thorpej
1873 1.1 thorpej for (i = 0; i < ETHER_ADDR_LEN; i++) {
1874 1.1 thorpej bus_space_write_1(sc->sc_st, sc->sc_sh,
1875 1.151 dyoung cpa + i, CLLADDR(ifp->if_sadl)[i]);
1876 1.1 thorpej }
1877 1.1 thorpej break;
1878 1.8 thorpej }
1879 1.1 thorpej
1880 1.21 thorpej case TULIP_CHIP_AL981:
1881 1.73 thorpej case TULIP_CHIP_AN983:
1882 1.73 thorpej case TULIP_CHIP_AN985:
1883 1.21 thorpej {
1884 1.165 cegger uint32_t reg;
1885 1.165 cegger const uint8_t *enaddr = CLLADDR(ifp->if_sadl);
1886 1.21 thorpej
1887 1.21 thorpej reg = enaddr[0] |
1888 1.21 thorpej (enaddr[1] << 8) |
1889 1.21 thorpej (enaddr[2] << 16) |
1890 1.21 thorpej (enaddr[3] << 24);
1891 1.21 thorpej bus_space_write_4(sc->sc_st, sc->sc_sh, CSR_ADM_PAR0, reg);
1892 1.21 thorpej
1893 1.21 thorpej reg = enaddr[4] |
1894 1.21 thorpej (enaddr[5] << 8);
1895 1.21 thorpej bus_space_write_4(sc->sc_st, sc->sc_sh, CSR_ADM_PAR1, reg);
1896 1.137 rpaulo break;
1897 1.137 rpaulo }
1898 1.137 rpaulo
1899 1.137 rpaulo case TULIP_CHIP_AX88140:
1900 1.137 rpaulo case TULIP_CHIP_AX88141:
1901 1.137 rpaulo {
1902 1.165 cegger uint32_t reg;
1903 1.165 cegger const uint8_t *enaddr = CLLADDR(ifp->if_sadl);
1904 1.145 blymn
1905 1.137 rpaulo reg = enaddr[0] |
1906 1.137 rpaulo (enaddr[1] << 8) |
1907 1.137 rpaulo (enaddr[2] << 16) |
1908 1.137 rpaulo (enaddr[3] << 24);
1909 1.137 rpaulo TULIP_WRITE(sc, CSR_AX_FILTIDX, AX_FILTIDX_PAR0);
1910 1.137 rpaulo TULIP_WRITE(sc, CSR_AX_FILTDATA, reg);
1911 1.137 rpaulo
1912 1.137 rpaulo reg = enaddr[4] | (enaddr[5] << 8);
1913 1.137 rpaulo TULIP_WRITE(sc, CSR_AX_FILTIDX, AX_FILTIDX_PAR1);
1914 1.137 rpaulo TULIP_WRITE(sc, CSR_AX_FILTDATA, reg);
1915 1.137 rpaulo break;
1916 1.21 thorpej }
1917 1.21 thorpej
1918 1.1 thorpej default:
1919 1.1 thorpej /* Nothing. */
1920 1.91 cgd break;
1921 1.1 thorpej }
1922 1.1 thorpej
1923 1.1 thorpej /*
1924 1.1 thorpej * Set the receive filter. This will start the transmit and
1925 1.1 thorpej * receive processes.
1926 1.1 thorpej */
1927 1.1 thorpej (*sc->sc_filter_setup)(sc);
1928 1.1 thorpej
1929 1.1 thorpej /*
1930 1.16 thorpej * Set the current media.
1931 1.16 thorpej */
1932 1.194 msaitoh (void)(*sc->sc_mediasw->tmsw_set)(sc);
1933 1.16 thorpej
1934 1.16 thorpej /*
1935 1.1 thorpej * Start the receive process.
1936 1.1 thorpej */
1937 1.1 thorpej TULIP_WRITE(sc, CSR_RXPOLL, RXPOLL_RPD);
1938 1.1 thorpej
1939 1.6 thorpej if (sc->sc_tick != NULL) {
1940 1.1 thorpej /* Start the one second clock. */
1941 1.108 chs callout_reset(&sc->sc_tick_callout, hz >> 3, sc->sc_tick, sc);
1942 1.1 thorpej }
1943 1.1 thorpej
1944 1.1 thorpej /*
1945 1.1 thorpej * Note that the interface is now running.
1946 1.1 thorpej */
1947 1.1 thorpej ifp->if_flags |= IFF_RUNNING;
1948 1.1 thorpej ifp->if_flags &= ~IFF_OACTIVE;
1949 1.133 kim sc->sc_if_flags = ifp->if_flags;
1950 1.1 thorpej
1951 1.1 thorpej out:
1952 1.79 thorpej if (error) {
1953 1.79 thorpej ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
1954 1.79 thorpej ifp->if_timer = 0;
1955 1.167 cegger printf("%s: interface not running\n", device_xname(sc->sc_dev));
1956 1.79 thorpej }
1957 1.194 msaitoh return error;
1958 1.1 thorpej }
1959 1.1 thorpej
1960 1.1 thorpej /*
1961 1.53 thorpej * tlp_enable:
1962 1.53 thorpej *
1963 1.53 thorpej * Enable the Tulip chip.
1964 1.53 thorpej */
1965 1.138 thorpej static int
1966 1.138 thorpej tlp_enable(struct tulip_softc *sc)
1967 1.53 thorpej {
1968 1.53 thorpej
1969 1.53 thorpej if (TULIP_IS_ENABLED(sc) == 0 && sc->sc_enable != NULL) {
1970 1.53 thorpej if ((*sc->sc_enable)(sc) != 0) {
1971 1.167 cegger aprint_error_dev(sc->sc_dev, "device enable failed\n");
1972 1.194 msaitoh return EIO;
1973 1.53 thorpej }
1974 1.53 thorpej sc->sc_flags |= TULIPF_ENABLED;
1975 1.53 thorpej }
1976 1.194 msaitoh return 0;
1977 1.53 thorpej }
1978 1.53 thorpej
1979 1.53 thorpej /*
1980 1.53 thorpej * tlp_disable:
1981 1.53 thorpej *
1982 1.53 thorpej * Disable the Tulip chip.
1983 1.53 thorpej */
1984 1.138 thorpej static void
1985 1.138 thorpej tlp_disable(struct tulip_softc *sc)
1986 1.53 thorpej {
1987 1.53 thorpej
1988 1.53 thorpej if (TULIP_IS_ENABLED(sc) && sc->sc_disable != NULL) {
1989 1.53 thorpej (*sc->sc_disable)(sc);
1990 1.53 thorpej sc->sc_flags &= ~TULIPF_ENABLED;
1991 1.53 thorpej }
1992 1.54 thorpej }
1993 1.54 thorpej
1994 1.54 thorpej /*
1995 1.1 thorpej * tlp_rxdrain:
1996 1.1 thorpej *
1997 1.1 thorpej * Drain the receive queue.
1998 1.1 thorpej */
1999 1.138 thorpej static void
2000 1.138 thorpej tlp_rxdrain(struct tulip_softc *sc)
2001 1.1 thorpej {
2002 1.1 thorpej struct tulip_rxsoft *rxs;
2003 1.1 thorpej int i;
2004 1.1 thorpej
2005 1.1 thorpej for (i = 0; i < TULIP_NRXDESC; i++) {
2006 1.1 thorpej rxs = &sc->sc_rxsoft[i];
2007 1.1 thorpej if (rxs->rxs_mbuf != NULL) {
2008 1.1 thorpej bus_dmamap_unload(sc->sc_dmat, rxs->rxs_dmamap);
2009 1.1 thorpej m_freem(rxs->rxs_mbuf);
2010 1.1 thorpej rxs->rxs_mbuf = NULL;
2011 1.1 thorpej }
2012 1.1 thorpej }
2013 1.1 thorpej }
2014 1.1 thorpej
2015 1.1 thorpej /*
2016 1.79 thorpej * tlp_stop: [ ifnet interface function ]
2017 1.1 thorpej *
2018 1.1 thorpej * Stop transmission on the interface.
2019 1.1 thorpej */
2020 1.138 thorpej static void
2021 1.138 thorpej tlp_stop(struct ifnet *ifp, int disable)
2022 1.1 thorpej {
2023 1.79 thorpej struct tulip_softc *sc = ifp->if_softc;
2024 1.1 thorpej struct tulip_txsoft *txs;
2025 1.1 thorpej
2026 1.6 thorpej if (sc->sc_tick != NULL) {
2027 1.1 thorpej /* Stop the one second clock. */
2028 1.56 thorpej callout_stop(&sc->sc_tick_callout);
2029 1.32 thorpej }
2030 1.32 thorpej
2031 1.32 thorpej if (sc->sc_flags & TULIPF_HAS_MII) {
2032 1.32 thorpej /* Down the MII. */
2033 1.32 thorpej mii_down(&sc->sc_mii);
2034 1.1 thorpej }
2035 1.1 thorpej
2036 1.1 thorpej /* Disable interrupts. */
2037 1.1 thorpej TULIP_WRITE(sc, CSR_INTEN, 0);
2038 1.1 thorpej
2039 1.1 thorpej /* Stop the transmit and receive processes. */
2040 1.71 castor sc->sc_opmode = 0;
2041 1.1 thorpej TULIP_WRITE(sc, CSR_OPMODE, 0);
2042 1.1 thorpej TULIP_WRITE(sc, CSR_RXLIST, 0);
2043 1.1 thorpej TULIP_WRITE(sc, CSR_TXLIST, 0);
2044 1.1 thorpej
2045 1.1 thorpej /*
2046 1.1 thorpej * Release any queued transmit buffers.
2047 1.1 thorpej */
2048 1.1 thorpej while ((txs = SIMPLEQ_FIRST(&sc->sc_txdirtyq)) != NULL) {
2049 1.115 lukem SIMPLEQ_REMOVE_HEAD(&sc->sc_txdirtyq, txs_q);
2050 1.1 thorpej if (txs->txs_mbuf != NULL) {
2051 1.1 thorpej bus_dmamap_unload(sc->sc_dmat, txs->txs_dmamap);
2052 1.1 thorpej m_freem(txs->txs_mbuf);
2053 1.1 thorpej txs->txs_mbuf = NULL;
2054 1.1 thorpej }
2055 1.1 thorpej SIMPLEQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q);
2056 1.1 thorpej }
2057 1.1 thorpej
2058 1.194 msaitoh sc->sc_flags &= ~(TULIPF_WANT_SETUP | TULIPF_DOING_SETUP);
2059 1.1 thorpej
2060 1.1 thorpej /*
2061 1.1 thorpej * Mark the interface down and cancel the watchdog timer.
2062 1.1 thorpej */
2063 1.1 thorpej ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
2064 1.133 kim sc->sc_if_flags = ifp->if_flags;
2065 1.1 thorpej ifp->if_timer = 0;
2066 1.108 chs
2067 1.108 chs /*
2068 1.108 chs * Reset the chip (needed on some flavors to actually disable it).
2069 1.108 chs */
2070 1.108 chs tlp_reset(sc);
2071 1.159 dyoung
2072 1.159 dyoung if (disable) {
2073 1.159 dyoung tlp_rxdrain(sc);
2074 1.159 dyoung tlp_disable(sc);
2075 1.159 dyoung }
2076 1.1 thorpej }
2077 1.1 thorpej
2078 1.1 thorpej #define SROM_EMIT(sc, x) \
2079 1.1 thorpej do { \
2080 1.1 thorpej TULIP_WRITE((sc), CSR_MIIROM, (x)); \
2081 1.47 mycroft delay(2); \
2082 1.1 thorpej } while (0)
2083 1.1 thorpej
2084 1.1 thorpej /*
2085 1.1 thorpej * tlp_srom_idle:
2086 1.1 thorpej *
2087 1.1 thorpej * Put the SROM in idle state.
2088 1.1 thorpej */
2089 1.138 thorpej static void
2090 1.138 thorpej tlp_srom_idle(struct tulip_softc *sc)
2091 1.1 thorpej {
2092 1.165 cegger uint32_t miirom;
2093 1.1 thorpej int i;
2094 1.1 thorpej
2095 1.1 thorpej miirom = MIIROM_SR;
2096 1.1 thorpej SROM_EMIT(sc, miirom);
2097 1.1 thorpej
2098 1.1 thorpej miirom |= MIIROM_RD;
2099 1.1 thorpej SROM_EMIT(sc, miirom);
2100 1.1 thorpej
2101 1.1 thorpej miirom |= MIIROM_SROMCS;
2102 1.1 thorpej SROM_EMIT(sc, miirom);
2103 1.1 thorpej
2104 1.194 msaitoh SROM_EMIT(sc, miirom | MIIROM_SROMSK);
2105 1.1 thorpej
2106 1.47 mycroft /* Strobe the clock 32 times. */
2107 1.47 mycroft for (i = 0; i < 32; i++) {
2108 1.1 thorpej SROM_EMIT(sc, miirom);
2109 1.194 msaitoh SROM_EMIT(sc, miirom | MIIROM_SROMSK);
2110 1.1 thorpej }
2111 1.1 thorpej
2112 1.1 thorpej SROM_EMIT(sc, miirom);
2113 1.1 thorpej
2114 1.1 thorpej miirom &= ~MIIROM_SROMCS;
2115 1.1 thorpej SROM_EMIT(sc, miirom);
2116 1.1 thorpej
2117 1.1 thorpej SROM_EMIT(sc, 0);
2118 1.1 thorpej }
2119 1.1 thorpej
2120 1.1 thorpej /*
2121 1.47 mycroft * tlp_srom_size:
2122 1.47 mycroft *
2123 1.47 mycroft * Determine the number of address bits in the SROM.
2124 1.47 mycroft */
2125 1.138 thorpej static int
2126 1.138 thorpej tlp_srom_size(struct tulip_softc *sc)
2127 1.47 mycroft {
2128 1.165 cegger uint32_t miirom;
2129 1.47 mycroft int x;
2130 1.47 mycroft
2131 1.47 mycroft /* Select the SROM. */
2132 1.47 mycroft miirom = MIIROM_SR;
2133 1.47 mycroft SROM_EMIT(sc, miirom);
2134 1.47 mycroft
2135 1.47 mycroft miirom |= MIIROM_RD;
2136 1.47 mycroft SROM_EMIT(sc, miirom);
2137 1.47 mycroft
2138 1.47 mycroft /* Send CHIP SELECT for one clock tick. */
2139 1.47 mycroft miirom |= MIIROM_SROMCS;
2140 1.47 mycroft SROM_EMIT(sc, miirom);
2141 1.47 mycroft
2142 1.47 mycroft /* Shift in the READ opcode. */
2143 1.47 mycroft for (x = 3; x > 0; x--) {
2144 1.47 mycroft if (TULIP_SROM_OPC_READ & (1 << (x - 1)))
2145 1.47 mycroft miirom |= MIIROM_SROMDI;
2146 1.47 mycroft else
2147 1.47 mycroft miirom &= ~MIIROM_SROMDI;
2148 1.47 mycroft SROM_EMIT(sc, miirom);
2149 1.194 msaitoh SROM_EMIT(sc, miirom | MIIROM_SROMSK);
2150 1.47 mycroft SROM_EMIT(sc, miirom);
2151 1.47 mycroft }
2152 1.47 mycroft
2153 1.47 mycroft /* Shift in address and look for dummy 0 bit. */
2154 1.47 mycroft for (x = 1; x <= 12; x++) {
2155 1.47 mycroft miirom &= ~MIIROM_SROMDI;
2156 1.47 mycroft SROM_EMIT(sc, miirom);
2157 1.194 msaitoh SROM_EMIT(sc, miirom | MIIROM_SROMSK);
2158 1.47 mycroft if (!TULIP_ISSET(sc, CSR_MIIROM, MIIROM_SROMDO))
2159 1.47 mycroft break;
2160 1.47 mycroft SROM_EMIT(sc, miirom);
2161 1.47 mycroft }
2162 1.47 mycroft
2163 1.47 mycroft /* Clear CHIP SELECT. */
2164 1.47 mycroft miirom &= ~MIIROM_SROMCS;
2165 1.47 mycroft SROM_EMIT(sc, miirom);
2166 1.47 mycroft
2167 1.47 mycroft /* Deselect the SROM. */
2168 1.47 mycroft SROM_EMIT(sc, 0);
2169 1.47 mycroft
2170 1.59 mycroft if (x < 4 || x > 12) {
2171 1.188 msaitoh aprint_debug_dev(sc->sc_dev, "broken MicroWire interface "
2172 1.188 msaitoh "detected; setting SROM size to 1Kb\n");
2173 1.194 msaitoh return 6;
2174 1.47 mycroft } else {
2175 1.61 thorpej if (tlp_srom_debug)
2176 1.61 thorpej printf("%s: SROM size is 2^%d*16 bits (%d bytes)\n",
2177 1.167 cegger device_xname(sc->sc_dev), x, (1 << (x + 4)) >> 3);
2178 1.194 msaitoh return x;
2179 1.47 mycroft }
2180 1.47 mycroft }
2181 1.47 mycroft
2182 1.47 mycroft /*
2183 1.1 thorpej * tlp_read_srom:
2184 1.1 thorpej *
2185 1.1 thorpej * Read the Tulip SROM.
2186 1.1 thorpej */
2187 1.47 mycroft int
2188 1.138 thorpej tlp_read_srom(struct tulip_softc *sc)
2189 1.1 thorpej {
2190 1.47 mycroft int size;
2191 1.165 cegger uint32_t miirom;
2192 1.165 cegger uint16_t datain;
2193 1.1 thorpej int i, x;
2194 1.1 thorpej
2195 1.1 thorpej tlp_srom_idle(sc);
2196 1.1 thorpej
2197 1.47 mycroft sc->sc_srom_addrbits = tlp_srom_size(sc);
2198 1.47 mycroft if (sc->sc_srom_addrbits == 0)
2199 1.194 msaitoh return 0;
2200 1.47 mycroft size = TULIP_ROM_SIZE(sc->sc_srom_addrbits);
2201 1.47 mycroft sc->sc_srom = malloc(size, M_DEVBUF, M_NOWAIT);
2202 1.47 mycroft
2203 1.1 thorpej /* Select the SROM. */
2204 1.1 thorpej miirom = MIIROM_SR;
2205 1.1 thorpej SROM_EMIT(sc, miirom);
2206 1.1 thorpej
2207 1.1 thorpej miirom |= MIIROM_RD;
2208 1.1 thorpej SROM_EMIT(sc, miirom);
2209 1.1 thorpej
2210 1.47 mycroft for (i = 0; i < size; i += 2) {
2211 1.1 thorpej /* Send CHIP SELECT for one clock tick. */
2212 1.1 thorpej miirom |= MIIROM_SROMCS;
2213 1.1 thorpej SROM_EMIT(sc, miirom);
2214 1.1 thorpej
2215 1.1 thorpej /* Shift in the READ opcode. */
2216 1.1 thorpej for (x = 3; x > 0; x--) {
2217 1.1 thorpej if (TULIP_SROM_OPC_READ & (1 << (x - 1)))
2218 1.1 thorpej miirom |= MIIROM_SROMDI;
2219 1.1 thorpej else
2220 1.1 thorpej miirom &= ~MIIROM_SROMDI;
2221 1.1 thorpej SROM_EMIT(sc, miirom);
2222 1.194 msaitoh SROM_EMIT(sc, miirom | MIIROM_SROMSK);
2223 1.1 thorpej SROM_EMIT(sc, miirom);
2224 1.1 thorpej }
2225 1.1 thorpej
2226 1.1 thorpej /* Shift in address. */
2227 1.33 thorpej for (x = sc->sc_srom_addrbits; x > 0; x--) {
2228 1.47 mycroft if (i & (1 << x))
2229 1.1 thorpej miirom |= MIIROM_SROMDI;
2230 1.1 thorpej else
2231 1.1 thorpej miirom &= ~MIIROM_SROMDI;
2232 1.1 thorpej SROM_EMIT(sc, miirom);
2233 1.194 msaitoh SROM_EMIT(sc, miirom | MIIROM_SROMSK);
2234 1.1 thorpej SROM_EMIT(sc, miirom);
2235 1.1 thorpej }
2236 1.1 thorpej
2237 1.1 thorpej /* Shift out data. */
2238 1.1 thorpej miirom &= ~MIIROM_SROMDI;
2239 1.18 thorpej datain = 0;
2240 1.1 thorpej for (x = 16; x > 0; x--) {
2241 1.194 msaitoh SROM_EMIT(sc, miirom | MIIROM_SROMSK);
2242 1.1 thorpej if (TULIP_ISSET(sc, CSR_MIIROM, MIIROM_SROMDO))
2243 1.18 thorpej datain |= (1 << (x - 1));
2244 1.1 thorpej SROM_EMIT(sc, miirom);
2245 1.1 thorpej }
2246 1.47 mycroft sc->sc_srom[i] = datain & 0xff;
2247 1.47 mycroft sc->sc_srom[i + 1] = datain >> 8;
2248 1.1 thorpej
2249 1.1 thorpej /* Clear CHIP SELECT. */
2250 1.1 thorpej miirom &= ~MIIROM_SROMCS;
2251 1.1 thorpej SROM_EMIT(sc, miirom);
2252 1.1 thorpej }
2253 1.1 thorpej
2254 1.1 thorpej /* Deselect the SROM. */
2255 1.1 thorpej SROM_EMIT(sc, 0);
2256 1.1 thorpej
2257 1.1 thorpej /* ...and idle it. */
2258 1.1 thorpej tlp_srom_idle(sc);
2259 1.47 mycroft
2260 1.61 thorpej if (tlp_srom_debug) {
2261 1.61 thorpej printf("SROM CONTENTS:");
2262 1.61 thorpej for (i = 0; i < size; i++) {
2263 1.61 thorpej if ((i % 8) == 0)
2264 1.61 thorpej printf("\n\t");
2265 1.61 thorpej printf("0x%02x ", sc->sc_srom[i]);
2266 1.61 thorpej }
2267 1.61 thorpej printf("\n");
2268 1.47 mycroft }
2269 1.47 mycroft
2270 1.194 msaitoh return 1;
2271 1.1 thorpej }
2272 1.1 thorpej
2273 1.1 thorpej #undef SROM_EMIT
2274 1.1 thorpej
2275 1.1 thorpej /*
2276 1.1 thorpej * tlp_add_rxbuf:
2277 1.1 thorpej *
2278 1.1 thorpej * Add a receive buffer to the indicated descriptor.
2279 1.1 thorpej */
2280 1.138 thorpej static int
2281 1.138 thorpej tlp_add_rxbuf(struct tulip_softc *sc, int idx)
2282 1.1 thorpej {
2283 1.1 thorpej struct tulip_rxsoft *rxs = &sc->sc_rxsoft[idx];
2284 1.1 thorpej struct mbuf *m;
2285 1.1 thorpej int error;
2286 1.1 thorpej
2287 1.1 thorpej MGETHDR(m, M_DONTWAIT, MT_DATA);
2288 1.1 thorpej if (m == NULL)
2289 1.194 msaitoh return ENOBUFS;
2290 1.1 thorpej
2291 1.122 matt MCLAIM(m, &sc->sc_ethercom.ec_rx_mowner);
2292 1.1 thorpej MCLGET(m, M_DONTWAIT);
2293 1.1 thorpej if ((m->m_flags & M_EXT) == 0) {
2294 1.1 thorpej m_freem(m);
2295 1.194 msaitoh return ENOBUFS;
2296 1.1 thorpej }
2297 1.1 thorpej
2298 1.1 thorpej if (rxs->rxs_mbuf != NULL)
2299 1.1 thorpej bus_dmamap_unload(sc->sc_dmat, rxs->rxs_dmamap);
2300 1.1 thorpej
2301 1.1 thorpej rxs->rxs_mbuf = m;
2302 1.1 thorpej
2303 1.1 thorpej error = bus_dmamap_load(sc->sc_dmat, rxs->rxs_dmamap,
2304 1.95 thorpej m->m_ext.ext_buf, m->m_ext.ext_size, NULL,
2305 1.194 msaitoh BUS_DMA_READ | BUS_DMA_NOWAIT);
2306 1.1 thorpej if (error) {
2307 1.188 msaitoh aprint_error_dev(sc->sc_dev,
2308 1.188 msaitoh "can't load rx DMA map %d, error = %d\n", idx, error);
2309 1.1 thorpej panic("tlp_add_rxbuf"); /* XXX */
2310 1.1 thorpej }
2311 1.1 thorpej
2312 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, rxs->rxs_dmamap, 0,
2313 1.1 thorpej rxs->rxs_dmamap->dm_mapsize, BUS_DMASYNC_PREREAD);
2314 1.1 thorpej
2315 1.1 thorpej TULIP_INIT_RXDESC(sc, idx);
2316 1.1 thorpej
2317 1.194 msaitoh return 0;
2318 1.1 thorpej }
2319 1.1 thorpej
2320 1.1 thorpej /*
2321 1.1 thorpej * tlp_srom_crcok:
2322 1.1 thorpej *
2323 1.1 thorpej * Check the CRC of the Tulip SROM.
2324 1.1 thorpej */
2325 1.1 thorpej int
2326 1.165 cegger tlp_srom_crcok(const uint8_t *romdata)
2327 1.1 thorpej {
2328 1.165 cegger uint32_t crc;
2329 1.1 thorpej
2330 1.62 thorpej crc = ether_crc32_le(romdata, TULIP_ROM_CRC32_CHECKSUM);
2331 1.7 thorpej crc = (crc & 0xffff) ^ 0xffff;
2332 1.7 thorpej if (crc == TULIP_ROM_GETW(romdata, TULIP_ROM_CRC32_CHECKSUM))
2333 1.194 msaitoh return 1;
2334 1.34 thorpej
2335 1.34 thorpej /*
2336 1.34 thorpej * Try an alternate checksum.
2337 1.34 thorpej */
2338 1.62 thorpej crc = ether_crc32_le(romdata, TULIP_ROM_CRC32_CHECKSUM1);
2339 1.34 thorpej crc = (crc & 0xffff) ^ 0xffff;
2340 1.34 thorpej if (crc == TULIP_ROM_GETW(romdata, TULIP_ROM_CRC32_CHECKSUM1))
2341 1.194 msaitoh return 1;
2342 1.34 thorpej
2343 1.194 msaitoh return 0;
2344 1.1 thorpej }
2345 1.1 thorpej
2346 1.1 thorpej /*
2347 1.13 thorpej * tlp_isv_srom:
2348 1.13 thorpej *
2349 1.13 thorpej * Check to see if the SROM is in the new standardized format.
2350 1.13 thorpej */
2351 1.13 thorpej int
2352 1.165 cegger tlp_isv_srom(const uint8_t *romdata)
2353 1.13 thorpej {
2354 1.13 thorpej int i;
2355 1.165 cegger uint16_t cksum;
2356 1.13 thorpej
2357 1.13 thorpej if (tlp_srom_crcok(romdata)) {
2358 1.13 thorpej /*
2359 1.13 thorpej * SROM CRC checks out; must be in the new format.
2360 1.13 thorpej */
2361 1.194 msaitoh return 1;
2362 1.13 thorpej }
2363 1.13 thorpej
2364 1.13 thorpej cksum = TULIP_ROM_GETW(romdata, TULIP_ROM_CRC32_CHECKSUM);
2365 1.13 thorpej if (cksum == 0xffff || cksum == 0) {
2366 1.13 thorpej /*
2367 1.13 thorpej * No checksum present. Check the SROM ID; 18 bytes of 0
2368 1.13 thorpej * followed by 1 (version) followed by the number of
2369 1.13 thorpej * adapters which use this SROM (should be non-zero).
2370 1.13 thorpej */
2371 1.13 thorpej for (i = 0; i < TULIP_ROM_SROM_FORMAT_VERION; i++) {
2372 1.13 thorpej if (romdata[i] != 0)
2373 1.194 msaitoh return 0;
2374 1.13 thorpej }
2375 1.13 thorpej if (romdata[TULIP_ROM_SROM_FORMAT_VERION] != 1)
2376 1.194 msaitoh return 0;
2377 1.13 thorpej if (romdata[TULIP_ROM_CHIP_COUNT] == 0)
2378 1.194 msaitoh return 0;
2379 1.194 msaitoh return 1;
2380 1.13 thorpej }
2381 1.13 thorpej
2382 1.194 msaitoh return 0;
2383 1.13 thorpej }
2384 1.13 thorpej
2385 1.13 thorpej /*
2386 1.13 thorpej * tlp_isv_srom_enaddr:
2387 1.13 thorpej *
2388 1.13 thorpej * Get the Ethernet address from an ISV SROM.
2389 1.13 thorpej */
2390 1.13 thorpej int
2391 1.165 cegger tlp_isv_srom_enaddr(struct tulip_softc *sc, uint8_t *enaddr)
2392 1.13 thorpej {
2393 1.13 thorpej int i, devcnt;
2394 1.13 thorpej
2395 1.13 thorpej if (tlp_isv_srom(sc->sc_srom) == 0)
2396 1.194 msaitoh return 0;
2397 1.13 thorpej
2398 1.13 thorpej devcnt = sc->sc_srom[TULIP_ROM_CHIP_COUNT];
2399 1.13 thorpej for (i = 0; i < devcnt; i++) {
2400 1.13 thorpej if (sc->sc_srom[TULIP_ROM_CHIP_COUNT] == 1)
2401 1.13 thorpej break;
2402 1.13 thorpej if (sc->sc_srom[TULIP_ROM_CHIPn_DEVICE_NUMBER(i)] ==
2403 1.13 thorpej sc->sc_devno)
2404 1.13 thorpej break;
2405 1.13 thorpej }
2406 1.13 thorpej
2407 1.13 thorpej if (i == devcnt)
2408 1.194 msaitoh return 0;
2409 1.13 thorpej
2410 1.13 thorpej memcpy(enaddr, &sc->sc_srom[TULIP_ROM_IEEE_NETWORK_ADDRESS],
2411 1.13 thorpej ETHER_ADDR_LEN);
2412 1.13 thorpej enaddr[5] += i;
2413 1.13 thorpej
2414 1.194 msaitoh return 1;
2415 1.13 thorpej }
2416 1.13 thorpej
2417 1.13 thorpej /*
2418 1.7 thorpej * tlp_parse_old_srom:
2419 1.7 thorpej *
2420 1.7 thorpej * Parse old-format SROMs.
2421 1.7 thorpej *
2422 1.7 thorpej * This routine is largely lifted from Matt Thomas's `de' driver.
2423 1.7 thorpej */
2424 1.7 thorpej int
2425 1.165 cegger tlp_parse_old_srom(struct tulip_softc *sc, uint8_t *enaddr)
2426 1.7 thorpej {
2427 1.165 cegger static const uint8_t testpat[] =
2428 1.7 thorpej { 0xff, 0, 0x55, 0xaa, 0xff, 0, 0x55, 0xaa };
2429 1.7 thorpej int i;
2430 1.165 cegger uint32_t cksum;
2431 1.7 thorpej
2432 1.7 thorpej if (memcmp(&sc->sc_srom[0], &sc->sc_srom[16], 8) != 0) {
2433 1.7 thorpej /*
2434 1.148 rumble * Phobos G100 interfaces have the address at
2435 1.148 rumble * offsets 0 and 20, but each pair of bytes is
2436 1.148 rumble * swapped.
2437 1.148 rumble */
2438 1.148 rumble if (sc->sc_srom_addrbits == 6 &&
2439 1.148 rumble sc->sc_srom[1] == 0x00 &&
2440 1.148 rumble sc->sc_srom[0] == 0x60 &&
2441 1.148 rumble sc->sc_srom[3] == 0xf5 &&
2442 1.148 rumble memcmp(&sc->sc_srom[0], &sc->sc_srom[20], 6) == 0) {
2443 1.148 rumble for (i = 0; i < 6; i += 2) {
2444 1.148 rumble enaddr[i] = sc->sc_srom[i + 1];
2445 1.148 rumble enaddr[i + 1] = sc->sc_srom[i];
2446 1.148 rumble }
2447 1.194 msaitoh return 1;
2448 1.148 rumble }
2449 1.148 rumble
2450 1.148 rumble /*
2451 1.148 rumble * Phobos G130/G160 interfaces have the address at
2452 1.148 rumble * offsets 20 and 84, but each pair of bytes is
2453 1.148 rumble * swapped.
2454 1.146 rumble */
2455 1.146 rumble if (sc->sc_srom_addrbits == 6 &&
2456 1.146 rumble sc->sc_srom[21] == 0x00 &&
2457 1.146 rumble sc->sc_srom[20] == 0x60 &&
2458 1.146 rumble sc->sc_srom[23] == 0xf5 &&
2459 1.146 rumble memcmp(&sc->sc_srom[20], &sc->sc_srom[84], 6) == 0) {
2460 1.146 rumble for (i = 0; i < 6; i += 2) {
2461 1.146 rumble enaddr[i] = sc->sc_srom[20 + i + 1];
2462 1.146 rumble enaddr[i + 1] = sc->sc_srom[20 + i];
2463 1.146 rumble }
2464 1.194 msaitoh return 1;
2465 1.146 rumble }
2466 1.146 rumble
2467 1.146 rumble /*
2468 1.123 tsutsui * Cobalt Networks interfaces simply have the address
2469 1.123 tsutsui * in the first six bytes. The rest is zeroed out
2470 1.123 tsutsui * on some models, but others contain unknown data.
2471 1.123 tsutsui */
2472 1.123 tsutsui if (sc->sc_srom[0] == 0x00 &&
2473 1.123 tsutsui sc->sc_srom[1] == 0x10 &&
2474 1.123 tsutsui sc->sc_srom[2] == 0xe0) {
2475 1.123 tsutsui memcpy(enaddr, sc->sc_srom, ETHER_ADDR_LEN);
2476 1.194 msaitoh return 1;
2477 1.123 tsutsui }
2478 1.123 tsutsui
2479 1.123 tsutsui /*
2480 1.7 thorpej * Some vendors (e.g. ZNYX) don't use the standard
2481 1.7 thorpej * DEC Address ROM format, but rather just have an
2482 1.7 thorpej * Ethernet address in the first 6 bytes, maybe a
2483 1.7 thorpej * 2 byte checksum, and then all 0xff's.
2484 1.7 thorpej */
2485 1.7 thorpej for (i = 8; i < 32; i++) {
2486 1.37 thorpej if (sc->sc_srom[i] != 0xff &&
2487 1.37 thorpej sc->sc_srom[i] != 0)
2488 1.194 msaitoh return 0;
2489 1.7 thorpej }
2490 1.7 thorpej
2491 1.7 thorpej /*
2492 1.7 thorpej * Sanity check the Ethernet address:
2493 1.7 thorpej *
2494 1.7 thorpej * - Make sure it's not multicast or locally
2495 1.7 thorpej * assigned
2496 1.7 thorpej * - Make sure it has a non-0 OUI
2497 1.7 thorpej */
2498 1.7 thorpej if (sc->sc_srom[0] & 3)
2499 1.194 msaitoh return 0;
2500 1.7 thorpej if (sc->sc_srom[0] == 0 && sc->sc_srom[1] == 0 &&
2501 1.7 thorpej sc->sc_srom[2] == 0)
2502 1.194 msaitoh return 0;
2503 1.7 thorpej
2504 1.7 thorpej memcpy(enaddr, sc->sc_srom, ETHER_ADDR_LEN);
2505 1.194 msaitoh return 1;
2506 1.7 thorpej }
2507 1.7 thorpej
2508 1.7 thorpej /*
2509 1.7 thorpej * Standard DEC Address ROM test.
2510 1.7 thorpej */
2511 1.7 thorpej
2512 1.7 thorpej if (memcmp(&sc->sc_srom[24], testpat, 8) != 0)
2513 1.194 msaitoh return 0;
2514 1.7 thorpej
2515 1.7 thorpej for (i = 0; i < 8; i++) {
2516 1.7 thorpej if (sc->sc_srom[i] != sc->sc_srom[15 - i])
2517 1.194 msaitoh return 0;
2518 1.7 thorpej }
2519 1.7 thorpej
2520 1.7 thorpej memcpy(enaddr, sc->sc_srom, ETHER_ADDR_LEN);
2521 1.7 thorpej
2522 1.165 cegger cksum = *(uint16_t *) &enaddr[0];
2523 1.7 thorpej
2524 1.7 thorpej cksum <<= 1;
2525 1.7 thorpej if (cksum > 0xffff)
2526 1.7 thorpej cksum -= 0xffff;
2527 1.7 thorpej
2528 1.165 cegger cksum += *(uint16_t *) &enaddr[2];
2529 1.7 thorpej if (cksum > 0xffff)
2530 1.7 thorpej cksum -= 0xffff;
2531 1.7 thorpej
2532 1.7 thorpej cksum <<= 1;
2533 1.7 thorpej if (cksum > 0xffff)
2534 1.7 thorpej cksum -= 0xffff;
2535 1.7 thorpej
2536 1.165 cegger cksum += *(uint16_t *) &enaddr[4];
2537 1.7 thorpej if (cksum >= 0xffff)
2538 1.7 thorpej cksum -= 0xffff;
2539 1.7 thorpej
2540 1.165 cegger if (cksum != *(uint16_t *) &sc->sc_srom[6])
2541 1.194 msaitoh return 0;
2542 1.7 thorpej
2543 1.194 msaitoh return 1;
2544 1.7 thorpej }
2545 1.7 thorpej
2546 1.7 thorpej /*
2547 1.1 thorpej * tlp_filter_setup:
2548 1.1 thorpej *
2549 1.1 thorpej * Set the Tulip's receive filter.
2550 1.1 thorpej */
2551 1.138 thorpej static void
2552 1.138 thorpej tlp_filter_setup(struct tulip_softc *sc)
2553 1.1 thorpej {
2554 1.1 thorpej struct ethercom *ec = &sc->sc_ethercom;
2555 1.1 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
2556 1.1 thorpej struct ether_multi *enm;
2557 1.1 thorpej struct ether_multistep step;
2558 1.165 cegger volatile uint32_t *sp;
2559 1.40 thorpej struct tulip_txsoft *txs;
2560 1.178 christos struct tulip_desc *txd;
2561 1.165 cegger uint8_t enaddr[ETHER_ADDR_LEN];
2562 1.165 cegger uint32_t hash, hashsize;
2563 1.127 mycroft int cnt, nexttx;
2564 1.1 thorpej
2565 1.5 thorpej DPRINTF(sc, ("%s: tlp_filter_setup: sc_flags 0x%08x\n",
2566 1.167 cegger device_xname(sc->sc_dev), sc->sc_flags));
2567 1.1 thorpej
2568 1.151 dyoung memcpy(enaddr, CLLADDR(ifp->if_sadl), ETHER_ADDR_LEN);
2569 1.1 thorpej
2570 1.1 thorpej /*
2571 1.1 thorpej * If there are transmissions pending, wait until they have
2572 1.1 thorpej * completed.
2573 1.1 thorpej */
2574 1.115 lukem if (! SIMPLEQ_EMPTY(&sc->sc_txdirtyq) ||
2575 1.4 thorpej (sc->sc_flags & TULIPF_DOING_SETUP) != 0) {
2576 1.1 thorpej sc->sc_flags |= TULIPF_WANT_SETUP;
2577 1.5 thorpej DPRINTF(sc, ("%s: tlp_filter_setup: deferring\n",
2578 1.167 cegger device_xname(sc->sc_dev)));
2579 1.1 thorpej return;
2580 1.1 thorpej }
2581 1.1 thorpej sc->sc_flags &= ~TULIPF_WANT_SETUP;
2582 1.1 thorpej
2583 1.25 thorpej switch (sc->sc_chip) {
2584 1.25 thorpej case TULIP_CHIP_82C115:
2585 1.25 thorpej hashsize = TULIP_PNICII_HASHSIZE;
2586 1.25 thorpej break;
2587 1.25 thorpej
2588 1.25 thorpej default:
2589 1.25 thorpej hashsize = TULIP_MCHASHSIZE;
2590 1.25 thorpej }
2591 1.25 thorpej
2592 1.1 thorpej /*
2593 1.1 thorpej * If we're running, idle the transmit and receive engines. If
2594 1.1 thorpej * we're NOT running, we're being called from tlp_init(), and our
2595 1.1 thorpej * writing OPMODE will start the transmit and receive processes
2596 1.1 thorpej * in motion.
2597 1.1 thorpej */
2598 1.70 thorpej if (ifp->if_flags & IFF_RUNNING)
2599 1.194 msaitoh tlp_idle(sc, OPMODE_ST | OPMODE_SR);
2600 1.1 thorpej
2601 1.194 msaitoh sc->sc_opmode &= ~(OPMODE_PR | OPMODE_PM);
2602 1.1 thorpej
2603 1.1 thorpej if (ifp->if_flags & IFF_PROMISC) {
2604 1.1 thorpej sc->sc_opmode |= OPMODE_PR;
2605 1.1 thorpej goto allmulti;
2606 1.1 thorpej }
2607 1.1 thorpej
2608 1.1 thorpej /*
2609 1.1 thorpej * Try Perfect filtering first.
2610 1.1 thorpej */
2611 1.1 thorpej
2612 1.1 thorpej sc->sc_filtmode = TDCTL_Tx_FT_PERFECT;
2613 1.1 thorpej sp = TULIP_CDSP(sc);
2614 1.1 thorpej memset(TULIP_CDSP(sc), 0, TULIP_SETUP_PACKET_LEN);
2615 1.1 thorpej cnt = 0;
2616 1.196 msaitoh ETHER_LOCK(ec);
2617 1.1 thorpej ETHER_FIRST_MULTI(step, ec, enm);
2618 1.1 thorpej while (enm != NULL) {
2619 1.94 thorpej if (memcmp(enm->enm_addrlo, enm->enm_addrhi, ETHER_ADDR_LEN)) {
2620 1.1 thorpej /*
2621 1.1 thorpej * We must listen to a range of multicast addresses.
2622 1.1 thorpej * For now, just accept all multicasts, rather than
2623 1.1 thorpej * trying to set only those filter bits needed to match
2624 1.1 thorpej * the range. (At this time, the only use of address
2625 1.1 thorpej * ranges is for IP multicast routing, for which the
2626 1.1 thorpej * range is big enough to require all bits set.)
2627 1.1 thorpej */
2628 1.196 msaitoh ETHER_UNLOCK(ec);
2629 1.1 thorpej goto allmulti;
2630 1.1 thorpej }
2631 1.1 thorpej if (cnt == (TULIP_MAXADDRS - 2)) {
2632 1.1 thorpej /*
2633 1.1 thorpej * We already have our multicast limit (still need
2634 1.1 thorpej * our station address and broadcast). Go to
2635 1.1 thorpej * Hash-Perfect mode.
2636 1.1 thorpej */
2637 1.196 msaitoh ETHER_UNLOCK(ec);
2638 1.1 thorpej goto hashperfect;
2639 1.1 thorpej }
2640 1.51 enami cnt++;
2641 1.161 tsutsui *sp++ = htole32(TULIP_SP_FIELD(enm->enm_addrlo, 0));
2642 1.161 tsutsui *sp++ = htole32(TULIP_SP_FIELD(enm->enm_addrlo, 1));
2643 1.161 tsutsui *sp++ = htole32(TULIP_SP_FIELD(enm->enm_addrlo, 2));
2644 1.1 thorpej ETHER_NEXT_MULTI(step, enm);
2645 1.1 thorpej }
2646 1.196 msaitoh ETHER_UNLOCK(ec);
2647 1.135 perry
2648 1.1 thorpej if (ifp->if_flags & IFF_BROADCAST) {
2649 1.1 thorpej /* ...and the broadcast address. */
2650 1.1 thorpej cnt++;
2651 1.161 tsutsui *sp++ = htole32(TULIP_SP_FIELD_C(0xff, 0xff));
2652 1.161 tsutsui *sp++ = htole32(TULIP_SP_FIELD_C(0xff, 0xff));
2653 1.161 tsutsui *sp++ = htole32(TULIP_SP_FIELD_C(0xff, 0xff));
2654 1.1 thorpej }
2655 1.1 thorpej
2656 1.1 thorpej /* Pad the rest with our station address. */
2657 1.1 thorpej for (; cnt < TULIP_MAXADDRS; cnt++) {
2658 1.161 tsutsui *sp++ = htole32(TULIP_SP_FIELD(enaddr, 0));
2659 1.161 tsutsui *sp++ = htole32(TULIP_SP_FIELD(enaddr, 1));
2660 1.161 tsutsui *sp++ = htole32(TULIP_SP_FIELD(enaddr, 2));
2661 1.1 thorpej }
2662 1.1 thorpej ifp->if_flags &= ~IFF_ALLMULTI;
2663 1.1 thorpej goto setit;
2664 1.1 thorpej
2665 1.1 thorpej hashperfect:
2666 1.1 thorpej /*
2667 1.1 thorpej * Try Hash-Perfect mode.
2668 1.1 thorpej */
2669 1.1 thorpej
2670 1.1 thorpej /*
2671 1.1 thorpej * Some 21140 chips have broken Hash-Perfect modes. On these
2672 1.1 thorpej * chips, we simply use Hash-Only mode, and put our station
2673 1.1 thorpej * address into the filter.
2674 1.1 thorpej */
2675 1.1 thorpej if (sc->sc_chip == TULIP_CHIP_21140)
2676 1.1 thorpej sc->sc_filtmode = TDCTL_Tx_FT_HASHONLY;
2677 1.1 thorpej else
2678 1.1 thorpej sc->sc_filtmode = TDCTL_Tx_FT_HASH;
2679 1.1 thorpej sp = TULIP_CDSP(sc);
2680 1.1 thorpej memset(TULIP_CDSP(sc), 0, TULIP_SETUP_PACKET_LEN);
2681 1.196 msaitoh ETHER_LOCK(ec);
2682 1.1 thorpej ETHER_FIRST_MULTI(step, ec, enm);
2683 1.1 thorpej while (enm != NULL) {
2684 1.94 thorpej if (memcmp(enm->enm_addrlo, enm->enm_addrhi, ETHER_ADDR_LEN)) {
2685 1.1 thorpej /*
2686 1.1 thorpej * We must listen to a range of multicast addresses.
2687 1.1 thorpej * For now, just accept all multicasts, rather than
2688 1.1 thorpej * trying to set only those filter bits needed to match
2689 1.1 thorpej * the range. (At this time, the only use of address
2690 1.1 thorpej * ranges is for IP multicast routing, for which the
2691 1.1 thorpej * range is big enough to require all bits set.)
2692 1.1 thorpej */
2693 1.196 msaitoh ETHER_UNLOCK(ec);
2694 1.1 thorpej goto allmulti;
2695 1.1 thorpej }
2696 1.25 thorpej hash = tlp_mchash(enm->enm_addrlo, hashsize);
2697 1.35 thorpej sp[hash >> 4] |= htole32(1 << (hash & 0xf));
2698 1.1 thorpej ETHER_NEXT_MULTI(step, enm);
2699 1.1 thorpej }
2700 1.196 msaitoh ETHER_UNLOCK(ec);
2701 1.1 thorpej
2702 1.1 thorpej if (ifp->if_flags & IFF_BROADCAST) {
2703 1.1 thorpej /* ...and the broadcast address. */
2704 1.25 thorpej hash = tlp_mchash(etherbroadcastaddr, hashsize);
2705 1.35 thorpej sp[hash >> 4] |= htole32(1 << (hash & 0xf));
2706 1.1 thorpej }
2707 1.1 thorpej
2708 1.1 thorpej if (sc->sc_filtmode == TDCTL_Tx_FT_HASHONLY) {
2709 1.1 thorpej /* ...and our station address. */
2710 1.25 thorpej hash = tlp_mchash(enaddr, hashsize);
2711 1.35 thorpej sp[hash >> 4] |= htole32(1 << (hash & 0xf));
2712 1.1 thorpej } else {
2713 1.1 thorpej /*
2714 1.1 thorpej * Hash-Perfect mode; put our station address after
2715 1.1 thorpej * the hash table.
2716 1.1 thorpej */
2717 1.161 tsutsui sp[39] = htole32(TULIP_SP_FIELD(enaddr, 0));
2718 1.161 tsutsui sp[40] = htole32(TULIP_SP_FIELD(enaddr, 1));
2719 1.161 tsutsui sp[41] = htole32(TULIP_SP_FIELD(enaddr, 2));
2720 1.1 thorpej }
2721 1.1 thorpej ifp->if_flags &= ~IFF_ALLMULTI;
2722 1.1 thorpej goto setit;
2723 1.1 thorpej
2724 1.1 thorpej allmulti:
2725 1.1 thorpej /*
2726 1.1 thorpej * Use Perfect filter mode. First address is the broadcast address,
2727 1.1 thorpej * and pad the rest with our station address. We'll set Pass-all-
2728 1.1 thorpej * multicast in OPMODE below.
2729 1.1 thorpej */
2730 1.1 thorpej sc->sc_filtmode = TDCTL_Tx_FT_PERFECT;
2731 1.1 thorpej sp = TULIP_CDSP(sc);
2732 1.1 thorpej memset(TULIP_CDSP(sc), 0, TULIP_SETUP_PACKET_LEN);
2733 1.1 thorpej cnt = 0;
2734 1.1 thorpej if (ifp->if_flags & IFF_BROADCAST) {
2735 1.1 thorpej cnt++;
2736 1.161 tsutsui *sp++ = htole32(TULIP_SP_FIELD_C(0xff, 0xff));
2737 1.161 tsutsui *sp++ = htole32(TULIP_SP_FIELD_C(0xff, 0xff));
2738 1.161 tsutsui *sp++ = htole32(TULIP_SP_FIELD_C(0xff, 0xff));
2739 1.1 thorpej }
2740 1.1 thorpej for (; cnt < TULIP_MAXADDRS; cnt++) {
2741 1.161 tsutsui *sp++ = htole32(TULIP_SP_FIELD(enaddr, 0));
2742 1.161 tsutsui *sp++ = htole32(TULIP_SP_FIELD(enaddr, 1));
2743 1.161 tsutsui *sp++ = htole32(TULIP_SP_FIELD(enaddr, 2));
2744 1.1 thorpej }
2745 1.1 thorpej ifp->if_flags |= IFF_ALLMULTI;
2746 1.1 thorpej
2747 1.1 thorpej setit:
2748 1.1 thorpej if (ifp->if_flags & IFF_ALLMULTI)
2749 1.1 thorpej sc->sc_opmode |= OPMODE_PM;
2750 1.1 thorpej
2751 1.1 thorpej /* Sync the setup packet buffer. */
2752 1.1 thorpej TULIP_CDSPSYNC(sc, BUS_DMASYNC_PREWRITE);
2753 1.1 thorpej
2754 1.1 thorpej /*
2755 1.1 thorpej * Fill in the setup packet descriptor.
2756 1.1 thorpej */
2757 1.40 thorpej txs = SIMPLEQ_FIRST(&sc->sc_txfreeq);
2758 1.40 thorpej
2759 1.40 thorpej txs->txs_firstdesc = sc->sc_txnext;
2760 1.40 thorpej txs->txs_lastdesc = sc->sc_txnext;
2761 1.40 thorpej txs->txs_ndescs = 1;
2762 1.40 thorpej txs->txs_mbuf = NULL;
2763 1.40 thorpej
2764 1.127 mycroft nexttx = sc->sc_txnext;
2765 1.178 christos txd = &sc->sc_txdescs[nexttx];
2766 1.178 christos txd->td_status = 0;
2767 1.178 christos txd->td_bufaddr1 = htole32(TULIP_CDSPADDR(sc));
2768 1.178 christos txd->td_ctl = htole32((TULIP_SETUP_PACKET_LEN << TDCTL_SIZE1_SHIFT) |
2769 1.67 thorpej sc->sc_filtmode | TDCTL_Tx_SET | sc->sc_setup_fsls |
2770 1.67 thorpej TDCTL_Tx_IC | sc->sc_tdctl_ch |
2771 1.127 mycroft (nexttx == (TULIP_NTXDESC - 1) ? sc->sc_tdctl_er : 0));
2772 1.127 mycroft TULIP_CDTXSYNC(sc, nexttx, 1,
2773 1.194 msaitoh BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
2774 1.127 mycroft
2775 1.127 mycroft #ifdef TLP_DEBUG
2776 1.127 mycroft if (ifp->if_flags & IFF_DEBUG) {
2777 1.127 mycroft printf(" filter_setup %p transmit chain:\n", txs);
2778 1.127 mycroft printf(" descriptor %d:\n", nexttx);
2779 1.178 christos printf(" td_status: 0x%08x\n", le32toh(txd->td_status));
2780 1.178 christos printf(" td_ctl: 0x%08x\n", le32toh(txd->td_ctl));
2781 1.127 mycroft printf(" td_bufaddr1: 0x%08x\n",
2782 1.178 christos le32toh(txd->td_bufaddr1));
2783 1.127 mycroft printf(" td_bufaddr2: 0x%08x\n",
2784 1.178 christos le32toh(txd->td_bufaddr2));
2785 1.127 mycroft }
2786 1.127 mycroft #endif
2787 1.127 mycroft
2788 1.178 christos txd->td_status = htole32(TDSTAT_OWN);
2789 1.127 mycroft TULIP_CDTXSYNC(sc, nexttx, 1,
2790 1.194 msaitoh BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
2791 1.40 thorpej
2792 1.40 thorpej /* Advance the tx pointer. */
2793 1.40 thorpej sc->sc_txfree -= 1;
2794 1.127 mycroft sc->sc_txnext = TULIP_NEXTTX(nexttx);
2795 1.1 thorpej
2796 1.115 lukem SIMPLEQ_REMOVE_HEAD(&sc->sc_txfreeq, txs_q);
2797 1.40 thorpej SIMPLEQ_INSERT_TAIL(&sc->sc_txdirtyq, txs, txs_q);
2798 1.1 thorpej
2799 1.1 thorpej /*
2800 1.1 thorpej * Set the OPMODE register. This will also resume the
2801 1.136 wiz * transmit process we idled above.
2802 1.1 thorpej */
2803 1.1 thorpej TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode);
2804 1.1 thorpej
2805 1.4 thorpej sc->sc_flags |= TULIPF_DOING_SETUP;
2806 1.4 thorpej
2807 1.1 thorpej /*
2808 1.1 thorpej * Kick the transmitter; this will cause the Tulip to
2809 1.1 thorpej * read the setup descriptor.
2810 1.1 thorpej */
2811 1.1 thorpej /* XXX USE AUTOPOLLING? */
2812 1.1 thorpej TULIP_WRITE(sc, CSR_TXPOLL, TXPOLL_TPD);
2813 1.1 thorpej
2814 1.4 thorpej /* Set up a watchdog timer in case the chip flakes out. */
2815 1.4 thorpej ifp->if_timer = 5;
2816 1.4 thorpej
2817 1.188 msaitoh DPRINTF(sc, ("%s: tlp_filter_setup: returning\n",
2818 1.188 msaitoh device_xname(sc->sc_dev)));
2819 1.1 thorpej }
2820 1.1 thorpej
2821 1.1 thorpej /*
2822 1.1 thorpej * tlp_winb_filter_setup:
2823 1.1 thorpej *
2824 1.1 thorpej * Set the Winbond 89C840F's receive filter.
2825 1.1 thorpej */
2826 1.138 thorpej static void
2827 1.138 thorpej tlp_winb_filter_setup(struct tulip_softc *sc)
2828 1.1 thorpej {
2829 1.1 thorpej struct ethercom *ec = &sc->sc_ethercom;
2830 1.1 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
2831 1.1 thorpej struct ether_multi *enm;
2832 1.1 thorpej struct ether_multistep step;
2833 1.165 cegger uint32_t hash, mchash[2];
2834 1.1 thorpej
2835 1.5 thorpej DPRINTF(sc, ("%s: tlp_winb_filter_setup: sc_flags 0x%08x\n",
2836 1.167 cegger device_xname(sc->sc_dev), sc->sc_flags));
2837 1.1 thorpej
2838 1.194 msaitoh sc->sc_opmode &= ~(OPMODE_WINB_APP | OPMODE_WINB_AMP |OPMODE_WINB_ABP);
2839 1.5 thorpej
2840 1.5 thorpej if (ifp->if_flags & IFF_MULTICAST)
2841 1.5 thorpej sc->sc_opmode |= OPMODE_WINB_AMP;
2842 1.5 thorpej
2843 1.5 thorpej if (ifp->if_flags & IFF_BROADCAST)
2844 1.5 thorpej sc->sc_opmode |= OPMODE_WINB_ABP;
2845 1.1 thorpej
2846 1.1 thorpej if (ifp->if_flags & IFF_PROMISC) {
2847 1.5 thorpej sc->sc_opmode |= OPMODE_WINB_APP;
2848 1.1 thorpej goto allmulti;
2849 1.1 thorpej }
2850 1.1 thorpej
2851 1.1 thorpej mchash[0] = mchash[1] = 0;
2852 1.1 thorpej
2853 1.1 thorpej ETHER_FIRST_MULTI(step, ec, enm);
2854 1.1 thorpej while (enm != NULL) {
2855 1.94 thorpej if (memcmp(enm->enm_addrlo, enm->enm_addrhi, ETHER_ADDR_LEN)) {
2856 1.1 thorpej /*
2857 1.1 thorpej * We must listen to a range of multicast addresses.
2858 1.1 thorpej * For now, just accept all multicasts, rather than
2859 1.1 thorpej * trying to set only those filter bits needed to match
2860 1.1 thorpej * the range. (At this time, the only use of address
2861 1.1 thorpej * ranges is for IP multicast routing, for which the
2862 1.1 thorpej * range is big enough to require all bits set.)
2863 1.1 thorpej */
2864 1.1 thorpej goto allmulti;
2865 1.1 thorpej }
2866 1.1 thorpej
2867 1.1 thorpej /*
2868 1.1 thorpej * According to the FreeBSD `wb' driver, yes, you
2869 1.1 thorpej * really do invert the hash.
2870 1.1 thorpej */
2871 1.62 thorpej hash =
2872 1.62 thorpej (~(ether_crc32_le(enm->enm_addrlo, ETHER_ADDR_LEN) >> 26))
2873 1.1 thorpej & 0x3f;
2874 1.1 thorpej mchash[hash >> 5] |= 1 << (hash & 0x1f);
2875 1.1 thorpej ETHER_NEXT_MULTI(step, enm);
2876 1.1 thorpej }
2877 1.1 thorpej ifp->if_flags &= ~IFF_ALLMULTI;
2878 1.1 thorpej goto setit;
2879 1.1 thorpej
2880 1.1 thorpej allmulti:
2881 1.1 thorpej ifp->if_flags |= IFF_ALLMULTI;
2882 1.1 thorpej mchash[0] = mchash[1] = 0xffffffff;
2883 1.1 thorpej
2884 1.1 thorpej setit:
2885 1.5 thorpej TULIP_WRITE(sc, CSR_WINB_CMA0, mchash[0]);
2886 1.5 thorpej TULIP_WRITE(sc, CSR_WINB_CMA1, mchash[1]);
2887 1.1 thorpej TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode);
2888 1.5 thorpej DPRINTF(sc, ("%s: tlp_winb_filter_setup: returning\n",
2889 1.167 cegger device_xname(sc->sc_dev)));
2890 1.1 thorpej }
2891 1.1 thorpej
2892 1.1 thorpej /*
2893 1.21 thorpej * tlp_al981_filter_setup:
2894 1.21 thorpej *
2895 1.21 thorpej * Set the ADMtek AL981's receive filter.
2896 1.21 thorpej */
2897 1.138 thorpej static void
2898 1.138 thorpej tlp_al981_filter_setup(struct tulip_softc *sc)
2899 1.21 thorpej {
2900 1.21 thorpej struct ethercom *ec = &sc->sc_ethercom;
2901 1.135 perry struct ifnet *ifp = &sc->sc_ethercom.ec_if;
2902 1.21 thorpej struct ether_multi *enm;
2903 1.21 thorpej struct ether_multistep step;
2904 1.165 cegger uint32_t hash, mchash[2];
2905 1.21 thorpej
2906 1.87 thorpej /*
2907 1.87 thorpej * If the chip is running, we need to reset the interface,
2908 1.87 thorpej * and will revisit here (with IFF_RUNNING) clear. The
2909 1.87 thorpej * chip seems to really not like to have its multicast
2910 1.87 thorpej * filter programmed without a reset.
2911 1.87 thorpej */
2912 1.87 thorpej if (ifp->if_flags & IFF_RUNNING) {
2913 1.87 thorpej (void) tlp_init(ifp);
2914 1.87 thorpej return;
2915 1.87 thorpej }
2916 1.87 thorpej
2917 1.21 thorpej DPRINTF(sc, ("%s: tlp_al981_filter_setup: sc_flags 0x%08x\n",
2918 1.167 cegger device_xname(sc->sc_dev), sc->sc_flags));
2919 1.21 thorpej
2920 1.194 msaitoh sc->sc_opmode &= ~(OPMODE_PR | OPMODE_PM);
2921 1.21 thorpej
2922 1.21 thorpej if (ifp->if_flags & IFF_PROMISC) {
2923 1.21 thorpej sc->sc_opmode |= OPMODE_PR;
2924 1.21 thorpej goto allmulti;
2925 1.21 thorpej }
2926 1.21 thorpej
2927 1.21 thorpej mchash[0] = mchash[1] = 0;
2928 1.21 thorpej
2929 1.196 msaitoh ETHER_LOCK(ec);
2930 1.21 thorpej ETHER_FIRST_MULTI(step, ec, enm);
2931 1.21 thorpej while (enm != NULL) {
2932 1.94 thorpej if (memcmp(enm->enm_addrlo, enm->enm_addrhi, ETHER_ADDR_LEN)) {
2933 1.21 thorpej /*
2934 1.21 thorpej * We must listen to a range of multicast addresses.
2935 1.21 thorpej * For now, just accept all multicasts, rather than
2936 1.21 thorpej * trying to set only those filter bits needed to match
2937 1.21 thorpej * the range. (At this time, the only use of address
2938 1.21 thorpej * ranges is for IP multicast routing, for which the
2939 1.21 thorpej * range is big enough to require all bits set.)
2940 1.21 thorpej */
2941 1.196 msaitoh ETHER_UNLOCK(ec);
2942 1.21 thorpej goto allmulti;
2943 1.21 thorpej }
2944 1.21 thorpej
2945 1.102 yamt hash = ether_crc32_le(enm->enm_addrlo, ETHER_ADDR_LEN) & 0x3f;
2946 1.21 thorpej mchash[hash >> 5] |= 1 << (hash & 0x1f);
2947 1.21 thorpej ETHER_NEXT_MULTI(step, enm);
2948 1.21 thorpej }
2949 1.196 msaitoh ETHER_UNLOCK(ec);
2950 1.21 thorpej ifp->if_flags &= ~IFF_ALLMULTI;
2951 1.21 thorpej goto setit;
2952 1.21 thorpej
2953 1.21 thorpej allmulti:
2954 1.21 thorpej ifp->if_flags |= IFF_ALLMULTI;
2955 1.21 thorpej mchash[0] = mchash[1] = 0xffffffff;
2956 1.21 thorpej
2957 1.21 thorpej setit:
2958 1.88 thorpej bus_space_write_4(sc->sc_st, sc->sc_sh, CSR_ADM_MAR0, mchash[0]);
2959 1.88 thorpej bus_space_write_4(sc->sc_st, sc->sc_sh, CSR_ADM_MAR1, mchash[1]);
2960 1.21 thorpej TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode);
2961 1.21 thorpej DPRINTF(sc, ("%s: tlp_al981_filter_setup: returning\n",
2962 1.167 cegger device_xname(sc->sc_dev)));
2963 1.21 thorpej }
2964 1.21 thorpej
2965 1.21 thorpej /*
2966 1.137 rpaulo * tlp_asix_filter_setup:
2967 1.145 blymn *
2968 1.137 rpaulo * Set the ASIX AX8814x recieve filter.
2969 1.137 rpaulo */
2970 1.138 thorpej static void
2971 1.138 thorpej tlp_asix_filter_setup(struct tulip_softc *sc)
2972 1.137 rpaulo {
2973 1.137 rpaulo struct ethercom *ec = &sc->sc_ethercom;
2974 1.137 rpaulo struct ifnet *ifp = &sc->sc_ethercom.ec_if;
2975 1.137 rpaulo struct ether_multi *enm;
2976 1.137 rpaulo struct ether_multistep step;
2977 1.165 cegger uint32_t hash, mchash[2];
2978 1.137 rpaulo
2979 1.137 rpaulo DPRINTF(sc, ("%s: tlp_asix_filter_setup: sc_flags 0x%08x\n",
2980 1.167 cegger device_xname(sc->sc_dev), sc->sc_flags));
2981 1.137 rpaulo
2982 1.194 msaitoh sc->sc_opmode &= ~(OPMODE_PM | OPMODE_AX_RB | OPMODE_PR);
2983 1.137 rpaulo
2984 1.137 rpaulo if (ifp->if_flags & IFF_MULTICAST)
2985 1.137 rpaulo sc->sc_opmode |= OPMODE_PM;
2986 1.137 rpaulo
2987 1.137 rpaulo if (ifp->if_flags & IFF_BROADCAST)
2988 1.137 rpaulo sc->sc_opmode |= OPMODE_AX_RB;
2989 1.137 rpaulo
2990 1.137 rpaulo if (ifp->if_flags & IFF_PROMISC) {
2991 1.137 rpaulo sc->sc_opmode |= OPMODE_PR;
2992 1.137 rpaulo goto allmulti;
2993 1.137 rpaulo }
2994 1.137 rpaulo
2995 1.137 rpaulo mchash[0] = mchash[1] = 0;
2996 1.137 rpaulo
2997 1.196 msaitoh ETHER_LOCK(ec);
2998 1.137 rpaulo ETHER_FIRST_MULTI(step, ec, enm);
2999 1.137 rpaulo while (enm != NULL) {
3000 1.137 rpaulo if (memcmp(enm->enm_addrlo, enm->enm_addrhi, ETHER_ADDR_LEN)) {
3001 1.137 rpaulo /*
3002 1.137 rpaulo * We must listen to a range of multicast addresses.
3003 1.137 rpaulo * For now, just accept all multicasts, rather than
3004 1.137 rpaulo * trying to set only those filter bits needed to match
3005 1.137 rpaulo * the range. (At this time, the only use of address
3006 1.137 rpaulo * ranges is for IP multicast routing, for which the
3007 1.137 rpaulo * range is big enough to require all bits set.)
3008 1.137 rpaulo */
3009 1.196 msaitoh ETHER_UNLOCK(ec);
3010 1.137 rpaulo goto allmulti;
3011 1.137 rpaulo }
3012 1.145 blymn hash = (ether_crc32_be(enm->enm_addrlo, ETHER_ADDR_LEN) >> 26)
3013 1.137 rpaulo & 0x3f;
3014 1.137 rpaulo if (hash < 32)
3015 1.137 rpaulo mchash[0] |= (1 << hash);
3016 1.137 rpaulo else
3017 1.137 rpaulo mchash[1] |= (1 << (hash - 32));
3018 1.137 rpaulo ETHER_NEXT_MULTI(step, enm);
3019 1.137 rpaulo }
3020 1.196 msaitoh ETHER_UNLOCK(ec);
3021 1.137 rpaulo ifp->if_flags &= ~IFF_ALLMULTI;
3022 1.137 rpaulo goto setit;
3023 1.137 rpaulo
3024 1.137 rpaulo allmulti:
3025 1.137 rpaulo ifp->if_flags |= IFF_ALLMULTI;
3026 1.137 rpaulo mchash[0] = mchash[1] = 0xffffffff;
3027 1.137 rpaulo
3028 1.137 rpaulo setit:
3029 1.137 rpaulo TULIP_WRITE(sc, CSR_AX_FILTIDX, AX_FILTIDX_MAR0);
3030 1.137 rpaulo TULIP_WRITE(sc, CSR_AX_FILTDATA, mchash[0]);
3031 1.137 rpaulo TULIP_WRITE(sc, CSR_AX_FILTIDX, AX_FILTIDX_MAR1);
3032 1.137 rpaulo TULIP_WRITE(sc, CSR_AX_FILTDATA, mchash[1]);
3033 1.137 rpaulo TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode);
3034 1.137 rpaulo DPRINTF(sc, ("%s: tlp_asix_filter_setup: returning\n",
3035 1.167 cegger device_xname(sc->sc_dev)));
3036 1.137 rpaulo }
3037 1.137 rpaulo
3038 1.137 rpaulo
3039 1.137 rpaulo /*
3040 1.1 thorpej * tlp_idle:
3041 1.1 thorpej *
3042 1.1 thorpej * Cause the transmit and/or receive processes to go idle.
3043 1.1 thorpej */
3044 1.139 he void
3045 1.165 cegger tlp_idle(struct tulip_softc *sc, uint32_t bits)
3046 1.1 thorpej {
3047 1.90 jdolecek static const char * const tlp_tx_state_names[] = {
3048 1.1 thorpej "STOPPED",
3049 1.1 thorpej "RUNNING - FETCH",
3050 1.1 thorpej "RUNNING - WAIT",
3051 1.1 thorpej "RUNNING - READING",
3052 1.1 thorpej "-- RESERVED --",
3053 1.1 thorpej "RUNNING - SETUP",
3054 1.1 thorpej "SUSPENDED",
3055 1.1 thorpej "RUNNING - CLOSE",
3056 1.1 thorpej };
3057 1.90 jdolecek static const char * const tlp_rx_state_names[] = {
3058 1.1 thorpej "STOPPED",
3059 1.1 thorpej "RUNNING - FETCH",
3060 1.1 thorpej "RUNNING - CHECK",
3061 1.1 thorpej "RUNNING - WAIT",
3062 1.1 thorpej "SUSPENDED",
3063 1.1 thorpej "RUNNING - CLOSE",
3064 1.1 thorpej "RUNNING - FLUSH",
3065 1.1 thorpej "RUNNING - QUEUE",
3066 1.1 thorpej };
3067 1.90 jdolecek static const char * const dm9102_tx_state_names[] = {
3068 1.68 thorpej "STOPPED",
3069 1.68 thorpej "RUNNING - FETCH",
3070 1.68 thorpej "RUNNING - SETUP",
3071 1.68 thorpej "RUNNING - READING",
3072 1.68 thorpej "RUNNING - CLOSE - CLEAR OWNER",
3073 1.68 thorpej "RUNNING - WAIT",
3074 1.68 thorpej "RUNNING - CLOSE - WRITE STATUS",
3075 1.68 thorpej "SUSPENDED",
3076 1.68 thorpej };
3077 1.90 jdolecek static const char * const dm9102_rx_state_names[] = {
3078 1.68 thorpej "STOPPED",
3079 1.68 thorpej "RUNNING - FETCH",
3080 1.68 thorpej "RUNNING - WAIT",
3081 1.68 thorpej "RUNNING - QUEUE",
3082 1.68 thorpej "RUNNING - CLOSE - CLEAR OWNER",
3083 1.68 thorpej "RUNNING - CLOSE - WRITE STATUS",
3084 1.68 thorpej "SUSPENDED",
3085 1.68 thorpej "RUNNING - FLUSH",
3086 1.68 thorpej };
3087 1.68 thorpej
3088 1.90 jdolecek const char * const *tx_state_names, * const *rx_state_names;
3089 1.165 cegger uint32_t csr, ackmask = 0;
3090 1.1 thorpej int i;
3091 1.1 thorpej
3092 1.68 thorpej switch (sc->sc_chip) {
3093 1.68 thorpej case TULIP_CHIP_DM9102:
3094 1.68 thorpej case TULIP_CHIP_DM9102A:
3095 1.68 thorpej tx_state_names = dm9102_tx_state_names;
3096 1.68 thorpej rx_state_names = dm9102_rx_state_names;
3097 1.68 thorpej break;
3098 1.68 thorpej
3099 1.68 thorpej default:
3100 1.68 thorpej tx_state_names = tlp_tx_state_names;
3101 1.68 thorpej rx_state_names = tlp_rx_state_names;
3102 1.68 thorpej break;
3103 1.68 thorpej }
3104 1.68 thorpej
3105 1.1 thorpej if (bits & OPMODE_ST)
3106 1.1 thorpej ackmask |= STATUS_TPS;
3107 1.1 thorpej
3108 1.1 thorpej if (bits & OPMODE_SR)
3109 1.1 thorpej ackmask |= STATUS_RPS;
3110 1.1 thorpej
3111 1.1 thorpej TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode & ~bits);
3112 1.1 thorpej
3113 1.1 thorpej for (i = 0; i < 1000; i++) {
3114 1.1 thorpej if (TULIP_ISSET(sc, CSR_STATUS, ackmask) == ackmask)
3115 1.1 thorpej break;
3116 1.1 thorpej delay(10);
3117 1.1 thorpej }
3118 1.1 thorpej
3119 1.1 thorpej csr = TULIP_READ(sc, CSR_STATUS);
3120 1.1 thorpej if ((csr & ackmask) != ackmask) {
3121 1.1 thorpej if ((bits & OPMODE_ST) != 0 && (csr & STATUS_TPS) == 0 &&
3122 1.89 thorpej (csr & STATUS_TS) != STATUS_TS_STOPPED) {
3123 1.137 rpaulo switch (sc->sc_chip) {
3124 1.137 rpaulo case TULIP_CHIP_AX88140:
3125 1.137 rpaulo case TULIP_CHIP_AX88141:
3126 1.137 rpaulo /*
3127 1.137 rpaulo * Filter the message out on noisy chips.
3128 1.137 rpaulo */
3129 1.137 rpaulo break;
3130 1.137 rpaulo default:
3131 1.137 rpaulo printf("%s: transmit process failed to idle: "
3132 1.167 cegger "state %s\n", device_xname(sc->sc_dev),
3133 1.137 rpaulo tx_state_names[(csr & STATUS_TS) >> 20]);
3134 1.137 rpaulo }
3135 1.89 thorpej }
3136 1.1 thorpej if ((bits & OPMODE_SR) != 0 && (csr & STATUS_RPS) == 0 &&
3137 1.89 thorpej (csr & STATUS_RS) != STATUS_RS_STOPPED) {
3138 1.89 thorpej switch (sc->sc_chip) {
3139 1.89 thorpej case TULIP_CHIP_AN983:
3140 1.89 thorpej case TULIP_CHIP_AN985:
3141 1.130 sketch case TULIP_CHIP_DM9102A:
3142 1.143 rpaulo case TULIP_CHIP_RS7112:
3143 1.89 thorpej /*
3144 1.89 thorpej * Filter the message out on noisy chips.
3145 1.89 thorpej */
3146 1.89 thorpej break;
3147 1.89 thorpej default:
3148 1.89 thorpej printf("%s: receive process failed to idle: "
3149 1.167 cegger "state %s\n", device_xname(sc->sc_dev),
3150 1.89 thorpej rx_state_names[(csr & STATUS_RS) >> 17]);
3151 1.89 thorpej }
3152 1.89 thorpej }
3153 1.1 thorpej }
3154 1.1 thorpej TULIP_WRITE(sc, CSR_STATUS, ackmask);
3155 1.1 thorpej }
3156 1.1 thorpej
3157 1.1 thorpej /*****************************************************************************
3158 1.1 thorpej * Generic media support functions.
3159 1.1 thorpej *****************************************************************************/
3160 1.1 thorpej
3161 1.1 thorpej /*
3162 1.1 thorpej * tlp_mediastatus: [ifmedia interface function]
3163 1.1 thorpej *
3164 1.1 thorpej * Query the current media.
3165 1.1 thorpej */
3166 1.1 thorpej void
3167 1.138 thorpej tlp_mediastatus(struct ifnet *ifp, struct ifmediareq *ifmr)
3168 1.1 thorpej {
3169 1.1 thorpej struct tulip_softc *sc = ifp->if_softc;
3170 1.53 thorpej
3171 1.53 thorpej if (TULIP_IS_ENABLED(sc) == 0) {
3172 1.53 thorpej ifmr->ifm_active = IFM_ETHER | IFM_NONE;
3173 1.53 thorpej ifmr->ifm_status = 0;
3174 1.53 thorpej return;
3175 1.53 thorpej }
3176 1.1 thorpej
3177 1.1 thorpej (*sc->sc_mediasw->tmsw_get)(sc, ifmr);
3178 1.1 thorpej }
3179 1.1 thorpej
3180 1.1 thorpej /*
3181 1.1 thorpej * tlp_mediachange: [ifmedia interface function]
3182 1.1 thorpej *
3183 1.1 thorpej * Update the current media.
3184 1.1 thorpej */
3185 1.1 thorpej int
3186 1.138 thorpej tlp_mediachange(struct ifnet *ifp)
3187 1.1 thorpej {
3188 1.1 thorpej struct tulip_softc *sc = ifp->if_softc;
3189 1.1 thorpej
3190 1.71 castor if ((ifp->if_flags & IFF_UP) == 0)
3191 1.194 msaitoh return 0;
3192 1.194 msaitoh return (*sc->sc_mediasw->tmsw_set)(sc);
3193 1.1 thorpej }
3194 1.1 thorpej
3195 1.1 thorpej /*****************************************************************************
3196 1.1 thorpej * Support functions for MII-attached media.
3197 1.1 thorpej *****************************************************************************/
3198 1.1 thorpej
3199 1.1 thorpej /*
3200 1.1 thorpej * tlp_mii_tick:
3201 1.1 thorpej *
3202 1.1 thorpej * One second timer, used to tick the MII.
3203 1.1 thorpej */
3204 1.138 thorpej static void
3205 1.138 thorpej tlp_mii_tick(void *arg)
3206 1.1 thorpej {
3207 1.1 thorpej struct tulip_softc *sc = arg;
3208 1.1 thorpej int s;
3209 1.1 thorpej
3210 1.167 cegger if (!device_is_active(sc->sc_dev))
3211 1.42 thorpej return;
3212 1.42 thorpej
3213 1.1 thorpej s = splnet();
3214 1.1 thorpej mii_tick(&sc->sc_mii);
3215 1.1 thorpej splx(s);
3216 1.1 thorpej
3217 1.56 thorpej callout_reset(&sc->sc_tick_callout, hz, sc->sc_tick, sc);
3218 1.1 thorpej }
3219 1.1 thorpej
3220 1.1 thorpej /*
3221 1.1 thorpej * tlp_mii_statchg: [mii interface function]
3222 1.1 thorpej *
3223 1.1 thorpej * Callback from PHY when media changes.
3224 1.1 thorpej */
3225 1.138 thorpej static void
3226 1.181 matt tlp_mii_statchg(struct ifnet *ifp)
3227 1.1 thorpej {
3228 1.181 matt struct tulip_softc *sc = ifp->if_softc;
3229 1.1 thorpej
3230 1.1 thorpej /* Idle the transmit and receive processes. */
3231 1.194 msaitoh tlp_idle(sc, OPMODE_ST | OPMODE_SR);
3232 1.1 thorpej
3233 1.194 msaitoh sc->sc_opmode &= ~(OPMODE_TTM | OPMODE_FD | OPMODE_HBD);
3234 1.7 thorpej
3235 1.1 thorpej if (IFM_SUBTYPE(sc->sc_mii.mii_media_active) == IFM_10_T)
3236 1.1 thorpej sc->sc_opmode |= OPMODE_TTM;
3237 1.21 thorpej else
3238 1.21 thorpej sc->sc_opmode |= OPMODE_HBD;
3239 1.1 thorpej
3240 1.1 thorpej if (sc->sc_mii.mii_media_active & IFM_FDX)
3241 1.194 msaitoh sc->sc_opmode |= OPMODE_FD | OPMODE_HBD;
3242 1.1 thorpej
3243 1.1 thorpej /*
3244 1.1 thorpej * Write new OPMODE bits. This also restarts the transmit
3245 1.1 thorpej * and receive processes.
3246 1.1 thorpej */
3247 1.1 thorpej TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode);
3248 1.1 thorpej }
3249 1.1 thorpej
3250 1.1 thorpej /*
3251 1.5 thorpej * tlp_winb_mii_statchg: [mii interface function]
3252 1.5 thorpej *
3253 1.5 thorpej * Callback from PHY when media changes. This version is
3254 1.5 thorpej * for the Winbond 89C840F, which has different OPMODE bits.
3255 1.5 thorpej */
3256 1.138 thorpej static void
3257 1.181 matt tlp_winb_mii_statchg(struct ifnet *ifp)
3258 1.5 thorpej {
3259 1.181 matt struct tulip_softc *sc = ifp->if_softc;
3260 1.5 thorpej
3261 1.5 thorpej /* Idle the transmit and receive processes. */
3262 1.194 msaitoh tlp_idle(sc, OPMODE_ST | OPMODE_SR);
3263 1.5 thorpej
3264 1.194 msaitoh sc->sc_opmode &= ~(OPMODE_WINB_FES | OPMODE_FD);
3265 1.7 thorpej
3266 1.5 thorpej if (IFM_SUBTYPE(sc->sc_mii.mii_media_active) == IFM_100_TX)
3267 1.5 thorpej sc->sc_opmode |= OPMODE_WINB_FES;
3268 1.5 thorpej
3269 1.5 thorpej if (sc->sc_mii.mii_media_active & IFM_FDX)
3270 1.5 thorpej sc->sc_opmode |= OPMODE_FD;
3271 1.5 thorpej
3272 1.5 thorpej /*
3273 1.5 thorpej * Write new OPMODE bits. This also restarts the transmit
3274 1.5 thorpej * and receive processes.
3275 1.5 thorpej */
3276 1.5 thorpej TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode);
3277 1.5 thorpej }
3278 1.5 thorpej
3279 1.5 thorpej /*
3280 1.68 thorpej * tlp_dm9102_mii_statchg: [mii interface function]
3281 1.68 thorpej *
3282 1.68 thorpej * Callback from PHY when media changes. This version is
3283 1.68 thorpej * for the DM9102.
3284 1.68 thorpej */
3285 1.138 thorpej static void
3286 1.181 matt tlp_dm9102_mii_statchg(struct ifnet *ifp)
3287 1.68 thorpej {
3288 1.181 matt struct tulip_softc *sc = ifp->if_softc;
3289 1.68 thorpej
3290 1.68 thorpej /*
3291 1.68 thorpej * Don't idle the transmit and receive processes, here. It
3292 1.68 thorpej * seems to fail, and just causes excess noise.
3293 1.68 thorpej */
3294 1.194 msaitoh sc->sc_opmode &= ~(OPMODE_TTM | OPMODE_FD);
3295 1.68 thorpej
3296 1.68 thorpej if (IFM_SUBTYPE(sc->sc_mii.mii_media_active) != IFM_100_TX)
3297 1.68 thorpej sc->sc_opmode |= OPMODE_TTM;
3298 1.68 thorpej
3299 1.68 thorpej if (sc->sc_mii.mii_media_active & IFM_FDX)
3300 1.68 thorpej sc->sc_opmode |= OPMODE_FD;
3301 1.68 thorpej
3302 1.68 thorpej /*
3303 1.68 thorpej * Write new OPMODE bits.
3304 1.68 thorpej */
3305 1.68 thorpej TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode);
3306 1.68 thorpej }
3307 1.68 thorpej
3308 1.68 thorpej /*
3309 1.1 thorpej * tlp_mii_getmedia:
3310 1.1 thorpej *
3311 1.1 thorpej * Callback from ifmedia to request current media status.
3312 1.1 thorpej */
3313 1.138 thorpej static void
3314 1.138 thorpej tlp_mii_getmedia(struct tulip_softc *sc, struct ifmediareq *ifmr)
3315 1.1 thorpej {
3316 1.194 msaitoh struct mii_data * const mii = &sc->sc_mii;
3317 1.1 thorpej
3318 1.194 msaitoh mii_pollstat(mii);
3319 1.194 msaitoh ifmr->ifm_status = mii->mii_media_status;
3320 1.194 msaitoh ifmr->ifm_active = mii->mii_media_active;
3321 1.1 thorpej }
3322 1.1 thorpej
3323 1.1 thorpej /*
3324 1.1 thorpej * tlp_mii_setmedia:
3325 1.1 thorpej *
3326 1.1 thorpej * Callback from ifmedia to request new media setting.
3327 1.1 thorpej */
3328 1.138 thorpej static int
3329 1.138 thorpej tlp_mii_setmedia(struct tulip_softc *sc)
3330 1.1 thorpej {
3331 1.1 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
3332 1.157 dyoung int rc;
3333 1.1 thorpej
3334 1.157 dyoung if ((ifp->if_flags & IFF_UP) == 0)
3335 1.157 dyoung return 0;
3336 1.157 dyoung switch (sc->sc_chip) {
3337 1.157 dyoung case TULIP_CHIP_21142:
3338 1.157 dyoung case TULIP_CHIP_21143:
3339 1.157 dyoung /* Disable the internal Nway engine. */
3340 1.157 dyoung TULIP_WRITE(sc, CSR_SIATXRX, 0);
3341 1.157 dyoung break;
3342 1.58 thorpej
3343 1.157 dyoung default:
3344 1.157 dyoung /* Nothing. */
3345 1.157 dyoung break;
3346 1.57 mycroft }
3347 1.157 dyoung if ((rc = mii_mediachg(&sc->sc_mii)) == ENXIO)
3348 1.157 dyoung return 0;
3349 1.157 dyoung return rc;
3350 1.1 thorpej }
3351 1.1 thorpej
3352 1.1 thorpej /*
3353 1.33 thorpej * tlp_bitbang_mii_readreg:
3354 1.1 thorpej *
3355 1.33 thorpej * Read a PHY register via bit-bang'ing the MII.
3356 1.1 thorpej */
3357 1.138 thorpej static int
3358 1.192 msaitoh tlp_bitbang_mii_readreg(device_t self, int phy, int reg, uint16_t *val)
3359 1.1 thorpej {
3360 1.166 cegger struct tulip_softc *sc = device_private(self);
3361 1.1 thorpej
3362 1.192 msaitoh return mii_bitbang_readreg(self, sc->sc_bitbang_ops, phy, reg, val);
3363 1.1 thorpej }
3364 1.1 thorpej
3365 1.1 thorpej /*
3366 1.33 thorpej * tlp_bitbang_mii_writereg:
3367 1.1 thorpej *
3368 1.33 thorpej * Write a PHY register via bit-bang'ing the MII.
3369 1.1 thorpej */
3370 1.192 msaitoh static int
3371 1.192 msaitoh tlp_bitbang_mii_writereg(device_t self, int phy, int reg, uint16_t val)
3372 1.1 thorpej {
3373 1.166 cegger struct tulip_softc *sc = device_private(self);
3374 1.1 thorpej
3375 1.192 msaitoh return mii_bitbang_writereg(self, sc->sc_bitbang_ops, phy, reg, val);
3376 1.1 thorpej }
3377 1.1 thorpej
3378 1.1 thorpej /*
3379 1.33 thorpej * tlp_sio_mii_bitbang_read:
3380 1.1 thorpej *
3381 1.33 thorpej * Read the MII serial port for the MII bit-bang module.
3382 1.1 thorpej */
3383 1.165 cegger static uint32_t
3384 1.165 cegger tlp_sio_mii_bitbang_read(device_t self)
3385 1.1 thorpej {
3386 1.166 cegger struct tulip_softc *sc = device_private(self);
3387 1.1 thorpej
3388 1.194 msaitoh return TULIP_READ(sc, CSR_MIIROM);
3389 1.1 thorpej }
3390 1.1 thorpej
3391 1.1 thorpej /*
3392 1.33 thorpej * tlp_sio_mii_bitbang_write:
3393 1.1 thorpej *
3394 1.33 thorpej * Write the MII serial port for the MII bit-bang module.
3395 1.1 thorpej */
3396 1.138 thorpej static void
3397 1.165 cegger tlp_sio_mii_bitbang_write(device_t self, uint32_t val)
3398 1.1 thorpej {
3399 1.166 cegger struct tulip_softc *sc = device_private(self);
3400 1.1 thorpej
3401 1.33 thorpej TULIP_WRITE(sc, CSR_MIIROM, val);
3402 1.1 thorpej }
3403 1.1 thorpej
3404 1.1 thorpej /*
3405 1.1 thorpej * tlp_pnic_mii_readreg:
3406 1.1 thorpej *
3407 1.1 thorpej * Read a PHY register on the Lite-On PNIC.
3408 1.1 thorpej */
3409 1.138 thorpej static int
3410 1.192 msaitoh tlp_pnic_mii_readreg(device_t self, int phy, int reg, uint16_t *val)
3411 1.1 thorpej {
3412 1.166 cegger struct tulip_softc *sc = device_private(self);
3413 1.192 msaitoh uint32_t data;
3414 1.1 thorpej int i;
3415 1.1 thorpej
3416 1.1 thorpej TULIP_WRITE(sc, CSR_PNIC_MII,
3417 1.6 thorpej PNIC_MII_MBO | PNIC_MII_RESERVED |
3418 1.1 thorpej PNIC_MII_READ | (phy << PNIC_MII_PHYSHIFT) |
3419 1.1 thorpej (reg << PNIC_MII_REGSHIFT));
3420 1.1 thorpej
3421 1.1 thorpej for (i = 0; i < 1000; i++) {
3422 1.1 thorpej delay(10);
3423 1.192 msaitoh data = TULIP_READ(sc, CSR_PNIC_MII);
3424 1.192 msaitoh if ((data & PNIC_MII_BUSY) == 0) {
3425 1.192 msaitoh if ((data & PNIC_MII_DATA) == PNIC_MII_DATA)
3426 1.192 msaitoh return -1;
3427 1.192 msaitoh else {
3428 1.192 msaitoh *val = data & PNIC_MII_DATA;
3429 1.192 msaitoh return 0;
3430 1.192 msaitoh }
3431 1.1 thorpej }
3432 1.1 thorpej }
3433 1.167 cegger printf("%s: MII read timed out\n", device_xname(sc->sc_dev));
3434 1.192 msaitoh return ETIMEDOUT;
3435 1.1 thorpej }
3436 1.1 thorpej
3437 1.1 thorpej /*
3438 1.1 thorpej * tlp_pnic_mii_writereg:
3439 1.1 thorpej *
3440 1.1 thorpej * Write a PHY register on the Lite-On PNIC.
3441 1.1 thorpej */
3442 1.192 msaitoh static int
3443 1.192 msaitoh tlp_pnic_mii_writereg(device_t self, int phy, int reg, uint16_t val)
3444 1.1 thorpej {
3445 1.166 cegger struct tulip_softc *sc = device_private(self);
3446 1.1 thorpej int i;
3447 1.1 thorpej
3448 1.1 thorpej TULIP_WRITE(sc, CSR_PNIC_MII,
3449 1.6 thorpej PNIC_MII_MBO | PNIC_MII_RESERVED |
3450 1.1 thorpej PNIC_MII_WRITE | (phy << PNIC_MII_PHYSHIFT) |
3451 1.1 thorpej (reg << PNIC_MII_REGSHIFT) | val);
3452 1.1 thorpej
3453 1.1 thorpej for (i = 0; i < 1000; i++) {
3454 1.1 thorpej delay(10);
3455 1.1 thorpej if (TULIP_ISSET(sc, CSR_PNIC_MII, PNIC_MII_BUSY) == 0)
3456 1.192 msaitoh return 0;
3457 1.1 thorpej }
3458 1.167 cegger printf("%s: MII write timed out\n", device_xname(sc->sc_dev));
3459 1.192 msaitoh return ETIMEDOUT;
3460 1.1 thorpej }
3461 1.1 thorpej
3462 1.138 thorpej static const bus_addr_t tlp_al981_phy_regmap[] = {
3463 1.21 thorpej CSR_ADM_BMCR,
3464 1.21 thorpej CSR_ADM_BMSR,
3465 1.21 thorpej CSR_ADM_PHYIDR1,
3466 1.21 thorpej CSR_ADM_PHYIDR2,
3467 1.21 thorpej CSR_ADM_ANAR,
3468 1.21 thorpej CSR_ADM_ANLPAR,
3469 1.21 thorpej CSR_ADM_ANER,
3470 1.21 thorpej
3471 1.21 thorpej CSR_ADM_XMC,
3472 1.21 thorpej CSR_ADM_XCIIS,
3473 1.21 thorpej CSR_ADM_XIE,
3474 1.21 thorpej CSR_ADM_100CTR,
3475 1.21 thorpej };
3476 1.138 thorpej static const int tlp_al981_phy_regmap_size = sizeof(tlp_al981_phy_regmap) /
3477 1.21 thorpej sizeof(tlp_al981_phy_regmap[0]);
3478 1.21 thorpej
3479 1.21 thorpej /*
3480 1.21 thorpej * tlp_al981_mii_readreg:
3481 1.21 thorpej *
3482 1.21 thorpej * Read a PHY register on the ADMtek AL981.
3483 1.21 thorpej */
3484 1.138 thorpej static int
3485 1.192 msaitoh tlp_al981_mii_readreg(device_t self, int phy, int reg, uint16_t *val)
3486 1.21 thorpej {
3487 1.166 cegger struct tulip_softc *sc = device_private(self);
3488 1.21 thorpej
3489 1.21 thorpej /* AL981 only has an internal PHY. */
3490 1.21 thorpej if (phy != 0)
3491 1.192 msaitoh return -1;
3492 1.21 thorpej
3493 1.21 thorpej if (reg >= tlp_al981_phy_regmap_size)
3494 1.192 msaitoh return -1;
3495 1.21 thorpej
3496 1.192 msaitoh *val = bus_space_read_4(sc->sc_st, sc->sc_sh,
3497 1.192 msaitoh tlp_al981_phy_regmap[reg]) & 0xffff;
3498 1.192 msaitoh return 0;
3499 1.21 thorpej }
3500 1.21 thorpej
3501 1.21 thorpej /*
3502 1.21 thorpej * tlp_al981_mii_writereg:
3503 1.21 thorpej *
3504 1.21 thorpej * Write a PHY register on the ADMtek AL981.
3505 1.21 thorpej */
3506 1.192 msaitoh static int
3507 1.192 msaitoh tlp_al981_mii_writereg(device_t self, int phy, int reg, uint16_t val)
3508 1.21 thorpej {
3509 1.166 cegger struct tulip_softc *sc = device_private(self);
3510 1.21 thorpej
3511 1.21 thorpej /* AL981 only has an internal PHY. */
3512 1.21 thorpej if (phy != 0)
3513 1.192 msaitoh return -1;
3514 1.21 thorpej
3515 1.21 thorpej if (reg >= tlp_al981_phy_regmap_size)
3516 1.192 msaitoh return -1;
3517 1.21 thorpej
3518 1.21 thorpej bus_space_write_4(sc->sc_st, sc->sc_sh,
3519 1.21 thorpej tlp_al981_phy_regmap[reg], val);
3520 1.192 msaitoh
3521 1.192 msaitoh return 0;
3522 1.21 thorpej }
3523 1.21 thorpej
3524 1.1 thorpej /*****************************************************************************
3525 1.13 thorpej * Chip-specific pre-init and reset functions.
3526 1.13 thorpej *****************************************************************************/
3527 1.13 thorpej
3528 1.13 thorpej /*
3529 1.13 thorpej * tlp_2114x_preinit:
3530 1.13 thorpej *
3531 1.13 thorpej * Pre-init function shared by DECchip 21140, 21140A, 21142, and 21143.
3532 1.13 thorpej */
3533 1.138 thorpej static void
3534 1.138 thorpej tlp_2114x_preinit(struct tulip_softc *sc)
3535 1.13 thorpej {
3536 1.17 thorpej struct ifmedia_entry *ife = sc->sc_mii.mii_media.ifm_cur;
3537 1.27 thorpej struct tulip_21x4x_media *tm = ife->ifm_aux;
3538 1.13 thorpej
3539 1.13 thorpej /*
3540 1.27 thorpej * Whether or not we're in MII or SIA/SYM mode, the media info
3541 1.27 thorpej * contains the appropriate OPMODE bits.
3542 1.27 thorpej *
3543 1.27 thorpej * Also, we always set the Must-Be-One bit.
3544 1.13 thorpej */
3545 1.27 thorpej sc->sc_opmode |= OPMODE_MBO | tm->tm_opmode;
3546 1.27 thorpej
3547 1.27 thorpej TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode);
3548 1.27 thorpej }
3549 1.13 thorpej
3550 1.27 thorpej /*
3551 1.27 thorpej * tlp_2114x_mii_preinit:
3552 1.27 thorpej *
3553 1.27 thorpej * Pre-init function shared by DECchip 21140, 21140A, 21142, and 21143.
3554 1.27 thorpej * This version is used by boards which only have MII and don't have
3555 1.27 thorpej * an ISV SROM.
3556 1.27 thorpej */
3557 1.138 thorpej static void
3558 1.138 thorpej tlp_2114x_mii_preinit(struct tulip_softc *sc)
3559 1.27 thorpej {
3560 1.13 thorpej
3561 1.17 thorpej /*
3562 1.27 thorpej * Always set the Must-Be-One bit, and Port Select (to select MII).
3563 1.27 thorpej * We'll never be called during a media change.
3564 1.17 thorpej */
3565 1.194 msaitoh sc->sc_opmode |= OPMODE_MBO | OPMODE_PS;
3566 1.13 thorpej TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode);
3567 1.13 thorpej }
3568 1.13 thorpej
3569 1.13 thorpej /*
3570 1.13 thorpej * tlp_pnic_preinit:
3571 1.13 thorpej *
3572 1.13 thorpej * Pre-init function for the Lite-On 82c168 and 82c169.
3573 1.13 thorpej */
3574 1.138 thorpej static void
3575 1.138 thorpej tlp_pnic_preinit(struct tulip_softc *sc)
3576 1.13 thorpej {
3577 1.13 thorpej
3578 1.13 thorpej if (sc->sc_flags & TULIPF_HAS_MII) {
3579 1.13 thorpej /*
3580 1.13 thorpej * MII case: just set the port-select bit; we will never
3581 1.13 thorpej * be called during a media change.
3582 1.13 thorpej */
3583 1.13 thorpej sc->sc_opmode |= OPMODE_PS;
3584 1.13 thorpej } else {
3585 1.13 thorpej /*
3586 1.16 thorpej * ENDEC/PCS/Nway mode; enable the Tx backoff counter.
3587 1.13 thorpej */
3588 1.16 thorpej sc->sc_opmode |= OPMODE_PNIC_TBEN;
3589 1.13 thorpej }
3590 1.13 thorpej }
3591 1.13 thorpej
3592 1.17 thorpej /*
3593 1.137 rpaulo * tlp_asix_preinit:
3594 1.145 blymn *
3595 1.137 rpaulo * Pre-init function for the ASIX chipsets.
3596 1.137 rpaulo */
3597 1.138 thorpej static void
3598 1.138 thorpej tlp_asix_preinit(struct tulip_softc *sc)
3599 1.137 rpaulo {
3600 1.137 rpaulo
3601 1.137 rpaulo switch (sc->sc_chip) {
3602 1.137 rpaulo case TULIP_CHIP_AX88140:
3603 1.137 rpaulo case TULIP_CHIP_AX88141:
3604 1.137 rpaulo /* XXX Handle PHY. */
3605 1.194 msaitoh sc->sc_opmode |= OPMODE_HBD | OPMODE_PS;
3606 1.137 rpaulo break;
3607 1.137 rpaulo default:
3608 1.137 rpaulo /* Nothing */
3609 1.137 rpaulo break;
3610 1.137 rpaulo }
3611 1.137 rpaulo
3612 1.137 rpaulo TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode);
3613 1.137 rpaulo }
3614 1.137 rpaulo
3615 1.137 rpaulo /*
3616 1.68 thorpej * tlp_dm9102_preinit:
3617 1.68 thorpej *
3618 1.68 thorpej * Pre-init function for the Davicom DM9102.
3619 1.68 thorpej */
3620 1.138 thorpej static void
3621 1.138 thorpej tlp_dm9102_preinit(struct tulip_softc *sc)
3622 1.68 thorpej {
3623 1.68 thorpej
3624 1.68 thorpej switch (sc->sc_chip) {
3625 1.68 thorpej case TULIP_CHIP_DM9102:
3626 1.194 msaitoh sc->sc_opmode |= OPMODE_MBO | OPMODE_HBD | OPMODE_PS;
3627 1.68 thorpej break;
3628 1.68 thorpej
3629 1.68 thorpej case TULIP_CHIP_DM9102A:
3630 1.68 thorpej /*
3631 1.68 thorpej * XXX Figure out how to actually deal with the HomePNA
3632 1.68 thorpej * XXX portion of the DM9102A.
3633 1.68 thorpej */
3634 1.194 msaitoh sc->sc_opmode |= OPMODE_MBO | OPMODE_HBD;
3635 1.68 thorpej break;
3636 1.68 thorpej
3637 1.68 thorpej default:
3638 1.68 thorpej /* Nothing. */
3639 1.91 cgd break;
3640 1.68 thorpej }
3641 1.68 thorpej
3642 1.68 thorpej TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode);
3643 1.68 thorpej }
3644 1.68 thorpej
3645 1.68 thorpej /*
3646 1.17 thorpej * tlp_21140_reset:
3647 1.17 thorpej *
3648 1.17 thorpej * Issue a reset sequence on the 21140 via the GPIO facility.
3649 1.17 thorpej */
3650 1.138 thorpej static void
3651 1.138 thorpej tlp_21140_reset(struct tulip_softc *sc)
3652 1.17 thorpej {
3653 1.17 thorpej struct ifmedia_entry *ife = sc->sc_mii.mii_media.ifm_cur;
3654 1.27 thorpej struct tulip_21x4x_media *tm = ife->ifm_aux;
3655 1.17 thorpej int i;
3656 1.17 thorpej
3657 1.17 thorpej /* First, set the direction on the GPIO pins. */
3658 1.194 msaitoh TULIP_WRITE(sc, CSR_GPP, GPP_GPC | sc->sc_gp_dir);
3659 1.17 thorpej
3660 1.17 thorpej /* Now, issue the reset sequence. */
3661 1.17 thorpej for (i = 0; i < tm->tm_reset_length; i++) {
3662 1.17 thorpej delay(10);
3663 1.17 thorpej TULIP_WRITE(sc, CSR_GPP, sc->sc_srom[tm->tm_reset_offset + i]);
3664 1.17 thorpej }
3665 1.17 thorpej
3666 1.17 thorpej /* Now, issue the selection sequence. */
3667 1.17 thorpej for (i = 0; i < tm->tm_gp_length; i++) {
3668 1.17 thorpej delay(10);
3669 1.17 thorpej TULIP_WRITE(sc, CSR_GPP, sc->sc_srom[tm->tm_gp_offset + i]);
3670 1.17 thorpej }
3671 1.17 thorpej
3672 1.17 thorpej /* If there were no sequences, just lower the pins. */
3673 1.116 mycroft if (tm->tm_reset_length == 0 && tm->tm_gp_length == 0) {
3674 1.116 mycroft delay(10);
3675 1.17 thorpej TULIP_WRITE(sc, CSR_GPP, 0);
3676 1.116 mycroft }
3677 1.17 thorpej }
3678 1.17 thorpej
3679 1.26 thorpej /*
3680 1.33 thorpej * tlp_21142_reset:
3681 1.33 thorpej *
3682 1.33 thorpej * Issue a reset sequence on the 21142 via the GPIO facility.
3683 1.33 thorpej */
3684 1.138 thorpej static void
3685 1.138 thorpej tlp_21142_reset(struct tulip_softc *sc)
3686 1.33 thorpej {
3687 1.33 thorpej struct ifmedia_entry *ife = sc->sc_mii.mii_media.ifm_cur;
3688 1.33 thorpej struct tulip_21x4x_media *tm = ife->ifm_aux;
3689 1.165 cegger const uint8_t *cp;
3690 1.33 thorpej int i;
3691 1.33 thorpej
3692 1.105 chs cp = &sc->sc_srom[tm->tm_reset_offset];
3693 1.105 chs for (i = 0; i < tm->tm_reset_length; i++, cp += 2) {
3694 1.33 thorpej delay(10);
3695 1.105 chs TULIP_WRITE(sc, CSR_SIAGEN, TULIP_ROM_GETW(cp, 0) << 16);
3696 1.33 thorpej }
3697 1.33 thorpej
3698 1.105 chs cp = &sc->sc_srom[tm->tm_gp_offset];
3699 1.105 chs for (i = 0; i < tm->tm_gp_length; i++, cp += 2) {
3700 1.33 thorpej delay(10);
3701 1.105 chs TULIP_WRITE(sc, CSR_SIAGEN, TULIP_ROM_GETW(cp, 0) << 16);
3702 1.33 thorpej }
3703 1.33 thorpej
3704 1.33 thorpej /* If there were no sequences, just lower the pins. */
3705 1.33 thorpej if (tm->tm_reset_length == 0 && tm->tm_gp_length == 0) {
3706 1.33 thorpej delay(10);
3707 1.33 thorpej TULIP_WRITE(sc, CSR_SIAGEN, 0);
3708 1.33 thorpej }
3709 1.33 thorpej }
3710 1.33 thorpej
3711 1.33 thorpej /*
3712 1.26 thorpej * tlp_pmac_reset:
3713 1.26 thorpej *
3714 1.26 thorpej * Reset routine for Macronix chips.
3715 1.26 thorpej */
3716 1.138 thorpej static void
3717 1.138 thorpej tlp_pmac_reset(struct tulip_softc *sc)
3718 1.26 thorpej {
3719 1.26 thorpej
3720 1.26 thorpej switch (sc->sc_chip) {
3721 1.26 thorpej case TULIP_CHIP_82C115:
3722 1.26 thorpej case TULIP_CHIP_MX98715:
3723 1.26 thorpej case TULIP_CHIP_MX98715A:
3724 1.26 thorpej case TULIP_CHIP_MX98725:
3725 1.26 thorpej /*
3726 1.26 thorpej * Set the LED operating mode. This information is located
3727 1.26 thorpej * in the EEPROM at byte offset 0x77, per the MX98715A and
3728 1.26 thorpej * MX98725 application notes.
3729 1.26 thorpej */
3730 1.26 thorpej TULIP_WRITE(sc, CSR_MIIROM, sc->sc_srom[0x77] << 24);
3731 1.26 thorpej break;
3732 1.71 castor case TULIP_CHIP_MX98715AEC_X:
3733 1.71 castor /*
3734 1.71 castor * Set the LED operating mode. This information is located
3735 1.71 castor * in the EEPROM at byte offset 0x76, per the MX98715AEC
3736 1.71 castor * application note.
3737 1.71 castor */
3738 1.71 castor TULIP_WRITE(sc, CSR_MIIROM, ((0xf & sc->sc_srom[0x76]) << 28)
3739 1.71 castor | ((0xf0 & sc->sc_srom[0x76]) << 20));
3740 1.71 castor break;
3741 1.26 thorpej
3742 1.26 thorpej default:
3743 1.26 thorpej /* Nothing. */
3744 1.91 cgd break;
3745 1.26 thorpej }
3746 1.26 thorpej }
3747 1.26 thorpej
3748 1.138 thorpej #if 0
3749 1.68 thorpej /*
3750 1.68 thorpej * tlp_dm9102_reset:
3751 1.68 thorpej *
3752 1.68 thorpej * Reset routine for the Davicom DM9102.
3753 1.68 thorpej */
3754 1.138 thorpej static void
3755 1.138 thorpej tlp_dm9102_reset(struct tulip_softc *sc)
3756 1.68 thorpej {
3757 1.68 thorpej
3758 1.194 msaitoh TULIP_WRITE(sc, CSR_DM_PHYSTAT, DM_PHYSTAT_GEPC | DM_PHYSTAT_GPED);
3759 1.68 thorpej delay(100);
3760 1.68 thorpej TULIP_WRITE(sc, CSR_DM_PHYSTAT, 0);
3761 1.68 thorpej }
3762 1.138 thorpej #endif
3763 1.68 thorpej
3764 1.13 thorpej /*****************************************************************************
3765 1.1 thorpej * Chip/board-specific media switches. The ones here are ones that
3766 1.1 thorpej * are potentially common to multiple front-ends.
3767 1.1 thorpej *****************************************************************************/
3768 1.1 thorpej
3769 1.27 thorpej /*
3770 1.27 thorpej * This table is a common place for all sorts of media information,
3771 1.27 thorpej * keyed off of the SROM media code for that media.
3772 1.27 thorpej *
3773 1.27 thorpej * Note that we explicitly configure the 21142/21143 to always advertise
3774 1.27 thorpej * NWay capabilities when using the UTP port.
3775 1.27 thorpej * XXX Actually, we don't yet.
3776 1.27 thorpej */
3777 1.138 thorpej static const struct tulip_srom_to_ifmedia tulip_srom_to_ifmedia_table[] = {
3778 1.19 thorpej { TULIP_ROM_MB_MEDIA_TP, IFM_10_T, 0,
3779 1.27 thorpej "10baseT",
3780 1.110 mycroft OPMODE_TTM,
3781 1.119 thorpej BMSR_10THDX,
3782 1.27 thorpej { SIACONN_21040_10BASET,
3783 1.27 thorpej SIATXRX_21040_10BASET,
3784 1.27 thorpej SIAGEN_21040_10BASET },
3785 1.27 thorpej
3786 1.27 thorpej { SIACONN_21041_10BASET,
3787 1.27 thorpej SIATXRX_21041_10BASET,
3788 1.27 thorpej SIAGEN_21041_10BASET },
3789 1.27 thorpej
3790 1.27 thorpej { SIACONN_21142_10BASET,
3791 1.27 thorpej SIATXRX_21142_10BASET,
3792 1.27 thorpej SIAGEN_21142_10BASET } },
3793 1.19 thorpej
3794 1.19 thorpej { TULIP_ROM_MB_MEDIA_BNC, IFM_10_2, 0,
3795 1.27 thorpej "10base2",
3796 1.27 thorpej 0,
3797 1.119 thorpej 0,
3798 1.27 thorpej { 0,
3799 1.27 thorpej 0,
3800 1.27 thorpej 0 },
3801 1.27 thorpej
3802 1.27 thorpej { SIACONN_21041_BNC,
3803 1.27 thorpej SIATXRX_21041_BNC,
3804 1.27 thorpej SIAGEN_21041_BNC },
3805 1.27 thorpej
3806 1.27 thorpej { SIACONN_21142_BNC,
3807 1.27 thorpej SIATXRX_21142_BNC,
3808 1.27 thorpej SIAGEN_21142_BNC } },
3809 1.19 thorpej
3810 1.19 thorpej { TULIP_ROM_MB_MEDIA_AUI, IFM_10_5, 0,
3811 1.27 thorpej "10base5",
3812 1.27 thorpej 0,
3813 1.119 thorpej 0,
3814 1.27 thorpej { SIACONN_21040_AUI,
3815 1.27 thorpej SIATXRX_21040_AUI,
3816 1.27 thorpej SIAGEN_21040_AUI },
3817 1.27 thorpej
3818 1.27 thorpej { SIACONN_21041_AUI,
3819 1.27 thorpej SIATXRX_21041_AUI,
3820 1.27 thorpej SIAGEN_21041_AUI },
3821 1.27 thorpej
3822 1.27 thorpej { SIACONN_21142_AUI,
3823 1.27 thorpej SIATXRX_21142_AUI,
3824 1.27 thorpej SIAGEN_21142_AUI } },
3825 1.19 thorpej
3826 1.19 thorpej { TULIP_ROM_MB_MEDIA_100TX, IFM_100_TX, 0,
3827 1.27 thorpej "100baseTX",
3828 1.194 msaitoh OPMODE_PS | OPMODE_PCS | OPMODE_SCR | OPMODE_HBD,
3829 1.119 thorpej BMSR_100TXHDX,
3830 1.27 thorpej { 0,
3831 1.27 thorpej 0,
3832 1.27 thorpej 0 },
3833 1.135 perry
3834 1.27 thorpej { 0,
3835 1.27 thorpej 0,
3836 1.27 thorpej 0 },
3837 1.27 thorpej
3838 1.27 thorpej { 0,
3839 1.27 thorpej 0,
3840 1.27 thorpej SIAGEN_ABM } },
3841 1.19 thorpej
3842 1.19 thorpej { TULIP_ROM_MB_MEDIA_TP_FDX, IFM_10_T, IFM_FDX,
3843 1.27 thorpej "10baseT-FDX",
3844 1.194 msaitoh OPMODE_TTM | OPMODE_FD | OPMODE_HBD,
3845 1.119 thorpej BMSR_10TFDX,
3846 1.27 thorpej { SIACONN_21040_10BASET_FDX,
3847 1.27 thorpej SIATXRX_21040_10BASET_FDX,
3848 1.27 thorpej SIAGEN_21040_10BASET_FDX },
3849 1.27 thorpej
3850 1.27 thorpej { SIACONN_21041_10BASET_FDX,
3851 1.27 thorpej SIATXRX_21041_10BASET_FDX,
3852 1.27 thorpej SIAGEN_21041_10BASET_FDX },
3853 1.27 thorpej
3854 1.27 thorpej { SIACONN_21142_10BASET_FDX,
3855 1.27 thorpej SIATXRX_21142_10BASET_FDX,
3856 1.27 thorpej SIAGEN_21142_10BASET_FDX } },
3857 1.19 thorpej
3858 1.19 thorpej { TULIP_ROM_MB_MEDIA_100TX_FDX, IFM_100_TX, IFM_FDX,
3859 1.27 thorpej "100baseTX-FDX",
3860 1.194 msaitoh OPMODE_PS | OPMODE_PCS | OPMODE_SCR | OPMODE_FD | OPMODE_HBD,
3861 1.119 thorpej BMSR_100TXFDX,
3862 1.27 thorpej { 0,
3863 1.27 thorpej 0,
3864 1.27 thorpej 0 },
3865 1.27 thorpej
3866 1.27 thorpej { 0,
3867 1.27 thorpej 0,
3868 1.27 thorpej 0 },
3869 1.27 thorpej
3870 1.27 thorpej { 0,
3871 1.27 thorpej 0,
3872 1.27 thorpej SIAGEN_ABM } },
3873 1.19 thorpej
3874 1.19 thorpej { TULIP_ROM_MB_MEDIA_100T4, IFM_100_T4, 0,
3875 1.27 thorpej "100baseT4",
3876 1.194 msaitoh OPMODE_PS | OPMODE_PCS | OPMODE_SCR | OPMODE_HBD,
3877 1.119 thorpej BMSR_100T4,
3878 1.27 thorpej { 0,
3879 1.27 thorpej 0,
3880 1.27 thorpej 0 },
3881 1.27 thorpej
3882 1.27 thorpej { 0,
3883 1.27 thorpej 0,
3884 1.27 thorpej 0 },
3885 1.27 thorpej
3886 1.27 thorpej { 0,
3887 1.27 thorpej 0,
3888 1.27 thorpej SIAGEN_ABM } },
3889 1.19 thorpej
3890 1.19 thorpej { TULIP_ROM_MB_MEDIA_100FX, IFM_100_FX, 0,
3891 1.27 thorpej "100baseFX",
3892 1.194 msaitoh OPMODE_PS | OPMODE_PCS | OPMODE_HBD,
3893 1.119 thorpej 0,
3894 1.27 thorpej { 0,
3895 1.27 thorpej 0,
3896 1.27 thorpej 0 },
3897 1.27 thorpej
3898 1.27 thorpej { 0,
3899 1.27 thorpej 0,
3900 1.27 thorpej 0 },
3901 1.27 thorpej
3902 1.27 thorpej { 0,
3903 1.27 thorpej 0,
3904 1.27 thorpej SIAGEN_ABM } },
3905 1.19 thorpej
3906 1.19 thorpej { TULIP_ROM_MB_MEDIA_100FX_FDX, IFM_100_FX, IFM_FDX,
3907 1.27 thorpej "100baseFX-FDX",
3908 1.194 msaitoh OPMODE_PS | OPMODE_PCS | OPMODE_FD | OPMODE_HBD,
3909 1.119 thorpej 0,
3910 1.27 thorpej { 0,
3911 1.27 thorpej 0,
3912 1.27 thorpej 0 },
3913 1.27 thorpej
3914 1.27 thorpej { 0,
3915 1.27 thorpej 0,
3916 1.27 thorpej 0 },
3917 1.27 thorpej
3918 1.27 thorpej { 0,
3919 1.27 thorpej 0,
3920 1.27 thorpej SIAGEN_ABM } },
3921 1.19 thorpej
3922 1.19 thorpej { 0, 0, 0,
3923 1.27 thorpej NULL,
3924 1.27 thorpej 0,
3925 1.119 thorpej 0,
3926 1.27 thorpej { 0,
3927 1.27 thorpej 0,
3928 1.27 thorpej 0 },
3929 1.27 thorpej
3930 1.27 thorpej { 0,
3931 1.27 thorpej 0,
3932 1.27 thorpej 0 },
3933 1.27 thorpej
3934 1.27 thorpej { 0,
3935 1.27 thorpej 0,
3936 1.27 thorpej 0 } },
3937 1.19 thorpej };
3938 1.19 thorpej
3939 1.165 cegger static const struct tulip_srom_to_ifmedia *tlp_srom_to_ifmedia(uint8_t);
3940 1.138 thorpej static void tlp_srom_media_info(struct tulip_softc *,
3941 1.138 thorpej const struct tulip_srom_to_ifmedia *,
3942 1.138 thorpej struct tulip_21x4x_media *);
3943 1.138 thorpej static void tlp_add_srom_media(struct tulip_softc *, int,
3944 1.138 thorpej void (*)(struct tulip_softc *, struct ifmediareq *),
3945 1.165 cegger int (*)(struct tulip_softc *), const uint8_t *, int);
3946 1.138 thorpej static void tlp_print_media(struct tulip_softc *);
3947 1.138 thorpej static void tlp_nway_activate(struct tulip_softc *, int);
3948 1.138 thorpej static void tlp_get_minst(struct tulip_softc *);
3949 1.138 thorpej
3950 1.138 thorpej static const struct tulip_srom_to_ifmedia *
3951 1.165 cegger tlp_srom_to_ifmedia(uint8_t sm)
3952 1.19 thorpej {
3953 1.19 thorpej const struct tulip_srom_to_ifmedia *tsti;
3954 1.19 thorpej
3955 1.19 thorpej for (tsti = tulip_srom_to_ifmedia_table;
3956 1.19 thorpej tsti->tsti_name != NULL; tsti++) {
3957 1.19 thorpej if (tsti->tsti_srom == sm)
3958 1.194 msaitoh return tsti;
3959 1.19 thorpej }
3960 1.19 thorpej
3961 1.194 msaitoh return NULL;
3962 1.19 thorpej }
3963 1.19 thorpej
3964 1.138 thorpej static void
3965 1.138 thorpej tlp_srom_media_info(struct tulip_softc *sc,
3966 1.138 thorpej const struct tulip_srom_to_ifmedia *tsti, struct tulip_21x4x_media *tm)
3967 1.27 thorpej {
3968 1.7 thorpej
3969 1.27 thorpej tm->tm_name = tsti->tsti_name;
3970 1.27 thorpej tm->tm_opmode = tsti->tsti_opmode;
3971 1.7 thorpej
3972 1.119 thorpej sc->sc_sia_cap |= tsti->tsti_sia_cap;
3973 1.119 thorpej
3974 1.27 thorpej switch (sc->sc_chip) {
3975 1.27 thorpej case TULIP_CHIP_DE425:
3976 1.27 thorpej case TULIP_CHIP_21040:
3977 1.27 thorpej tm->tm_sia = tsti->tsti_21040; /* struct assignment */
3978 1.27 thorpej break;
3979 1.7 thorpej
3980 1.27 thorpej case TULIP_CHIP_21041:
3981 1.27 thorpej tm->tm_sia = tsti->tsti_21041; /* struct assignment */
3982 1.27 thorpej break;
3983 1.7 thorpej
3984 1.27 thorpej case TULIP_CHIP_21142:
3985 1.27 thorpej case TULIP_CHIP_21143:
3986 1.27 thorpej case TULIP_CHIP_82C115:
3987 1.27 thorpej case TULIP_CHIP_MX98715:
3988 1.27 thorpej case TULIP_CHIP_MX98715A:
3989 1.71 castor case TULIP_CHIP_MX98715AEC_X:
3990 1.27 thorpej case TULIP_CHIP_MX98725:
3991 1.27 thorpej tm->tm_sia = tsti->tsti_21142; /* struct assignment */
3992 1.27 thorpej break;
3993 1.13 thorpej
3994 1.27 thorpej default:
3995 1.27 thorpej /* Nothing. */
3996 1.91 cgd break;
3997 1.27 thorpej }
3998 1.27 thorpej }
3999 1.7 thorpej
4000 1.138 thorpej static void
4001 1.138 thorpej tlp_add_srom_media(struct tulip_softc *sc, int type,
4002 1.138 thorpej void (*get)(struct tulip_softc *, struct ifmediareq *),
4003 1.165 cegger int (*set)(struct tulip_softc *), const uint8_t *list,
4004 1.138 thorpej int cnt)
4005 1.7 thorpej {
4006 1.27 thorpej struct tulip_21x4x_media *tm;
4007 1.27 thorpej const struct tulip_srom_to_ifmedia *tsti;
4008 1.27 thorpej int i;
4009 1.7 thorpej
4010 1.27 thorpej for (i = 0; i < cnt; i++) {
4011 1.27 thorpej tsti = tlp_srom_to_ifmedia(list[i]);
4012 1.194 msaitoh tm = malloc(sizeof(*tm), M_DEVBUF, M_WAITOK | M_ZERO);
4013 1.27 thorpej tlp_srom_media_info(sc, tsti, tm);
4014 1.27 thorpej tm->tm_type = type;
4015 1.27 thorpej tm->tm_get = get;
4016 1.27 thorpej tm->tm_set = set;
4017 1.7 thorpej
4018 1.27 thorpej ifmedia_add(&sc->sc_mii.mii_media,
4019 1.27 thorpej IFM_MAKEWORD(IFM_ETHER, tsti->tsti_subtype,
4020 1.27 thorpej tsti->tsti_options, sc->sc_tlp_minst), 0, tm);
4021 1.27 thorpej }
4022 1.7 thorpej }
4023 1.7 thorpej
4024 1.138 thorpej static void
4025 1.138 thorpej tlp_print_media(struct tulip_softc *sc)
4026 1.7 thorpej {
4027 1.27 thorpej struct ifmedia_entry *ife;
4028 1.27 thorpej struct tulip_21x4x_media *tm;
4029 1.7 thorpej const char *sep = "";
4030 1.7 thorpej
4031 1.171 jmcneill #define PRINT(str) aprint_normal("%s%s", sep, str); sep = ", "
4032 1.7 thorpej
4033 1.171 jmcneill aprint_normal_dev(sc->sc_dev, "");
4034 1.170 dyoung TAILQ_FOREACH(ife, &sc->sc_mii.mii_media.ifm_list, ifm_list) {
4035 1.27 thorpej tm = ife->ifm_aux;
4036 1.27 thorpej if (tm == NULL) {
4037 1.27 thorpej #ifdef DIAGNOSTIC
4038 1.27 thorpej if (IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO)
4039 1.27 thorpej panic("tlp_print_media");
4040 1.27 thorpej #endif
4041 1.27 thorpej PRINT("auto");
4042 1.27 thorpej } else if (tm->tm_type != TULIP_ROM_MB_21140_MII &&
4043 1.27 thorpej tm->tm_type != TULIP_ROM_MB_21142_MII) {
4044 1.27 thorpej PRINT(tm->tm_name);
4045 1.27 thorpej }
4046 1.27 thorpej }
4047 1.171 jmcneill aprint_normal("\n");
4048 1.7 thorpej
4049 1.27 thorpej #undef PRINT
4050 1.7 thorpej }
4051 1.7 thorpej
4052 1.138 thorpej static void
4053 1.138 thorpej tlp_nway_activate(struct tulip_softc *sc, int media)
4054 1.7 thorpej {
4055 1.27 thorpej struct ifmedia_entry *ife;
4056 1.7 thorpej
4057 1.27 thorpej ife = ifmedia_match(&sc->sc_mii.mii_media, media, 0);
4058 1.27 thorpej #ifdef DIAGNOSTIC
4059 1.27 thorpej if (ife == NULL)
4060 1.27 thorpej panic("tlp_nway_activate");
4061 1.27 thorpej #endif
4062 1.27 thorpej sc->sc_nway_active = ife;
4063 1.13 thorpej }
4064 1.13 thorpej
4065 1.138 thorpej static void
4066 1.138 thorpej tlp_get_minst(struct tulip_softc *sc)
4067 1.13 thorpej {
4068 1.13 thorpej
4069 1.27 thorpej if ((sc->sc_media_seen &
4070 1.27 thorpej ~((1 << TULIP_ROM_MB_21140_MII) |
4071 1.27 thorpej (1 << TULIP_ROM_MB_21142_MII))) == 0) {
4072 1.27 thorpej /*
4073 1.27 thorpej * We have not yet seen any SIA/SYM media (but are
4074 1.27 thorpej * about to; that's why we're called!), so assign
4075 1.27 thorpej * the current media instance to be the `internal media'
4076 1.27 thorpej * instance, and advance it so any MII media gets a
4077 1.27 thorpej * fresh one (used to selecting/isolating a PHY).
4078 1.27 thorpej */
4079 1.27 thorpej sc->sc_tlp_minst = sc->sc_mii.mii_instance++;
4080 1.13 thorpej }
4081 1.27 thorpej }
4082 1.13 thorpej
4083 1.27 thorpej /*
4084 1.27 thorpej * SIA Utility functions.
4085 1.27 thorpej */
4086 1.138 thorpej static void tlp_sia_update_link(struct tulip_softc *);
4087 1.138 thorpej static void tlp_sia_get(struct tulip_softc *, struct ifmediareq *);
4088 1.138 thorpej static int tlp_sia_set(struct tulip_softc *);
4089 1.138 thorpej static int tlp_sia_media(struct tulip_softc *, struct ifmedia_entry *);
4090 1.138 thorpej static void tlp_sia_fixup(struct tulip_softc *);
4091 1.13 thorpej
4092 1.138 thorpej static void
4093 1.138 thorpej tlp_sia_update_link(struct tulip_softc *sc)
4094 1.27 thorpej {
4095 1.27 thorpej struct ifmedia_entry *ife;
4096 1.27 thorpej struct tulip_21x4x_media *tm;
4097 1.165 cegger uint32_t siastat;
4098 1.13 thorpej
4099 1.27 thorpej ife = TULIP_CURRENT_MEDIA(sc);
4100 1.27 thorpej tm = ife->ifm_aux;
4101 1.13 thorpej
4102 1.194 msaitoh sc->sc_flags &= ~(TULIPF_LINK_UP | TULIPF_LINK_VALID);
4103 1.13 thorpej
4104 1.27 thorpej siastat = TULIP_READ(sc, CSR_SIASTAT);
4105 1.13 thorpej
4106 1.13 thorpej /*
4107 1.27 thorpej * Note that when we do SIA link tests, we are assuming that
4108 1.27 thorpej * the chip is really in the mode that the current media setting
4109 1.27 thorpej * reflects. If we're not, then the link tests will not be
4110 1.27 thorpej * accurate!
4111 1.13 thorpej */
4112 1.27 thorpej switch (IFM_SUBTYPE(ife->ifm_media)) {
4113 1.27 thorpej case IFM_10_T:
4114 1.27 thorpej sc->sc_flags |= TULIPF_LINK_VALID;
4115 1.27 thorpej if ((siastat & SIASTAT_LS10) == 0)
4116 1.27 thorpej sc->sc_flags |= TULIPF_LINK_UP;
4117 1.13 thorpej break;
4118 1.13 thorpej
4119 1.27 thorpej case IFM_100_TX:
4120 1.27 thorpej case IFM_100_T4:
4121 1.27 thorpej sc->sc_flags |= TULIPF_LINK_VALID;
4122 1.27 thorpej if ((siastat & SIASTAT_LS100) == 0)
4123 1.27 thorpej sc->sc_flags |= TULIPF_LINK_UP;
4124 1.13 thorpej break;
4125 1.13 thorpej }
4126 1.13 thorpej
4127 1.27 thorpej switch (sc->sc_chip) {
4128 1.27 thorpej case TULIP_CHIP_21142:
4129 1.27 thorpej case TULIP_CHIP_21143:
4130 1.13 thorpej /*
4131 1.27 thorpej * On these chips, we can tell more information about
4132 1.27 thorpej * AUI/BNC. Note that the AUI/BNC selection is made
4133 1.27 thorpej * in a different register; for our purpose, it's all
4134 1.27 thorpej * AUI.
4135 1.13 thorpej */
4136 1.27 thorpej switch (IFM_SUBTYPE(ife->ifm_media)) {
4137 1.27 thorpej case IFM_10_2:
4138 1.27 thorpej case IFM_10_5:
4139 1.27 thorpej sc->sc_flags |= TULIPF_LINK_VALID;
4140 1.27 thorpej if (siastat & SIASTAT_ARA) {
4141 1.27 thorpej TULIP_WRITE(sc, CSR_SIASTAT, SIASTAT_ARA);
4142 1.27 thorpej sc->sc_flags |= TULIPF_LINK_UP;
4143 1.27 thorpej }
4144 1.27 thorpej break;
4145 1.27 thorpej
4146 1.27 thorpej default:
4147 1.27 thorpej /*
4148 1.27 thorpej * If we're SYM media and can detect the link
4149 1.27 thorpej * via the GPIO facility, prefer that status
4150 1.27 thorpej * over LS100.
4151 1.27 thorpej */
4152 1.27 thorpej if (tm->tm_type == TULIP_ROM_MB_21143_SYM &&
4153 1.27 thorpej tm->tm_actmask != 0) {
4154 1.27 thorpej sc->sc_flags = (sc->sc_flags &
4155 1.27 thorpej ~TULIPF_LINK_UP) | TULIPF_LINK_VALID;
4156 1.27 thorpej if (TULIP_ISSET(sc, CSR_SIAGEN,
4157 1.27 thorpej tm->tm_actmask) == tm->tm_actdata)
4158 1.27 thorpej sc->sc_flags |= TULIPF_LINK_UP;
4159 1.27 thorpej }
4160 1.27 thorpej }
4161 1.27 thorpej break;
4162 1.13 thorpej
4163 1.27 thorpej default:
4164 1.27 thorpej /* Nothing. */
4165 1.91 cgd break;
4166 1.13 thorpej }
4167 1.27 thorpej }
4168 1.13 thorpej
4169 1.138 thorpej static void
4170 1.138 thorpej tlp_sia_get(struct tulip_softc *sc, struct ifmediareq *ifmr)
4171 1.27 thorpej {
4172 1.27 thorpej struct ifmedia_entry *ife;
4173 1.13 thorpej
4174 1.27 thorpej ifmr->ifm_status = 0;
4175 1.13 thorpej
4176 1.27 thorpej tlp_sia_update_link(sc);
4177 1.13 thorpej
4178 1.27 thorpej ife = TULIP_CURRENT_MEDIA(sc);
4179 1.7 thorpej
4180 1.27 thorpej if (sc->sc_flags & TULIPF_LINK_VALID)
4181 1.27 thorpej ifmr->ifm_status |= IFM_AVALID;
4182 1.27 thorpej if (sc->sc_flags & TULIPF_LINK_UP)
4183 1.27 thorpej ifmr->ifm_status |= IFM_ACTIVE;
4184 1.27 thorpej ifmr->ifm_active = ife->ifm_media;
4185 1.7 thorpej }
4186 1.7 thorpej
4187 1.138 thorpej static void
4188 1.138 thorpej tlp_sia_fixup(struct tulip_softc *sc)
4189 1.7 thorpej {
4190 1.27 thorpej struct ifmedia_entry *ife;
4191 1.27 thorpej struct tulip_21x4x_media *tm;
4192 1.165 cegger uint32_t siaconn, siatxrx, siagen;
4193 1.7 thorpej
4194 1.27 thorpej switch (sc->sc_chip) {
4195 1.27 thorpej case TULIP_CHIP_82C115:
4196 1.27 thorpej case TULIP_CHIP_MX98713A:
4197 1.27 thorpej case TULIP_CHIP_MX98715:
4198 1.27 thorpej case TULIP_CHIP_MX98715A:
4199 1.71 castor case TULIP_CHIP_MX98715AEC_X:
4200 1.27 thorpej case TULIP_CHIP_MX98725:
4201 1.27 thorpej siaconn = PMAC_SIACONN_MASK;
4202 1.27 thorpej siatxrx = PMAC_SIATXRX_MASK;
4203 1.27 thorpej siagen = PMAC_SIAGEN_MASK;
4204 1.7 thorpej break;
4205 1.7 thorpej
4206 1.7 thorpej default:
4207 1.27 thorpej /* No fixups required on any other chips. */
4208 1.27 thorpej return;
4209 1.7 thorpej }
4210 1.27 thorpej
4211 1.170 dyoung TAILQ_FOREACH(ife, &sc->sc_mii.mii_media.ifm_list, ifm_list) {
4212 1.27 thorpej tm = ife->ifm_aux;
4213 1.27 thorpej if (tm == NULL)
4214 1.27 thorpej continue;
4215 1.27 thorpej
4216 1.27 thorpej tm->tm_siaconn &= siaconn;
4217 1.27 thorpej tm->tm_siatxrx &= siatxrx;
4218 1.27 thorpej tm->tm_siagen &= siagen;
4219 1.27 thorpej }
4220 1.27 thorpej }
4221 1.7 thorpej
4222 1.138 thorpej static int
4223 1.138 thorpej tlp_sia_set(struct tulip_softc *sc)
4224 1.7 thorpej {
4225 1.118 chs
4226 1.194 msaitoh return tlp_sia_media(sc, TULIP_CURRENT_MEDIA(sc));
4227 1.118 chs }
4228 1.118 chs
4229 1.138 thorpej static int
4230 1.138 thorpej tlp_sia_media(struct tulip_softc *sc, struct ifmedia_entry *ife)
4231 1.118 chs {
4232 1.27 thorpej struct tulip_21x4x_media *tm;
4233 1.27 thorpej
4234 1.27 thorpej tm = ife->ifm_aux;
4235 1.27 thorpej
4236 1.27 thorpej /*
4237 1.27 thorpej * XXX This appears to be necessary on a bunch of the clone chips.
4238 1.27 thorpej */
4239 1.27 thorpej delay(20000);
4240 1.27 thorpej
4241 1.27 thorpej /*
4242 1.27 thorpej * Idle the chip.
4243 1.27 thorpej */
4244 1.194 msaitoh tlp_idle(sc, OPMODE_ST | OPMODE_SR);
4245 1.27 thorpej
4246 1.27 thorpej /*
4247 1.27 thorpej * Program the SIA. It's important to write in this order,
4248 1.27 thorpej * resetting the SIA first.
4249 1.27 thorpej */
4250 1.27 thorpej TULIP_WRITE(sc, CSR_SIACONN, 0); /* SRL bit clear */
4251 1.27 thorpej delay(1000);
4252 1.27 thorpej
4253 1.27 thorpej TULIP_WRITE(sc, CSR_SIATXRX, tm->tm_siatxrx);
4254 1.7 thorpej
4255 1.27 thorpej switch (sc->sc_chip) {
4256 1.27 thorpej case TULIP_CHIP_21142:
4257 1.27 thorpej case TULIP_CHIP_21143:
4258 1.27 thorpej TULIP_WRITE(sc, CSR_SIAGEN, tm->tm_siagen | tm->tm_gpctl);
4259 1.27 thorpej TULIP_WRITE(sc, CSR_SIAGEN, tm->tm_siagen | tm->tm_gpdata);
4260 1.27 thorpej break;
4261 1.27 thorpej default:
4262 1.118 chs TULIP_WRITE(sc, CSR_SIAGEN, tm->tm_siagen);
4263 1.7 thorpej }
4264 1.7 thorpej
4265 1.27 thorpej TULIP_WRITE(sc, CSR_SIACONN, tm->tm_siaconn);
4266 1.27 thorpej
4267 1.27 thorpej /*
4268 1.27 thorpej * Set the OPMODE bits for this media and write OPMODE.
4269 1.27 thorpej * This will resume the transmit and receive processes.
4270 1.27 thorpej */
4271 1.27 thorpej sc->sc_opmode = (sc->sc_opmode & ~OPMODE_MEDIA_BITS) | tm->tm_opmode;
4272 1.27 thorpej TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode);
4273 1.27 thorpej
4274 1.194 msaitoh return 0;
4275 1.17 thorpej }
4276 1.17 thorpej
4277 1.17 thorpej /*
4278 1.27 thorpej * 21140 GPIO utility functions.
4279 1.17 thorpej */
4280 1.138 thorpej static void tlp_21140_gpio_update_link(struct tulip_softc *);
4281 1.19 thorpej
4282 1.138 thorpej static void
4283 1.138 thorpej tlp_21140_gpio_update_link(struct tulip_softc *sc)
4284 1.17 thorpej {
4285 1.17 thorpej struct ifmedia_entry *ife;
4286 1.27 thorpej struct tulip_21x4x_media *tm;
4287 1.17 thorpej
4288 1.27 thorpej ife = TULIP_CURRENT_MEDIA(sc);
4289 1.27 thorpej tm = ife->ifm_aux;
4290 1.17 thorpej
4291 1.194 msaitoh sc->sc_flags &= ~(TULIPF_LINK_UP | TULIPF_LINK_VALID);
4292 1.17 thorpej
4293 1.27 thorpej if (tm->tm_actmask != 0) {
4294 1.27 thorpej sc->sc_flags |= TULIPF_LINK_VALID;
4295 1.27 thorpej if (TULIP_ISSET(sc, CSR_GPP, tm->tm_actmask) ==
4296 1.27 thorpej tm->tm_actdata)
4297 1.27 thorpej sc->sc_flags |= TULIPF_LINK_UP;
4298 1.17 thorpej }
4299 1.27 thorpej }
4300 1.27 thorpej
4301 1.27 thorpej void
4302 1.138 thorpej tlp_21140_gpio_get(struct tulip_softc *sc, struct ifmediareq *ifmr)
4303 1.27 thorpej {
4304 1.27 thorpej struct ifmedia_entry *ife;
4305 1.17 thorpej
4306 1.27 thorpej ifmr->ifm_status = 0;
4307 1.27 thorpej
4308 1.27 thorpej tlp_21140_gpio_update_link(sc);
4309 1.27 thorpej
4310 1.27 thorpej ife = TULIP_CURRENT_MEDIA(sc);
4311 1.17 thorpej
4312 1.27 thorpej if (sc->sc_flags & TULIPF_LINK_VALID)
4313 1.27 thorpej ifmr->ifm_status |= IFM_AVALID;
4314 1.27 thorpej if (sc->sc_flags & TULIPF_LINK_UP)
4315 1.27 thorpej ifmr->ifm_status |= IFM_ACTIVE;
4316 1.27 thorpej ifmr->ifm_active = ife->ifm_media;
4317 1.27 thorpej }
4318 1.17 thorpej
4319 1.27 thorpej int
4320 1.138 thorpej tlp_21140_gpio_set(struct tulip_softc *sc)
4321 1.27 thorpej {
4322 1.27 thorpej struct ifmedia_entry *ife;
4323 1.27 thorpej struct tulip_21x4x_media *tm;
4324 1.17 thorpej
4325 1.27 thorpej ife = TULIP_CURRENT_MEDIA(sc);
4326 1.27 thorpej tm = ife->ifm_aux;
4327 1.17 thorpej
4328 1.17 thorpej /*
4329 1.27 thorpej * Idle the chip.
4330 1.17 thorpej */
4331 1.194 msaitoh tlp_idle(sc, OPMODE_ST | OPMODE_SR);
4332 1.17 thorpej
4333 1.27 thorpej /*
4334 1.27 thorpej * Set the GPIO pins for this media, to flip any
4335 1.27 thorpej * relays, etc.
4336 1.27 thorpej */
4337 1.194 msaitoh TULIP_WRITE(sc, CSR_GPP, GPP_GPC | sc->sc_gp_dir);
4338 1.27 thorpej delay(10);
4339 1.27 thorpej TULIP_WRITE(sc, CSR_GPP, tm->tm_gpdata);
4340 1.17 thorpej
4341 1.27 thorpej /*
4342 1.27 thorpej * Set the OPMODE bits for this media and write OPMODE.
4343 1.27 thorpej * This will resume the transmit and receive processes.
4344 1.27 thorpej */
4345 1.27 thorpej sc->sc_opmode = (sc->sc_opmode & ~OPMODE_MEDIA_BITS) | tm->tm_opmode;
4346 1.27 thorpej TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode);
4347 1.17 thorpej
4348 1.194 msaitoh return 0;
4349 1.27 thorpej }
4350 1.17 thorpej
4351 1.27 thorpej /*
4352 1.27 thorpej * 21040 and 21041 media switches.
4353 1.27 thorpej */
4354 1.138 thorpej static void tlp_21040_tmsw_init(struct tulip_softc *);
4355 1.138 thorpej static void tlp_21040_tp_tmsw_init(struct tulip_softc *);
4356 1.138 thorpej static void tlp_21040_auibnc_tmsw_init(struct tulip_softc *);
4357 1.138 thorpej static void tlp_21041_tmsw_init(struct tulip_softc *);
4358 1.17 thorpej
4359 1.27 thorpej const struct tulip_mediasw tlp_21040_mediasw = {
4360 1.27 thorpej tlp_21040_tmsw_init, tlp_sia_get, tlp_sia_set
4361 1.27 thorpej };
4362 1.19 thorpej
4363 1.27 thorpej const struct tulip_mediasw tlp_21040_tp_mediasw = {
4364 1.27 thorpej tlp_21040_tp_tmsw_init, tlp_sia_get, tlp_sia_set
4365 1.27 thorpej };
4366 1.19 thorpej
4367 1.27 thorpej const struct tulip_mediasw tlp_21040_auibnc_mediasw = {
4368 1.27 thorpej tlp_21040_auibnc_tmsw_init, tlp_sia_get, tlp_sia_set
4369 1.27 thorpej };
4370 1.19 thorpej
4371 1.27 thorpej const struct tulip_mediasw tlp_21041_mediasw = {
4372 1.27 thorpej tlp_21041_tmsw_init, tlp_sia_get, tlp_sia_set
4373 1.27 thorpej };
4374 1.19 thorpej
4375 1.138 thorpej static void
4376 1.138 thorpej tlp_21040_tmsw_init(struct tulip_softc *sc)
4377 1.27 thorpej {
4378 1.194 msaitoh struct mii_data * const mii = &sc->sc_mii;
4379 1.165 cegger static const uint8_t media[] = {
4380 1.27 thorpej TULIP_ROM_MB_MEDIA_TP,
4381 1.27 thorpej TULIP_ROM_MB_MEDIA_TP_FDX,
4382 1.27 thorpej TULIP_ROM_MB_MEDIA_AUI,
4383 1.27 thorpej };
4384 1.27 thorpej struct tulip_21x4x_media *tm;
4385 1.19 thorpej
4386 1.194 msaitoh sc->sc_ethercom.ec_mii = mii;
4387 1.194 msaitoh ifmedia_init(&mii->mii_media, 0, tlp_mediachange, tlp_mediastatus);
4388 1.19 thorpej
4389 1.27 thorpej tlp_add_srom_media(sc, 0, NULL, NULL, media, 3);
4390 1.17 thorpej
4391 1.27 thorpej /*
4392 1.27 thorpej * No SROM type for External SIA.
4393 1.27 thorpej */
4394 1.194 msaitoh tm = malloc(sizeof(*tm), M_DEVBUF, M_WAITOK | M_ZERO);
4395 1.27 thorpej tm->tm_name = "manual";
4396 1.27 thorpej tm->tm_opmode = 0;
4397 1.27 thorpej tm->tm_siaconn = SIACONN_21040_EXTSIA;
4398 1.27 thorpej tm->tm_siatxrx = SIATXRX_21040_EXTSIA;
4399 1.27 thorpej tm->tm_siagen = SIAGEN_21040_EXTSIA;
4400 1.194 msaitoh ifmedia_add(&mii->mii_media,
4401 1.27 thorpej IFM_MAKEWORD(IFM_ETHER, IFM_MANUAL, 0, sc->sc_tlp_minst), 0, tm);
4402 1.17 thorpej
4403 1.27 thorpej /*
4404 1.27 thorpej * XXX Autosense not yet supported.
4405 1.27 thorpej */
4406 1.17 thorpej
4407 1.27 thorpej /* XXX This should be auto-sense. */
4408 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_10_T);
4409 1.17 thorpej
4410 1.27 thorpej tlp_print_media(sc);
4411 1.27 thorpej }
4412 1.17 thorpej
4413 1.138 thorpej static void
4414 1.138 thorpej tlp_21040_tp_tmsw_init(struct tulip_softc *sc)
4415 1.27 thorpej {
4416 1.194 msaitoh struct mii_data * const mii = &sc->sc_mii;
4417 1.165 cegger static const uint8_t media[] = {
4418 1.27 thorpej TULIP_ROM_MB_MEDIA_TP,
4419 1.27 thorpej TULIP_ROM_MB_MEDIA_TP_FDX,
4420 1.27 thorpej };
4421 1.17 thorpej
4422 1.194 msaitoh sc->sc_ethercom.ec_mii = mii;
4423 1.194 msaitoh ifmedia_init(&mii->mii_media, 0, tlp_mediachange, tlp_mediastatus);
4424 1.17 thorpej
4425 1.27 thorpej tlp_add_srom_media(sc, 0, NULL, NULL, media, 2);
4426 1.17 thorpej
4427 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_10_T);
4428 1.17 thorpej
4429 1.27 thorpej tlp_print_media(sc);
4430 1.27 thorpej }
4431 1.17 thorpej
4432 1.138 thorpej static void
4433 1.138 thorpej tlp_21040_auibnc_tmsw_init(struct tulip_softc *sc)
4434 1.27 thorpej {
4435 1.194 msaitoh struct mii_data * const mii = &sc->sc_mii;
4436 1.165 cegger static const uint8_t media[] = {
4437 1.27 thorpej TULIP_ROM_MB_MEDIA_AUI,
4438 1.27 thorpej };
4439 1.17 thorpej
4440 1.194 msaitoh sc->sc_ethercom.ec_mii = mii;
4441 1.194 msaitoh ifmedia_init(&mii->mii_media, 0, tlp_mediachange, tlp_mediastatus);
4442 1.17 thorpej
4443 1.27 thorpej tlp_add_srom_media(sc, 0, NULL, NULL, media, 1);
4444 1.17 thorpej
4445 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_10_5);
4446 1.17 thorpej
4447 1.27 thorpej tlp_print_media(sc);
4448 1.27 thorpej }
4449 1.27 thorpej
4450 1.138 thorpej static void
4451 1.138 thorpej tlp_21041_tmsw_init(struct tulip_softc *sc)
4452 1.27 thorpej {
4453 1.194 msaitoh struct mii_data * const mii = &sc->sc_mii;
4454 1.165 cegger static const uint8_t media[] = {
4455 1.27 thorpej TULIP_ROM_MB_MEDIA_TP,
4456 1.27 thorpej TULIP_ROM_MB_MEDIA_TP_FDX,
4457 1.27 thorpej TULIP_ROM_MB_MEDIA_BNC,
4458 1.27 thorpej TULIP_ROM_MB_MEDIA_AUI,
4459 1.27 thorpej };
4460 1.27 thorpej int i, defmedia, devcnt, leaf_offset, mb_offset, m_cnt;
4461 1.27 thorpej const struct tulip_srom_to_ifmedia *tsti;
4462 1.27 thorpej struct tulip_21x4x_media *tm;
4463 1.165 cegger uint16_t romdef;
4464 1.165 cegger uint8_t mb;
4465 1.17 thorpej
4466 1.194 msaitoh sc->sc_ethercom.ec_mii = mii;
4467 1.194 msaitoh ifmedia_init(&mii->mii_media, 0, tlp_mediachange, tlp_mediastatus);
4468 1.17 thorpej
4469 1.27 thorpej if (tlp_isv_srom(sc->sc_srom) == 0) {
4470 1.27 thorpej not_isv_srom:
4471 1.27 thorpej /*
4472 1.27 thorpej * If we have a board without the standard 21041 SROM format,
4473 1.27 thorpej * we just assume all media are present and try and pick a
4474 1.27 thorpej * reasonable default.
4475 1.27 thorpej */
4476 1.27 thorpej tlp_add_srom_media(sc, 0, NULL, NULL, media, 4);
4477 1.17 thorpej
4478 1.27 thorpej /*
4479 1.27 thorpej * XXX Autosense not yet supported.
4480 1.27 thorpej */
4481 1.17 thorpej
4482 1.27 thorpej /* XXX This should be auto-sense. */
4483 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_10_T);
4484 1.17 thorpej
4485 1.27 thorpej tlp_print_media(sc);
4486 1.27 thorpej return;
4487 1.27 thorpej }
4488 1.17 thorpej
4489 1.27 thorpej devcnt = sc->sc_srom[TULIP_ROM_CHIP_COUNT];
4490 1.27 thorpej for (i = 0; i < devcnt; i++) {
4491 1.27 thorpej if (sc->sc_srom[TULIP_ROM_CHIP_COUNT] == 1)
4492 1.17 thorpej break;
4493 1.27 thorpej if (sc->sc_srom[TULIP_ROM_CHIPn_DEVICE_NUMBER(i)] ==
4494 1.27 thorpej sc->sc_devno)
4495 1.17 thorpej break;
4496 1.27 thorpej }
4497 1.17 thorpej
4498 1.27 thorpej if (i == devcnt)
4499 1.27 thorpej goto not_isv_srom;
4500 1.17 thorpej
4501 1.27 thorpej leaf_offset = TULIP_ROM_GETW(sc->sc_srom,
4502 1.27 thorpej TULIP_ROM_CHIPn_INFO_LEAF_OFFSET(i));
4503 1.27 thorpej mb_offset = leaf_offset + TULIP_ROM_IL_MEDIAn_BLOCK_BASE;
4504 1.27 thorpej m_cnt = sc->sc_srom[leaf_offset + TULIP_ROM_IL_MEDIA_COUNT];
4505 1.17 thorpej
4506 1.27 thorpej for (; m_cnt != 0;
4507 1.27 thorpej m_cnt--, mb_offset += TULIP_ROM_MB_SIZE(mb)) {
4508 1.27 thorpej mb = sc->sc_srom[mb_offset];
4509 1.194 msaitoh tm = malloc(sizeof(*tm), M_DEVBUF, M_WAITOK | M_ZERO);
4510 1.27 thorpej switch (mb & TULIP_ROM_MB_MEDIA_CODE) {
4511 1.27 thorpej case TULIP_ROM_MB_MEDIA_TP_FDX:
4512 1.27 thorpej case TULIP_ROM_MB_MEDIA_TP:
4513 1.27 thorpej case TULIP_ROM_MB_MEDIA_BNC:
4514 1.27 thorpej case TULIP_ROM_MB_MEDIA_AUI:
4515 1.27 thorpej tsti = tlp_srom_to_ifmedia(mb &
4516 1.27 thorpej TULIP_ROM_MB_MEDIA_CODE);
4517 1.19 thorpej
4518 1.27 thorpej tlp_srom_media_info(sc, tsti, tm);
4519 1.19 thorpej
4520 1.27 thorpej /*
4521 1.27 thorpej * Override our default SIA settings if the
4522 1.27 thorpej * SROM contains its own.
4523 1.27 thorpej */
4524 1.27 thorpej if (mb & TULIP_ROM_MB_EXT) {
4525 1.27 thorpej tm->tm_siaconn = TULIP_ROM_GETW(sc->sc_srom,
4526 1.27 thorpej mb_offset + TULIP_ROM_MB_CSR13);
4527 1.27 thorpej tm->tm_siatxrx = TULIP_ROM_GETW(sc->sc_srom,
4528 1.27 thorpej mb_offset + TULIP_ROM_MB_CSR14);
4529 1.27 thorpej tm->tm_siagen = TULIP_ROM_GETW(sc->sc_srom,
4530 1.27 thorpej mb_offset + TULIP_ROM_MB_CSR15);
4531 1.27 thorpej }
4532 1.17 thorpej
4533 1.194 msaitoh ifmedia_add(&mii->mii_media,
4534 1.27 thorpej IFM_MAKEWORD(IFM_ETHER, tsti->tsti_subtype,
4535 1.27 thorpej tsti->tsti_options, sc->sc_tlp_minst), 0, tm);
4536 1.27 thorpej break;
4537 1.17 thorpej
4538 1.27 thorpej default:
4539 1.171 jmcneill aprint_error_dev(sc->sc_dev,
4540 1.171 jmcneill "unknown media code 0x%02x\n",
4541 1.27 thorpej mb & TULIP_ROM_MB_MEDIA_CODE);
4542 1.27 thorpej free(tm, M_DEVBUF);
4543 1.27 thorpej }
4544 1.17 thorpej }
4545 1.17 thorpej
4546 1.17 thorpej /*
4547 1.27 thorpej * XXX Autosense not yet supported.
4548 1.17 thorpej */
4549 1.17 thorpej
4550 1.27 thorpej romdef = TULIP_ROM_GETW(sc->sc_srom, leaf_offset +
4551 1.27 thorpej TULIP_ROM_IL_SELECT_CONN_TYPE);
4552 1.27 thorpej switch (romdef) {
4553 1.27 thorpej case SELECT_CONN_TYPE_TP:
4554 1.27 thorpej case SELECT_CONN_TYPE_TP_AUTONEG:
4555 1.27 thorpej case SELECT_CONN_TYPE_TP_NOLINKPASS:
4556 1.194 msaitoh defmedia = IFM_ETHER | IFM_10_T;
4557 1.27 thorpej break;
4558 1.19 thorpej
4559 1.27 thorpej case SELECT_CONN_TYPE_TP_FDX:
4560 1.194 msaitoh defmedia = IFM_ETHER | IFM_10_T | IFM_FDX;
4561 1.27 thorpej break;
4562 1.17 thorpej
4563 1.27 thorpej case SELECT_CONN_TYPE_BNC:
4564 1.194 msaitoh defmedia = IFM_ETHER | IFM_10_2;
4565 1.27 thorpej break;
4566 1.17 thorpej
4567 1.27 thorpej case SELECT_CONN_TYPE_AUI:
4568 1.194 msaitoh defmedia = IFM_ETHER | IFM_10_5;
4569 1.27 thorpej break;
4570 1.27 thorpej #if 0 /* XXX */
4571 1.27 thorpej case SELECT_CONN_TYPE_ASENSE:
4572 1.27 thorpej case SELECT_CONN_TYPE_ASENSE_AUTONEG:
4573 1.194 msaitoh defmedia = IFM_ETHER | IFM_AUTO;
4574 1.19 thorpej break;
4575 1.27 thorpej #endif
4576 1.19 thorpej default:
4577 1.27 thorpej defmedia = 0;
4578 1.27 thorpej }
4579 1.19 thorpej
4580 1.27 thorpej if (defmedia == 0) {
4581 1.19 thorpej /*
4582 1.27 thorpej * XXX We should default to auto-sense.
4583 1.19 thorpej */
4584 1.194 msaitoh defmedia = IFM_ETHER | IFM_10_T;
4585 1.19 thorpej }
4586 1.19 thorpej
4587 1.194 msaitoh ifmedia_set(&mii->mii_media, defmedia);
4588 1.19 thorpej
4589 1.27 thorpej tlp_print_media(sc);
4590 1.7 thorpej }
4591 1.7 thorpej
4592 1.7 thorpej /*
4593 1.27 thorpej * DECchip 2114x ISV media switch.
4594 1.1 thorpej */
4595 1.138 thorpej static void tlp_2114x_isv_tmsw_init(struct tulip_softc *);
4596 1.138 thorpej static void tlp_2114x_isv_tmsw_get(struct tulip_softc *,
4597 1.138 thorpej struct ifmediareq *);
4598 1.138 thorpej static int tlp_2114x_isv_tmsw_set(struct tulip_softc *);
4599 1.1 thorpej
4600 1.27 thorpej const struct tulip_mediasw tlp_2114x_isv_mediasw = {
4601 1.27 thorpej tlp_2114x_isv_tmsw_init, tlp_2114x_isv_tmsw_get, tlp_2114x_isv_tmsw_set
4602 1.1 thorpej };
4603 1.1 thorpej
4604 1.138 thorpej static void tlp_2114x_nway_get(struct tulip_softc *, struct ifmediareq *);
4605 1.138 thorpej static int tlp_2114x_nway_set(struct tulip_softc *);
4606 1.108 chs
4607 1.181 matt static void tlp_2114x_nway_statchg(struct ifnet *);
4608 1.138 thorpej static int tlp_2114x_nway_service(struct tulip_softc *, int);
4609 1.138 thorpej static void tlp_2114x_nway_auto(struct tulip_softc *);
4610 1.138 thorpej static void tlp_2114x_nway_status(struct tulip_softc *);
4611 1.108 chs
4612 1.138 thorpej static void
4613 1.138 thorpej tlp_2114x_isv_tmsw_init(struct tulip_softc *sc)
4614 1.1 thorpej {
4615 1.1 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
4616 1.194 msaitoh struct mii_data * const mii = &sc->sc_mii;
4617 1.27 thorpej struct ifmedia_entry *ife;
4618 1.27 thorpej struct mii_softc *phy;
4619 1.27 thorpej struct tulip_21x4x_media *tm;
4620 1.27 thorpej const struct tulip_srom_to_ifmedia *tsti;
4621 1.27 thorpej int i, devcnt, leaf_offset, m_cnt, type, length;
4622 1.27 thorpej int defmedia, miidef;
4623 1.165 cegger uint16_t word;
4624 1.165 cegger uint8_t *cp, *ncp;
4625 1.27 thorpej
4626 1.27 thorpej defmedia = miidef = 0;
4627 1.1 thorpej
4628 1.194 msaitoh mii->mii_ifp = ifp;
4629 1.194 msaitoh mii->mii_readreg = tlp_bitbang_mii_readreg;
4630 1.194 msaitoh mii->mii_writereg = tlp_bitbang_mii_writereg;
4631 1.194 msaitoh mii->mii_statchg = sc->sc_statchg;
4632 1.194 msaitoh sc->sc_ethercom.ec_mii = mii;
4633 1.27 thorpej
4634 1.27 thorpej /*
4635 1.27 thorpej * Ignore `instance'; we may get a mixture of SIA and MII
4636 1.27 thorpej * media, and `instance' is used to isolate or select the
4637 1.27 thorpej * PHY on the MII as appropriate. Note that duplicate media
4638 1.27 thorpej * are disallowed, so ignoring `instance' is safe.
4639 1.27 thorpej */
4640 1.194 msaitoh ifmedia_init(&mii->mii_media, IFM_IMASK, tlp_mediachange,
4641 1.1 thorpej tlp_mediastatus);
4642 1.1 thorpej
4643 1.27 thorpej devcnt = sc->sc_srom[TULIP_ROM_CHIP_COUNT];
4644 1.27 thorpej for (i = 0; i < devcnt; i++) {
4645 1.27 thorpej if (sc->sc_srom[TULIP_ROM_CHIP_COUNT] == 1)
4646 1.27 thorpej break;
4647 1.27 thorpej if (sc->sc_srom[TULIP_ROM_CHIPn_DEVICE_NUMBER(i)] ==
4648 1.27 thorpej sc->sc_devno)
4649 1.27 thorpej break;
4650 1.27 thorpej }
4651 1.27 thorpej
4652 1.27 thorpej if (i == devcnt) {
4653 1.188 msaitoh aprint_error_dev(sc->sc_dev,
4654 1.188 msaitoh "unable to locate info leaf in SROM\n");
4655 1.27 thorpej return;
4656 1.27 thorpej }
4657 1.27 thorpej
4658 1.27 thorpej leaf_offset = TULIP_ROM_GETW(sc->sc_srom,
4659 1.27 thorpej TULIP_ROM_CHIPn_INFO_LEAF_OFFSET(i));
4660 1.27 thorpej
4661 1.27 thorpej /* XXX SELECT CONN TYPE */
4662 1.1 thorpej
4663 1.27 thorpej cp = &sc->sc_srom[leaf_offset + TULIP_ROM_IL_MEDIA_COUNT];
4664 1.1 thorpej
4665 1.27 thorpej /*
4666 1.27 thorpej * On some chips, the first thing in the Info Leaf is the
4667 1.27 thorpej * GPIO pin direction data.
4668 1.27 thorpej */
4669 1.27 thorpej switch (sc->sc_chip) {
4670 1.27 thorpej case TULIP_CHIP_21140:
4671 1.27 thorpej case TULIP_CHIP_21140A:
4672 1.27 thorpej case TULIP_CHIP_MX98713:
4673 1.27 thorpej case TULIP_CHIP_AX88140:
4674 1.27 thorpej case TULIP_CHIP_AX88141:
4675 1.27 thorpej sc->sc_gp_dir = *cp++;
4676 1.27 thorpej break;
4677 1.6 thorpej
4678 1.27 thorpej default:
4679 1.27 thorpej /* Nothing. */
4680 1.91 cgd break;
4681 1.27 thorpej }
4682 1.6 thorpej
4683 1.27 thorpej /* Get the media count. */
4684 1.27 thorpej m_cnt = *cp++;
4685 1.1 thorpej
4686 1.128 jkunz if (m_cnt == 0) {
4687 1.128 jkunz sc->sc_mediasw = &tlp_sio_mii_mediasw;
4688 1.128 jkunz (*sc->sc_mediasw->tmsw_init)(sc);
4689 1.128 jkunz return;
4690 1.128 jkunz }
4691 1.128 jkunz
4692 1.27 thorpej for (; m_cnt != 0; cp = ncp, m_cnt--) {
4693 1.27 thorpej /*
4694 1.27 thorpej * Determine the type and length of this media block.
4695 1.104 chs * The 21143 is spec'd to always use extended format blocks,
4696 1.104 chs * but some cards don't set the bit to indicate this.
4697 1.104 chs * Hopefully there are no cards which really don't use
4698 1.104 chs * extended format blocks.
4699 1.27 thorpej */
4700 1.104 chs if ((*cp & 0x80) == 0 && sc->sc_chip != TULIP_CHIP_21143) {
4701 1.27 thorpej length = 4;
4702 1.27 thorpej type = TULIP_ROM_MB_21140_GPR;
4703 1.27 thorpej } else {
4704 1.27 thorpej length = (*cp++ & 0x7f) - 1;
4705 1.27 thorpej type = *cp++ & 0x3f;
4706 1.27 thorpej }
4707 1.6 thorpej
4708 1.27 thorpej /* Compute the start of the next block. */
4709 1.27 thorpej ncp = cp + length;
4710 1.6 thorpej
4711 1.27 thorpej /* Now, parse the block. */
4712 1.27 thorpej switch (type) {
4713 1.27 thorpej case TULIP_ROM_MB_21140_GPR:
4714 1.27 thorpej tlp_get_minst(sc);
4715 1.27 thorpej sc->sc_media_seen |= 1 << TULIP_ROM_MB_21140_GPR;
4716 1.6 thorpej
4717 1.194 msaitoh tm = malloc(sizeof(*tm), M_DEVBUF, M_WAITOK | M_ZERO);
4718 1.6 thorpej
4719 1.27 thorpej tm->tm_type = TULIP_ROM_MB_21140_GPR;
4720 1.27 thorpej tm->tm_get = tlp_21140_gpio_get;
4721 1.27 thorpej tm->tm_set = tlp_21140_gpio_set;
4722 1.6 thorpej
4723 1.27 thorpej /* First is the media type code. */
4724 1.27 thorpej tsti = tlp_srom_to_ifmedia(cp[0] &
4725 1.27 thorpej TULIP_ROM_MB_MEDIA_CODE);
4726 1.27 thorpej if (tsti == NULL) {
4727 1.27 thorpej /* Invalid media code. */
4728 1.27 thorpej free(tm, M_DEVBUF);
4729 1.27 thorpej break;
4730 1.27 thorpej }
4731 1.135 perry
4732 1.27 thorpej /* Get defaults. */
4733 1.27 thorpej tlp_srom_media_info(sc, tsti, tm);
4734 1.6 thorpej
4735 1.27 thorpej /* Next is any GPIO info for this media. */
4736 1.27 thorpej tm->tm_gpdata = cp[1];
4737 1.6 thorpej
4738 1.27 thorpej /*
4739 1.27 thorpej * Next is a word containing OPMODE information
4740 1.27 thorpej * and info on how to detect if this media is
4741 1.27 thorpej * active.
4742 1.27 thorpej */
4743 1.27 thorpej word = TULIP_ROM_GETW(cp, 2);
4744 1.107 mycroft tm->tm_opmode &= OPMODE_FD;
4745 1.107 mycroft tm->tm_opmode |= TULIP_ROM_MB_OPMODE(word);
4746 1.27 thorpej if ((word & TULIP_ROM_MB_NOINDICATOR) == 0) {
4747 1.27 thorpej tm->tm_actmask =
4748 1.27 thorpej TULIP_ROM_MB_BITPOS(word);
4749 1.27 thorpej tm->tm_actdata =
4750 1.27 thorpej (word & TULIP_ROM_MB_POLARITY) ?
4751 1.27 thorpej 0 : tm->tm_actmask;
4752 1.27 thorpej }
4753 1.7 thorpej
4754 1.194 msaitoh ifmedia_add(&mii->mii_media,
4755 1.27 thorpej IFM_MAKEWORD(IFM_ETHER, tsti->tsti_subtype,
4756 1.27 thorpej tsti->tsti_options, sc->sc_tlp_minst), 0, tm);
4757 1.27 thorpej break;
4758 1.6 thorpej
4759 1.27 thorpej case TULIP_ROM_MB_21140_MII:
4760 1.27 thorpej sc->sc_media_seen |= 1 << TULIP_ROM_MB_21140_MII;
4761 1.1 thorpej
4762 1.194 msaitoh tm = malloc(sizeof(*tm), M_DEVBUF, M_WAITOK | M_ZERO);
4763 1.1 thorpej
4764 1.27 thorpej tm->tm_type = TULIP_ROM_MB_21140_MII;
4765 1.27 thorpej tm->tm_get = tlp_mii_getmedia;
4766 1.27 thorpej tm->tm_set = tlp_mii_setmedia;
4767 1.27 thorpej tm->tm_opmode = OPMODE_PS;
4768 1.1 thorpej
4769 1.27 thorpej if (sc->sc_reset == NULL)
4770 1.27 thorpej sc->sc_reset = tlp_21140_reset;
4771 1.1 thorpej
4772 1.27 thorpej /* First is the PHY number. */
4773 1.27 thorpej tm->tm_phyno = *cp++;
4774 1.15 thorpej
4775 1.27 thorpej /* Next is the MII select sequence length and offset. */
4776 1.27 thorpej tm->tm_gp_length = *cp++;
4777 1.27 thorpej tm->tm_gp_offset = cp - &sc->sc_srom[0];
4778 1.27 thorpej cp += tm->tm_gp_length;
4779 1.1 thorpej
4780 1.27 thorpej /* Next is the MII reset sequence length and offset. */
4781 1.27 thorpej tm->tm_reset_length = *cp++;
4782 1.27 thorpej tm->tm_reset_offset = cp - &sc->sc_srom[0];
4783 1.27 thorpej cp += tm->tm_reset_length;
4784 1.6 thorpej
4785 1.27 thorpej /*
4786 1.27 thorpej * The following items are left in the media block
4787 1.27 thorpej * that we don't particularly care about:
4788 1.27 thorpej *
4789 1.27 thorpej * capabilities W
4790 1.27 thorpej * advertisement W
4791 1.27 thorpej * full duplex W
4792 1.27 thorpej * tx threshold W
4793 1.27 thorpej *
4794 1.27 thorpej * These appear to be bits in the PHY registers,
4795 1.27 thorpej * which our MII code handles on its own.
4796 1.27 thorpej */
4797 1.7 thorpej
4798 1.27 thorpej /*
4799 1.27 thorpej * Before we probe the MII bus, we need to reset
4800 1.27 thorpej * it and issue the selection sequence.
4801 1.27 thorpej */
4802 1.7 thorpej
4803 1.27 thorpej /* Set the direction of the pins... */
4804 1.194 msaitoh TULIP_WRITE(sc, CSR_GPP, GPP_GPC | sc->sc_gp_dir);
4805 1.7 thorpej
4806 1.27 thorpej for (i = 0; i < tm->tm_reset_length; i++) {
4807 1.27 thorpej delay(10);
4808 1.27 thorpej TULIP_WRITE(sc, CSR_GPP,
4809 1.27 thorpej sc->sc_srom[tm->tm_reset_offset + i]);
4810 1.27 thorpej }
4811 1.7 thorpej
4812 1.27 thorpej for (i = 0; i < tm->tm_gp_length; i++) {
4813 1.27 thorpej delay(10);
4814 1.27 thorpej TULIP_WRITE(sc, CSR_GPP,
4815 1.27 thorpej sc->sc_srom[tm->tm_gp_offset + i]);
4816 1.27 thorpej }
4817 1.7 thorpej
4818 1.27 thorpej /* If there were no sequences, just lower the pins. */
4819 1.27 thorpej if (tm->tm_reset_length == 0 && tm->tm_gp_length == 0) {
4820 1.27 thorpej delay(10);
4821 1.27 thorpej TULIP_WRITE(sc, CSR_GPP, 0);
4822 1.27 thorpej }
4823 1.7 thorpej
4824 1.27 thorpej /*
4825 1.27 thorpej * Now, probe the MII for the PHY. Note, we know
4826 1.27 thorpej * the location of the PHY on the bus, but we don't
4827 1.27 thorpej * particularly care; the MII code just likes to
4828 1.27 thorpej * search the whole thing anyhow.
4829 1.27 thorpej */
4830 1.194 msaitoh mii_attach(sc->sc_dev, mii, 0xffffffff,
4831 1.44 thorpej MII_PHY_ANY, tm->tm_phyno, 0);
4832 1.7 thorpej
4833 1.27 thorpej /*
4834 1.27 thorpej * Now, search for the PHY we hopefully just
4835 1.27 thorpej * configured. If it's not configured into the
4836 1.27 thorpej * kernel, we lose. The PHY's default media always
4837 1.27 thorpej * takes priority.
4838 1.27 thorpej */
4839 1.194 msaitoh LIST_FOREACH(phy, &mii->mii_phys, mii_list) {
4840 1.27 thorpej if (phy->mii_offset == tm->tm_phyno)
4841 1.27 thorpej break;
4842 1.170 dyoung }
4843 1.27 thorpej if (phy == NULL) {
4844 1.188 msaitoh aprint_error_dev(sc->sc_dev,
4845 1.188 msaitoh "unable to configure MII\n");
4846 1.27 thorpej break;
4847 1.27 thorpej }
4848 1.6 thorpej
4849 1.27 thorpej sc->sc_flags |= TULIPF_HAS_MII;
4850 1.27 thorpej sc->sc_tick = tlp_mii_tick;
4851 1.27 thorpej miidef = IFM_MAKEWORD(IFM_ETHER, IFM_AUTO, 0,
4852 1.27 thorpej phy->mii_inst);
4853 1.6 thorpej
4854 1.27 thorpej /*
4855 1.27 thorpej * Okay, now that we've found the PHY and the MII
4856 1.27 thorpej * layer has added all of the media associated
4857 1.27 thorpej * with that PHY, we need to traverse the media
4858 1.27 thorpej * list, and add our `tm' to each entry's `aux'
4859 1.27 thorpej * pointer.
4860 1.27 thorpej *
4861 1.27 thorpej * We do this by looking for media with our
4862 1.27 thorpej * PHY's `instance'.
4863 1.27 thorpej */
4864 1.194 msaitoh TAILQ_FOREACH(ife, &mii->mii_media.ifm_list,
4865 1.170 dyoung ifm_list) {
4866 1.27 thorpej if (IFM_INST(ife->ifm_media) != phy->mii_inst)
4867 1.27 thorpej continue;
4868 1.27 thorpej ife->ifm_aux = tm;
4869 1.27 thorpej }
4870 1.27 thorpej break;
4871 1.6 thorpej
4872 1.27 thorpej case TULIP_ROM_MB_21142_SIA:
4873 1.27 thorpej tlp_get_minst(sc);
4874 1.27 thorpej sc->sc_media_seen |= 1 << TULIP_ROM_MB_21142_SIA;
4875 1.6 thorpej
4876 1.194 msaitoh tm = malloc(sizeof(*tm), M_DEVBUF, M_WAITOK | M_ZERO);
4877 1.6 thorpej
4878 1.27 thorpej tm->tm_type = TULIP_ROM_MB_21142_SIA;
4879 1.27 thorpej tm->tm_get = tlp_sia_get;
4880 1.27 thorpej tm->tm_set = tlp_sia_set;
4881 1.6 thorpej
4882 1.27 thorpej /* First is the media type code. */
4883 1.27 thorpej tsti = tlp_srom_to_ifmedia(cp[0] &
4884 1.27 thorpej TULIP_ROM_MB_MEDIA_CODE);
4885 1.27 thorpej if (tsti == NULL) {
4886 1.27 thorpej /* Invalid media code. */
4887 1.27 thorpej free(tm, M_DEVBUF);
4888 1.27 thorpej break;
4889 1.27 thorpej }
4890 1.6 thorpej
4891 1.27 thorpej /* Get defaults. */
4892 1.27 thorpej tlp_srom_media_info(sc, tsti, tm);
4893 1.6 thorpej
4894 1.6 thorpej /*
4895 1.27 thorpej * Override our default SIA settings if the
4896 1.27 thorpej * SROM contains its own.
4897 1.6 thorpej */
4898 1.27 thorpej if (cp[0] & 0x40) {
4899 1.27 thorpej tm->tm_siaconn = TULIP_ROM_GETW(cp, 1);
4900 1.27 thorpej tm->tm_siatxrx = TULIP_ROM_GETW(cp, 3);
4901 1.27 thorpej tm->tm_siagen = TULIP_ROM_GETW(cp, 5);
4902 1.27 thorpej cp += 7;
4903 1.27 thorpej } else
4904 1.27 thorpej cp++;
4905 1.27 thorpej
4906 1.27 thorpej /* Next is GPIO control/data. */
4907 1.109 mycroft tm->tm_gpctl = TULIP_ROM_GETW(cp, 0) << 16;
4908 1.109 mycroft tm->tm_gpdata = TULIP_ROM_GETW(cp, 2) << 16;
4909 1.27 thorpej
4910 1.194 msaitoh ifmedia_add(&mii->mii_media,
4911 1.27 thorpej IFM_MAKEWORD(IFM_ETHER, tsti->tsti_subtype,
4912 1.27 thorpej tsti->tsti_options, sc->sc_tlp_minst), 0, tm);
4913 1.27 thorpej break;
4914 1.6 thorpej
4915 1.27 thorpej case TULIP_ROM_MB_21142_MII:
4916 1.33 thorpej sc->sc_media_seen |= 1 << TULIP_ROM_MB_21142_MII;
4917 1.33 thorpej
4918 1.194 msaitoh tm = malloc(sizeof(*tm), M_DEVBUF, M_WAITOK | M_ZERO);
4919 1.33 thorpej
4920 1.33 thorpej tm->tm_type = TULIP_ROM_MB_21142_MII;
4921 1.33 thorpej tm->tm_get = tlp_mii_getmedia;
4922 1.33 thorpej tm->tm_set = tlp_mii_setmedia;
4923 1.33 thorpej tm->tm_opmode = OPMODE_PS;
4924 1.33 thorpej
4925 1.33 thorpej if (sc->sc_reset == NULL)
4926 1.33 thorpej sc->sc_reset = tlp_21142_reset;
4927 1.33 thorpej
4928 1.33 thorpej /* First is the PHY number. */
4929 1.33 thorpej tm->tm_phyno = *cp++;
4930 1.33 thorpej
4931 1.33 thorpej /* Next is the MII select sequence length and offset. */
4932 1.33 thorpej tm->tm_gp_length = *cp++;
4933 1.33 thorpej tm->tm_gp_offset = cp - &sc->sc_srom[0];
4934 1.33 thorpej cp += tm->tm_gp_length * 2;
4935 1.33 thorpej
4936 1.33 thorpej /* Next is the MII reset sequence length and offset. */
4937 1.33 thorpej tm->tm_reset_length = *cp++;
4938 1.33 thorpej tm->tm_reset_offset = cp - &sc->sc_srom[0];
4939 1.33 thorpej cp += tm->tm_reset_length * 2;
4940 1.33 thorpej
4941 1.33 thorpej /*
4942 1.33 thorpej * The following items are left in the media block
4943 1.33 thorpej * that we don't particularly care about:
4944 1.33 thorpej *
4945 1.33 thorpej * capabilities W
4946 1.33 thorpej * advertisement W
4947 1.33 thorpej * full duplex W
4948 1.33 thorpej * tx threshold W
4949 1.33 thorpej * MII interrupt W
4950 1.33 thorpej *
4951 1.33 thorpej * These appear to be bits in the PHY registers,
4952 1.33 thorpej * which our MII code handles on its own.
4953 1.33 thorpej */
4954 1.33 thorpej
4955 1.33 thorpej /*
4956 1.33 thorpej * Before we probe the MII bus, we need to reset
4957 1.33 thorpej * it and issue the selection sequence.
4958 1.33 thorpej */
4959 1.33 thorpej
4960 1.105 chs cp = &sc->sc_srom[tm->tm_reset_offset];
4961 1.105 chs for (i = 0; i < tm->tm_reset_length; i++, cp += 2) {
4962 1.33 thorpej delay(10);
4963 1.33 thorpej TULIP_WRITE(sc, CSR_SIAGEN,
4964 1.105 chs TULIP_ROM_GETW(cp, 0) << 16);
4965 1.33 thorpej }
4966 1.33 thorpej
4967 1.105 chs cp = &sc->sc_srom[tm->tm_gp_offset];
4968 1.105 chs for (i = 0; i < tm->tm_gp_length; i++, cp += 2) {
4969 1.33 thorpej delay(10);
4970 1.33 thorpej TULIP_WRITE(sc, CSR_SIAGEN,
4971 1.105 chs TULIP_ROM_GETW(cp, 0) << 16);
4972 1.33 thorpej }
4973 1.33 thorpej
4974 1.33 thorpej /* If there were no sequences, just lower the pins. */
4975 1.33 thorpej if (tm->tm_reset_length == 0 && tm->tm_gp_length == 0) {
4976 1.33 thorpej delay(10);
4977 1.33 thorpej TULIP_WRITE(sc, CSR_SIAGEN, 0);
4978 1.33 thorpej }
4979 1.33 thorpej
4980 1.33 thorpej /*
4981 1.33 thorpej * Now, probe the MII for the PHY. Note, we know
4982 1.33 thorpej * the location of the PHY on the bus, but we don't
4983 1.33 thorpej * particularly care; the MII code just likes to
4984 1.33 thorpej * search the whole thing anyhow.
4985 1.33 thorpej */
4986 1.194 msaitoh mii_attach(sc->sc_dev, mii, 0xffffffff,
4987 1.44 thorpej MII_PHY_ANY, tm->tm_phyno, 0);
4988 1.33 thorpej
4989 1.33 thorpej /*
4990 1.33 thorpej * Now, search for the PHY we hopefully just
4991 1.33 thorpej * configured. If it's not configured into the
4992 1.33 thorpej * kernel, we lose. The PHY's default media always
4993 1.33 thorpej * takes priority.
4994 1.33 thorpej */
4995 1.194 msaitoh LIST_FOREACH(phy, &mii->mii_phys, mii_list) {
4996 1.33 thorpej if (phy->mii_offset == tm->tm_phyno)
4997 1.33 thorpej break;
4998 1.170 dyoung }
4999 1.33 thorpej if (phy == NULL) {
5000 1.188 msaitoh aprint_error_dev(sc->sc_dev,
5001 1.188 msaitoh "unable to configure MII\n");
5002 1.33 thorpej break;
5003 1.33 thorpej }
5004 1.33 thorpej
5005 1.33 thorpej sc->sc_flags |= TULIPF_HAS_MII;
5006 1.33 thorpej sc->sc_tick = tlp_mii_tick;
5007 1.33 thorpej miidef = IFM_MAKEWORD(IFM_ETHER, IFM_AUTO, 0,
5008 1.33 thorpej phy->mii_inst);
5009 1.33 thorpej
5010 1.33 thorpej /*
5011 1.33 thorpej * Okay, now that we've found the PHY and the MII
5012 1.33 thorpej * layer has added all of the media associated
5013 1.33 thorpej * with that PHY, we need to traverse the media
5014 1.33 thorpej * list, and add our `tm' to each entry's `aux'
5015 1.33 thorpej * pointer.
5016 1.33 thorpej *
5017 1.33 thorpej * We do this by looking for media with our
5018 1.33 thorpej * PHY's `instance'.
5019 1.33 thorpej */
5020 1.194 msaitoh TAILQ_FOREACH(ife, &mii->mii_media.ifm_list,
5021 1.170 dyoung ifm_list) {
5022 1.33 thorpej if (IFM_INST(ife->ifm_media) != phy->mii_inst)
5023 1.33 thorpej continue;
5024 1.33 thorpej ife->ifm_aux = tm;
5025 1.33 thorpej }
5026 1.27 thorpej break;
5027 1.6 thorpej
5028 1.27 thorpej case TULIP_ROM_MB_21143_SYM:
5029 1.27 thorpej tlp_get_minst(sc);
5030 1.27 thorpej sc->sc_media_seen |= 1 << TULIP_ROM_MB_21143_SYM;
5031 1.6 thorpej
5032 1.194 msaitoh tm = malloc(sizeof(*tm), M_DEVBUF, M_WAITOK | M_ZERO);
5033 1.6 thorpej
5034 1.27 thorpej tm->tm_type = TULIP_ROM_MB_21143_SYM;
5035 1.27 thorpej tm->tm_get = tlp_sia_get;
5036 1.27 thorpej tm->tm_set = tlp_sia_set;
5037 1.6 thorpej
5038 1.27 thorpej /* First is the media type code. */
5039 1.27 thorpej tsti = tlp_srom_to_ifmedia(cp[0] &
5040 1.27 thorpej TULIP_ROM_MB_MEDIA_CODE);
5041 1.27 thorpej if (tsti == NULL) {
5042 1.27 thorpej /* Invalid media code. */
5043 1.27 thorpej free(tm, M_DEVBUF);
5044 1.27 thorpej break;
5045 1.27 thorpej }
5046 1.6 thorpej
5047 1.27 thorpej /* Get defaults. */
5048 1.27 thorpej tlp_srom_media_info(sc, tsti, tm);
5049 1.6 thorpej
5050 1.27 thorpej /* Next is GPIO control/data. */
5051 1.109 mycroft tm->tm_gpctl = TULIP_ROM_GETW(cp, 1) << 16;
5052 1.109 mycroft tm->tm_gpdata = TULIP_ROM_GETW(cp, 3) << 16;
5053 1.6 thorpej
5054 1.27 thorpej /*
5055 1.27 thorpej * Next is a word containing OPMODE information
5056 1.27 thorpej * and info on how to detect if this media is
5057 1.27 thorpej * active.
5058 1.27 thorpej */
5059 1.27 thorpej word = TULIP_ROM_GETW(cp, 5);
5060 1.107 mycroft tm->tm_opmode &= OPMODE_FD;
5061 1.107 mycroft tm->tm_opmode |= TULIP_ROM_MB_OPMODE(word);
5062 1.27 thorpej if ((word & TULIP_ROM_MB_NOINDICATOR) == 0) {
5063 1.27 thorpej tm->tm_actmask =
5064 1.27 thorpej TULIP_ROM_MB_BITPOS(word);
5065 1.27 thorpej tm->tm_actdata =
5066 1.27 thorpej (word & TULIP_ROM_MB_POLARITY) ?
5067 1.27 thorpej 0 : tm->tm_actmask;
5068 1.27 thorpej }
5069 1.6 thorpej
5070 1.194 msaitoh ifmedia_add(&mii->mii_media,
5071 1.27 thorpej IFM_MAKEWORD(IFM_ETHER, tsti->tsti_subtype,
5072 1.27 thorpej tsti->tsti_options, sc->sc_tlp_minst), 0, tm);
5073 1.27 thorpej break;
5074 1.6 thorpej
5075 1.27 thorpej case TULIP_ROM_MB_21143_RESET:
5076 1.171 jmcneill aprint_normal_dev(sc->sc_dev, "21143 reset block\n");
5077 1.27 thorpej break;
5078 1.6 thorpej
5079 1.27 thorpej default:
5080 1.171 jmcneill aprint_error_dev(sc->sc_dev,
5081 1.171 jmcneill "unknown ISV media block type 0x%02x\n", type);
5082 1.6 thorpej }
5083 1.27 thorpej }
5084 1.27 thorpej
5085 1.27 thorpej /*
5086 1.27 thorpej * Deal with the case where no media is configured.
5087 1.27 thorpej */
5088 1.194 msaitoh if (TAILQ_FIRST(&mii->mii_media.ifm_list) == NULL) {
5089 1.171 jmcneill aprint_error_dev(sc->sc_dev, "no media found!\n");
5090 1.194 msaitoh ifmedia_add(&mii->mii_media, IFM_ETHER | IFM_NONE, 0, NULL);
5091 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_NONE);
5092 1.27 thorpej return;
5093 1.27 thorpej }
5094 1.6 thorpej
5095 1.27 thorpej /*
5096 1.27 thorpej * Pick the default media.
5097 1.27 thorpej */
5098 1.27 thorpej if (miidef != 0)
5099 1.27 thorpej defmedia = miidef;
5100 1.27 thorpej else {
5101 1.108 chs switch (sc->sc_chip) {
5102 1.108 chs case TULIP_CHIP_21140:
5103 1.108 chs case TULIP_CHIP_21140A:
5104 1.108 chs /* XXX should come from SROM */
5105 1.108 chs defmedia = IFM_MAKEWORD(IFM_ETHER, IFM_10_T, 0, 0);
5106 1.194 msaitoh if (ifmedia_match(&mii->mii_media, defmedia,
5107 1.194 msaitoh mii->mii_media.ifm_mask) == NULL) {
5108 1.121 minoura /*
5109 1.121 minoura * There is not a 10baseT media.
5110 1.121 minoura * Fall back to the first found one.
5111 1.121 minoura */
5112 1.194 msaitoh ife = TAILQ_FIRST(&mii->mii_media.ifm_list);
5113 1.121 minoura defmedia = ife->ifm_media;
5114 1.121 minoura }
5115 1.108 chs break;
5116 1.108 chs
5117 1.108 chs case TULIP_CHIP_21142:
5118 1.108 chs case TULIP_CHIP_21143:
5119 1.108 chs case TULIP_CHIP_MX98713A:
5120 1.108 chs case TULIP_CHIP_MX98715:
5121 1.108 chs case TULIP_CHIP_MX98715A:
5122 1.108 chs case TULIP_CHIP_MX98715AEC_X:
5123 1.108 chs case TULIP_CHIP_MX98725:
5124 1.194 msaitoh tm = malloc(sizeof(*tm), M_DEVBUF, M_WAITOK | M_ZERO);
5125 1.108 chs tm->tm_name = "auto";
5126 1.108 chs tm->tm_get = tlp_2114x_nway_get;
5127 1.108 chs tm->tm_set = tlp_2114x_nway_set;
5128 1.108 chs
5129 1.108 chs defmedia = IFM_MAKEWORD(IFM_ETHER, IFM_AUTO, 0, 0);
5130 1.194 msaitoh ifmedia_add(&mii->mii_media, defmedia, 0, tm);
5131 1.108 chs
5132 1.108 chs sc->sc_statchg = tlp_2114x_nway_statchg;
5133 1.108 chs sc->sc_tick = tlp_2114x_nway_tick;
5134 1.108 chs break;
5135 1.108 chs
5136 1.108 chs default:
5137 1.108 chs defmedia = IFM_MAKEWORD(IFM_ETHER, IFM_10_T, 0, 0);
5138 1.108 chs break;
5139 1.108 chs }
5140 1.6 thorpej }
5141 1.6 thorpej
5142 1.194 msaitoh ifmedia_set(&mii->mii_media, defmedia);
5143 1.27 thorpej
5144 1.6 thorpej /*
5145 1.27 thorpej * Display any non-MII media we've located.
5146 1.6 thorpej */
5147 1.27 thorpej if (sc->sc_media_seen &
5148 1.27 thorpej ~((1 << TULIP_ROM_MB_21140_MII) | (1 << TULIP_ROM_MB_21142_MII)))
5149 1.27 thorpej tlp_print_media(sc);
5150 1.27 thorpej
5151 1.27 thorpej tlp_sia_fixup(sc);
5152 1.6 thorpej }
5153 1.6 thorpej
5154 1.138 thorpej static void
5155 1.138 thorpej tlp_2114x_nway_get(struct tulip_softc *sc, struct ifmediareq *ifmr)
5156 1.6 thorpej {
5157 1.108 chs
5158 1.108 chs (void) tlp_2114x_nway_service(sc, MII_POLLSTAT);
5159 1.108 chs ifmr->ifm_status = sc->sc_mii.mii_media_status;
5160 1.135 perry ifmr->ifm_active = sc->sc_mii.mii_media_active;
5161 1.108 chs }
5162 1.108 chs
5163 1.138 thorpej static int
5164 1.138 thorpej tlp_2114x_nway_set(struct tulip_softc *sc)
5165 1.108 chs {
5166 1.108 chs
5167 1.194 msaitoh return tlp_2114x_nway_service(sc, MII_MEDIACHG);
5168 1.108 chs }
5169 1.108 chs
5170 1.138 thorpej static void
5171 1.181 matt tlp_2114x_nway_statchg(struct ifnet *ifp)
5172 1.108 chs {
5173 1.181 matt struct tulip_softc *sc = ifp->if_softc;
5174 1.108 chs struct mii_data *mii = &sc->sc_mii;
5175 1.118 chs struct ifmedia_entry *ife;
5176 1.108 chs
5177 1.111 mycroft if (IFM_SUBTYPE(mii->mii_media_active) == IFM_NONE)
5178 1.108 chs return;
5179 1.135 perry
5180 1.135 perry if ((ife = ifmedia_match(&mii->mii_media, mii->mii_media_active,
5181 1.118 chs mii->mii_media.ifm_mask)) == NULL) {
5182 1.118 chs printf("tlp_2114x_nway_statchg: no match for media 0x%x/0x%x\n",
5183 1.118 chs mii->mii_media_active, ~mii->mii_media.ifm_mask);
5184 1.118 chs panic("tlp_2114x_nway_statchg");
5185 1.118 chs }
5186 1.108 chs
5187 1.118 chs tlp_sia_media(sc, ife);
5188 1.108 chs }
5189 1.108 chs
5190 1.138 thorpej static void
5191 1.138 thorpej tlp_2114x_nway_tick(void *arg)
5192 1.108 chs {
5193 1.108 chs struct tulip_softc *sc = arg;
5194 1.108 chs struct mii_data *mii = &sc->sc_mii;
5195 1.108 chs int s, ticks;
5196 1.108 chs
5197 1.167 cegger if (!device_is_active(sc->sc_dev))
5198 1.108 chs return;
5199 1.108 chs
5200 1.108 chs s = splnet();
5201 1.111 mycroft tlp_2114x_nway_service(sc, MII_TICK);
5202 1.108 chs if ((sc->sc_flags & TULIPF_LINK_UP) == 0 &&
5203 1.111 mycroft (mii->mii_media_status & IFM_ACTIVE) != 0 &&
5204 1.108 chs IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
5205 1.108 chs sc->sc_flags |= TULIPF_LINK_UP;
5206 1.108 chs tlp_start(&sc->sc_ethercom.ec_if);
5207 1.111 mycroft } else if ((sc->sc_flags & TULIPF_LINK_UP) != 0 &&
5208 1.111 mycroft (mii->mii_media_status & IFM_ACTIVE) == 0) {
5209 1.111 mycroft sc->sc_flags &= ~TULIPF_LINK_UP;
5210 1.108 chs }
5211 1.108 chs splx(s);
5212 1.108 chs
5213 1.108 chs if ((sc->sc_flags & TULIPF_LINK_UP) == 0)
5214 1.108 chs ticks = hz >> 3;
5215 1.108 chs else
5216 1.108 chs ticks = hz;
5217 1.108 chs callout_reset(&sc->sc_tick_callout, ticks, tlp_2114x_nway_tick, sc);
5218 1.108 chs }
5219 1.108 chs
5220 1.108 chs /*
5221 1.108 chs * Support for the 2114X internal NWay block. This is constructed
5222 1.108 chs * somewhat like a PHY driver for simplicity.
5223 1.108 chs */
5224 1.108 chs
5225 1.138 thorpej static int
5226 1.138 thorpej tlp_2114x_nway_service(struct tulip_softc *sc, int cmd)
5227 1.108 chs {
5228 1.108 chs struct mii_data *mii = &sc->sc_mii;
5229 1.108 chs struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
5230 1.108 chs
5231 1.108 chs if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
5232 1.194 msaitoh return 0;
5233 1.108 chs
5234 1.108 chs switch (cmd) {
5235 1.108 chs case MII_POLLSTAT:
5236 1.108 chs /* Nothing special to do here. */
5237 1.108 chs break;
5238 1.108 chs
5239 1.108 chs case MII_MEDIACHG:
5240 1.108 chs switch (IFM_SUBTYPE(ife->ifm_media)) {
5241 1.108 chs case IFM_AUTO:
5242 1.111 mycroft goto restart;
5243 1.108 chs default:
5244 1.111 mycroft /* Manual setting doesn't go through here. */
5245 1.111 mycroft printf("tlp_2114x_nway_service: oops!\n");
5246 1.194 msaitoh return EINVAL;
5247 1.108 chs }
5248 1.108 chs break;
5249 1.108 chs
5250 1.108 chs case MII_TICK:
5251 1.108 chs /*
5252 1.108 chs * Only used for autonegotiation.
5253 1.108 chs */
5254 1.27 thorpej if (IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO)
5255 1.111 mycroft break;
5256 1.108 chs
5257 1.108 chs /*
5258 1.108 chs * Check to see if we have link. If we do, we don't
5259 1.108 chs * need to restart the autonegotiation process.
5260 1.108 chs */
5261 1.113 mycroft #if 0
5262 1.111 mycroft if (mii->mii_media_status & IFM_ACTIVE)
5263 1.113 mycroft #else
5264 1.113 mycroft if (sc->sc_flags & TULIPF_LINK_UP)
5265 1.113 mycroft #endif
5266 1.111 mycroft break;
5267 1.108 chs
5268 1.108 chs /*
5269 1.108 chs * Only retry autonegotiation every 5 seconds.
5270 1.108 chs */
5271 1.108 chs if (++sc->sc_nway_ticks != (5 << 3))
5272 1.111 mycroft break;
5273 1.108 chs
5274 1.111 mycroft restart:
5275 1.108 chs sc->sc_nway_ticks = 0;
5276 1.111 mycroft ife->ifm_data = IFM_NONE;
5277 1.111 mycroft tlp_2114x_nway_auto(sc);
5278 1.108 chs break;
5279 1.108 chs }
5280 1.108 chs
5281 1.108 chs /* Update the media status. */
5282 1.108 chs tlp_2114x_nway_status(sc);
5283 1.108 chs
5284 1.111 mycroft /*
5285 1.111 mycroft * Callback if something changed. Manually configuration goes through
5286 1.111 mycroft * tlp_sia_set() anyway, so ignore that here.
5287 1.111 mycroft */
5288 1.111 mycroft if (IFM_SUBTYPE(ife->ifm_media) == IFM_AUTO &&
5289 1.111 mycroft ife->ifm_data != mii->mii_media_active) {
5290 1.181 matt (*sc->sc_statchg)(mii->mii_ifp);
5291 1.113 mycroft ife->ifm_data = mii->mii_media_active;
5292 1.108 chs }
5293 1.194 msaitoh return 0;
5294 1.108 chs }
5295 1.108 chs
5296 1.138 thorpej static void
5297 1.138 thorpej tlp_2114x_nway_auto(struct tulip_softc *sc)
5298 1.108 chs {
5299 1.119 thorpej uint32_t siastat, siatxrx;
5300 1.113 mycroft
5301 1.194 msaitoh tlp_idle(sc, OPMODE_ST | OPMODE_SR);
5302 1.113 mycroft
5303 1.194 msaitoh sc->sc_opmode &= ~(OPMODE_PS | OPMODE_PCS | OPMODE_SCR | OPMODE_FD);
5304 1.194 msaitoh sc->sc_opmode |= OPMODE_TTM | OPMODE_HBD;
5305 1.119 thorpej siatxrx = 0xffbf; /* XXX magic number */
5306 1.119 thorpej
5307 1.119 thorpej /* Compute the link code word to advertise. */
5308 1.119 thorpej if (sc->sc_sia_cap & BMSR_100T4)
5309 1.119 thorpej siatxrx |= SIATXRX_T4;
5310 1.119 thorpej if (sc->sc_sia_cap & BMSR_100TXFDX)
5311 1.119 thorpej siatxrx |= SIATXRX_TXF;
5312 1.119 thorpej if (sc->sc_sia_cap & BMSR_100TXHDX)
5313 1.119 thorpej siatxrx |= SIATXRX_THX;
5314 1.119 thorpej if (sc->sc_sia_cap & BMSR_10TFDX)
5315 1.119 thorpej sc->sc_opmode |= OPMODE_FD;
5316 1.119 thorpej if (sc->sc_sia_cap & BMSR_10THDX)
5317 1.119 thorpej siatxrx |= SIATXRX_TH;
5318 1.119 thorpej
5319 1.113 mycroft TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode);
5320 1.108 chs
5321 1.111 mycroft TULIP_WRITE(sc, CSR_SIACONN, 0);
5322 1.108 chs delay(1000);
5323 1.119 thorpej TULIP_WRITE(sc, CSR_SIATXRX, siatxrx);
5324 1.111 mycroft TULIP_WRITE(sc, CSR_SIACONN, SIACONN_SRL);
5325 1.108 chs
5326 1.111 mycroft siastat = TULIP_READ(sc, CSR_SIASTAT);
5327 1.194 msaitoh siastat &= ~(SIASTAT_ANS | SIASTAT_LPC | SIASTAT_TRA | SIASTAT_ARA |
5328 1.194 msaitoh SIASTAT_LS100 | SIASTAT_LS10 | SIASTAT_MRA);
5329 1.111 mycroft siastat |= SIASTAT_ANS_TXDIS;
5330 1.111 mycroft TULIP_WRITE(sc, CSR_SIASTAT, siastat);
5331 1.108 chs }
5332 1.108 chs
5333 1.138 thorpej static void
5334 1.138 thorpej tlp_2114x_nway_status(struct tulip_softc *sc)
5335 1.108 chs {
5336 1.108 chs struct mii_data *mii = &sc->sc_mii;
5337 1.110 mycroft uint32_t siatxrx, siastat, anlpar;
5338 1.108 chs
5339 1.108 chs mii->mii_media_status = IFM_AVALID;
5340 1.108 chs mii->mii_media_active = IFM_ETHER;
5341 1.108 chs
5342 1.108 chs if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
5343 1.108 chs return;
5344 1.108 chs
5345 1.108 chs siastat = TULIP_READ(sc, CSR_SIASTAT);
5346 1.108 chs siatxrx = TULIP_READ(sc, CSR_SIATXRX);
5347 1.108 chs
5348 1.108 chs if (siatxrx & SIATXRX_ANE) {
5349 1.108 chs if ((siastat & SIASTAT_ANS) != SIASTAT_ANS_FLPGOOD) {
5350 1.108 chs /* Erg, still trying, I guess... */
5351 1.108 chs mii->mii_media_active |= IFM_NONE;
5352 1.108 chs return;
5353 1.108 chs }
5354 1.108 chs
5355 1.110 mycroft if (~siastat & (SIASTAT_LS10 | SIASTAT_LS100))
5356 1.110 mycroft mii->mii_media_status |= IFM_ACTIVE;
5357 1.110 mycroft
5358 1.108 chs if (siastat & SIASTAT_LPN) {
5359 1.108 chs anlpar = SIASTAT_GETLPC(siastat);
5360 1.119 thorpej if (anlpar & ANLPAR_T4 &&
5361 1.119 thorpej sc->sc_sia_cap & BMSR_100T4)
5362 1.108 chs mii->mii_media_active |= IFM_100_T4;
5363 1.119 thorpej else if (anlpar & ANLPAR_TX_FD &&
5364 1.119 thorpej sc->sc_sia_cap & BMSR_100TXFDX)
5365 1.194 msaitoh mii->mii_media_active |= IFM_100_TX | IFM_FDX;
5366 1.119 thorpej else if (anlpar & ANLPAR_TX &&
5367 1.119 thorpej sc->sc_sia_cap & BMSR_100TXHDX)
5368 1.108 chs mii->mii_media_active |= IFM_100_TX;
5369 1.119 thorpej else if (anlpar & ANLPAR_10_FD &&
5370 1.119 thorpej sc->sc_sia_cap & BMSR_10TFDX)
5371 1.194 msaitoh mii->mii_media_active |= IFM_10_T | IFM_FDX;
5372 1.119 thorpej else if (anlpar & ANLPAR_10 &&
5373 1.119 thorpej sc->sc_sia_cap & BMSR_10THDX)
5374 1.108 chs mii->mii_media_active |= IFM_10_T;
5375 1.108 chs else
5376 1.108 chs mii->mii_media_active |= IFM_NONE;
5377 1.111 mycroft } else {
5378 1.111 mycroft /*
5379 1.111 mycroft * If the other side doesn't support NWAY, then the
5380 1.111 mycroft * best we can do is determine if we have a 10Mbps or
5381 1.135 perry * 100Mbps link. There's no way to know if the link
5382 1.111 mycroft * is full or half duplex, so we default to half duplex
5383 1.111 mycroft * and hope that the user is clever enough to manually
5384 1.111 mycroft * change the media settings if we're wrong.
5385 1.111 mycroft */
5386 1.111 mycroft if ((siastat & SIASTAT_LS100) == 0)
5387 1.111 mycroft mii->mii_media_active |= IFM_100_TX;
5388 1.111 mycroft else if ((siastat & SIASTAT_LS10) == 0)
5389 1.111 mycroft mii->mii_media_active |= IFM_10_T;
5390 1.111 mycroft else
5391 1.111 mycroft mii->mii_media_active |= IFM_NONE;
5392 1.108 chs }
5393 1.108 chs } else {
5394 1.110 mycroft if (~siastat & (SIASTAT_LS10 | SIASTAT_LS100))
5395 1.110 mycroft mii->mii_media_status |= IFM_ACTIVE;
5396 1.110 mycroft
5397 1.110 mycroft if (sc->sc_opmode & OPMODE_TTM)
5398 1.108 chs mii->mii_media_active |= IFM_10_T;
5399 1.108 chs else
5400 1.108 chs mii->mii_media_active |= IFM_100_TX;
5401 1.110 mycroft if (sc->sc_opmode & OPMODE_FD)
5402 1.108 chs mii->mii_media_active |= IFM_FDX;
5403 1.27 thorpej }
5404 1.108 chs }
5405 1.108 chs
5406 1.138 thorpej static void
5407 1.138 thorpej tlp_2114x_isv_tmsw_get(struct tulip_softc *sc, struct ifmediareq *ifmr)
5408 1.108 chs {
5409 1.108 chs struct ifmedia_entry *ife = sc->sc_mii.mii_media.ifm_cur;
5410 1.108 chs struct tulip_21x4x_media *tm = ife->ifm_aux;
5411 1.6 thorpej
5412 1.27 thorpej (*tm->tm_get)(sc, ifmr);
5413 1.6 thorpej }
5414 1.6 thorpej
5415 1.138 thorpej static int
5416 1.138 thorpej tlp_2114x_isv_tmsw_set(struct tulip_softc *sc)
5417 1.6 thorpej {
5418 1.27 thorpej struct ifmedia_entry *ife = sc->sc_mii.mii_media.ifm_cur;
5419 1.27 thorpej struct tulip_21x4x_media *tm = ife->ifm_aux;
5420 1.6 thorpej
5421 1.27 thorpej /*
5422 1.27 thorpej * Check to see if we need to reset the chip, and do it. The
5423 1.27 thorpej * reset path will get the OPMODE register right the next
5424 1.27 thorpej * time through.
5425 1.27 thorpej */
5426 1.27 thorpej if (TULIP_MEDIA_NEEDSRESET(sc, tm->tm_opmode))
5427 1.194 msaitoh return tlp_init(&sc->sc_ethercom.ec_if);
5428 1.6 thorpej
5429 1.194 msaitoh return (*tm->tm_set)(sc);
5430 1.27 thorpej }
5431 1.6 thorpej
5432 1.27 thorpej /*
5433 1.27 thorpej * MII-on-SIO media switch. Handles only MII attached to the SIO.
5434 1.27 thorpej */
5435 1.138 thorpej static void tlp_sio_mii_tmsw_init(struct tulip_softc *);
5436 1.6 thorpej
5437 1.27 thorpej const struct tulip_mediasw tlp_sio_mii_mediasw = {
5438 1.27 thorpej tlp_sio_mii_tmsw_init, tlp_mii_getmedia, tlp_mii_setmedia
5439 1.27 thorpej };
5440 1.6 thorpej
5441 1.138 thorpej static void
5442 1.138 thorpej tlp_sio_mii_tmsw_init(struct tulip_softc *sc)
5443 1.6 thorpej {
5444 1.27 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
5445 1.194 msaitoh struct mii_data * const mii = &sc->sc_mii;
5446 1.6 thorpej
5447 1.27 thorpej /*
5448 1.27 thorpej * We don't attach any media info structures to the ifmedia
5449 1.27 thorpej * entries, so if we're using a pre-init function that needs
5450 1.27 thorpej * that info, override it to one that doesn't.
5451 1.27 thorpej */
5452 1.27 thorpej if (sc->sc_preinit == tlp_2114x_preinit)
5453 1.27 thorpej sc->sc_preinit = tlp_2114x_mii_preinit;
5454 1.6 thorpej
5455 1.194 msaitoh mii->mii_ifp = ifp;
5456 1.194 msaitoh mii->mii_readreg = tlp_bitbang_mii_readreg;
5457 1.194 msaitoh mii->mii_writereg = tlp_bitbang_mii_writereg;
5458 1.194 msaitoh mii->mii_statchg = sc->sc_statchg;
5459 1.194 msaitoh sc->sc_ethercom.ec_mii = mii;
5460 1.194 msaitoh ifmedia_init(&mii->mii_media, 0, tlp_mediachange, tlp_mediastatus);
5461 1.194 msaitoh mii_attach(sc->sc_dev, mii, 0xffffffff, MII_PHY_ANY,
5462 1.44 thorpej MII_OFFSET_ANY, 0);
5463 1.194 msaitoh if (LIST_FIRST(&mii->mii_phys) == NULL) {
5464 1.194 msaitoh ifmedia_add(&mii->mii_media, IFM_ETHER | IFM_NONE, 0, NULL);
5465 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_NONE);
5466 1.27 thorpej } else {
5467 1.27 thorpej sc->sc_flags |= TULIPF_HAS_MII;
5468 1.27 thorpej sc->sc_tick = tlp_mii_tick;
5469 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_AUTO);
5470 1.27 thorpej }
5471 1.21 thorpej }
5472 1.21 thorpej
5473 1.21 thorpej /*
5474 1.27 thorpej * Lite-On PNIC media switch. Must handle MII or internal NWAY.
5475 1.21 thorpej */
5476 1.138 thorpej static void tlp_pnic_tmsw_init(struct tulip_softc *);
5477 1.138 thorpej static void tlp_pnic_tmsw_get(struct tulip_softc *, struct ifmediareq *);
5478 1.138 thorpej static int tlp_pnic_tmsw_set(struct tulip_softc *);
5479 1.21 thorpej
5480 1.27 thorpej const struct tulip_mediasw tlp_pnic_mediasw = {
5481 1.27 thorpej tlp_pnic_tmsw_init, tlp_pnic_tmsw_get, tlp_pnic_tmsw_set
5482 1.21 thorpej };
5483 1.21 thorpej
5484 1.181 matt static void tlp_pnic_nway_statchg(struct ifnet *);
5485 1.138 thorpej static void tlp_pnic_nway_tick(void *);
5486 1.138 thorpej static int tlp_pnic_nway_service(struct tulip_softc *, int);
5487 1.138 thorpej static void tlp_pnic_nway_reset(struct tulip_softc *);
5488 1.138 thorpej static int tlp_pnic_nway_auto(struct tulip_softc *, int);
5489 1.138 thorpej static void tlp_pnic_nway_auto_timeout(void *);
5490 1.138 thorpej static void tlp_pnic_nway_status(struct tulip_softc *);
5491 1.138 thorpej static void tlp_pnic_nway_acomp(struct tulip_softc *);
5492 1.25 thorpej
5493 1.138 thorpej static void
5494 1.138 thorpej tlp_pnic_tmsw_init(struct tulip_softc *sc)
5495 1.21 thorpej {
5496 1.194 msaitoh struct mii_data * const mii = &sc->sc_mii;
5497 1.21 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
5498 1.21 thorpej const char *sep = "";
5499 1.21 thorpej
5500 1.194 msaitoh #define ADD(m, c) ifmedia_add(&mii->mii_media, (m), (c), NULL)
5501 1.171 jmcneill #define PRINT(str) aprint_normal("%s%s", sep, str); sep = ", "
5502 1.21 thorpej
5503 1.194 msaitoh mii->mii_ifp = ifp;
5504 1.194 msaitoh mii->mii_readreg = tlp_pnic_mii_readreg;
5505 1.194 msaitoh mii->mii_writereg = tlp_pnic_mii_writereg;
5506 1.194 msaitoh mii->mii_statchg = sc->sc_statchg;
5507 1.194 msaitoh sc->sc_ethercom.ec_mii = mii;
5508 1.194 msaitoh ifmedia_init(&mii->mii_media, 0, tlp_mediachange, tlp_mediastatus);
5509 1.194 msaitoh mii_attach(sc->sc_dev, mii, 0xffffffff, MII_PHY_ANY,
5510 1.44 thorpej MII_OFFSET_ANY, 0);
5511 1.194 msaitoh if (LIST_FIRST(&mii->mii_phys) == NULL) {
5512 1.27 thorpej /* XXX What about AUI/BNC support? */
5513 1.171 jmcneill aprint_normal_dev(sc->sc_dev, "");
5514 1.27 thorpej
5515 1.27 thorpej tlp_pnic_nway_reset(sc);
5516 1.27 thorpej
5517 1.27 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, 0, 0),
5518 1.194 msaitoh PNIC_NWAY_TW | PNIC_NWAY_CAP10T);
5519 1.27 thorpej PRINT("10baseT");
5520 1.21 thorpej
5521 1.27 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, IFM_FDX, 0),
5522 1.194 msaitoh PNIC_NWAY_TW | PNIC_NWAY_FD | PNIC_NWAY_CAP10TFDX);
5523 1.27 thorpej PRINT("10baseT-FDX");
5524 1.21 thorpej
5525 1.27 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, 0, 0),
5526 1.194 msaitoh PNIC_NWAY_TW | PNIC_NWAY_100 | PNIC_NWAY_CAP100TX);
5527 1.27 thorpej PRINT("100baseTX");
5528 1.21 thorpej
5529 1.27 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, IFM_FDX, 0),
5530 1.194 msaitoh PNIC_NWAY_TW | PNIC_NWAY_100 | PNIC_NWAY_FD |
5531 1.27 thorpej PNIC_NWAY_CAP100TXFDX);
5532 1.27 thorpej PRINT("100baseTX-FDX");
5533 1.21 thorpej
5534 1.27 thorpej ADD(IFM_MAKEWORD(IFM_ETHER, IFM_AUTO, 0, 0),
5535 1.194 msaitoh PNIC_NWAY_TW | PNIC_NWAY_RN | PNIC_NWAY_NW |
5536 1.194 msaitoh PNIC_NWAY_CAP10T | PNIC_NWAY_CAP10TFDX |
5537 1.194 msaitoh PNIC_NWAY_CAP100TXFDX | PNIC_NWAY_CAP100TX);
5538 1.27 thorpej PRINT("auto");
5539 1.21 thorpej
5540 1.171 jmcneill aprint_normal("\n");
5541 1.26 thorpej
5542 1.27 thorpej sc->sc_statchg = tlp_pnic_nway_statchg;
5543 1.27 thorpej sc->sc_tick = tlp_pnic_nway_tick;
5544 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_AUTO);
5545 1.27 thorpej } else {
5546 1.27 thorpej sc->sc_flags |= TULIPF_HAS_MII;
5547 1.27 thorpej sc->sc_tick = tlp_mii_tick;
5548 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_AUTO);
5549 1.27 thorpej }
5550 1.21 thorpej
5551 1.21 thorpej #undef ADD
5552 1.21 thorpej #undef PRINT
5553 1.21 thorpej }
5554 1.21 thorpej
5555 1.138 thorpej static void
5556 1.138 thorpej tlp_pnic_tmsw_get(struct tulip_softc *sc, struct ifmediareq *ifmr)
5557 1.21 thorpej {
5558 1.21 thorpej struct mii_data *mii = &sc->sc_mii;
5559 1.21 thorpej
5560 1.21 thorpej if (sc->sc_flags & TULIPF_HAS_MII)
5561 1.21 thorpej tlp_mii_getmedia(sc, ifmr);
5562 1.21 thorpej else {
5563 1.21 thorpej mii->mii_media_status = 0;
5564 1.21 thorpej mii->mii_media_active = IFM_NONE;
5565 1.27 thorpej tlp_pnic_nway_service(sc, MII_POLLSTAT);
5566 1.194 msaitoh ifmr->ifm_status = mii->mii_media_status;
5567 1.194 msaitoh ifmr->ifm_active = mii->mii_media_active;
5568 1.21 thorpej }
5569 1.21 thorpej }
5570 1.21 thorpej
5571 1.138 thorpej static int
5572 1.138 thorpej tlp_pnic_tmsw_set(struct tulip_softc *sc)
5573 1.21 thorpej {
5574 1.21 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
5575 1.21 thorpej struct mii_data *mii = &sc->sc_mii;
5576 1.21 thorpej
5577 1.27 thorpej if (sc->sc_flags & TULIPF_HAS_MII) {
5578 1.27 thorpej /*
5579 1.27 thorpej * Make sure the built-in Tx jabber timer is disabled.
5580 1.27 thorpej */
5581 1.27 thorpej TULIP_WRITE(sc, CSR_PNIC_ENDEC, PNIC_ENDEC_JDIS);
5582 1.27 thorpej
5583 1.194 msaitoh return tlp_mii_setmedia(sc);
5584 1.27 thorpej }
5585 1.21 thorpej
5586 1.21 thorpej if (ifp->if_flags & IFF_UP) {
5587 1.21 thorpej mii->mii_media_status = 0;
5588 1.21 thorpej mii->mii_media_active = IFM_NONE;
5589 1.194 msaitoh return tlp_pnic_nway_service(sc, MII_MEDIACHG);
5590 1.21 thorpej }
5591 1.21 thorpej
5592 1.194 msaitoh return 0;
5593 1.21 thorpej }
5594 1.21 thorpej
5595 1.138 thorpej static void
5596 1.181 matt tlp_pnic_nway_statchg(struct ifnet *ifp)
5597 1.21 thorpej {
5598 1.181 matt struct tulip_softc *sc = ifp->if_softc;
5599 1.21 thorpej
5600 1.21 thorpej /* Idle the transmit and receive processes. */
5601 1.194 msaitoh tlp_idle(sc, OPMODE_ST | OPMODE_SR);
5602 1.21 thorpej
5603 1.194 msaitoh sc->sc_opmode &= ~(OPMODE_TTM | OPMODE_FD | OPMODE_PS | OPMODE_PCS |
5604 1.194 msaitoh OPMODE_SCR | OPMODE_HBD);
5605 1.21 thorpej
5606 1.27 thorpej if (IFM_SUBTYPE(sc->sc_mii.mii_media_active) == IFM_10_T) {
5607 1.21 thorpej sc->sc_opmode |= OPMODE_TTM;
5608 1.27 thorpej TULIP_WRITE(sc, CSR_GPP,
5609 1.27 thorpej GPP_PNIC_OUT(GPP_PNIC_PIN_SPEED_RLY, 0) |
5610 1.27 thorpej GPP_PNIC_OUT(GPP_PNIC_PIN_100M_LPKB, 1));
5611 1.27 thorpej } else {
5612 1.194 msaitoh sc->sc_opmode |= OPMODE_PS |OPMODE_PCS |OPMODE_SCR |OPMODE_HBD;
5613 1.27 thorpej TULIP_WRITE(sc, CSR_GPP,
5614 1.27 thorpej GPP_PNIC_OUT(GPP_PNIC_PIN_SPEED_RLY, 1) |
5615 1.27 thorpej GPP_PNIC_OUT(GPP_PNIC_PIN_100M_LPKB, 1));
5616 1.27 thorpej }
5617 1.21 thorpej
5618 1.21 thorpej if (sc->sc_mii.mii_media_active & IFM_FDX)
5619 1.194 msaitoh sc->sc_opmode |= OPMODE_FD | OPMODE_HBD;
5620 1.21 thorpej
5621 1.21 thorpej /*
5622 1.21 thorpej * Write new OPMODE bits. This also restarts the transmit
5623 1.21 thorpej * and receive processes.
5624 1.21 thorpej */
5625 1.21 thorpej TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode);
5626 1.21 thorpej }
5627 1.21 thorpej
5628 1.138 thorpej static void
5629 1.138 thorpej tlp_pnic_nway_tick(void *arg)
5630 1.21 thorpej {
5631 1.21 thorpej struct tulip_softc *sc = arg;
5632 1.21 thorpej int s;
5633 1.42 thorpej
5634 1.167 cegger if (!device_is_active(sc->sc_dev))
5635 1.42 thorpej return;
5636 1.21 thorpej
5637 1.21 thorpej s = splnet();
5638 1.27 thorpej tlp_pnic_nway_service(sc, MII_TICK);
5639 1.21 thorpej splx(s);
5640 1.21 thorpej
5641 1.56 thorpej callout_reset(&sc->sc_tick_callout, hz, tlp_pnic_nway_tick, sc);
5642 1.21 thorpej }
5643 1.21 thorpej
5644 1.21 thorpej /*
5645 1.27 thorpej * Support for the Lite-On PNIC internal NWay block. This is constructed
5646 1.21 thorpej * somewhat like a PHY driver for simplicity.
5647 1.21 thorpej */
5648 1.21 thorpej
5649 1.138 thorpej static int
5650 1.138 thorpej tlp_pnic_nway_service(struct tulip_softc *sc, int cmd)
5651 1.21 thorpej {
5652 1.21 thorpej struct mii_data *mii = &sc->sc_mii;
5653 1.21 thorpej struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
5654 1.21 thorpej
5655 1.21 thorpej if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
5656 1.194 msaitoh return 0;
5657 1.21 thorpej
5658 1.21 thorpej switch (cmd) {
5659 1.21 thorpej case MII_POLLSTAT:
5660 1.21 thorpej /* Nothing special to do here. */
5661 1.21 thorpej break;
5662 1.21 thorpej
5663 1.27 thorpej case MII_MEDIACHG:
5664 1.21 thorpej switch (IFM_SUBTYPE(ife->ifm_media)) {
5665 1.21 thorpej case IFM_AUTO:
5666 1.21 thorpej (void) tlp_pnic_nway_auto(sc, 1);
5667 1.21 thorpej break;
5668 1.21 thorpej case IFM_100_T4:
5669 1.21 thorpej /*
5670 1.21 thorpej * XXX Not supported as a manual setting right now.
5671 1.21 thorpej */
5672 1.194 msaitoh return EINVAL;
5673 1.21 thorpej default:
5674 1.27 thorpej /*
5675 1.27 thorpej * NWAY register data is stored in the ifmedia entry.
5676 1.27 thorpej */
5677 1.27 thorpej TULIP_WRITE(sc, CSR_PNIC_NWAY, ife->ifm_data);
5678 1.21 thorpej }
5679 1.21 thorpej break;
5680 1.21 thorpej
5681 1.21 thorpej case MII_TICK:
5682 1.21 thorpej /*
5683 1.21 thorpej * Only used for autonegotiation.
5684 1.21 thorpej */
5685 1.21 thorpej if (IFM_SUBTYPE(ife->ifm_media) != IFM_AUTO)
5686 1.194 msaitoh return 0;
5687 1.21 thorpej
5688 1.21 thorpej /*
5689 1.21 thorpej * Check to see if we have link. If we do, we don't
5690 1.21 thorpej * need to restart the autonegotiation process.
5691 1.21 thorpej */
5692 1.21 thorpej if (sc->sc_flags & TULIPF_LINK_UP)
5693 1.194 msaitoh return 0;
5694 1.21 thorpej
5695 1.21 thorpej /*
5696 1.21 thorpej * Only retry autonegotiation every 5 seconds.
5697 1.21 thorpej */
5698 1.25 thorpej if (++sc->sc_nway_ticks != 5)
5699 1.194 msaitoh return 0;
5700 1.21 thorpej
5701 1.21 thorpej sc->sc_nway_ticks = 0;
5702 1.27 thorpej tlp_pnic_nway_reset(sc);
5703 1.27 thorpej if (tlp_pnic_nway_auto(sc, 0) == EJUSTRETURN)
5704 1.194 msaitoh return 0;
5705 1.21 thorpej break;
5706 1.21 thorpej }
5707 1.21 thorpej
5708 1.21 thorpej /* Update the media status. */
5709 1.27 thorpej tlp_pnic_nway_status(sc);
5710 1.21 thorpej
5711 1.21 thorpej /* Callback if something changed. */
5712 1.27 thorpej if ((sc->sc_nway_active == NULL ||
5713 1.27 thorpej sc->sc_nway_active->ifm_media != mii->mii_media_active) ||
5714 1.21 thorpej cmd == MII_MEDIACHG) {
5715 1.181 matt (*sc->sc_statchg)(mii->mii_ifp);
5716 1.27 thorpej tlp_nway_activate(sc, mii->mii_media_active);
5717 1.21 thorpej }
5718 1.194 msaitoh return 0;
5719 1.21 thorpej }
5720 1.21 thorpej
5721 1.138 thorpej static void
5722 1.138 thorpej tlp_pnic_nway_reset(struct tulip_softc *sc)
5723 1.21 thorpej {
5724 1.21 thorpej
5725 1.27 thorpej TULIP_WRITE(sc, CSR_PNIC_NWAY, PNIC_NWAY_RS);
5726 1.27 thorpej delay(100);
5727 1.27 thorpej TULIP_WRITE(sc, CSR_PNIC_NWAY, 0);
5728 1.21 thorpej }
5729 1.21 thorpej
5730 1.138 thorpej static int
5731 1.138 thorpej tlp_pnic_nway_auto(struct tulip_softc *sc, int waitfor)
5732 1.21 thorpej {
5733 1.27 thorpej struct mii_data *mii = &sc->sc_mii;
5734 1.27 thorpej struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
5735 1.165 cegger uint32_t reg;
5736 1.21 thorpej int i;
5737 1.21 thorpej
5738 1.27 thorpej if ((sc->sc_flags & TULIPF_DOINGAUTO) == 0)
5739 1.27 thorpej TULIP_WRITE(sc, CSR_PNIC_NWAY, ife->ifm_data);
5740 1.21 thorpej
5741 1.21 thorpej if (waitfor) {
5742 1.21 thorpej /* Wait 500ms for it to complete. */
5743 1.21 thorpej for (i = 0; i < 500; i++) {
5744 1.27 thorpej reg = TULIP_READ(sc, CSR_PNIC_NWAY);
5745 1.27 thorpej if (reg & PNIC_NWAY_LPAR_MASK) {
5746 1.27 thorpej tlp_pnic_nway_acomp(sc);
5747 1.194 msaitoh return 0;
5748 1.21 thorpej }
5749 1.21 thorpej delay(1000);
5750 1.21 thorpej }
5751 1.21 thorpej #if 0
5752 1.27 thorpej if ((reg & PNIC_NWAY_LPAR_MASK) == 0)
5753 1.188 msaitoh aprint_error_dev(sc->sc_dev,
5754 1.188 msaitoh "autonegotiation failed to complete\n");
5755 1.21 thorpej #endif
5756 1.21 thorpej
5757 1.21 thorpej /*
5758 1.21 thorpej * Don't need to worry about clearing DOINGAUTO.
5759 1.21 thorpej * If that's set, a timeout is pending, and it will
5760 1.21 thorpej * clear the flag.
5761 1.21 thorpej */
5762 1.194 msaitoh return EIO;
5763 1.21 thorpej }
5764 1.21 thorpej
5765 1.21 thorpej /*
5766 1.21 thorpej * Just let it finish asynchronously. This is for the benefit of
5767 1.21 thorpej * the tick handler driving autonegotiation. Don't want 500ms
5768 1.27 thorpej * delays all the time while the system is running!
5769 1.21 thorpej */
5770 1.21 thorpej if ((sc->sc_flags & TULIPF_DOINGAUTO) == 0) {
5771 1.21 thorpej sc->sc_flags |= TULIPF_DOINGAUTO;
5772 1.56 thorpej callout_reset(&sc->sc_nway_callout, hz >> 1,
5773 1.56 thorpej tlp_pnic_nway_auto_timeout, sc);
5774 1.21 thorpej }
5775 1.194 msaitoh return EJUSTRETURN;
5776 1.21 thorpej }
5777 1.21 thorpej
5778 1.138 thorpej static void
5779 1.138 thorpej tlp_pnic_nway_auto_timeout(void *arg)
5780 1.21 thorpej {
5781 1.21 thorpej struct tulip_softc *sc = arg;
5782 1.183 martin /* uint32_t reg; */
5783 1.21 thorpej int s;
5784 1.21 thorpej
5785 1.21 thorpej s = splnet();
5786 1.21 thorpej sc->sc_flags &= ~TULIPF_DOINGAUTO;
5787 1.183 martin /* reg = */
5788 1.183 martin TULIP_READ(sc, CSR_PNIC_NWAY);
5789 1.21 thorpej #if 0
5790 1.27 thorpej if ((reg & PNIC_NWAY_LPAR_MASK) == 0)
5791 1.188 msaitoh aprint_error_dev(sc->sc_dev,
5792 1.188 msaitoh "autonegotiation failed to complete\n");
5793 1.21 thorpej #endif
5794 1.21 thorpej
5795 1.27 thorpej tlp_pnic_nway_acomp(sc);
5796 1.21 thorpej
5797 1.21 thorpej /* Update the media status. */
5798 1.194 msaitoh (void)tlp_pnic_nway_service(sc, MII_POLLSTAT);
5799 1.21 thorpej splx(s);
5800 1.21 thorpej }
5801 1.21 thorpej
5802 1.138 thorpej static void
5803 1.138 thorpej tlp_pnic_nway_status(struct tulip_softc *sc)
5804 1.21 thorpej {
5805 1.21 thorpej struct mii_data *mii = &sc->sc_mii;
5806 1.165 cegger uint32_t reg;
5807 1.21 thorpej
5808 1.21 thorpej mii->mii_media_status = IFM_AVALID;
5809 1.21 thorpej mii->mii_media_active = IFM_ETHER;
5810 1.21 thorpej
5811 1.27 thorpej reg = TULIP_READ(sc, CSR_PNIC_NWAY);
5812 1.27 thorpej
5813 1.27 thorpej if (sc->sc_flags & TULIPF_LINK_UP)
5814 1.27 thorpej mii->mii_media_status |= IFM_ACTIVE;
5815 1.27 thorpej
5816 1.27 thorpej if (reg & PNIC_NWAY_NW) {
5817 1.27 thorpej if ((reg & PNIC_NWAY_LPAR_MASK) == 0) {
5818 1.21 thorpej /* Erg, still trying, I guess... */
5819 1.21 thorpej mii->mii_media_active |= IFM_NONE;
5820 1.21 thorpej return;
5821 1.21 thorpej }
5822 1.21 thorpej
5823 1.21 thorpej #if 0
5824 1.27 thorpej if (reg & PNIC_NWAY_LPAR100T4)
5825 1.21 thorpej mii->mii_media_active |= IFM_100_T4;
5826 1.21 thorpej else
5827 1.21 thorpej #endif
5828 1.27 thorpej if (reg & PNIC_NWAY_LPAR100TXFDX)
5829 1.194 msaitoh mii->mii_media_active |= IFM_100_TX | IFM_FDX;
5830 1.27 thorpej else if (reg & PNIC_NWAY_LPAR100TX)
5831 1.21 thorpej mii->mii_media_active |= IFM_100_TX;
5832 1.27 thorpej else if (reg & PNIC_NWAY_LPAR10TFDX)
5833 1.194 msaitoh mii->mii_media_active |= IFM_10_T | IFM_FDX;
5834 1.27 thorpej else if (reg & PNIC_NWAY_LPAR10T)
5835 1.21 thorpej mii->mii_media_active |= IFM_10_T;
5836 1.21 thorpej else
5837 1.21 thorpej mii->mii_media_active |= IFM_NONE;
5838 1.21 thorpej } else {
5839 1.27 thorpej if (reg & PNIC_NWAY_100)
5840 1.27 thorpej mii->mii_media_active |= IFM_100_TX;
5841 1.27 thorpej else
5842 1.27 thorpej mii->mii_media_active |= IFM_10_T;
5843 1.27 thorpej if (reg & PNIC_NWAY_FD)
5844 1.27 thorpej mii->mii_media_active |= IFM_FDX;
5845 1.21 thorpej }
5846 1.25 thorpej }
5847 1.25 thorpej
5848 1.138 thorpej static void
5849 1.138 thorpej tlp_pnic_nway_acomp(struct tulip_softc *sc)
5850 1.25 thorpej {
5851 1.165 cegger uint32_t reg;
5852 1.24 thorpej
5853 1.27 thorpej reg = TULIP_READ(sc, CSR_PNIC_NWAY);
5854 1.194 msaitoh reg &= ~(PNIC_NWAY_FD | PNIC_NWAY_100 | PNIC_NWAY_RN);
5855 1.27 thorpej
5856 1.194 msaitoh if (reg & (PNIC_NWAY_LPAR100TXFDX | PNIC_NWAY_LPAR100TX))
5857 1.27 thorpej reg |= PNIC_NWAY_100;
5858 1.194 msaitoh if (reg & (PNIC_NWAY_LPAR10TFDX | PNIC_NWAY_LPAR100TXFDX))
5859 1.27 thorpej reg |= PNIC_NWAY_FD;
5860 1.24 thorpej
5861 1.27 thorpej TULIP_WRITE(sc, CSR_PNIC_NWAY, reg);
5862 1.21 thorpej }
5863 1.21 thorpej
5864 1.27 thorpej /*
5865 1.27 thorpej * Macronix PMAC and Lite-On PNIC-II media switch:
5866 1.27 thorpej *
5867 1.27 thorpej * MX98713 and MX98713A 21140-like MII or GPIO media.
5868 1.27 thorpej *
5869 1.27 thorpej * MX98713A 21143-like MII or SIA/SYM media.
5870 1.27 thorpej *
5871 1.27 thorpej * MX98715, MX98715A, MX98725, 21143-like SIA/SYM media.
5872 1.71 castor * 82C115, MX98715AEC-C, -E
5873 1.27 thorpej *
5874 1.27 thorpej * So, what we do here is fake MII-on-SIO or ISV media info, and
5875 1.27 thorpej * use the ISV media switch get/set functions to handle the rest.
5876 1.27 thorpej */
5877 1.27 thorpej
5878 1.138 thorpej static void tlp_pmac_tmsw_init(struct tulip_softc *);
5879 1.27 thorpej
5880 1.27 thorpej const struct tulip_mediasw tlp_pmac_mediasw = {
5881 1.27 thorpej tlp_pmac_tmsw_init, tlp_2114x_isv_tmsw_get, tlp_2114x_isv_tmsw_set
5882 1.27 thorpej };
5883 1.27 thorpej
5884 1.27 thorpej const struct tulip_mediasw tlp_pmac_mii_mediasw = {
5885 1.27 thorpej tlp_pmac_tmsw_init, tlp_mii_getmedia, tlp_mii_setmedia
5886 1.27 thorpej };
5887 1.27 thorpej
5888 1.138 thorpej static void
5889 1.138 thorpej tlp_pmac_tmsw_init(struct tulip_softc *sc)
5890 1.21 thorpej {
5891 1.194 msaitoh struct mii_data * const mii = &sc->sc_mii;
5892 1.165 cegger static const uint8_t media[] = {
5893 1.27 thorpej TULIP_ROM_MB_MEDIA_TP,
5894 1.27 thorpej TULIP_ROM_MB_MEDIA_TP_FDX,
5895 1.27 thorpej TULIP_ROM_MB_MEDIA_100TX,
5896 1.27 thorpej TULIP_ROM_MB_MEDIA_100TX_FDX,
5897 1.27 thorpej };
5898 1.27 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
5899 1.108 chs struct tulip_21x4x_media *tm;
5900 1.27 thorpej
5901 1.194 msaitoh mii->mii_ifp = ifp;
5902 1.194 msaitoh mii->mii_readreg = tlp_bitbang_mii_readreg;
5903 1.194 msaitoh mii->mii_writereg = tlp_bitbang_mii_writereg;
5904 1.194 msaitoh mii->mii_statchg = sc->sc_statchg;
5905 1.194 msaitoh sc->sc_ethercom.ec_mii = mii;
5906 1.194 msaitoh ifmedia_init(&mii->mii_media, 0, tlp_mediachange, tlp_mediastatus);
5907 1.27 thorpej if (sc->sc_chip == TULIP_CHIP_MX98713 ||
5908 1.27 thorpej sc->sc_chip == TULIP_CHIP_MX98713A) {
5909 1.194 msaitoh mii_attach(sc->sc_dev, mii, 0xffffffff,
5910 1.44 thorpej MII_PHY_ANY, MII_OFFSET_ANY, 0);
5911 1.194 msaitoh if (LIST_FIRST(&mii->mii_phys) != NULL) {
5912 1.27 thorpej sc->sc_flags |= TULIPF_HAS_MII;
5913 1.27 thorpej sc->sc_tick = tlp_mii_tick;
5914 1.27 thorpej sc->sc_preinit = tlp_2114x_mii_preinit;
5915 1.27 thorpej sc->sc_mediasw = &tlp_pmac_mii_mediasw;
5916 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_AUTO);
5917 1.27 thorpej return;
5918 1.27 thorpej }
5919 1.27 thorpej }
5920 1.27 thorpej
5921 1.27 thorpej switch (sc->sc_chip) {
5922 1.27 thorpej case TULIP_CHIP_MX98713:
5923 1.27 thorpej tlp_add_srom_media(sc, TULIP_ROM_MB_21140_GPR,
5924 1.27 thorpej tlp_21140_gpio_get, tlp_21140_gpio_set, media, 4);
5925 1.21 thorpej
5926 1.27 thorpej /*
5927 1.27 thorpej * XXX Should implement auto-sense for this someday,
5928 1.27 thorpej * XXX when we do the same for the 21140.
5929 1.27 thorpej */
5930 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_10_T);
5931 1.27 thorpej break;
5932 1.27 thorpej
5933 1.27 thorpej default:
5934 1.27 thorpej tlp_add_srom_media(sc, TULIP_ROM_MB_21142_SIA,
5935 1.27 thorpej tlp_sia_get, tlp_sia_set, media, 2);
5936 1.27 thorpej tlp_add_srom_media(sc, TULIP_ROM_MB_21143_SYM,
5937 1.27 thorpej tlp_sia_get, tlp_sia_set, media + 2, 2);
5938 1.27 thorpej
5939 1.194 msaitoh tm = malloc(sizeof(*tm), M_DEVBUF, M_WAITOK | M_ZERO);
5940 1.108 chs tm->tm_name = "auto";
5941 1.108 chs tm->tm_get = tlp_2114x_nway_get;
5942 1.108 chs tm->tm_set = tlp_2114x_nway_set;
5943 1.194 msaitoh ifmedia_add(&mii->mii_media,
5944 1.108 chs IFM_MAKEWORD(IFM_ETHER, IFM_AUTO, 0, 0), 0, tm);
5945 1.108 chs
5946 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_AUTO);
5947 1.108 chs sc->sc_statchg = tlp_2114x_nway_statchg;
5948 1.108 chs sc->sc_tick = tlp_2114x_nway_tick;
5949 1.27 thorpej break;
5950 1.27 thorpej }
5951 1.27 thorpej
5952 1.27 thorpej tlp_print_media(sc);
5953 1.27 thorpej tlp_sia_fixup(sc);
5954 1.27 thorpej
5955 1.27 thorpej /* Set the LED modes. */
5956 1.27 thorpej tlp_pmac_reset(sc);
5957 1.27 thorpej
5958 1.27 thorpej sc->sc_reset = tlp_pmac_reset;
5959 1.21 thorpej }
5960 1.21 thorpej
5961 1.21 thorpej /*
5962 1.21 thorpej * ADMtek AL981 media switch. Only has internal PHY.
5963 1.21 thorpej */
5964 1.138 thorpej static void tlp_al981_tmsw_init(struct tulip_softc *);
5965 1.21 thorpej
5966 1.21 thorpej const struct tulip_mediasw tlp_al981_mediasw = {
5967 1.21 thorpej tlp_al981_tmsw_init, tlp_mii_getmedia, tlp_mii_setmedia
5968 1.21 thorpej };
5969 1.21 thorpej
5970 1.138 thorpej static void
5971 1.138 thorpej tlp_al981_tmsw_init(struct tulip_softc *sc)
5972 1.21 thorpej {
5973 1.21 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
5974 1.194 msaitoh struct mii_data * const mii = &sc->sc_mii;
5975 1.21 thorpej
5976 1.194 msaitoh mii->mii_ifp = ifp;
5977 1.194 msaitoh mii->mii_readreg = tlp_al981_mii_readreg;
5978 1.194 msaitoh mii->mii_writereg = tlp_al981_mii_writereg;
5979 1.194 msaitoh mii->mii_statchg = sc->sc_statchg;
5980 1.194 msaitoh sc->sc_ethercom.ec_mii = mii;
5981 1.194 msaitoh ifmedia_init(&mii->mii_media, 0, tlp_mediachange, tlp_mediastatus);
5982 1.194 msaitoh mii_attach(sc->sc_dev, mii, 0xffffffff, MII_PHY_ANY,
5983 1.86 thorpej MII_OFFSET_ANY, 0);
5984 1.194 msaitoh if (LIST_FIRST(&mii->mii_phys) == NULL) {
5985 1.194 msaitoh ifmedia_add(&mii->mii_media, IFM_ETHER | IFM_NONE, 0, NULL);
5986 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_NONE);
5987 1.86 thorpej } else {
5988 1.86 thorpej sc->sc_flags |= TULIPF_HAS_MII;
5989 1.86 thorpej sc->sc_tick = tlp_mii_tick;
5990 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_AUTO);
5991 1.86 thorpej }
5992 1.86 thorpej }
5993 1.86 thorpej
5994 1.86 thorpej /*
5995 1.86 thorpej * ADMtek AN983/985 media switch. Only has internal PHY, but
5996 1.86 thorpej * on an SIO-like interface. Unfortunately, we can't use the
5997 1.86 thorpej * standard SIO media switch, because the AN985 "ghosts" the
5998 1.86 thorpej * singly PHY at every address.
5999 1.86 thorpej */
6000 1.138 thorpej static void tlp_an985_tmsw_init(struct tulip_softc *);
6001 1.86 thorpej
6002 1.86 thorpej const struct tulip_mediasw tlp_an985_mediasw = {
6003 1.86 thorpej tlp_an985_tmsw_init, tlp_mii_getmedia, tlp_mii_setmedia
6004 1.86 thorpej };
6005 1.86 thorpej
6006 1.138 thorpej static void
6007 1.138 thorpej tlp_an985_tmsw_init(struct tulip_softc *sc)
6008 1.86 thorpej {
6009 1.86 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
6010 1.194 msaitoh struct mii_data * const mii = &sc->sc_mii;
6011 1.86 thorpej
6012 1.194 msaitoh mii->mii_ifp = ifp;
6013 1.194 msaitoh mii->mii_readreg = tlp_bitbang_mii_readreg;
6014 1.194 msaitoh mii->mii_writereg = tlp_bitbang_mii_writereg;
6015 1.194 msaitoh mii->mii_statchg = sc->sc_statchg;
6016 1.194 msaitoh sc->sc_ethercom.ec_mii = mii;
6017 1.194 msaitoh ifmedia_init(&mii->mii_media, 0, tlp_mediachange, tlp_mediastatus);
6018 1.194 msaitoh mii_attach(sc->sc_dev, mii, 0xffffffff, 1, MII_OFFSET_ANY, 0);
6019 1.194 msaitoh if (LIST_FIRST(&mii->mii_phys) == NULL) {
6020 1.194 msaitoh ifmedia_add(&mii->mii_media, IFM_ETHER | IFM_NONE, 0, NULL);
6021 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_NONE);
6022 1.21 thorpej } else {
6023 1.21 thorpej sc->sc_flags |= TULIPF_HAS_MII;
6024 1.21 thorpej sc->sc_tick = tlp_mii_tick;
6025 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_AUTO);
6026 1.21 thorpej }
6027 1.68 thorpej }
6028 1.68 thorpej
6029 1.68 thorpej /*
6030 1.68 thorpej * Davicom DM9102 media switch. Internal PHY and possibly HomePNA.
6031 1.68 thorpej */
6032 1.138 thorpej static void tlp_dm9102_tmsw_init(struct tulip_softc *);
6033 1.138 thorpej static void tlp_dm9102_tmsw_getmedia(struct tulip_softc *,
6034 1.138 thorpej struct ifmediareq *);
6035 1.138 thorpej static int tlp_dm9102_tmsw_setmedia(struct tulip_softc *);
6036 1.68 thorpej
6037 1.68 thorpej const struct tulip_mediasw tlp_dm9102_mediasw = {
6038 1.68 thorpej tlp_dm9102_tmsw_init, tlp_dm9102_tmsw_getmedia,
6039 1.68 thorpej tlp_dm9102_tmsw_setmedia
6040 1.68 thorpej };
6041 1.68 thorpej
6042 1.138 thorpej static void
6043 1.138 thorpej tlp_dm9102_tmsw_init(struct tulip_softc *sc)
6044 1.68 thorpej {
6045 1.68 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
6046 1.194 msaitoh struct mii_data * const mii = &sc->sc_mii;
6047 1.165 cegger uint32_t opmode;
6048 1.68 thorpej
6049 1.194 msaitoh mii->mii_ifp = ifp;
6050 1.194 msaitoh mii->mii_readreg = tlp_bitbang_mii_readreg;
6051 1.194 msaitoh mii->mii_writereg = tlp_bitbang_mii_writereg;
6052 1.194 msaitoh mii->mii_statchg = sc->sc_statchg;
6053 1.194 msaitoh sc->sc_ethercom.ec_mii = mii;
6054 1.194 msaitoh ifmedia_init(&mii->mii_media, 0, tlp_mediachange, tlp_mediastatus);
6055 1.68 thorpej
6056 1.68 thorpej /* PHY block already reset via tlp_reset(). */
6057 1.68 thorpej
6058 1.68 thorpej /*
6059 1.68 thorpej * Configure OPMODE properly for the internal MII interface.
6060 1.68 thorpej */
6061 1.68 thorpej switch (sc->sc_chip) {
6062 1.68 thorpej case TULIP_CHIP_DM9102:
6063 1.194 msaitoh opmode = OPMODE_MBO | OPMODE_HBD | OPMODE_PS;
6064 1.68 thorpej break;
6065 1.68 thorpej
6066 1.68 thorpej case TULIP_CHIP_DM9102A:
6067 1.194 msaitoh opmode = OPMODE_MBO | OPMODE_HBD;
6068 1.68 thorpej break;
6069 1.68 thorpej
6070 1.68 thorpej default:
6071 1.125 christos opmode = 0;
6072 1.91 cgd break;
6073 1.68 thorpej }
6074 1.68 thorpej
6075 1.68 thorpej TULIP_WRITE(sc, CSR_OPMODE, opmode);
6076 1.68 thorpej
6077 1.68 thorpej /* Now, probe the internal MII for the internal PHY. */
6078 1.194 msaitoh mii_attach(sc->sc_dev, mii, 0xffffffff, MII_PHY_ANY,
6079 1.68 thorpej MII_OFFSET_ANY, 0);
6080 1.68 thorpej
6081 1.68 thorpej /*
6082 1.68 thorpej * XXX Figure out what to do about the HomePNA portion
6083 1.68 thorpej * XXX of the DM9102A.
6084 1.68 thorpej */
6085 1.68 thorpej
6086 1.68 thorpej if (LIST_FIRST(&sc->sc_mii.mii_phys) == NULL) {
6087 1.194 msaitoh ifmedia_add(&mii->mii_media, IFM_ETHER | IFM_NONE, 0, NULL);
6088 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_NONE);
6089 1.68 thorpej } else {
6090 1.68 thorpej sc->sc_flags |= TULIPF_HAS_MII;
6091 1.68 thorpej sc->sc_tick = tlp_mii_tick;
6092 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_AUTO);
6093 1.68 thorpej }
6094 1.68 thorpej }
6095 1.68 thorpej
6096 1.138 thorpej static void
6097 1.138 thorpej tlp_dm9102_tmsw_getmedia(struct tulip_softc *sc, struct ifmediareq *ifmr)
6098 1.68 thorpej {
6099 1.68 thorpej
6100 1.68 thorpej /* XXX HomePNA on DM9102A. */
6101 1.68 thorpej tlp_mii_getmedia(sc, ifmr);
6102 1.68 thorpej }
6103 1.68 thorpej
6104 1.138 thorpej static int
6105 1.138 thorpej tlp_dm9102_tmsw_setmedia(struct tulip_softc *sc)
6106 1.68 thorpej {
6107 1.68 thorpej
6108 1.68 thorpej /* XXX HomePNA on DM9102A. */
6109 1.194 msaitoh return tlp_mii_setmedia(sc);
6110 1.1 thorpej }
6111 1.137 rpaulo
6112 1.137 rpaulo /*
6113 1.137 rpaulo * ASIX AX88140A/AX88141 media switch. Internal PHY or MII.
6114 1.137 rpaulo */
6115 1.137 rpaulo
6116 1.138 thorpej static void tlp_asix_tmsw_init(struct tulip_softc *);
6117 1.138 thorpej static void tlp_asix_tmsw_getmedia(struct tulip_softc *,
6118 1.138 thorpej struct ifmediareq *);
6119 1.138 thorpej static int tlp_asix_tmsw_setmedia(struct tulip_softc *);
6120 1.137 rpaulo
6121 1.137 rpaulo const struct tulip_mediasw tlp_asix_mediasw = {
6122 1.137 rpaulo tlp_asix_tmsw_init, tlp_asix_tmsw_getmedia,
6123 1.137 rpaulo tlp_asix_tmsw_setmedia
6124 1.137 rpaulo };
6125 1.137 rpaulo
6126 1.138 thorpej static void
6127 1.138 thorpej tlp_asix_tmsw_init(struct tulip_softc *sc)
6128 1.137 rpaulo {
6129 1.137 rpaulo struct ifnet *ifp = &sc->sc_ethercom.ec_if;
6130 1.194 msaitoh struct mii_data * const mii = &sc->sc_mii;
6131 1.165 cegger uint32_t opmode;
6132 1.137 rpaulo
6133 1.194 msaitoh mii->mii_ifp = ifp;
6134 1.195 msaitoh mii->mii_readreg = tlp_bitbang_mii_readreg;
6135 1.195 msaitoh mii->mii_writereg = tlp_bitbang_mii_writereg;
6136 1.194 msaitoh mii->mii_statchg = sc->sc_statchg;
6137 1.194 msaitoh sc->sc_ethercom.ec_mii = mii;
6138 1.194 msaitoh ifmedia_init(&mii->mii_media, 0, tlp_mediachange, tlp_mediastatus);
6139 1.137 rpaulo
6140 1.137 rpaulo /*
6141 1.137 rpaulo * Configure OPMODE properly for the internal MII interface.
6142 1.137 rpaulo */
6143 1.137 rpaulo switch (sc->sc_chip) {
6144 1.137 rpaulo case TULIP_CHIP_AX88140:
6145 1.137 rpaulo case TULIP_CHIP_AX88141:
6146 1.194 msaitoh opmode = OPMODE_HBD | OPMODE_PS;
6147 1.137 rpaulo break;
6148 1.195 msaitoh default:
6149 1.195 msaitoh opmode = 0;
6150 1.195 msaitoh break;
6151 1.195 msaitoh }
6152 1.137 rpaulo
6153 1.137 rpaulo TULIP_WRITE(sc, CSR_OPMODE, opmode);
6154 1.137 rpaulo
6155 1.137 rpaulo /* Now, probe the internal MII for the internal PHY. */
6156 1.194 msaitoh mii_attach(sc->sc_dev, mii, 0xffffffff, MII_PHY_ANY,
6157 1.137 rpaulo MII_OFFSET_ANY, 0);
6158 1.137 rpaulo
6159 1.137 rpaulo /* XXX Figure how to handle the PHY. */
6160 1.145 blymn
6161 1.194 msaitoh if (LIST_FIRST(&mii->mii_phys) == NULL) {
6162 1.194 msaitoh ifmedia_add(&mii->mii_media, IFM_ETHER | IFM_NONE, 0, NULL);
6163 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_NONE);
6164 1.137 rpaulo } else {
6165 1.137 rpaulo sc->sc_flags |= TULIPF_HAS_MII;
6166 1.137 rpaulo sc->sc_tick = tlp_mii_tick;
6167 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_AUTO);
6168 1.137 rpaulo }
6169 1.137 rpaulo
6170 1.145 blymn
6171 1.137 rpaulo }
6172 1.137 rpaulo
6173 1.138 thorpej static void
6174 1.138 thorpej tlp_asix_tmsw_getmedia(struct tulip_softc *sc, struct ifmediareq *ifmr)
6175 1.137 rpaulo {
6176 1.145 blymn
6177 1.137 rpaulo /* XXX PHY handling. */
6178 1.137 rpaulo tlp_mii_getmedia(sc, ifmr);
6179 1.137 rpaulo }
6180 1.137 rpaulo
6181 1.138 thorpej static int
6182 1.138 thorpej tlp_asix_tmsw_setmedia(struct tulip_softc *sc)
6183 1.137 rpaulo {
6184 1.145 blymn
6185 1.137 rpaulo /* XXX PHY handling. */
6186 1.194 msaitoh return tlp_mii_setmedia(sc);
6187 1.137 rpaulo }
6188 1.143 rpaulo
6189 1.143 rpaulo /*
6190 1.143 rpaulo * RS7112 media switch. Handles only MII attached to the SIO.
6191 1.143 rpaulo * We only have a PHY at 1.
6192 1.143 rpaulo */
6193 1.143 rpaulo void tlp_rs7112_tmsw_init(struct tulip_softc *);
6194 1.143 rpaulo
6195 1.143 rpaulo const struct tulip_mediasw tlp_rs7112_mediasw = {
6196 1.143 rpaulo tlp_rs7112_tmsw_init, tlp_mii_getmedia, tlp_mii_setmedia
6197 1.143 rpaulo };
6198 1.143 rpaulo
6199 1.143 rpaulo void
6200 1.143 rpaulo tlp_rs7112_tmsw_init(struct tulip_softc *sc)
6201 1.143 rpaulo {
6202 1.143 rpaulo struct ifnet *ifp = &sc->sc_ethercom.ec_if;
6203 1.194 msaitoh struct mii_data * const mii = &sc->sc_mii;
6204 1.143 rpaulo
6205 1.143 rpaulo /*
6206 1.143 rpaulo * We don't attach any media info structures to the ifmedia
6207 1.143 rpaulo * entries, so if we're using a pre-init function that needs
6208 1.143 rpaulo * that info, override it to one that doesn't.
6209 1.143 rpaulo */
6210 1.143 rpaulo if (sc->sc_preinit == tlp_2114x_preinit)
6211 1.143 rpaulo sc->sc_preinit = tlp_2114x_mii_preinit;
6212 1.143 rpaulo
6213 1.194 msaitoh mii->mii_ifp = ifp;
6214 1.194 msaitoh mii->mii_readreg = tlp_bitbang_mii_readreg;
6215 1.194 msaitoh mii->mii_writereg = tlp_bitbang_mii_writereg;
6216 1.194 msaitoh mii->mii_statchg = sc->sc_statchg;
6217 1.194 msaitoh sc->sc_ethercom.ec_mii = mii;
6218 1.194 msaitoh ifmedia_init(&mii->mii_media, 0, tlp_mediachange, tlp_mediastatus);
6219 1.143 rpaulo
6220 1.143 rpaulo /*
6221 1.143 rpaulo * The RS7112 reports a PHY at 0 (possibly HomePNA?)
6222 1.143 rpaulo * and 1 (ethernet). We attach ethernet only.
6223 1.143 rpaulo */
6224 1.194 msaitoh mii_attach(sc->sc_dev, mii, 0xffffffff, 1, MII_OFFSET_ANY, 0);
6225 1.143 rpaulo
6226 1.194 msaitoh if (LIST_FIRST(&mii->mii_phys) == NULL) {
6227 1.194 msaitoh ifmedia_add(&mii->mii_media, IFM_ETHER | IFM_NONE, 0, NULL);
6228 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_NONE);
6229 1.143 rpaulo } else {
6230 1.143 rpaulo sc->sc_flags |= TULIPF_HAS_MII;
6231 1.143 rpaulo sc->sc_tick = tlp_mii_tick;
6232 1.194 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_AUTO);
6233 1.143 rpaulo }
6234 1.143 rpaulo }
6235 1.177 christos
6236 1.177 christos const char *
6237 1.177 christos tlp_chip_name(tulip_chip_t t) {
6238 1.177 christos if ((int)t < 0 || (int)t >= __arraycount(tlp_chip_names)) {
6239 1.177 christos static char buf[256];
6240 1.177 christos (void)snprintf(buf, sizeof(buf), "[unknown 0x%x]", t);
6241 1.177 christos return buf;
6242 1.177 christos }
6243 1.177 christos return tlp_chip_names[t];
6244 1.177 christos }
6245