if_sip.c revision 1.2.2.1 1 1.2.2.1 bouyer /* $NetBSD: if_sip.c,v 1.2.2.1 2000/11/20 11:42:23 bouyer Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*-
4 1.1 thorpej * Copyright (c) 1999 Network Computer, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * Redistribution and use in source and binary forms, with or without
8 1.1 thorpej * modification, are permitted provided that the following conditions
9 1.1 thorpej * are met:
10 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
11 1.1 thorpej * notice, this list of conditions and the following disclaimer.
12 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
14 1.1 thorpej * documentation and/or other materials provided with the distribution.
15 1.1 thorpej * 3. Neither the name of Network Computer, Inc. nor the names of its
16 1.1 thorpej * contributors may be used to endorse or promote products derived
17 1.1 thorpej * from this software without specific prior written permission.
18 1.1 thorpej *
19 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY NETWORK COMPUTER, INC. AND CONTRIBUTORS
20 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
30 1.1 thorpej */
31 1.1 thorpej
32 1.1 thorpej /*
33 1.2.2.1 bouyer * Device driver for the Silicon Integrated Systems SiS 900 and
34 1.2.2.1 bouyer * SiS 7016 10/100 PCI Ethernet controllers.
35 1.1 thorpej *
36 1.1 thorpej * Written by Jason R. Thorpe for Network Computer, Inc.
37 1.1 thorpej */
38 1.1 thorpej
39 1.1 thorpej #include "opt_inet.h"
40 1.1 thorpej #include "opt_ns.h"
41 1.1 thorpej #include "bpfilter.h"
42 1.1 thorpej
43 1.1 thorpej #include <sys/param.h>
44 1.1 thorpej #include <sys/systm.h>
45 1.2.2.1 bouyer #include <sys/callout.h>
46 1.1 thorpej #include <sys/mbuf.h>
47 1.1 thorpej #include <sys/malloc.h>
48 1.1 thorpej #include <sys/kernel.h>
49 1.1 thorpej #include <sys/socket.h>
50 1.1 thorpej #include <sys/ioctl.h>
51 1.1 thorpej #include <sys/errno.h>
52 1.1 thorpej #include <sys/device.h>
53 1.1 thorpej #include <sys/queue.h>
54 1.1 thorpej
55 1.2.2.1 bouyer #include <uvm/uvm_extern.h> /* for PAGE_SIZE */
56 1.1 thorpej
57 1.1 thorpej #include <net/if.h>
58 1.1 thorpej #include <net/if_dl.h>
59 1.1 thorpej #include <net/if_media.h>
60 1.1 thorpej #include <net/if_ether.h>
61 1.1 thorpej
62 1.1 thorpej #if NBPFILTER > 0
63 1.1 thorpej #include <net/bpf.h>
64 1.1 thorpej #endif
65 1.1 thorpej
66 1.1 thorpej #ifdef INET
67 1.1 thorpej #include <netinet/in.h>
68 1.1 thorpej #include <netinet/if_inarp.h>
69 1.1 thorpej #endif
70 1.1 thorpej
71 1.1 thorpej #ifdef NS
72 1.1 thorpej #include <netns/ns.h>
73 1.1 thorpej #include <netns/ns_if.h>
74 1.1 thorpej #endif
75 1.1 thorpej
76 1.1 thorpej #include <machine/bus.h>
77 1.1 thorpej #include <machine/intr.h>
78 1.2.2.1 bouyer #include <machine/endian.h>
79 1.1 thorpej
80 1.2.2.1 bouyer #include <dev/mii/mii.h>
81 1.1 thorpej #include <dev/mii/miivar.h>
82 1.1 thorpej
83 1.1 thorpej #include <dev/pci/pcireg.h>
84 1.1 thorpej #include <dev/pci/pcivar.h>
85 1.1 thorpej #include <dev/pci/pcidevs.h>
86 1.1 thorpej
87 1.1 thorpej #include <dev/pci/if_sipreg.h>
88 1.1 thorpej
89 1.1 thorpej /*
90 1.1 thorpej * Transmit descriptor list size. This is arbitrary, but allocate
91 1.1 thorpej * enough descriptors for 64 pending transmissions, and 16 segments
92 1.1 thorpej * per packet. This MUST work out to a power of 2.
93 1.1 thorpej */
94 1.1 thorpej #define SIP_NTXSEGS 16
95 1.1 thorpej
96 1.1 thorpej #define SIP_TXQUEUELEN 64
97 1.1 thorpej #define SIP_NTXDESC (SIP_TXQUEUELEN * SIP_NTXSEGS)
98 1.1 thorpej #define SIP_NTXDESC_MASK (SIP_NTXDESC - 1)
99 1.1 thorpej #define SIP_NEXTTX(x) (((x) + 1) & SIP_NTXDESC_MASK)
100 1.1 thorpej
101 1.1 thorpej /*
102 1.1 thorpej * Receive descriptor list size. We have one Rx buffer per incoming
103 1.1 thorpej * packet, so this logic is a little simpler.
104 1.1 thorpej */
105 1.1 thorpej #define SIP_NRXDESC 64
106 1.1 thorpej #define SIP_NRXDESC_MASK (SIP_NRXDESC - 1)
107 1.1 thorpej #define SIP_NEXTRX(x) (((x) + 1) & SIP_NRXDESC_MASK)
108 1.1 thorpej
109 1.1 thorpej /*
110 1.1 thorpej * Control structures are DMA'd to the SiS900 chip. We allocate them in
111 1.1 thorpej * a single clump that maps to a single DMA segment to make several things
112 1.1 thorpej * easier.
113 1.1 thorpej */
114 1.1 thorpej struct sip_control_data {
115 1.1 thorpej /*
116 1.1 thorpej * The transmit descriptors.
117 1.1 thorpej */
118 1.1 thorpej struct sip_desc scd_txdescs[SIP_NTXDESC];
119 1.1 thorpej
120 1.1 thorpej /*
121 1.1 thorpej * The receive descriptors.
122 1.1 thorpej */
123 1.1 thorpej struct sip_desc scd_rxdescs[SIP_NRXDESC];
124 1.1 thorpej };
125 1.1 thorpej
126 1.1 thorpej #define SIP_CDOFF(x) offsetof(struct sip_control_data, x)
127 1.1 thorpej #define SIP_CDTXOFF(x) SIP_CDOFF(scd_txdescs[(x)])
128 1.1 thorpej #define SIP_CDRXOFF(x) SIP_CDOFF(scd_rxdescs[(x)])
129 1.1 thorpej
130 1.1 thorpej /*
131 1.1 thorpej * Software state for transmit jobs.
132 1.1 thorpej */
133 1.1 thorpej struct sip_txsoft {
134 1.1 thorpej struct mbuf *txs_mbuf; /* head of our mbuf chain */
135 1.1 thorpej bus_dmamap_t txs_dmamap; /* our DMA map */
136 1.1 thorpej int txs_firstdesc; /* first descriptor in packet */
137 1.1 thorpej int txs_lastdesc; /* last descriptor in packet */
138 1.1 thorpej SIMPLEQ_ENTRY(sip_txsoft) txs_q;
139 1.1 thorpej };
140 1.1 thorpej
141 1.1 thorpej SIMPLEQ_HEAD(sip_txsq, sip_txsoft);
142 1.1 thorpej
143 1.1 thorpej /*
144 1.1 thorpej * Software state for receive jobs.
145 1.1 thorpej */
146 1.1 thorpej struct sip_rxsoft {
147 1.1 thorpej struct mbuf *rxs_mbuf; /* head of our mbuf chain */
148 1.1 thorpej bus_dmamap_t rxs_dmamap; /* our DMA map */
149 1.1 thorpej };
150 1.1 thorpej
151 1.1 thorpej /*
152 1.1 thorpej * Software state per device.
153 1.1 thorpej */
154 1.1 thorpej struct sip_softc {
155 1.1 thorpej struct device sc_dev; /* generic device information */
156 1.1 thorpej bus_space_tag_t sc_st; /* bus space tag */
157 1.1 thorpej bus_space_handle_t sc_sh; /* bus space handle */
158 1.1 thorpej bus_dma_tag_t sc_dmat; /* bus DMA tag */
159 1.1 thorpej struct ethercom sc_ethercom; /* ethernet common data */
160 1.1 thorpej void *sc_sdhook; /* shutdown hook */
161 1.1 thorpej
162 1.2.2.1 bouyer const struct sip_product *sc_model; /* which model are we? */
163 1.2.2.1 bouyer
164 1.1 thorpej void *sc_ih; /* interrupt cookie */
165 1.1 thorpej
166 1.1 thorpej struct mii_data sc_mii; /* MII/media information */
167 1.1 thorpej
168 1.2.2.1 bouyer struct callout sc_tick_ch; /* tick callout */
169 1.2.2.1 bouyer
170 1.1 thorpej bus_dmamap_t sc_cddmamap; /* control data DMA map */
171 1.1 thorpej #define sc_cddma sc_cddmamap->dm_segs[0].ds_addr
172 1.1 thorpej
173 1.1 thorpej /*
174 1.1 thorpej * Software state for transmit and receive descriptors.
175 1.1 thorpej */
176 1.1 thorpej struct sip_txsoft sc_txsoft[SIP_TXQUEUELEN];
177 1.1 thorpej struct sip_rxsoft sc_rxsoft[SIP_NRXDESC];
178 1.1 thorpej
179 1.1 thorpej /*
180 1.1 thorpej * Control data structures.
181 1.1 thorpej */
182 1.1 thorpej struct sip_control_data *sc_control_data;
183 1.1 thorpej #define sc_txdescs sc_control_data->scd_txdescs
184 1.1 thorpej #define sc_rxdescs sc_control_data->scd_rxdescs
185 1.1 thorpej
186 1.1 thorpej u_int32_t sc_txcfg; /* prototype TXCFG register */
187 1.1 thorpej u_int32_t sc_rxcfg; /* prototype RXCFG register */
188 1.1 thorpej u_int32_t sc_imr; /* prototype IMR register */
189 1.1 thorpej u_int32_t sc_rfcr; /* prototype RFCR register */
190 1.1 thorpej
191 1.1 thorpej u_int32_t sc_tx_fill_thresh; /* transmit fill threshold */
192 1.1 thorpej u_int32_t sc_tx_drain_thresh; /* transmit drain threshold */
193 1.1 thorpej
194 1.1 thorpej u_int32_t sc_rx_drain_thresh; /* receive drain threshold */
195 1.1 thorpej
196 1.1 thorpej int sc_flags; /* misc. flags; see below */
197 1.1 thorpej
198 1.1 thorpej int sc_txfree; /* number of free Tx descriptors */
199 1.1 thorpej int sc_txnext; /* next ready Tx descriptor */
200 1.1 thorpej
201 1.1 thorpej struct sip_txsq sc_txfreeq; /* free Tx descsofts */
202 1.1 thorpej struct sip_txsq sc_txdirtyq; /* dirty Tx descsofts */
203 1.1 thorpej
204 1.1 thorpej int sc_rxptr; /* next ready Rx descriptor/descsoft */
205 1.1 thorpej };
206 1.1 thorpej
207 1.1 thorpej /* sc_flags */
208 1.1 thorpej #define SIPF_PAUSED 0x00000001 /* paused (802.3x flow control) */
209 1.1 thorpej
210 1.1 thorpej #define SIP_CDTXADDR(sc, x) ((sc)->sc_cddma + SIP_CDTXOFF((x)))
211 1.1 thorpej #define SIP_CDRXADDR(sc, x) ((sc)->sc_cddma + SIP_CDRXOFF((x)))
212 1.1 thorpej
213 1.1 thorpej #define SIP_CDTXSYNC(sc, x, n, ops) \
214 1.1 thorpej do { \
215 1.1 thorpej int __x, __n; \
216 1.1 thorpej \
217 1.1 thorpej __x = (x); \
218 1.1 thorpej __n = (n); \
219 1.1 thorpej \
220 1.1 thorpej /* If it will wrap around, sync to the end of the ring. */ \
221 1.1 thorpej if ((__x + __n) > SIP_NTXDESC) { \
222 1.1 thorpej bus_dmamap_sync((sc)->sc_dmat, (sc)->sc_cddmamap, \
223 1.1 thorpej SIP_CDTXOFF(__x), sizeof(struct sip_desc) * \
224 1.1 thorpej (SIP_NTXDESC - __x), (ops)); \
225 1.1 thorpej __n -= (SIP_NTXDESC - __x); \
226 1.1 thorpej __x = 0; \
227 1.1 thorpej } \
228 1.1 thorpej \
229 1.1 thorpej /* Now sync whatever is left. */ \
230 1.1 thorpej bus_dmamap_sync((sc)->sc_dmat, (sc)->sc_cddmamap, \
231 1.1 thorpej SIP_CDTXOFF(__x), sizeof(struct sip_desc) * __n, (ops)); \
232 1.1 thorpej } while (0)
233 1.1 thorpej
234 1.1 thorpej #define SIP_CDRXSYNC(sc, x, ops) \
235 1.1 thorpej bus_dmamap_sync((sc)->sc_dmat, (sc)->sc_cddmamap, \
236 1.1 thorpej SIP_CDRXOFF((x)), sizeof(struct sip_desc), (ops))
237 1.1 thorpej
238 1.1 thorpej /*
239 1.1 thorpej * Note we rely on MCLBYTES being a power of two below.
240 1.1 thorpej */
241 1.1 thorpej #define SIP_INIT_RXDESC(sc, x) \
242 1.1 thorpej do { \
243 1.1 thorpej struct sip_rxsoft *__rxs = &(sc)->sc_rxsoft[(x)]; \
244 1.1 thorpej struct sip_desc *__sipd = &(sc)->sc_rxdescs[(x)]; \
245 1.1 thorpej \
246 1.2.2.1 bouyer __sipd->sipd_link = htole32(SIP_CDRXADDR((sc), SIP_NEXTRX((x)))); \
247 1.2.2.1 bouyer __sipd->sipd_bufptr = htole32(__rxs->rxs_dmamap->dm_segs[0].ds_addr); \
248 1.2.2.1 bouyer __sipd->sipd_cmdsts = htole32(CMDSTS_INTR | \
249 1.2.2.1 bouyer ((MCLBYTES - 1) & CMDSTS_SIZE_MASK)); \
250 1.1 thorpej SIP_CDRXSYNC((sc), (x), BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE); \
251 1.1 thorpej } while (0)
252 1.1 thorpej
253 1.2.2.1 bouyer #define SIP_TIMEOUT 1000
254 1.2.2.1 bouyer
255 1.1 thorpej void sip_start __P((struct ifnet *));
256 1.1 thorpej void sip_watchdog __P((struct ifnet *));
257 1.1 thorpej int sip_ioctl __P((struct ifnet *, u_long, caddr_t));
258 1.2.2.1 bouyer int sip_init __P((struct ifnet *));
259 1.2.2.1 bouyer void sip_stop __P((struct ifnet *, int));
260 1.1 thorpej
261 1.1 thorpej void sip_shutdown __P((void *));
262 1.1 thorpej
263 1.1 thorpej void sip_reset __P((struct sip_softc *));
264 1.2 thorpej void sip_rxdrain __P((struct sip_softc *));
265 1.1 thorpej int sip_add_rxbuf __P((struct sip_softc *, int));
266 1.1 thorpej void sip_read_eeprom __P((struct sip_softc *, int, int, u_int16_t *));
267 1.1 thorpej void sip_tick __P((void *));
268 1.1 thorpej
269 1.2.2.1 bouyer void sip_sis900_set_filter __P((struct sip_softc *));
270 1.2.2.1 bouyer void sip_dp83815_set_filter __P((struct sip_softc *));
271 1.2.2.1 bouyer
272 1.1 thorpej int sip_intr __P((void *));
273 1.1 thorpej void sip_txintr __P((struct sip_softc *));
274 1.1 thorpej void sip_rxintr __P((struct sip_softc *));
275 1.1 thorpej
276 1.2.2.1 bouyer int sip_sis900_mii_readreg __P((struct device *, int, int));
277 1.2.2.1 bouyer void sip_sis900_mii_writereg __P((struct device *, int, int, int));
278 1.2.2.1 bouyer void sip_sis900_mii_statchg __P((struct device *));
279 1.2.2.1 bouyer
280 1.2.2.1 bouyer int sip_dp83815_mii_readreg __P((struct device *, int, int));
281 1.2.2.1 bouyer void sip_dp83815_mii_writereg __P((struct device *, int, int, int));
282 1.2.2.1 bouyer void sip_dp83815_mii_statchg __P((struct device *));
283 1.1 thorpej
284 1.1 thorpej int sip_mediachange __P((struct ifnet *));
285 1.1 thorpej void sip_mediastatus __P((struct ifnet *, struct ifmediareq *));
286 1.1 thorpej
287 1.1 thorpej int sip_match __P((struct device *, struct cfdata *, void *));
288 1.1 thorpej void sip_attach __P((struct device *, struct device *, void *));
289 1.1 thorpej
290 1.2 thorpej int sip_copy_small = 0;
291 1.2 thorpej
292 1.1 thorpej struct cfattach sip_ca = {
293 1.1 thorpej sizeof(struct sip_softc), sip_match, sip_attach,
294 1.1 thorpej };
295 1.1 thorpej
296 1.2.2.1 bouyer /*
297 1.2.2.1 bouyer * Descriptions of the variants of the SiS900.
298 1.2.2.1 bouyer */
299 1.2.2.1 bouyer struct sip_variant {
300 1.2.2.1 bouyer int (*sipv_mii_readreg) __P((struct device *, int, int));
301 1.2.2.1 bouyer void (*sipv_mii_writereg) __P((struct device *, int, int, int));
302 1.2.2.1 bouyer void (*sipv_mii_statchg) __P((struct device *));
303 1.2.2.1 bouyer void (*sipv_set_filter) __P((struct sip_softc *));
304 1.2.2.1 bouyer };
305 1.2.2.1 bouyer
306 1.2.2.1 bouyer const struct sip_variant sip_variant_sis900 = {
307 1.2.2.1 bouyer sip_sis900_mii_readreg, sip_sis900_mii_writereg,
308 1.2.2.1 bouyer sip_sis900_mii_statchg, sip_sis900_set_filter
309 1.2.2.1 bouyer };
310 1.2.2.1 bouyer
311 1.2.2.1 bouyer const struct sip_variant sip_variant_dp83815 = {
312 1.2.2.1 bouyer sip_dp83815_mii_readreg, sip_dp83815_mii_writereg,
313 1.2.2.1 bouyer sip_dp83815_mii_statchg, sip_dp83815_set_filter
314 1.2.2.1 bouyer };
315 1.2.2.1 bouyer
316 1.2.2.1 bouyer /*
317 1.2.2.1 bouyer * Devices supported by this driver.
318 1.2.2.1 bouyer */
319 1.2.2.1 bouyer const struct sip_product {
320 1.2.2.1 bouyer pci_vendor_id_t sip_vendor;
321 1.2.2.1 bouyer pci_product_id_t sip_product;
322 1.2.2.1 bouyer const char *sip_name;
323 1.2.2.1 bouyer const struct sip_variant *sip_variant;
324 1.2.2.1 bouyer } sip_products[] = {
325 1.2.2.1 bouyer { PCI_VENDOR_SIS, PCI_PRODUCT_SIS_900,
326 1.2.2.1 bouyer "SiS 900 10/100 Ethernet",
327 1.2.2.1 bouyer &sip_variant_sis900 },
328 1.2.2.1 bouyer { PCI_VENDOR_SIS, PCI_PRODUCT_SIS_7016,
329 1.2.2.1 bouyer "SiS 7016 10/100 Ethernet",
330 1.2.2.1 bouyer &sip_variant_sis900 },
331 1.2.2.1 bouyer
332 1.2.2.1 bouyer { PCI_VENDOR_NS, PCI_PRODUCT_NS_DP83815,
333 1.2.2.1 bouyer "NatSemi DP83815 10/100 Ethernet",
334 1.2.2.1 bouyer &sip_variant_dp83815 },
335 1.2.2.1 bouyer
336 1.2.2.1 bouyer { 0, 0,
337 1.2.2.1 bouyer NULL,
338 1.2.2.1 bouyer NULL },
339 1.2.2.1 bouyer };
340 1.2.2.1 bouyer
341 1.1 thorpej const struct sip_product *sip_lookup __P((const struct pci_attach_args *));
342 1.1 thorpej
343 1.1 thorpej const struct sip_product *
344 1.1 thorpej sip_lookup(pa)
345 1.1 thorpej const struct pci_attach_args *pa;
346 1.1 thorpej {
347 1.1 thorpej const struct sip_product *sip;
348 1.1 thorpej
349 1.1 thorpej for (sip = sip_products; sip->sip_name != NULL; sip++) {
350 1.1 thorpej if (PCI_VENDOR(pa->pa_id) == sip->sip_vendor &&
351 1.1 thorpej PCI_PRODUCT(pa->pa_id) == sip->sip_product)
352 1.1 thorpej return (sip);
353 1.1 thorpej }
354 1.1 thorpej return (NULL);
355 1.1 thorpej }
356 1.1 thorpej
357 1.1 thorpej int
358 1.1 thorpej sip_match(parent, cf, aux)
359 1.1 thorpej struct device *parent;
360 1.1 thorpej struct cfdata *cf;
361 1.1 thorpej void *aux;
362 1.1 thorpej {
363 1.1 thorpej struct pci_attach_args *pa = aux;
364 1.1 thorpej
365 1.1 thorpej if (sip_lookup(pa) != NULL)
366 1.1 thorpej return (1);
367 1.1 thorpej
368 1.1 thorpej return (0);
369 1.1 thorpej }
370 1.1 thorpej
371 1.1 thorpej void
372 1.1 thorpej sip_attach(parent, self, aux)
373 1.1 thorpej struct device *parent, *self;
374 1.1 thorpej void *aux;
375 1.1 thorpej {
376 1.1 thorpej struct sip_softc *sc = (struct sip_softc *) self;
377 1.1 thorpej struct pci_attach_args *pa = aux;
378 1.1 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
379 1.1 thorpej pci_chipset_tag_t pc = pa->pa_pc;
380 1.1 thorpej pci_intr_handle_t ih;
381 1.1 thorpej const char *intrstr = NULL;
382 1.1 thorpej bus_space_tag_t iot, memt;
383 1.1 thorpej bus_space_handle_t ioh, memh;
384 1.1 thorpej bus_dma_segment_t seg;
385 1.1 thorpej int ioh_valid, memh_valid;
386 1.1 thorpej int i, rseg, error;
387 1.1 thorpej const struct sip_product *sip;
388 1.1 thorpej pcireg_t pmode;
389 1.2.2.1 bouyer u_int16_t myea[ETHER_ADDR_LEN / 2];
390 1.2.2.1 bouyer u_int8_t enaddr[ETHER_ADDR_LEN];
391 1.2.2.1 bouyer int pmreg;
392 1.2.2.1 bouyer
393 1.2.2.1 bouyer callout_init(&sc->sc_tick_ch);
394 1.1 thorpej
395 1.1 thorpej sip = sip_lookup(pa);
396 1.1 thorpej if (sip == NULL) {
397 1.1 thorpej printf("\n");
398 1.1 thorpej panic("sip_attach: impossible");
399 1.1 thorpej }
400 1.1 thorpej
401 1.1 thorpej printf(": %s\n", sip->sip_name);
402 1.1 thorpej
403 1.2.2.1 bouyer sc->sc_model = sip;
404 1.2.2.1 bouyer
405 1.1 thorpej /*
406 1.1 thorpej * Map the device.
407 1.1 thorpej */
408 1.1 thorpej ioh_valid = (pci_mapreg_map(pa, SIP_PCI_CFGIOA,
409 1.1 thorpej PCI_MAPREG_TYPE_IO, 0,
410 1.1 thorpej &iot, &ioh, NULL, NULL) == 0);
411 1.1 thorpej memh_valid = (pci_mapreg_map(pa, SIP_PCI_CFGMA,
412 1.1 thorpej PCI_MAPREG_TYPE_MEM|PCI_MAPREG_MEM_TYPE_32BIT, 0,
413 1.1 thorpej &memt, &memh, NULL, NULL) == 0);
414 1.1 thorpej
415 1.1 thorpej if (memh_valid) {
416 1.1 thorpej sc->sc_st = memt;
417 1.1 thorpej sc->sc_sh = memh;
418 1.1 thorpej } else if (ioh_valid) {
419 1.1 thorpej sc->sc_st = iot;
420 1.1 thorpej sc->sc_sh = ioh;
421 1.1 thorpej } else {
422 1.1 thorpej printf("%s: unable to map device registers\n",
423 1.1 thorpej sc->sc_dev.dv_xname);
424 1.1 thorpej return;
425 1.1 thorpej }
426 1.1 thorpej
427 1.1 thorpej sc->sc_dmat = pa->pa_dmat;
428 1.1 thorpej
429 1.1 thorpej /* Enable bus mastering. */
430 1.1 thorpej pci_conf_write(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG,
431 1.1 thorpej pci_conf_read(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG) |
432 1.1 thorpej PCI_COMMAND_MASTER_ENABLE);
433 1.1 thorpej
434 1.1 thorpej /* Get it out of power save mode if needed. */
435 1.2.2.1 bouyer if (pci_get_capability(pc, pa->pa_tag, PCI_CAP_PWRMGMT, &pmreg, 0)) {
436 1.2.2.1 bouyer pmode = pci_conf_read(pc, pa->pa_tag, pmreg + 4) & 0x3;
437 1.1 thorpej if (pmode == 3) {
438 1.1 thorpej /*
439 1.1 thorpej * The card has lost all configuration data in
440 1.1 thorpej * this state, so punt.
441 1.1 thorpej */
442 1.1 thorpej printf("%s: unable to wake up from power state D3\n",
443 1.1 thorpej sc->sc_dev.dv_xname);
444 1.1 thorpej return;
445 1.1 thorpej }
446 1.1 thorpej if (pmode != 0) {
447 1.1 thorpej printf("%s: waking up from power state D%d\n",
448 1.1 thorpej sc->sc_dev.dv_xname, pmode);
449 1.2.2.1 bouyer pci_conf_write(pc, pa->pa_tag, pmreg + 4, 0);
450 1.1 thorpej }
451 1.1 thorpej }
452 1.1 thorpej
453 1.1 thorpej /*
454 1.1 thorpej * Map and establish our interrupt.
455 1.1 thorpej */
456 1.1 thorpej if (pci_intr_map(pc, pa->pa_intrtag, pa->pa_intrpin,
457 1.1 thorpej pa->pa_intrline, &ih)) {
458 1.1 thorpej printf("%s: unable to map interrupt\n", sc->sc_dev.dv_xname);
459 1.1 thorpej return;
460 1.1 thorpej }
461 1.1 thorpej intrstr = pci_intr_string(pc, ih);
462 1.1 thorpej sc->sc_ih = pci_intr_establish(pc, ih, IPL_NET, sip_intr, sc);
463 1.1 thorpej if (sc->sc_ih == NULL) {
464 1.1 thorpej printf("%s: unable to establish interrupt",
465 1.1 thorpej sc->sc_dev.dv_xname);
466 1.1 thorpej if (intrstr != NULL)
467 1.1 thorpej printf(" at %s", intrstr);
468 1.1 thorpej printf("\n");
469 1.1 thorpej return;
470 1.1 thorpej }
471 1.1 thorpej printf("%s: interrupting at %s\n", sc->sc_dev.dv_xname, intrstr);
472 1.1 thorpej
473 1.1 thorpej SIMPLEQ_INIT(&sc->sc_txfreeq);
474 1.1 thorpej SIMPLEQ_INIT(&sc->sc_txdirtyq);
475 1.1 thorpej
476 1.1 thorpej /*
477 1.1 thorpej * Allocate the control data structures, and create and load the
478 1.1 thorpej * DMA map for it.
479 1.1 thorpej */
480 1.1 thorpej if ((error = bus_dmamem_alloc(sc->sc_dmat,
481 1.1 thorpej sizeof(struct sip_control_data), PAGE_SIZE, 0, &seg, 1, &rseg,
482 1.1 thorpej 0)) != 0) {
483 1.1 thorpej printf("%s: unable to allocate control data, error = %d\n",
484 1.1 thorpej sc->sc_dev.dv_xname, error);
485 1.1 thorpej goto fail_0;
486 1.1 thorpej }
487 1.1 thorpej
488 1.1 thorpej if ((error = bus_dmamem_map(sc->sc_dmat, &seg, rseg,
489 1.1 thorpej sizeof(struct sip_control_data), (caddr_t *)&sc->sc_control_data,
490 1.1 thorpej BUS_DMA_COHERENT)) != 0) {
491 1.1 thorpej printf("%s: unable to map control data, error = %d\n",
492 1.1 thorpej sc->sc_dev.dv_xname, error);
493 1.1 thorpej goto fail_1;
494 1.1 thorpej }
495 1.1 thorpej
496 1.1 thorpej if ((error = bus_dmamap_create(sc->sc_dmat,
497 1.1 thorpej sizeof(struct sip_control_data), 1,
498 1.1 thorpej sizeof(struct sip_control_data), 0, 0, &sc->sc_cddmamap)) != 0) {
499 1.1 thorpej printf("%s: unable to create control data DMA map, "
500 1.1 thorpej "error = %d\n", sc->sc_dev.dv_xname, error);
501 1.1 thorpej goto fail_2;
502 1.1 thorpej }
503 1.1 thorpej
504 1.1 thorpej if ((error = bus_dmamap_load(sc->sc_dmat, sc->sc_cddmamap,
505 1.1 thorpej sc->sc_control_data, sizeof(struct sip_control_data), NULL,
506 1.1 thorpej 0)) != 0) {
507 1.1 thorpej printf("%s: unable to load control data DMA map, error = %d\n",
508 1.1 thorpej sc->sc_dev.dv_xname, error);
509 1.1 thorpej goto fail_3;
510 1.1 thorpej }
511 1.1 thorpej
512 1.1 thorpej /*
513 1.1 thorpej * Create the transmit buffer DMA maps.
514 1.1 thorpej */
515 1.1 thorpej for (i = 0; i < SIP_TXQUEUELEN; i++) {
516 1.1 thorpej if ((error = bus_dmamap_create(sc->sc_dmat, MCLBYTES,
517 1.1 thorpej SIP_NTXSEGS, MCLBYTES, 0, 0,
518 1.1 thorpej &sc->sc_txsoft[i].txs_dmamap)) != 0) {
519 1.1 thorpej printf("%s: unable to create tx DMA map %d, "
520 1.1 thorpej "error = %d\n", sc->sc_dev.dv_xname, i, error);
521 1.1 thorpej goto fail_4;
522 1.1 thorpej }
523 1.1 thorpej }
524 1.1 thorpej
525 1.1 thorpej /*
526 1.1 thorpej * Create the receive buffer DMA maps.
527 1.1 thorpej */
528 1.1 thorpej for (i = 0; i < SIP_NRXDESC; i++) {
529 1.1 thorpej if ((error = bus_dmamap_create(sc->sc_dmat, MCLBYTES, 1,
530 1.1 thorpej MCLBYTES, 0, 0, &sc->sc_rxsoft[i].rxs_dmamap)) != 0) {
531 1.1 thorpej printf("%s: unable to create rx DMA map %d, "
532 1.1 thorpej "error = %d\n", sc->sc_dev.dv_xname, i, error);
533 1.1 thorpej goto fail_5;
534 1.1 thorpej }
535 1.2 thorpej sc->sc_rxsoft[i].rxs_mbuf = NULL;
536 1.1 thorpej }
537 1.1 thorpej
538 1.1 thorpej /*
539 1.1 thorpej * Reset the chip to a known state.
540 1.1 thorpej */
541 1.1 thorpej sip_reset(sc);
542 1.1 thorpej
543 1.1 thorpej /*
544 1.1 thorpej * Read the Ethernet address from the EEPROM.
545 1.1 thorpej */
546 1.1 thorpej sip_read_eeprom(sc, SIP_EEPROM_ETHERNET_ID0 >> 1,
547 1.2.2.1 bouyer sizeof(myea) / sizeof(myea[0]), myea);
548 1.2.2.1 bouyer
549 1.2.2.1 bouyer enaddr[0] = myea[0] & 0xff;
550 1.2.2.1 bouyer enaddr[1] = myea[0] >> 8;
551 1.2.2.1 bouyer enaddr[2] = myea[1] & 0xff;
552 1.2.2.1 bouyer enaddr[3] = myea[1] >> 8;
553 1.2.2.1 bouyer enaddr[4] = myea[2] & 0xff;
554 1.2.2.1 bouyer enaddr[5] = myea[2] >> 8;
555 1.1 thorpej
556 1.1 thorpej printf("%s: Ethernet address %s\n", sc->sc_dev.dv_xname,
557 1.2.2.1 bouyer ether_sprintf(enaddr));
558 1.1 thorpej
559 1.1 thorpej /*
560 1.1 thorpej * Initialize our media structures and probe the MII.
561 1.1 thorpej */
562 1.1 thorpej sc->sc_mii.mii_ifp = ifp;
563 1.2.2.1 bouyer sc->sc_mii.mii_readreg = sip->sip_variant->sipv_mii_readreg;
564 1.2.2.1 bouyer sc->sc_mii.mii_writereg = sip->sip_variant->sipv_mii_writereg;
565 1.2.2.1 bouyer sc->sc_mii.mii_statchg = sip->sip_variant->sipv_mii_statchg;
566 1.1 thorpej ifmedia_init(&sc->sc_mii.mii_media, 0, sip_mediachange,
567 1.1 thorpej sip_mediastatus);
568 1.2.2.1 bouyer mii_attach(&sc->sc_dev, &sc->sc_mii, 0xffffffff, MII_PHY_ANY,
569 1.2.2.1 bouyer MII_OFFSET_ANY, 0);
570 1.1 thorpej if (LIST_FIRST(&sc->sc_mii.mii_phys) == NULL) {
571 1.1 thorpej ifmedia_add(&sc->sc_mii.mii_media, IFM_ETHER|IFM_NONE, 0, NULL);
572 1.1 thorpej ifmedia_set(&sc->sc_mii.mii_media, IFM_ETHER|IFM_NONE);
573 1.1 thorpej } else
574 1.1 thorpej ifmedia_set(&sc->sc_mii.mii_media, IFM_ETHER|IFM_AUTO);
575 1.1 thorpej
576 1.1 thorpej ifp = &sc->sc_ethercom.ec_if;
577 1.1 thorpej strcpy(ifp->if_xname, sc->sc_dev.dv_xname);
578 1.1 thorpej ifp->if_softc = sc;
579 1.1 thorpej ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
580 1.1 thorpej ifp->if_ioctl = sip_ioctl;
581 1.1 thorpej ifp->if_start = sip_start;
582 1.1 thorpej ifp->if_watchdog = sip_watchdog;
583 1.2.2.1 bouyer ifp->if_init = sip_init;
584 1.2.2.1 bouyer ifp->if_stop = sip_stop;
585 1.1 thorpej
586 1.1 thorpej /*
587 1.1 thorpej * Attach the interface.
588 1.1 thorpej */
589 1.1 thorpej if_attach(ifp);
590 1.2.2.1 bouyer ether_ifattach(ifp, enaddr);
591 1.1 thorpej #if NBPFILTER > 0
592 1.1 thorpej bpfattach(&sc->sc_ethercom.ec_if.if_bpf, ifp, DLT_EN10MB,
593 1.1 thorpej sizeof(struct ether_header));
594 1.1 thorpej #endif
595 1.1 thorpej
596 1.1 thorpej /*
597 1.1 thorpej * Make sure the interface is shutdown during reboot.
598 1.1 thorpej */
599 1.1 thorpej sc->sc_sdhook = shutdownhook_establish(sip_shutdown, sc);
600 1.1 thorpej if (sc->sc_sdhook == NULL)
601 1.1 thorpej printf("%s: WARNING: unable to establish shutdown hook\n",
602 1.1 thorpej sc->sc_dev.dv_xname);
603 1.1 thorpej return;
604 1.1 thorpej
605 1.1 thorpej /*
606 1.1 thorpej * Free any resources we've allocated during the failed attach
607 1.1 thorpej * attempt. Do this in reverse order and fall through.
608 1.1 thorpej */
609 1.1 thorpej fail_5:
610 1.1 thorpej for (i = 0; i < SIP_NRXDESC; i++) {
611 1.1 thorpej if (sc->sc_rxsoft[i].rxs_dmamap != NULL)
612 1.1 thorpej bus_dmamap_destroy(sc->sc_dmat,
613 1.1 thorpej sc->sc_rxsoft[i].rxs_dmamap);
614 1.1 thorpej }
615 1.1 thorpej fail_4:
616 1.1 thorpej for (i = 0; i < SIP_TXQUEUELEN; i++) {
617 1.1 thorpej if (sc->sc_txsoft[i].txs_dmamap != NULL)
618 1.1 thorpej bus_dmamap_destroy(sc->sc_dmat,
619 1.1 thorpej sc->sc_txsoft[i].txs_dmamap);
620 1.1 thorpej }
621 1.1 thorpej bus_dmamap_unload(sc->sc_dmat, sc->sc_cddmamap);
622 1.1 thorpej fail_3:
623 1.1 thorpej bus_dmamap_destroy(sc->sc_dmat, sc->sc_cddmamap);
624 1.1 thorpej fail_2:
625 1.1 thorpej bus_dmamem_unmap(sc->sc_dmat, (caddr_t)sc->sc_control_data,
626 1.1 thorpej sizeof(struct sip_control_data));
627 1.1 thorpej fail_1:
628 1.1 thorpej bus_dmamem_free(sc->sc_dmat, &seg, rseg);
629 1.1 thorpej fail_0:
630 1.1 thorpej return;
631 1.1 thorpej }
632 1.1 thorpej
633 1.1 thorpej /*
634 1.1 thorpej * sip_shutdown:
635 1.1 thorpej *
636 1.1 thorpej * Make sure the interface is stopped at reboot time.
637 1.1 thorpej */
638 1.1 thorpej void
639 1.1 thorpej sip_shutdown(arg)
640 1.1 thorpej void *arg;
641 1.1 thorpej {
642 1.1 thorpej struct sip_softc *sc = arg;
643 1.1 thorpej
644 1.2.2.1 bouyer sip_stop(&sc->sc_ethercom.ec_if, 1);
645 1.1 thorpej }
646 1.1 thorpej
647 1.1 thorpej /*
648 1.1 thorpej * sip_start: [ifnet interface function]
649 1.1 thorpej *
650 1.1 thorpej * Start packet transmission on the interface.
651 1.1 thorpej */
652 1.1 thorpej void
653 1.1 thorpej sip_start(ifp)
654 1.1 thorpej struct ifnet *ifp;
655 1.1 thorpej {
656 1.1 thorpej struct sip_softc *sc = ifp->if_softc;
657 1.1 thorpej struct mbuf *m0, *m;
658 1.1 thorpej struct sip_txsoft *txs;
659 1.1 thorpej bus_dmamap_t dmamap;
660 1.1 thorpej int error, firsttx, nexttx, lasttx, ofree, seg;
661 1.1 thorpej
662 1.1 thorpej /*
663 1.1 thorpej * If we've been told to pause, don't transmit any more packets.
664 1.1 thorpej */
665 1.1 thorpej if (sc->sc_flags & SIPF_PAUSED)
666 1.1 thorpej ifp->if_flags |= IFF_OACTIVE;
667 1.1 thorpej
668 1.1 thorpej if ((ifp->if_flags & (IFF_RUNNING|IFF_OACTIVE)) != IFF_RUNNING)
669 1.1 thorpej return;
670 1.1 thorpej
671 1.1 thorpej /*
672 1.1 thorpej * Remember the previous number of free descriptors and
673 1.1 thorpej * the first descriptor we'll use.
674 1.1 thorpej */
675 1.1 thorpej ofree = sc->sc_txfree;
676 1.1 thorpej firsttx = sc->sc_txnext;
677 1.1 thorpej
678 1.1 thorpej /*
679 1.1 thorpej * Loop through the send queue, setting up transmit descriptors
680 1.1 thorpej * until we drain the queue, or use up all available transmit
681 1.1 thorpej * descriptors.
682 1.1 thorpej */
683 1.1 thorpej while ((txs = SIMPLEQ_FIRST(&sc->sc_txfreeq)) != NULL &&
684 1.1 thorpej sc->sc_txfree != 0) {
685 1.1 thorpej /*
686 1.1 thorpej * Grab a packet off the queue.
687 1.1 thorpej */
688 1.1 thorpej IF_DEQUEUE(&ifp->if_snd, m0);
689 1.1 thorpej if (m0 == NULL)
690 1.1 thorpej break;
691 1.1 thorpej
692 1.1 thorpej dmamap = txs->txs_dmamap;
693 1.1 thorpej
694 1.1 thorpej /*
695 1.1 thorpej * Load the DMA map. If this fails, the packet either
696 1.1 thorpej * didn't fit in the alloted number of segments, or we
697 1.1 thorpej * were short on resources. In this case, we'll copy
698 1.1 thorpej * and try again.
699 1.1 thorpej */
700 1.1 thorpej if (bus_dmamap_load_mbuf(sc->sc_dmat, dmamap, m0,
701 1.1 thorpej BUS_DMA_NOWAIT) != 0) {
702 1.1 thorpej MGETHDR(m, M_DONTWAIT, MT_DATA);
703 1.1 thorpej if (m == NULL) {
704 1.1 thorpej printf("%s: unable to allocate Tx mbuf\n",
705 1.1 thorpej sc->sc_dev.dv_xname);
706 1.1 thorpej IF_PREPEND(&ifp->if_snd, m0);
707 1.1 thorpej break;
708 1.1 thorpej }
709 1.1 thorpej if (m0->m_pkthdr.len > MHLEN) {
710 1.1 thorpej MCLGET(m, M_DONTWAIT);
711 1.1 thorpej if ((m->m_flags & M_EXT) == 0) {
712 1.1 thorpej printf("%s: unable to allocate Tx "
713 1.1 thorpej "cluster\n", sc->sc_dev.dv_xname);
714 1.1 thorpej m_freem(m);
715 1.1 thorpej IF_PREPEND(&ifp->if_snd, m0);
716 1.1 thorpej break;
717 1.1 thorpej }
718 1.1 thorpej }
719 1.1 thorpej m_copydata(m0, 0, m0->m_pkthdr.len, mtod(m, caddr_t));
720 1.1 thorpej m->m_pkthdr.len = m->m_len = m0->m_pkthdr.len;
721 1.1 thorpej m_freem(m0);
722 1.1 thorpej m0 = m;
723 1.1 thorpej error = bus_dmamap_load_mbuf(sc->sc_dmat, dmamap,
724 1.1 thorpej m0, BUS_DMA_NOWAIT);
725 1.1 thorpej if (error) {
726 1.1 thorpej printf("%s: unable to load Tx buffer, "
727 1.1 thorpej "error = %d\n", sc->sc_dev.dv_xname, error);
728 1.1 thorpej IF_PREPEND(&ifp->if_snd, m0);
729 1.1 thorpej break;
730 1.1 thorpej }
731 1.1 thorpej }
732 1.1 thorpej
733 1.1 thorpej /*
734 1.1 thorpej * Ensure we have enough descriptors free to describe
735 1.1 thorpej * the packet.
736 1.1 thorpej */
737 1.1 thorpej if (dmamap->dm_nsegs > sc->sc_txfree) {
738 1.1 thorpej /*
739 1.1 thorpej * Not enough free descriptors to transmit this
740 1.1 thorpej * packet. We haven't committed anything yet,
741 1.1 thorpej * so just unload the DMA map, put the packet
742 1.1 thorpej * back on the queue, and punt. Notify the upper
743 1.1 thorpej * layer that there are not more slots left.
744 1.1 thorpej *
745 1.1 thorpej * XXX We could allocate an mbuf and copy, but
746 1.1 thorpej * XXX is it worth it?
747 1.1 thorpej */
748 1.1 thorpej ifp->if_flags |= IFF_OACTIVE;
749 1.1 thorpej bus_dmamap_unload(sc->sc_dmat, dmamap);
750 1.1 thorpej IF_PREPEND(&ifp->if_snd, m0);
751 1.1 thorpej break;
752 1.1 thorpej }
753 1.1 thorpej
754 1.1 thorpej /*
755 1.1 thorpej * WE ARE NOW COMMITTED TO TRANSMITTING THE PACKET.
756 1.1 thorpej */
757 1.1 thorpej
758 1.1 thorpej /* Sync the DMA map. */
759 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, dmamap, 0, dmamap->dm_mapsize,
760 1.1 thorpej BUS_DMASYNC_PREWRITE);
761 1.1 thorpej
762 1.1 thorpej /*
763 1.1 thorpej * Initialize the transmit descriptors.
764 1.1 thorpej */
765 1.1 thorpej for (nexttx = sc->sc_txnext, seg = 0;
766 1.1 thorpej seg < dmamap->dm_nsegs;
767 1.1 thorpej seg++, nexttx = SIP_NEXTTX(nexttx)) {
768 1.1 thorpej /*
769 1.1 thorpej * If this is the first descriptor we're
770 1.1 thorpej * enqueueing, don't set the OWN bit just
771 1.1 thorpej * yet. That could cause a race condition.
772 1.1 thorpej * We'll do it below.
773 1.1 thorpej */
774 1.1 thorpej sc->sc_txdescs[nexttx].sipd_bufptr =
775 1.2.2.1 bouyer htole32(dmamap->dm_segs[seg].ds_addr);
776 1.1 thorpej sc->sc_txdescs[nexttx].sipd_cmdsts =
777 1.2.2.1 bouyer htole32((nexttx == firsttx ? 0 : CMDSTS_OWN) |
778 1.2.2.1 bouyer CMDSTS_MORE | dmamap->dm_segs[seg].ds_len);
779 1.1 thorpej lasttx = nexttx;
780 1.1 thorpej }
781 1.1 thorpej
782 1.1 thorpej /* Clear the MORE bit on the last segment. */
783 1.2.2.1 bouyer sc->sc_txdescs[lasttx].sipd_cmdsts &= htole32(~CMDSTS_MORE);
784 1.1 thorpej
785 1.1 thorpej /* Sync the descriptors we're using. */
786 1.1 thorpej SIP_CDTXSYNC(sc, sc->sc_txnext, dmamap->dm_nsegs,
787 1.1 thorpej BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
788 1.1 thorpej
789 1.1 thorpej /*
790 1.1 thorpej * Store a pointer to the packet so we can free it later,
791 1.1 thorpej * and remember what txdirty will be once the packet is
792 1.1 thorpej * done.
793 1.1 thorpej */
794 1.1 thorpej txs->txs_mbuf = m0;
795 1.1 thorpej txs->txs_firstdesc = sc->sc_txnext;
796 1.1 thorpej txs->txs_lastdesc = lasttx;
797 1.1 thorpej
798 1.1 thorpej /* Advance the tx pointer. */
799 1.1 thorpej sc->sc_txfree -= dmamap->dm_nsegs;
800 1.1 thorpej sc->sc_txnext = nexttx;
801 1.1 thorpej
802 1.1 thorpej SIMPLEQ_REMOVE_HEAD(&sc->sc_txfreeq, txs, txs_q);
803 1.1 thorpej SIMPLEQ_INSERT_TAIL(&sc->sc_txdirtyq, txs, txs_q);
804 1.1 thorpej
805 1.1 thorpej #if NBPFILTER > 0
806 1.1 thorpej /*
807 1.1 thorpej * Pass the packet to any BPF listeners.
808 1.1 thorpej */
809 1.1 thorpej if (ifp->if_bpf)
810 1.1 thorpej bpf_mtap(ifp->if_bpf, m0);
811 1.1 thorpej #endif /* NBPFILTER > 0 */
812 1.1 thorpej }
813 1.1 thorpej
814 1.1 thorpej if (txs == NULL || sc->sc_txfree == 0) {
815 1.1 thorpej /* No more slots left; notify upper layer. */
816 1.1 thorpej ifp->if_flags |= IFF_OACTIVE;
817 1.1 thorpej }
818 1.1 thorpej
819 1.1 thorpej if (sc->sc_txfree != ofree) {
820 1.1 thorpej /*
821 1.1 thorpej * Cause a descriptor interrupt to happen on the
822 1.1 thorpej * last packet we enqueued.
823 1.1 thorpej */
824 1.2.2.1 bouyer sc->sc_txdescs[lasttx].sipd_cmdsts |= htole32(CMDSTS_INTR);
825 1.1 thorpej SIP_CDTXSYNC(sc, lasttx, 1,
826 1.1 thorpej BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
827 1.1 thorpej
828 1.1 thorpej /*
829 1.1 thorpej * The entire packet chain is set up. Give the
830 1.1 thorpej * first descrptor to the chip now.
831 1.1 thorpej */
832 1.2.2.1 bouyer sc->sc_txdescs[firsttx].sipd_cmdsts |= htole32(CMDSTS_OWN);
833 1.1 thorpej SIP_CDTXSYNC(sc, firsttx, 1,
834 1.1 thorpej BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
835 1.1 thorpej
836 1.1 thorpej /* Start the transmit process. */
837 1.1 thorpej if ((bus_space_read_4(sc->sc_st, sc->sc_sh, SIP_CR) &
838 1.1 thorpej CR_TXE) == 0) {
839 1.1 thorpej bus_space_write_4(sc->sc_st, sc->sc_sh, SIP_TXDP,
840 1.1 thorpej SIP_CDTXADDR(sc, firsttx));
841 1.1 thorpej bus_space_write_4(sc->sc_st, sc->sc_sh, SIP_CR, CR_TXE);
842 1.1 thorpej }
843 1.1 thorpej
844 1.1 thorpej /* Set a watchdog timer in case the chip flakes out. */
845 1.1 thorpej ifp->if_timer = 5;
846 1.1 thorpej }
847 1.1 thorpej }
848 1.1 thorpej
849 1.1 thorpej /*
850 1.1 thorpej * sip_watchdog: [ifnet interface function]
851 1.1 thorpej *
852 1.1 thorpej * Watchdog timer handler.
853 1.1 thorpej */
854 1.1 thorpej void
855 1.1 thorpej sip_watchdog(ifp)
856 1.1 thorpej struct ifnet *ifp;
857 1.1 thorpej {
858 1.1 thorpej struct sip_softc *sc = ifp->if_softc;
859 1.1 thorpej
860 1.1 thorpej /*
861 1.1 thorpej * The chip seems to ignore the CMDSTS_INTR bit sometimes!
862 1.1 thorpej * If we get a timeout, try and sweep up transmit descriptors.
863 1.1 thorpej * If we manage to sweep them all up, ignore the lack of
864 1.1 thorpej * interrupt.
865 1.1 thorpej */
866 1.1 thorpej sip_txintr(sc);
867 1.1 thorpej
868 1.1 thorpej if (sc->sc_txfree != SIP_NTXDESC) {
869 1.1 thorpej printf("%s: device timeout\n", sc->sc_dev.dv_xname);
870 1.1 thorpej ifp->if_oerrors++;
871 1.1 thorpej
872 1.1 thorpej /* Reset the interface. */
873 1.2.2.1 bouyer (void) sip_init(ifp);
874 1.1 thorpej } else if (ifp->if_flags & IFF_DEBUG)
875 1.1 thorpej printf("%s: recovered from device timeout\n",
876 1.1 thorpej sc->sc_dev.dv_xname);
877 1.1 thorpej
878 1.1 thorpej /* Try to get more packets going. */
879 1.1 thorpej sip_start(ifp);
880 1.1 thorpej }
881 1.1 thorpej
882 1.1 thorpej /*
883 1.1 thorpej * sip_ioctl: [ifnet interface function]
884 1.1 thorpej *
885 1.1 thorpej * Handle control requests from the operator.
886 1.1 thorpej */
887 1.1 thorpej int
888 1.1 thorpej sip_ioctl(ifp, cmd, data)
889 1.1 thorpej struct ifnet *ifp;
890 1.1 thorpej u_long cmd;
891 1.1 thorpej caddr_t data;
892 1.1 thorpej {
893 1.1 thorpej struct sip_softc *sc = ifp->if_softc;
894 1.1 thorpej struct ifreq *ifr = (struct ifreq *)data;
895 1.2.2.1 bouyer int s, error;
896 1.1 thorpej
897 1.1 thorpej s = splnet();
898 1.1 thorpej
899 1.1 thorpej switch (cmd) {
900 1.2.2.1 bouyer case SIOCSIFMEDIA:
901 1.2.2.1 bouyer case SIOCGIFMEDIA:
902 1.2.2.1 bouyer error = ifmedia_ioctl(ifp, ifr, &sc->sc_mii.mii_media, cmd);
903 1.1 thorpej break;
904 1.1 thorpej
905 1.2.2.1 bouyer default:
906 1.2.2.1 bouyer error = ether_ioctl(ifp, cmd, data);
907 1.1 thorpej if (error == ENETRESET) {
908 1.1 thorpej /*
909 1.1 thorpej * Multicast list has changed; set the hardware filter
910 1.1 thorpej * accordingly.
911 1.1 thorpej */
912 1.2.2.1 bouyer (*sc->sc_model->sip_variant->sipv_set_filter)(sc);
913 1.1 thorpej error = 0;
914 1.1 thorpej }
915 1.1 thorpej break;
916 1.1 thorpej }
917 1.1 thorpej
918 1.1 thorpej /* Try to get more packets going. */
919 1.1 thorpej sip_start(ifp);
920 1.1 thorpej
921 1.1 thorpej splx(s);
922 1.1 thorpej return (error);
923 1.1 thorpej }
924 1.1 thorpej
925 1.1 thorpej /*
926 1.1 thorpej * sip_intr:
927 1.1 thorpej *
928 1.1 thorpej * Interrupt service routine.
929 1.1 thorpej */
930 1.1 thorpej int
931 1.1 thorpej sip_intr(arg)
932 1.1 thorpej void *arg;
933 1.1 thorpej {
934 1.1 thorpej struct sip_softc *sc = arg;
935 1.1 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
936 1.1 thorpej u_int32_t isr;
937 1.1 thorpej int handled = 0;
938 1.1 thorpej
939 1.1 thorpej for (;;) {
940 1.1 thorpej /* Reading clears interrupt. */
941 1.1 thorpej isr = bus_space_read_4(sc->sc_st, sc->sc_sh, SIP_ISR);
942 1.1 thorpej if ((isr & sc->sc_imr) == 0)
943 1.1 thorpej break;
944 1.1 thorpej
945 1.1 thorpej handled = 1;
946 1.1 thorpej
947 1.1 thorpej if (isr & (ISR_RXORN|ISR_RXIDLE|ISR_RXDESC)) {
948 1.1 thorpej /* Grab any new packets. */
949 1.1 thorpej sip_rxintr(sc);
950 1.1 thorpej
951 1.1 thorpej if (isr & ISR_RXORN) {
952 1.1 thorpej printf("%s: receive FIFO overrun\n",
953 1.1 thorpej sc->sc_dev.dv_xname);
954 1.1 thorpej
955 1.1 thorpej /* XXX adjust rx_drain_thresh? */
956 1.1 thorpej }
957 1.1 thorpej
958 1.1 thorpej if (isr & ISR_RXIDLE) {
959 1.1 thorpej printf("%s: receive ring overrun\n",
960 1.1 thorpej sc->sc_dev.dv_xname);
961 1.1 thorpej
962 1.1 thorpej /* Get the receive process going again. */
963 1.1 thorpej bus_space_write_4(sc->sc_st, sc->sc_sh,
964 1.1 thorpej SIP_RXDP, SIP_CDRXADDR(sc, sc->sc_rxptr));
965 1.1 thorpej bus_space_write_4(sc->sc_st, sc->sc_sh,
966 1.1 thorpej SIP_CR, CR_RXE);
967 1.1 thorpej }
968 1.1 thorpej }
969 1.1 thorpej
970 1.1 thorpej if (isr & (ISR_TXURN|ISR_TXDESC)) {
971 1.1 thorpej /* Sweep up transmit descriptors. */
972 1.1 thorpej sip_txintr(sc);
973 1.1 thorpej
974 1.1 thorpej if (isr & ISR_TXURN) {
975 1.1 thorpej u_int32_t thresh;
976 1.1 thorpej
977 1.1 thorpej printf("%s: transmit FIFO underrun",
978 1.1 thorpej sc->sc_dev.dv_xname);
979 1.1 thorpej
980 1.1 thorpej thresh = sc->sc_tx_drain_thresh + 1;
981 1.1 thorpej if (thresh <= TXCFG_DRTH &&
982 1.1 thorpej (thresh * 32) <= (SIP_TXFIFO_SIZE -
983 1.1 thorpej (sc->sc_tx_fill_thresh * 32))) {
984 1.1 thorpej printf("; increasing Tx drain "
985 1.1 thorpej "threshold to %u bytes\n",
986 1.1 thorpej thresh * 32);
987 1.1 thorpej sc->sc_tx_drain_thresh = thresh;
988 1.2.2.1 bouyer (void) sip_init(ifp);
989 1.1 thorpej } else {
990 1.2.2.1 bouyer (void) sip_init(ifp);
991 1.1 thorpej printf("\n");
992 1.1 thorpej }
993 1.1 thorpej }
994 1.1 thorpej }
995 1.1 thorpej
996 1.1 thorpej if (sc->sc_imr & (ISR_PAUSE_END|ISR_PAUSE_ST)) {
997 1.1 thorpej if (isr & ISR_PAUSE_ST) {
998 1.1 thorpej sc->sc_flags |= SIPF_PAUSED;
999 1.1 thorpej ifp->if_flags |= IFF_OACTIVE;
1000 1.1 thorpej }
1001 1.1 thorpej if (isr & ISR_PAUSE_END) {
1002 1.1 thorpej sc->sc_flags &= ~SIPF_PAUSED;
1003 1.1 thorpej ifp->if_flags &= ~IFF_OACTIVE;
1004 1.1 thorpej }
1005 1.1 thorpej }
1006 1.1 thorpej
1007 1.1 thorpej if (isr & ISR_HIBERR) {
1008 1.1 thorpej #define PRINTERR(bit, str) \
1009 1.1 thorpej if (isr & (bit)) \
1010 1.1 thorpej printf("%s: %s\n", sc->sc_dev.dv_xname, str)
1011 1.1 thorpej PRINTERR(ISR_DPERR, "parity error");
1012 1.1 thorpej PRINTERR(ISR_SSERR, "system error");
1013 1.1 thorpej PRINTERR(ISR_RMABT, "master abort");
1014 1.1 thorpej PRINTERR(ISR_RTABT, "target abort");
1015 1.1 thorpej PRINTERR(ISR_RXSOVR, "receive status FIFO overrun");
1016 1.2.2.1 bouyer (void) sip_init(ifp);
1017 1.1 thorpej #undef PRINTERR
1018 1.1 thorpej }
1019 1.1 thorpej }
1020 1.1 thorpej
1021 1.1 thorpej /* Try to get more packets going. */
1022 1.1 thorpej sip_start(ifp);
1023 1.1 thorpej
1024 1.1 thorpej return (handled);
1025 1.1 thorpej }
1026 1.1 thorpej
1027 1.1 thorpej /*
1028 1.1 thorpej * sip_txintr:
1029 1.1 thorpej *
1030 1.1 thorpej * Helper; handle transmit interrupts.
1031 1.1 thorpej */
1032 1.1 thorpej void
1033 1.1 thorpej sip_txintr(sc)
1034 1.1 thorpej struct sip_softc *sc;
1035 1.1 thorpej {
1036 1.1 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
1037 1.1 thorpej struct sip_txsoft *txs;
1038 1.1 thorpej u_int32_t cmdsts;
1039 1.1 thorpej
1040 1.1 thorpej if ((sc->sc_flags & SIPF_PAUSED) == 0)
1041 1.1 thorpej ifp->if_flags &= ~IFF_OACTIVE;
1042 1.1 thorpej
1043 1.1 thorpej /*
1044 1.1 thorpej * Go through our Tx list and free mbufs for those
1045 1.1 thorpej * frames which have been transmitted.
1046 1.1 thorpej */
1047 1.1 thorpej while ((txs = SIMPLEQ_FIRST(&sc->sc_txdirtyq)) != NULL) {
1048 1.1 thorpej SIP_CDTXSYNC(sc, txs->txs_firstdesc, txs->txs_dmamap->dm_nsegs,
1049 1.1 thorpej BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
1050 1.1 thorpej
1051 1.2.2.1 bouyer cmdsts = le32toh(sc->sc_txdescs[txs->txs_lastdesc].sipd_cmdsts);
1052 1.1 thorpej if (cmdsts & CMDSTS_OWN)
1053 1.1 thorpej break;
1054 1.1 thorpej
1055 1.1 thorpej SIMPLEQ_REMOVE_HEAD(&sc->sc_txdirtyq, txs, txs_q);
1056 1.1 thorpej
1057 1.1 thorpej sc->sc_txfree += txs->txs_dmamap->dm_nsegs;
1058 1.1 thorpej
1059 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, txs->txs_dmamap,
1060 1.1 thorpej 0, txs->txs_dmamap->dm_mapsize, BUS_DMASYNC_POSTWRITE);
1061 1.1 thorpej bus_dmamap_unload(sc->sc_dmat, txs->txs_dmamap);
1062 1.1 thorpej m_freem(txs->txs_mbuf);
1063 1.1 thorpej txs->txs_mbuf = NULL;
1064 1.1 thorpej
1065 1.1 thorpej SIMPLEQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q);
1066 1.1 thorpej
1067 1.1 thorpej /*
1068 1.1 thorpej * Check for errors and collisions.
1069 1.1 thorpej */
1070 1.1 thorpej if (cmdsts &
1071 1.1 thorpej (CMDSTS_Tx_TXA|CMDSTS_Tx_TFU|CMDSTS_Tx_ED|CMDSTS_Tx_EC)) {
1072 1.1 thorpej if (ifp->if_flags & IFF_DEBUG) {
1073 1.1 thorpej if (CMDSTS_Tx_ED)
1074 1.1 thorpej printf("%s: excessive deferral\n",
1075 1.1 thorpej sc->sc_dev.dv_xname);
1076 1.1 thorpej if (CMDSTS_Tx_EC) {
1077 1.1 thorpej printf("%s: excessive collisions\n",
1078 1.1 thorpej sc->sc_dev.dv_xname);
1079 1.1 thorpej ifp->if_collisions += 16;
1080 1.1 thorpej }
1081 1.1 thorpej }
1082 1.1 thorpej } else {
1083 1.1 thorpej /* Packet was transmitted successfully. */
1084 1.1 thorpej ifp->if_opackets++;
1085 1.1 thorpej ifp->if_collisions += CMDSTS_COLLISIONS(cmdsts);
1086 1.1 thorpej }
1087 1.1 thorpej }
1088 1.1 thorpej
1089 1.1 thorpej /*
1090 1.1 thorpej * If there are no more pending transmissions, cancel the watchdog
1091 1.1 thorpej * timer.
1092 1.1 thorpej */
1093 1.1 thorpej if (txs == NULL)
1094 1.1 thorpej ifp->if_timer = 0;
1095 1.1 thorpej }
1096 1.1 thorpej
1097 1.1 thorpej /*
1098 1.1 thorpej * sip_rxintr:
1099 1.1 thorpej *
1100 1.1 thorpej * Helper; handle receive interrupts.
1101 1.1 thorpej */
1102 1.1 thorpej void
1103 1.1 thorpej sip_rxintr(sc)
1104 1.1 thorpej struct sip_softc *sc;
1105 1.1 thorpej {
1106 1.1 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
1107 1.1 thorpej struct sip_rxsoft *rxs;
1108 1.1 thorpej struct mbuf *m;
1109 1.1 thorpej u_int32_t cmdsts;
1110 1.1 thorpej int i, len;
1111 1.1 thorpej
1112 1.1 thorpej for (i = sc->sc_rxptr;; i = SIP_NEXTRX(i)) {
1113 1.1 thorpej rxs = &sc->sc_rxsoft[i];
1114 1.1 thorpej
1115 1.1 thorpej SIP_CDRXSYNC(sc, i, BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
1116 1.1 thorpej
1117 1.2.2.1 bouyer cmdsts = le32toh(sc->sc_rxdescs[i].sipd_cmdsts);
1118 1.1 thorpej
1119 1.1 thorpej /*
1120 1.1 thorpej * NOTE: OWN is set if owned by _consumer_. We're the
1121 1.1 thorpej * consumer of the receive ring, so if the bit is clear,
1122 1.1 thorpej * we have processed all of the packets.
1123 1.1 thorpej */
1124 1.1 thorpej if ((cmdsts & CMDSTS_OWN) == 0) {
1125 1.1 thorpej /*
1126 1.1 thorpej * We have processed all of the receive buffers.
1127 1.1 thorpej */
1128 1.1 thorpej break;
1129 1.1 thorpej }
1130 1.1 thorpej
1131 1.1 thorpej /*
1132 1.1 thorpej * If any collisions were seen on the wire, count one.
1133 1.1 thorpej */
1134 1.1 thorpej if (cmdsts & CMDSTS_Rx_COL)
1135 1.1 thorpej ifp->if_collisions++;
1136 1.1 thorpej
1137 1.1 thorpej /*
1138 1.1 thorpej * If an error occurred, update stats, clear the status
1139 1.1 thorpej * word, and leave the packet buffer in place. It will
1140 1.1 thorpej * simply be reused the next time the ring comes around.
1141 1.1 thorpej */
1142 1.1 thorpej if (cmdsts & (CMDSTS_Rx_RXA|CMDSTS_Rx_LONG|CMDSTS_Rx_RUNT|
1143 1.1 thorpej CMDSTS_Rx_ISE|CMDSTS_Rx_CRCE|CMDSTS_Rx_FAE)) {
1144 1.1 thorpej ifp->if_ierrors++;
1145 1.1 thorpej if ((cmdsts & CMDSTS_Rx_RXA) != 0 &&
1146 1.1 thorpej (cmdsts & CMDSTS_Rx_RXO) == 0) {
1147 1.1 thorpej /* Receive overrun handled elsewhere. */
1148 1.1 thorpej printf("%s: receive descriptor error\n",
1149 1.1 thorpej sc->sc_dev.dv_xname);
1150 1.1 thorpej }
1151 1.1 thorpej #define PRINTERR(bit, str) \
1152 1.1 thorpej if (cmdsts & (bit)) \
1153 1.1 thorpej printf("%s: %s\n", sc->sc_dev.dv_xname, str)
1154 1.1 thorpej PRINTERR(CMDSTS_Rx_LONG, "packet too long");
1155 1.1 thorpej PRINTERR(CMDSTS_Rx_RUNT, "runt packet");
1156 1.1 thorpej PRINTERR(CMDSTS_Rx_ISE, "invalid symbol error");
1157 1.1 thorpej PRINTERR(CMDSTS_Rx_CRCE, "CRC error");
1158 1.1 thorpej PRINTERR(CMDSTS_Rx_FAE, "frame alignment error");
1159 1.1 thorpej #undef PRINTERR
1160 1.1 thorpej SIP_INIT_RXDESC(sc, i);
1161 1.1 thorpej continue;
1162 1.1 thorpej }
1163 1.1 thorpej
1164 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, rxs->rxs_dmamap, 0,
1165 1.1 thorpej rxs->rxs_dmamap->dm_mapsize, BUS_DMASYNC_POSTREAD);
1166 1.1 thorpej
1167 1.1 thorpej /*
1168 1.1 thorpej * No errors; receive the packet. Note, the SiS 900
1169 1.2.2.1 bouyer * includes the CRC with every packet.
1170 1.1 thorpej */
1171 1.2.2.1 bouyer len = CMDSTS_SIZE(cmdsts);
1172 1.1 thorpej
1173 1.1 thorpej #ifdef __NO_STRICT_ALIGNMENT
1174 1.1 thorpej /*
1175 1.2 thorpej * If the packet is small enough to fit in a
1176 1.2 thorpej * single header mbuf, allocate one and copy
1177 1.2 thorpej * the data into it. This greatly reduces
1178 1.2 thorpej * memory consumption when we receive lots
1179 1.2 thorpej * of small packets.
1180 1.2 thorpej *
1181 1.2 thorpej * Otherwise, we add a new buffer to the receive
1182 1.2 thorpej * chain. If this fails, we drop the packet and
1183 1.2 thorpej * recycle the old buffer.
1184 1.1 thorpej */
1185 1.2 thorpej if (sip_copy_small != 0 && len <= MHLEN) {
1186 1.2 thorpej MGETHDR(m, M_DONTWAIT, MT_DATA);
1187 1.2 thorpej if (m == NULL)
1188 1.2 thorpej goto dropit;
1189 1.2 thorpej memcpy(mtod(m, caddr_t),
1190 1.2 thorpej mtod(rxs->rxs_mbuf, caddr_t), len);
1191 1.1 thorpej SIP_INIT_RXDESC(sc, i);
1192 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, rxs->rxs_dmamap, 0,
1193 1.2 thorpej rxs->rxs_dmamap->dm_mapsize,
1194 1.2 thorpej BUS_DMASYNC_PREREAD);
1195 1.2 thorpej } else {
1196 1.2 thorpej m = rxs->rxs_mbuf;
1197 1.2 thorpej if (sip_add_rxbuf(sc, i) != 0) {
1198 1.2 thorpej dropit:
1199 1.2 thorpej ifp->if_ierrors++;
1200 1.2 thorpej SIP_INIT_RXDESC(sc, i);
1201 1.2 thorpej bus_dmamap_sync(sc->sc_dmat,
1202 1.2 thorpej rxs->rxs_dmamap, 0,
1203 1.2 thorpej rxs->rxs_dmamap->dm_mapsize,
1204 1.2 thorpej BUS_DMASYNC_PREREAD);
1205 1.2 thorpej continue;
1206 1.2 thorpej }
1207 1.1 thorpej }
1208 1.1 thorpej #else
1209 1.1 thorpej /*
1210 1.1 thorpej * The SiS 900's receive buffers must be 4-byte aligned.
1211 1.1 thorpej * But this means that the data after the Ethernet header
1212 1.1 thorpej * is misaligned. We must allocate a new buffer and
1213 1.1 thorpej * copy the data, shifted forward 2 bytes.
1214 1.1 thorpej */
1215 1.1 thorpej MGETHDR(m, M_DONTWAIT, MT_DATA);
1216 1.1 thorpej if (m == NULL) {
1217 1.1 thorpej dropit:
1218 1.1 thorpej ifp->if_ierrors++;
1219 1.1 thorpej SIP_INIT_RXDESC(sc, i);
1220 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, rxs->rxs_dmamap, 0,
1221 1.1 thorpej rxs->rxs_dmamap->dm_mapsize, BUS_DMASYNC_PREREAD);
1222 1.1 thorpej continue;
1223 1.1 thorpej }
1224 1.1 thorpej if (len > (MHLEN - 2)) {
1225 1.1 thorpej MCLGET(m, M_DONTWAIT);
1226 1.1 thorpej if ((m->m_flags & M_EXT) == 0) {
1227 1.1 thorpej m_freem(m);
1228 1.1 thorpej goto dropit;
1229 1.1 thorpej }
1230 1.1 thorpej }
1231 1.1 thorpej m->m_data += 2;
1232 1.1 thorpej
1233 1.1 thorpej /*
1234 1.1 thorpej * Note that we use clusters for incoming frames, so the
1235 1.1 thorpej * buffer is virtually contiguous.
1236 1.1 thorpej */
1237 1.1 thorpej memcpy(mtod(m, caddr_t), mtod(rxs->rxs_mbuf, caddr_t), len);
1238 1.1 thorpej
1239 1.1 thorpej /* Allow the receive descriptor to continue using its mbuf. */
1240 1.1 thorpej SIP_INIT_RXDESC(sc, i);
1241 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, rxs->rxs_dmamap, 0,
1242 1.1 thorpej rxs->rxs_dmamap->dm_mapsize, BUS_DMASYNC_PREREAD);
1243 1.1 thorpej #endif /* __NO_STRICT_ALIGNMENT */
1244 1.1 thorpej
1245 1.1 thorpej ifp->if_ipackets++;
1246 1.2.2.1 bouyer m->m_flags |= M_HASFCS;
1247 1.1 thorpej m->m_pkthdr.rcvif = ifp;
1248 1.1 thorpej m->m_pkthdr.len = m->m_len = len;
1249 1.1 thorpej
1250 1.1 thorpej #if NBPFILTER > 0
1251 1.1 thorpej /*
1252 1.1 thorpej * Pass this up to any BPF listeners, but only
1253 1.1 thorpej * pass if up the stack if it's for us.
1254 1.1 thorpej */
1255 1.2.2.1 bouyer if (ifp->if_bpf)
1256 1.1 thorpej bpf_mtap(ifp->if_bpf, m);
1257 1.1 thorpej #endif /* NBPFILTER > 0 */
1258 1.1 thorpej
1259 1.1 thorpej /* Pass it on. */
1260 1.1 thorpej (*ifp->if_input)(ifp, m);
1261 1.1 thorpej }
1262 1.1 thorpej
1263 1.1 thorpej /* Update the receive pointer. */
1264 1.1 thorpej sc->sc_rxptr = i;
1265 1.1 thorpej }
1266 1.1 thorpej
1267 1.1 thorpej /*
1268 1.1 thorpej * sip_tick:
1269 1.1 thorpej *
1270 1.1 thorpej * One second timer, used to tick the MII.
1271 1.1 thorpej */
1272 1.1 thorpej void
1273 1.1 thorpej sip_tick(arg)
1274 1.1 thorpej void *arg;
1275 1.1 thorpej {
1276 1.1 thorpej struct sip_softc *sc = arg;
1277 1.1 thorpej int s;
1278 1.1 thorpej
1279 1.1 thorpej s = splnet();
1280 1.1 thorpej mii_tick(&sc->sc_mii);
1281 1.1 thorpej splx(s);
1282 1.1 thorpej
1283 1.2.2.1 bouyer callout_reset(&sc->sc_tick_ch, hz, sip_tick, sc);
1284 1.1 thorpej }
1285 1.1 thorpej
1286 1.1 thorpej /*
1287 1.1 thorpej * sip_reset:
1288 1.1 thorpej *
1289 1.1 thorpej * Perform a soft reset on the SiS 900.
1290 1.1 thorpej */
1291 1.1 thorpej void
1292 1.1 thorpej sip_reset(sc)
1293 1.1 thorpej struct sip_softc *sc;
1294 1.1 thorpej {
1295 1.1 thorpej bus_space_tag_t st = sc->sc_st;
1296 1.1 thorpej bus_space_handle_t sh = sc->sc_sh;
1297 1.1 thorpej int i;
1298 1.1 thorpej
1299 1.1 thorpej bus_space_write_4(st, sh, SIP_CR, CR_RST);
1300 1.1 thorpej
1301 1.2.2.1 bouyer for (i = 0; i < SIP_TIMEOUT; i++) {
1302 1.2.2.1 bouyer if ((bus_space_read_4(st, sh, SIP_CR) & CR_RST) == 0)
1303 1.2.2.1 bouyer break;
1304 1.1 thorpej delay(2);
1305 1.1 thorpej }
1306 1.1 thorpej
1307 1.2.2.1 bouyer if (i == SIP_TIMEOUT)
1308 1.2.2.1 bouyer printf("%s: reset failed to complete\n", sc->sc_dev.dv_xname);
1309 1.2.2.1 bouyer
1310 1.2.2.1 bouyer delay(1000);
1311 1.1 thorpej }
1312 1.1 thorpej
1313 1.1 thorpej /*
1314 1.2.2.1 bouyer * sip_init: [ ifnet interface function ]
1315 1.1 thorpej *
1316 1.1 thorpej * Initialize the interface. Must be called at splnet().
1317 1.1 thorpej */
1318 1.2 thorpej int
1319 1.2.2.1 bouyer sip_init(ifp)
1320 1.2.2.1 bouyer struct ifnet *ifp;
1321 1.1 thorpej {
1322 1.2.2.1 bouyer struct sip_softc *sc = ifp->if_softc;
1323 1.1 thorpej bus_space_tag_t st = sc->sc_st;
1324 1.1 thorpej bus_space_handle_t sh = sc->sc_sh;
1325 1.1 thorpej struct sip_txsoft *txs;
1326 1.2 thorpej struct sip_rxsoft *rxs;
1327 1.1 thorpej struct sip_desc *sipd;
1328 1.1 thorpej u_int32_t cfg;
1329 1.2 thorpej int i, error = 0;
1330 1.1 thorpej
1331 1.1 thorpej /*
1332 1.1 thorpej * Cancel any pending I/O.
1333 1.1 thorpej */
1334 1.2.2.1 bouyer sip_stop(ifp, 0);
1335 1.1 thorpej
1336 1.1 thorpej /*
1337 1.1 thorpej * Reset the chip to a known state.
1338 1.1 thorpej */
1339 1.1 thorpej sip_reset(sc);
1340 1.1 thorpej
1341 1.1 thorpej /*
1342 1.1 thorpej * Initialize the transmit descriptor ring.
1343 1.1 thorpej */
1344 1.1 thorpej for (i = 0; i < SIP_NTXDESC; i++) {
1345 1.1 thorpej sipd = &sc->sc_txdescs[i];
1346 1.1 thorpej memset(sipd, 0, sizeof(struct sip_desc));
1347 1.2.2.1 bouyer sipd->sipd_link = htole32(SIP_CDTXADDR(sc, SIP_NEXTTX(i)));
1348 1.1 thorpej }
1349 1.1 thorpej SIP_CDTXSYNC(sc, 0, SIP_NTXDESC,
1350 1.1 thorpej BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
1351 1.1 thorpej sc->sc_txfree = SIP_NTXDESC;
1352 1.1 thorpej sc->sc_txnext = 0;
1353 1.1 thorpej
1354 1.1 thorpej /*
1355 1.1 thorpej * Initialize the transmit job descriptors.
1356 1.1 thorpej */
1357 1.1 thorpej SIMPLEQ_INIT(&sc->sc_txfreeq);
1358 1.1 thorpej SIMPLEQ_INIT(&sc->sc_txdirtyq);
1359 1.1 thorpej for (i = 0; i < SIP_TXQUEUELEN; i++) {
1360 1.1 thorpej txs = &sc->sc_txsoft[i];
1361 1.1 thorpej txs->txs_mbuf = NULL;
1362 1.1 thorpej SIMPLEQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q);
1363 1.1 thorpej }
1364 1.1 thorpej
1365 1.1 thorpej /*
1366 1.1 thorpej * Initialize the receive descriptor and receive job
1367 1.2 thorpej * descriptor rings.
1368 1.1 thorpej */
1369 1.2 thorpej for (i = 0; i < SIP_NRXDESC; i++) {
1370 1.2 thorpej rxs = &sc->sc_rxsoft[i];
1371 1.2 thorpej if (rxs->rxs_mbuf == NULL) {
1372 1.2 thorpej if ((error = sip_add_rxbuf(sc, i)) != 0) {
1373 1.2 thorpej printf("%s: unable to allocate or map rx "
1374 1.2 thorpej "buffer %d, error = %d\n",
1375 1.2 thorpej sc->sc_dev.dv_xname, i, error);
1376 1.2 thorpej /*
1377 1.2 thorpej * XXX Should attempt to run with fewer receive
1378 1.2 thorpej * XXX buffers instead of just failing.
1379 1.2 thorpej */
1380 1.2 thorpej sip_rxdrain(sc);
1381 1.2 thorpej goto out;
1382 1.2 thorpej }
1383 1.2 thorpej }
1384 1.2 thorpej }
1385 1.1 thorpej sc->sc_rxptr = 0;
1386 1.1 thorpej
1387 1.1 thorpej /*
1388 1.1 thorpej * Initialize the configuration register: aggressive PCI
1389 1.1 thorpej * bus request algorithm, default backoff, default OW timer,
1390 1.1 thorpej * default parity error detection.
1391 1.1 thorpej */
1392 1.1 thorpej cfg = 0;
1393 1.1 thorpej #if BYTE_ORDER == BIG_ENDIAN
1394 1.1 thorpej /*
1395 1.1 thorpej * ...descriptors in big-endian mode.
1396 1.1 thorpej */
1397 1.2.2.1 bouyer #if 0
1398 1.2.2.1 bouyer /* "Big endian mode" does not work properly. */
1399 1.1 thorpej cfg |= CFG_BEM;
1400 1.1 thorpej #endif
1401 1.2.2.1 bouyer #endif
1402 1.1 thorpej bus_space_write_4(st, sh, SIP_CFG, cfg);
1403 1.1 thorpej
1404 1.1 thorpej /*
1405 1.1 thorpej * Initialize the transmit fill and drain thresholds if
1406 1.1 thorpej * we have never done so.
1407 1.1 thorpej */
1408 1.1 thorpej if (sc->sc_tx_fill_thresh == 0) {
1409 1.1 thorpej /*
1410 1.1 thorpej * XXX This value should be tuned. This is the
1411 1.1 thorpej * minimum (32 bytes), and we may be able to
1412 1.1 thorpej * improve performance by increasing it.
1413 1.1 thorpej */
1414 1.1 thorpej sc->sc_tx_fill_thresh = 1;
1415 1.1 thorpej }
1416 1.1 thorpej if (sc->sc_tx_drain_thresh == 0) {
1417 1.1 thorpej /*
1418 1.1 thorpej * Start at a drain threshold of 128 bytes. We will
1419 1.1 thorpej * increase it if a DMA underrun occurs.
1420 1.1 thorpej *
1421 1.1 thorpej * XXX The minimum value of this variable should be
1422 1.1 thorpej * tuned. We may be able to improve performance
1423 1.1 thorpej * by starting with a lower value. That, however,
1424 1.1 thorpej * may trash the first few outgoing packets if the
1425 1.1 thorpej * PCI bus is saturated.
1426 1.1 thorpej */
1427 1.1 thorpej sc->sc_tx_drain_thresh = 4;
1428 1.1 thorpej }
1429 1.1 thorpej
1430 1.1 thorpej /*
1431 1.1 thorpej * Initialize the prototype TXCFG register.
1432 1.1 thorpej */
1433 1.1 thorpej sc->sc_txcfg = TXCFG_ATP | TXCFG_MXDMA_512 |
1434 1.1 thorpej (sc->sc_tx_fill_thresh << TXCFG_FLTH_SHIFT) |
1435 1.1 thorpej sc->sc_tx_drain_thresh;
1436 1.1 thorpej bus_space_write_4(st, sh, SIP_TXCFG, sc->sc_txcfg);
1437 1.1 thorpej
1438 1.1 thorpej /*
1439 1.1 thorpej * Initialize the receive drain threshold if we have never
1440 1.1 thorpej * done so.
1441 1.1 thorpej */
1442 1.1 thorpej if (sc->sc_rx_drain_thresh == 0) {
1443 1.1 thorpej /*
1444 1.1 thorpej * XXX This value should be tuned. This is set to the
1445 1.1 thorpej * maximum of 248 bytes, and we may be able to improve
1446 1.1 thorpej * performance by decreasing it (although we should never
1447 1.1 thorpej * set this value lower than 2; 14 bytes are required to
1448 1.1 thorpej * filter the packet).
1449 1.1 thorpej */
1450 1.1 thorpej sc->sc_rx_drain_thresh = RXCFG_DRTH >> RXCFG_DRTH_SHIFT;
1451 1.1 thorpej }
1452 1.1 thorpej
1453 1.1 thorpej /*
1454 1.1 thorpej * Initialize the prototype RXCFG register.
1455 1.1 thorpej */
1456 1.1 thorpej sc->sc_rxcfg = RXCFG_MXDMA_512 |
1457 1.1 thorpej (sc->sc_rx_drain_thresh << RXCFG_DRTH_SHIFT);
1458 1.1 thorpej bus_space_write_4(st, sh, SIP_RXCFG, sc->sc_rxcfg);
1459 1.1 thorpej
1460 1.1 thorpej /* Set up the receive filter. */
1461 1.2.2.1 bouyer (*sc->sc_model->sip_variant->sipv_set_filter)(sc);
1462 1.1 thorpej
1463 1.1 thorpej /*
1464 1.1 thorpej * Give the transmit and receive rings to the chip.
1465 1.1 thorpej */
1466 1.1 thorpej bus_space_write_4(st, sh, SIP_TXDP, SIP_CDTXADDR(sc, sc->sc_txnext));
1467 1.1 thorpej bus_space_write_4(st, sh, SIP_RXDP, SIP_CDRXADDR(sc, sc->sc_rxptr));
1468 1.1 thorpej
1469 1.1 thorpej /*
1470 1.1 thorpej * Initialize the interrupt mask.
1471 1.1 thorpej */
1472 1.1 thorpej sc->sc_imr = ISR_DPERR|ISR_SSERR|ISR_RMABT|ISR_RTABT|ISR_RXSOVR|
1473 1.1 thorpej ISR_TXURN|ISR_TXDESC|ISR_RXORN|ISR_RXIDLE|ISR_RXDESC;
1474 1.1 thorpej bus_space_write_4(st, sh, SIP_IMR, sc->sc_imr);
1475 1.1 thorpej
1476 1.1 thorpej /*
1477 1.1 thorpej * Set the current media. Do this after initializing the prototype
1478 1.1 thorpej * IMR, since sip_mii_statchg() modifies the IMR for 802.3x flow
1479 1.1 thorpej * control.
1480 1.1 thorpej */
1481 1.1 thorpej mii_mediachg(&sc->sc_mii);
1482 1.1 thorpej
1483 1.1 thorpej /*
1484 1.1 thorpej * Enable interrupts.
1485 1.1 thorpej */
1486 1.1 thorpej bus_space_write_4(st, sh, SIP_IER, IER_IE);
1487 1.1 thorpej
1488 1.1 thorpej /*
1489 1.1 thorpej * Start the transmit and receive processes.
1490 1.1 thorpej */
1491 1.1 thorpej bus_space_write_4(st, sh, SIP_CR, CR_RXE | CR_TXE);
1492 1.1 thorpej
1493 1.1 thorpej /*
1494 1.1 thorpej * Start the one second MII clock.
1495 1.1 thorpej */
1496 1.2.2.1 bouyer callout_reset(&sc->sc_tick_ch, hz, sip_tick, sc);
1497 1.1 thorpej
1498 1.1 thorpej /*
1499 1.1 thorpej * ...all done!
1500 1.1 thorpej */
1501 1.1 thorpej ifp->if_flags |= IFF_RUNNING;
1502 1.1 thorpej ifp->if_flags &= ~IFF_OACTIVE;
1503 1.2 thorpej
1504 1.2 thorpej out:
1505 1.2 thorpej if (error)
1506 1.2 thorpej printf("%s: interface not running\n", sc->sc_dev.dv_xname);
1507 1.2 thorpej return (error);
1508 1.2 thorpej }
1509 1.2 thorpej
1510 1.2 thorpej /*
1511 1.2 thorpej * sip_drain:
1512 1.2 thorpej *
1513 1.2 thorpej * Drain the receive queue.
1514 1.2 thorpej */
1515 1.2 thorpej void
1516 1.2 thorpej sip_rxdrain(sc)
1517 1.2 thorpej struct sip_softc *sc;
1518 1.2 thorpej {
1519 1.2 thorpej struct sip_rxsoft *rxs;
1520 1.2 thorpej int i;
1521 1.2 thorpej
1522 1.2 thorpej for (i = 0; i < SIP_NRXDESC; i++) {
1523 1.2 thorpej rxs = &sc->sc_rxsoft[i];
1524 1.2 thorpej if (rxs->rxs_mbuf != NULL) {
1525 1.2 thorpej bus_dmamap_unload(sc->sc_dmat, rxs->rxs_dmamap);
1526 1.2 thorpej m_freem(rxs->rxs_mbuf);
1527 1.2 thorpej rxs->rxs_mbuf = NULL;
1528 1.2 thorpej }
1529 1.2 thorpej }
1530 1.1 thorpej }
1531 1.1 thorpej
1532 1.1 thorpej /*
1533 1.2.2.1 bouyer * sip_stop: [ ifnet interface function ]
1534 1.1 thorpej *
1535 1.1 thorpej * Stop transmission on the interface.
1536 1.1 thorpej */
1537 1.1 thorpej void
1538 1.2.2.1 bouyer sip_stop(ifp, disable)
1539 1.2.2.1 bouyer struct ifnet *ifp;
1540 1.2.2.1 bouyer int disable;
1541 1.1 thorpej {
1542 1.2.2.1 bouyer struct sip_softc *sc = ifp->if_softc;
1543 1.1 thorpej bus_space_tag_t st = sc->sc_st;
1544 1.1 thorpej bus_space_handle_t sh = sc->sc_sh;
1545 1.1 thorpej struct sip_txsoft *txs;
1546 1.1 thorpej u_int32_t cmdsts = 0; /* DEBUG */
1547 1.1 thorpej
1548 1.1 thorpej /*
1549 1.1 thorpej * Stop the one second clock.
1550 1.1 thorpej */
1551 1.2.2.1 bouyer callout_stop(&sc->sc_tick_ch);
1552 1.2.2.1 bouyer
1553 1.2.2.1 bouyer /* Down the MII. */
1554 1.2.2.1 bouyer mii_down(&sc->sc_mii);
1555 1.1 thorpej
1556 1.1 thorpej /*
1557 1.1 thorpej * Disable interrupts.
1558 1.1 thorpej */
1559 1.1 thorpej bus_space_write_4(st, sh, SIP_IER, 0);
1560 1.1 thorpej
1561 1.1 thorpej /*
1562 1.1 thorpej * Stop receiver and transmitter.
1563 1.1 thorpej */
1564 1.1 thorpej bus_space_write_4(st, sh, SIP_CR, CR_RXD | CR_TXD);
1565 1.1 thorpej
1566 1.1 thorpej /*
1567 1.1 thorpej * Release any queued transmit buffers.
1568 1.1 thorpej */
1569 1.1 thorpej while ((txs = SIMPLEQ_FIRST(&sc->sc_txdirtyq)) != NULL) {
1570 1.1 thorpej if ((ifp->if_flags & IFF_DEBUG) != 0 &&
1571 1.1 thorpej SIMPLEQ_NEXT(txs, txs_q) == NULL &&
1572 1.2.2.1 bouyer (le32toh(sc->sc_txdescs[txs->txs_lastdesc].sipd_cmdsts) &
1573 1.1 thorpej CMDSTS_INTR) == 0)
1574 1.1 thorpej printf("%s: sip_stop: last descriptor does not "
1575 1.1 thorpej "have INTR bit set\n", sc->sc_dev.dv_xname);
1576 1.1 thorpej SIMPLEQ_REMOVE_HEAD(&sc->sc_txdirtyq, txs, txs_q);
1577 1.1 thorpej #ifdef DIAGNOSTIC
1578 1.1 thorpej if (txs->txs_mbuf == NULL) {
1579 1.1 thorpej printf("%s: dirty txsoft with no mbuf chain\n",
1580 1.1 thorpej sc->sc_dev.dv_xname);
1581 1.1 thorpej panic("sip_stop");
1582 1.1 thorpej }
1583 1.1 thorpej #endif
1584 1.1 thorpej cmdsts |= /* DEBUG */
1585 1.2.2.1 bouyer le32toh(sc->sc_txdescs[txs->txs_lastdesc].sipd_cmdsts);
1586 1.1 thorpej bus_dmamap_unload(sc->sc_dmat, txs->txs_dmamap);
1587 1.1 thorpej m_freem(txs->txs_mbuf);
1588 1.1 thorpej txs->txs_mbuf = NULL;
1589 1.1 thorpej SIMPLEQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q);
1590 1.2 thorpej }
1591 1.2 thorpej
1592 1.2.2.1 bouyer if (disable)
1593 1.2 thorpej sip_rxdrain(sc);
1594 1.1 thorpej
1595 1.1 thorpej /*
1596 1.1 thorpej * Mark the interface down and cancel the watchdog timer.
1597 1.1 thorpej */
1598 1.1 thorpej ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
1599 1.1 thorpej ifp->if_timer = 0;
1600 1.1 thorpej
1601 1.1 thorpej if ((ifp->if_flags & IFF_DEBUG) != 0 &&
1602 1.1 thorpej (cmdsts & CMDSTS_INTR) == 0 && sc->sc_txfree != SIP_NTXDESC)
1603 1.1 thorpej printf("%s: sip_stop: no INTR bits set in dirty tx "
1604 1.1 thorpej "descriptors\n", sc->sc_dev.dv_xname);
1605 1.1 thorpej }
1606 1.1 thorpej
1607 1.1 thorpej /*
1608 1.1 thorpej * sip_read_eeprom:
1609 1.1 thorpej *
1610 1.1 thorpej * Read data from the serial EEPROM.
1611 1.1 thorpej */
1612 1.1 thorpej void
1613 1.1 thorpej sip_read_eeprom(sc, word, wordcnt, data)
1614 1.1 thorpej struct sip_softc *sc;
1615 1.1 thorpej int word, wordcnt;
1616 1.1 thorpej u_int16_t *data;
1617 1.1 thorpej {
1618 1.1 thorpej bus_space_tag_t st = sc->sc_st;
1619 1.1 thorpej bus_space_handle_t sh = sc->sc_sh;
1620 1.1 thorpej u_int16_t reg;
1621 1.1 thorpej int i, x;
1622 1.1 thorpej
1623 1.1 thorpej for (i = 0; i < wordcnt; i++) {
1624 1.1 thorpej /* Send CHIP SELECT. */
1625 1.1 thorpej reg = EROMAR_EECS;
1626 1.1 thorpej bus_space_write_4(st, sh, SIP_EROMAR, reg);
1627 1.1 thorpej
1628 1.1 thorpej /* Shift in the READ opcode. */
1629 1.1 thorpej for (x = 3; x > 0; x--) {
1630 1.1 thorpej if (SIP_EEPROM_OPC_READ & (1 << (x - 1)))
1631 1.1 thorpej reg |= EROMAR_EEDI;
1632 1.1 thorpej else
1633 1.1 thorpej reg &= ~EROMAR_EEDI;
1634 1.1 thorpej bus_space_write_4(st, sh, SIP_EROMAR, reg);
1635 1.1 thorpej bus_space_write_4(st, sh, SIP_EROMAR,
1636 1.1 thorpej reg | EROMAR_EESK);
1637 1.1 thorpej delay(4);
1638 1.1 thorpej bus_space_write_4(st, sh, SIP_EROMAR, reg);
1639 1.1 thorpej delay(4);
1640 1.1 thorpej }
1641 1.1 thorpej
1642 1.1 thorpej /* Shift in address. */
1643 1.1 thorpej for (x = 6; x > 0; x--) {
1644 1.1 thorpej if ((word + i) & (1 << (x - 1)))
1645 1.1 thorpej reg |= EROMAR_EEDI;
1646 1.1 thorpej else
1647 1.1 thorpej reg &= ~EROMAR_EEDI;
1648 1.1 thorpej bus_space_write_4(st, sh, SIP_EROMAR, reg);
1649 1.1 thorpej bus_space_write_4(st, sh, SIP_EROMAR,
1650 1.1 thorpej reg | EROMAR_EESK);
1651 1.1 thorpej delay(4);
1652 1.1 thorpej bus_space_write_4(st, sh, SIP_EROMAR, reg);
1653 1.1 thorpej delay(4);
1654 1.1 thorpej }
1655 1.1 thorpej
1656 1.1 thorpej /* Shift out data. */
1657 1.1 thorpej reg = EROMAR_EECS;
1658 1.1 thorpej data[i] = 0;
1659 1.1 thorpej for (x = 16; x > 0; x--) {
1660 1.1 thorpej bus_space_write_4(st, sh, SIP_EROMAR,
1661 1.1 thorpej reg | EROMAR_EESK);
1662 1.1 thorpej delay(4);
1663 1.1 thorpej if (bus_space_read_4(st, sh, SIP_EROMAR) & EROMAR_EEDO)
1664 1.1 thorpej data[i] |= (1 << (x - 1));
1665 1.1 thorpej bus_space_write_4(st, sh, SIP_EROMAR, reg);
1666 1.2.2.1 bouyer delay(4);
1667 1.1 thorpej }
1668 1.1 thorpej
1669 1.1 thorpej /* Clear CHIP SELECT. */
1670 1.1 thorpej bus_space_write_4(st, sh, SIP_EROMAR, 0);
1671 1.1 thorpej delay(4);
1672 1.1 thorpej }
1673 1.1 thorpej }
1674 1.1 thorpej
1675 1.1 thorpej /*
1676 1.1 thorpej * sip_add_rxbuf:
1677 1.1 thorpej *
1678 1.1 thorpej * Add a receive buffer to the indicated descriptor.
1679 1.1 thorpej */
1680 1.1 thorpej int
1681 1.1 thorpej sip_add_rxbuf(sc, idx)
1682 1.1 thorpej struct sip_softc *sc;
1683 1.1 thorpej int idx;
1684 1.1 thorpej {
1685 1.1 thorpej struct sip_rxsoft *rxs = &sc->sc_rxsoft[idx];
1686 1.1 thorpej struct mbuf *m;
1687 1.1 thorpej int error;
1688 1.1 thorpej
1689 1.1 thorpej MGETHDR(m, M_DONTWAIT, MT_DATA);
1690 1.1 thorpej if (m == NULL)
1691 1.1 thorpej return (ENOBUFS);
1692 1.1 thorpej
1693 1.1 thorpej MCLGET(m, M_DONTWAIT);
1694 1.1 thorpej if ((m->m_flags & M_EXT) == 0) {
1695 1.1 thorpej m_freem(m);
1696 1.1 thorpej return (ENOBUFS);
1697 1.1 thorpej }
1698 1.1 thorpej
1699 1.1 thorpej if (rxs->rxs_mbuf != NULL)
1700 1.1 thorpej bus_dmamap_unload(sc->sc_dmat, rxs->rxs_dmamap);
1701 1.1 thorpej
1702 1.1 thorpej rxs->rxs_mbuf = m;
1703 1.1 thorpej
1704 1.1 thorpej error = bus_dmamap_load(sc->sc_dmat, rxs->rxs_dmamap,
1705 1.1 thorpej m->m_ext.ext_buf, m->m_ext.ext_size, NULL, BUS_DMA_NOWAIT);
1706 1.1 thorpej if (error) {
1707 1.1 thorpej printf("%s: can't load rx DMA map %d, error = %d\n",
1708 1.1 thorpej sc->sc_dev.dv_xname, idx, error);
1709 1.1 thorpej panic("sip_add_rxbuf"); /* XXX */
1710 1.1 thorpej }
1711 1.1 thorpej
1712 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, rxs->rxs_dmamap, 0,
1713 1.1 thorpej rxs->rxs_dmamap->dm_mapsize, BUS_DMASYNC_PREREAD);
1714 1.1 thorpej
1715 1.1 thorpej SIP_INIT_RXDESC(sc, idx);
1716 1.1 thorpej
1717 1.1 thorpej return (0);
1718 1.1 thorpej }
1719 1.1 thorpej
1720 1.1 thorpej /*
1721 1.2.2.1 bouyer * sip_sis900_set_filter:
1722 1.1 thorpej *
1723 1.1 thorpej * Set up the receive filter.
1724 1.1 thorpej */
1725 1.1 thorpej void
1726 1.2.2.1 bouyer sip_sis900_set_filter(sc)
1727 1.1 thorpej struct sip_softc *sc;
1728 1.1 thorpej {
1729 1.1 thorpej bus_space_tag_t st = sc->sc_st;
1730 1.1 thorpej bus_space_handle_t sh = sc->sc_sh;
1731 1.1 thorpej struct ethercom *ec = &sc->sc_ethercom;
1732 1.1 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
1733 1.1 thorpej struct ether_multi *enm;
1734 1.1 thorpej u_int8_t *cp;
1735 1.2.2.1 bouyer struct ether_multistep step;
1736 1.1 thorpej u_int32_t crc, mchash[8];
1737 1.1 thorpej
1738 1.1 thorpej /*
1739 1.1 thorpej * Initialize the prototype RFCR.
1740 1.1 thorpej */
1741 1.1 thorpej sc->sc_rfcr = RFCR_RFEN;
1742 1.1 thorpej if (ifp->if_flags & IFF_BROADCAST)
1743 1.1 thorpej sc->sc_rfcr |= RFCR_AAB;
1744 1.1 thorpej if (ifp->if_flags & IFF_PROMISC) {
1745 1.1 thorpej sc->sc_rfcr |= RFCR_AAP;
1746 1.1 thorpej goto allmulti;
1747 1.1 thorpej }
1748 1.1 thorpej
1749 1.1 thorpej /*
1750 1.1 thorpej * Set up the multicast address filter by passing all multicast
1751 1.1 thorpej * addresses through a CRC generator, and then using the high-order
1752 1.1 thorpej * 6 bits as an index into the 128 bit multicast hash table (only
1753 1.1 thorpej * the lower 16 bits of each 32 bit multicast hash register are
1754 1.1 thorpej * valid). The high order bits select the register, while the
1755 1.1 thorpej * rest of the bits select the bit within the register.
1756 1.1 thorpej */
1757 1.1 thorpej
1758 1.1 thorpej memset(mchash, 0, sizeof(mchash));
1759 1.1 thorpej
1760 1.1 thorpej ETHER_FIRST_MULTI(step, ec, enm);
1761 1.1 thorpej while (enm != NULL) {
1762 1.1 thorpej if (bcmp(enm->enm_addrlo, enm->enm_addrhi, ETHER_ADDR_LEN)) {
1763 1.1 thorpej /*
1764 1.1 thorpej * We must listen to a range of multicast addresses.
1765 1.1 thorpej * For now, just accept all multicasts, rather than
1766 1.1 thorpej * trying to set only those filter bits needed to match
1767 1.1 thorpej * the range. (At this time, the only use of address
1768 1.1 thorpej * ranges is for IP multicast routing, for which the
1769 1.1 thorpej * range is big enough to require all bits set.)
1770 1.1 thorpej */
1771 1.1 thorpej goto allmulti;
1772 1.1 thorpej }
1773 1.1 thorpej
1774 1.2.2.1 bouyer crc = ether_crc32_le(enm->enm_addrlo, ETHER_ADDR_LEN);
1775 1.2.2.1 bouyer
1776 1.1 thorpej /* Just want the 7 most significant bits. */
1777 1.1 thorpej crc >>= 25;
1778 1.1 thorpej
1779 1.1 thorpej /* Set the corresponding bit in the hash table. */
1780 1.1 thorpej mchash[crc >> 4] |= 1 << (crc & 0xf);
1781 1.1 thorpej
1782 1.1 thorpej ETHER_NEXT_MULTI(step, enm);
1783 1.1 thorpej }
1784 1.1 thorpej
1785 1.1 thorpej ifp->if_flags &= ~IFF_ALLMULTI;
1786 1.1 thorpej goto setit;
1787 1.1 thorpej
1788 1.1 thorpej allmulti:
1789 1.1 thorpej ifp->if_flags |= IFF_ALLMULTI;
1790 1.1 thorpej sc->sc_rfcr |= RFCR_AAM;
1791 1.1 thorpej
1792 1.1 thorpej setit:
1793 1.1 thorpej #define FILTER_EMIT(addr, data) \
1794 1.1 thorpej bus_space_write_4(st, sh, SIP_RFCR, (addr)); \
1795 1.2.2.1 bouyer delay(1); \
1796 1.2.2.1 bouyer bus_space_write_4(st, sh, SIP_RFDR, (data)); \
1797 1.2.2.1 bouyer delay(1)
1798 1.1 thorpej
1799 1.1 thorpej /*
1800 1.1 thorpej * Disable receive filter, and program the node address.
1801 1.1 thorpej */
1802 1.1 thorpej cp = LLADDR(ifp->if_sadl);
1803 1.1 thorpej FILTER_EMIT(RFCR_RFADDR_NODE0, (cp[1] << 8) | cp[0]);
1804 1.1 thorpej FILTER_EMIT(RFCR_RFADDR_NODE2, (cp[3] << 8) | cp[2]);
1805 1.1 thorpej FILTER_EMIT(RFCR_RFADDR_NODE4, (cp[5] << 8) | cp[4]);
1806 1.1 thorpej
1807 1.1 thorpej if ((ifp->if_flags & IFF_ALLMULTI) == 0) {
1808 1.1 thorpej /*
1809 1.1 thorpej * Program the multicast hash table.
1810 1.1 thorpej */
1811 1.1 thorpej FILTER_EMIT(RFCR_RFADDR_MC0, mchash[0]);
1812 1.1 thorpej FILTER_EMIT(RFCR_RFADDR_MC1, mchash[1]);
1813 1.1 thorpej FILTER_EMIT(RFCR_RFADDR_MC2, mchash[2]);
1814 1.1 thorpej FILTER_EMIT(RFCR_RFADDR_MC3, mchash[3]);
1815 1.1 thorpej FILTER_EMIT(RFCR_RFADDR_MC4, mchash[4]);
1816 1.1 thorpej FILTER_EMIT(RFCR_RFADDR_MC5, mchash[5]);
1817 1.1 thorpej FILTER_EMIT(RFCR_RFADDR_MC6, mchash[6]);
1818 1.1 thorpej FILTER_EMIT(RFCR_RFADDR_MC7, mchash[7]);
1819 1.1 thorpej }
1820 1.1 thorpej #undef FILTER_EMIT
1821 1.1 thorpej
1822 1.1 thorpej /*
1823 1.1 thorpej * Re-enable the receiver filter.
1824 1.1 thorpej */
1825 1.1 thorpej bus_space_write_4(st, sh, SIP_RFCR, sc->sc_rfcr);
1826 1.1 thorpej }
1827 1.1 thorpej
1828 1.1 thorpej /*
1829 1.2.2.1 bouyer * sip_dp83815_set_filter:
1830 1.2.2.1 bouyer *
1831 1.2.2.1 bouyer * Set up the receive filter.
1832 1.2.2.1 bouyer */
1833 1.2.2.1 bouyer void
1834 1.2.2.1 bouyer sip_dp83815_set_filter(sc)
1835 1.2.2.1 bouyer struct sip_softc *sc;
1836 1.2.2.1 bouyer {
1837 1.2.2.1 bouyer bus_space_tag_t st = sc->sc_st;
1838 1.2.2.1 bouyer bus_space_handle_t sh = sc->sc_sh;
1839 1.2.2.1 bouyer struct ethercom *ec = &sc->sc_ethercom;
1840 1.2.2.1 bouyer struct ifnet *ifp = &sc->sc_ethercom.ec_if;
1841 1.2.2.1 bouyer struct ether_multi *enm;
1842 1.2.2.1 bouyer u_int8_t *cp;
1843 1.2.2.1 bouyer struct ether_multistep step;
1844 1.2.2.1 bouyer u_int32_t crc, mchash[16];
1845 1.2.2.1 bouyer int i;
1846 1.2.2.1 bouyer
1847 1.2.2.1 bouyer /*
1848 1.2.2.1 bouyer * Initialize the prototype RFCR.
1849 1.2.2.1 bouyer */
1850 1.2.2.1 bouyer sc->sc_rfcr = RFCR_RFEN | RFCR_AARP | RFCR_APM;
1851 1.2.2.1 bouyer if (ifp->if_flags & IFF_BROADCAST)
1852 1.2.2.1 bouyer sc->sc_rfcr |= RFCR_AAB;
1853 1.2.2.1 bouyer if (ifp->if_flags & IFF_PROMISC) {
1854 1.2.2.1 bouyer sc->sc_rfcr |= RFCR_AAP;
1855 1.2.2.1 bouyer goto allmulti;
1856 1.2.2.1 bouyer }
1857 1.2.2.1 bouyer
1858 1.2.2.1 bouyer /*
1859 1.2.2.1 bouyer * Set up the multicast address filter by passing all multicast
1860 1.2.2.1 bouyer * addresses through a CRC generator, and then using the high-order
1861 1.2.2.1 bouyer * 9 bits as an index into the 512 bit multicast hash table. The
1862 1.2.2.1 bouyer * high-order bits select the slot, while the rest of the bits
1863 1.2.2.1 bouyer * select the bit within the slot. Note that only the low 16-bits
1864 1.2.2.1 bouyer * of each filter word are used, and there are 64 filter words.
1865 1.2.2.1 bouyer */
1866 1.2.2.1 bouyer
1867 1.2.2.1 bouyer memset(mchash, 0, sizeof(mchash));
1868 1.2.2.1 bouyer
1869 1.2.2.1 bouyer ETHER_FIRST_MULTI(step, ec, enm);
1870 1.2.2.1 bouyer while (enm != NULL) {
1871 1.2.2.1 bouyer if (memcmp(enm->enm_addrlo, enm->enm_addrhi, ETHER_ADDR_LEN)) {
1872 1.2.2.1 bouyer /*
1873 1.2.2.1 bouyer * We must listen to a range of multicast addresses.
1874 1.2.2.1 bouyer * For now, just accept all multicasts, rather than
1875 1.2.2.1 bouyer * trying to set only those filter bits needed to match
1876 1.2.2.1 bouyer * the range. (At this time, the only use of address
1877 1.2.2.1 bouyer * ranges is for IP multicast routing, for which the
1878 1.2.2.1 bouyer * range is big enough to require all bits set.)
1879 1.2.2.1 bouyer */
1880 1.2.2.1 bouyer goto allmulti;
1881 1.2.2.1 bouyer }
1882 1.2.2.1 bouyer
1883 1.2.2.1 bouyer crc = ether_crc32_le(enm->enm_addrlo, ETHER_ADDR_LEN);
1884 1.2.2.1 bouyer
1885 1.2.2.1 bouyer /* Just want the 9 most significant bits. */
1886 1.2.2.1 bouyer crc >>= 23;
1887 1.2.2.1 bouyer
1888 1.2.2.1 bouyer /* Set the corresponding bit in the hash table. */
1889 1.2.2.1 bouyer mchash[crc >> 5] |= 1 << (crc & 0x1f);
1890 1.2.2.1 bouyer
1891 1.2.2.1 bouyer ETHER_NEXT_MULTI(step, enm);
1892 1.2.2.1 bouyer }
1893 1.2.2.1 bouyer
1894 1.2.2.1 bouyer ifp->if_flags |= ~IFF_ALLMULTI;
1895 1.2.2.1 bouyer sc->sc_rfcr |= RFCR_MHEN;
1896 1.2.2.1 bouyer goto setit;
1897 1.2.2.1 bouyer
1898 1.2.2.1 bouyer allmulti:
1899 1.2.2.1 bouyer ifp->if_flags |= IFF_ALLMULTI;
1900 1.2.2.1 bouyer sc->sc_rfcr |= RFCR_AAM;
1901 1.2.2.1 bouyer
1902 1.2.2.1 bouyer setit:
1903 1.2.2.1 bouyer #define FILTER_EMIT(addr, data) \
1904 1.2.2.1 bouyer bus_space_write_4(st, sh, SIP_RFCR, (addr)); \
1905 1.2.2.1 bouyer delay(1); \
1906 1.2.2.1 bouyer bus_space_write_4(st, sh, SIP_RFDR, (data)); \
1907 1.2.2.1 bouyer delay(1);
1908 1.2.2.1 bouyer
1909 1.2.2.1 bouyer /*
1910 1.2.2.1 bouyer * Disable receive filter, and program the node address.
1911 1.2.2.1 bouyer */
1912 1.2.2.1 bouyer cp = LLADDR(ifp->if_sadl);
1913 1.2.2.1 bouyer FILTER_EMIT(RFCR_NS_RFADDR_PMATCH, (cp[1] << 8) | cp[0]);
1914 1.2.2.1 bouyer FILTER_EMIT(RFCR_NS_RFADDR_PMATCH, (cp[3] << 8) | cp[2]);
1915 1.2.2.1 bouyer FILTER_EMIT(RFCR_NS_RFADDR_PMATCH, (cp[5] << 8) | cp[4]);
1916 1.2.2.1 bouyer
1917 1.2.2.1 bouyer if ((ifp->if_flags & IFF_ALLMULTI) == 0) {
1918 1.2.2.1 bouyer /*
1919 1.2.2.1 bouyer * Program the multicast hash table.
1920 1.2.2.1 bouyer */
1921 1.2.2.1 bouyer for (i = 0; i < 16; i++) {
1922 1.2.2.1 bouyer FILTER_EMIT(RFCR_NS_RFADDR_FILTMEM + (i * 2),
1923 1.2.2.1 bouyer mchash[i] & 0xffff);
1924 1.2.2.1 bouyer FILTER_EMIT(RFCR_NS_RFADDR_FILTMEM + (i * 2) + 2,
1925 1.2.2.1 bouyer (mchash[i] >> 16) & 0xffff);
1926 1.2.2.1 bouyer }
1927 1.2.2.1 bouyer }
1928 1.2.2.1 bouyer #undef FILTER_EMIT
1929 1.2.2.1 bouyer
1930 1.2.2.1 bouyer /*
1931 1.2.2.1 bouyer * Re-enable the receiver filter.
1932 1.2.2.1 bouyer */
1933 1.2.2.1 bouyer bus_space_write_4(st, sh, SIP_RFCR, sc->sc_rfcr);
1934 1.2.2.1 bouyer }
1935 1.2.2.1 bouyer
1936 1.2.2.1 bouyer /*
1937 1.2.2.1 bouyer * sip_sis900_mii_readreg: [mii interface function]
1938 1.1 thorpej *
1939 1.1 thorpej * Read a PHY register on the MII.
1940 1.1 thorpej */
1941 1.1 thorpej int
1942 1.2.2.1 bouyer sip_sis900_mii_readreg(self, phy, reg)
1943 1.1 thorpej struct device *self;
1944 1.1 thorpej int phy, reg;
1945 1.1 thorpej {
1946 1.1 thorpej struct sip_softc *sc = (struct sip_softc *) self;
1947 1.1 thorpej u_int32_t enphy;
1948 1.1 thorpej
1949 1.1 thorpej /*
1950 1.1 thorpej * The SiS 900 has only an internal PHY on the MII. Only allow
1951 1.1 thorpej * MII address 0.
1952 1.1 thorpej */
1953 1.2.2.1 bouyer if (sc->sc_model->sip_product == PCI_PRODUCT_SIS_900 && phy != 0)
1954 1.1 thorpej return (0);
1955 1.1 thorpej
1956 1.1 thorpej bus_space_write_4(sc->sc_st, sc->sc_sh, SIP_ENPHY,
1957 1.2.2.1 bouyer (phy << ENPHY_PHYADDR_SHIFT) | (reg << ENPHY_REGADDR_SHIFT) |
1958 1.2.2.1 bouyer ENPHY_RWCMD | ENPHY_ACCESS);
1959 1.1 thorpej do {
1960 1.1 thorpej enphy = bus_space_read_4(sc->sc_st, sc->sc_sh, SIP_ENPHY);
1961 1.1 thorpej } while (enphy & ENPHY_ACCESS);
1962 1.1 thorpej return ((enphy & ENPHY_PHYDATA) >> ENPHY_DATA_SHIFT);
1963 1.1 thorpej }
1964 1.1 thorpej
1965 1.1 thorpej /*
1966 1.2.2.1 bouyer * sip_sis900_mii_writereg: [mii interface function]
1967 1.1 thorpej *
1968 1.1 thorpej * Write a PHY register on the MII.
1969 1.1 thorpej */
1970 1.1 thorpej void
1971 1.2.2.1 bouyer sip_sis900_mii_writereg(self, phy, reg, val)
1972 1.1 thorpej struct device *self;
1973 1.1 thorpej int phy, reg, val;
1974 1.1 thorpej {
1975 1.1 thorpej struct sip_softc *sc = (struct sip_softc *) self;
1976 1.1 thorpej u_int32_t enphy;
1977 1.1 thorpej
1978 1.1 thorpej /*
1979 1.1 thorpej * The SiS 900 has only an internal PHY on the MII. Only allow
1980 1.1 thorpej * MII address 0.
1981 1.1 thorpej */
1982 1.2.2.1 bouyer if (sc->sc_model->sip_product == PCI_PRODUCT_SIS_900 && phy != 0)
1983 1.1 thorpej return;
1984 1.1 thorpej
1985 1.1 thorpej bus_space_write_4(sc->sc_st, sc->sc_sh, SIP_ENPHY,
1986 1.2.2.1 bouyer (val << ENPHY_DATA_SHIFT) | (phy << ENPHY_PHYADDR_SHIFT) |
1987 1.2.2.1 bouyer (reg << ENPHY_REGADDR_SHIFT) | ENPHY_ACCESS);
1988 1.1 thorpej do {
1989 1.1 thorpej enphy = bus_space_read_4(sc->sc_st, sc->sc_sh, SIP_ENPHY);
1990 1.1 thorpej } while (enphy & ENPHY_ACCESS);
1991 1.1 thorpej }
1992 1.1 thorpej
1993 1.1 thorpej /*
1994 1.2.2.1 bouyer * sip_sis900_mii_statchg: [mii interface function]
1995 1.1 thorpej *
1996 1.1 thorpej * Callback from MII layer when media changes.
1997 1.1 thorpej */
1998 1.1 thorpej void
1999 1.2.2.1 bouyer sip_sis900_mii_statchg(self)
2000 1.1 thorpej struct device *self;
2001 1.1 thorpej {
2002 1.1 thorpej struct sip_softc *sc = (struct sip_softc *) self;
2003 1.1 thorpej u_int32_t flowctl;
2004 1.1 thorpej
2005 1.1 thorpej /*
2006 1.1 thorpej * Update TXCFG for full-duplex operation.
2007 1.1 thorpej */
2008 1.1 thorpej if ((sc->sc_mii.mii_media_active & IFM_FDX) != 0)
2009 1.1 thorpej sc->sc_txcfg |= (TXCFG_CSI | TXCFG_HBI);
2010 1.1 thorpej else
2011 1.1 thorpej sc->sc_txcfg &= ~(TXCFG_CSI | TXCFG_HBI);
2012 1.1 thorpej
2013 1.1 thorpej /*
2014 1.1 thorpej * Update RXCFG for full-duplex or loopback.
2015 1.1 thorpej */
2016 1.1 thorpej if ((sc->sc_mii.mii_media_active & IFM_FDX) != 0 ||
2017 1.1 thorpej IFM_SUBTYPE(sc->sc_mii.mii_media_active) == IFM_LOOP)
2018 1.1 thorpej sc->sc_rxcfg |= RXCFG_ATX;
2019 1.1 thorpej else
2020 1.1 thorpej sc->sc_rxcfg &= ~RXCFG_ATX;
2021 1.1 thorpej
2022 1.1 thorpej /*
2023 1.1 thorpej * Update IMR for use of 802.3x flow control.
2024 1.1 thorpej */
2025 1.1 thorpej if ((sc->sc_mii.mii_media_active & IFM_FLOW) != 0) {
2026 1.1 thorpej sc->sc_imr |= (ISR_PAUSE_END|ISR_PAUSE_ST);
2027 1.1 thorpej flowctl = FLOWCTL_FLOWEN;
2028 1.1 thorpej } else {
2029 1.1 thorpej sc->sc_imr &= ~(ISR_PAUSE_END|ISR_PAUSE_ST);
2030 1.1 thorpej flowctl = 0;
2031 1.1 thorpej }
2032 1.1 thorpej
2033 1.1 thorpej bus_space_write_4(sc->sc_st, sc->sc_sh, SIP_TXCFG, sc->sc_txcfg);
2034 1.1 thorpej bus_space_write_4(sc->sc_st, sc->sc_sh, SIP_RXCFG, sc->sc_rxcfg);
2035 1.1 thorpej bus_space_write_4(sc->sc_st, sc->sc_sh, SIP_IMR, sc->sc_imr);
2036 1.1 thorpej bus_space_write_4(sc->sc_st, sc->sc_sh, SIP_FLOWCTL, flowctl);
2037 1.2.2.1 bouyer }
2038 1.1 thorpej
2039 1.2.2.1 bouyer /*
2040 1.2.2.1 bouyer * sip_dp83815_mii_readreg: [mii interface function]
2041 1.2.2.1 bouyer *
2042 1.2.2.1 bouyer * Read a PHY register on the MII.
2043 1.2.2.1 bouyer */
2044 1.2.2.1 bouyer int
2045 1.2.2.1 bouyer sip_dp83815_mii_readreg(self, phy, reg)
2046 1.2.2.1 bouyer struct device *self;
2047 1.2.2.1 bouyer int phy, reg;
2048 1.2.2.1 bouyer {
2049 1.2.2.1 bouyer struct sip_softc *sc = (struct sip_softc *) self;
2050 1.2.2.1 bouyer u_int32_t val;
2051 1.2.2.1 bouyer
2052 1.2.2.1 bouyer /*
2053 1.2.2.1 bouyer * The DP83815 only has an internal PHY. Only allow
2054 1.2.2.1 bouyer * MII address 0.
2055 1.2.2.1 bouyer */
2056 1.2.2.1 bouyer if (phy != 0)
2057 1.2.2.1 bouyer return (0);
2058 1.2.2.1 bouyer
2059 1.2.2.1 bouyer /*
2060 1.2.2.1 bouyer * Apparently, after a reset, the DP83815 can take a while
2061 1.2.2.1 bouyer * to respond. During this recovery period, the BMSR returns
2062 1.2.2.1 bouyer * a value of 0. Catch this -- it's not supposed to happen
2063 1.2.2.1 bouyer * (the BMSR has some hardcoded-to-1 bits), and wait for the
2064 1.2.2.1 bouyer * PHY to come back to life.
2065 1.2.2.1 bouyer *
2066 1.2.2.1 bouyer * This works out because the BMSR is the first register
2067 1.2.2.1 bouyer * read during the PHY probe process.
2068 1.2.2.1 bouyer */
2069 1.2.2.1 bouyer do {
2070 1.2.2.1 bouyer val = bus_space_read_4(sc->sc_st, sc->sc_sh, SIP_NS_PHY(reg));
2071 1.2.2.1 bouyer } while (reg == MII_BMSR && val == 0);
2072 1.2.2.1 bouyer
2073 1.2.2.1 bouyer return (val & 0xffff);
2074 1.2.2.1 bouyer }
2075 1.2.2.1 bouyer
2076 1.2.2.1 bouyer /*
2077 1.2.2.1 bouyer * sip_dp83815_mii_writereg: [mii interface function]
2078 1.2.2.1 bouyer *
2079 1.2.2.1 bouyer * Write a PHY register to the MII.
2080 1.2.2.1 bouyer */
2081 1.2.2.1 bouyer void
2082 1.2.2.1 bouyer sip_dp83815_mii_writereg(self, phy, reg, val)
2083 1.2.2.1 bouyer struct device *self;
2084 1.2.2.1 bouyer int phy, reg, val;
2085 1.2.2.1 bouyer {
2086 1.2.2.1 bouyer struct sip_softc *sc = (struct sip_softc *) self;
2087 1.2.2.1 bouyer
2088 1.2.2.1 bouyer /*
2089 1.2.2.1 bouyer * The DP83815 only has an internal PHY. Only allow
2090 1.2.2.1 bouyer * MII address 0.
2091 1.2.2.1 bouyer */
2092 1.2.2.1 bouyer if (phy != 0)
2093 1.2.2.1 bouyer return;
2094 1.2.2.1 bouyer
2095 1.2.2.1 bouyer bus_space_write_4(sc->sc_st, sc->sc_sh, SIP_NS_PHY(reg), val);
2096 1.2.2.1 bouyer }
2097 1.2.2.1 bouyer
2098 1.2.2.1 bouyer /*
2099 1.2.2.1 bouyer * sip_dp83815_mii_statchg: [mii interface function]
2100 1.2.2.1 bouyer *
2101 1.2.2.1 bouyer * Callback from MII layer when media changes.
2102 1.2.2.1 bouyer */
2103 1.2.2.1 bouyer void
2104 1.2.2.1 bouyer sip_dp83815_mii_statchg(self)
2105 1.2.2.1 bouyer struct device *self;
2106 1.2.2.1 bouyer {
2107 1.2.2.1 bouyer struct sip_softc *sc = (struct sip_softc *) self;
2108 1.2.2.1 bouyer
2109 1.2.2.1 bouyer /*
2110 1.2.2.1 bouyer * Update TXCFG for full-duplex operation.
2111 1.2.2.1 bouyer */
2112 1.2.2.1 bouyer if ((sc->sc_mii.mii_media_active & IFM_FDX) != 0)
2113 1.2.2.1 bouyer sc->sc_txcfg |= (TXCFG_CSI | TXCFG_HBI);
2114 1.2.2.1 bouyer else
2115 1.2.2.1 bouyer sc->sc_txcfg &= ~(TXCFG_CSI | TXCFG_HBI);
2116 1.2.2.1 bouyer
2117 1.2.2.1 bouyer /*
2118 1.2.2.1 bouyer * Update RXCFG for full-duplex or loopback.
2119 1.2.2.1 bouyer */
2120 1.2.2.1 bouyer if ((sc->sc_mii.mii_media_active & IFM_FDX) != 0 ||
2121 1.2.2.1 bouyer IFM_SUBTYPE(sc->sc_mii.mii_media_active) == IFM_LOOP)
2122 1.2.2.1 bouyer sc->sc_rxcfg |= RXCFG_ATX;
2123 1.2.2.1 bouyer else
2124 1.2.2.1 bouyer sc->sc_rxcfg &= ~RXCFG_ATX;
2125 1.2.2.1 bouyer
2126 1.2.2.1 bouyer /*
2127 1.2.2.1 bouyer * XXX 802.3x flow control.
2128 1.2.2.1 bouyer */
2129 1.2.2.1 bouyer
2130 1.2.2.1 bouyer bus_space_write_4(sc->sc_st, sc->sc_sh, SIP_TXCFG, sc->sc_txcfg);
2131 1.2.2.1 bouyer bus_space_write_4(sc->sc_st, sc->sc_sh, SIP_RXCFG, sc->sc_rxcfg);
2132 1.1 thorpej }
2133 1.1 thorpej
2134 1.1 thorpej /*
2135 1.1 thorpej * sip_mediastatus: [ifmedia interface function]
2136 1.1 thorpej *
2137 1.1 thorpej * Get the current interface media status.
2138 1.1 thorpej */
2139 1.1 thorpej void
2140 1.1 thorpej sip_mediastatus(ifp, ifmr)
2141 1.1 thorpej struct ifnet *ifp;
2142 1.1 thorpej struct ifmediareq *ifmr;
2143 1.1 thorpej {
2144 1.1 thorpej struct sip_softc *sc = ifp->if_softc;
2145 1.1 thorpej
2146 1.1 thorpej mii_pollstat(&sc->sc_mii);
2147 1.1 thorpej ifmr->ifm_status = sc->sc_mii.mii_media_status;
2148 1.1 thorpej ifmr->ifm_active = sc->sc_mii.mii_media_active;
2149 1.1 thorpej }
2150 1.1 thorpej
2151 1.1 thorpej /*
2152 1.1 thorpej * sip_mediachange: [ifmedia interface function]
2153 1.1 thorpej *
2154 1.1 thorpej * Set hardware to newly-selected media.
2155 1.1 thorpej */
2156 1.1 thorpej int
2157 1.1 thorpej sip_mediachange(ifp)
2158 1.1 thorpej struct ifnet *ifp;
2159 1.1 thorpej {
2160 1.1 thorpej struct sip_softc *sc = ifp->if_softc;
2161 1.1 thorpej
2162 1.1 thorpej if (ifp->if_flags & IFF_UP)
2163 1.1 thorpej mii_mediachg(&sc->sc_mii);
2164 1.1 thorpej return (0);
2165 1.1 thorpej }
2166