1098ca2bdSWarner Losh /*-
2df57947fSPedro F. Giffuni * SPDX-License-Identifier: BSD-4-Clause
3df57947fSPedro F. Giffuni *
4c678bc4fSBill Paul * Copyright (c) 2001 Wind River Systems
5c678bc4fSBill Paul * Copyright (c) 1997, 1998, 1999, 2000, 2001
6c678bc4fSBill Paul * Bill Paul <william.paul@windriver.com>. All rights reserved.
7c678bc4fSBill Paul *
8c678bc4fSBill Paul * Redistribution and use in source and binary forms, with or without
9c678bc4fSBill Paul * modification, are permitted provided that the following conditions
10c678bc4fSBill Paul * are met:
11c678bc4fSBill Paul * 1. Redistributions of source code must retain the above copyright
12c678bc4fSBill Paul * notice, this list of conditions and the following disclaimer.
13c678bc4fSBill Paul * 2. Redistributions in binary form must reproduce the above copyright
14c678bc4fSBill Paul * notice, this list of conditions and the following disclaimer in the
15c678bc4fSBill Paul * documentation and/or other materials provided with the distribution.
16c678bc4fSBill Paul * 3. All advertising materials mentioning features or use of this software
17c678bc4fSBill Paul * must display the following acknowledgement:
18c678bc4fSBill Paul * This product includes software developed by Bill Paul.
19c678bc4fSBill Paul * 4. Neither the name of the author nor the names of any co-contributors
20c678bc4fSBill Paul * may be used to endorse or promote products derived from this software
21c678bc4fSBill Paul * without specific prior written permission.
22c678bc4fSBill Paul *
23c678bc4fSBill Paul * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
24c678bc4fSBill Paul * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25c678bc4fSBill Paul * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26c678bc4fSBill Paul * ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
27c678bc4fSBill Paul * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28c678bc4fSBill Paul * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29c678bc4fSBill Paul * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30c678bc4fSBill Paul * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31c678bc4fSBill Paul * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32c678bc4fSBill Paul * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
33c678bc4fSBill Paul * THE POSSIBILITY OF SUCH DAMAGE.
34c678bc4fSBill Paul */
35c678bc4fSBill Paul
36aad970f1SDavid E. O'Brien #include <sys/cdefs.h>
37c678bc4fSBill Paul /*
38c678bc4fSBill Paul * Level 1 LXT1001 gigabit ethernet driver for FreeBSD. Public
39c678bc4fSBill Paul * documentation not available, but ask me nicely.
40c678bc4fSBill Paul *
41c678bc4fSBill Paul * The Level 1 chip is used on some D-Link, SMC and Addtron NICs.
42c678bc4fSBill Paul * It's a 64-bit PCI part that supports TCP/IP checksum offload,
43c678bc4fSBill Paul * VLAN tagging/insertion, GMII and TBI (1000baseX) ports. There
44c678bc4fSBill Paul * are three supported methods for data transfer between host and
45c678bc4fSBill Paul * NIC: programmed I/O, traditional scatter/gather DMA and Packet
46c678bc4fSBill Paul * Propulsion Technology (tm) DMA. The latter mechanism is a form
47c678bc4fSBill Paul * of double buffer DMA where the packet data is copied to a
48c678bc4fSBill Paul * pre-allocated DMA buffer who's physical address has been loaded
49c678bc4fSBill Paul * into a table at device initialization time. The rationale is that
50c678bc4fSBill Paul * the virtual to physical address translation needed for normal
51c678bc4fSBill Paul * scatter/gather DMA is more expensive than the data copy needed
52c678bc4fSBill Paul * for double buffering. This may be true in Windows NT and the like,
53c678bc4fSBill Paul * but it isn't true for us, at least on the x86 arch. This driver
54c678bc4fSBill Paul * uses the scatter/gather I/O method for both TX and RX.
55c678bc4fSBill Paul *
56c678bc4fSBill Paul * The LXT1001 only supports TCP/IP checksum offload on receive.
57c678bc4fSBill Paul * Also, the VLAN tagging is done using a 16-entry table which allows
58c678bc4fSBill Paul * the chip to perform hardware filtering based on VLAN tags. Sadly,
59c678bc4fSBill Paul * our vlan support doesn't currently play well with this kind of
60c678bc4fSBill Paul * hardware support.
61c678bc4fSBill Paul *
62c678bc4fSBill Paul * Special thanks to:
63c678bc4fSBill Paul * - Jeff James at Intel, for arranging to have the LXT1001 manual
64c678bc4fSBill Paul * released (at long last)
65c678bc4fSBill Paul * - Beny Chen at D-Link, for actually sending it to me
66c678bc4fSBill Paul * - Brad Short and Keith Alexis at SMC, for sending me sample
67c678bc4fSBill Paul * SMC9462SX and SMC9462TX adapters for testing
68c678bc4fSBill Paul * - Paul Saab at Y!, for not killing me (though it remains to be seen
69c678bc4fSBill Paul * if in fact he did me much of a favor)
70c678bc4fSBill Paul */
71c678bc4fSBill Paul
72c678bc4fSBill Paul #include <sys/param.h>
73c678bc4fSBill Paul #include <sys/systm.h>
74c678bc4fSBill Paul #include <sys/sockio.h>
75c678bc4fSBill Paul #include <sys/mbuf.h>
76c678bc4fSBill Paul #include <sys/malloc.h>
77c678bc4fSBill Paul #include <sys/kernel.h>
78fe12f24bSPoul-Henning Kamp #include <sys/module.h>
79c678bc4fSBill Paul #include <sys/socket.h>
80c678bc4fSBill Paul
81c678bc4fSBill Paul #include <net/if.h>
8276039bc8SGleb Smirnoff #include <net/if_var.h>
83c678bc4fSBill Paul #include <net/if_arp.h>
84c678bc4fSBill Paul #include <net/ethernet.h>
85c678bc4fSBill Paul #include <net/if_dl.h>
86c678bc4fSBill Paul #include <net/if_media.h>
87fc74a9f9SBrooks Davis #include <net/if_types.h>
88c678bc4fSBill Paul
89c678bc4fSBill Paul #include <net/bpf.h>
90c678bc4fSBill Paul
91c678bc4fSBill Paul #include <vm/vm.h> /* for vtophys */
92c678bc4fSBill Paul #include <vm/pmap.h> /* for vtophys */
93c678bc4fSBill Paul #include <machine/bus.h>
94c678bc4fSBill Paul #include <machine/resource.h>
95c678bc4fSBill Paul #include <sys/bus.h>
96c678bc4fSBill Paul #include <sys/rman.h>
97c678bc4fSBill Paul
98c678bc4fSBill Paul #include <dev/mii/mii.h>
99c678bc4fSBill Paul #include <dev/mii/miivar.h>
100c678bc4fSBill Paul
101d2c5276dSWarner Losh #include <dev/pci/pcireg.h>
102d2c5276dSWarner Losh #include <dev/pci/pcivar.h>
103c678bc4fSBill Paul
104c678bc4fSBill Paul #define LGE_USEIOSPACE
105c678bc4fSBill Paul
106c678bc4fSBill Paul #include <dev/lge/if_lgereg.h>
107c678bc4fSBill Paul
1087b279558SWarner Losh /* "device miibus" required. See GENERIC if you get errors here. */
109c678bc4fSBill Paul #include "miibus_if.h"
110c678bc4fSBill Paul
111c678bc4fSBill Paul /*
112c678bc4fSBill Paul * Various supported device vendors/types and their names.
113c678bc4fSBill Paul */
11429658c96SDimitry Andric static const struct lge_type lge_devs[] = {
115c678bc4fSBill Paul { LGE_VENDORID, LGE_DEVICEID, "Level 1 Gigabit Ethernet" },
116c678bc4fSBill Paul { 0, 0, NULL }
117c678bc4fSBill Paul };
118c678bc4fSBill Paul
119e51a25f8SAlfred Perlstein static int lge_probe(device_t);
120e51a25f8SAlfred Perlstein static int lge_attach(device_t);
121e51a25f8SAlfred Perlstein static int lge_detach(device_t);
122c678bc4fSBill Paul
123e51a25f8SAlfred Perlstein static int lge_alloc_jumbo_mem(struct lge_softc *);
124e51a25f8SAlfred Perlstein static void lge_free_jumbo_mem(struct lge_softc *);
125e51a25f8SAlfred Perlstein static void *lge_jalloc(struct lge_softc *);
126e8fd18f3SGleb Smirnoff static void lge_jfree(struct mbuf *);
127c678bc4fSBill Paul
1289bee8811SAlfred Perlstein static int lge_newbuf(struct lge_softc *, struct lge_rx_desc *, struct mbuf *);
1299bee8811SAlfred Perlstein static int lge_encap(struct lge_softc *, struct mbuf *, u_int32_t *);
130e51a25f8SAlfred Perlstein static void lge_rxeof(struct lge_softc *, int);
131e51a25f8SAlfred Perlstein static void lge_rxeoc(struct lge_softc *);
132e51a25f8SAlfred Perlstein static void lge_txeof(struct lge_softc *);
133e51a25f8SAlfred Perlstein static void lge_intr(void *);
134e51a25f8SAlfred Perlstein static void lge_tick(void *);
13508e67568SJustin Hibbits static void lge_start(if_t);
13608e67568SJustin Hibbits static void lge_start_locked(if_t);
13708e67568SJustin Hibbits static int lge_ioctl(if_t, u_long, caddr_t);
138e51a25f8SAlfred Perlstein static void lge_init(void *);
139b05223a3SJohn Baldwin static void lge_init_locked(struct lge_softc *);
140e51a25f8SAlfred Perlstein static void lge_stop(struct lge_softc *);
141e55bc015SJohn Baldwin static void lge_watchdog(struct lge_softc *);
1426a087a87SPyun YongHyeon static int lge_shutdown(device_t);
14308e67568SJustin Hibbits static int lge_ifmedia_upd(if_t);
14408e67568SJustin Hibbits static void lge_ifmedia_upd_locked(if_t);
14508e67568SJustin Hibbits static void lge_ifmedia_sts(if_t, struct ifmediareq *);
146c678bc4fSBill Paul
147e51a25f8SAlfred Perlstein static void lge_eeprom_getword(struct lge_softc *, int, u_int16_t *);
148e51a25f8SAlfred Perlstein static void lge_read_eeprom(struct lge_softc *, caddr_t, int, int, int);
149c678bc4fSBill Paul
150e51a25f8SAlfred Perlstein static int lge_miibus_readreg(device_t, int, int);
151e51a25f8SAlfred Perlstein static int lge_miibus_writereg(device_t, int, int, int);
152e51a25f8SAlfred Perlstein static void lge_miibus_statchg(device_t);
153c678bc4fSBill Paul
154e51a25f8SAlfred Perlstein static void lge_setmulti(struct lge_softc *);
155e51a25f8SAlfred Perlstein static void lge_reset(struct lge_softc *);
156e51a25f8SAlfred Perlstein static int lge_list_rx_init(struct lge_softc *);
157e51a25f8SAlfred Perlstein static int lge_list_tx_init(struct lge_softc *);
158c678bc4fSBill Paul
159c678bc4fSBill Paul #ifdef LGE_USEIOSPACE
160c678bc4fSBill Paul #define LGE_RES SYS_RES_IOPORT
161c678bc4fSBill Paul #define LGE_RID LGE_PCI_LOIO
162c678bc4fSBill Paul #else
163c678bc4fSBill Paul #define LGE_RES SYS_RES_MEMORY
164c678bc4fSBill Paul #define LGE_RID LGE_PCI_LOMEM
165c678bc4fSBill Paul #endif
166c678bc4fSBill Paul
167c678bc4fSBill Paul static device_method_t lge_methods[] = {
168c678bc4fSBill Paul /* Device interface */
169c678bc4fSBill Paul DEVMETHOD(device_probe, lge_probe),
170c678bc4fSBill Paul DEVMETHOD(device_attach, lge_attach),
171c678bc4fSBill Paul DEVMETHOD(device_detach, lge_detach),
172c678bc4fSBill Paul DEVMETHOD(device_shutdown, lge_shutdown),
173c678bc4fSBill Paul
174c678bc4fSBill Paul /* MII interface */
175c678bc4fSBill Paul DEVMETHOD(miibus_readreg, lge_miibus_readreg),
176c678bc4fSBill Paul DEVMETHOD(miibus_writereg, lge_miibus_writereg),
177c678bc4fSBill Paul DEVMETHOD(miibus_statchg, lge_miibus_statchg),
178c678bc4fSBill Paul
1794b7ec270SMarius Strobl DEVMETHOD_END
180c678bc4fSBill Paul };
181c678bc4fSBill Paul
182c678bc4fSBill Paul static driver_t lge_driver = {
183c678bc4fSBill Paul "lge",
184c678bc4fSBill Paul lge_methods,
185c678bc4fSBill Paul sizeof(struct lge_softc)
186c678bc4fSBill Paul };
187c678bc4fSBill Paul
1889a648e1eSJohn Baldwin DRIVER_MODULE(lge, pci, lge_driver, 0, 0);
1893e38757dSJohn Baldwin DRIVER_MODULE(miibus, lge, miibus_driver, 0, 0);
190f246e4a1SMatthew N. Dodd MODULE_DEPEND(lge, pci, 1, 1, 1);
191f246e4a1SMatthew N. Dodd MODULE_DEPEND(lge, ether, 1, 1, 1);
192f246e4a1SMatthew N. Dodd MODULE_DEPEND(lge, miibus, 1, 1, 1);
193c678bc4fSBill Paul
194c678bc4fSBill Paul #define LGE_SETBIT(sc, reg, x) \
195c678bc4fSBill Paul CSR_WRITE_4(sc, reg, \
196c678bc4fSBill Paul CSR_READ_4(sc, reg) | (x))
197c678bc4fSBill Paul
198c678bc4fSBill Paul #define LGE_CLRBIT(sc, reg, x) \
199c678bc4fSBill Paul CSR_WRITE_4(sc, reg, \
200c678bc4fSBill Paul CSR_READ_4(sc, reg) & ~(x))
201c678bc4fSBill Paul
202c678bc4fSBill Paul #define SIO_SET(x) \
203c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MEAR, CSR_READ_4(sc, LGE_MEAR) | x)
204c678bc4fSBill Paul
205c678bc4fSBill Paul #define SIO_CLR(x) \
206c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MEAR, CSR_READ_4(sc, LGE_MEAR) & ~x)
207c678bc4fSBill Paul
208c678bc4fSBill Paul /*
209c678bc4fSBill Paul * Read a word of data stored in the EEPROM at address 'addr.'
210c678bc4fSBill Paul */
2119bee8811SAlfred Perlstein static void
lge_eeprom_getword(struct lge_softc * sc,int addr,u_int16_t * dest)21216d10ee0SMateusz Guzik lge_eeprom_getword(struct lge_softc *sc, int addr, u_int16_t *dest)
213c678bc4fSBill Paul {
2143e85b721SEd Maste int i;
215c678bc4fSBill Paul u_int32_t val;
216c678bc4fSBill Paul
217c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_EECTL, LGE_EECTL_CMD_READ|
218c678bc4fSBill Paul LGE_EECTL_SINGLEACCESS|((addr >> 1) << 8));
219c678bc4fSBill Paul
220c678bc4fSBill Paul for (i = 0; i < LGE_TIMEOUT; i++)
221c678bc4fSBill Paul if (!(CSR_READ_4(sc, LGE_EECTL) & LGE_EECTL_CMD_READ))
222c678bc4fSBill Paul break;
223c678bc4fSBill Paul
224c678bc4fSBill Paul if (i == LGE_TIMEOUT) {
2256b9f5c94SGleb Smirnoff device_printf(sc->lge_dev, "EEPROM read timed out\n");
226c678bc4fSBill Paul return;
227c678bc4fSBill Paul }
228c678bc4fSBill Paul
229c678bc4fSBill Paul val = CSR_READ_4(sc, LGE_EEDATA);
230c678bc4fSBill Paul
231c678bc4fSBill Paul if (addr & 1)
232c678bc4fSBill Paul *dest = (val >> 16) & 0xFFFF;
233c678bc4fSBill Paul else
234c678bc4fSBill Paul *dest = val & 0xFFFF;
235c678bc4fSBill Paul
236c678bc4fSBill Paul return;
237c678bc4fSBill Paul }
238c678bc4fSBill Paul
239c678bc4fSBill Paul /*
240c678bc4fSBill Paul * Read a sequence of words from the EEPROM.
241c678bc4fSBill Paul */
2429bee8811SAlfred Perlstein static void
lge_read_eeprom(struct lge_softc * sc,caddr_t dest,int off,int cnt,int swap)24316d10ee0SMateusz Guzik lge_read_eeprom(struct lge_softc *sc, caddr_t dest, int off, int cnt, int swap)
244c678bc4fSBill Paul {
245c678bc4fSBill Paul int i;
246c678bc4fSBill Paul u_int16_t word = 0, *ptr;
247c678bc4fSBill Paul
248c678bc4fSBill Paul for (i = 0; i < cnt; i++) {
249c678bc4fSBill Paul lge_eeprom_getword(sc, off + i, &word);
250c678bc4fSBill Paul ptr = (u_int16_t *)(dest + (i * 2));
251c678bc4fSBill Paul if (swap)
252c678bc4fSBill Paul *ptr = ntohs(word);
253c678bc4fSBill Paul else
254c678bc4fSBill Paul *ptr = word;
255c678bc4fSBill Paul }
256c678bc4fSBill Paul
257c678bc4fSBill Paul return;
258c678bc4fSBill Paul }
259c678bc4fSBill Paul
2609bee8811SAlfred Perlstein static int
lge_miibus_readreg(device_t dev,int phy,int reg)26116d10ee0SMateusz Guzik lge_miibus_readreg(device_t dev, int phy, int reg)
262c678bc4fSBill Paul {
263c678bc4fSBill Paul struct lge_softc *sc;
264c678bc4fSBill Paul int i;
265c678bc4fSBill Paul
266c678bc4fSBill Paul sc = device_get_softc(dev);
267c678bc4fSBill Paul
268c678bc4fSBill Paul /*
269c678bc4fSBill Paul * If we have a non-PCS PHY, pretend that the internal
270c678bc4fSBill Paul * autoneg stuff at PHY address 0 isn't there so that
271c678bc4fSBill Paul * the miibus code will find only the GMII PHY.
272c678bc4fSBill Paul */
273c678bc4fSBill Paul if (sc->lge_pcs == 0 && phy == 0)
274c678bc4fSBill Paul return(0);
275c678bc4fSBill Paul
276c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_GMIICTL, (phy << 8) | reg | LGE_GMIICMD_READ);
277c678bc4fSBill Paul
278c678bc4fSBill Paul for (i = 0; i < LGE_TIMEOUT; i++)
279c678bc4fSBill Paul if (!(CSR_READ_4(sc, LGE_GMIICTL) & LGE_GMIICTL_CMDBUSY))
280c678bc4fSBill Paul break;
281c678bc4fSBill Paul
282c678bc4fSBill Paul if (i == LGE_TIMEOUT) {
2836b9f5c94SGleb Smirnoff device_printf(sc->lge_dev, "PHY read timed out\n");
284c678bc4fSBill Paul return(0);
285c678bc4fSBill Paul }
286c678bc4fSBill Paul
287c678bc4fSBill Paul return(CSR_READ_4(sc, LGE_GMIICTL) >> 16);
288c678bc4fSBill Paul }
289c678bc4fSBill Paul
2909bee8811SAlfred Perlstein static int
lge_miibus_writereg(device_t dev,int phy,int reg,int data)29116d10ee0SMateusz Guzik lge_miibus_writereg(device_t dev, int phy, int reg, int data)
292c678bc4fSBill Paul {
293c678bc4fSBill Paul struct lge_softc *sc;
294c678bc4fSBill Paul int i;
295c678bc4fSBill Paul
296c678bc4fSBill Paul sc = device_get_softc(dev);
297c678bc4fSBill Paul
298c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_GMIICTL,
299c678bc4fSBill Paul (data << 16) | (phy << 8) | reg | LGE_GMIICMD_WRITE);
300c678bc4fSBill Paul
301c678bc4fSBill Paul for (i = 0; i < LGE_TIMEOUT; i++)
302c678bc4fSBill Paul if (!(CSR_READ_4(sc, LGE_GMIICTL) & LGE_GMIICTL_CMDBUSY))
303c678bc4fSBill Paul break;
304c678bc4fSBill Paul
305c678bc4fSBill Paul if (i == LGE_TIMEOUT) {
3066b9f5c94SGleb Smirnoff device_printf(sc->lge_dev, "PHY write timed out\n");
307c678bc4fSBill Paul return(0);
308c678bc4fSBill Paul }
309c678bc4fSBill Paul
310c678bc4fSBill Paul return(0);
311c678bc4fSBill Paul }
312c678bc4fSBill Paul
3139bee8811SAlfred Perlstein static void
lge_miibus_statchg(device_t dev)31416d10ee0SMateusz Guzik lge_miibus_statchg(device_t dev)
315c678bc4fSBill Paul {
316c678bc4fSBill Paul struct lge_softc *sc;
317c678bc4fSBill Paul struct mii_data *mii;
318c678bc4fSBill Paul
319c678bc4fSBill Paul sc = device_get_softc(dev);
320c678bc4fSBill Paul mii = device_get_softc(sc->lge_miibus);
321c678bc4fSBill Paul
322c678bc4fSBill Paul LGE_CLRBIT(sc, LGE_GMIIMODE, LGE_GMIIMODE_SPEED);
323c678bc4fSBill Paul switch (IFM_SUBTYPE(mii->mii_media_active)) {
324b418ad5cSPoul-Henning Kamp case IFM_1000_T:
325c678bc4fSBill Paul case IFM_1000_SX:
326c678bc4fSBill Paul LGE_SETBIT(sc, LGE_GMIIMODE, LGE_SPEED_1000);
327c678bc4fSBill Paul break;
328c678bc4fSBill Paul case IFM_100_TX:
329c678bc4fSBill Paul LGE_SETBIT(sc, LGE_GMIIMODE, LGE_SPEED_100);
330c678bc4fSBill Paul break;
331c678bc4fSBill Paul case IFM_10_T:
332c678bc4fSBill Paul LGE_SETBIT(sc, LGE_GMIIMODE, LGE_SPEED_10);
333c678bc4fSBill Paul break;
334c678bc4fSBill Paul default:
335c678bc4fSBill Paul /*
336c678bc4fSBill Paul * Choose something, even if it's wrong. Clearing
337c678bc4fSBill Paul * all the bits will hose autoneg on the internal
338c678bc4fSBill Paul * PHY.
339c678bc4fSBill Paul */
340c678bc4fSBill Paul LGE_SETBIT(sc, LGE_GMIIMODE, LGE_SPEED_1000);
341c678bc4fSBill Paul break;
342c678bc4fSBill Paul }
343c678bc4fSBill Paul
344c678bc4fSBill Paul if ((mii->mii_media_active & IFM_GMASK) == IFM_FDX) {
345c678bc4fSBill Paul LGE_SETBIT(sc, LGE_GMIIMODE, LGE_GMIIMODE_FDX);
346c678bc4fSBill Paul } else {
347c678bc4fSBill Paul LGE_CLRBIT(sc, LGE_GMIIMODE, LGE_GMIIMODE_FDX);
348c678bc4fSBill Paul }
349c678bc4fSBill Paul
350c678bc4fSBill Paul return;
351c678bc4fSBill Paul }
352c678bc4fSBill Paul
353ba583cfeSGleb Smirnoff static u_int
lge_hash_maddr(void * arg,struct sockaddr_dl * sdl,u_int count)354ba583cfeSGleb Smirnoff lge_hash_maddr(void *arg, struct sockaddr_dl *sdl, u_int count)
355ba583cfeSGleb Smirnoff {
356ba583cfeSGleb Smirnoff uint32_t h, *hashes = arg;
357ba583cfeSGleb Smirnoff
358ba583cfeSGleb Smirnoff h = ether_crc32_be(LLADDR(sdl), ETHER_ADDR_LEN) >> 26;
359ba583cfeSGleb Smirnoff if (h < 32)
360ba583cfeSGleb Smirnoff hashes[0] |= (1 << h);
361ba583cfeSGleb Smirnoff else
362ba583cfeSGleb Smirnoff hashes[1] |= (1 << (h - 32));
363ba583cfeSGleb Smirnoff return (1);
364ba583cfeSGleb Smirnoff }
365ba583cfeSGleb Smirnoff
3669bee8811SAlfred Perlstein static void
lge_setmulti(struct lge_softc * sc)36716d10ee0SMateusz Guzik lge_setmulti(struct lge_softc *sc)
368c678bc4fSBill Paul {
36908e67568SJustin Hibbits if_t ifp;
370ba583cfeSGleb Smirnoff uint32_t hashes[2] = { 0, 0 };
371c678bc4fSBill Paul
372fc74a9f9SBrooks Davis ifp = sc->lge_ifp;
373b05223a3SJohn Baldwin LGE_LOCK_ASSERT(sc);
374c678bc4fSBill Paul
375c678bc4fSBill Paul /* Make sure multicast hash table is enabled. */
376c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1, LGE_MODE1_SETRST_CTL1|LGE_MODE1_RX_MCAST);
377c678bc4fSBill Paul
37808e67568SJustin Hibbits if (if_getflags(ifp) & IFF_ALLMULTI || if_getflags(ifp) & IFF_PROMISC) {
379c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MAR0, 0xFFFFFFFF);
380c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MAR1, 0xFFFFFFFF);
381c678bc4fSBill Paul return;
382c678bc4fSBill Paul }
383c678bc4fSBill Paul
384c678bc4fSBill Paul /* first, zot all the existing hash bits */
385c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MAR0, 0);
386c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MAR1, 0);
387c678bc4fSBill Paul
388c678bc4fSBill Paul /* now program new ones */
389ba583cfeSGleb Smirnoff if_foreach_llmaddr(ifp, lge_hash_maddr, hashes);
390c678bc4fSBill Paul
391c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MAR0, hashes[0]);
392c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MAR1, hashes[1]);
393c678bc4fSBill Paul
394c678bc4fSBill Paul return;
395c678bc4fSBill Paul }
396c678bc4fSBill Paul
3979bee8811SAlfred Perlstein static void
lge_reset(struct lge_softc * sc)39816d10ee0SMateusz Guzik lge_reset(struct lge_softc *sc)
399c678bc4fSBill Paul {
4003e85b721SEd Maste int i;
401c678bc4fSBill Paul
402c678bc4fSBill Paul LGE_SETBIT(sc, LGE_MODE1, LGE_MODE1_SETRST_CTL0|LGE_MODE1_SOFTRST);
403c678bc4fSBill Paul
404c678bc4fSBill Paul for (i = 0; i < LGE_TIMEOUT; i++) {
405c678bc4fSBill Paul if (!(CSR_READ_4(sc, LGE_MODE1) & LGE_MODE1_SOFTRST))
406c678bc4fSBill Paul break;
407c678bc4fSBill Paul }
408c678bc4fSBill Paul
409c678bc4fSBill Paul if (i == LGE_TIMEOUT)
4106b9f5c94SGleb Smirnoff device_printf(sc->lge_dev, "reset never completed\n");
411c678bc4fSBill Paul
412c678bc4fSBill Paul /* Wait a little while for the chip to get its brains in order. */
413c678bc4fSBill Paul DELAY(1000);
414c678bc4fSBill Paul
415c678bc4fSBill Paul return;
416c678bc4fSBill Paul }
417c678bc4fSBill Paul
418c678bc4fSBill Paul /*
419c678bc4fSBill Paul * Probe for a Level 1 chip. Check the PCI vendor and device
420c678bc4fSBill Paul * IDs against our list and return a device name if we find a match.
421c678bc4fSBill Paul */
4229bee8811SAlfred Perlstein static int
lge_probe(device_t dev)42316d10ee0SMateusz Guzik lge_probe(device_t dev)
424c678bc4fSBill Paul {
4256aa1145cSMarius Strobl const struct lge_type *t;
426c678bc4fSBill Paul
427c678bc4fSBill Paul t = lge_devs;
428c678bc4fSBill Paul
429c678bc4fSBill Paul while(t->lge_name != NULL) {
430c678bc4fSBill Paul if ((pci_get_vendor(dev) == t->lge_vid) &&
431c678bc4fSBill Paul (pci_get_device(dev) == t->lge_did)) {
432c678bc4fSBill Paul device_set_desc(dev, t->lge_name);
433b77e575eSWarner Losh return(BUS_PROBE_DEFAULT);
434c678bc4fSBill Paul }
435c678bc4fSBill Paul t++;
436c678bc4fSBill Paul }
437c678bc4fSBill Paul
438c678bc4fSBill Paul return(ENXIO);
439c678bc4fSBill Paul }
440c678bc4fSBill Paul
441c678bc4fSBill Paul /*
442c678bc4fSBill Paul * Attach the interface. Allocate softc structures, do ifmedia
443c678bc4fSBill Paul * setup and ethernet/BPF attach.
444c678bc4fSBill Paul */
4459bee8811SAlfred Perlstein static int
lge_attach(device_t dev)44616d10ee0SMateusz Guzik lge_attach(device_t dev)
447c678bc4fSBill Paul {
448c678bc4fSBill Paul u_char eaddr[ETHER_ADDR_LEN];
449c678bc4fSBill Paul struct lge_softc *sc;
45008e67568SJustin Hibbits if_t ifp = NULL;
45178de678eSJohn Baldwin int error = 0, rid;
452c678bc4fSBill Paul
453c678bc4fSBill Paul sc = device_get_softc(dev);
4546b9f5c94SGleb Smirnoff sc->lge_dev = dev;
4556b9f5c94SGleb Smirnoff
456b05223a3SJohn Baldwin mtx_init(&sc->lge_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
457b05223a3SJohn Baldwin MTX_DEF);
458b05223a3SJohn Baldwin callout_init_mtx(&sc->lge_stat_callout, &sc->lge_mtx, 0);
45978de678eSJohn Baldwin
460c678bc4fSBill Paul /*
461c678bc4fSBill Paul * Map control/status registers.
462c678bc4fSBill Paul */
463c678bc4fSBill Paul pci_enable_busmaster(dev);
464c678bc4fSBill Paul
465c678bc4fSBill Paul rid = LGE_RID;
4665f96beb9SNate Lawson sc->lge_res = bus_alloc_resource_any(dev, LGE_RES, &rid, RF_ACTIVE);
467c678bc4fSBill Paul
468c678bc4fSBill Paul if (sc->lge_res == NULL) {
46978de678eSJohn Baldwin device_printf(dev, "couldn't map ports/memory\n");
470c678bc4fSBill Paul error = ENXIO;
471c678bc4fSBill Paul goto fail;
472c678bc4fSBill Paul }
473c678bc4fSBill Paul
474c678bc4fSBill Paul sc->lge_btag = rman_get_bustag(sc->lge_res);
475c678bc4fSBill Paul sc->lge_bhandle = rman_get_bushandle(sc->lge_res);
476c678bc4fSBill Paul
477c678bc4fSBill Paul /* Allocate interrupt */
478c678bc4fSBill Paul rid = 0;
4795f96beb9SNate Lawson sc->lge_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
480c678bc4fSBill Paul RF_SHAREABLE | RF_ACTIVE);
481c678bc4fSBill Paul
482c678bc4fSBill Paul if (sc->lge_irq == NULL) {
48378de678eSJohn Baldwin device_printf(dev, "couldn't map interrupt\n");
484c678bc4fSBill Paul error = ENXIO;
485c678bc4fSBill Paul goto fail;
486c678bc4fSBill Paul }
487c678bc4fSBill Paul
488c678bc4fSBill Paul /* Reset the adapter. */
489c678bc4fSBill Paul lge_reset(sc);
490c678bc4fSBill Paul
491c678bc4fSBill Paul /*
492c678bc4fSBill Paul * Get station address from the EEPROM.
493c678bc4fSBill Paul */
494c678bc4fSBill Paul lge_read_eeprom(sc, (caddr_t)&eaddr[0], LGE_EE_NODEADDR_0, 1, 0);
495c678bc4fSBill Paul lge_read_eeprom(sc, (caddr_t)&eaddr[2], LGE_EE_NODEADDR_1, 1, 0);
496c678bc4fSBill Paul lge_read_eeprom(sc, (caddr_t)&eaddr[4], LGE_EE_NODEADDR_2, 1, 0);
497c678bc4fSBill Paul
498c678bc4fSBill Paul sc->lge_ldata = contigmalloc(sizeof(struct lge_list_data), M_DEVBUF,
499b05223a3SJohn Baldwin M_NOWAIT | M_ZERO, 0, 0xffffffff, PAGE_SIZE, 0);
500c678bc4fSBill Paul
501c678bc4fSBill Paul if (sc->lge_ldata == NULL) {
50278de678eSJohn Baldwin device_printf(dev, "no memory for list buffers!\n");
503c678bc4fSBill Paul error = ENXIO;
504c678bc4fSBill Paul goto fail;
505c678bc4fSBill Paul }
506c678bc4fSBill Paul
507c678bc4fSBill Paul /* Try to allocate memory for jumbo buffers. */
508c678bc4fSBill Paul if (lge_alloc_jumbo_mem(sc)) {
50978de678eSJohn Baldwin device_printf(dev, "jumbo buffer allocation failed\n");
510c678bc4fSBill Paul error = ENXIO;
511c678bc4fSBill Paul goto fail;
512c678bc4fSBill Paul }
513c678bc4fSBill Paul
514fc74a9f9SBrooks Davis ifp = sc->lge_ifp = if_alloc(IFT_ETHER);
51508e67568SJustin Hibbits if_setsoftc(ifp, sc);
5169bf40edeSBrooks Davis if_initname(ifp, device_get_name(dev), device_get_unit(dev));
51708e67568SJustin Hibbits if_setflags(ifp, IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST);
51808e67568SJustin Hibbits if_setioctlfn(ifp, lge_ioctl);
51908e67568SJustin Hibbits if_setstartfn(ifp, lge_start);
52008e67568SJustin Hibbits if_setinitfn(ifp, lge_init);
52108e67568SJustin Hibbits if_setsendqlen(ifp, LGE_TX_LIST_CNT - 1);
52208e67568SJustin Hibbits if_setcapabilities(ifp, IFCAP_RXCSUM);
52308e67568SJustin Hibbits if_setcapenable(ifp, if_getcapabilities(ifp));
524c678bc4fSBill Paul
525c678bc4fSBill Paul if (CSR_READ_4(sc, LGE_GMIIMODE) & LGE_GMIIMODE_PCSENH)
526c678bc4fSBill Paul sc->lge_pcs = 1;
527c678bc4fSBill Paul else
528c678bc4fSBill Paul sc->lge_pcs = 0;
529c678bc4fSBill Paul
530c678bc4fSBill Paul /*
531c678bc4fSBill Paul * Do MII setup.
532c678bc4fSBill Paul */
533d6c65d27SMarius Strobl error = mii_attach(dev, &sc->lge_miibus, ifp, lge_ifmedia_upd,
534d6c65d27SMarius Strobl lge_ifmedia_sts, BMSR_DEFCAPMASK, MII_PHY_ANY, MII_OFFSET_ANY, 0);
535d6c65d27SMarius Strobl if (error != 0) {
536d6c65d27SMarius Strobl device_printf(dev, "attaching PHYs failed\n");
537c678bc4fSBill Paul goto fail;
538c678bc4fSBill Paul }
539c678bc4fSBill Paul
540c678bc4fSBill Paul /*
541c678bc4fSBill Paul * Call MI attach routine.
542c678bc4fSBill Paul */
543673d9191SSam Leffler ether_ifattach(ifp, eaddr);
544b05223a3SJohn Baldwin
545b05223a3SJohn Baldwin error = bus_setup_intr(dev, sc->lge_irq, INTR_TYPE_NET | INTR_MPSAFE,
546ef544f63SPaolo Pisati NULL, lge_intr, sc, &sc->lge_intrhand);
547b05223a3SJohn Baldwin
548b05223a3SJohn Baldwin if (error) {
549b05223a3SJohn Baldwin ether_ifdetach(ifp);
550b05223a3SJohn Baldwin device_printf(dev, "couldn't set up irq\n");
551b05223a3SJohn Baldwin goto fail;
552b05223a3SJohn Baldwin }
55378de678eSJohn Baldwin return (0);
554c678bc4fSBill Paul
555c678bc4fSBill Paul fail:
556eeeebe75SPyun YongHyeon lge_free_jumbo_mem(sc);
55778de678eSJohn Baldwin if (sc->lge_ldata)
558*d1bdc282SBjoern A. Zeeb free(sc->lge_ldata, M_DEVBUF);
55978de678eSJohn Baldwin if (ifp)
56078de678eSJohn Baldwin if_free(ifp);
56178de678eSJohn Baldwin if (sc->lge_irq)
56278de678eSJohn Baldwin bus_release_resource(dev, SYS_RES_IRQ, 0, sc->lge_irq);
56378de678eSJohn Baldwin if (sc->lge_res)
56478de678eSJohn Baldwin bus_release_resource(dev, LGE_RES, LGE_RID, sc->lge_res);
565b05223a3SJohn Baldwin mtx_destroy(&sc->lge_mtx);
566c678bc4fSBill Paul return(error);
567c678bc4fSBill Paul }
568c678bc4fSBill Paul
5699bee8811SAlfred Perlstein static int
lge_detach(device_t dev)57016d10ee0SMateusz Guzik lge_detach(device_t dev)
571c678bc4fSBill Paul {
572c678bc4fSBill Paul struct lge_softc *sc;
57308e67568SJustin Hibbits if_t ifp;
574c678bc4fSBill Paul
575c678bc4fSBill Paul sc = device_get_softc(dev);
576fc74a9f9SBrooks Davis ifp = sc->lge_ifp;
577c678bc4fSBill Paul
578b05223a3SJohn Baldwin LGE_LOCK(sc);
579c678bc4fSBill Paul lge_reset(sc);
580c678bc4fSBill Paul lge_stop(sc);
581b05223a3SJohn Baldwin LGE_UNLOCK(sc);
582b05223a3SJohn Baldwin callout_drain(&sc->lge_stat_callout);
583673d9191SSam Leffler ether_ifdetach(ifp);
584c678bc4fSBill Paul
585c678bc4fSBill Paul bus_generic_detach(dev);
586c678bc4fSBill Paul
587c678bc4fSBill Paul bus_teardown_intr(dev, sc->lge_irq, sc->lge_intrhand);
588c678bc4fSBill Paul bus_release_resource(dev, SYS_RES_IRQ, 0, sc->lge_irq);
589c678bc4fSBill Paul bus_release_resource(dev, LGE_RES, LGE_RID, sc->lge_res);
590c678bc4fSBill Paul
591*d1bdc282SBjoern A. Zeeb free(sc->lge_ldata, M_DEVBUF);
592ad4f426eSWarner Losh if_free(ifp);
593c678bc4fSBill Paul lge_free_jumbo_mem(sc);
594b05223a3SJohn Baldwin mtx_destroy(&sc->lge_mtx);
595c678bc4fSBill Paul
596c678bc4fSBill Paul return(0);
597c678bc4fSBill Paul }
598c678bc4fSBill Paul
599c678bc4fSBill Paul /*
600c678bc4fSBill Paul * Initialize the transmit descriptors.
601c678bc4fSBill Paul */
6029bee8811SAlfred Perlstein static int
lge_list_tx_init(struct lge_softc * sc)60316d10ee0SMateusz Guzik lge_list_tx_init(struct lge_softc *sc)
604c678bc4fSBill Paul {
605c678bc4fSBill Paul struct lge_list_data *ld;
606c678bc4fSBill Paul struct lge_ring_data *cd;
607c678bc4fSBill Paul int i;
608c678bc4fSBill Paul
609c678bc4fSBill Paul cd = &sc->lge_cdata;
610c678bc4fSBill Paul ld = sc->lge_ldata;
611c678bc4fSBill Paul for (i = 0; i < LGE_TX_LIST_CNT; i++) {
612c678bc4fSBill Paul ld->lge_tx_list[i].lge_mbuf = NULL;
613c678bc4fSBill Paul ld->lge_tx_list[i].lge_ctl = 0;
614c678bc4fSBill Paul }
615c678bc4fSBill Paul
616c678bc4fSBill Paul cd->lge_tx_prod = cd->lge_tx_cons = 0;
617c678bc4fSBill Paul
618c678bc4fSBill Paul return(0);
619c678bc4fSBill Paul }
620c678bc4fSBill Paul
621c678bc4fSBill Paul
622c678bc4fSBill Paul /*
623c678bc4fSBill Paul * Initialize the RX descriptors and allocate mbufs for them. Note that
624c678bc4fSBill Paul * we arralge the descriptors in a closed ring, so that the last descriptor
625c678bc4fSBill Paul * points back to the first.
626c678bc4fSBill Paul */
6279bee8811SAlfred Perlstein static int
lge_list_rx_init(struct lge_softc * sc)62816d10ee0SMateusz Guzik lge_list_rx_init(struct lge_softc *sc)
629c678bc4fSBill Paul {
630c678bc4fSBill Paul struct lge_list_data *ld;
631c678bc4fSBill Paul struct lge_ring_data *cd;
632c678bc4fSBill Paul int i;
633c678bc4fSBill Paul
634c678bc4fSBill Paul ld = sc->lge_ldata;
635c678bc4fSBill Paul cd = &sc->lge_cdata;
636c678bc4fSBill Paul
637c678bc4fSBill Paul cd->lge_rx_prod = cd->lge_rx_cons = 0;
638c678bc4fSBill Paul
639c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_RXDESC_ADDR_HI, 0);
640c678bc4fSBill Paul
641c678bc4fSBill Paul for (i = 0; i < LGE_RX_LIST_CNT; i++) {
642c678bc4fSBill Paul if (CSR_READ_1(sc, LGE_RXCMDFREE_8BIT) == 0)
643c678bc4fSBill Paul break;
644c678bc4fSBill Paul if (lge_newbuf(sc, &ld->lge_rx_list[i], NULL) == ENOBUFS)
645c678bc4fSBill Paul return(ENOBUFS);
646c678bc4fSBill Paul }
647c678bc4fSBill Paul
648c678bc4fSBill Paul /* Clear possible 'rx command queue empty' interrupt. */
649c678bc4fSBill Paul CSR_READ_4(sc, LGE_ISR);
650c678bc4fSBill Paul
651c678bc4fSBill Paul return(0);
652c678bc4fSBill Paul }
653c678bc4fSBill Paul
654c678bc4fSBill Paul /*
655c678bc4fSBill Paul * Initialize an RX descriptor and attach an MBUF cluster.
656c678bc4fSBill Paul */
6579bee8811SAlfred Perlstein static int
lge_newbuf(struct lge_softc * sc,struct lge_rx_desc * c,struct mbuf * m)65816d10ee0SMateusz Guzik lge_newbuf(struct lge_softc *sc, struct lge_rx_desc *c, struct mbuf *m)
659c678bc4fSBill Paul {
660c678bc4fSBill Paul struct mbuf *m_new = NULL;
661e8fd18f3SGleb Smirnoff char *buf = NULL;
662c678bc4fSBill Paul
663c678bc4fSBill Paul if (m == NULL) {
664c6499eccSGleb Smirnoff MGETHDR(m_new, M_NOWAIT, MT_DATA);
665c678bc4fSBill Paul if (m_new == NULL) {
6666b9f5c94SGleb Smirnoff device_printf(sc->lge_dev, "no memory for rx list "
66778de678eSJohn Baldwin "-- packet dropped!\n");
668c678bc4fSBill Paul return(ENOBUFS);
669c678bc4fSBill Paul }
670c678bc4fSBill Paul
671c678bc4fSBill Paul /* Allocate the jumbo buffer */
672c678bc4fSBill Paul buf = lge_jalloc(sc);
673c678bc4fSBill Paul if (buf == NULL) {
674c678bc4fSBill Paul #ifdef LGE_VERBOSE
6756b9f5c94SGleb Smirnoff device_printf(sc->lge_dev, "jumbo allocation failed "
67678de678eSJohn Baldwin "-- packet dropped!\n");
677c678bc4fSBill Paul #endif
678c678bc4fSBill Paul m_freem(m_new);
679c678bc4fSBill Paul return(ENOBUFS);
680c678bc4fSBill Paul }
681c678bc4fSBill Paul /* Attach the buffer to the mbuf */
6827437599fSBill Paul m_new->m_len = m_new->m_pkthdr.len = LGE_JUMBO_FRAMELEN;
683e8fd18f3SGleb Smirnoff m_extadd(m_new, buf, LGE_JUMBO_FRAMELEN, lge_jfree, sc, NULL,
684e8fd18f3SGleb Smirnoff 0, EXT_NET_DRV);
685c678bc4fSBill Paul } else {
686c678bc4fSBill Paul m_new = m;
6877437599fSBill Paul m_new->m_len = m_new->m_pkthdr.len = LGE_JUMBO_FRAMELEN;
688c678bc4fSBill Paul m_new->m_data = m_new->m_ext.ext_buf;
689c678bc4fSBill Paul }
690c678bc4fSBill Paul
691c678bc4fSBill Paul /*
692c678bc4fSBill Paul * Adjust alignment so packet payload begins on a
693c678bc4fSBill Paul * longword boundary. Mandatory for Alpha, useful on
694c678bc4fSBill Paul * x86 too.
695c678bc4fSBill Paul */
696c678bc4fSBill Paul m_adj(m_new, ETHER_ALIGN);
697c678bc4fSBill Paul
698c678bc4fSBill Paul c->lge_mbuf = m_new;
699c678bc4fSBill Paul c->lge_fragptr_hi = 0;
700c678bc4fSBill Paul c->lge_fragptr_lo = vtophys(mtod(m_new, caddr_t));
701c678bc4fSBill Paul c->lge_fraglen = m_new->m_len;
702c678bc4fSBill Paul c->lge_ctl = m_new->m_len | LGE_RXCTL_WANTINTR | LGE_FRAGCNT(1);
703c678bc4fSBill Paul c->lge_sts = 0;
704c678bc4fSBill Paul
705c678bc4fSBill Paul /*
706c678bc4fSBill Paul * Put this buffer in the RX command FIFO. To do this,
707c678bc4fSBill Paul * we just write the physical address of the descriptor
708c678bc4fSBill Paul * into the RX descriptor address registers. Note that
709c678bc4fSBill Paul * there are two registers, one high DWORD and one low
710c678bc4fSBill Paul * DWORD, which lets us specify a 64-bit address if
711c678bc4fSBill Paul * desired. We only use a 32-bit address for now.
712c678bc4fSBill Paul * Writing to the low DWORD register is what actually
713c678bc4fSBill Paul * causes the command to be issued, so we do that
714c678bc4fSBill Paul * last.
715c678bc4fSBill Paul */
716c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_RXDESC_ADDR_LO, vtophys(c));
717c678bc4fSBill Paul LGE_INC(sc->lge_cdata.lge_rx_prod, LGE_RX_LIST_CNT);
718c678bc4fSBill Paul
719c678bc4fSBill Paul return(0);
720c678bc4fSBill Paul }
721c678bc4fSBill Paul
7229bee8811SAlfred Perlstein static int
lge_alloc_jumbo_mem(struct lge_softc * sc)72316d10ee0SMateusz Guzik lge_alloc_jumbo_mem(struct lge_softc *sc)
724c678bc4fSBill Paul {
725c678bc4fSBill Paul caddr_t ptr;
7263e85b721SEd Maste int i;
727c678bc4fSBill Paul struct lge_jpool_entry *entry;
728c678bc4fSBill Paul
729c678bc4fSBill Paul /* Grab a big chunk o' storage. */
730c678bc4fSBill Paul sc->lge_cdata.lge_jumbo_buf = contigmalloc(LGE_JMEM, M_DEVBUF,
731c678bc4fSBill Paul M_NOWAIT, 0, 0xffffffff, PAGE_SIZE, 0);
732c678bc4fSBill Paul
733c678bc4fSBill Paul if (sc->lge_cdata.lge_jumbo_buf == NULL) {
7346b9f5c94SGleb Smirnoff device_printf(sc->lge_dev, "no memory for jumbo buffers!\n");
735c678bc4fSBill Paul return(ENOBUFS);
736c678bc4fSBill Paul }
737c678bc4fSBill Paul
738c678bc4fSBill Paul SLIST_INIT(&sc->lge_jfree_listhead);
739c678bc4fSBill Paul SLIST_INIT(&sc->lge_jinuse_listhead);
740c678bc4fSBill Paul
741c678bc4fSBill Paul /*
742c678bc4fSBill Paul * Now divide it up into 9K pieces and save the addresses
743c678bc4fSBill Paul * in an array.
744c678bc4fSBill Paul */
745c678bc4fSBill Paul ptr = sc->lge_cdata.lge_jumbo_buf;
746c678bc4fSBill Paul for (i = 0; i < LGE_JSLOTS; i++) {
747c678bc4fSBill Paul sc->lge_cdata.lge_jslots[i] = ptr;
7487437599fSBill Paul ptr += LGE_JLEN;
749c678bc4fSBill Paul entry = malloc(sizeof(struct lge_jpool_entry),
750c678bc4fSBill Paul M_DEVBUF, M_NOWAIT);
751c678bc4fSBill Paul if (entry == NULL) {
7526b9f5c94SGleb Smirnoff device_printf(sc->lge_dev, "no memory for jumbo "
75378de678eSJohn Baldwin "buffer queue!\n");
754c678bc4fSBill Paul return(ENOBUFS);
755c678bc4fSBill Paul }
756c678bc4fSBill Paul entry->slot = i;
757c678bc4fSBill Paul SLIST_INSERT_HEAD(&sc->lge_jfree_listhead,
758c678bc4fSBill Paul entry, jpool_entries);
759c678bc4fSBill Paul }
760c678bc4fSBill Paul
761c678bc4fSBill Paul return(0);
762c678bc4fSBill Paul }
763c678bc4fSBill Paul
7649bee8811SAlfred Perlstein static void
lge_free_jumbo_mem(struct lge_softc * sc)76516d10ee0SMateusz Guzik lge_free_jumbo_mem(struct lge_softc *sc)
766c678bc4fSBill Paul {
767c678bc4fSBill Paul struct lge_jpool_entry *entry;
768c678bc4fSBill Paul
769eeeebe75SPyun YongHyeon if (sc->lge_cdata.lge_jumbo_buf == NULL)
770eeeebe75SPyun YongHyeon return;
771eeeebe75SPyun YongHyeon
772eeeebe75SPyun YongHyeon while ((entry = SLIST_FIRST(&sc->lge_jinuse_listhead))) {
773eeeebe75SPyun YongHyeon device_printf(sc->lge_dev,
774eeeebe75SPyun YongHyeon "asked to free buffer that is in use!\n");
775eeeebe75SPyun YongHyeon SLIST_REMOVE_HEAD(&sc->lge_jinuse_listhead, jpool_entries);
776eeeebe75SPyun YongHyeon SLIST_INSERT_HEAD(&sc->lge_jfree_listhead, entry,
777eeeebe75SPyun YongHyeon jpool_entries);
778eeeebe75SPyun YongHyeon }
779eeeebe75SPyun YongHyeon while (!SLIST_EMPTY(&sc->lge_jfree_listhead)) {
780c678bc4fSBill Paul entry = SLIST_FIRST(&sc->lge_jfree_listhead);
781c678bc4fSBill Paul SLIST_REMOVE_HEAD(&sc->lge_jfree_listhead, jpool_entries);
7827437599fSBill Paul free(entry, M_DEVBUF);
783c678bc4fSBill Paul }
784c678bc4fSBill Paul
785*d1bdc282SBjoern A. Zeeb free(sc->lge_cdata.lge_jumbo_buf, M_DEVBUF);
786c678bc4fSBill Paul
787c678bc4fSBill Paul return;
788c678bc4fSBill Paul }
789c678bc4fSBill Paul
790c678bc4fSBill Paul /*
791c678bc4fSBill Paul * Allocate a jumbo buffer.
792c678bc4fSBill Paul */
7939bee8811SAlfred Perlstein static void *
lge_jalloc(struct lge_softc * sc)79416d10ee0SMateusz Guzik lge_jalloc(struct lge_softc *sc)
795c678bc4fSBill Paul {
796c678bc4fSBill Paul struct lge_jpool_entry *entry;
797c678bc4fSBill Paul
798c678bc4fSBill Paul entry = SLIST_FIRST(&sc->lge_jfree_listhead);
799c678bc4fSBill Paul
800c678bc4fSBill Paul if (entry == NULL) {
801c678bc4fSBill Paul #ifdef LGE_VERBOSE
8026b9f5c94SGleb Smirnoff device_printf(sc->lge_dev, "no free jumbo buffers\n");
803c678bc4fSBill Paul #endif
804c678bc4fSBill Paul return(NULL);
805c678bc4fSBill Paul }
806c678bc4fSBill Paul
807c678bc4fSBill Paul SLIST_REMOVE_HEAD(&sc->lge_jfree_listhead, jpool_entries);
808c678bc4fSBill Paul SLIST_INSERT_HEAD(&sc->lge_jinuse_listhead, entry, jpool_entries);
809c678bc4fSBill Paul return(sc->lge_cdata.lge_jslots[entry->slot]);
810c678bc4fSBill Paul }
811c678bc4fSBill Paul
812c678bc4fSBill Paul /*
813c678bc4fSBill Paul * Release a jumbo buffer.
814c678bc4fSBill Paul */
81515c28f87SGleb Smirnoff static void
lge_jfree(struct mbuf * m)816e8fd18f3SGleb Smirnoff lge_jfree(struct mbuf *m)
817c678bc4fSBill Paul {
818c678bc4fSBill Paul struct lge_softc *sc;
819c678bc4fSBill Paul int i;
820c678bc4fSBill Paul struct lge_jpool_entry *entry;
821c678bc4fSBill Paul
822c678bc4fSBill Paul /* Extract the softc struct pointer. */
823e8fd18f3SGleb Smirnoff sc = m->m_ext.ext_arg1;
824c678bc4fSBill Paul
825c678bc4fSBill Paul if (sc == NULL)
826c678bc4fSBill Paul panic("lge_jfree: can't find softc pointer!");
827c678bc4fSBill Paul
828c678bc4fSBill Paul /* calculate the slot this buffer belongs to */
829e8fd18f3SGleb Smirnoff i = ((vm_offset_t)m->m_ext.ext_buf
830c678bc4fSBill Paul - (vm_offset_t)sc->lge_cdata.lge_jumbo_buf) / LGE_JLEN;
831c678bc4fSBill Paul
832c678bc4fSBill Paul if ((i < 0) || (i >= LGE_JSLOTS))
833c678bc4fSBill Paul panic("lge_jfree: asked to free buffer that we don't manage!");
834c678bc4fSBill Paul
835c678bc4fSBill Paul entry = SLIST_FIRST(&sc->lge_jinuse_listhead);
836c678bc4fSBill Paul if (entry == NULL)
837c678bc4fSBill Paul panic("lge_jfree: buffer not in use!");
838c678bc4fSBill Paul entry->slot = i;
839c678bc4fSBill Paul SLIST_REMOVE_HEAD(&sc->lge_jinuse_listhead, jpool_entries);
840c678bc4fSBill Paul SLIST_INSERT_HEAD(&sc->lge_jfree_listhead, entry, jpool_entries);
841c678bc4fSBill Paul }
842c678bc4fSBill Paul
843c678bc4fSBill Paul /*
844c678bc4fSBill Paul * A frame has been uploaded: pass the resulting mbuf chain up to
845c678bc4fSBill Paul * the higher level protocols.
846c678bc4fSBill Paul */
8479bee8811SAlfred Perlstein static void
lge_rxeof(struct lge_softc * sc,int cnt)84816d10ee0SMateusz Guzik lge_rxeof(struct lge_softc *sc, int cnt)
849c678bc4fSBill Paul {
850c678bc4fSBill Paul struct mbuf *m;
85108e67568SJustin Hibbits if_t ifp;
852c678bc4fSBill Paul struct lge_rx_desc *cur_rx;
853c678bc4fSBill Paul int c, i, total_len = 0;
854c678bc4fSBill Paul u_int32_t rxsts, rxctl;
855c678bc4fSBill Paul
856fc74a9f9SBrooks Davis ifp = sc->lge_ifp;
857c678bc4fSBill Paul
858c678bc4fSBill Paul /* Find out how many frames were processed. */
859c678bc4fSBill Paul c = cnt;
860c678bc4fSBill Paul i = sc->lge_cdata.lge_rx_cons;
861c678bc4fSBill Paul
862c678bc4fSBill Paul /* Suck them in. */
863c678bc4fSBill Paul while(c) {
864c678bc4fSBill Paul struct mbuf *m0 = NULL;
865c678bc4fSBill Paul
866c678bc4fSBill Paul cur_rx = &sc->lge_ldata->lge_rx_list[i];
867c678bc4fSBill Paul rxctl = cur_rx->lge_ctl;
868c678bc4fSBill Paul rxsts = cur_rx->lge_sts;
869c678bc4fSBill Paul m = cur_rx->lge_mbuf;
870c678bc4fSBill Paul cur_rx->lge_mbuf = NULL;
871c678bc4fSBill Paul total_len = LGE_RXBYTES(cur_rx);
872c678bc4fSBill Paul LGE_INC(i, LGE_RX_LIST_CNT);
873c678bc4fSBill Paul c--;
874c678bc4fSBill Paul
875c678bc4fSBill Paul /*
876c678bc4fSBill Paul * If an error occurs, update stats, clear the
877c678bc4fSBill Paul * status word and leave the mbuf cluster in place:
878c678bc4fSBill Paul * it should simply get re-used next time this descriptor
879c678bc4fSBill Paul * comes up in the ring.
880c678bc4fSBill Paul */
881c678bc4fSBill Paul if (rxctl & LGE_RXCTL_ERRMASK) {
882c8dfaf38SGleb Smirnoff if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
883c678bc4fSBill Paul lge_newbuf(sc, &LGE_RXTAIL(sc), m);
884c678bc4fSBill Paul continue;
885c678bc4fSBill Paul }
886c678bc4fSBill Paul
887c678bc4fSBill Paul if (lge_newbuf(sc, &LGE_RXTAIL(sc), NULL) == ENOBUFS) {
888f5eece3fSBosko Milekic m0 = m_devget(mtod(m, char *), total_len, ETHER_ALIGN,
889f5eece3fSBosko Milekic ifp, NULL);
890c678bc4fSBill Paul lge_newbuf(sc, &LGE_RXTAIL(sc), m);
891c678bc4fSBill Paul if (m0 == NULL) {
8926b9f5c94SGleb Smirnoff device_printf(sc->lge_dev, "no receive buffers "
89378de678eSJohn Baldwin "available -- packet dropped!\n");
894c8dfaf38SGleb Smirnoff if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
895c678bc4fSBill Paul continue;
896c678bc4fSBill Paul }
897c678bc4fSBill Paul m = m0;
898c678bc4fSBill Paul } else {
899c678bc4fSBill Paul m->m_pkthdr.rcvif = ifp;
900c678bc4fSBill Paul m->m_pkthdr.len = m->m_len = total_len;
901c678bc4fSBill Paul }
902c678bc4fSBill Paul
903c8dfaf38SGleb Smirnoff if_inc_counter(ifp, IFCOUNTER_IPACKETS, 1);
904c678bc4fSBill Paul
905c678bc4fSBill Paul /* Do IP checksum checking. */
906c678bc4fSBill Paul if (rxsts & LGE_RXSTS_ISIP)
907c678bc4fSBill Paul m->m_pkthdr.csum_flags |= CSUM_IP_CHECKED;
908c678bc4fSBill Paul if (!(rxsts & LGE_RXSTS_IPCSUMERR))
909c678bc4fSBill Paul m->m_pkthdr.csum_flags |= CSUM_IP_VALID;
910c678bc4fSBill Paul if ((rxsts & LGE_RXSTS_ISTCP &&
911c678bc4fSBill Paul !(rxsts & LGE_RXSTS_TCPCSUMERR)) ||
912c678bc4fSBill Paul (rxsts & LGE_RXSTS_ISUDP &&
913c678bc4fSBill Paul !(rxsts & LGE_RXSTS_UDPCSUMERR))) {
914c678bc4fSBill Paul m->m_pkthdr.csum_flags |=
915c678bc4fSBill Paul CSUM_DATA_VALID|CSUM_PSEUDO_HDR;
916c9215605SBill Paul m->m_pkthdr.csum_data = 0xffff;
917c678bc4fSBill Paul }
918c9215605SBill Paul
919b05223a3SJohn Baldwin LGE_UNLOCK(sc);
92008e67568SJustin Hibbits if_input(ifp, m);
921b05223a3SJohn Baldwin LGE_LOCK(sc);
922c678bc4fSBill Paul }
923c678bc4fSBill Paul
924c678bc4fSBill Paul sc->lge_cdata.lge_rx_cons = i;
925c678bc4fSBill Paul
926c678bc4fSBill Paul return;
927c678bc4fSBill Paul }
928c678bc4fSBill Paul
92937c84183SPoul-Henning Kamp static void
lge_rxeoc(struct lge_softc * sc)93016d10ee0SMateusz Guzik lge_rxeoc(struct lge_softc *sc)
931c678bc4fSBill Paul {
93208e67568SJustin Hibbits if_t ifp;
933c678bc4fSBill Paul
934fc74a9f9SBrooks Davis ifp = sc->lge_ifp;
93508e67568SJustin Hibbits if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
936b05223a3SJohn Baldwin lge_init_locked(sc);
937c678bc4fSBill Paul return;
938c678bc4fSBill Paul }
939c678bc4fSBill Paul
940c678bc4fSBill Paul /*
941c678bc4fSBill Paul * A frame was downloaded to the chip. It's safe for us to clean up
942c678bc4fSBill Paul * the list buffers.
943c678bc4fSBill Paul */
944c678bc4fSBill Paul
9459bee8811SAlfred Perlstein static void
lge_txeof(struct lge_softc * sc)94616d10ee0SMateusz Guzik lge_txeof(struct lge_softc *sc)
947c678bc4fSBill Paul {
948c678bc4fSBill Paul struct lge_tx_desc *cur_tx = NULL;
94908e67568SJustin Hibbits if_t ifp;
950c678bc4fSBill Paul u_int32_t idx, txdone;
951c678bc4fSBill Paul
952fc74a9f9SBrooks Davis ifp = sc->lge_ifp;
953c678bc4fSBill Paul
954c678bc4fSBill Paul /* Clear the timeout timer. */
955e55bc015SJohn Baldwin sc->lge_timer = 0;
956c678bc4fSBill Paul
957c678bc4fSBill Paul /*
958c678bc4fSBill Paul * Go through our tx list and free mbufs for those
959c678bc4fSBill Paul * frames that have been transmitted.
960c678bc4fSBill Paul */
961c678bc4fSBill Paul idx = sc->lge_cdata.lge_tx_cons;
962c678bc4fSBill Paul txdone = CSR_READ_1(sc, LGE_TXDMADONE_8BIT);
963c678bc4fSBill Paul
964c678bc4fSBill Paul while (idx != sc->lge_cdata.lge_tx_prod && txdone) {
965c678bc4fSBill Paul cur_tx = &sc->lge_ldata->lge_tx_list[idx];
966c678bc4fSBill Paul
967c8dfaf38SGleb Smirnoff if_inc_counter(ifp, IFCOUNTER_OPACKETS, 1);
968c678bc4fSBill Paul if (cur_tx->lge_mbuf != NULL) {
969c678bc4fSBill Paul m_freem(cur_tx->lge_mbuf);
970c678bc4fSBill Paul cur_tx->lge_mbuf = NULL;
971c678bc4fSBill Paul }
972c678bc4fSBill Paul cur_tx->lge_ctl = 0;
973c678bc4fSBill Paul
974c678bc4fSBill Paul txdone--;
975c678bc4fSBill Paul LGE_INC(idx, LGE_TX_LIST_CNT);
976e55bc015SJohn Baldwin sc->lge_timer = 0;
977c678bc4fSBill Paul }
978c678bc4fSBill Paul
979c678bc4fSBill Paul sc->lge_cdata.lge_tx_cons = idx;
980c678bc4fSBill Paul
981c678bc4fSBill Paul if (cur_tx != NULL)
98208e67568SJustin Hibbits if_setdrvflagbits(ifp, 0, IFF_DRV_OACTIVE);
983c678bc4fSBill Paul
984c678bc4fSBill Paul return;
985c678bc4fSBill Paul }
986c678bc4fSBill Paul
9879bee8811SAlfred Perlstein static void
lge_tick(void * xsc)98816d10ee0SMateusz Guzik lge_tick(void *xsc)
989c678bc4fSBill Paul {
990c678bc4fSBill Paul struct lge_softc *sc;
991c678bc4fSBill Paul struct mii_data *mii;
99208e67568SJustin Hibbits if_t ifp;
993c678bc4fSBill Paul
994c678bc4fSBill Paul sc = xsc;
995fc74a9f9SBrooks Davis ifp = sc->lge_ifp;
996b05223a3SJohn Baldwin LGE_LOCK_ASSERT(sc);
997c678bc4fSBill Paul
998c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_STATSIDX, LGE_STATS_SINGLE_COLL_PKTS);
999c8dfaf38SGleb Smirnoff if_inc_counter(ifp, IFCOUNTER_COLLISIONS, CSR_READ_4(sc, LGE_STATSVAL));
1000c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_STATSIDX, LGE_STATS_MULTI_COLL_PKTS);
1001c8dfaf38SGleb Smirnoff if_inc_counter(ifp, IFCOUNTER_COLLISIONS, CSR_READ_4(sc, LGE_STATSVAL));
1002c678bc4fSBill Paul
1003c678bc4fSBill Paul if (!sc->lge_link) {
1004c678bc4fSBill Paul mii = device_get_softc(sc->lge_miibus);
1005c678bc4fSBill Paul mii_tick(mii);
1006c678bc4fSBill Paul if (mii->mii_media_status & IFM_ACTIVE &&
1007c678bc4fSBill Paul IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
1008c678bc4fSBill Paul sc->lge_link++;
10096d6b7a18SPoul-Henning Kamp if (bootverbose &&
10106d6b7a18SPoul-Henning Kamp (IFM_SUBTYPE(mii->mii_media_active) == IFM_1000_SX||
10116d6b7a18SPoul-Henning Kamp IFM_SUBTYPE(mii->mii_media_active) == IFM_1000_T))
10126b9f5c94SGleb Smirnoff device_printf(sc->lge_dev, "gigabit link up\n");
101308e67568SJustin Hibbits if (!if_sendq_empty(ifp))
1014b05223a3SJohn Baldwin lge_start_locked(ifp);
1015c678bc4fSBill Paul }
1016c678bc4fSBill Paul }
1017c678bc4fSBill Paul
1018e55bc015SJohn Baldwin if (sc->lge_timer != 0 && --sc->lge_timer == 0)
1019e55bc015SJohn Baldwin lge_watchdog(sc);
1020b05223a3SJohn Baldwin callout_reset(&sc->lge_stat_callout, hz, lge_tick, sc);
1021c678bc4fSBill Paul
1022c678bc4fSBill Paul return;
1023c678bc4fSBill Paul }
1024c678bc4fSBill Paul
10259bee8811SAlfred Perlstein static void
lge_intr(void * arg)102616d10ee0SMateusz Guzik lge_intr(void *arg)
1027c678bc4fSBill Paul {
1028c678bc4fSBill Paul struct lge_softc *sc;
102908e67568SJustin Hibbits if_t ifp;
1030c678bc4fSBill Paul u_int32_t status;
1031c678bc4fSBill Paul
1032c678bc4fSBill Paul sc = arg;
1033fc74a9f9SBrooks Davis ifp = sc->lge_ifp;
1034b05223a3SJohn Baldwin LGE_LOCK(sc);
1035c678bc4fSBill Paul
1036453130d9SPedro F. Giffuni /* Suppress unwanted interrupts */
103708e67568SJustin Hibbits if (!(if_getflags(ifp) & IFF_UP)) {
1038c678bc4fSBill Paul lge_stop(sc);
1039b05223a3SJohn Baldwin LGE_UNLOCK(sc);
1040c678bc4fSBill Paul return;
1041c678bc4fSBill Paul }
1042c678bc4fSBill Paul
1043c678bc4fSBill Paul for (;;) {
1044c678bc4fSBill Paul /*
1045c678bc4fSBill Paul * Reading the ISR register clears all interrupts, and
1046c678bc4fSBill Paul * clears the 'interrupts enabled' bit in the IMR
1047c678bc4fSBill Paul * register.
1048c678bc4fSBill Paul */
1049c678bc4fSBill Paul status = CSR_READ_4(sc, LGE_ISR);
1050c678bc4fSBill Paul
1051c678bc4fSBill Paul if ((status & LGE_INTRS) == 0)
1052c678bc4fSBill Paul break;
1053c678bc4fSBill Paul
1054c678bc4fSBill Paul if ((status & (LGE_ISR_TXCMDFIFO_EMPTY|LGE_ISR_TXDMA_DONE)))
1055c678bc4fSBill Paul lge_txeof(sc);
1056c678bc4fSBill Paul
1057c678bc4fSBill Paul if (status & LGE_ISR_RXDMA_DONE)
1058c678bc4fSBill Paul lge_rxeof(sc, LGE_RX_DMACNT(status));
1059c678bc4fSBill Paul
1060c678bc4fSBill Paul if (status & LGE_ISR_RXCMDFIFO_EMPTY)
1061c678bc4fSBill Paul lge_rxeoc(sc);
1062c678bc4fSBill Paul
1063c678bc4fSBill Paul if (status & LGE_ISR_PHY_INTR) {
1064c678bc4fSBill Paul sc->lge_link = 0;
1065b05223a3SJohn Baldwin callout_stop(&sc->lge_stat_callout);
1066c678bc4fSBill Paul lge_tick(sc);
1067c678bc4fSBill Paul }
1068c678bc4fSBill Paul }
1069c678bc4fSBill Paul
1070c678bc4fSBill Paul /* Re-enable interrupts. */
1071c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_IMR, LGE_IMR_SETRST_CTL0|LGE_IMR_INTR_ENB);
1072c678bc4fSBill Paul
107308e67568SJustin Hibbits if (!if_sendq_empty(ifp))
1074b05223a3SJohn Baldwin lge_start_locked(ifp);
1075c678bc4fSBill Paul
1076b05223a3SJohn Baldwin LGE_UNLOCK(sc);
1077c678bc4fSBill Paul return;
1078c678bc4fSBill Paul }
1079c678bc4fSBill Paul
1080c678bc4fSBill Paul /*
1081c678bc4fSBill Paul * Encapsulate an mbuf chain in a descriptor by coupling the mbuf data
1082c678bc4fSBill Paul * pointers to the fragment pointers.
1083c678bc4fSBill Paul */
10849bee8811SAlfred Perlstein static int
lge_encap(struct lge_softc * sc,struct mbuf * m_head,u_int32_t * txidx)108516d10ee0SMateusz Guzik lge_encap(struct lge_softc *sc, struct mbuf *m_head, u_int32_t *txidx)
1086c678bc4fSBill Paul {
1087c678bc4fSBill Paul struct lge_frag *f = NULL;
1088c678bc4fSBill Paul struct lge_tx_desc *cur_tx;
1089c678bc4fSBill Paul struct mbuf *m;
1090c678bc4fSBill Paul int frag = 0, tot_len = 0;
1091c678bc4fSBill Paul
1092c678bc4fSBill Paul /*
1093c678bc4fSBill Paul * Start packing the mbufs in this chain into
1094c678bc4fSBill Paul * the fragment pointers. Stop when we run out
1095c678bc4fSBill Paul * of fragments or hit the end of the mbuf chain.
1096c678bc4fSBill Paul */
1097c678bc4fSBill Paul m = m_head;
1098c678bc4fSBill Paul cur_tx = &sc->lge_ldata->lge_tx_list[*txidx];
1099c678bc4fSBill Paul frag = 0;
1100c678bc4fSBill Paul
1101c678bc4fSBill Paul for (m = m_head; m != NULL; m = m->m_next) {
1102c678bc4fSBill Paul if (m->m_len != 0) {
1103c678bc4fSBill Paul tot_len += m->m_len;
1104c678bc4fSBill Paul f = &cur_tx->lge_frags[frag];
1105c678bc4fSBill Paul f->lge_fraglen = m->m_len;
1106c678bc4fSBill Paul f->lge_fragptr_lo = vtophys(mtod(m, vm_offset_t));
1107c678bc4fSBill Paul f->lge_fragptr_hi = 0;
1108c678bc4fSBill Paul frag++;
1109c678bc4fSBill Paul }
1110c678bc4fSBill Paul }
1111c678bc4fSBill Paul
1112c678bc4fSBill Paul if (m != NULL)
1113c678bc4fSBill Paul return(ENOBUFS);
1114c678bc4fSBill Paul
1115c678bc4fSBill Paul cur_tx->lge_mbuf = m_head;
1116c678bc4fSBill Paul cur_tx->lge_ctl = LGE_TXCTL_WANTINTR|LGE_FRAGCNT(frag)|tot_len;
11171c352ef7SBill Paul LGE_INC((*txidx), LGE_TX_LIST_CNT);
1118c678bc4fSBill Paul
1119c678bc4fSBill Paul /* Queue for transmit */
1120c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_TXDESC_ADDR_LO, vtophys(cur_tx));
1121c678bc4fSBill Paul
1122c678bc4fSBill Paul return(0);
1123c678bc4fSBill Paul }
1124c678bc4fSBill Paul
1125c678bc4fSBill Paul /*
1126c678bc4fSBill Paul * Main transmit routine. To avoid having to do mbuf copies, we put pointers
1127c678bc4fSBill Paul * to the mbuf data regions directly in the transmit lists. We also save a
1128c678bc4fSBill Paul * copy of the pointers since the transmit list fragment pointers are
1129c678bc4fSBill Paul * physical addresses.
1130c678bc4fSBill Paul */
1131c678bc4fSBill Paul
11329bee8811SAlfred Perlstein static void
lge_start(if_t ifp)113316d10ee0SMateusz Guzik lge_start(if_t ifp)
1134c678bc4fSBill Paul {
1135c678bc4fSBill Paul struct lge_softc *sc;
1136b05223a3SJohn Baldwin
113708e67568SJustin Hibbits sc = if_getsoftc(ifp);
1138b05223a3SJohn Baldwin LGE_LOCK(sc);
1139b05223a3SJohn Baldwin lge_start_locked(ifp);
1140b05223a3SJohn Baldwin LGE_UNLOCK(sc);
1141b05223a3SJohn Baldwin }
1142b05223a3SJohn Baldwin
1143b05223a3SJohn Baldwin static void
lge_start_locked(if_t ifp)114416d10ee0SMateusz Guzik lge_start_locked(if_t ifp)
1145b05223a3SJohn Baldwin {
1146b05223a3SJohn Baldwin struct lge_softc *sc;
1147c678bc4fSBill Paul struct mbuf *m_head = NULL;
1148c678bc4fSBill Paul u_int32_t idx;
1149c678bc4fSBill Paul
115008e67568SJustin Hibbits sc = if_getsoftc(ifp);
1151c678bc4fSBill Paul
1152c678bc4fSBill Paul if (!sc->lge_link)
1153c678bc4fSBill Paul return;
1154c678bc4fSBill Paul
1155c678bc4fSBill Paul idx = sc->lge_cdata.lge_tx_prod;
1156c678bc4fSBill Paul
115708e67568SJustin Hibbits if (if_getdrvflags(ifp) & IFF_DRV_OACTIVE)
1158c678bc4fSBill Paul return;
1159c678bc4fSBill Paul
1160c678bc4fSBill Paul while(sc->lge_ldata->lge_tx_list[idx].lge_mbuf == NULL) {
1161c678bc4fSBill Paul if (CSR_READ_1(sc, LGE_TXCMDFREE_8BIT) == 0)
1162c678bc4fSBill Paul break;
1163c678bc4fSBill Paul
116408e67568SJustin Hibbits m_head = if_dequeue(ifp);
1165c678bc4fSBill Paul if (m_head == NULL)
1166c678bc4fSBill Paul break;
1167c678bc4fSBill Paul
1168c678bc4fSBill Paul if (lge_encap(sc, m_head, &idx)) {
116908e67568SJustin Hibbits if_sendq_prepend(ifp, m_head);
117008e67568SJustin Hibbits if_setdrvflagbits(ifp, IFF_DRV_OACTIVE, 0);
1171c678bc4fSBill Paul break;
1172c678bc4fSBill Paul }
1173c678bc4fSBill Paul
1174c678bc4fSBill Paul /*
1175c678bc4fSBill Paul * If there's a BPF listener, bounce a copy of this frame
1176c678bc4fSBill Paul * to him.
1177c678bc4fSBill Paul */
1178673d9191SSam Leffler BPF_MTAP(ifp, m_head);
1179c678bc4fSBill Paul }
1180c678bc4fSBill Paul
1181c678bc4fSBill Paul sc->lge_cdata.lge_tx_prod = idx;
1182c678bc4fSBill Paul
1183c678bc4fSBill Paul /*
1184c678bc4fSBill Paul * Set a timeout in case the chip goes out to lunch.
1185c678bc4fSBill Paul */
1186e55bc015SJohn Baldwin sc->lge_timer = 5;
1187c678bc4fSBill Paul
1188c678bc4fSBill Paul return;
1189c678bc4fSBill Paul }
1190c678bc4fSBill Paul
11919bee8811SAlfred Perlstein static void
lge_init(void * xsc)119216d10ee0SMateusz Guzik lge_init(void *xsc)
1193c678bc4fSBill Paul {
1194c678bc4fSBill Paul struct lge_softc *sc = xsc;
1195b05223a3SJohn Baldwin
1196b05223a3SJohn Baldwin LGE_LOCK(sc);
1197b05223a3SJohn Baldwin lge_init_locked(sc);
1198b05223a3SJohn Baldwin LGE_UNLOCK(sc);
1199b05223a3SJohn Baldwin }
1200b05223a3SJohn Baldwin
1201b05223a3SJohn Baldwin static void
lge_init_locked(struct lge_softc * sc)120216d10ee0SMateusz Guzik lge_init_locked(struct lge_softc *sc)
1203b05223a3SJohn Baldwin {
120408e67568SJustin Hibbits if_t ifp = sc->lge_ifp;
1205c678bc4fSBill Paul
1206b05223a3SJohn Baldwin LGE_LOCK_ASSERT(sc);
120708e67568SJustin Hibbits if (if_getdrvflags(ifp) & IFF_DRV_RUNNING)
1208c678bc4fSBill Paul return;
1209c678bc4fSBill Paul
1210c678bc4fSBill Paul /*
1211c678bc4fSBill Paul * Cancel pending I/O and free all RX/TX buffers.
1212c678bc4fSBill Paul */
1213c678bc4fSBill Paul lge_stop(sc);
1214c678bc4fSBill Paul lge_reset(sc);
1215c678bc4fSBill Paul
1216c678bc4fSBill Paul /* Set MAC address */
121708e67568SJustin Hibbits CSR_WRITE_4(sc, LGE_PAR0, *(u_int32_t *)(&if_getlladdr(sc->lge_ifp)[0]));
121808e67568SJustin Hibbits CSR_WRITE_4(sc, LGE_PAR1, *(u_int32_t *)(&if_getlladdr(sc->lge_ifp)[4]));
1219c678bc4fSBill Paul
1220c678bc4fSBill Paul /* Init circular RX list. */
1221c678bc4fSBill Paul if (lge_list_rx_init(sc) == ENOBUFS) {
12226b9f5c94SGleb Smirnoff device_printf(sc->lge_dev, "initialization failed: no "
122378de678eSJohn Baldwin "memory for rx buffers\n");
1224c678bc4fSBill Paul lge_stop(sc);
1225c678bc4fSBill Paul return;
1226c678bc4fSBill Paul }
1227c678bc4fSBill Paul
1228c678bc4fSBill Paul /*
1229c678bc4fSBill Paul * Init tx descriptors.
1230c678bc4fSBill Paul */
1231c678bc4fSBill Paul lge_list_tx_init(sc);
1232c678bc4fSBill Paul
1233c678bc4fSBill Paul /* Set initial value for MODE1 register. */
1234c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1, LGE_MODE1_RX_UCAST|
1235c678bc4fSBill Paul LGE_MODE1_TX_CRC|LGE_MODE1_TXPAD|
1236c678bc4fSBill Paul LGE_MODE1_RX_FLOWCTL|LGE_MODE1_SETRST_CTL0|
1237c678bc4fSBill Paul LGE_MODE1_SETRST_CTL1|LGE_MODE1_SETRST_CTL2);
1238c678bc4fSBill Paul
1239c678bc4fSBill Paul /* If we want promiscuous mode, set the allframes bit. */
124008e67568SJustin Hibbits if (if_getflags(ifp) & IFF_PROMISC) {
1241c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1,
1242c678bc4fSBill Paul LGE_MODE1_SETRST_CTL1|LGE_MODE1_RX_PROMISC);
1243c678bc4fSBill Paul } else {
1244c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1, LGE_MODE1_RX_PROMISC);
1245c678bc4fSBill Paul }
1246c678bc4fSBill Paul
1247c678bc4fSBill Paul /*
1248c678bc4fSBill Paul * Set the capture broadcast bit to capture broadcast frames.
1249c678bc4fSBill Paul */
125008e67568SJustin Hibbits if (if_getflags(ifp) & IFF_BROADCAST) {
1251c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1,
1252c678bc4fSBill Paul LGE_MODE1_SETRST_CTL1|LGE_MODE1_RX_BCAST);
1253c678bc4fSBill Paul } else {
1254c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1, LGE_MODE1_RX_BCAST);
1255c678bc4fSBill Paul }
1256c678bc4fSBill Paul
1257c678bc4fSBill Paul /* Packet padding workaround? */
1258c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1, LGE_MODE1_SETRST_CTL1|LGE_MODE1_RMVPAD);
1259c678bc4fSBill Paul
1260c678bc4fSBill Paul /* No error frames */
1261c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1, LGE_MODE1_RX_ERRPKTS);
1262c678bc4fSBill Paul
1263c678bc4fSBill Paul /* Receive large frames */
1264c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1, LGE_MODE1_SETRST_CTL1|LGE_MODE1_RX_GIANTS);
1265c678bc4fSBill Paul
1266c678bc4fSBill Paul /* Workaround: disable RX/TX flow control */
1267c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1, LGE_MODE1_TX_FLOWCTL);
1268c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1, LGE_MODE1_RX_FLOWCTL);
1269c678bc4fSBill Paul
1270c678bc4fSBill Paul /* Make sure to strip CRC from received frames */
1271c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1, LGE_MODE1_RX_CRC);
1272c678bc4fSBill Paul
1273c678bc4fSBill Paul /* Turn off magic packet mode */
1274c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1, LGE_MODE1_MPACK_ENB);
1275c678bc4fSBill Paul
1276c678bc4fSBill Paul /* Turn off all VLAN stuff */
1277c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1, LGE_MODE1_VLAN_RX|LGE_MODE1_VLAN_TX|
1278c678bc4fSBill Paul LGE_MODE1_VLAN_STRIP|LGE_MODE1_VLAN_INSERT);
1279c678bc4fSBill Paul
1280c678bc4fSBill Paul /* Workarond: FIFO overflow */
1281c678bc4fSBill Paul CSR_WRITE_2(sc, LGE_RXFIFO_HIWAT, 0x3FFF);
1282c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_IMR, LGE_IMR_SETRST_CTL1|LGE_IMR_RXFIFO_WAT);
1283c678bc4fSBill Paul
1284c678bc4fSBill Paul /*
1285c678bc4fSBill Paul * Load the multicast filter.
1286c678bc4fSBill Paul */
1287c678bc4fSBill Paul lge_setmulti(sc);
1288c678bc4fSBill Paul
1289c678bc4fSBill Paul /*
1290c678bc4fSBill Paul * Enable hardware checksum validation for all received IPv4
1291c678bc4fSBill Paul * packets, do not reject packets with bad checksums.
1292c678bc4fSBill Paul */
1293c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE2, LGE_MODE2_RX_IPCSUM|
1294c678bc4fSBill Paul LGE_MODE2_RX_TCPCSUM|LGE_MODE2_RX_UDPCSUM|
1295c678bc4fSBill Paul LGE_MODE2_RX_ERRCSUM);
1296c678bc4fSBill Paul
1297c678bc4fSBill Paul /*
1298c678bc4fSBill Paul * Enable the delivery of PHY interrupts based on
1299c678bc4fSBill Paul * link/speed/duplex status chalges.
1300c678bc4fSBill Paul */
1301c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1, LGE_MODE1_SETRST_CTL0|LGE_MODE1_GMIIPOLL);
1302c678bc4fSBill Paul
1303c678bc4fSBill Paul /* Enable receiver and transmitter. */
1304c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_RXDESC_ADDR_HI, 0);
1305c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1, LGE_MODE1_SETRST_CTL1|LGE_MODE1_RX_ENB);
1306c678bc4fSBill Paul
1307c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_TXDESC_ADDR_HI, 0);
1308c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1, LGE_MODE1_SETRST_CTL1|LGE_MODE1_TX_ENB);
1309c678bc4fSBill Paul
1310c678bc4fSBill Paul /*
1311c678bc4fSBill Paul * Enable interrupts.
1312c678bc4fSBill Paul */
1313c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_IMR, LGE_IMR_SETRST_CTL0|
1314c678bc4fSBill Paul LGE_IMR_SETRST_CTL1|LGE_IMR_INTR_ENB|LGE_INTRS);
1315c678bc4fSBill Paul
1316b05223a3SJohn Baldwin lge_ifmedia_upd_locked(ifp);
1317c678bc4fSBill Paul
131808e67568SJustin Hibbits if_setdrvflagbits(ifp, IFF_DRV_RUNNING, 0);
131908e67568SJustin Hibbits if_setdrvflagbits(ifp, 0, IFF_DRV_OACTIVE);
1320c678bc4fSBill Paul
1321b05223a3SJohn Baldwin callout_reset(&sc->lge_stat_callout, hz, lge_tick, sc);
1322c678bc4fSBill Paul
1323c678bc4fSBill Paul return;
1324c678bc4fSBill Paul }
1325c678bc4fSBill Paul
1326c678bc4fSBill Paul /*
1327c678bc4fSBill Paul * Set media options.
1328c678bc4fSBill Paul */
13299bee8811SAlfred Perlstein static int
lge_ifmedia_upd(if_t ifp)133016d10ee0SMateusz Guzik lge_ifmedia_upd(if_t ifp)
1331c678bc4fSBill Paul {
1332c678bc4fSBill Paul struct lge_softc *sc;
1333b05223a3SJohn Baldwin
133408e67568SJustin Hibbits sc = if_getsoftc(ifp);
1335b05223a3SJohn Baldwin LGE_LOCK(sc);
1336b05223a3SJohn Baldwin lge_ifmedia_upd_locked(ifp);
1337b05223a3SJohn Baldwin LGE_UNLOCK(sc);
1338b05223a3SJohn Baldwin
1339b05223a3SJohn Baldwin return(0);
1340b05223a3SJohn Baldwin }
1341b05223a3SJohn Baldwin
1342b05223a3SJohn Baldwin static void
lge_ifmedia_upd_locked(if_t ifp)134316d10ee0SMateusz Guzik lge_ifmedia_upd_locked(if_t ifp)
1344b05223a3SJohn Baldwin {
1345b05223a3SJohn Baldwin struct lge_softc *sc;
1346c678bc4fSBill Paul struct mii_data *mii;
13473fcb7a53SMarius Strobl struct mii_softc *miisc;
1348c678bc4fSBill Paul
134908e67568SJustin Hibbits sc = if_getsoftc(ifp);
1350c678bc4fSBill Paul
1351b05223a3SJohn Baldwin LGE_LOCK_ASSERT(sc);
1352c678bc4fSBill Paul mii = device_get_softc(sc->lge_miibus);
1353c678bc4fSBill Paul sc->lge_link = 0;
13543fcb7a53SMarius Strobl LIST_FOREACH(miisc, &mii->mii_phys, mii_list)
13553fcb7a53SMarius Strobl PHY_RESET(miisc);
1356c678bc4fSBill Paul mii_mediachg(mii);
1357c678bc4fSBill Paul }
1358c678bc4fSBill Paul
1359c678bc4fSBill Paul /*
1360c678bc4fSBill Paul * Report current media status.
1361c678bc4fSBill Paul */
13629bee8811SAlfred Perlstein static void
lge_ifmedia_sts(if_t ifp,struct ifmediareq * ifmr)136316d10ee0SMateusz Guzik lge_ifmedia_sts(if_t ifp, struct ifmediareq *ifmr)
1364c678bc4fSBill Paul {
1365c678bc4fSBill Paul struct lge_softc *sc;
1366c678bc4fSBill Paul struct mii_data *mii;
1367c678bc4fSBill Paul
136808e67568SJustin Hibbits sc = if_getsoftc(ifp);
1369c678bc4fSBill Paul
1370b05223a3SJohn Baldwin LGE_LOCK(sc);
1371c678bc4fSBill Paul mii = device_get_softc(sc->lge_miibus);
1372c678bc4fSBill Paul mii_pollstat(mii);
1373c678bc4fSBill Paul ifmr->ifm_active = mii->mii_media_active;
1374c678bc4fSBill Paul ifmr->ifm_status = mii->mii_media_status;
137557c81d92SPyun YongHyeon LGE_UNLOCK(sc);
1376c678bc4fSBill Paul
1377c678bc4fSBill Paul return;
1378c678bc4fSBill Paul }
1379c678bc4fSBill Paul
13809bee8811SAlfred Perlstein static int
lge_ioctl(if_t ifp,u_long command,caddr_t data)138116d10ee0SMateusz Guzik lge_ioctl(if_t ifp, u_long command, caddr_t data)
1382c678bc4fSBill Paul {
138308e67568SJustin Hibbits struct lge_softc *sc = if_getsoftc(ifp);
1384c678bc4fSBill Paul struct ifreq *ifr = (struct ifreq *) data;
1385c678bc4fSBill Paul struct mii_data *mii;
1386b05223a3SJohn Baldwin int error = 0;
1387c678bc4fSBill Paul
1388c678bc4fSBill Paul switch(command) {
1389c678bc4fSBill Paul case SIOCSIFMTU:
1390b05223a3SJohn Baldwin LGE_LOCK(sc);
1391c678bc4fSBill Paul if (ifr->ifr_mtu > LGE_JUMBO_MTU)
1392c678bc4fSBill Paul error = EINVAL;
1393c678bc4fSBill Paul else
139408e67568SJustin Hibbits if_setmtu(ifp, ifr->ifr_mtu);
1395b05223a3SJohn Baldwin LGE_UNLOCK(sc);
1396c678bc4fSBill Paul break;
1397c678bc4fSBill Paul case SIOCSIFFLAGS:
1398b05223a3SJohn Baldwin LGE_LOCK(sc);
139908e67568SJustin Hibbits if (if_getflags(ifp) & IFF_UP) {
140008e67568SJustin Hibbits if (if_getdrvflags(ifp) & IFF_DRV_RUNNING &&
140108e67568SJustin Hibbits if_getflags(ifp) & IFF_PROMISC &&
1402c678bc4fSBill Paul !(sc->lge_if_flags & IFF_PROMISC)) {
1403c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1,
1404c678bc4fSBill Paul LGE_MODE1_SETRST_CTL1|
1405c678bc4fSBill Paul LGE_MODE1_RX_PROMISC);
140608e67568SJustin Hibbits } else if (if_getdrvflags(ifp) & IFF_DRV_RUNNING &&
140708e67568SJustin Hibbits !(if_getflags(ifp) & IFF_PROMISC) &&
1408c678bc4fSBill Paul sc->lge_if_flags & IFF_PROMISC) {
1409c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1,
1410c678bc4fSBill Paul LGE_MODE1_RX_PROMISC);
1411c678bc4fSBill Paul } else {
141208e67568SJustin Hibbits if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
1413b05223a3SJohn Baldwin lge_init_locked(sc);
1414c678bc4fSBill Paul }
1415c678bc4fSBill Paul } else {
141608e67568SJustin Hibbits if (if_getdrvflags(ifp) & IFF_DRV_RUNNING)
1417c678bc4fSBill Paul lge_stop(sc);
1418c678bc4fSBill Paul }
141908e67568SJustin Hibbits sc->lge_if_flags = if_getflags(ifp);
1420b05223a3SJohn Baldwin LGE_UNLOCK(sc);
1421c678bc4fSBill Paul error = 0;
1422c678bc4fSBill Paul break;
1423c678bc4fSBill Paul case SIOCADDMULTI:
1424c678bc4fSBill Paul case SIOCDELMULTI:
1425b05223a3SJohn Baldwin LGE_LOCK(sc);
1426c678bc4fSBill Paul lge_setmulti(sc);
1427b05223a3SJohn Baldwin LGE_UNLOCK(sc);
1428c678bc4fSBill Paul error = 0;
1429c678bc4fSBill Paul break;
1430c678bc4fSBill Paul case SIOCGIFMEDIA:
1431c678bc4fSBill Paul case SIOCSIFMEDIA:
1432c678bc4fSBill Paul mii = device_get_softc(sc->lge_miibus);
1433c678bc4fSBill Paul error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
1434c678bc4fSBill Paul break;
1435c678bc4fSBill Paul default:
1436673d9191SSam Leffler error = ether_ioctl(ifp, command, data);
1437c678bc4fSBill Paul break;
1438c678bc4fSBill Paul }
1439c678bc4fSBill Paul
1440c678bc4fSBill Paul return(error);
1441c678bc4fSBill Paul }
1442c678bc4fSBill Paul
14439bee8811SAlfred Perlstein static void
lge_watchdog(struct lge_softc * sc)144416d10ee0SMateusz Guzik lge_watchdog(struct lge_softc *sc)
1445e55bc015SJohn Baldwin {
144608e67568SJustin Hibbits if_t ifp;
1447c678bc4fSBill Paul
1448e55bc015SJohn Baldwin LGE_LOCK_ASSERT(sc);
1449e55bc015SJohn Baldwin ifp = sc->lge_ifp;
1450c678bc4fSBill Paul
1451c8dfaf38SGleb Smirnoff if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
145278de678eSJohn Baldwin if_printf(ifp, "watchdog timeout\n");
1453c678bc4fSBill Paul
1454c678bc4fSBill Paul lge_stop(sc);
1455c678bc4fSBill Paul lge_reset(sc);
145608e67568SJustin Hibbits if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
1457b05223a3SJohn Baldwin lge_init_locked(sc);
1458c678bc4fSBill Paul
145908e67568SJustin Hibbits if (!if_sendq_empty(ifp))
1460b05223a3SJohn Baldwin lge_start_locked(ifp);
1461c678bc4fSBill Paul }
1462c678bc4fSBill Paul
1463c678bc4fSBill Paul /*
1464c678bc4fSBill Paul * Stop the adapter and free any mbufs allocated to the
1465c678bc4fSBill Paul * RX and TX lists.
1466c678bc4fSBill Paul */
14679bee8811SAlfred Perlstein static void
lge_stop(struct lge_softc * sc)146816d10ee0SMateusz Guzik lge_stop(struct lge_softc *sc)
1469c678bc4fSBill Paul {
14703e85b721SEd Maste int i;
147108e67568SJustin Hibbits if_t ifp;
1472c678bc4fSBill Paul
1473b05223a3SJohn Baldwin LGE_LOCK_ASSERT(sc);
1474fc74a9f9SBrooks Davis ifp = sc->lge_ifp;
1475e55bc015SJohn Baldwin sc->lge_timer = 0;
1476b05223a3SJohn Baldwin callout_stop(&sc->lge_stat_callout);
1477c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_IMR, LGE_IMR_INTR_ENB);
1478c678bc4fSBill Paul
1479c678bc4fSBill Paul /* Disable receiver and transmitter. */
1480c678bc4fSBill Paul CSR_WRITE_4(sc, LGE_MODE1, LGE_MODE1_RX_ENB|LGE_MODE1_TX_ENB);
1481c678bc4fSBill Paul sc->lge_link = 0;
1482c678bc4fSBill Paul
1483c678bc4fSBill Paul /*
1484c678bc4fSBill Paul * Free data in the RX lists.
1485c678bc4fSBill Paul */
1486c678bc4fSBill Paul for (i = 0; i < LGE_RX_LIST_CNT; i++) {
1487c678bc4fSBill Paul if (sc->lge_ldata->lge_rx_list[i].lge_mbuf != NULL) {
1488c678bc4fSBill Paul m_freem(sc->lge_ldata->lge_rx_list[i].lge_mbuf);
1489c678bc4fSBill Paul sc->lge_ldata->lge_rx_list[i].lge_mbuf = NULL;
1490c678bc4fSBill Paul }
1491c678bc4fSBill Paul }
1492c678bc4fSBill Paul bzero((char *)&sc->lge_ldata->lge_rx_list,
1493c678bc4fSBill Paul sizeof(sc->lge_ldata->lge_rx_list));
1494c678bc4fSBill Paul
1495c678bc4fSBill Paul /*
1496c678bc4fSBill Paul * Free the TX list buffers.
1497c678bc4fSBill Paul */
1498c678bc4fSBill Paul for (i = 0; i < LGE_TX_LIST_CNT; i++) {
1499c678bc4fSBill Paul if (sc->lge_ldata->lge_tx_list[i].lge_mbuf != NULL) {
1500c678bc4fSBill Paul m_freem(sc->lge_ldata->lge_tx_list[i].lge_mbuf);
1501c678bc4fSBill Paul sc->lge_ldata->lge_tx_list[i].lge_mbuf = NULL;
1502c678bc4fSBill Paul }
1503c678bc4fSBill Paul }
1504c678bc4fSBill Paul
1505c678bc4fSBill Paul bzero((char *)&sc->lge_ldata->lge_tx_list,
1506c678bc4fSBill Paul sizeof(sc->lge_ldata->lge_tx_list));
1507c678bc4fSBill Paul
150808e67568SJustin Hibbits if_setdrvflagbits(ifp, 0, (IFF_DRV_RUNNING | IFF_DRV_OACTIVE));
1509c678bc4fSBill Paul
1510c678bc4fSBill Paul return;
1511c678bc4fSBill Paul }
1512c678bc4fSBill Paul
1513c678bc4fSBill Paul /*
1514c678bc4fSBill Paul * Stop all chip I/O so that the kernel's probe routines don't
1515c678bc4fSBill Paul * get confused by errant DMAs when rebooting.
1516c678bc4fSBill Paul */
15176a087a87SPyun YongHyeon static int
lge_shutdown(device_t dev)151816d10ee0SMateusz Guzik lge_shutdown(device_t dev)
1519c678bc4fSBill Paul {
1520c678bc4fSBill Paul struct lge_softc *sc;
1521c678bc4fSBill Paul
1522c678bc4fSBill Paul sc = device_get_softc(dev);
1523c678bc4fSBill Paul
1524b05223a3SJohn Baldwin LGE_LOCK(sc);
1525c678bc4fSBill Paul lge_reset(sc);
1526c678bc4fSBill Paul lge_stop(sc);
1527b05223a3SJohn Baldwin LGE_UNLOCK(sc);
1528c678bc4fSBill Paul
15296a087a87SPyun YongHyeon return (0);
1530c678bc4fSBill Paul }
1531