xref: /freebsd/sys/dev/smc/if_smc.c (revision 4e62c3cafa4c4e41efd6f87b7fe559cf819cf3e4)
1694c6518SBenno Rice /*-
2*4d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
3718cf2ccSPedro F. Giffuni  *
4269a0696SBenno Rice  * Copyright (c) 2008 Benno Rice.  All rights reserved.
5694c6518SBenno Rice  *
6694c6518SBenno Rice  * Redistribution and use in source and binary forms, with or without
7694c6518SBenno Rice  * modification, are permitted provided that the following conditions
8694c6518SBenno Rice  * are met:
9694c6518SBenno Rice  * 1. Redistributions of source code must retain the above copyright
10694c6518SBenno Rice  *    notice, this list of conditions and the following disclaimer.
11694c6518SBenno Rice  * 2. Redistributions in binary form must reproduce the above copyright
12694c6518SBenno Rice  *    notice, this list of conditions and the following disclaimer in the
13694c6518SBenno Rice  *    documentation and/or other materials provided with the distribution.
14694c6518SBenno Rice  *
15694c6518SBenno Rice  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16694c6518SBenno Rice  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17694c6518SBenno Rice  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18694c6518SBenno Rice  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19694c6518SBenno Rice  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20694c6518SBenno Rice  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21694c6518SBenno Rice  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22694c6518SBenno Rice  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23694c6518SBenno Rice  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24694c6518SBenno Rice  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25694c6518SBenno Rice  */
26694c6518SBenno Rice 
27694c6518SBenno Rice #include <sys/cdefs.h>
28694c6518SBenno Rice /*
29694c6518SBenno Rice  * Driver for SMSC LAN91C111, may work for older variants.
30694c6518SBenno Rice  */
31694c6518SBenno Rice 
32694c6518SBenno Rice #ifdef HAVE_KERNEL_OPTION_HEADERS
33694c6518SBenno Rice #include "opt_device_polling.h"
34694c6518SBenno Rice #endif
35694c6518SBenno Rice 
36694c6518SBenno Rice #include <sys/param.h>
37694c6518SBenno Rice #include <sys/systm.h>
38694c6518SBenno Rice #include <sys/errno.h>
39694c6518SBenno Rice #include <sys/kernel.h>
40694c6518SBenno Rice #include <sys/sockio.h>
41694c6518SBenno Rice #include <sys/malloc.h>
42694c6518SBenno Rice #include <sys/mbuf.h>
43694c6518SBenno Rice #include <sys/queue.h>
44694c6518SBenno Rice #include <sys/socket.h>
45694c6518SBenno Rice #include <sys/syslog.h>
46694c6518SBenno Rice #include <sys/taskqueue.h>
47694c6518SBenno Rice 
48694c6518SBenno Rice #include <sys/module.h>
49694c6518SBenno Rice #include <sys/bus.h>
50694c6518SBenno Rice 
51694c6518SBenno Rice #include <machine/bus.h>
52694c6518SBenno Rice #include <machine/resource.h>
53694c6518SBenno Rice #include <sys/rman.h>
54694c6518SBenno Rice 
55694c6518SBenno Rice #include <net/ethernet.h>
56694c6518SBenno Rice #include <net/if.h>
5776039bc8SGleb Smirnoff #include <net/if_var.h>
58694c6518SBenno Rice #include <net/if_arp.h>
59694c6518SBenno Rice #include <net/if_dl.h>
60694c6518SBenno Rice #include <net/if_types.h>
61694c6518SBenno Rice #include <net/if_mib.h>
62694c6518SBenno Rice #include <net/if_media.h>
63694c6518SBenno Rice 
64694c6518SBenno Rice #ifdef INET
65694c6518SBenno Rice #include <netinet/in.h>
66694c6518SBenno Rice #include <netinet/in_systm.h>
67694c6518SBenno Rice #include <netinet/in_var.h>
68694c6518SBenno Rice #include <netinet/ip.h>
69694c6518SBenno Rice #endif
70694c6518SBenno Rice 
71694c6518SBenno Rice #include <net/bpf.h>
72694c6518SBenno Rice #include <net/bpfdesc.h>
73694c6518SBenno Rice 
74694c6518SBenno Rice #include <dev/smc/if_smcreg.h>
75694c6518SBenno Rice #include <dev/smc/if_smcvar.h>
76694c6518SBenno Rice 
77694c6518SBenno Rice #include <dev/mii/mii.h>
788c1093fcSMarius Strobl #include <dev/mii/mii_bitbang.h>
79694c6518SBenno Rice #include <dev/mii/miivar.h>
80694c6518SBenno Rice 
8122b33ca4SAndrew Turner #include "miibus_if.h"
8222b33ca4SAndrew Turner 
833c463a49SBenno Rice #define	SMC_LOCK(sc)		mtx_lock(&(sc)->smc_mtx)
843c463a49SBenno Rice #define	SMC_UNLOCK(sc)		mtx_unlock(&(sc)->smc_mtx)
853c463a49SBenno Rice #define	SMC_ASSERT_LOCKED(sc)	mtx_assert(&(sc)->smc_mtx, MA_OWNED)
863c463a49SBenno Rice 
873c463a49SBenno Rice #define	SMC_INTR_PRIORITY	0
883c463a49SBenno Rice #define	SMC_RX_PRIORITY		5
893c463a49SBenno Rice #define	SMC_TX_PRIORITY		10
903c463a49SBenno Rice 
91694c6518SBenno Rice static const char *smc_chip_ids[16] = {
92694c6518SBenno Rice 	NULL, NULL, NULL,
93694c6518SBenno Rice 	/* 3 */ "SMSC LAN91C90 or LAN91C92",
94694c6518SBenno Rice 	/* 4 */ "SMSC LAN91C94",
95694c6518SBenno Rice 	/* 5 */ "SMSC LAN91C95",
96694c6518SBenno Rice 	/* 6 */ "SMSC LAN91C96",
97694c6518SBenno Rice 	/* 7 */ "SMSC LAN91C100",
98694c6518SBenno Rice 	/* 8 */	"SMSC LAN91C100FD",
99694c6518SBenno Rice 	/* 9 */ "SMSC LAN91C110FD or LAN91C111FD",
100694c6518SBenno Rice 	NULL, NULL, NULL,
101694c6518SBenno Rice 	NULL, NULL, NULL
102694c6518SBenno Rice };
103694c6518SBenno Rice 
104694c6518SBenno Rice static void	smc_init(void *);
1058c259c50SJustin Hibbits static void	smc_start(if_t);
106764e058aSBenno Rice static void	smc_stop(struct smc_softc *);
1078c259c50SJustin Hibbits static int	smc_ioctl(if_t, u_long, caddr_t);
108694c6518SBenno Rice 
109694c6518SBenno Rice static void	smc_init_locked(struct smc_softc *);
1108c259c50SJustin Hibbits static void	smc_start_locked(if_t);
111694c6518SBenno Rice static void	smc_reset(struct smc_softc *);
1128c259c50SJustin Hibbits static int	smc_mii_ifmedia_upd(if_t);
1138c259c50SJustin Hibbits static void	smc_mii_ifmedia_sts(if_t, struct ifmediareq *);
114694c6518SBenno Rice static void	smc_mii_tick(void *);
115694c6518SBenno Rice static void	smc_mii_mediachg(struct smc_softc *);
116694c6518SBenno Rice static int	smc_mii_mediaioctl(struct smc_softc *, struct ifreq *, u_long);
117694c6518SBenno Rice 
1183c463a49SBenno Rice static void	smc_task_intr(void *, int);
119694c6518SBenno Rice static void	smc_task_rx(void *, int);
120694c6518SBenno Rice static void	smc_task_tx(void *, int);
121694c6518SBenno Rice 
122694c6518SBenno Rice static driver_filter_t	smc_intr;
1235773ac11SJohn Baldwin static callout_func_t	smc_watchdog;
124694c6518SBenno Rice #ifdef DEVICE_POLLING
125694c6518SBenno Rice static poll_handler_t	smc_poll;
126694c6518SBenno Rice #endif
127694c6518SBenno Rice 
1288c1093fcSMarius Strobl /*
1298c1093fcSMarius Strobl  * MII bit-bang glue
1308c1093fcSMarius Strobl  */
1318c1093fcSMarius Strobl static uint32_t smc_mii_bitbang_read(device_t);
1328c1093fcSMarius Strobl static void smc_mii_bitbang_write(device_t, uint32_t);
1338c1093fcSMarius Strobl 
1348c1093fcSMarius Strobl static const struct mii_bitbang_ops smc_mii_bitbang_ops = {
1358c1093fcSMarius Strobl 	smc_mii_bitbang_read,
1368c1093fcSMarius Strobl 	smc_mii_bitbang_write,
1378c1093fcSMarius Strobl 	{
1388c1093fcSMarius Strobl 		MGMT_MDO,	/* MII_BIT_MDO */
1398c1093fcSMarius Strobl 		MGMT_MDI,	/* MII_BIT_MDI */
1408c1093fcSMarius Strobl 		MGMT_MCLK,	/* MII_BIT_MDC */
1418c1093fcSMarius Strobl 		MGMT_MDOE,	/* MII_BIT_DIR_HOST_PHY */
1428c1093fcSMarius Strobl 		0,		/* MII_BIT_DIR_PHY_HOST */
1438c1093fcSMarius Strobl 	}
1448c1093fcSMarius Strobl };
1458c1093fcSMarius Strobl 
146694c6518SBenno Rice static __inline void
smc_select_bank(struct smc_softc * sc,uint16_t bank)147694c6518SBenno Rice smc_select_bank(struct smc_softc *sc, uint16_t bank)
148694c6518SBenno Rice {
149694c6518SBenno Rice 
1508c1093fcSMarius Strobl 	bus_barrier(sc->smc_reg, BSR, 2,
1518c1093fcSMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
152269a0696SBenno Rice 	bus_write_2(sc->smc_reg, BSR, bank & BSR_BANK_MASK);
1538c1093fcSMarius Strobl 	bus_barrier(sc->smc_reg, BSR, 2,
1548c1093fcSMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
155694c6518SBenno Rice }
156694c6518SBenno Rice 
157694c6518SBenno Rice /* Never call this when not in bank 2. */
158694c6518SBenno Rice static __inline void
smc_mmu_wait(struct smc_softc * sc)159694c6518SBenno Rice smc_mmu_wait(struct smc_softc *sc)
160694c6518SBenno Rice {
161694c6518SBenno Rice 
162269a0696SBenno Rice 	KASSERT((bus_read_2(sc->smc_reg, BSR) &
163694c6518SBenno Rice 	    BSR_BANK_MASK) == 2, ("%s: smc_mmu_wait called when not in bank 2",
164694c6518SBenno Rice 	    device_get_nameunit(sc->smc_dev)));
165269a0696SBenno Rice 	while (bus_read_2(sc->smc_reg, MMUCR) & MMUCR_BUSY)
166694c6518SBenno Rice 		;
167694c6518SBenno Rice }
168694c6518SBenno Rice 
169694c6518SBenno Rice static __inline uint8_t
smc_read_1(struct smc_softc * sc,bus_size_t offset)1708c1093fcSMarius Strobl smc_read_1(struct smc_softc *sc, bus_size_t offset)
171694c6518SBenno Rice {
172694c6518SBenno Rice 
173269a0696SBenno Rice 	return (bus_read_1(sc->smc_reg, offset));
174694c6518SBenno Rice }
175694c6518SBenno Rice 
176694c6518SBenno Rice static __inline void
smc_write_1(struct smc_softc * sc,bus_size_t offset,uint8_t val)1778c1093fcSMarius Strobl smc_write_1(struct smc_softc *sc, bus_size_t offset, uint8_t val)
178694c6518SBenno Rice {
179694c6518SBenno Rice 
180269a0696SBenno Rice 	bus_write_1(sc->smc_reg, offset, val);
181694c6518SBenno Rice }
182694c6518SBenno Rice 
183694c6518SBenno Rice static __inline uint16_t
smc_read_2(struct smc_softc * sc,bus_size_t offset)1848c1093fcSMarius Strobl smc_read_2(struct smc_softc *sc, bus_size_t offset)
185694c6518SBenno Rice {
186694c6518SBenno Rice 
187269a0696SBenno Rice 	return (bus_read_2(sc->smc_reg, offset));
188694c6518SBenno Rice }
189694c6518SBenno Rice 
190694c6518SBenno Rice static __inline void
smc_write_2(struct smc_softc * sc,bus_size_t offset,uint16_t val)1918c1093fcSMarius Strobl smc_write_2(struct smc_softc *sc, bus_size_t offset, uint16_t val)
192694c6518SBenno Rice {
193694c6518SBenno Rice 
194269a0696SBenno Rice 	bus_write_2(sc->smc_reg, offset, val);
195694c6518SBenno Rice }
196694c6518SBenno Rice 
197694c6518SBenno Rice static __inline void
smc_read_multi_2(struct smc_softc * sc,bus_size_t offset,uint16_t * datap,bus_size_t count)1988c1093fcSMarius Strobl smc_read_multi_2(struct smc_softc *sc, bus_size_t offset, uint16_t *datap,
199694c6518SBenno Rice     bus_size_t count)
200694c6518SBenno Rice {
201694c6518SBenno Rice 
202269a0696SBenno Rice 	bus_read_multi_2(sc->smc_reg, offset, datap, count);
203694c6518SBenno Rice }
204694c6518SBenno Rice 
205694c6518SBenno Rice static __inline void
smc_write_multi_2(struct smc_softc * sc,bus_size_t offset,uint16_t * datap,bus_size_t count)2068c1093fcSMarius Strobl smc_write_multi_2(struct smc_softc *sc, bus_size_t offset, uint16_t *datap,
207694c6518SBenno Rice     bus_size_t count)
208694c6518SBenno Rice {
209694c6518SBenno Rice 
210269a0696SBenno Rice 	bus_write_multi_2(sc->smc_reg, offset, datap, count);
211694c6518SBenno Rice }
212694c6518SBenno Rice 
2138c1093fcSMarius Strobl static __inline void
smc_barrier(struct smc_softc * sc,bus_size_t offset,bus_size_t length,int flags)2148c1093fcSMarius Strobl smc_barrier(struct smc_softc *sc, bus_size_t offset, bus_size_t length,
2158c1093fcSMarius Strobl     int flags)
2168c1093fcSMarius Strobl {
2178c1093fcSMarius Strobl 
2188c1093fcSMarius Strobl 	bus_barrier(sc->smc_reg, offset, length, flags);
2198c1093fcSMarius Strobl }
2208c1093fcSMarius Strobl 
221694c6518SBenno Rice int
smc_probe(device_t dev)222694c6518SBenno Rice smc_probe(device_t dev)
223694c6518SBenno Rice {
224694c6518SBenno Rice 	int			rid, type, error;
225694c6518SBenno Rice 	uint16_t		val;
226694c6518SBenno Rice 	struct smc_softc	*sc;
227694c6518SBenno Rice 	struct resource		*reg;
228694c6518SBenno Rice 
229694c6518SBenno Rice 	sc = device_get_softc(dev);
230694c6518SBenno Rice 	rid = 0;
231694c6518SBenno Rice 	type = SYS_RES_IOPORT;
232694c6518SBenno Rice 	error = 0;
233694c6518SBenno Rice 
234694c6518SBenno Rice 	if (sc->smc_usemem)
235694c6518SBenno Rice 		type = SYS_RES_MEMORY;
236694c6518SBenno Rice 
237c47476d7SJustin Hibbits 	reg = bus_alloc_resource_anywhere(dev, type, &rid, 16, RF_ACTIVE);
238694c6518SBenno Rice 	if (reg == NULL) {
239694c6518SBenno Rice 		if (bootverbose)
240694c6518SBenno Rice 			device_printf(dev,
241694c6518SBenno Rice 			    "could not allocate I/O resource for probe\n");
242694c6518SBenno Rice 		return (ENXIO);
243694c6518SBenno Rice 	}
244694c6518SBenno Rice 
245694c6518SBenno Rice 	/* Check for the identification value in the BSR. */
246269a0696SBenno Rice 	val = bus_read_2(reg, BSR);
247694c6518SBenno Rice 	if ((val & BSR_IDENTIFY_MASK) != BSR_IDENTIFY) {
248694c6518SBenno Rice 		if (bootverbose)
249694c6518SBenno Rice 			device_printf(dev, "identification value not in BSR\n");
250694c6518SBenno Rice 		error = ENXIO;
251694c6518SBenno Rice 		goto done;
252694c6518SBenno Rice 	}
253694c6518SBenno Rice 
254694c6518SBenno Rice 	/*
255694c6518SBenno Rice 	 * Try switching banks and make sure we still get the identification
256694c6518SBenno Rice 	 * value.
257694c6518SBenno Rice 	 */
258269a0696SBenno Rice 	bus_write_2(reg, BSR, 0);
259269a0696SBenno Rice 	val = bus_read_2(reg, BSR);
260694c6518SBenno Rice 	if ((val & BSR_IDENTIFY_MASK) != BSR_IDENTIFY) {
261694c6518SBenno Rice 		if (bootverbose)
262694c6518SBenno Rice 			device_printf(dev,
263694c6518SBenno Rice 			    "identification value not in BSR after write\n");
264694c6518SBenno Rice 		error = ENXIO;
265694c6518SBenno Rice 		goto done;
266694c6518SBenno Rice 	}
267694c6518SBenno Rice 
268694c6518SBenno Rice #if 0
269694c6518SBenno Rice 	/* Check the BAR. */
270269a0696SBenno Rice 	bus_write_2(reg, BSR, 1);
271269a0696SBenno Rice 	val = bus_read_2(reg, BAR);
272694c6518SBenno Rice 	val = BAR_ADDRESS(val);
273694c6518SBenno Rice 	if (rman_get_start(reg) != val) {
274694c6518SBenno Rice 		if (bootverbose)
275694c6518SBenno Rice 			device_printf(dev, "BAR address %x does not match "
276694c6518SBenno Rice 			    "I/O resource address %lx\n", val,
277694c6518SBenno Rice 			    rman_get_start(reg));
278694c6518SBenno Rice 		error = ENXIO;
279694c6518SBenno Rice 		goto done;
280694c6518SBenno Rice 	}
281694c6518SBenno Rice #endif
282694c6518SBenno Rice 
283694c6518SBenno Rice 	/* Compare REV against known chip revisions. */
284269a0696SBenno Rice 	bus_write_2(reg, BSR, 3);
285269a0696SBenno Rice 	val = bus_read_2(reg, REV);
286694c6518SBenno Rice 	val = (val & REV_CHIP_MASK) >> REV_CHIP_SHIFT;
287694c6518SBenno Rice 	if (smc_chip_ids[val] == NULL) {
288694c6518SBenno Rice 		if (bootverbose)
289694c6518SBenno Rice 			device_printf(dev, "Unknown chip revision: %d\n", val);
290694c6518SBenno Rice 		error = ENXIO;
291694c6518SBenno Rice 		goto done;
292694c6518SBenno Rice 	}
293694c6518SBenno Rice 
294694c6518SBenno Rice 	device_set_desc(dev, smc_chip_ids[val]);
295694c6518SBenno Rice 
296694c6518SBenno Rice done:
297694c6518SBenno Rice 	bus_release_resource(dev, type, rid, reg);
298694c6518SBenno Rice 	return (error);
299694c6518SBenno Rice }
300694c6518SBenno Rice 
301694c6518SBenno Rice int
smc_attach(device_t dev)302694c6518SBenno Rice smc_attach(device_t dev)
303694c6518SBenno Rice {
304694c6518SBenno Rice 	int			type, error;
305694c6518SBenno Rice 	uint16_t		val;
306694c6518SBenno Rice 	u_char			eaddr[ETHER_ADDR_LEN];
307694c6518SBenno Rice 	struct smc_softc	*sc;
3088c259c50SJustin Hibbits 	if_t			ifp;
309694c6518SBenno Rice 
310694c6518SBenno Rice 	sc = device_get_softc(dev);
311694c6518SBenno Rice 	error = 0;
312694c6518SBenno Rice 
313694c6518SBenno Rice 	sc->smc_dev = dev;
314694c6518SBenno Rice 
315694c6518SBenno Rice 	ifp = sc->smc_ifp = if_alloc(IFT_ETHER);
316694c6518SBenno Rice 
3173c463a49SBenno Rice 	mtx_init(&sc->smc_mtx, device_get_nameunit(dev), NULL, MTX_DEF);
318694c6518SBenno Rice 
3196e482159SBenno Rice 	/* Set up watchdog callout. */
3206e482159SBenno Rice 	callout_init_mtx(&sc->smc_watchdog, &sc->smc_mtx, 0);
3216e482159SBenno Rice 
322694c6518SBenno Rice 	type = SYS_RES_IOPORT;
323694c6518SBenno Rice 	if (sc->smc_usemem)
324694c6518SBenno Rice 		type = SYS_RES_MEMORY;
325694c6518SBenno Rice 
326694c6518SBenno Rice 	sc->smc_reg_rid = 0;
327c47476d7SJustin Hibbits 	sc->smc_reg = bus_alloc_resource_anywhere(dev, type, &sc->smc_reg_rid,
328694c6518SBenno Rice 	    16, RF_ACTIVE);
329694c6518SBenno Rice 	if (sc->smc_reg == NULL) {
330694c6518SBenno Rice 		error = ENXIO;
331694c6518SBenno Rice 		goto done;
332694c6518SBenno Rice 	}
333694c6518SBenno Rice 
334c47476d7SJustin Hibbits 	sc->smc_irq = bus_alloc_resource_anywhere(dev, SYS_RES_IRQ,
335c47476d7SJustin Hibbits 	    &sc->smc_irq_rid, 1, RF_ACTIVE | RF_SHAREABLE);
336694c6518SBenno Rice 	if (sc->smc_irq == NULL) {
337694c6518SBenno Rice 		error = ENXIO;
338694c6518SBenno Rice 		goto done;
339694c6518SBenno Rice 	}
340694c6518SBenno Rice 
341694c6518SBenno Rice 	SMC_LOCK(sc);
342694c6518SBenno Rice 	smc_reset(sc);
343694c6518SBenno Rice 	SMC_UNLOCK(sc);
344694c6518SBenno Rice 
345694c6518SBenno Rice 	smc_select_bank(sc, 3);
346694c6518SBenno Rice 	val = smc_read_2(sc, REV);
347694c6518SBenno Rice 	sc->smc_chip = (val & REV_CHIP_MASK) >> REV_CHIP_SHIFT;
348694c6518SBenno Rice 	sc->smc_rev = (val * REV_REV_MASK) >> REV_REV_SHIFT;
349694c6518SBenno Rice 	if (bootverbose)
350694c6518SBenno Rice 		device_printf(dev, "revision %x\n", sc->smc_rev);
351694c6518SBenno Rice 
3526e482159SBenno Rice 	callout_init_mtx(&sc->smc_mii_tick_ch, &sc->smc_mtx,
3536e482159SBenno Rice 	    CALLOUT_RETURNUNLOCKED);
354694c6518SBenno Rice 	if (sc->smc_chip >= REV_CHIP_91110FD) {
355d6c65d27SMarius Strobl 		(void)mii_attach(dev, &sc->smc_miibus, ifp,
356d6c65d27SMarius Strobl 		    smc_mii_ifmedia_upd, smc_mii_ifmedia_sts, BMSR_DEFCAPMASK,
357d6c65d27SMarius Strobl 		    MII_PHY_ANY, MII_OFFSET_ANY, 0);
358694c6518SBenno Rice 		if (sc->smc_miibus != NULL) {
359694c6518SBenno Rice 			sc->smc_mii_tick = smc_mii_tick;
360694c6518SBenno Rice 			sc->smc_mii_mediachg = smc_mii_mediachg;
361694c6518SBenno Rice 			sc->smc_mii_mediaioctl = smc_mii_mediaioctl;
362694c6518SBenno Rice 		}
363694c6518SBenno Rice 	}
364694c6518SBenno Rice 
365694c6518SBenno Rice 	smc_select_bank(sc, 1);
366694c6518SBenno Rice 	eaddr[0] = smc_read_1(sc, IAR0);
367694c6518SBenno Rice 	eaddr[1] = smc_read_1(sc, IAR1);
368694c6518SBenno Rice 	eaddr[2] = smc_read_1(sc, IAR2);
369694c6518SBenno Rice 	eaddr[3] = smc_read_1(sc, IAR3);
370694c6518SBenno Rice 	eaddr[4] = smc_read_1(sc, IAR4);
371694c6518SBenno Rice 	eaddr[5] = smc_read_1(sc, IAR5);
372694c6518SBenno Rice 
373694c6518SBenno Rice 	if_initname(ifp, device_get_name(dev), device_get_unit(dev));
3748c259c50SJustin Hibbits 	if_setsoftc(ifp, sc);
3758c259c50SJustin Hibbits 	if_setflags(ifp, IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST);
3768c259c50SJustin Hibbits 	if_setinitfn(ifp, smc_init);
3778c259c50SJustin Hibbits 	if_setioctlfn(ifp, smc_ioctl);
3788c259c50SJustin Hibbits 	if_setstartfn(ifp, smc_start);
3798c259c50SJustin Hibbits 	if_setsendqlen(ifp, ifqmaxlen);
3808c259c50SJustin Hibbits 	if_setsendqready(ifp);
381694c6518SBenno Rice 
3828c259c50SJustin Hibbits 	if_setcapabilities(ifp, if_getcapenable(ifp) );
383694c6518SBenno Rice 
384694c6518SBenno Rice #ifdef DEVICE_POLLING
3858c259c50SJustin Hibbits 	if_setcapabilitiesbit(ifp, IFCAP_POLLING, 0);
386694c6518SBenno Rice #endif
387694c6518SBenno Rice 
388694c6518SBenno Rice 	ether_ifattach(ifp, eaddr);
389694c6518SBenno Rice 
390694c6518SBenno Rice 	/* Set up taskqueue */
3913c463a49SBenno Rice 	TASK_INIT(&sc->smc_intr, SMC_INTR_PRIORITY, smc_task_intr, ifp);
3926c3e93cbSGleb Smirnoff 	NET_TASK_INIT(&sc->smc_rx, SMC_RX_PRIORITY, smc_task_rx, ifp);
393694c6518SBenno Rice 	TASK_INIT(&sc->smc_tx, SMC_TX_PRIORITY, smc_task_tx, ifp);
394694c6518SBenno Rice 	sc->smc_tq = taskqueue_create_fast("smc_taskq", M_NOWAIT,
395694c6518SBenno Rice 	    taskqueue_thread_enqueue, &sc->smc_tq);
396694c6518SBenno Rice 	taskqueue_start_threads(&sc->smc_tq, 1, PI_NET, "%s taskq",
397694c6518SBenno Rice 	    device_get_nameunit(sc->smc_dev));
398694c6518SBenno Rice 
399694c6518SBenno Rice 	/* Mask all interrupts. */
400694c6518SBenno Rice 	sc->smc_mask = 0;
401694c6518SBenno Rice 	smc_write_1(sc, MSK, 0);
402694c6518SBenno Rice 
403694c6518SBenno Rice 	/* Wire up interrupt */
404694c6518SBenno Rice 	error = bus_setup_intr(dev, sc->smc_irq,
4053c463a49SBenno Rice 	    INTR_TYPE_NET|INTR_MPSAFE, smc_intr, NULL, sc, &sc->smc_ih);
406694c6518SBenno Rice 	if (error != 0)
407694c6518SBenno Rice 		goto done;
408694c6518SBenno Rice 
409694c6518SBenno Rice done:
410694c6518SBenno Rice 	if (error != 0)
411694c6518SBenno Rice 		smc_detach(dev);
412694c6518SBenno Rice 	return (error);
413694c6518SBenno Rice }
414694c6518SBenno Rice 
415694c6518SBenno Rice int
smc_detach(device_t dev)416694c6518SBenno Rice smc_detach(device_t dev)
417694c6518SBenno Rice {
418694c6518SBenno Rice 	int			type;
419694c6518SBenno Rice 	struct smc_softc	*sc;
420694c6518SBenno Rice 
421694c6518SBenno Rice 	sc = device_get_softc(dev);
422764e058aSBenno Rice 	SMC_LOCK(sc);
423764e058aSBenno Rice 	smc_stop(sc);
424764e058aSBenno Rice 	SMC_UNLOCK(sc);
425694c6518SBenno Rice 
426aec9f8e9SBenno Rice 	if (sc->smc_ifp != NULL) {
427aec9f8e9SBenno Rice 		ether_ifdetach(sc->smc_ifp);
428aec9f8e9SBenno Rice 	}
429aec9f8e9SBenno Rice 
430aec9f8e9SBenno Rice 	callout_drain(&sc->smc_watchdog);
431aec9f8e9SBenno Rice 	callout_drain(&sc->smc_mii_tick_ch);
432aec9f8e9SBenno Rice 
433694c6518SBenno Rice #ifdef DEVICE_POLLING
4348c259c50SJustin Hibbits 	if (sc->smc_if_getcapenable(ifp) & IFCAP_POLLING)
435694c6518SBenno Rice 		ether_poll_deregister(sc->smc_ifp);
436694c6518SBenno Rice #endif
437694c6518SBenno Rice 
438694c6518SBenno Rice 	if (sc->smc_ih != NULL)
439694c6518SBenno Rice 		bus_teardown_intr(sc->smc_dev, sc->smc_irq, sc->smc_ih);
440694c6518SBenno Rice 
4416e482159SBenno Rice 	if (sc->smc_tq != NULL) {
4426e482159SBenno Rice 		taskqueue_drain(sc->smc_tq, &sc->smc_intr);
4436e482159SBenno Rice 		taskqueue_drain(sc->smc_tq, &sc->smc_rx);
4446e482159SBenno Rice 		taskqueue_drain(sc->smc_tq, &sc->smc_tx);
4456e482159SBenno Rice 		taskqueue_free(sc->smc_tq);
4466e482159SBenno Rice 		sc->smc_tq = NULL;
4476e482159SBenno Rice 	}
4486e482159SBenno Rice 
449694c6518SBenno Rice 	if (sc->smc_ifp != NULL) {
450694c6518SBenno Rice 		if_free(sc->smc_ifp);
451694c6518SBenno Rice 	}
452694c6518SBenno Rice 
453694c6518SBenno Rice 	bus_generic_detach(sc->smc_dev);
454694c6518SBenno Rice 
455694c6518SBenno Rice 	if (sc->smc_reg != NULL) {
456694c6518SBenno Rice 		type = SYS_RES_IOPORT;
457694c6518SBenno Rice 		if (sc->smc_usemem)
458694c6518SBenno Rice 			type = SYS_RES_MEMORY;
459694c6518SBenno Rice 
460694c6518SBenno Rice 		bus_release_resource(sc->smc_dev, type, sc->smc_reg_rid,
461694c6518SBenno Rice 		    sc->smc_reg);
462694c6518SBenno Rice 	}
463694c6518SBenno Rice 
464694c6518SBenno Rice 	if (sc->smc_irq != NULL)
465694c6518SBenno Rice 		bus_release_resource(sc->smc_dev, SYS_RES_IRQ, sc->smc_irq_rid,
466694c6518SBenno Rice 		   sc->smc_irq);
467694c6518SBenno Rice 
468694c6518SBenno Rice 	if (mtx_initialized(&sc->smc_mtx))
469694c6518SBenno Rice 		mtx_destroy(&sc->smc_mtx);
470694c6518SBenno Rice 
471694c6518SBenno Rice 	return (0);
472694c6518SBenno Rice }
473694c6518SBenno Rice 
47422b33ca4SAndrew Turner static device_method_t smc_methods[] = {
47522b33ca4SAndrew Turner 	/* Device interface */
47622b33ca4SAndrew Turner 	DEVMETHOD(device_attach,	smc_attach),
47722b33ca4SAndrew Turner 	DEVMETHOD(device_detach,	smc_detach),
47822b33ca4SAndrew Turner 
47922b33ca4SAndrew Turner 	/* MII interface */
48022b33ca4SAndrew Turner 	DEVMETHOD(miibus_readreg,	smc_miibus_readreg),
48122b33ca4SAndrew Turner 	DEVMETHOD(miibus_writereg,	smc_miibus_writereg),
48222b33ca4SAndrew Turner 	DEVMETHOD(miibus_statchg,	smc_miibus_statchg),
48322b33ca4SAndrew Turner 	{ 0, 0 }
48422b33ca4SAndrew Turner };
48522b33ca4SAndrew Turner 
48622b33ca4SAndrew Turner driver_t smc_driver = {
48722b33ca4SAndrew Turner 	"smc",
48822b33ca4SAndrew Turner 	smc_methods,
48922b33ca4SAndrew Turner 	sizeof(struct smc_softc),
49022b33ca4SAndrew Turner };
49122b33ca4SAndrew Turner 
4923e38757dSJohn Baldwin DRIVER_MODULE(miibus, smc, miibus_driver, 0, 0);
49322b33ca4SAndrew Turner 
494694c6518SBenno Rice static void
smc_start(if_t ifp)4958c259c50SJustin Hibbits smc_start(if_t ifp)
496694c6518SBenno Rice {
497694c6518SBenno Rice 	struct smc_softc	*sc;
498694c6518SBenno Rice 
4998c259c50SJustin Hibbits 	sc = if_getsoftc(ifp);
500694c6518SBenno Rice 	SMC_LOCK(sc);
501694c6518SBenno Rice 	smc_start_locked(ifp);
502694c6518SBenno Rice 	SMC_UNLOCK(sc);
503694c6518SBenno Rice }
504694c6518SBenno Rice 
505694c6518SBenno Rice static void
smc_start_locked(if_t ifp)5068c259c50SJustin Hibbits smc_start_locked(if_t ifp)
507694c6518SBenno Rice {
508694c6518SBenno Rice 	struct smc_softc	*sc;
509694c6518SBenno Rice 	struct mbuf		*m;
510694c6518SBenno Rice 	u_int			len, npages, spin_count;
511694c6518SBenno Rice 
5128c259c50SJustin Hibbits 	sc = if_getsoftc(ifp);
513694c6518SBenno Rice 	SMC_ASSERT_LOCKED(sc);
514694c6518SBenno Rice 
5158c259c50SJustin Hibbits 	if (if_getdrvflags(ifp) & IFF_DRV_OACTIVE)
516694c6518SBenno Rice 		return;
5178c259c50SJustin Hibbits 	if (if_sendq_empty(ifp))
518694c6518SBenno Rice 		return;
519694c6518SBenno Rice 
520694c6518SBenno Rice 	/*
521694c6518SBenno Rice 	 * Grab the next packet.  If it's too big, drop it.
522694c6518SBenno Rice 	 */
5238c259c50SJustin Hibbits 	m = if_dequeue(ifp);
524694c6518SBenno Rice 	len = m_length(m, NULL);
525694c6518SBenno Rice 	len += (len & 1);
526694c6518SBenno Rice 	if (len > ETHER_MAX_LEN - ETHER_CRC_LEN) {
527694c6518SBenno Rice 		if_printf(ifp, "large packet discarded\n");
528c0973d1fSGleb Smirnoff 		if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
529694c6518SBenno Rice 		m_freem(m);
530694c6518SBenno Rice 		return; /* XXX readcheck? */
531694c6518SBenno Rice 	}
532694c6518SBenno Rice 
533694c6518SBenno Rice 	/*
534694c6518SBenno Rice 	 * Flag that we're busy.
535694c6518SBenno Rice 	 */
5368c259c50SJustin Hibbits 	if_setdrvflagbits(ifp, IFF_DRV_OACTIVE, 0);
537694c6518SBenno Rice 	sc->smc_pending = m;
538694c6518SBenno Rice 
539694c6518SBenno Rice 	/*
540694c6518SBenno Rice 	 * Work out how many 256 byte "pages" we need.  We have to include the
541694c6518SBenno Rice 	 * control data for the packet in this calculation.
542694c6518SBenno Rice 	 */
54394909337SRuslan Bukin 	npages = (len + PKT_CTRL_DATA_LEN) >> 8;
544694c6518SBenno Rice 	if (npages == 0)
545694c6518SBenno Rice 		npages = 1;
546694c6518SBenno Rice 
547694c6518SBenno Rice 	/*
548694c6518SBenno Rice 	 * Request memory.
549694c6518SBenno Rice 	 */
550694c6518SBenno Rice 	smc_select_bank(sc, 2);
551694c6518SBenno Rice 	smc_mmu_wait(sc);
552694c6518SBenno Rice 	smc_write_2(sc, MMUCR, MMUCR_CMD_TX_ALLOC | npages);
553694c6518SBenno Rice 
554694c6518SBenno Rice 	/*
555694c6518SBenno Rice 	 * Spin briefly to see if the allocation succeeds.
556694c6518SBenno Rice 	 */
557694c6518SBenno Rice 	spin_count = TX_ALLOC_WAIT_TIME;
558694c6518SBenno Rice 	do {
559694c6518SBenno Rice 		if (smc_read_1(sc, IST) & ALLOC_INT) {
560694c6518SBenno Rice 			smc_write_1(sc, ACK, ALLOC_INT);
561694c6518SBenno Rice 			break;
562694c6518SBenno Rice 		}
563694c6518SBenno Rice 	} while (--spin_count);
564694c6518SBenno Rice 
565694c6518SBenno Rice 	/*
566694c6518SBenno Rice 	 * If the allocation is taking too long, unmask the alloc interrupt
567694c6518SBenno Rice 	 * and wait.
568694c6518SBenno Rice 	 */
569694c6518SBenno Rice 	if (spin_count == 0) {
570694c6518SBenno Rice 		sc->smc_mask |= ALLOC_INT;
5718c259c50SJustin Hibbits 		if ((if_getcapenable(ifp) & IFCAP_POLLING) == 0)
572694c6518SBenno Rice 			smc_write_1(sc, MSK, sc->smc_mask);
573694c6518SBenno Rice 		return;
574694c6518SBenno Rice 	}
575694c6518SBenno Rice 
576cbc4d2dbSJohn Baldwin 	taskqueue_enqueue(sc->smc_tq, &sc->smc_tx);
577694c6518SBenno Rice }
578694c6518SBenno Rice 
579694c6518SBenno Rice static void
smc_task_tx(void * context,int pending)580694c6518SBenno Rice smc_task_tx(void *context, int pending)
581694c6518SBenno Rice {
5828c259c50SJustin Hibbits 	if_t			ifp;
583694c6518SBenno Rice 	struct smc_softc	*sc;
584694c6518SBenno Rice 	struct mbuf		*m, *m0;
585694c6518SBenno Rice 	u_int			packet, len;
586bd2369f6SStanislav Sedov 	int			last_len;
587694c6518SBenno Rice 	uint8_t			*data;
588694c6518SBenno Rice 
589694c6518SBenno Rice 	(void)pending;
5908c259c50SJustin Hibbits 	ifp = (if_t)context;
5918c259c50SJustin Hibbits 	sc = if_getsoftc(ifp);
592694c6518SBenno Rice 
593694c6518SBenno Rice 	SMC_LOCK(sc);
594694c6518SBenno Rice 
595694c6518SBenno Rice 	if (sc->smc_pending == NULL) {
596694c6518SBenno Rice 		SMC_UNLOCK(sc);
597694c6518SBenno Rice 		goto next_packet;
598694c6518SBenno Rice 	}
599694c6518SBenno Rice 
600694c6518SBenno Rice 	m = m0 = sc->smc_pending;
601694c6518SBenno Rice 	sc->smc_pending = NULL;
602694c6518SBenno Rice 	smc_select_bank(sc, 2);
603694c6518SBenno Rice 
604694c6518SBenno Rice 	/*
605694c6518SBenno Rice 	 * Check the allocation result.
606694c6518SBenno Rice 	 */
607694c6518SBenno Rice 	packet = smc_read_1(sc, ARR);
608694c6518SBenno Rice 
609694c6518SBenno Rice 	/*
610694c6518SBenno Rice 	 * If the allocation failed, requeue the packet and retry.
611694c6518SBenno Rice 	 */
612694c6518SBenno Rice 	if (packet & ARR_FAILED) {
6138c259c50SJustin Hibbits 		if_sendq_prepend(ifp, m);
614c0973d1fSGleb Smirnoff 		if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
6158c259c50SJustin Hibbits 		if_setdrvflagbits(ifp, 0, IFF_DRV_OACTIVE);
616694c6518SBenno Rice 		smc_start_locked(ifp);
617694c6518SBenno Rice 		SMC_UNLOCK(sc);
618694c6518SBenno Rice 		return;
619694c6518SBenno Rice 	}
620694c6518SBenno Rice 
621694c6518SBenno Rice 	/*
622694c6518SBenno Rice 	 * Tell the device to write to our packet number.
623694c6518SBenno Rice 	 */
624694c6518SBenno Rice 	smc_write_1(sc, PNR, packet);
625694c6518SBenno Rice 	smc_write_2(sc, PTR, 0 | PTR_AUTO_INCR);
626694c6518SBenno Rice 
627694c6518SBenno Rice 	/*
628694c6518SBenno Rice 	 * Tell the device how long the packet is (including control data).
629694c6518SBenno Rice 	 */
630694c6518SBenno Rice 	len = m_length(m, 0);
631694c6518SBenno Rice 	len += PKT_CTRL_DATA_LEN;
632694c6518SBenno Rice 	smc_write_2(sc, DATA0, 0);
633694c6518SBenno Rice 	smc_write_2(sc, DATA0, len);
634694c6518SBenno Rice 
635694c6518SBenno Rice 	/*
636694c6518SBenno Rice 	 * Push the data out to the device.
637694c6518SBenno Rice 	 */
638694c6518SBenno Rice 	data = NULL;
639bd2369f6SStanislav Sedov 	last_len = 0;
640694c6518SBenno Rice 	for (; m != NULL; m = m->m_next) {
641694c6518SBenno Rice 		data = mtod(m, uint8_t *);
642694c6518SBenno Rice 		smc_write_multi_2(sc, DATA0, (uint16_t *)data, m->m_len / 2);
643bd2369f6SStanislav Sedov 		last_len = m->m_len;
644694c6518SBenno Rice 	}
645694c6518SBenno Rice 
646694c6518SBenno Rice 	/*
647694c6518SBenno Rice 	 * Push out the control byte and and the odd byte if needed.
648694c6518SBenno Rice 	 */
649694c6518SBenno Rice 	if ((len & 1) != 0 && data != NULL)
650bd2369f6SStanislav Sedov 		smc_write_2(sc, DATA0, (CTRL_ODD << 8) | data[last_len - 1]);
651694c6518SBenno Rice 	else
652694c6518SBenno Rice 		smc_write_2(sc, DATA0, 0);
653694c6518SBenno Rice 
654694c6518SBenno Rice 	/*
655694c6518SBenno Rice 	 * Unmask the TX empty interrupt.
656694c6518SBenno Rice 	 */
657694c6518SBenno Rice 	sc->smc_mask |= TX_EMPTY_INT;
6588c259c50SJustin Hibbits 	if ((if_getcapenable(ifp) & IFCAP_POLLING) == 0)
659694c6518SBenno Rice 		smc_write_1(sc, MSK, sc->smc_mask);
660694c6518SBenno Rice 
661694c6518SBenno Rice 	/*
662694c6518SBenno Rice 	 * Enqueue the packet.
663694c6518SBenno Rice 	 */
664694c6518SBenno Rice 	smc_mmu_wait(sc);
665694c6518SBenno Rice 	smc_write_2(sc, MMUCR, MMUCR_CMD_ENQUEUE);
6663c463a49SBenno Rice 	callout_reset(&sc->smc_watchdog, hz * 2, smc_watchdog, sc);
667694c6518SBenno Rice 
668694c6518SBenno Rice 	/*
669694c6518SBenno Rice 	 * Finish up.
670694c6518SBenno Rice 	 */
671c0973d1fSGleb Smirnoff 	if_inc_counter(ifp, IFCOUNTER_OPACKETS, 1);
6728c259c50SJustin Hibbits 	if_setdrvflagbits(ifp, 0, IFF_DRV_OACTIVE);
673694c6518SBenno Rice 	SMC_UNLOCK(sc);
674694c6518SBenno Rice 	BPF_MTAP(ifp, m0);
675694c6518SBenno Rice 	m_freem(m0);
676694c6518SBenno Rice 
677694c6518SBenno Rice next_packet:
678694c6518SBenno Rice 	/*
679694c6518SBenno Rice 	 * See if there's anything else to do.
680694c6518SBenno Rice 	 */
681694c6518SBenno Rice 	smc_start(ifp);
682694c6518SBenno Rice }
683694c6518SBenno Rice 
684694c6518SBenno Rice static void
smc_task_rx(void * context,int pending)685694c6518SBenno Rice smc_task_rx(void *context, int pending)
686694c6518SBenno Rice {
687694c6518SBenno Rice 	u_int			packet, status, len;
688694c6518SBenno Rice 	uint8_t			*data;
6898c259c50SJustin Hibbits 	if_t			ifp;
690694c6518SBenno Rice 	struct smc_softc	*sc;
691694c6518SBenno Rice 	struct mbuf		*m, *mhead, *mtail;
692694c6518SBenno Rice 
693694c6518SBenno Rice 	(void)pending;
6948c259c50SJustin Hibbits 	ifp = (if_t)context;
6958c259c50SJustin Hibbits 	sc = if_getsoftc(ifp);
696694c6518SBenno Rice 	mhead = mtail = NULL;
697694c6518SBenno Rice 
698694c6518SBenno Rice 	SMC_LOCK(sc);
699694c6518SBenno Rice 
700694c6518SBenno Rice 	packet = smc_read_1(sc, FIFO_RX);
701694c6518SBenno Rice 	while ((packet & FIFO_EMPTY) == 0) {
702694c6518SBenno Rice 		/*
703694c6518SBenno Rice 		 * Grab an mbuf and attach a cluster.
704694c6518SBenno Rice 		 */
705c6499eccSGleb Smirnoff 		MGETHDR(m, M_NOWAIT, MT_DATA);
706694c6518SBenno Rice 		if (m == NULL) {
707694c6518SBenno Rice 			break;
708694c6518SBenno Rice 		}
7092a8c860fSRobert Watson 		if (!(MCLGET(m, M_NOWAIT))) {
710694c6518SBenno Rice 			m_freem(m);
711694c6518SBenno Rice 			break;
712694c6518SBenno Rice 		}
713694c6518SBenno Rice 
714694c6518SBenno Rice 		/*
715694c6518SBenno Rice 		 * Point to the start of the packet.
716694c6518SBenno Rice 		 */
717694c6518SBenno Rice 		smc_select_bank(sc, 2);
718694c6518SBenno Rice 		smc_write_1(sc, PNR, packet);
719694c6518SBenno Rice 		smc_write_2(sc, PTR, 0 | PTR_READ | PTR_RCV | PTR_AUTO_INCR);
720694c6518SBenno Rice 
721694c6518SBenno Rice 		/*
722694c6518SBenno Rice 		 * Grab status and packet length.
723694c6518SBenno Rice 		 */
724694c6518SBenno Rice 		status = smc_read_2(sc, DATA0);
725694c6518SBenno Rice 		len = smc_read_2(sc, DATA0) & RX_LEN_MASK;
726694c6518SBenno Rice 		len -= 6;
727694c6518SBenno Rice 		if (status & RX_ODDFRM)
728694c6518SBenno Rice 			len += 1;
729694c6518SBenno Rice 
730694c6518SBenno Rice 		/*
731694c6518SBenno Rice 		 * Check for errors.
732694c6518SBenno Rice 		 */
733694c6518SBenno Rice 		if (status & (RX_TOOSHORT | RX_TOOLNG | RX_BADCRC | RX_ALGNERR)) {
734694c6518SBenno Rice 			smc_mmu_wait(sc);
735694c6518SBenno Rice 			smc_write_2(sc, MMUCR, MMUCR_CMD_RELEASE);
736c0973d1fSGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
737694c6518SBenno Rice 			m_freem(m);
738694c6518SBenno Rice 			break;
739694c6518SBenno Rice 		}
740694c6518SBenno Rice 
741694c6518SBenno Rice 		/*
742694c6518SBenno Rice 		 * Set the mbuf up the way we want it.
743694c6518SBenno Rice 		 */
744694c6518SBenno Rice 		m->m_pkthdr.rcvif = ifp;
745694c6518SBenno Rice 		m->m_pkthdr.len = m->m_len = len + 2; /* XXX: Is this right? */
746694c6518SBenno Rice 		m_adj(m, ETHER_ALIGN);
747694c6518SBenno Rice 
748694c6518SBenno Rice 		/*
749694c6518SBenno Rice 		 * Pull the packet out of the device.  Make sure we're in the
750694c6518SBenno Rice 		 * right bank first as things may have changed while we were
751694c6518SBenno Rice 		 * allocating our mbuf.
752694c6518SBenno Rice 		 */
753694c6518SBenno Rice 		smc_select_bank(sc, 2);
754694c6518SBenno Rice 		smc_write_1(sc, PNR, packet);
755694c6518SBenno Rice 		smc_write_2(sc, PTR, 4 | PTR_READ | PTR_RCV | PTR_AUTO_INCR);
756694c6518SBenno Rice 		data = mtod(m, uint8_t *);
757694c6518SBenno Rice 		smc_read_multi_2(sc, DATA0, (uint16_t *)data, len >> 1);
758694c6518SBenno Rice 		if (len & 1) {
759694c6518SBenno Rice 			data += len & ~1;
760694c6518SBenno Rice 			*data = smc_read_1(sc, DATA0);
761694c6518SBenno Rice 		}
762694c6518SBenno Rice 
763694c6518SBenno Rice 		/*
764694c6518SBenno Rice 		 * Tell the device we're done.
765694c6518SBenno Rice 		 */
766694c6518SBenno Rice 		smc_mmu_wait(sc);
767694c6518SBenno Rice 		smc_write_2(sc, MMUCR, MMUCR_CMD_RELEASE);
768694c6518SBenno Rice 		if (m == NULL) {
769694c6518SBenno Rice 			break;
770694c6518SBenno Rice 		}
771694c6518SBenno Rice 
772694c6518SBenno Rice 		if (mhead == NULL) {
773694c6518SBenno Rice 			mhead = mtail = m;
774694c6518SBenno Rice 			m->m_next = NULL;
775694c6518SBenno Rice 		} else {
776694c6518SBenno Rice 			mtail->m_next = m;
777694c6518SBenno Rice 			mtail = m;
778694c6518SBenno Rice 		}
779694c6518SBenno Rice 		packet = smc_read_1(sc, FIFO_RX);
780694c6518SBenno Rice 	}
781694c6518SBenno Rice 
782694c6518SBenno Rice 	sc->smc_mask |= RCV_INT;
7838c259c50SJustin Hibbits 	if ((if_getcapenable(ifp) & IFCAP_POLLING) == 0)
784694c6518SBenno Rice 		smc_write_1(sc, MSK, sc->smc_mask);
785694c6518SBenno Rice 
786694c6518SBenno Rice 	SMC_UNLOCK(sc);
787694c6518SBenno Rice 
788694c6518SBenno Rice 	while (mhead != NULL) {
789694c6518SBenno Rice 		m = mhead;
790694c6518SBenno Rice 		mhead = mhead->m_next;
791694c6518SBenno Rice 		m->m_next = NULL;
792c0973d1fSGleb Smirnoff 		if_inc_counter(ifp, IFCOUNTER_IPACKETS, 1);
7938c259c50SJustin Hibbits 		if_input(ifp, m);
794694c6518SBenno Rice 	}
795694c6518SBenno Rice }
796694c6518SBenno Rice 
797694c6518SBenno Rice #ifdef DEVICE_POLLING
798eb847626SNick Hibma static int
smc_poll(if_t ifp,enum poll_cmd cmd,int count)7998c259c50SJustin Hibbits smc_poll(if_t ifp, enum poll_cmd cmd, int count)
800694c6518SBenno Rice {
801694c6518SBenno Rice 	struct smc_softc	*sc;
802694c6518SBenno Rice 
8038c259c50SJustin Hibbits 	sc = if_getsoftc(ifp);
804694c6518SBenno Rice 
805694c6518SBenno Rice 	SMC_LOCK(sc);
8068c259c50SJustin Hibbits 	if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) == 0) {
807694c6518SBenno Rice 		SMC_UNLOCK(sc);
808eb847626SNick Hibma 		return (0);
809694c6518SBenno Rice 	}
810694c6518SBenno Rice 	SMC_UNLOCK(sc);
811694c6518SBenno Rice 
812694c6518SBenno Rice 	if (cmd == POLL_AND_CHECK_STATUS)
813cbc4d2dbSJohn Baldwin 		taskqueue_enqueue(sc->smc_tq, &sc->smc_intr);
814eb847626SNick Hibma         return (0);
815694c6518SBenno Rice }
816694c6518SBenno Rice #endif
817694c6518SBenno Rice 
818694c6518SBenno Rice static int
smc_intr(void * context)819694c6518SBenno Rice smc_intr(void *context)
820694c6518SBenno Rice {
821694c6518SBenno Rice 	struct smc_softc	*sc;
82294909337SRuslan Bukin 	uint32_t curbank;
8233c463a49SBenno Rice 
8243c463a49SBenno Rice 	sc = (struct smc_softc *)context;
82594909337SRuslan Bukin 
82694909337SRuslan Bukin 	/*
82794909337SRuslan Bukin 	 * Save current bank and restore later in this function
82894909337SRuslan Bukin 	 */
82994909337SRuslan Bukin 	curbank = (smc_read_2(sc, BSR) & BSR_BANK_MASK);
83094909337SRuslan Bukin 
83160aa1fe6SOleksandr Tymoshenko 	/*
83260aa1fe6SOleksandr Tymoshenko 	 * Block interrupts in order to let smc_task_intr to kick in
83360aa1fe6SOleksandr Tymoshenko 	 */
83494909337SRuslan Bukin 	smc_select_bank(sc, 2);
83560aa1fe6SOleksandr Tymoshenko 	smc_write_1(sc, MSK, 0);
83694909337SRuslan Bukin 
83794909337SRuslan Bukin 	/* Restore bank */
83894909337SRuslan Bukin 	smc_select_bank(sc, curbank);
83994909337SRuslan Bukin 
840cbc4d2dbSJohn Baldwin 	taskqueue_enqueue(sc->smc_tq, &sc->smc_intr);
8413c463a49SBenno Rice 	return (FILTER_HANDLED);
8423c463a49SBenno Rice }
8433c463a49SBenno Rice 
8443c463a49SBenno Rice static void
smc_task_intr(void * context,int pending)8453c463a49SBenno Rice smc_task_intr(void *context, int pending)
8463c463a49SBenno Rice {
8473c463a49SBenno Rice 	struct smc_softc	*sc;
8488c259c50SJustin Hibbits 	if_t			ifp;
849694c6518SBenno Rice 	u_int			status, packet, counter, tcr;
850694c6518SBenno Rice 
8513c463a49SBenno Rice 	(void)pending;
8528c259c50SJustin Hibbits 	ifp = (if_t)context;
8538c259c50SJustin Hibbits 	sc = if_getsoftc(ifp);
854694c6518SBenno Rice 
855694c6518SBenno Rice 	SMC_LOCK(sc);
856764e058aSBenno Rice 
857694c6518SBenno Rice 	smc_select_bank(sc, 2);
858694c6518SBenno Rice 
859694c6518SBenno Rice 	/*
860694c6518SBenno Rice 	 * Find out what interrupts are flagged.
861694c6518SBenno Rice 	 */
862694c6518SBenno Rice 	status = smc_read_1(sc, IST) & sc->smc_mask;
863694c6518SBenno Rice 
864694c6518SBenno Rice 	/*
865694c6518SBenno Rice 	 * Transmit error
866694c6518SBenno Rice 	 */
867694c6518SBenno Rice 	if (status & TX_INT) {
868694c6518SBenno Rice 		/*
869694c6518SBenno Rice 		 * Kill off the packet if there is one and re-enable transmit.
870694c6518SBenno Rice 		 */
871694c6518SBenno Rice 		packet = smc_read_1(sc, FIFO_TX);
872694c6518SBenno Rice 		if ((packet & FIFO_EMPTY) == 0) {
87394909337SRuslan Bukin 			callout_stop(&sc->smc_watchdog);
87494909337SRuslan Bukin 			smc_select_bank(sc, 2);
875694c6518SBenno Rice 			smc_write_1(sc, PNR, packet);
876694c6518SBenno Rice 			smc_write_2(sc, PTR, 0 | PTR_READ |
877694c6518SBenno Rice 			    PTR_AUTO_INCR);
87894909337SRuslan Bukin 			smc_select_bank(sc, 0);
87994909337SRuslan Bukin 			tcr = smc_read_2(sc, EPHSR);
88094909337SRuslan Bukin #if 0
881694c6518SBenno Rice 			if ((tcr & EPHSR_TX_SUC) == 0)
882694c6518SBenno Rice 				device_printf(sc->smc_dev,
883694c6518SBenno Rice 				    "bad packet\n");
88494909337SRuslan Bukin #endif
88594909337SRuslan Bukin 			smc_select_bank(sc, 2);
886694c6518SBenno Rice 			smc_mmu_wait(sc);
887694c6518SBenno Rice 			smc_write_2(sc, MMUCR, MMUCR_CMD_RELEASE_PKT);
888694c6518SBenno Rice 
889694c6518SBenno Rice 			smc_select_bank(sc, 0);
890694c6518SBenno Rice 			tcr = smc_read_2(sc, TCR);
891694c6518SBenno Rice 			tcr |= TCR_TXENA | TCR_PAD_EN;
892694c6518SBenno Rice 			smc_write_2(sc, TCR, tcr);
893694c6518SBenno Rice 			smc_select_bank(sc, 2);
894cbc4d2dbSJohn Baldwin 			taskqueue_enqueue(sc->smc_tq, &sc->smc_tx);
895694c6518SBenno Rice 		}
896694c6518SBenno Rice 
897694c6518SBenno Rice 		/*
898694c6518SBenno Rice 		 * Ack the interrupt.
899694c6518SBenno Rice 		 */
900694c6518SBenno Rice 		smc_write_1(sc, ACK, TX_INT);
901694c6518SBenno Rice 	}
902694c6518SBenno Rice 
903694c6518SBenno Rice 	/*
904694c6518SBenno Rice 	 * Receive
905694c6518SBenno Rice 	 */
906694c6518SBenno Rice 	if (status & RCV_INT) {
907694c6518SBenno Rice 		smc_write_1(sc, ACK, RCV_INT);
908694c6518SBenno Rice 		sc->smc_mask &= ~RCV_INT;
909cbc4d2dbSJohn Baldwin 		taskqueue_enqueue(sc->smc_tq, &sc->smc_rx);
910694c6518SBenno Rice 	}
911694c6518SBenno Rice 
912694c6518SBenno Rice 	/*
913694c6518SBenno Rice 	 * Allocation
914694c6518SBenno Rice 	 */
915694c6518SBenno Rice 	if (status & ALLOC_INT) {
916694c6518SBenno Rice 		smc_write_1(sc, ACK, ALLOC_INT);
917694c6518SBenno Rice 		sc->smc_mask &= ~ALLOC_INT;
918cbc4d2dbSJohn Baldwin 		taskqueue_enqueue(sc->smc_tq, &sc->smc_tx);
919694c6518SBenno Rice 	}
920694c6518SBenno Rice 
921694c6518SBenno Rice 	/*
922694c6518SBenno Rice 	 * Receive overrun
923694c6518SBenno Rice 	 */
924694c6518SBenno Rice 	if (status & RX_OVRN_INT) {
925694c6518SBenno Rice 		smc_write_1(sc, ACK, RX_OVRN_INT);
926c0973d1fSGleb Smirnoff 		if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
927694c6518SBenno Rice 	}
928694c6518SBenno Rice 
929694c6518SBenno Rice 	/*
930694c6518SBenno Rice 	 * Transmit empty
931694c6518SBenno Rice 	 */
932694c6518SBenno Rice 	if (status & TX_EMPTY_INT) {
933694c6518SBenno Rice 		smc_write_1(sc, ACK, TX_EMPTY_INT);
934694c6518SBenno Rice 		sc->smc_mask &= ~TX_EMPTY_INT;
935694c6518SBenno Rice 		callout_stop(&sc->smc_watchdog);
936694c6518SBenno Rice 
937694c6518SBenno Rice 		/*
938694c6518SBenno Rice 		 * Update collision stats.
939694c6518SBenno Rice 		 */
940694c6518SBenno Rice 		smc_select_bank(sc, 0);
941694c6518SBenno Rice 		counter = smc_read_2(sc, ECR);
942694c6518SBenno Rice 		smc_select_bank(sc, 2);
94394b0d1aeSBjoern A. Zeeb 		if_inc_counter(ifp, IFCOUNTER_COLLISIONS,
944c0973d1fSGleb Smirnoff 		    ((counter & ECR_SNGLCOL_MASK) >> ECR_SNGLCOL_SHIFT) +
945c0973d1fSGleb Smirnoff 		    ((counter & ECR_MULCOL_MASK) >> ECR_MULCOL_SHIFT));
946694c6518SBenno Rice 
947694c6518SBenno Rice 		/*
948694c6518SBenno Rice 		 * See if there are any packets to transmit.
949694c6518SBenno Rice 		 */
950cbc4d2dbSJohn Baldwin 		taskqueue_enqueue(sc->smc_tq, &sc->smc_tx);
951694c6518SBenno Rice 	}
952694c6518SBenno Rice 
953694c6518SBenno Rice 	/*
954694c6518SBenno Rice 	 * Update the interrupt mask.
955694c6518SBenno Rice 	 */
95694909337SRuslan Bukin 	smc_select_bank(sc, 2);
9578c259c50SJustin Hibbits 	if ((if_getcapenable(ifp) & IFCAP_POLLING) == 0)
958694c6518SBenno Rice 		smc_write_1(sc, MSK, sc->smc_mask);
959694c6518SBenno Rice 
960694c6518SBenno Rice 	SMC_UNLOCK(sc);
961694c6518SBenno Rice }
962694c6518SBenno Rice 
9638c1093fcSMarius Strobl static uint32_t
smc_mii_bitbang_read(device_t dev)9648c1093fcSMarius Strobl smc_mii_bitbang_read(device_t dev)
965694c6518SBenno Rice {
9668c1093fcSMarius Strobl 	struct smc_softc	*sc;
9678c1093fcSMarius Strobl 	uint32_t		val;
9688c1093fcSMarius Strobl 
9698c1093fcSMarius Strobl 	sc = device_get_softc(dev);
970694c6518SBenno Rice 
971694c6518SBenno Rice 	SMC_ASSERT_LOCKED(sc);
972694c6518SBenno Rice 	KASSERT((smc_read_2(sc, BSR) & BSR_BANK_MASK) == 3,
9738c1093fcSMarius Strobl 	    ("%s: smc_mii_bitbang_read called with bank %d (!= 3)",
974694c6518SBenno Rice 	    device_get_nameunit(sc->smc_dev),
975694c6518SBenno Rice 	    smc_read_2(sc, BSR) & BSR_BANK_MASK));
976694c6518SBenno Rice 
9778c1093fcSMarius Strobl 	val = smc_read_2(sc, MGMT);
9788c1093fcSMarius Strobl 	smc_barrier(sc, MGMT, 2,
9798c1093fcSMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
980694c6518SBenno Rice 
981694c6518SBenno Rice 	return (val);
982694c6518SBenno Rice }
983694c6518SBenno Rice 
984694c6518SBenno Rice static void
smc_mii_bitbang_write(device_t dev,uint32_t val)9858c1093fcSMarius Strobl smc_mii_bitbang_write(device_t dev, uint32_t val)
986694c6518SBenno Rice {
9878c1093fcSMarius Strobl 	struct smc_softc	*sc;
9888c1093fcSMarius Strobl 
9898c1093fcSMarius Strobl 	sc = device_get_softc(dev);
990694c6518SBenno Rice 
991694c6518SBenno Rice 	SMC_ASSERT_LOCKED(sc);
992694c6518SBenno Rice 	KASSERT((smc_read_2(sc, BSR) & BSR_BANK_MASK) == 3,
9938c1093fcSMarius Strobl 	    ("%s: smc_mii_bitbang_write called with bank %d (!= 3)",
994694c6518SBenno Rice 	    device_get_nameunit(sc->smc_dev),
995694c6518SBenno Rice 	    smc_read_2(sc, BSR) & BSR_BANK_MASK));
996694c6518SBenno Rice 
9978c1093fcSMarius Strobl 	smc_write_2(sc, MGMT, val);
9988c1093fcSMarius Strobl 	smc_barrier(sc, MGMT, 2,
9998c1093fcSMarius Strobl 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
1000694c6518SBenno Rice }
1001694c6518SBenno Rice 
1002694c6518SBenno Rice int
smc_miibus_readreg(device_t dev,int phy,int reg)1003694c6518SBenno Rice smc_miibus_readreg(device_t dev, int phy, int reg)
1004694c6518SBenno Rice {
1005694c6518SBenno Rice 	struct smc_softc	*sc;
1006694c6518SBenno Rice 	int			val;
1007694c6518SBenno Rice 
1008694c6518SBenno Rice 	sc = device_get_softc(dev);
1009694c6518SBenno Rice 
1010694c6518SBenno Rice 	SMC_LOCK(sc);
1011694c6518SBenno Rice 
1012694c6518SBenno Rice 	smc_select_bank(sc, 3);
1013694c6518SBenno Rice 
10148c1093fcSMarius Strobl 	val = mii_bitbang_readreg(dev, &smc_mii_bitbang_ops, phy, reg);
1015694c6518SBenno Rice 
1016694c6518SBenno Rice 	SMC_UNLOCK(sc);
1017694c6518SBenno Rice 	return (val);
1018694c6518SBenno Rice }
1019694c6518SBenno Rice 
10208e45f0b7SAndriy Gapon int
smc_miibus_writereg(device_t dev,int phy,int reg,int data)1021694c6518SBenno Rice smc_miibus_writereg(device_t dev, int phy, int reg, int data)
1022694c6518SBenno Rice {
1023694c6518SBenno Rice 	struct smc_softc	*sc;
1024694c6518SBenno Rice 
1025694c6518SBenno Rice 	sc = device_get_softc(dev);
1026694c6518SBenno Rice 
1027694c6518SBenno Rice 	SMC_LOCK(sc);
1028694c6518SBenno Rice 
1029694c6518SBenno Rice 	smc_select_bank(sc, 3);
1030694c6518SBenno Rice 
10318c1093fcSMarius Strobl 	mii_bitbang_writereg(dev, &smc_mii_bitbang_ops, phy, reg, data);
1032694c6518SBenno Rice 
1033694c6518SBenno Rice 	SMC_UNLOCK(sc);
10348e45f0b7SAndriy Gapon 	return (0);
1035694c6518SBenno Rice }
1036694c6518SBenno Rice 
1037694c6518SBenno Rice void
smc_miibus_statchg(device_t dev)1038694c6518SBenno Rice smc_miibus_statchg(device_t dev)
1039694c6518SBenno Rice {
1040694c6518SBenno Rice 	struct smc_softc	*sc;
1041694c6518SBenno Rice 	struct mii_data		*mii;
1042694c6518SBenno Rice 	uint16_t		tcr;
1043694c6518SBenno Rice 
1044694c6518SBenno Rice 	sc = device_get_softc(dev);
1045694c6518SBenno Rice 	mii = device_get_softc(sc->smc_miibus);
1046694c6518SBenno Rice 
1047694c6518SBenno Rice 	SMC_LOCK(sc);
1048694c6518SBenno Rice 
1049694c6518SBenno Rice 	smc_select_bank(sc, 0);
1050694c6518SBenno Rice 	tcr = smc_read_2(sc, TCR);
1051694c6518SBenno Rice 
1052694c6518SBenno Rice 	if ((IFM_OPTIONS(mii->mii_media_active) & IFM_FDX) != 0)
1053694c6518SBenno Rice 		tcr |= TCR_SWFDUP;
1054694c6518SBenno Rice 	else
1055694c6518SBenno Rice 		tcr &= ~TCR_SWFDUP;
1056694c6518SBenno Rice 
1057694c6518SBenno Rice 	smc_write_2(sc, TCR, tcr);
1058694c6518SBenno Rice 
1059694c6518SBenno Rice 	SMC_UNLOCK(sc);
1060694c6518SBenno Rice }
1061694c6518SBenno Rice 
1062694c6518SBenno Rice static int
smc_mii_ifmedia_upd(if_t ifp)10638c259c50SJustin Hibbits smc_mii_ifmedia_upd(if_t ifp)
1064694c6518SBenno Rice {
1065694c6518SBenno Rice 	struct smc_softc	*sc;
1066694c6518SBenno Rice 	struct mii_data		*mii;
1067694c6518SBenno Rice 
10688c259c50SJustin Hibbits 	sc = if_getsoftc(ifp);
1069694c6518SBenno Rice 	if (sc->smc_miibus == NULL)
1070694c6518SBenno Rice 		return (ENXIO);
1071694c6518SBenno Rice 
1072694c6518SBenno Rice 	mii = device_get_softc(sc->smc_miibus);
1073694c6518SBenno Rice 	return (mii_mediachg(mii));
1074694c6518SBenno Rice }
1075694c6518SBenno Rice 
1076694c6518SBenno Rice static void
smc_mii_ifmedia_sts(if_t ifp,struct ifmediareq * ifmr)10778c259c50SJustin Hibbits smc_mii_ifmedia_sts(if_t ifp, struct ifmediareq *ifmr)
1078694c6518SBenno Rice {
1079694c6518SBenno Rice 	struct smc_softc	*sc;
1080694c6518SBenno Rice 	struct mii_data		*mii;
1081694c6518SBenno Rice 
10828c259c50SJustin Hibbits 	sc = if_getsoftc(ifp);
1083694c6518SBenno Rice 	if (sc->smc_miibus == NULL)
1084694c6518SBenno Rice 		return;
1085694c6518SBenno Rice 
1086694c6518SBenno Rice 	mii = device_get_softc(sc->smc_miibus);
1087694c6518SBenno Rice 	mii_pollstat(mii);
1088694c6518SBenno Rice 	ifmr->ifm_active = mii->mii_media_active;
1089694c6518SBenno Rice 	ifmr->ifm_status = mii->mii_media_status;
1090694c6518SBenno Rice }
1091694c6518SBenno Rice 
1092694c6518SBenno Rice static void
smc_mii_tick(void * context)1093694c6518SBenno Rice smc_mii_tick(void *context)
1094694c6518SBenno Rice {
1095694c6518SBenno Rice 	struct smc_softc	*sc;
1096694c6518SBenno Rice 
1097694c6518SBenno Rice 	sc = (struct smc_softc *)context;
1098694c6518SBenno Rice 
1099694c6518SBenno Rice 	if (sc->smc_miibus == NULL)
1100694c6518SBenno Rice 		return;
1101694c6518SBenno Rice 
11026e482159SBenno Rice 	SMC_UNLOCK(sc);
11036e482159SBenno Rice 
1104694c6518SBenno Rice 	mii_tick(device_get_softc(sc->smc_miibus));
1105694c6518SBenno Rice 	callout_reset(&sc->smc_mii_tick_ch, hz, smc_mii_tick, sc);
1106694c6518SBenno Rice }
1107694c6518SBenno Rice 
1108694c6518SBenno Rice static void
smc_mii_mediachg(struct smc_softc * sc)1109694c6518SBenno Rice smc_mii_mediachg(struct smc_softc *sc)
1110694c6518SBenno Rice {
1111694c6518SBenno Rice 
1112694c6518SBenno Rice 	if (sc->smc_miibus == NULL)
1113694c6518SBenno Rice 		return;
1114694c6518SBenno Rice 	mii_mediachg(device_get_softc(sc->smc_miibus));
1115694c6518SBenno Rice }
1116694c6518SBenno Rice 
1117694c6518SBenno Rice static int
smc_mii_mediaioctl(struct smc_softc * sc,struct ifreq * ifr,u_long command)1118694c6518SBenno Rice smc_mii_mediaioctl(struct smc_softc *sc, struct ifreq *ifr, u_long command)
1119694c6518SBenno Rice {
1120694c6518SBenno Rice 	struct mii_data	*mii;
1121694c6518SBenno Rice 
1122694c6518SBenno Rice 	if (sc->smc_miibus == NULL)
1123694c6518SBenno Rice 		return (EINVAL);
1124694c6518SBenno Rice 
1125694c6518SBenno Rice 	mii = device_get_softc(sc->smc_miibus);
1126694c6518SBenno Rice 	return (ifmedia_ioctl(sc->smc_ifp, ifr, &mii->mii_media, command));
1127694c6518SBenno Rice }
1128694c6518SBenno Rice 
1129694c6518SBenno Rice static void
smc_reset(struct smc_softc * sc)1130694c6518SBenno Rice smc_reset(struct smc_softc *sc)
1131694c6518SBenno Rice {
1132694c6518SBenno Rice 	u_int	ctr;
1133694c6518SBenno Rice 
1134694c6518SBenno Rice 	SMC_ASSERT_LOCKED(sc);
1135694c6518SBenno Rice 
1136694c6518SBenno Rice 	smc_select_bank(sc, 2);
1137694c6518SBenno Rice 
1138694c6518SBenno Rice 	/*
1139694c6518SBenno Rice 	 * Mask all interrupts.
1140694c6518SBenno Rice 	 */
1141694c6518SBenno Rice 	smc_write_1(sc, MSK, 0);
1142694c6518SBenno Rice 
1143694c6518SBenno Rice 	/*
1144694c6518SBenno Rice 	 * Tell the device to reset.
1145694c6518SBenno Rice 	 */
1146694c6518SBenno Rice 	smc_select_bank(sc, 0);
1147694c6518SBenno Rice 	smc_write_2(sc, RCR, RCR_SOFT_RST);
1148694c6518SBenno Rice 
1149694c6518SBenno Rice 	/*
1150694c6518SBenno Rice 	 * Set up the configuration register.
1151694c6518SBenno Rice 	 */
1152694c6518SBenno Rice 	smc_select_bank(sc, 1);
1153694c6518SBenno Rice 	smc_write_2(sc, CR, CR_EPH_POWER_EN);
1154694c6518SBenno Rice 	DELAY(1);
1155694c6518SBenno Rice 
1156694c6518SBenno Rice 	/*
1157694c6518SBenno Rice 	 * Turn off transmit and receive.
1158694c6518SBenno Rice 	 */
1159694c6518SBenno Rice 	smc_select_bank(sc, 0);
1160694c6518SBenno Rice 	smc_write_2(sc, TCR, 0);
1161694c6518SBenno Rice 	smc_write_2(sc, RCR, 0);
1162694c6518SBenno Rice 
1163694c6518SBenno Rice 	/*
1164694c6518SBenno Rice 	 * Set up the control register.
1165694c6518SBenno Rice 	 */
1166694c6518SBenno Rice 	smc_select_bank(sc, 1);
1167613e07c0SJohn Baldwin 	ctr = smc_read_2(sc, CTRL);
1168613e07c0SJohn Baldwin 	ctr |= CTRL_LE_ENABLE | CTRL_AUTO_RELEASE;
1169613e07c0SJohn Baldwin 	smc_write_2(sc, CTRL, ctr);
1170694c6518SBenno Rice 
1171694c6518SBenno Rice 	/*
1172694c6518SBenno Rice 	 * Reset the MMU.
1173694c6518SBenno Rice 	 */
1174694c6518SBenno Rice 	smc_select_bank(sc, 2);
1175694c6518SBenno Rice 	smc_mmu_wait(sc);
1176694c6518SBenno Rice 	smc_write_2(sc, MMUCR, MMUCR_CMD_MMU_RESET);
1177694c6518SBenno Rice }
1178694c6518SBenno Rice 
1179694c6518SBenno Rice static void
smc_enable(struct smc_softc * sc)1180694c6518SBenno Rice smc_enable(struct smc_softc *sc)
1181694c6518SBenno Rice {
11828c259c50SJustin Hibbits 	if_t	ifp;
1183694c6518SBenno Rice 
1184694c6518SBenno Rice 	SMC_ASSERT_LOCKED(sc);
1185694c6518SBenno Rice 	ifp = sc->smc_ifp;
1186694c6518SBenno Rice 
1187694c6518SBenno Rice 	/*
1188694c6518SBenno Rice 	 * Set up the receive/PHY control register.
1189694c6518SBenno Rice 	 */
1190694c6518SBenno Rice 	smc_select_bank(sc, 0);
1191694c6518SBenno Rice 	smc_write_2(sc, RPCR, RPCR_ANEG | (RPCR_LED_LINK_ANY << RPCR_LSA_SHIFT)
1192694c6518SBenno Rice 	    | (RPCR_LED_ACT_ANY << RPCR_LSB_SHIFT));
1193694c6518SBenno Rice 
1194694c6518SBenno Rice 	/*
1195694c6518SBenno Rice 	 * Set up the transmit and receive control registers.
1196694c6518SBenno Rice 	 */
1197694c6518SBenno Rice 	smc_write_2(sc, TCR, TCR_TXENA | TCR_PAD_EN);
1198694c6518SBenno Rice 	smc_write_2(sc, RCR, RCR_RXEN | RCR_STRIP_CRC);
1199694c6518SBenno Rice 
1200694c6518SBenno Rice 	/*
1201694c6518SBenno Rice 	 * Set up the interrupt mask.
1202694c6518SBenno Rice 	 */
1203694c6518SBenno Rice 	smc_select_bank(sc, 2);
1204694c6518SBenno Rice 	sc->smc_mask = EPH_INT | RX_OVRN_INT | RCV_INT | TX_INT;
12058c259c50SJustin Hibbits 	if ((if_getcapenable(ifp) & IFCAP_POLLING) != 0)
1206694c6518SBenno Rice 		smc_write_1(sc, MSK, sc->smc_mask);
1207694c6518SBenno Rice }
1208694c6518SBenno Rice 
1209694c6518SBenno Rice static void
smc_stop(struct smc_softc * sc)1210694c6518SBenno Rice smc_stop(struct smc_softc *sc)
1211694c6518SBenno Rice {
1212694c6518SBenno Rice 
1213694c6518SBenno Rice 	SMC_ASSERT_LOCKED(sc);
1214694c6518SBenno Rice 
1215694c6518SBenno Rice 	/*
12166e482159SBenno Rice 	 * Turn off callouts.
1217694c6518SBenno Rice 	 */
1218694c6518SBenno Rice 	callout_stop(&sc->smc_watchdog);
12196e482159SBenno Rice 	callout_stop(&sc->smc_mii_tick_ch);
1220694c6518SBenno Rice 
1221694c6518SBenno Rice 	/*
1222694c6518SBenno Rice 	 * Mask all interrupts.
1223694c6518SBenno Rice 	 */
1224694c6518SBenno Rice 	smc_select_bank(sc, 2);
1225694c6518SBenno Rice 	sc->smc_mask = 0;
1226694c6518SBenno Rice 	smc_write_1(sc, MSK, 0);
1227694c6518SBenno Rice #ifdef DEVICE_POLLING
1228694c6518SBenno Rice 	ether_poll_deregister(sc->smc_ifp);
12298c259c50SJustin Hibbits 	if_setcapenablebit(ifp, 0, IFCAP_POLLING);
1230694c6518SBenno Rice #endif
1231694c6518SBenno Rice 
1232694c6518SBenno Rice 	/*
1233694c6518SBenno Rice 	 * Disable transmit and receive.
1234694c6518SBenno Rice 	 */
1235694c6518SBenno Rice 	smc_select_bank(sc, 0);
1236694c6518SBenno Rice 	smc_write_2(sc, TCR, 0);
1237694c6518SBenno Rice 	smc_write_2(sc, RCR, 0);
1238694c6518SBenno Rice 
12398c259c50SJustin Hibbits 	if_setdrvflagbits(sc->smc_ifp, 0, IFF_DRV_RUNNING);
1240694c6518SBenno Rice }
1241694c6518SBenno Rice 
1242694c6518SBenno Rice static void
smc_watchdog(void * arg)1243694c6518SBenno Rice smc_watchdog(void *arg)
1244694c6518SBenno Rice {
12453c463a49SBenno Rice 	struct smc_softc	*sc;
1246694c6518SBenno Rice 
12473c463a49SBenno Rice 	sc = (struct smc_softc *)arg;
12483c463a49SBenno Rice 	device_printf(sc->smc_dev, "watchdog timeout\n");
1249cbc4d2dbSJohn Baldwin 	taskqueue_enqueue(sc->smc_tq, &sc->smc_intr);
1250694c6518SBenno Rice }
1251694c6518SBenno Rice 
1252694c6518SBenno Rice static void
smc_init(void * context)1253694c6518SBenno Rice smc_init(void *context)
1254694c6518SBenno Rice {
1255694c6518SBenno Rice 	struct smc_softc	*sc;
1256694c6518SBenno Rice 
1257694c6518SBenno Rice 	sc = (struct smc_softc *)context;
1258694c6518SBenno Rice 	SMC_LOCK(sc);
1259694c6518SBenno Rice 	smc_init_locked(sc);
1260694c6518SBenno Rice 	SMC_UNLOCK(sc);
1261694c6518SBenno Rice }
1262694c6518SBenno Rice 
1263694c6518SBenno Rice static void
smc_init_locked(struct smc_softc * sc)1264694c6518SBenno Rice smc_init_locked(struct smc_softc *sc)
1265694c6518SBenno Rice {
12668c259c50SJustin Hibbits 	if_t	ifp;
1267694c6518SBenno Rice 
1268694c6518SBenno Rice 	SMC_ASSERT_LOCKED(sc);
12698a318315SStanislav Sedov 	ifp = sc->smc_ifp;
12708c259c50SJustin Hibbits 	if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) != 0)
12718a318315SStanislav Sedov 		return;
1272694c6518SBenno Rice 
1273694c6518SBenno Rice 	smc_reset(sc);
1274694c6518SBenno Rice 	smc_enable(sc);
1275694c6518SBenno Rice 
12768c259c50SJustin Hibbits 	if_setdrvflagbits(ifp, IFF_DRV_RUNNING, 0);
12778c259c50SJustin Hibbits 	if_setdrvflagbits(ifp, 0, IFF_DRV_OACTIVE);
1278694c6518SBenno Rice 
1279694c6518SBenno Rice 	smc_start_locked(ifp);
1280694c6518SBenno Rice 
1281694c6518SBenno Rice 	if (sc->smc_mii_tick != NULL)
1282694c6518SBenno Rice 		callout_reset(&sc->smc_mii_tick_ch, hz, sc->smc_mii_tick, sc);
1283694c6518SBenno Rice 
1284694c6518SBenno Rice #ifdef DEVICE_POLLING
1285694c6518SBenno Rice 	SMC_UNLOCK(sc);
1286694c6518SBenno Rice 	ether_poll_register(smc_poll, ifp);
1287694c6518SBenno Rice 	SMC_LOCK(sc);
12888c259c50SJustin Hibbits 	if_setcapenablebit(ifp, IFCAP_POLLING, 0);
1289694c6518SBenno Rice #endif
1290694c6518SBenno Rice }
1291694c6518SBenno Rice 
1292694c6518SBenno Rice static int
smc_ioctl(if_t ifp,u_long cmd,caddr_t data)12938c259c50SJustin Hibbits smc_ioctl(if_t ifp, u_long cmd, caddr_t data)
1294694c6518SBenno Rice {
1295694c6518SBenno Rice 	struct smc_softc	*sc;
1296694c6518SBenno Rice 	int			error;
1297694c6518SBenno Rice 
12988c259c50SJustin Hibbits 	sc = if_getsoftc(ifp);
1299694c6518SBenno Rice 	error = 0;
1300694c6518SBenno Rice 
1301694c6518SBenno Rice 	switch (cmd) {
1302694c6518SBenno Rice 	case SIOCSIFFLAGS:
13038c259c50SJustin Hibbits 		if ((if_getflags(ifp) & IFF_UP) == 0 &&
13048c259c50SJustin Hibbits 		    (if_getdrvflags(ifp) & IFF_DRV_RUNNING) != 0) {
1305694c6518SBenno Rice 			SMC_LOCK(sc);
1306694c6518SBenno Rice 			smc_stop(sc);
1307694c6518SBenno Rice 			SMC_UNLOCK(sc);
1308694c6518SBenno Rice 		} else {
1309694c6518SBenno Rice 			smc_init(sc);
1310694c6518SBenno Rice 			if (sc->smc_mii_mediachg != NULL)
1311694c6518SBenno Rice 				sc->smc_mii_mediachg(sc);
1312694c6518SBenno Rice 		}
1313694c6518SBenno Rice 		break;
1314694c6518SBenno Rice 
1315694c6518SBenno Rice 	case SIOCADDMULTI:
1316694c6518SBenno Rice 	case SIOCDELMULTI:
1317694c6518SBenno Rice 		/* XXX
1318694c6518SBenno Rice 		SMC_LOCK(sc);
1319694c6518SBenno Rice 		smc_setmcast(sc);
1320694c6518SBenno Rice 		SMC_UNLOCK(sc);
1321694c6518SBenno Rice 		*/
1322694c6518SBenno Rice 		error = EINVAL;
1323694c6518SBenno Rice 		break;
1324694c6518SBenno Rice 
1325694c6518SBenno Rice 	case SIOCGIFMEDIA:
1326694c6518SBenno Rice 	case SIOCSIFMEDIA:
1327694c6518SBenno Rice 		if (sc->smc_mii_mediaioctl == NULL) {
1328694c6518SBenno Rice 			error = EINVAL;
1329694c6518SBenno Rice 			break;
1330694c6518SBenno Rice 		}
1331694c6518SBenno Rice 		sc->smc_mii_mediaioctl(sc, (struct ifreq *)data, cmd);
1332694c6518SBenno Rice 		break;
1333694c6518SBenno Rice 
1334694c6518SBenno Rice 	default:
1335694c6518SBenno Rice 		error = ether_ioctl(ifp, cmd, data);
1336694c6518SBenno Rice 		break;
1337694c6518SBenno Rice 	}
1338694c6518SBenno Rice 
1339694c6518SBenno Rice 	return (error);
1340694c6518SBenno Rice }
1341