1/*-
2 * SPDX-License-Identifier: BSD-4-Clause
3 *
4 * Copyright (c) 2000 Berkeley Software Design, Inc.
5 * Copyright (c) 1997, 1998, 1999, 2000
6 *	Bill Paul <wpaul@osd.bsdi.com>.  All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 *    notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 *    notice, this list of conditions and the following disclaimer in the
15 *    documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 *    must display the following acknowledgement:
18 *	This product includes software developed by Bill Paul.
19 * 4. Neither the name of the author nor the names of any co-contributors
20 *    may be used to endorse or promote products derived from this software
21 *    without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
27 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
33 * THE POSSIBILITY OF SUCH DAMAGE.
34 */
35
36#include <sys/cdefs.h>
37__FBSDID("$FreeBSD: releng/12.0/sys/dev/pcn/if_pcn.c 339735 2018-10-25 17:00:39Z brooks $");
38
39/*
40 * AMD Am79c972 fast ethernet PCI NIC driver. Datasheets are available
41 * from http://www.amd.com.
42 *
43 * The AMD PCnet/PCI controllers are more advanced and functional
44 * versions of the venerable 7990 LANCE. The PCnet/PCI chips retain
45 * backwards compatibility with the LANCE and thus can be made
46 * to work with older LANCE drivers. This is in fact how the
47 * PCnet/PCI chips were supported in FreeBSD originally. The trouble
48 * is that the PCnet/PCI devices offer several performance enhancements
49 * which can't be exploited in LANCE compatibility mode. Chief among
50 * these enhancements is the ability to perform PCI DMA operations
51 * using 32-bit addressing (which eliminates the need for ISA
52 * bounce-buffering), and special receive buffer alignment (which
53 * allows the receive handler to pass packets to the upper protocol
54 * layers without copying on both the x86 and alpha platforms).
55 */
56
57#include <sys/param.h>
58#include <sys/systm.h>
59#include <sys/sockio.h>
60#include <sys/mbuf.h>
61#include <sys/malloc.h>
62#include <sys/kernel.h>
63#include <sys/module.h>
64#include <sys/socket.h>
65
66#include <net/if.h>
67#include <net/if_var.h>
68#include <net/if_arp.h>
69#include <net/ethernet.h>
70#include <net/if_dl.h>
71#include <net/if_media.h>
72#include <net/if_types.h>
73
74#include <net/bpf.h>
75
76#include <vm/vm.h>              /* for vtophys */
77#include <vm/pmap.h>            /* for vtophys */
78#include <machine/bus.h>
79#include <machine/resource.h>
80#include <sys/bus.h>
81#include <sys/rman.h>
82
83#include <dev/mii/mii.h>
84#include <dev/mii/miivar.h>
85
86#include <dev/pci/pcireg.h>
87#include <dev/pci/pcivar.h>
88
89#define PCN_USEIOSPACE
90
91#include <dev/pcn/if_pcnreg.h>
92
93MODULE_DEPEND(pcn, pci, 1, 1, 1);
94MODULE_DEPEND(pcn, ether, 1, 1, 1);
95MODULE_DEPEND(pcn, miibus, 1, 1, 1);
96
97/* "device miibus" required.  See GENERIC if you get errors here. */
98#include "miibus_if.h"
99
100/*
101 * Various supported device vendors/types and their names.
102 */
103static const struct pcn_type pcn_devs[] = {
104	{ PCN_VENDORID, PCN_DEVICEID_PCNET, "AMD PCnet/PCI 10/100BaseTX" },
105	{ PCN_VENDORID, PCN_DEVICEID_HOME, "AMD PCnet/Home HomePNA" },
106	{ 0, 0, NULL }
107};
108
109static const struct pcn_chipid {
110	u_int32_t	id;
111	const char	*name;
112} pcn_chipid[] = {
113	{ Am79C971,	"Am79C971" },
114	{ Am79C972,	"Am79C972" },
115	{ Am79C973,	"Am79C973" },
116	{ Am79C978,	"Am79C978" },
117	{ Am79C975,	"Am79C975" },
118	{ Am79C976,	"Am79C976" },
119	{ 0, NULL },
120};
121
122static const char *pcn_chipid_name(u_int32_t);
123static u_int32_t pcn_chip_id(device_t);
124static const struct pcn_type *pcn_match(u_int16_t, u_int16_t);
125
126static u_int32_t pcn_csr_read(struct pcn_softc *, int);
127static u_int16_t pcn_csr_read16(struct pcn_softc *, int);
128static u_int16_t pcn_bcr_read16(struct pcn_softc *, int);
129static void pcn_csr_write(struct pcn_softc *, int, int);
130static u_int32_t pcn_bcr_read(struct pcn_softc *, int);
131static void pcn_bcr_write(struct pcn_softc *, int, int);
132
133static int pcn_probe(device_t);
134static int pcn_attach(device_t);
135static int pcn_detach(device_t);
136
137static int pcn_newbuf(struct pcn_softc *, int, struct mbuf *);
138static int pcn_encap(struct pcn_softc *, struct mbuf *, u_int32_t *);
139static void pcn_rxeof(struct pcn_softc *);
140static void pcn_txeof(struct pcn_softc *);
141static void pcn_intr(void *);
142static void pcn_tick(void *);
143static void pcn_start(struct ifnet *);
144static void pcn_start_locked(struct ifnet *);
145static int pcn_ioctl(struct ifnet *, u_long, caddr_t);
146static void pcn_init(void *);
147static void pcn_init_locked(struct pcn_softc *);
148static void pcn_stop(struct pcn_softc *);
149static void pcn_watchdog(struct pcn_softc *);
150static int pcn_shutdown(device_t);
151static int pcn_ifmedia_upd(struct ifnet *);
152static void pcn_ifmedia_sts(struct ifnet *, struct ifmediareq *);
153
154static int pcn_miibus_readreg(device_t, int, int);
155static int pcn_miibus_writereg(device_t, int, int, int);
156static void pcn_miibus_statchg(device_t);
157
158static void pcn_setfilt(struct ifnet *);
159static void pcn_setmulti(struct pcn_softc *);
160static void pcn_reset(struct pcn_softc *);
161static int pcn_list_rx_init(struct pcn_softc *);
162static int pcn_list_tx_init(struct pcn_softc *);
163
164#ifdef PCN_USEIOSPACE
165#define PCN_RES			SYS_RES_IOPORT
166#define PCN_RID			PCN_PCI_LOIO
167#else
168#define PCN_RES			SYS_RES_MEMORY
169#define PCN_RID			PCN_PCI_LOMEM
170#endif
171
172static device_method_t pcn_methods[] = {
173	/* Device interface */
174	DEVMETHOD(device_probe,		pcn_probe),
175	DEVMETHOD(device_attach,	pcn_attach),
176	DEVMETHOD(device_detach,	pcn_detach),
177	DEVMETHOD(device_shutdown,	pcn_shutdown),
178
179	/* MII interface */
180	DEVMETHOD(miibus_readreg,	pcn_miibus_readreg),
181	DEVMETHOD(miibus_writereg,	pcn_miibus_writereg),
182	DEVMETHOD(miibus_statchg,	pcn_miibus_statchg),
183
184	DEVMETHOD_END
185};
186
187static driver_t pcn_driver = {
188	"pcn",
189	pcn_methods,
190	sizeof(struct pcn_softc)
191};
192
193static devclass_t pcn_devclass;
194
195DRIVER_MODULE(pcn, pci, pcn_driver, pcn_devclass, 0, 0);
196MODULE_PNP_INFO("U16:vendor;U16:device", pci, pcn, pcn_devs,
197    nitems(pcn_devs) - 1);
198DRIVER_MODULE(miibus, pcn, miibus_driver, miibus_devclass, 0, 0);
199
200#define PCN_CSR_SETBIT(sc, reg, x)			\
201	pcn_csr_write(sc, reg, pcn_csr_read(sc, reg) | (x))
202
203#define PCN_CSR_CLRBIT(sc, reg, x)			\
204	pcn_csr_write(sc, reg, pcn_csr_read(sc, reg) & ~(x))
205
206#define PCN_BCR_SETBIT(sc, reg, x)			\
207	pcn_bcr_write(sc, reg, pcn_bcr_read(sc, reg) | (x))
208
209#define PCN_BCR_CLRBIT(sc, reg, x)			\
210	pcn_bcr_write(sc, reg, pcn_bcr_read(sc, reg) & ~(x))
211
212static u_int32_t
213pcn_csr_read(sc, reg)
214	struct pcn_softc	*sc;
215	int			reg;
216{
217	CSR_WRITE_4(sc, PCN_IO32_RAP, reg);
218	return(CSR_READ_4(sc, PCN_IO32_RDP));
219}
220
221static u_int16_t
222pcn_csr_read16(sc, reg)
223	struct pcn_softc	*sc;
224	int			reg;
225{
226	CSR_WRITE_2(sc, PCN_IO16_RAP, reg);
227	return(CSR_READ_2(sc, PCN_IO16_RDP));
228}
229
230static void
231pcn_csr_write(sc, reg, val)
232	struct pcn_softc	*sc;
233	int			reg;
234	int			val;
235{
236	CSR_WRITE_4(sc, PCN_IO32_RAP, reg);
237	CSR_WRITE_4(sc, PCN_IO32_RDP, val);
238	return;
239}
240
241static u_int32_t
242pcn_bcr_read(sc, reg)
243	struct pcn_softc	*sc;
244	int			reg;
245{
246	CSR_WRITE_4(sc, PCN_IO32_RAP, reg);
247	return(CSR_READ_4(sc, PCN_IO32_BDP));
248}
249
250static u_int16_t
251pcn_bcr_read16(sc, reg)
252	struct pcn_softc	*sc;
253	int			reg;
254{
255	CSR_WRITE_2(sc, PCN_IO16_RAP, reg);
256	return(CSR_READ_2(sc, PCN_IO16_BDP));
257}
258
259static void
260pcn_bcr_write(sc, reg, val)
261	struct pcn_softc	*sc;
262	int			reg;
263	int			val;
264{
265	CSR_WRITE_4(sc, PCN_IO32_RAP, reg);
266	CSR_WRITE_4(sc, PCN_IO32_BDP, val);
267	return;
268}
269
270static int
271pcn_miibus_readreg(dev, phy, reg)
272	device_t		dev;
273	int			phy, reg;
274{
275	struct pcn_softc	*sc;
276	int			val;
277
278	sc = device_get_softc(dev);
279
280	/*
281	 * At least Am79C971 with DP83840A wedge when isolating the
282	 * external PHY so we can't allow multiple external PHYs.
283	 * There are cards that use Am79C971 with both the internal
284	 * and an external PHY though.
285	 * For internal PHYs it doesn't really matter whether we can
286	 * isolate the remaining internal and the external ones in
287	 * the PHY drivers as the internal PHYs have to be enabled
288	 * individually in PCN_BCR_PHYSEL, PCN_CSR_MODE, etc.
289	 * With Am79C97{3,5,8} we don't support switching beetween
290	 * the internal and external PHYs, yet, so we can't allow
291	 * multiple PHYs with these either.
292	 * Am79C97{2,6} actually only support external PHYs (not
293	 * connectable internal ones respond at the usual addresses,
294	 * which don't hurt if we let them show up on the bus) and
295	 * isolating them works.
296	 */
297	if (((sc->pcn_type == Am79C971 && phy != PCN_PHYAD_10BT) ||
298	    sc->pcn_type == Am79C973 || sc->pcn_type == Am79C975 ||
299	    sc->pcn_type == Am79C978) && sc->pcn_extphyaddr != -1 &&
300	    phy != sc->pcn_extphyaddr)
301		return(0);
302
303	pcn_bcr_write(sc, PCN_BCR_MIIADDR, reg | (phy << 5));
304	val = pcn_bcr_read(sc, PCN_BCR_MIIDATA) & 0xFFFF;
305	if (val == 0xFFFF)
306		return(0);
307
308	if (((sc->pcn_type == Am79C971 && phy != PCN_PHYAD_10BT) ||
309	    sc->pcn_type == Am79C973 || sc->pcn_type == Am79C975 ||
310	    sc->pcn_type == Am79C978) && sc->pcn_extphyaddr == -1)
311		sc->pcn_extphyaddr = phy;
312
313	return(val);
314}
315
316static int
317pcn_miibus_writereg(dev, phy, reg, data)
318	device_t		dev;
319	int			phy, reg, data;
320{
321	struct pcn_softc	*sc;
322
323	sc = device_get_softc(dev);
324
325	pcn_bcr_write(sc, PCN_BCR_MIIADDR, reg | (phy << 5));
326	pcn_bcr_write(sc, PCN_BCR_MIIDATA, data);
327
328	return(0);
329}
330
331static void
332pcn_miibus_statchg(dev)
333	device_t		dev;
334{
335	struct pcn_softc	*sc;
336	struct mii_data		*mii;
337
338	sc = device_get_softc(dev);
339	mii = device_get_softc(sc->pcn_miibus);
340
341	if ((mii->mii_media_active & IFM_GMASK) == IFM_FDX) {
342		PCN_BCR_SETBIT(sc, PCN_BCR_DUPLEX, PCN_DUPLEX_FDEN);
343	} else {
344		PCN_BCR_CLRBIT(sc, PCN_BCR_DUPLEX, PCN_DUPLEX_FDEN);
345	}
346
347	return;
348}
349
350static void
351pcn_setmulti(sc)
352	struct pcn_softc	*sc;
353{
354	struct ifnet		*ifp;
355	struct ifmultiaddr	*ifma;
356	u_int32_t		h, i;
357	u_int16_t		hashes[4] = { 0, 0, 0, 0 };
358
359	ifp = sc->pcn_ifp;
360
361	PCN_CSR_SETBIT(sc, PCN_CSR_EXTCTL1, PCN_EXTCTL1_SPND);
362
363	if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
364		for (i = 0; i < 4; i++)
365			pcn_csr_write(sc, PCN_CSR_MAR0 + i, 0xFFFF);
366		PCN_CSR_CLRBIT(sc, PCN_CSR_EXTCTL1, PCN_EXTCTL1_SPND);
367		return;
368	}
369
370	/* first, zot all the existing hash bits */
371	for (i = 0; i < 4; i++)
372		pcn_csr_write(sc, PCN_CSR_MAR0 + i, 0);
373
374	/* now program new ones */
375	if_maddr_rlock(ifp);
376	TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
377		if (ifma->ifma_addr->sa_family != AF_LINK)
378			continue;
379		h = ether_crc32_le(LLADDR((struct sockaddr_dl *)
380		    ifma->ifma_addr), ETHER_ADDR_LEN) >> 26;
381		hashes[h >> 4] |= 1 << (h & 0xF);
382	}
383	if_maddr_runlock(ifp);
384
385	for (i = 0; i < 4; i++)
386		pcn_csr_write(sc, PCN_CSR_MAR0 + i, hashes[i]);
387
388	PCN_CSR_CLRBIT(sc, PCN_CSR_EXTCTL1, PCN_EXTCTL1_SPND);
389
390	return;
391}
392
393static void
394pcn_reset(sc)
395	struct pcn_softc	*sc;
396{
397	/*
398	 * Issue a reset by reading from the RESET register.
399	 * Note that we don't know if the chip is operating in
400	 * 16-bit or 32-bit mode at this point, so we attempt
401	 * to reset the chip both ways. If one fails, the other
402	 * will succeed.
403	 */
404	CSR_READ_2(sc, PCN_IO16_RESET);
405	CSR_READ_4(sc, PCN_IO32_RESET);
406
407	/* Wait a little while for the chip to get its brains in order. */
408	DELAY(1000);
409
410	/* Select 32-bit (DWIO) mode */
411	CSR_WRITE_4(sc, PCN_IO32_RDP, 0);
412
413	/* Select software style 3. */
414	pcn_bcr_write(sc, PCN_BCR_SSTYLE, PCN_SWSTYLE_PCNETPCI_BURST);
415
416        return;
417}
418
419static const char *
420pcn_chipid_name(u_int32_t id)
421{
422	const struct pcn_chipid *p;
423
424	p = pcn_chipid;
425	while (p->name) {
426		if (id == p->id)
427			return (p->name);
428		p++;
429	}
430	return ("Unknown");
431}
432
433static u_int32_t
434pcn_chip_id(device_t dev)
435{
436	struct pcn_softc	*sc;
437	u_int32_t		chip_id;
438
439	sc = device_get_softc(dev);
440	/*
441	 * Note: we can *NOT* put the chip into
442	 * 32-bit mode yet. The le(4) driver will only
443	 * work in 16-bit mode, and once the chip
444	 * goes into 32-bit mode, the only way to
445	 * get it out again is with a hardware reset.
446	 * So if pcn_probe() is called before the
447	 * le(4) driver's probe routine, the chip will
448	 * be locked into 32-bit operation and the
449	 * le(4) driver will be unable to attach to it.
450	 * Note II: if the chip happens to already
451	 * be in 32-bit mode, we still need to check
452	 * the chip ID, but first we have to detect
453	 * 32-bit mode using only 16-bit operations.
454	 * The safest way to do this is to read the
455	 * PCI subsystem ID from BCR23/24 and compare
456	 * that with the value read from PCI config
457	 * space.
458	 */
459	chip_id = pcn_bcr_read16(sc, PCN_BCR_PCISUBSYSID);
460	chip_id <<= 16;
461	chip_id |= pcn_bcr_read16(sc, PCN_BCR_PCISUBVENID);
462	/*
463	 * Note III: the test for 0x10001000 is a hack to
464	 * pacify VMware, who's pseudo-PCnet interface is
465	 * broken. Reading the subsystem register from PCI
466	 * config space yields 0x00000000 while reading the
467	 * same value from I/O space yields 0x10001000. It's
468	 * not supposed to be that way.
469	 */
470	if (chip_id == pci_read_config(dev,
471	    PCIR_SUBVEND_0, 4) || chip_id == 0x10001000) {
472		/* We're in 16-bit mode. */
473		chip_id = pcn_csr_read16(sc, PCN_CSR_CHIPID1);
474		chip_id <<= 16;
475		chip_id |= pcn_csr_read16(sc, PCN_CSR_CHIPID0);
476	} else {
477		/* We're in 32-bit mode. */
478		chip_id = pcn_csr_read(sc, PCN_CSR_CHIPID1);
479		chip_id <<= 16;
480		chip_id |= pcn_csr_read(sc, PCN_CSR_CHIPID0);
481	}
482
483	return (chip_id);
484}
485
486static const struct pcn_type *
487pcn_match(u_int16_t vid, u_int16_t did)
488{
489	const struct pcn_type	*t;
490
491	t = pcn_devs;
492	while (t->pcn_name != NULL) {
493		if ((vid == t->pcn_vid) && (did == t->pcn_did))
494			return (t);
495		t++;
496	}
497	return (NULL);
498}
499
500/*
501 * Probe for an AMD chip. Check the PCI vendor and device
502 * IDs against our list and return a device name if we find a match.
503 */
504static int
505pcn_probe(dev)
506	device_t		dev;
507{
508	const struct pcn_type	*t;
509	struct pcn_softc	*sc;
510	int			rid;
511	u_int32_t		chip_id;
512
513	t = pcn_match(pci_get_vendor(dev), pci_get_device(dev));
514	if (t == NULL)
515		return (ENXIO);
516	sc = device_get_softc(dev);
517
518	/*
519	 * Temporarily map the I/O space so we can read the chip ID register.
520	 */
521	rid = PCN_RID;
522	sc->pcn_res = bus_alloc_resource_any(dev, PCN_RES, &rid, RF_ACTIVE);
523	if (sc->pcn_res == NULL) {
524		device_printf(dev, "couldn't map ports/memory\n");
525		return(ENXIO);
526	}
527	sc->pcn_btag = rman_get_bustag(sc->pcn_res);
528	sc->pcn_bhandle = rman_get_bushandle(sc->pcn_res);
529
530	chip_id = pcn_chip_id(dev);
531
532	bus_release_resource(dev, PCN_RES, PCN_RID, sc->pcn_res);
533
534	switch((chip_id >> 12) & PART_MASK) {
535	case Am79C971:
536	case Am79C972:
537	case Am79C973:
538	case Am79C975:
539	case Am79C976:
540	case Am79C978:
541		break;
542	default:
543		return(ENXIO);
544	}
545	device_set_desc(dev, t->pcn_name);
546	return(BUS_PROBE_DEFAULT);
547}
548
549/*
550 * Attach the interface. Allocate softc structures, do ifmedia
551 * setup and ethernet/BPF attach.
552 */
553static int
554pcn_attach(dev)
555	device_t		dev;
556{
557	u_int32_t		eaddr[2];
558	struct pcn_softc	*sc;
559	struct mii_data		*mii;
560	struct mii_softc	*miisc;
561	struct ifnet		*ifp;
562	int			error = 0, rid;
563
564	sc = device_get_softc(dev);
565
566	/* Initialize our mutex. */
567	mtx_init(&sc->pcn_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
568	    MTX_DEF);
569	/*
570	 * Map control/status registers.
571	 */
572	pci_enable_busmaster(dev);
573
574	/* Retrieve the chip ID */
575	sc->pcn_type = (pcn_chip_id(dev) >> 12) & PART_MASK;
576	device_printf(dev, "Chip ID %04x (%s)\n",
577		sc->pcn_type, pcn_chipid_name(sc->pcn_type));
578
579	rid = PCN_RID;
580	sc->pcn_res = bus_alloc_resource_any(dev, PCN_RES, &rid, RF_ACTIVE);
581
582	if (sc->pcn_res == NULL) {
583		device_printf(dev, "couldn't map ports/memory\n");
584		error = ENXIO;
585		goto fail;
586	}
587
588	sc->pcn_btag = rman_get_bustag(sc->pcn_res);
589	sc->pcn_bhandle = rman_get_bushandle(sc->pcn_res);
590
591	/* Allocate interrupt */
592	rid = 0;
593	sc->pcn_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
594	    RF_SHAREABLE | RF_ACTIVE);
595
596	if (sc->pcn_irq == NULL) {
597		device_printf(dev, "couldn't map interrupt\n");
598		error = ENXIO;
599		goto fail;
600	}
601
602	/* Reset the adapter. */
603	pcn_reset(sc);
604
605	/*
606	 * Get station address from the EEPROM.
607	 */
608	eaddr[0] = CSR_READ_4(sc, PCN_IO32_APROM00);
609	eaddr[1] = CSR_READ_4(sc, PCN_IO32_APROM01);
610
611	callout_init_mtx(&sc->pcn_stat_callout, &sc->pcn_mtx, 0);
612
613	sc->pcn_ldata = contigmalloc(sizeof(struct pcn_list_data), M_DEVBUF,
614	    M_NOWAIT, 0, 0xffffffff, PAGE_SIZE, 0);
615
616	if (sc->pcn_ldata == NULL) {
617		device_printf(dev, "no memory for list buffers!\n");
618		error = ENXIO;
619		goto fail;
620	}
621	bzero(sc->pcn_ldata, sizeof(struct pcn_list_data));
622
623	ifp = sc->pcn_ifp = if_alloc(IFT_ETHER);
624	if (ifp == NULL) {
625		device_printf(dev, "can not if_alloc()\n");
626		error = ENOSPC;
627		goto fail;
628	}
629	ifp->if_softc = sc;
630	if_initname(ifp, device_get_name(dev), device_get_unit(dev));
631	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
632	ifp->if_ioctl = pcn_ioctl;
633	ifp->if_start = pcn_start;
634	ifp->if_init = pcn_init;
635	ifp->if_snd.ifq_maxlen = PCN_TX_LIST_CNT - 1;
636
637	/*
638	 * Do MII setup.
639	 * See the comment in pcn_miibus_readreg() for why we can't
640	 * universally pass MIIF_NOISOLATE here.
641	 */
642	sc->pcn_extphyaddr = -1;
643	error = mii_attach(dev, &sc->pcn_miibus, ifp, pcn_ifmedia_upd,
644	   pcn_ifmedia_sts, BMSR_DEFCAPMASK, MII_PHY_ANY, MII_OFFSET_ANY, 0);
645	if (error != 0) {
646		device_printf(dev, "attaching PHYs failed\n");
647		goto fail;
648	}
649	/*
650	 * Record the media instances of internal PHYs, which map the
651	 * built-in interfaces to the MII, so we can set the active
652	 * PHY/port based on the currently selected media.
653	 */
654	sc->pcn_inst_10bt = -1;
655	mii = device_get_softc(sc->pcn_miibus);
656	LIST_FOREACH(miisc, &mii->mii_phys, mii_list) {
657		switch (miisc->mii_phy) {
658		case PCN_PHYAD_10BT:
659			sc->pcn_inst_10bt = miisc->mii_inst;
660			break;
661		/*
662		 * XXX deal with the Am79C97{3,5} internal 100baseT
663		 * and the Am79C978 internal HomePNA PHYs.
664		 */
665		}
666	}
667
668	/*
669	 * Call MI attach routine.
670	 */
671	ether_ifattach(ifp, (u_int8_t *) eaddr);
672
673	/* Hook interrupt last to avoid having to lock softc */
674	error = bus_setup_intr(dev, sc->pcn_irq, INTR_TYPE_NET | INTR_MPSAFE,
675	    NULL, pcn_intr, sc, &sc->pcn_intrhand);
676
677	if (error) {
678		device_printf(dev, "couldn't set up irq\n");
679		ether_ifdetach(ifp);
680		goto fail;
681	}
682
683fail:
684	if (error)
685		pcn_detach(dev);
686
687	return(error);
688}
689
690/*
691 * Shutdown hardware and free up resources. This can be called any
692 * time after the mutex has been initialized. It is called in both
693 * the error case in attach and the normal detach case so it needs
694 * to be careful about only freeing resources that have actually been
695 * allocated.
696 */
697static int
698pcn_detach(dev)
699	device_t		dev;
700{
701	struct pcn_softc	*sc;
702	struct ifnet		*ifp;
703
704	sc = device_get_softc(dev);
705	ifp = sc->pcn_ifp;
706
707	KASSERT(mtx_initialized(&sc->pcn_mtx), ("pcn mutex not initialized"));
708
709	/* These should only be active if attach succeeded */
710	if (device_is_attached(dev)) {
711		PCN_LOCK(sc);
712		pcn_reset(sc);
713		pcn_stop(sc);
714		PCN_UNLOCK(sc);
715		callout_drain(&sc->pcn_stat_callout);
716		ether_ifdetach(ifp);
717	}
718	if (sc->pcn_miibus)
719		device_delete_child(dev, sc->pcn_miibus);
720	bus_generic_detach(dev);
721
722	if (sc->pcn_intrhand)
723		bus_teardown_intr(dev, sc->pcn_irq, sc->pcn_intrhand);
724	if (sc->pcn_irq)
725		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->pcn_irq);
726	if (sc->pcn_res)
727		bus_release_resource(dev, PCN_RES, PCN_RID, sc->pcn_res);
728
729	if (ifp)
730		if_free(ifp);
731
732	if (sc->pcn_ldata) {
733		contigfree(sc->pcn_ldata, sizeof(struct pcn_list_data),
734		    M_DEVBUF);
735	}
736
737	mtx_destroy(&sc->pcn_mtx);
738
739	return(0);
740}
741
742/*
743 * Initialize the transmit descriptors.
744 */
745static int
746pcn_list_tx_init(sc)
747	struct pcn_softc	*sc;
748{
749	struct pcn_list_data	*ld;
750	struct pcn_ring_data	*cd;
751	int			i;
752
753	cd = &sc->pcn_cdata;
754	ld = sc->pcn_ldata;
755
756	for (i = 0; i < PCN_TX_LIST_CNT; i++) {
757		cd->pcn_tx_chain[i] = NULL;
758		ld->pcn_tx_list[i].pcn_tbaddr = 0;
759		ld->pcn_tx_list[i].pcn_txctl = 0;
760		ld->pcn_tx_list[i].pcn_txstat = 0;
761	}
762
763	cd->pcn_tx_prod = cd->pcn_tx_cons = cd->pcn_tx_cnt = 0;
764
765	return(0);
766}
767
768
769/*
770 * Initialize the RX descriptors and allocate mbufs for them.
771 */
772static int
773pcn_list_rx_init(sc)
774	struct pcn_softc	*sc;
775{
776	struct pcn_ring_data	*cd;
777	int			i;
778
779	cd = &sc->pcn_cdata;
780
781	for (i = 0; i < PCN_RX_LIST_CNT; i++) {
782		if (pcn_newbuf(sc, i, NULL) == ENOBUFS)
783			return(ENOBUFS);
784	}
785
786	cd->pcn_rx_prod = 0;
787
788	return(0);
789}
790
791/*
792 * Initialize an RX descriptor and attach an MBUF cluster.
793 */
794static int
795pcn_newbuf(sc, idx, m)
796	struct pcn_softc	*sc;
797	int			idx;
798	struct mbuf		*m;
799{
800	struct mbuf		*m_new = NULL;
801	struct pcn_rx_desc	*c;
802
803	c = &sc->pcn_ldata->pcn_rx_list[idx];
804
805	if (m == NULL) {
806		MGETHDR(m_new, M_NOWAIT, MT_DATA);
807		if (m_new == NULL)
808			return(ENOBUFS);
809
810		if (!(MCLGET(m_new, M_NOWAIT))) {
811			m_freem(m_new);
812			return(ENOBUFS);
813		}
814		m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
815	} else {
816		m_new = m;
817		m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
818		m_new->m_data = m_new->m_ext.ext_buf;
819	}
820
821	m_adj(m_new, ETHER_ALIGN);
822
823	sc->pcn_cdata.pcn_rx_chain[idx] = m_new;
824	c->pcn_rbaddr = vtophys(mtod(m_new, caddr_t));
825	c->pcn_bufsz = (~(PCN_RXLEN) + 1) & PCN_RXLEN_BUFSZ;
826	c->pcn_bufsz |= PCN_RXLEN_MBO;
827	c->pcn_rxstat = PCN_RXSTAT_STP|PCN_RXSTAT_ENP|PCN_RXSTAT_OWN;
828
829	return(0);
830}
831
832/*
833 * A frame has been uploaded: pass the resulting mbuf chain up to
834 * the higher level protocols.
835 */
836static void
837pcn_rxeof(sc)
838	struct pcn_softc	*sc;
839{
840        struct mbuf		*m;
841        struct ifnet		*ifp;
842	struct pcn_rx_desc	*cur_rx;
843	int			i;
844
845	PCN_LOCK_ASSERT(sc);
846
847	ifp = sc->pcn_ifp;
848	i = sc->pcn_cdata.pcn_rx_prod;
849
850	while(PCN_OWN_RXDESC(&sc->pcn_ldata->pcn_rx_list[i])) {
851		cur_rx = &sc->pcn_ldata->pcn_rx_list[i];
852		m = sc->pcn_cdata.pcn_rx_chain[i];
853		sc->pcn_cdata.pcn_rx_chain[i] = NULL;
854
855		/*
856		 * If an error occurs, update stats, clear the
857		 * status word and leave the mbuf cluster in place:
858		 * it should simply get re-used next time this descriptor
859	 	 * comes up in the ring.
860		 */
861		if (cur_rx->pcn_rxstat & PCN_RXSTAT_ERR) {
862			if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
863			pcn_newbuf(sc, i, m);
864			PCN_INC(i, PCN_RX_LIST_CNT);
865			continue;
866		}
867
868		if (pcn_newbuf(sc, i, NULL)) {
869			/* Ran out of mbufs; recycle this one. */
870			pcn_newbuf(sc, i, m);
871			if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
872			PCN_INC(i, PCN_RX_LIST_CNT);
873			continue;
874		}
875
876		PCN_INC(i, PCN_RX_LIST_CNT);
877
878		/* No errors; receive the packet. */
879		if_inc_counter(ifp, IFCOUNTER_IPACKETS, 1);
880		m->m_len = m->m_pkthdr.len =
881		    cur_rx->pcn_rxlen - ETHER_CRC_LEN;
882		m->m_pkthdr.rcvif = ifp;
883
884		PCN_UNLOCK(sc);
885		(*ifp->if_input)(ifp, m);
886		PCN_LOCK(sc);
887	}
888
889	sc->pcn_cdata.pcn_rx_prod = i;
890
891	return;
892}
893
894/*
895 * A frame was downloaded to the chip. It's safe for us to clean up
896 * the list buffers.
897 */
898
899static void
900pcn_txeof(sc)
901	struct pcn_softc	*sc;
902{
903	struct pcn_tx_desc	*cur_tx = NULL;
904	struct ifnet		*ifp;
905	u_int32_t		idx;
906
907	ifp = sc->pcn_ifp;
908
909	/*
910	 * Go through our tx list and free mbufs for those
911	 * frames that have been transmitted.
912	 */
913	idx = sc->pcn_cdata.pcn_tx_cons;
914	while (idx != sc->pcn_cdata.pcn_tx_prod) {
915		cur_tx = &sc->pcn_ldata->pcn_tx_list[idx];
916
917		if (!PCN_OWN_TXDESC(cur_tx))
918			break;
919
920		if (!(cur_tx->pcn_txctl & PCN_TXCTL_ENP)) {
921			sc->pcn_cdata.pcn_tx_cnt--;
922			PCN_INC(idx, PCN_TX_LIST_CNT);
923			continue;
924		}
925
926		if (cur_tx->pcn_txctl & PCN_TXCTL_ERR) {
927			if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
928			if (cur_tx->pcn_txstat & PCN_TXSTAT_EXDEF)
929				if_inc_counter(ifp, IFCOUNTER_COLLISIONS, 1);
930			if (cur_tx->pcn_txstat & PCN_TXSTAT_RTRY)
931				if_inc_counter(ifp, IFCOUNTER_COLLISIONS, 1);
932		}
933
934		if_inc_counter(ifp, IFCOUNTER_COLLISIONS,
935		    cur_tx->pcn_txstat & PCN_TXSTAT_TRC);
936
937		if_inc_counter(ifp, IFCOUNTER_OPACKETS, 1);
938		if (sc->pcn_cdata.pcn_tx_chain[idx] != NULL) {
939			m_freem(sc->pcn_cdata.pcn_tx_chain[idx]);
940			sc->pcn_cdata.pcn_tx_chain[idx] = NULL;
941		}
942
943		sc->pcn_cdata.pcn_tx_cnt--;
944		PCN_INC(idx, PCN_TX_LIST_CNT);
945	}
946
947	if (idx != sc->pcn_cdata.pcn_tx_cons) {
948		/* Some buffers have been freed. */
949		sc->pcn_cdata.pcn_tx_cons = idx;
950		ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
951	}
952	sc->pcn_timer = (sc->pcn_cdata.pcn_tx_cnt == 0) ? 0 : 5;
953
954	return;
955}
956
957static void
958pcn_tick(xsc)
959	void			*xsc;
960{
961	struct pcn_softc	*sc;
962	struct mii_data		*mii;
963	struct ifnet		*ifp;
964
965	sc = xsc;
966	ifp = sc->pcn_ifp;
967	PCN_LOCK_ASSERT(sc);
968
969	mii = device_get_softc(sc->pcn_miibus);
970	mii_tick(mii);
971
972	/* link just died */
973	if (sc->pcn_link && !(mii->mii_media_status & IFM_ACTIVE))
974		sc->pcn_link = 0;
975
976	/* link just came up, restart */
977	if (!sc->pcn_link && mii->mii_media_status & IFM_ACTIVE &&
978	    IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
979		sc->pcn_link++;
980		if (ifp->if_snd.ifq_head != NULL)
981			pcn_start_locked(ifp);
982	}
983
984	if (sc->pcn_timer > 0 && --sc->pcn_timer == 0)
985		pcn_watchdog(sc);
986	callout_reset(&sc->pcn_stat_callout, hz, pcn_tick, sc);
987
988	return;
989}
990
991static void
992pcn_intr(arg)
993	void			*arg;
994{
995	struct pcn_softc	*sc;
996	struct ifnet		*ifp;
997	u_int32_t		status;
998
999	sc = arg;
1000	ifp = sc->pcn_ifp;
1001
1002	PCN_LOCK(sc);
1003
1004	/* Suppress unwanted interrupts */
1005	if (!(ifp->if_flags & IFF_UP)) {
1006		pcn_stop(sc);
1007		PCN_UNLOCK(sc);
1008		return;
1009	}
1010
1011	CSR_WRITE_4(sc, PCN_IO32_RAP, PCN_CSR_CSR);
1012
1013	while ((status = CSR_READ_4(sc, PCN_IO32_RDP)) & PCN_CSR_INTR) {
1014		CSR_WRITE_4(sc, PCN_IO32_RDP, status);
1015
1016		if (status & PCN_CSR_RINT)
1017			pcn_rxeof(sc);
1018
1019		if (status & PCN_CSR_TINT)
1020			pcn_txeof(sc);
1021
1022		if (status & PCN_CSR_ERR) {
1023			pcn_init_locked(sc);
1024			break;
1025		}
1026	}
1027
1028	if (ifp->if_snd.ifq_head != NULL)
1029		pcn_start_locked(ifp);
1030
1031	PCN_UNLOCK(sc);
1032	return;
1033}
1034
1035/*
1036 * Encapsulate an mbuf chain in a descriptor by coupling the mbuf data
1037 * pointers to the fragment pointers.
1038 */
1039static int
1040pcn_encap(sc, m_head, txidx)
1041	struct pcn_softc	*sc;
1042	struct mbuf		*m_head;
1043	u_int32_t		*txidx;
1044{
1045	struct pcn_tx_desc	*f = NULL;
1046	struct mbuf		*m;
1047	int			frag, cur, cnt = 0;
1048
1049	/*
1050 	 * Start packing the mbufs in this chain into
1051	 * the fragment pointers. Stop when we run out
1052 	 * of fragments or hit the end of the mbuf chain.
1053	 */
1054	m = m_head;
1055	cur = frag = *txidx;
1056
1057	for (m = m_head; m != NULL; m = m->m_next) {
1058		if (m->m_len == 0)
1059			continue;
1060
1061		if ((PCN_TX_LIST_CNT - (sc->pcn_cdata.pcn_tx_cnt + cnt)) < 2)
1062			return(ENOBUFS);
1063		f = &sc->pcn_ldata->pcn_tx_list[frag];
1064		f->pcn_txctl = (~(m->m_len) + 1) & PCN_TXCTL_BUFSZ;
1065		f->pcn_txctl |= PCN_TXCTL_MBO;
1066		f->pcn_tbaddr = vtophys(mtod(m, vm_offset_t));
1067		if (cnt == 0)
1068			f->pcn_txctl |= PCN_TXCTL_STP;
1069		else
1070			f->pcn_txctl |= PCN_TXCTL_OWN;
1071		cur = frag;
1072		PCN_INC(frag, PCN_TX_LIST_CNT);
1073		cnt++;
1074	}
1075
1076	if (m != NULL)
1077		return(ENOBUFS);
1078
1079	sc->pcn_cdata.pcn_tx_chain[cur] = m_head;
1080	sc->pcn_ldata->pcn_tx_list[cur].pcn_txctl |=
1081	    PCN_TXCTL_ENP|PCN_TXCTL_ADD_FCS|PCN_TXCTL_MORE_LTINT;
1082	sc->pcn_ldata->pcn_tx_list[*txidx].pcn_txctl |= PCN_TXCTL_OWN;
1083	sc->pcn_cdata.pcn_tx_cnt += cnt;
1084	*txidx = frag;
1085
1086	return(0);
1087}
1088
1089/*
1090 * Main transmit routine. To avoid having to do mbuf copies, we put pointers
1091 * to the mbuf data regions directly in the transmit lists. We also save a
1092 * copy of the pointers since the transmit list fragment pointers are
1093 * physical addresses.
1094 */
1095static void
1096pcn_start(ifp)
1097	struct ifnet		*ifp;
1098{
1099	struct pcn_softc	*sc;
1100
1101	sc = ifp->if_softc;
1102	PCN_LOCK(sc);
1103	pcn_start_locked(ifp);
1104	PCN_UNLOCK(sc);
1105}
1106
1107static void
1108pcn_start_locked(ifp)
1109	struct ifnet		*ifp;
1110{
1111	struct pcn_softc	*sc;
1112	struct mbuf		*m_head = NULL;
1113	u_int32_t		idx;
1114
1115	sc = ifp->if_softc;
1116
1117	PCN_LOCK_ASSERT(sc);
1118
1119	if (!sc->pcn_link)
1120		return;
1121
1122	idx = sc->pcn_cdata.pcn_tx_prod;
1123
1124	if (ifp->if_drv_flags & IFF_DRV_OACTIVE)
1125		return;
1126
1127	while(sc->pcn_cdata.pcn_tx_chain[idx] == NULL) {
1128		IF_DEQUEUE(&ifp->if_snd, m_head);
1129		if (m_head == NULL)
1130			break;
1131
1132		if (pcn_encap(sc, m_head, &idx)) {
1133			IF_PREPEND(&ifp->if_snd, m_head);
1134			ifp->if_drv_flags |= IFF_DRV_OACTIVE;
1135			break;
1136		}
1137
1138		/*
1139		 * If there's a BPF listener, bounce a copy of this frame
1140		 * to him.
1141		 */
1142		BPF_MTAP(ifp, m_head);
1143
1144	}
1145
1146	/* Transmit */
1147	sc->pcn_cdata.pcn_tx_prod = idx;
1148	pcn_csr_write(sc, PCN_CSR_CSR, PCN_CSR_TX|PCN_CSR_INTEN);
1149
1150	/*
1151	 * Set a timeout in case the chip goes out to lunch.
1152	 */
1153	sc->pcn_timer = 5;
1154
1155	return;
1156}
1157
1158static void
1159pcn_setfilt(ifp)
1160	struct ifnet		*ifp;
1161{
1162	struct pcn_softc	*sc;
1163
1164	sc = ifp->if_softc;
1165
1166	 /* If we want promiscuous mode, set the allframes bit. */
1167	if (ifp->if_flags & IFF_PROMISC) {
1168		PCN_CSR_SETBIT(sc, PCN_CSR_MODE, PCN_MODE_PROMISC);
1169	} else {
1170		PCN_CSR_CLRBIT(sc, PCN_CSR_MODE, PCN_MODE_PROMISC);
1171	}
1172
1173	/* Set the capture broadcast bit to capture broadcast frames. */
1174	if (ifp->if_flags & IFF_BROADCAST) {
1175		PCN_CSR_CLRBIT(sc, PCN_CSR_MODE, PCN_MODE_RXNOBROAD);
1176	} else {
1177		PCN_CSR_SETBIT(sc, PCN_CSR_MODE, PCN_MODE_RXNOBROAD);
1178	}
1179
1180	return;
1181}
1182
1183static void
1184pcn_init(xsc)
1185	void			*xsc;
1186{
1187	struct pcn_softc	*sc = xsc;
1188
1189	PCN_LOCK(sc);
1190	pcn_init_locked(sc);
1191	PCN_UNLOCK(sc);
1192}
1193
1194static void
1195pcn_init_locked(sc)
1196	struct pcn_softc	*sc;
1197{
1198	struct ifnet		*ifp = sc->pcn_ifp;
1199	struct mii_data		*mii = NULL;
1200	struct ifmedia_entry	*ife;
1201
1202	PCN_LOCK_ASSERT(sc);
1203
1204	/*
1205	 * Cancel pending I/O and free all RX/TX buffers.
1206	 */
1207	pcn_stop(sc);
1208	pcn_reset(sc);
1209
1210	mii = device_get_softc(sc->pcn_miibus);
1211	ife = mii->mii_media.ifm_cur;
1212
1213	/* Set MAC address */
1214	pcn_csr_write(sc, PCN_CSR_PAR0,
1215	    ((u_int16_t *)IF_LLADDR(sc->pcn_ifp))[0]);
1216	pcn_csr_write(sc, PCN_CSR_PAR1,
1217	    ((u_int16_t *)IF_LLADDR(sc->pcn_ifp))[1]);
1218	pcn_csr_write(sc, PCN_CSR_PAR2,
1219	    ((u_int16_t *)IF_LLADDR(sc->pcn_ifp))[2]);
1220
1221	/* Init circular RX list. */
1222	if (pcn_list_rx_init(sc) == ENOBUFS) {
1223		if_printf(ifp, "initialization failed: no "
1224		    "memory for rx buffers\n");
1225		pcn_stop(sc);
1226		return;
1227	}
1228
1229	/*
1230	 * Init tx descriptors.
1231	 */
1232	pcn_list_tx_init(sc);
1233
1234	/* Clear PCN_MISC_ASEL so we can set the port via PCN_CSR_MODE. */
1235	PCN_BCR_CLRBIT(sc, PCN_BCR_MISCCFG, PCN_MISC_ASEL);
1236
1237	/*
1238	 * Set up the port based on the currently selected media.
1239	 * For Am79C978 we've to unconditionally set PCN_PORT_MII and
1240	 * set the PHY in PCN_BCR_PHYSEL instead.
1241	 */
1242	if (sc->pcn_type != Am79C978 &&
1243	    IFM_INST(ife->ifm_media) == sc->pcn_inst_10bt)
1244		pcn_csr_write(sc, PCN_CSR_MODE, PCN_PORT_10BASET);
1245	else
1246		pcn_csr_write(sc, PCN_CSR_MODE, PCN_PORT_MII);
1247
1248	/* Set up RX filter. */
1249	pcn_setfilt(ifp);
1250
1251	/*
1252	 * Load the multicast filter.
1253	 */
1254	pcn_setmulti(sc);
1255
1256	/*
1257	 * Load the addresses of the RX and TX lists.
1258	 */
1259	pcn_csr_write(sc, PCN_CSR_RXADDR0,
1260	    vtophys(&sc->pcn_ldata->pcn_rx_list[0]) & 0xFFFF);
1261	pcn_csr_write(sc, PCN_CSR_RXADDR1,
1262	    (vtophys(&sc->pcn_ldata->pcn_rx_list[0]) >> 16) & 0xFFFF);
1263	pcn_csr_write(sc, PCN_CSR_TXADDR0,
1264	    vtophys(&sc->pcn_ldata->pcn_tx_list[0]) & 0xFFFF);
1265	pcn_csr_write(sc, PCN_CSR_TXADDR1,
1266	    (vtophys(&sc->pcn_ldata->pcn_tx_list[0]) >> 16) & 0xFFFF);
1267
1268	/* Set the RX and TX ring sizes. */
1269	pcn_csr_write(sc, PCN_CSR_RXRINGLEN, (~PCN_RX_LIST_CNT) + 1);
1270	pcn_csr_write(sc, PCN_CSR_TXRINGLEN, (~PCN_TX_LIST_CNT) + 1);
1271
1272	/* We're not using the initialization block. */
1273	pcn_csr_write(sc, PCN_CSR_IAB1, 0);
1274
1275	/* Enable fast suspend mode. */
1276	PCN_CSR_SETBIT(sc, PCN_CSR_EXTCTL2, PCN_EXTCTL2_FASTSPNDE);
1277
1278	/*
1279	 * Enable burst read and write. Also set the no underflow
1280	 * bit. This will avoid transmit underruns in certain
1281	 * conditions while still providing decent performance.
1282	 */
1283	PCN_BCR_SETBIT(sc, PCN_BCR_BUSCTL, PCN_BUSCTL_NOUFLOW|
1284	    PCN_BUSCTL_BREAD|PCN_BUSCTL_BWRITE);
1285
1286	/* Enable graceful recovery from underflow. */
1287	PCN_CSR_SETBIT(sc, PCN_CSR_IMR, PCN_IMR_DXSUFLO);
1288
1289	/* Enable auto-padding of short TX frames. */
1290	PCN_CSR_SETBIT(sc, PCN_CSR_TFEAT, PCN_TFEAT_PAD_TX);
1291
1292	/* Disable MII autoneg (we handle this ourselves). */
1293	PCN_BCR_SETBIT(sc, PCN_BCR_MIICTL, PCN_MIICTL_DANAS);
1294
1295	if (sc->pcn_type == Am79C978)
1296		/* XXX support other PHYs? */
1297		pcn_bcr_write(sc, PCN_BCR_PHYSEL,
1298		    PCN_PHYSEL_PCNET|PCN_PHY_HOMEPNA);
1299
1300	/* Enable interrupts and start the controller running. */
1301	pcn_csr_write(sc, PCN_CSR_CSR, PCN_CSR_INTEN|PCN_CSR_START);
1302
1303	mii_mediachg(mii);
1304
1305	ifp->if_drv_flags |= IFF_DRV_RUNNING;
1306	ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
1307
1308	callout_reset(&sc->pcn_stat_callout, hz, pcn_tick, sc);
1309
1310	return;
1311}
1312
1313/*
1314 * Set media options.
1315 */
1316static int
1317pcn_ifmedia_upd(ifp)
1318	struct ifnet		*ifp;
1319{
1320	struct pcn_softc	*sc;
1321
1322	sc = ifp->if_softc;
1323
1324	PCN_LOCK(sc);
1325
1326	/*
1327	 * At least Am79C971 with DP83840A can wedge when switching
1328	 * from the internal 10baseT PHY to the external PHY without
1329	 * issuing pcn_reset(). For setting the port in PCN_CSR_MODE
1330	 * the PCnet chip has to be powered down or stopped anyway
1331	 * and although documented otherwise it doesn't take effect
1332	 * until the next initialization.
1333	 */
1334	sc->pcn_link = 0;
1335	pcn_stop(sc);
1336	pcn_reset(sc);
1337	pcn_init_locked(sc);
1338	if (ifp->if_snd.ifq_head != NULL)
1339		pcn_start_locked(ifp);
1340
1341	PCN_UNLOCK(sc);
1342
1343	return(0);
1344}
1345
1346/*
1347 * Report current media status.
1348 */
1349static void
1350pcn_ifmedia_sts(ifp, ifmr)
1351	struct ifnet		*ifp;
1352	struct ifmediareq	*ifmr;
1353{
1354	struct pcn_softc	*sc;
1355	struct mii_data		*mii;
1356
1357	sc = ifp->if_softc;
1358
1359	mii = device_get_softc(sc->pcn_miibus);
1360	PCN_LOCK(sc);
1361	mii_pollstat(mii);
1362	ifmr->ifm_active = mii->mii_media_active;
1363	ifmr->ifm_status = mii->mii_media_status;
1364	PCN_UNLOCK(sc);
1365
1366	return;
1367}
1368
1369static int
1370pcn_ioctl(ifp, command, data)
1371	struct ifnet		*ifp;
1372	u_long			command;
1373	caddr_t			data;
1374{
1375	struct pcn_softc	*sc = ifp->if_softc;
1376	struct ifreq		*ifr = (struct ifreq *) data;
1377	struct mii_data		*mii = NULL;
1378	int			error = 0;
1379
1380	switch(command) {
1381	case SIOCSIFFLAGS:
1382		PCN_LOCK(sc);
1383		if (ifp->if_flags & IFF_UP) {
1384                        if (ifp->if_drv_flags & IFF_DRV_RUNNING &&
1385			    ifp->if_flags & IFF_PROMISC &&
1386			    !(sc->pcn_if_flags & IFF_PROMISC)) {
1387				PCN_CSR_SETBIT(sc, PCN_CSR_EXTCTL1,
1388				    PCN_EXTCTL1_SPND);
1389				pcn_setfilt(ifp);
1390				PCN_CSR_CLRBIT(sc, PCN_CSR_EXTCTL1,
1391				    PCN_EXTCTL1_SPND);
1392				pcn_csr_write(sc, PCN_CSR_CSR,
1393				    PCN_CSR_INTEN|PCN_CSR_START);
1394			} else if (ifp->if_drv_flags & IFF_DRV_RUNNING &&
1395			    !(ifp->if_flags & IFF_PROMISC) &&
1396				sc->pcn_if_flags & IFF_PROMISC) {
1397				PCN_CSR_SETBIT(sc, PCN_CSR_EXTCTL1,
1398				    PCN_EXTCTL1_SPND);
1399				pcn_setfilt(ifp);
1400				PCN_CSR_CLRBIT(sc, PCN_CSR_EXTCTL1,
1401				    PCN_EXTCTL1_SPND);
1402				pcn_csr_write(sc, PCN_CSR_CSR,
1403				    PCN_CSR_INTEN|PCN_CSR_START);
1404			} else if (!(ifp->if_drv_flags & IFF_DRV_RUNNING))
1405				pcn_init_locked(sc);
1406		} else {
1407			if (ifp->if_drv_flags & IFF_DRV_RUNNING)
1408				pcn_stop(sc);
1409		}
1410		sc->pcn_if_flags = ifp->if_flags;
1411		PCN_UNLOCK(sc);
1412		error = 0;
1413		break;
1414	case SIOCADDMULTI:
1415	case SIOCDELMULTI:
1416		PCN_LOCK(sc);
1417		pcn_setmulti(sc);
1418		PCN_UNLOCK(sc);
1419		error = 0;
1420		break;
1421	case SIOCGIFMEDIA:
1422	case SIOCSIFMEDIA:
1423		mii = device_get_softc(sc->pcn_miibus);
1424		error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
1425		break;
1426	default:
1427		error = ether_ioctl(ifp, command, data);
1428		break;
1429	}
1430
1431	return(error);
1432}
1433
1434static void
1435pcn_watchdog(struct pcn_softc *sc)
1436{
1437	struct ifnet		*ifp;
1438
1439	PCN_LOCK_ASSERT(sc);
1440	ifp = sc->pcn_ifp;
1441
1442	if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
1443	if_printf(ifp, "watchdog timeout\n");
1444
1445	pcn_stop(sc);
1446	pcn_reset(sc);
1447	pcn_init_locked(sc);
1448
1449	if (ifp->if_snd.ifq_head != NULL)
1450		pcn_start_locked(ifp);
1451}
1452
1453/*
1454 * Stop the adapter and free any mbufs allocated to the
1455 * RX and TX lists.
1456 */
1457static void
1458pcn_stop(struct pcn_softc *sc)
1459{
1460	int			i;
1461	struct ifnet		*ifp;
1462
1463	PCN_LOCK_ASSERT(sc);
1464	ifp = sc->pcn_ifp;
1465	sc->pcn_timer = 0;
1466
1467	callout_stop(&sc->pcn_stat_callout);
1468
1469	/* Turn off interrupts */
1470	PCN_CSR_CLRBIT(sc, PCN_CSR_CSR, PCN_CSR_INTEN);
1471	/* Stop adapter */
1472	PCN_CSR_SETBIT(sc, PCN_CSR_CSR, PCN_CSR_STOP);
1473	sc->pcn_link = 0;
1474
1475	/*
1476	 * Free data in the RX lists.
1477	 */
1478	for (i = 0; i < PCN_RX_LIST_CNT; i++) {
1479		if (sc->pcn_cdata.pcn_rx_chain[i] != NULL) {
1480			m_freem(sc->pcn_cdata.pcn_rx_chain[i]);
1481			sc->pcn_cdata.pcn_rx_chain[i] = NULL;
1482		}
1483	}
1484	bzero((char *)&sc->pcn_ldata->pcn_rx_list,
1485		sizeof(sc->pcn_ldata->pcn_rx_list));
1486
1487	/*
1488	 * Free the TX list buffers.
1489	 */
1490	for (i = 0; i < PCN_TX_LIST_CNT; i++) {
1491		if (sc->pcn_cdata.pcn_tx_chain[i] != NULL) {
1492			m_freem(sc->pcn_cdata.pcn_tx_chain[i]);
1493			sc->pcn_cdata.pcn_tx_chain[i] = NULL;
1494		}
1495	}
1496
1497	bzero((char *)&sc->pcn_ldata->pcn_tx_list,
1498		sizeof(sc->pcn_ldata->pcn_tx_list));
1499
1500	ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
1501
1502	return;
1503}
1504
1505/*
1506 * Stop all chip I/O so that the kernel's probe routines don't
1507 * get confused by errant DMAs when rebooting.
1508 */
1509static int
1510pcn_shutdown(device_t dev)
1511{
1512	struct pcn_softc	*sc;
1513
1514	sc = device_get_softc(dev);
1515
1516	PCN_LOCK(sc);
1517	pcn_reset(sc);
1518	pcn_stop(sc);
1519	PCN_UNLOCK(sc);
1520
1521	return 0;
1522}
1523