xref: /freebsd/sys/dev/bge/if_bge.c (revision 08013fd336904a4afda05e88094e0f96643b442f)
1098ca2bdSWarner Losh /*-
295d67482SBill Paul  * Copyright (c) 2001 Wind River Systems
395d67482SBill Paul  * Copyright (c) 1997, 1998, 1999, 2001
495d67482SBill Paul  *	Bill Paul <wpaul@windriver.com>.  All rights reserved.
595d67482SBill Paul  *
695d67482SBill Paul  * Redistribution and use in source and binary forms, with or without
795d67482SBill Paul  * modification, are permitted provided that the following conditions
895d67482SBill Paul  * are met:
995d67482SBill Paul  * 1. Redistributions of source code must retain the above copyright
1095d67482SBill Paul  *    notice, this list of conditions and the following disclaimer.
1195d67482SBill Paul  * 2. Redistributions in binary form must reproduce the above copyright
1295d67482SBill Paul  *    notice, this list of conditions and the following disclaimer in the
1395d67482SBill Paul  *    documentation and/or other materials provided with the distribution.
1495d67482SBill Paul  * 3. All advertising materials mentioning features or use of this software
1595d67482SBill Paul  *    must display the following acknowledgement:
1695d67482SBill Paul  *	This product includes software developed by Bill Paul.
1795d67482SBill Paul  * 4. Neither the name of the author nor the names of any co-contributors
1895d67482SBill Paul  *    may be used to endorse or promote products derived from this software
1995d67482SBill Paul  *    without specific prior written permission.
2095d67482SBill Paul  *
2195d67482SBill Paul  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
2295d67482SBill Paul  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2395d67482SBill Paul  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2495d67482SBill Paul  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
2595d67482SBill Paul  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2695d67482SBill Paul  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2795d67482SBill Paul  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2895d67482SBill Paul  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2995d67482SBill Paul  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
3095d67482SBill Paul  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
3195d67482SBill Paul  * THE POSSIBILITY OF SUCH DAMAGE.
3295d67482SBill Paul  */
3395d67482SBill Paul 
34aad970f1SDavid E. O'Brien #include <sys/cdefs.h>
35aad970f1SDavid E. O'Brien __FBSDID("$FreeBSD$");
36aad970f1SDavid E. O'Brien 
3795d67482SBill Paul /*
3895d67482SBill Paul  * Broadcom BCM570x family gigabit ethernet driver for FreeBSD.
3995d67482SBill Paul  *
4095d67482SBill Paul  * The Broadcom BCM5700 is based on technology originally developed by
4195d67482SBill Paul  * Alteon Networks as part of the Tigon I and Tigon II gigabit ethernet
4295d67482SBill Paul  * MAC chips. The BCM5700, sometimes refered to as the Tigon III, has
4395d67482SBill Paul  * two on-board MIPS R4000 CPUs and can have as much as 16MB of external
4495d67482SBill Paul  * SSRAM. The BCM5700 supports TCP, UDP and IP checksum offload, jumbo
4595d67482SBill Paul  * frames, highly configurable RX filtering, and 16 RX and TX queues
4695d67482SBill Paul  * (which, along with RX filter rules, can be used for QOS applications).
4795d67482SBill Paul  * Other features, such as TCP segmentation, may be available as part
4895d67482SBill Paul  * of value-added firmware updates. Unlike the Tigon I and Tigon II,
4995d67482SBill Paul  * firmware images can be stored in hardware and need not be compiled
5095d67482SBill Paul  * into the driver.
5195d67482SBill Paul  *
5295d67482SBill Paul  * The BCM5700 supports the PCI v2.2 and PCI-X v1.0 standards, and will
5395d67482SBill Paul  * function in a 32-bit/64-bit 33/66Mhz bus, or a 64-bit/133Mhz bus.
5495d67482SBill Paul  *
5595d67482SBill Paul  * The BCM5701 is a single-chip solution incorporating both the BCM5700
5698b28ee5SBill Paul  * MAC and a BCM5401 10/100/1000 PHY. Unlike the BCM5700, the BCM5701
5795d67482SBill Paul  * does not support external SSRAM.
5895d67482SBill Paul  *
5995d67482SBill Paul  * Broadcom also produces a variation of the BCM5700 under the "Altima"
6095d67482SBill Paul  * brand name, which is functionally similar but lacks PCI-X support.
6195d67482SBill Paul  *
6295d67482SBill Paul  * Without external SSRAM, you can only have at most 4 TX rings,
6395d67482SBill Paul  * and the use of the mini RX ring is disabled. This seems to imply
6495d67482SBill Paul  * that these features are simply not available on the BCM5701. As a
6595d67482SBill Paul  * result, this driver does not implement any support for the mini RX
6695d67482SBill Paul  * ring.
6795d67482SBill Paul  */
6895d67482SBill Paul 
6975719184SGleb Smirnoff #ifdef HAVE_KERNEL_OPTION_HEADERS
7075719184SGleb Smirnoff #include "opt_device_polling.h"
7175719184SGleb Smirnoff #endif
7275719184SGleb Smirnoff 
7395d67482SBill Paul #include <sys/param.h>
74f41ac2beSBill Paul #include <sys/endian.h>
7595d67482SBill Paul #include <sys/systm.h>
7695d67482SBill Paul #include <sys/sockio.h>
7795d67482SBill Paul #include <sys/mbuf.h>
7895d67482SBill Paul #include <sys/malloc.h>
7995d67482SBill Paul #include <sys/kernel.h>
80fe12f24bSPoul-Henning Kamp #include <sys/module.h>
8195d67482SBill Paul #include <sys/socket.h>
82f1a7e6d5SScott Long #include <sys/sysctl.h>
8395d67482SBill Paul 
8495d67482SBill Paul #include <net/if.h>
8595d67482SBill Paul #include <net/if_arp.h>
8695d67482SBill Paul #include <net/ethernet.h>
8795d67482SBill Paul #include <net/if_dl.h>
8895d67482SBill Paul #include <net/if_media.h>
8995d67482SBill Paul 
9095d67482SBill Paul #include <net/bpf.h>
9195d67482SBill Paul 
9295d67482SBill Paul #include <net/if_types.h>
9395d67482SBill Paul #include <net/if_vlan_var.h>
9495d67482SBill Paul 
9595d67482SBill Paul #include <netinet/in_systm.h>
9695d67482SBill Paul #include <netinet/in.h>
9795d67482SBill Paul #include <netinet/ip.h>
9895d67482SBill Paul 
9995d67482SBill Paul #include <machine/bus.h>
10095d67482SBill Paul #include <machine/resource.h>
10195d67482SBill Paul #include <sys/bus.h>
10295d67482SBill Paul #include <sys/rman.h>
10395d67482SBill Paul 
10495d67482SBill Paul #include <dev/mii/mii.h>
10595d67482SBill Paul #include <dev/mii/miivar.h>
1062d3ce713SDavid E. O'Brien #include "miidevs.h"
10795d67482SBill Paul #include <dev/mii/brgphyreg.h>
10895d67482SBill Paul 
10908013fd3SMarius Strobl #ifdef __sparc64__
11008013fd3SMarius Strobl #include <dev/ofw/ofw_bus.h>
11108013fd3SMarius Strobl #include <dev/ofw/openfirm.h>
11208013fd3SMarius Strobl #include <machine/ofw_machdep.h>
11308013fd3SMarius Strobl #include <machine/ver.h>
11408013fd3SMarius Strobl #endif
11508013fd3SMarius Strobl 
1164fbd232cSWarner Losh #include <dev/pci/pcireg.h>
1174fbd232cSWarner Losh #include <dev/pci/pcivar.h>
11895d67482SBill Paul 
11995d67482SBill Paul #include <dev/bge/if_bgereg.h>
12095d67482SBill Paul 
1215ddc5794SJohn Polstra #define	BGE_CSUM_FEATURES	(CSUM_IP | CSUM_TCP | CSUM_UDP)
122d375e524SGleb Smirnoff #define	ETHER_MIN_NOPAD		(ETHER_MIN_LEN - ETHER_CRC_LEN) /* i.e., 60 */
12395d67482SBill Paul 
124f246e4a1SMatthew N. Dodd MODULE_DEPEND(bge, pci, 1, 1, 1);
125f246e4a1SMatthew N. Dodd MODULE_DEPEND(bge, ether, 1, 1, 1);
12695d67482SBill Paul MODULE_DEPEND(bge, miibus, 1, 1, 1);
12795d67482SBill Paul 
1287b279558SWarner Losh /* "device miibus" required.  See GENERIC if you get errors here. */
12995d67482SBill Paul #include "miibus_if.h"
13095d67482SBill Paul 
13195d67482SBill Paul /*
13295d67482SBill Paul  * Various supported device vendors/types and their names. Note: the
13395d67482SBill Paul  * spec seems to indicate that the hardware still has Alteon's vendor
13495d67482SBill Paul  * ID burned into it, though it will always be overriden by the vendor
13595d67482SBill Paul  * ID in the EEPROM. Just to be safe, we cover all possibilities.
13695d67482SBill Paul  */
1374c0da0ffSGleb Smirnoff static struct bge_type {
1384c0da0ffSGleb Smirnoff 	uint16_t	bge_vid;
1394c0da0ffSGleb Smirnoff 	uint16_t	bge_did;
1404c0da0ffSGleb Smirnoff } bge_devs[] = {
1414c0da0ffSGleb Smirnoff 	{ ALTEON_VENDORID,	ALTEON_DEVICEID_BCM5700 },
1424c0da0ffSGleb Smirnoff 	{ ALTEON_VENDORID,	ALTEON_DEVICEID_BCM5701 },
14395d67482SBill Paul 
1444c0da0ffSGleb Smirnoff 	{ ALTIMA_VENDORID,	ALTIMA_DEVICE_AC1000 },
1454c0da0ffSGleb Smirnoff 	{ ALTIMA_VENDORID,	ALTIMA_DEVICE_AC1002 },
1464c0da0ffSGleb Smirnoff 	{ ALTIMA_VENDORID,	ALTIMA_DEVICE_AC9100 },
1474c0da0ffSGleb Smirnoff 
1484c0da0ffSGleb Smirnoff 	{ APPLE_VENDORID,	APPLE_DEVICE_BCM5701 },
1494c0da0ffSGleb Smirnoff 
1504c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5700 },
1514c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5701 },
1524c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5702 },
1534c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5702_ALT },
1544c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5702X },
1554c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5703 },
1564c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5703_ALT },
1574c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5703X },
1584c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5704C },
1594c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5704S },
1604c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5704S_ALT },
1614c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5705 },
1624c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5705F },
1634c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5705K },
1644c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5705M },
1654c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5705M_ALT },
1664c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5714C },
1674c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5714S },
1684c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5715 },
1694c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5715S },
1704c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5720 },
1714c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5721 },
1724c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5750 },
1734c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5750M },
1744c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5751 },
1754c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5751F },
1764c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5751M },
1774c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5752 },
1784c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5752M },
1794c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5753 },
1804c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5753F },
1814c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5753M },
1829e86676bSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5754 },
1839e86676bSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5754M },
1849e86676bSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5755 },
1859e86676bSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5755M },
1864c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5780 },
1874c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5780S },
1884c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5781 },
1894c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5782 },
1909e86676bSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5786 },
1919e86676bSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5787 },
1929e86676bSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5787M },
1934c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5788 },
1944c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5789 },
1954c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5901 },
1964c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5901A2 },
1974c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5903M },
1984c0da0ffSGleb Smirnoff 
1994c0da0ffSGleb Smirnoff 	{ SK_VENDORID,		SK_DEVICEID_ALTIMA },
2004c0da0ffSGleb Smirnoff 
2014c0da0ffSGleb Smirnoff 	{ TC_VENDORID,		TC_DEVICEID_3C996 },
2024c0da0ffSGleb Smirnoff 
2034c0da0ffSGleb Smirnoff 	{ 0, 0 }
20495d67482SBill Paul };
20595d67482SBill Paul 
2064c0da0ffSGleb Smirnoff static const struct bge_vendor {
2074c0da0ffSGleb Smirnoff 	uint16_t	v_id;
2084c0da0ffSGleb Smirnoff 	const char	*v_name;
2094c0da0ffSGleb Smirnoff } bge_vendors[] = {
2104c0da0ffSGleb Smirnoff 	{ ALTEON_VENDORID,	"Alteon" },
2114c0da0ffSGleb Smirnoff 	{ ALTIMA_VENDORID,	"Altima" },
2124c0da0ffSGleb Smirnoff 	{ APPLE_VENDORID,	"Apple" },
2134c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	"Broadcom" },
2144c0da0ffSGleb Smirnoff 	{ SK_VENDORID,		"SysKonnect" },
2154c0da0ffSGleb Smirnoff 	{ TC_VENDORID,		"3Com" },
2164c0da0ffSGleb Smirnoff 
2174c0da0ffSGleb Smirnoff 	{ 0, NULL }
2184c0da0ffSGleb Smirnoff };
2194c0da0ffSGleb Smirnoff 
2204c0da0ffSGleb Smirnoff static const struct bge_revision {
2214c0da0ffSGleb Smirnoff 	uint32_t	br_chipid;
2224c0da0ffSGleb Smirnoff 	const char	*br_name;
2234c0da0ffSGleb Smirnoff } bge_revisions[] = {
2244c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5700_A0,	"BCM5700 A0" },
2254c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5700_A1,	"BCM5700 A1" },
2264c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5700_B0,	"BCM5700 B0" },
2274c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5700_B1,	"BCM5700 B1" },
2284c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5700_B2,	"BCM5700 B2" },
2294c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5700_B3,	"BCM5700 B3" },
2304c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5700_ALTIMA,	"BCM5700 Altima" },
2314c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5700_C0,	"BCM5700 C0" },
2324c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5701_A0,	"BCM5701 A0" },
2334c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5701_B0,	"BCM5701 B0" },
2344c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5701_B2,	"BCM5701 B2" },
2354c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5701_B5,	"BCM5701 B5" },
2364c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5703_A0,	"BCM5703 A0" },
2374c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5703_A1,	"BCM5703 A1" },
2384c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5703_A2,	"BCM5703 A2" },
2394c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5703_A3,	"BCM5703 A3" },
2409e86676bSGleb Smirnoff 	{ BGE_CHIPID_BCM5703_B0,	"BCM5703 B0" },
2414c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5704_A0,	"BCM5704 A0" },
2424c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5704_A1,	"BCM5704 A1" },
2434c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5704_A2,	"BCM5704 A2" },
2444c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5704_A3,	"BCM5704 A3" },
2454c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5704_B0,	"BCM5704 B0" },
2464c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5705_A0,	"BCM5705 A0" },
2474c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5705_A1,	"BCM5705 A1" },
2484c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5705_A2,	"BCM5705 A2" },
2494c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5705_A3,	"BCM5705 A3" },
2504c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5750_A0,	"BCM5750 A0" },
2514c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5750_A1,	"BCM5750 A1" },
2524c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5750_A3,	"BCM5750 A3" },
2534c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5750_B0,	"BCM5750 B0" },
2544c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5750_B1,	"BCM5750 B1" },
2554c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5750_C0,	"BCM5750 C0" },
2564c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5750_C1,	"BCM5750 C1" },
25742787b76SGleb Smirnoff 	{ BGE_CHIPID_BCM5750_C2,	"BCM5750 C2" },
2584c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5714_A0,	"BCM5714 A0" },
2594c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5752_A0,	"BCM5752 A0" },
2604c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5752_A1,	"BCM5752 A1" },
2614c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5752_A2,	"BCM5752 A2" },
2624c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5714_B0,	"BCM5714 B0" },
2634c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5714_B3,	"BCM5714 B3" },
2644c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5715_A0,	"BCM5715 A0" },
2654c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5715_A1,	"BCM5715 A1" },
2660c4a1ef8SJung-uk Kim 	{ BGE_CHIPID_BCM5715_A3,	"BCM5715 A3" },
2670c4a1ef8SJung-uk Kim 	{ BGE_CHIPID_BCM5755_A0,	"BCM5755 A0" },
2680c4a1ef8SJung-uk Kim 	{ BGE_CHIPID_BCM5755_A1,	"BCM5755 A1" },
2690c4a1ef8SJung-uk Kim 	{ BGE_CHIPID_BCM5755_A2,	"BCM5755 A2" },
27081179070SJung-uk Kim 	/* 5754 and 5787 share the same ASIC ID */
2716f8718a3SScott Long 	{ BGE_CHIPID_BCM5787_A0,	"BCM5754/5787 A0" },
2726f8718a3SScott Long 	{ BGE_CHIPID_BCM5787_A1,	"BCM5754/5787 A1" },
2736f8718a3SScott Long 	{ BGE_CHIPID_BCM5787_A2,	"BCM5754/5787 A2" },
2744c0da0ffSGleb Smirnoff 
2754c0da0ffSGleb Smirnoff 	{ 0, NULL }
2764c0da0ffSGleb Smirnoff };
2774c0da0ffSGleb Smirnoff 
2784c0da0ffSGleb Smirnoff /*
2794c0da0ffSGleb Smirnoff  * Some defaults for major revisions, so that newer steppings
2804c0da0ffSGleb Smirnoff  * that we don't know about have a shot at working.
2814c0da0ffSGleb Smirnoff  */
2824c0da0ffSGleb Smirnoff static const struct bge_revision bge_majorrevs[] = {
2839e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5700,		"unknown BCM5700" },
2849e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5701,		"unknown BCM5701" },
2859e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5703,		"unknown BCM5703" },
2869e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5704,		"unknown BCM5704" },
2879e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5705,		"unknown BCM5705" },
2889e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5750,		"unknown BCM5750" },
2899e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5714_A0,	"unknown BCM5714" },
2909e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5752,		"unknown BCM5752" },
2919e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5780,		"unknown BCM5780" },
2929e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5714,		"unknown BCM5714" },
2939e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5755,		"unknown BCM5755" },
29481179070SJung-uk Kim 	/* 5754 and 5787 share the same ASIC ID */
2956f8718a3SScott Long 	{ BGE_ASICREV_BCM5787,		"unknown BCM5754/5787" },
2964c0da0ffSGleb Smirnoff 
2974c0da0ffSGleb Smirnoff 	{ 0, NULL }
2984c0da0ffSGleb Smirnoff };
2994c0da0ffSGleb Smirnoff 
3000c8aa4eaSJung-uk Kim #define	BGE_IS_JUMBO_CAPABLE(sc)	((sc)->bge_flags & BGE_FLAG_JUMBO)
3010c8aa4eaSJung-uk Kim #define	BGE_IS_5700_FAMILY(sc)		((sc)->bge_flags & BGE_FLAG_5700_FAMILY)
3020c8aa4eaSJung-uk Kim #define	BGE_IS_5705_PLUS(sc)		((sc)->bge_flags & BGE_FLAG_5705_PLUS)
3030c8aa4eaSJung-uk Kim #define	BGE_IS_5714_FAMILY(sc)		((sc)->bge_flags & BGE_FLAG_5714_FAMILY)
3040c8aa4eaSJung-uk Kim #define	BGE_IS_575X_PLUS(sc)		((sc)->bge_flags & BGE_FLAG_575X_PLUS)
3054c0da0ffSGleb Smirnoff 
3064c0da0ffSGleb Smirnoff const struct bge_revision * bge_lookup_rev(uint32_t);
3074c0da0ffSGleb Smirnoff const struct bge_vendor * bge_lookup_vendor(uint16_t);
308e51a25f8SAlfred Perlstein static int bge_probe(device_t);
309e51a25f8SAlfred Perlstein static int bge_attach(device_t);
310e51a25f8SAlfred Perlstein static int bge_detach(device_t);
31114afefa3SPawel Jakub Dawidek static int bge_suspend(device_t);
31214afefa3SPawel Jakub Dawidek static int bge_resume(device_t);
3133f74909aSGleb Smirnoff static void bge_release_resources(struct bge_softc *);
314f41ac2beSBill Paul static void bge_dma_map_addr(void *, bus_dma_segment_t *, int, int);
315f41ac2beSBill Paul static int bge_dma_alloc(device_t);
316f41ac2beSBill Paul static void bge_dma_free(struct bge_softc *);
317f41ac2beSBill Paul 
318e51a25f8SAlfred Perlstein static void bge_txeof(struct bge_softc *);
319e51a25f8SAlfred Perlstein static void bge_rxeof(struct bge_softc *);
32095d67482SBill Paul 
3218cb1383cSDoug Ambrisko static void bge_asf_driver_up (struct bge_softc *);
322e51a25f8SAlfred Perlstein static void bge_tick(void *);
323e51a25f8SAlfred Perlstein static void bge_stats_update(struct bge_softc *);
3243f74909aSGleb Smirnoff static void bge_stats_update_regs(struct bge_softc *);
325676ad2c9SGleb Smirnoff static int bge_encap(struct bge_softc *, struct mbuf **, uint32_t *);
32695d67482SBill Paul 
327e51a25f8SAlfred Perlstein static void bge_intr(void *);
3280f9bd73bSSam Leffler static void bge_start_locked(struct ifnet *);
329e51a25f8SAlfred Perlstein static void bge_start(struct ifnet *);
330e51a25f8SAlfred Perlstein static int bge_ioctl(struct ifnet *, u_long, caddr_t);
3310f9bd73bSSam Leffler static void bge_init_locked(struct bge_softc *);
332e51a25f8SAlfred Perlstein static void bge_init(void *);
333e51a25f8SAlfred Perlstein static void bge_stop(struct bge_softc *);
334b74e67fbSGleb Smirnoff static void bge_watchdog(struct bge_softc *);
335e51a25f8SAlfred Perlstein static void bge_shutdown(device_t);
33667d5e043SOleg Bulyzhin static int bge_ifmedia_upd_locked(struct ifnet *);
337e51a25f8SAlfred Perlstein static int bge_ifmedia_upd(struct ifnet *);
338e51a25f8SAlfred Perlstein static void bge_ifmedia_sts(struct ifnet *, struct ifmediareq *);
33995d67482SBill Paul 
3403f74909aSGleb Smirnoff static uint8_t bge_eeprom_getbyte(struct bge_softc *, int, uint8_t *);
341e51a25f8SAlfred Perlstein static int bge_read_eeprom(struct bge_softc *, caddr_t, int, int);
34295d67482SBill Paul 
3433e9b1bcaSJung-uk Kim static void bge_setpromisc(struct bge_softc *);
344e51a25f8SAlfred Perlstein static void bge_setmulti(struct bge_softc *);
34595d67482SBill Paul 
346e51a25f8SAlfred Perlstein static int bge_newbuf_std(struct bge_softc *, int, struct mbuf *);
347e51a25f8SAlfred Perlstein static int bge_newbuf_jumbo(struct bge_softc *, int, struct mbuf *);
348e51a25f8SAlfred Perlstein static int bge_init_rx_ring_std(struct bge_softc *);
349e51a25f8SAlfred Perlstein static void bge_free_rx_ring_std(struct bge_softc *);
350e51a25f8SAlfred Perlstein static int bge_init_rx_ring_jumbo(struct bge_softc *);
351e51a25f8SAlfred Perlstein static void bge_free_rx_ring_jumbo(struct bge_softc *);
352e51a25f8SAlfred Perlstein static void bge_free_tx_ring(struct bge_softc *);
353e51a25f8SAlfred Perlstein static int bge_init_tx_ring(struct bge_softc *);
35495d67482SBill Paul 
355e51a25f8SAlfred Perlstein static int bge_chipinit(struct bge_softc *);
356e51a25f8SAlfred Perlstein static int bge_blockinit(struct bge_softc *);
35795d67482SBill Paul 
35808013fd3SMarius Strobl static int bge_has_eeprom(struct bge_softc *);
3593f74909aSGleb Smirnoff static uint32_t bge_readmem_ind(struct bge_softc *, int);
360e51a25f8SAlfred Perlstein static void bge_writemem_ind(struct bge_softc *, int, int);
36195d67482SBill Paul #ifdef notdef
3623f74909aSGleb Smirnoff static uint32_t bge_readreg_ind(struct bge_softc *, int);
36395d67482SBill Paul #endif
3649ba784dbSScott Long static void bge_writemem_direct(struct bge_softc *, int, int);
365e51a25f8SAlfred Perlstein static void bge_writereg_ind(struct bge_softc *, int, int);
36695d67482SBill Paul 
367e51a25f8SAlfred Perlstein static int bge_miibus_readreg(device_t, int, int);
368e51a25f8SAlfred Perlstein static int bge_miibus_writereg(device_t, int, int, int);
369e51a25f8SAlfred Perlstein static void bge_miibus_statchg(device_t);
37075719184SGleb Smirnoff #ifdef DEVICE_POLLING
3713f74909aSGleb Smirnoff static void bge_poll(struct ifnet *ifp, enum poll_cmd cmd, int count);
37275719184SGleb Smirnoff #endif
37395d67482SBill Paul 
3748cb1383cSDoug Ambrisko #define	BGE_RESET_START 1
3758cb1383cSDoug Ambrisko #define	BGE_RESET_STOP  2
3768cb1383cSDoug Ambrisko static void bge_sig_post_reset(struct bge_softc *, int);
3778cb1383cSDoug Ambrisko static void bge_sig_legacy(struct bge_softc *, int);
3788cb1383cSDoug Ambrisko static void bge_sig_pre_reset(struct bge_softc *, int);
3798cb1383cSDoug Ambrisko static int bge_reset(struct bge_softc *);
380dab5cd05SOleg Bulyzhin static void bge_link_upd(struct bge_softc *);
38195d67482SBill Paul 
3826f8718a3SScott Long /*
3836f8718a3SScott Long  * The BGE_REGISTER_DEBUG option is only for low-level debugging.  It may
3846f8718a3SScott Long  * leak information to untrusted users.  It is also known to cause alignment
3856f8718a3SScott Long  * traps on certain architectures.
3866f8718a3SScott Long  */
3876f8718a3SScott Long #ifdef BGE_REGISTER_DEBUG
3886f8718a3SScott Long static int bge_sysctl_debug_info(SYSCTL_HANDLER_ARGS);
3896f8718a3SScott Long static int bge_sysctl_reg_read(SYSCTL_HANDLER_ARGS);
3906f8718a3SScott Long static int bge_sysctl_mem_read(SYSCTL_HANDLER_ARGS);
3916f8718a3SScott Long #endif
3926f8718a3SScott Long static void bge_add_sysctls(struct bge_softc *);
393763757b2SScott Long static int bge_sysctl_stats(SYSCTL_HANDLER_ARGS);
3946f8718a3SScott Long 
39595d67482SBill Paul static device_method_t bge_methods[] = {
39695d67482SBill Paul 	/* Device interface */
39795d67482SBill Paul 	DEVMETHOD(device_probe,		bge_probe),
39895d67482SBill Paul 	DEVMETHOD(device_attach,	bge_attach),
39995d67482SBill Paul 	DEVMETHOD(device_detach,	bge_detach),
40095d67482SBill Paul 	DEVMETHOD(device_shutdown,	bge_shutdown),
40114afefa3SPawel Jakub Dawidek 	DEVMETHOD(device_suspend,	bge_suspend),
40214afefa3SPawel Jakub Dawidek 	DEVMETHOD(device_resume,	bge_resume),
40395d67482SBill Paul 
40495d67482SBill Paul 	/* bus interface */
40595d67482SBill Paul 	DEVMETHOD(bus_print_child,	bus_generic_print_child),
40695d67482SBill Paul 	DEVMETHOD(bus_driver_added,	bus_generic_driver_added),
40795d67482SBill Paul 
40895d67482SBill Paul 	/* MII interface */
40995d67482SBill Paul 	DEVMETHOD(miibus_readreg,	bge_miibus_readreg),
41095d67482SBill Paul 	DEVMETHOD(miibus_writereg,	bge_miibus_writereg),
41195d67482SBill Paul 	DEVMETHOD(miibus_statchg,	bge_miibus_statchg),
41295d67482SBill Paul 
41395d67482SBill Paul 	{ 0, 0 }
41495d67482SBill Paul };
41595d67482SBill Paul 
41695d67482SBill Paul static driver_t bge_driver = {
41795d67482SBill Paul 	"bge",
41895d67482SBill Paul 	bge_methods,
41995d67482SBill Paul 	sizeof(struct bge_softc)
42095d67482SBill Paul };
42195d67482SBill Paul 
42295d67482SBill Paul static devclass_t bge_devclass;
42395d67482SBill Paul 
424f246e4a1SMatthew N. Dodd DRIVER_MODULE(bge, pci, bge_driver, bge_devclass, 0, 0);
42595d67482SBill Paul DRIVER_MODULE(miibus, bge, miibus_driver, miibus_devclass, 0, 0);
42695d67482SBill Paul 
427c4529f41SMichael Reifenberger static int bge_fake_autoneg = 0;
428f1a7e6d5SScott Long static int bge_allow_asf = 1;
429f1a7e6d5SScott Long 
430c4529f41SMichael Reifenberger TUNABLE_INT("hw.bge.fake_autoneg", &bge_fake_autoneg);
431f1a7e6d5SScott Long TUNABLE_INT("hw.bge.allow_asf", &bge_allow_asf);
432f1a7e6d5SScott Long 
433f1a7e6d5SScott Long SYSCTL_NODE(_hw, OID_AUTO, bge, CTLFLAG_RD, 0, "BGE driver parameters");
434f1a7e6d5SScott Long SYSCTL_INT(_hw_bge, OID_AUTO, fake_autoneg, CTLFLAG_RD, &bge_fake_autoneg, 0,
435f1a7e6d5SScott Long 	"Enable fake autonegotiation for certain blade systems");
436f1a7e6d5SScott Long SYSCTL_INT(_hw_bge, OID_AUTO, allow_asf, CTLFLAG_RD, &bge_allow_asf, 0,
437f1a7e6d5SScott Long 	"Allow ASF mode if available");
438c4529f41SMichael Reifenberger 
43908013fd3SMarius Strobl #define	SPARC64_BLADE_1500_MODEL	"SUNW,Sun-Blade-1500"
44008013fd3SMarius Strobl #define	SPARC64_BLADE_1500_PATH_BGE	"/pci@1f,700000/network@2"
44108013fd3SMarius Strobl #define	SPARC64_BLADE_2500_MODEL	"SUNW,Sun-Blade-2500"
44208013fd3SMarius Strobl #define	SPARC64_BLADE_2500_PATH_BGE	"/pci@1c,600000/network@3"
44308013fd3SMarius Strobl #define	SPARC64_OFW_SUBVENDOR		"subsystem-vendor-id"
44408013fd3SMarius Strobl 
44508013fd3SMarius Strobl static int
44608013fd3SMarius Strobl bge_has_eeprom(struct bge_softc *sc)
44708013fd3SMarius Strobl {
44808013fd3SMarius Strobl #ifdef __sparc64__
44908013fd3SMarius Strobl 	char buf[sizeof(SPARC64_BLADE_1500_PATH_BGE)];
45008013fd3SMarius Strobl 	device_t dev;
45108013fd3SMarius Strobl 	uint32_t subvendor;
45208013fd3SMarius Strobl 
45308013fd3SMarius Strobl 	dev = sc->bge_dev;
45408013fd3SMarius Strobl 
45508013fd3SMarius Strobl 	/*
45608013fd3SMarius Strobl 	 * The on-board BGEs found in sun4u machines aren't fitted with
45708013fd3SMarius Strobl 	 * an EEPROM which means that we have to obtain the MAC address
45808013fd3SMarius Strobl 	 * via OFW and that some tests will always fail. We distinguish
45908013fd3SMarius Strobl 	 * such BGEs by the subvendor ID, which also has to be obtained
46008013fd3SMarius Strobl 	 * from OFW instead of the PCI configuration space as the latter
46108013fd3SMarius Strobl 	 * indicates Broadcom as the subvendor of the netboot interface.
46208013fd3SMarius Strobl 	 * For early Blade 1500 and 2500 we even have to check the OFW
46308013fd3SMarius Strobl 	 * device path as the subvendor ID always defaults to Broadcom
46408013fd3SMarius Strobl 	 * there.
46508013fd3SMarius Strobl 	 */
46608013fd3SMarius Strobl 	if (OF_getprop(ofw_bus_get_node(dev), SPARC64_OFW_SUBVENDOR,
46708013fd3SMarius Strobl 	    &subvendor, sizeof(subvendor)) == sizeof(subvendor) &&
46808013fd3SMarius Strobl 	    subvendor == SUN_VENDORID)
46908013fd3SMarius Strobl 		return (0);
47008013fd3SMarius Strobl 	memset(buf, 0, sizeof(buf));
47108013fd3SMarius Strobl 	if (OF_package_to_path(ofw_bus_get_node(dev), buf, sizeof(buf)) > 0) {
47208013fd3SMarius Strobl 		if (strcmp(sparc64_model, SPARC64_BLADE_1500_MODEL) == 0 &&
47308013fd3SMarius Strobl 		    strcmp(buf, SPARC64_BLADE_1500_PATH_BGE) == 0)
47408013fd3SMarius Strobl 			return (0);
47508013fd3SMarius Strobl 		if (strcmp(sparc64_model, SPARC64_BLADE_2500_MODEL) == 0 &&
47608013fd3SMarius Strobl 		    strcmp(buf, SPARC64_BLADE_2500_PATH_BGE) == 0)
47708013fd3SMarius Strobl 			return (0);
47808013fd3SMarius Strobl 	}
47908013fd3SMarius Strobl #endif
48008013fd3SMarius Strobl 	return (1);
48108013fd3SMarius Strobl }
48208013fd3SMarius Strobl 
4833f74909aSGleb Smirnoff static uint32_t
4843f74909aSGleb Smirnoff bge_readmem_ind(struct bge_softc *sc, int off)
48595d67482SBill Paul {
48695d67482SBill Paul 	device_t dev;
4876f8718a3SScott Long 	uint32_t val;
48895d67482SBill Paul 
48995d67482SBill Paul 	dev = sc->bge_dev;
49095d67482SBill Paul 
49195d67482SBill Paul 	pci_write_config(dev, BGE_PCI_MEMWIN_BASEADDR, off, 4);
4926f8718a3SScott Long 	val = pci_read_config(dev, BGE_PCI_MEMWIN_DATA, 4);
4936f8718a3SScott Long 	pci_write_config(dev, BGE_PCI_MEMWIN_BASEADDR, 0, 4);
4946f8718a3SScott Long 	return (val);
49595d67482SBill Paul }
49695d67482SBill Paul 
49795d67482SBill Paul static void
4983f74909aSGleb Smirnoff bge_writemem_ind(struct bge_softc *sc, int off, int val)
49995d67482SBill Paul {
50095d67482SBill Paul 	device_t dev;
50195d67482SBill Paul 
50295d67482SBill Paul 	dev = sc->bge_dev;
50395d67482SBill Paul 
50495d67482SBill Paul 	pci_write_config(dev, BGE_PCI_MEMWIN_BASEADDR, off, 4);
50595d67482SBill Paul 	pci_write_config(dev, BGE_PCI_MEMWIN_DATA, val, 4);
5066f8718a3SScott Long 	pci_write_config(dev, BGE_PCI_MEMWIN_BASEADDR, 0, 4);
50795d67482SBill Paul }
50895d67482SBill Paul 
50995d67482SBill Paul #ifdef notdef
5103f74909aSGleb Smirnoff static uint32_t
5113f74909aSGleb Smirnoff bge_readreg_ind(struct bge_softc *sc, int off)
51295d67482SBill Paul {
51395d67482SBill Paul 	device_t dev;
51495d67482SBill Paul 
51595d67482SBill Paul 	dev = sc->bge_dev;
51695d67482SBill Paul 
51795d67482SBill Paul 	pci_write_config(dev, BGE_PCI_REG_BASEADDR, off, 4);
51895d67482SBill Paul 	return (pci_read_config(dev, BGE_PCI_REG_DATA, 4));
51995d67482SBill Paul }
52095d67482SBill Paul #endif
52195d67482SBill Paul 
52295d67482SBill Paul static void
5233f74909aSGleb Smirnoff bge_writereg_ind(struct bge_softc *sc, int off, int val)
52495d67482SBill Paul {
52595d67482SBill Paul 	device_t dev;
52695d67482SBill Paul 
52795d67482SBill Paul 	dev = sc->bge_dev;
52895d67482SBill Paul 
52995d67482SBill Paul 	pci_write_config(dev, BGE_PCI_REG_BASEADDR, off, 4);
53095d67482SBill Paul 	pci_write_config(dev, BGE_PCI_REG_DATA, val, 4);
53195d67482SBill Paul }
53295d67482SBill Paul 
5336f8718a3SScott Long static void
5346f8718a3SScott Long bge_writemem_direct(struct bge_softc *sc, int off, int val)
5356f8718a3SScott Long {
5366f8718a3SScott Long 	CSR_WRITE_4(sc, off, val);
5376f8718a3SScott Long }
5386f8718a3SScott Long 
539f41ac2beSBill Paul /*
540f41ac2beSBill Paul  * Map a single buffer address.
541f41ac2beSBill Paul  */
542f41ac2beSBill Paul 
543f41ac2beSBill Paul static void
5443f74909aSGleb Smirnoff bge_dma_map_addr(void *arg, bus_dma_segment_t *segs, int nseg, int error)
545f41ac2beSBill Paul {
546f41ac2beSBill Paul 	struct bge_dmamap_arg *ctx;
547f41ac2beSBill Paul 
548f41ac2beSBill Paul 	if (error)
549f41ac2beSBill Paul 		return;
550f41ac2beSBill Paul 
551f41ac2beSBill Paul 	ctx = arg;
552f41ac2beSBill Paul 
553f41ac2beSBill Paul 	if (nseg > ctx->bge_maxsegs) {
554f41ac2beSBill Paul 		ctx->bge_maxsegs = 0;
555f41ac2beSBill Paul 		return;
556f41ac2beSBill Paul 	}
557f41ac2beSBill Paul 
558f41ac2beSBill Paul 	ctx->bge_busaddr = segs->ds_addr;
559f41ac2beSBill Paul }
560f41ac2beSBill Paul 
56195d67482SBill Paul /*
56295d67482SBill Paul  * Read a byte of data stored in the EEPROM at address 'addr.' The
56395d67482SBill Paul  * BCM570x supports both the traditional bitbang interface and an
56495d67482SBill Paul  * auto access interface for reading the EEPROM. We use the auto
56595d67482SBill Paul  * access method.
56695d67482SBill Paul  */
5673f74909aSGleb Smirnoff static uint8_t
5683f74909aSGleb Smirnoff bge_eeprom_getbyte(struct bge_softc *sc, int addr, uint8_t *dest)
56995d67482SBill Paul {
57095d67482SBill Paul 	int i;
5713f74909aSGleb Smirnoff 	uint32_t byte = 0;
57295d67482SBill Paul 
57395d67482SBill Paul 	/*
57495d67482SBill Paul 	 * Enable use of auto EEPROM access so we can avoid
57595d67482SBill Paul 	 * having to use the bitbang method.
57695d67482SBill Paul 	 */
57795d67482SBill Paul 	BGE_SETBIT(sc, BGE_MISC_LOCAL_CTL, BGE_MLC_AUTO_EEPROM);
57895d67482SBill Paul 
57995d67482SBill Paul 	/* Reset the EEPROM, load the clock period. */
58095d67482SBill Paul 	CSR_WRITE_4(sc, BGE_EE_ADDR,
58195d67482SBill Paul 	    BGE_EEADDR_RESET | BGE_EEHALFCLK(BGE_HALFCLK_384SCL));
58295d67482SBill Paul 	DELAY(20);
58395d67482SBill Paul 
58495d67482SBill Paul 	/* Issue the read EEPROM command. */
58595d67482SBill Paul 	CSR_WRITE_4(sc, BGE_EE_ADDR, BGE_EE_READCMD | addr);
58695d67482SBill Paul 
58795d67482SBill Paul 	/* Wait for completion */
58895d67482SBill Paul 	for(i = 0; i < BGE_TIMEOUT * 10; i++) {
58995d67482SBill Paul 		DELAY(10);
59095d67482SBill Paul 		if (CSR_READ_4(sc, BGE_EE_ADDR) & BGE_EEADDR_DONE)
59195d67482SBill Paul 			break;
59295d67482SBill Paul 	}
59395d67482SBill Paul 
59495d67482SBill Paul 	if (i == BGE_TIMEOUT) {
595fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "EEPROM read timed out\n");
596f6789fbaSPyun YongHyeon 		return (1);
59795d67482SBill Paul 	}
59895d67482SBill Paul 
59995d67482SBill Paul 	/* Get result. */
60095d67482SBill Paul 	byte = CSR_READ_4(sc, BGE_EE_DATA);
60195d67482SBill Paul 
6020c8aa4eaSJung-uk Kim 	*dest = (byte >> ((addr % 4) * 8)) & 0xFF;
60395d67482SBill Paul 
60495d67482SBill Paul 	return (0);
60595d67482SBill Paul }
60695d67482SBill Paul 
60795d67482SBill Paul /*
60895d67482SBill Paul  * Read a sequence of bytes from the EEPROM.
60995d67482SBill Paul  */
61095d67482SBill Paul static int
6113f74909aSGleb Smirnoff bge_read_eeprom(struct bge_softc *sc, caddr_t dest, int off, int cnt)
61295d67482SBill Paul {
6133f74909aSGleb Smirnoff 	int i, error = 0;
6143f74909aSGleb Smirnoff 	uint8_t byte = 0;
61595d67482SBill Paul 
61695d67482SBill Paul 	for (i = 0; i < cnt; i++) {
6173f74909aSGleb Smirnoff 		error = bge_eeprom_getbyte(sc, off + i, &byte);
6183f74909aSGleb Smirnoff 		if (error)
61995d67482SBill Paul 			break;
62095d67482SBill Paul 		*(dest + i) = byte;
62195d67482SBill Paul 	}
62295d67482SBill Paul 
6233f74909aSGleb Smirnoff 	return (error ? 1 : 0);
62495d67482SBill Paul }
62595d67482SBill Paul 
62695d67482SBill Paul static int
6273f74909aSGleb Smirnoff bge_miibus_readreg(device_t dev, int phy, int reg)
62895d67482SBill Paul {
62995d67482SBill Paul 	struct bge_softc *sc;
6303f74909aSGleb Smirnoff 	uint32_t val, autopoll;
63195d67482SBill Paul 	int i;
63295d67482SBill Paul 
63395d67482SBill Paul 	sc = device_get_softc(dev);
63495d67482SBill Paul 
6350434d1b8SBill Paul 	/*
6360434d1b8SBill Paul 	 * Broadcom's own driver always assumes the internal
6370434d1b8SBill Paul 	 * PHY is at GMII address 1. On some chips, the PHY responds
6380434d1b8SBill Paul 	 * to accesses at all addresses, which could cause us to
6390434d1b8SBill Paul 	 * bogusly attach the PHY 32 times at probe type. Always
6400434d1b8SBill Paul 	 * restricting the lookup to address 1 is simpler than
6410434d1b8SBill Paul 	 * trying to figure out which chips revisions should be
6420434d1b8SBill Paul 	 * special-cased.
6430434d1b8SBill Paul 	 */
644b1265c1aSJohn Polstra 	if (phy != 1)
64598b28ee5SBill Paul 		return (0);
64698b28ee5SBill Paul 
64737ceeb4dSPaul Saab 	/* Reading with autopolling on may trigger PCI errors */
64837ceeb4dSPaul Saab 	autopoll = CSR_READ_4(sc, BGE_MI_MODE);
64937ceeb4dSPaul Saab 	if (autopoll & BGE_MIMODE_AUTOPOLL) {
65037ceeb4dSPaul Saab 		BGE_CLRBIT(sc, BGE_MI_MODE, BGE_MIMODE_AUTOPOLL);
65137ceeb4dSPaul Saab 		DELAY(40);
65237ceeb4dSPaul Saab 	}
65337ceeb4dSPaul Saab 
65495d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MI_COMM, BGE_MICMD_READ | BGE_MICOMM_BUSY |
65595d67482SBill Paul 	    BGE_MIPHY(phy) | BGE_MIREG(reg));
65695d67482SBill Paul 
65795d67482SBill Paul 	for (i = 0; i < BGE_TIMEOUT; i++) {
65895d67482SBill Paul 		val = CSR_READ_4(sc, BGE_MI_COMM);
65995d67482SBill Paul 		if (!(val & BGE_MICOMM_BUSY))
66095d67482SBill Paul 			break;
66195d67482SBill Paul 	}
66295d67482SBill Paul 
66395d67482SBill Paul 	if (i == BGE_TIMEOUT) {
6646b9f5c94SGleb Smirnoff 		device_printf(sc->bge_dev, "PHY read timed out\n");
66537ceeb4dSPaul Saab 		val = 0;
66637ceeb4dSPaul Saab 		goto done;
66795d67482SBill Paul 	}
66895d67482SBill Paul 
66995d67482SBill Paul 	val = CSR_READ_4(sc, BGE_MI_COMM);
67095d67482SBill Paul 
67137ceeb4dSPaul Saab done:
67237ceeb4dSPaul Saab 	if (autopoll & BGE_MIMODE_AUTOPOLL) {
67337ceeb4dSPaul Saab 		BGE_SETBIT(sc, BGE_MI_MODE, BGE_MIMODE_AUTOPOLL);
67437ceeb4dSPaul Saab 		DELAY(40);
67537ceeb4dSPaul Saab 	}
67637ceeb4dSPaul Saab 
67795d67482SBill Paul 	if (val & BGE_MICOMM_READFAIL)
67895d67482SBill Paul 		return (0);
67995d67482SBill Paul 
6800c8aa4eaSJung-uk Kim 	return (val & 0xFFFF);
68195d67482SBill Paul }
68295d67482SBill Paul 
68395d67482SBill Paul static int
6843f74909aSGleb Smirnoff bge_miibus_writereg(device_t dev, int phy, int reg, int val)
68595d67482SBill Paul {
68695d67482SBill Paul 	struct bge_softc *sc;
6873f74909aSGleb Smirnoff 	uint32_t autopoll;
68895d67482SBill Paul 	int i;
68995d67482SBill Paul 
69095d67482SBill Paul 	sc = device_get_softc(dev);
69195d67482SBill Paul 
69237ceeb4dSPaul Saab 	/* Reading with autopolling on may trigger PCI errors */
69337ceeb4dSPaul Saab 	autopoll = CSR_READ_4(sc, BGE_MI_MODE);
69437ceeb4dSPaul Saab 	if (autopoll & BGE_MIMODE_AUTOPOLL) {
69537ceeb4dSPaul Saab 		BGE_CLRBIT(sc, BGE_MI_MODE, BGE_MIMODE_AUTOPOLL);
69637ceeb4dSPaul Saab 		DELAY(40);
69737ceeb4dSPaul Saab 	}
69837ceeb4dSPaul Saab 
69995d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MI_COMM, BGE_MICMD_WRITE | BGE_MICOMM_BUSY |
70095d67482SBill Paul 	    BGE_MIPHY(phy) | BGE_MIREG(reg) | val);
70195d67482SBill Paul 
70295d67482SBill Paul 	for (i = 0; i < BGE_TIMEOUT; i++) {
70395d67482SBill Paul 		if (!(CSR_READ_4(sc, BGE_MI_COMM) & BGE_MICOMM_BUSY))
70495d67482SBill Paul 			break;
70595d67482SBill Paul 	}
70695d67482SBill Paul 
70737ceeb4dSPaul Saab 	if (autopoll & BGE_MIMODE_AUTOPOLL) {
70837ceeb4dSPaul Saab 		BGE_SETBIT(sc, BGE_MI_MODE, BGE_MIMODE_AUTOPOLL);
70937ceeb4dSPaul Saab 		DELAY(40);
71037ceeb4dSPaul Saab 	}
71137ceeb4dSPaul Saab 
71295d67482SBill Paul 	if (i == BGE_TIMEOUT) {
7136b9f5c94SGleb Smirnoff 		device_printf(sc->bge_dev, "PHY read timed out\n");
71495d67482SBill Paul 		return (0);
71595d67482SBill Paul 	}
71695d67482SBill Paul 
71795d67482SBill Paul 	return (0);
71895d67482SBill Paul }
71995d67482SBill Paul 
72095d67482SBill Paul static void
7213f74909aSGleb Smirnoff bge_miibus_statchg(device_t dev)
72295d67482SBill Paul {
72395d67482SBill Paul 	struct bge_softc *sc;
72495d67482SBill Paul 	struct mii_data *mii;
72595d67482SBill Paul 	sc = device_get_softc(dev);
72695d67482SBill Paul 	mii = device_get_softc(sc->bge_miibus);
72795d67482SBill Paul 
72895d67482SBill Paul 	BGE_CLRBIT(sc, BGE_MAC_MODE, BGE_MACMODE_PORTMODE);
7293f74909aSGleb Smirnoff 	if (IFM_SUBTYPE(mii->mii_media_active) == IFM_1000_T)
73095d67482SBill Paul 		BGE_SETBIT(sc, BGE_MAC_MODE, BGE_PORTMODE_GMII);
7313f74909aSGleb Smirnoff 	else
73295d67482SBill Paul 		BGE_SETBIT(sc, BGE_MAC_MODE, BGE_PORTMODE_MII);
73395d67482SBill Paul 
7343f74909aSGleb Smirnoff 	if ((mii->mii_media_active & IFM_GMASK) == IFM_FDX)
73595d67482SBill Paul 		BGE_CLRBIT(sc, BGE_MAC_MODE, BGE_MACMODE_HALF_DUPLEX);
7363f74909aSGleb Smirnoff 	else
73795d67482SBill Paul 		BGE_SETBIT(sc, BGE_MAC_MODE, BGE_MACMODE_HALF_DUPLEX);
73895d67482SBill Paul }
73995d67482SBill Paul 
74095d67482SBill Paul /*
74195d67482SBill Paul  * Intialize a standard receive ring descriptor.
74295d67482SBill Paul  */
74395d67482SBill Paul static int
7443f74909aSGleb Smirnoff bge_newbuf_std(struct bge_softc *sc, int i, struct mbuf *m)
74595d67482SBill Paul {
74695d67482SBill Paul 	struct mbuf *m_new = NULL;
74795d67482SBill Paul 	struct bge_rx_bd *r;
748f41ac2beSBill Paul 	struct bge_dmamap_arg ctx;
749f41ac2beSBill Paul 	int error;
75095d67482SBill Paul 
75195d67482SBill Paul 	if (m == NULL) {
752c3a56752SGleb Smirnoff 		m_new = m_getcl(M_DONTWAIT, MT_DATA, M_PKTHDR);
753c3a56752SGleb Smirnoff 		if (m_new == NULL)
75495d67482SBill Paul 			return (ENOBUFS);
75595d67482SBill Paul 		m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
75695d67482SBill Paul 	} else {
75795d67482SBill Paul 		m_new = m;
75895d67482SBill Paul 		m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
75995d67482SBill Paul 		m_new->m_data = m_new->m_ext.ext_buf;
76095d67482SBill Paul 	}
76195d67482SBill Paul 
762652ae483SGleb Smirnoff 	if ((sc->bge_flags & BGE_FLAG_RX_ALIGNBUG) == 0)
76395d67482SBill Paul 		m_adj(m_new, ETHER_ALIGN);
76495d67482SBill Paul 	sc->bge_cdata.bge_rx_std_chain[i] = m_new;
765f41ac2beSBill Paul 	r = &sc->bge_ldata.bge_rx_std_ring[i];
766f41ac2beSBill Paul 	ctx.bge_maxsegs = 1;
767f41ac2beSBill Paul 	ctx.sc = sc;
768f41ac2beSBill Paul 	error = bus_dmamap_load(sc->bge_cdata.bge_mtag,
769f41ac2beSBill Paul 	    sc->bge_cdata.bge_rx_std_dmamap[i], mtod(m_new, void *),
770f41ac2beSBill Paul 	    m_new->m_len, bge_dma_map_addr, &ctx, BUS_DMA_NOWAIT);
771f41ac2beSBill Paul 	if (error || ctx.bge_maxsegs == 0) {
772f7cea149SGleb Smirnoff 		if (m == NULL) {
773f7cea149SGleb Smirnoff 			sc->bge_cdata.bge_rx_std_chain[i] = NULL;
774f41ac2beSBill Paul 			m_freem(m_new);
775f7cea149SGleb Smirnoff 		}
776f41ac2beSBill Paul 		return (ENOMEM);
777f41ac2beSBill Paul 	}
778e907febfSPyun YongHyeon 	r->bge_addr.bge_addr_lo = BGE_ADDR_LO(ctx.bge_busaddr);
779e907febfSPyun YongHyeon 	r->bge_addr.bge_addr_hi = BGE_ADDR_HI(ctx.bge_busaddr);
780e907febfSPyun YongHyeon 	r->bge_flags = BGE_RXBDFLAG_END;
781e907febfSPyun YongHyeon 	r->bge_len = m_new->m_len;
782e907febfSPyun YongHyeon 	r->bge_idx = i;
783f41ac2beSBill Paul 
784f41ac2beSBill Paul 	bus_dmamap_sync(sc->bge_cdata.bge_mtag,
785f41ac2beSBill Paul 	    sc->bge_cdata.bge_rx_std_dmamap[i],
786f41ac2beSBill Paul 	    BUS_DMASYNC_PREREAD);
78795d67482SBill Paul 
78895d67482SBill Paul 	return (0);
78995d67482SBill Paul }
79095d67482SBill Paul 
79195d67482SBill Paul /*
79295d67482SBill Paul  * Initialize a jumbo receive ring descriptor. This allocates
79395d67482SBill Paul  * a jumbo buffer from the pool managed internally by the driver.
79495d67482SBill Paul  */
79595d67482SBill Paul static int
7963f74909aSGleb Smirnoff bge_newbuf_jumbo(struct bge_softc *sc, int i, struct mbuf *m)
79795d67482SBill Paul {
7981be6acb7SGleb Smirnoff 	bus_dma_segment_t segs[BGE_NSEG_JUMBO];
7991be6acb7SGleb Smirnoff 	struct bge_extrx_bd *r;
80095d67482SBill Paul 	struct mbuf *m_new = NULL;
8011be6acb7SGleb Smirnoff 	int nsegs;
802f41ac2beSBill Paul 	int error;
80395d67482SBill Paul 
80495d67482SBill Paul 	if (m == NULL) {
805a163d034SWarner Losh 		MGETHDR(m_new, M_DONTWAIT, MT_DATA);
8061be6acb7SGleb Smirnoff 		if (m_new == NULL)
80795d67482SBill Paul 			return (ENOBUFS);
80895d67482SBill Paul 
8091be6acb7SGleb Smirnoff 		m_cljget(m_new, M_DONTWAIT, MJUM9BYTES);
8101be6acb7SGleb Smirnoff 		if (!(m_new->m_flags & M_EXT)) {
81195d67482SBill Paul 			m_freem(m_new);
81295d67482SBill Paul 			return (ENOBUFS);
81395d67482SBill Paul 		}
8141be6acb7SGleb Smirnoff 		m_new->m_len = m_new->m_pkthdr.len = MJUM9BYTES;
81595d67482SBill Paul 	} else {
81695d67482SBill Paul 		m_new = m;
8171be6acb7SGleb Smirnoff 		m_new->m_len = m_new->m_pkthdr.len = MJUM9BYTES;
81895d67482SBill Paul 		m_new->m_data = m_new->m_ext.ext_buf;
81995d67482SBill Paul 	}
82095d67482SBill Paul 
821652ae483SGleb Smirnoff 	if ((sc->bge_flags & BGE_FLAG_RX_ALIGNBUG) == 0)
82295d67482SBill Paul 		m_adj(m_new, ETHER_ALIGN);
8231be6acb7SGleb Smirnoff 
8241be6acb7SGleb Smirnoff 	error = bus_dmamap_load_mbuf_sg(sc->bge_cdata.bge_mtag_jumbo,
8251be6acb7SGleb Smirnoff 	    sc->bge_cdata.bge_rx_jumbo_dmamap[i],
8261be6acb7SGleb Smirnoff 	    m_new, segs, &nsegs, BUS_DMA_NOWAIT);
8271be6acb7SGleb Smirnoff 	if (error) {
8281be6acb7SGleb Smirnoff 		if (m == NULL)
829f41ac2beSBill Paul 			m_freem(m_new);
8301be6acb7SGleb Smirnoff 		return (error);
831f7cea149SGleb Smirnoff 	}
8321be6acb7SGleb Smirnoff 	sc->bge_cdata.bge_rx_jumbo_chain[i] = m_new;
8331be6acb7SGleb Smirnoff 
8341be6acb7SGleb Smirnoff 	/*
8351be6acb7SGleb Smirnoff 	 * Fill in the extended RX buffer descriptor.
8361be6acb7SGleb Smirnoff 	 */
8371be6acb7SGleb Smirnoff 	r = &sc->bge_ldata.bge_rx_jumbo_ring[i];
8384e7ba1abSGleb Smirnoff 	r->bge_flags = BGE_RXBDFLAG_JUMBO_RING | BGE_RXBDFLAG_END;
8394e7ba1abSGleb Smirnoff 	r->bge_idx = i;
8404e7ba1abSGleb Smirnoff 	r->bge_len3 = r->bge_len2 = r->bge_len1 = 0;
8414e7ba1abSGleb Smirnoff 	switch (nsegs) {
8424e7ba1abSGleb Smirnoff 	case 4:
8434e7ba1abSGleb Smirnoff 		r->bge_addr3.bge_addr_lo = BGE_ADDR_LO(segs[3].ds_addr);
8444e7ba1abSGleb Smirnoff 		r->bge_addr3.bge_addr_hi = BGE_ADDR_HI(segs[3].ds_addr);
8454e7ba1abSGleb Smirnoff 		r->bge_len3 = segs[3].ds_len;
8464e7ba1abSGleb Smirnoff 	case 3:
847e907febfSPyun YongHyeon 		r->bge_addr2.bge_addr_lo = BGE_ADDR_LO(segs[2].ds_addr);
848e907febfSPyun YongHyeon 		r->bge_addr2.bge_addr_hi = BGE_ADDR_HI(segs[2].ds_addr);
849e907febfSPyun YongHyeon 		r->bge_len2 = segs[2].ds_len;
8504e7ba1abSGleb Smirnoff 	case 2:
8514e7ba1abSGleb Smirnoff 		r->bge_addr1.bge_addr_lo = BGE_ADDR_LO(segs[1].ds_addr);
8524e7ba1abSGleb Smirnoff 		r->bge_addr1.bge_addr_hi = BGE_ADDR_HI(segs[1].ds_addr);
8534e7ba1abSGleb Smirnoff 		r->bge_len1 = segs[1].ds_len;
8544e7ba1abSGleb Smirnoff 	case 1:
8554e7ba1abSGleb Smirnoff 		r->bge_addr0.bge_addr_lo = BGE_ADDR_LO(segs[0].ds_addr);
8564e7ba1abSGleb Smirnoff 		r->bge_addr0.bge_addr_hi = BGE_ADDR_HI(segs[0].ds_addr);
8574e7ba1abSGleb Smirnoff 		r->bge_len0 = segs[0].ds_len;
8584e7ba1abSGleb Smirnoff 		break;
8594e7ba1abSGleb Smirnoff 	default:
8604e7ba1abSGleb Smirnoff 		panic("%s: %d segments\n", __func__, nsegs);
8614e7ba1abSGleb Smirnoff 	}
862f41ac2beSBill Paul 
863f41ac2beSBill Paul 	bus_dmamap_sync(sc->bge_cdata.bge_mtag,
864f41ac2beSBill Paul 	    sc->bge_cdata.bge_rx_jumbo_dmamap[i],
865f41ac2beSBill Paul 	    BUS_DMASYNC_PREREAD);
86695d67482SBill Paul 
86795d67482SBill Paul 	return (0);
86895d67482SBill Paul }
86995d67482SBill Paul 
87095d67482SBill Paul /*
87195d67482SBill Paul  * The standard receive ring has 512 entries in it. At 2K per mbuf cluster,
87295d67482SBill Paul  * that's 1MB or memory, which is a lot. For now, we fill only the first
87395d67482SBill Paul  * 256 ring entries and hope that our CPU is fast enough to keep up with
87495d67482SBill Paul  * the NIC.
87595d67482SBill Paul  */
87695d67482SBill Paul static int
8773f74909aSGleb Smirnoff bge_init_rx_ring_std(struct bge_softc *sc)
87895d67482SBill Paul {
87995d67482SBill Paul 	int i;
88095d67482SBill Paul 
88195d67482SBill Paul 	for (i = 0; i < BGE_SSLOTS; i++) {
88295d67482SBill Paul 		if (bge_newbuf_std(sc, i, NULL) == ENOBUFS)
88395d67482SBill Paul 			return (ENOBUFS);
88495d67482SBill Paul 	};
88595d67482SBill Paul 
886f41ac2beSBill Paul 	bus_dmamap_sync(sc->bge_cdata.bge_rx_std_ring_tag,
887f41ac2beSBill Paul 	    sc->bge_cdata.bge_rx_std_ring_map,
888f41ac2beSBill Paul 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
889f41ac2beSBill Paul 
89095d67482SBill Paul 	sc->bge_std = i - 1;
89195d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_RX_STD_PROD_LO, sc->bge_std);
89295d67482SBill Paul 
89395d67482SBill Paul 	return (0);
89495d67482SBill Paul }
89595d67482SBill Paul 
89695d67482SBill Paul static void
8973f74909aSGleb Smirnoff bge_free_rx_ring_std(struct bge_softc *sc)
89895d67482SBill Paul {
89995d67482SBill Paul 	int i;
90095d67482SBill Paul 
90195d67482SBill Paul 	for (i = 0; i < BGE_STD_RX_RING_CNT; i++) {
90295d67482SBill Paul 		if (sc->bge_cdata.bge_rx_std_chain[i] != NULL) {
903e65bed95SPyun YongHyeon 			bus_dmamap_sync(sc->bge_cdata.bge_mtag,
904e65bed95SPyun YongHyeon 			    sc->bge_cdata.bge_rx_std_dmamap[i],
905e65bed95SPyun YongHyeon 			    BUS_DMASYNC_POSTREAD);
906f41ac2beSBill Paul 			bus_dmamap_unload(sc->bge_cdata.bge_mtag,
907f41ac2beSBill Paul 			    sc->bge_cdata.bge_rx_std_dmamap[i]);
908e65bed95SPyun YongHyeon 			m_freem(sc->bge_cdata.bge_rx_std_chain[i]);
909e65bed95SPyun YongHyeon 			sc->bge_cdata.bge_rx_std_chain[i] = NULL;
91095d67482SBill Paul 		}
911f41ac2beSBill Paul 		bzero((char *)&sc->bge_ldata.bge_rx_std_ring[i],
91295d67482SBill Paul 		    sizeof(struct bge_rx_bd));
91395d67482SBill Paul 	}
91495d67482SBill Paul }
91595d67482SBill Paul 
91695d67482SBill Paul static int
9173f74909aSGleb Smirnoff bge_init_rx_ring_jumbo(struct bge_softc *sc)
91895d67482SBill Paul {
91995d67482SBill Paul 	struct bge_rcb *rcb;
9201be6acb7SGleb Smirnoff 	int i;
92195d67482SBill Paul 
92295d67482SBill Paul 	for (i = 0; i < BGE_JUMBO_RX_RING_CNT; i++) {
92395d67482SBill Paul 		if (bge_newbuf_jumbo(sc, i, NULL) == ENOBUFS)
92495d67482SBill Paul 			return (ENOBUFS);
92595d67482SBill Paul 	};
92695d67482SBill Paul 
927f41ac2beSBill Paul 	bus_dmamap_sync(sc->bge_cdata.bge_rx_jumbo_ring_tag,
928f41ac2beSBill Paul 	    sc->bge_cdata.bge_rx_jumbo_ring_map,
929f41ac2beSBill Paul 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
930f41ac2beSBill Paul 
93195d67482SBill Paul 	sc->bge_jumbo = i - 1;
93295d67482SBill Paul 
933f41ac2beSBill Paul 	rcb = &sc->bge_ldata.bge_info.bge_jumbo_rx_rcb;
9341be6acb7SGleb Smirnoff 	rcb->bge_maxlen_flags = BGE_RCB_MAXLEN_FLAGS(0,
9351be6acb7SGleb Smirnoff 				    BGE_RCB_FLAG_USE_EXT_RX_BD);
93667111612SJohn Polstra 	CSR_WRITE_4(sc, BGE_RX_JUMBO_RCB_MAXLEN_FLAGS, rcb->bge_maxlen_flags);
93795d67482SBill Paul 
93895d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_RX_JUMBO_PROD_LO, sc->bge_jumbo);
93995d67482SBill Paul 
94095d67482SBill Paul 	return (0);
94195d67482SBill Paul }
94295d67482SBill Paul 
94395d67482SBill Paul static void
9443f74909aSGleb Smirnoff bge_free_rx_ring_jumbo(struct bge_softc *sc)
94595d67482SBill Paul {
94695d67482SBill Paul 	int i;
94795d67482SBill Paul 
94895d67482SBill Paul 	for (i = 0; i < BGE_JUMBO_RX_RING_CNT; i++) {
94995d67482SBill Paul 		if (sc->bge_cdata.bge_rx_jumbo_chain[i] != NULL) {
950e65bed95SPyun YongHyeon 			bus_dmamap_sync(sc->bge_cdata.bge_mtag_jumbo,
951e65bed95SPyun YongHyeon 			    sc->bge_cdata.bge_rx_jumbo_dmamap[i],
952e65bed95SPyun YongHyeon 			    BUS_DMASYNC_POSTREAD);
953f41ac2beSBill Paul 			bus_dmamap_unload(sc->bge_cdata.bge_mtag_jumbo,
954f41ac2beSBill Paul 			    sc->bge_cdata.bge_rx_jumbo_dmamap[i]);
955e65bed95SPyun YongHyeon 			m_freem(sc->bge_cdata.bge_rx_jumbo_chain[i]);
956e65bed95SPyun YongHyeon 			sc->bge_cdata.bge_rx_jumbo_chain[i] = NULL;
95795d67482SBill Paul 		}
958f41ac2beSBill Paul 		bzero((char *)&sc->bge_ldata.bge_rx_jumbo_ring[i],
9591be6acb7SGleb Smirnoff 		    sizeof(struct bge_extrx_bd));
96095d67482SBill Paul 	}
96195d67482SBill Paul }
96295d67482SBill Paul 
96395d67482SBill Paul static void
9643f74909aSGleb Smirnoff bge_free_tx_ring(struct bge_softc *sc)
96595d67482SBill Paul {
96695d67482SBill Paul 	int i;
96795d67482SBill Paul 
968f41ac2beSBill Paul 	if (sc->bge_ldata.bge_tx_ring == NULL)
96995d67482SBill Paul 		return;
97095d67482SBill Paul 
97195d67482SBill Paul 	for (i = 0; i < BGE_TX_RING_CNT; i++) {
97295d67482SBill Paul 		if (sc->bge_cdata.bge_tx_chain[i] != NULL) {
973e65bed95SPyun YongHyeon 			bus_dmamap_sync(sc->bge_cdata.bge_mtag,
974e65bed95SPyun YongHyeon 			    sc->bge_cdata.bge_tx_dmamap[i],
975e65bed95SPyun YongHyeon 			    BUS_DMASYNC_POSTWRITE);
976f41ac2beSBill Paul 			bus_dmamap_unload(sc->bge_cdata.bge_mtag,
977f41ac2beSBill Paul 			    sc->bge_cdata.bge_tx_dmamap[i]);
978e65bed95SPyun YongHyeon 			m_freem(sc->bge_cdata.bge_tx_chain[i]);
979e65bed95SPyun YongHyeon 			sc->bge_cdata.bge_tx_chain[i] = NULL;
98095d67482SBill Paul 		}
981f41ac2beSBill Paul 		bzero((char *)&sc->bge_ldata.bge_tx_ring[i],
98295d67482SBill Paul 		    sizeof(struct bge_tx_bd));
98395d67482SBill Paul 	}
98495d67482SBill Paul }
98595d67482SBill Paul 
98695d67482SBill Paul static int
9873f74909aSGleb Smirnoff bge_init_tx_ring(struct bge_softc *sc)
98895d67482SBill Paul {
98995d67482SBill Paul 	sc->bge_txcnt = 0;
99095d67482SBill Paul 	sc->bge_tx_saved_considx = 0;
9913927098fSPaul Saab 
99214bbd30fSGleb Smirnoff 	/* Initialize transmit producer index for host-memory send ring. */
99314bbd30fSGleb Smirnoff 	sc->bge_tx_prodidx = 0;
99414bbd30fSGleb Smirnoff 	CSR_WRITE_4(sc, BGE_MBX_TX_HOST_PROD0_LO, sc->bge_tx_prodidx);
99514bbd30fSGleb Smirnoff 
9963927098fSPaul Saab 	/* 5700 b2 errata */
997e0ced696SPaul Saab 	if (sc->bge_chiprev == BGE_CHIPREV_5700_BX)
99814bbd30fSGleb Smirnoff 		CSR_WRITE_4(sc, BGE_MBX_TX_HOST_PROD0_LO, sc->bge_tx_prodidx);
9993927098fSPaul Saab 
100014bbd30fSGleb Smirnoff 	/* NIC-memory send ring not used; initialize to zero. */
10013927098fSPaul Saab 	CSR_WRITE_4(sc, BGE_MBX_TX_NIC_PROD0_LO, 0);
10023927098fSPaul Saab 	/* 5700 b2 errata */
1003e0ced696SPaul Saab 	if (sc->bge_chiprev == BGE_CHIPREV_5700_BX)
100495d67482SBill Paul 		CSR_WRITE_4(sc, BGE_MBX_TX_NIC_PROD0_LO, 0);
100595d67482SBill Paul 
100695d67482SBill Paul 	return (0);
100795d67482SBill Paul }
100895d67482SBill Paul 
100995d67482SBill Paul static void
10103e9b1bcaSJung-uk Kim bge_setpromisc(struct bge_softc *sc)
10113e9b1bcaSJung-uk Kim {
10123e9b1bcaSJung-uk Kim 	struct ifnet *ifp;
10133e9b1bcaSJung-uk Kim 
10143e9b1bcaSJung-uk Kim 	BGE_LOCK_ASSERT(sc);
10153e9b1bcaSJung-uk Kim 
10163e9b1bcaSJung-uk Kim 	ifp = sc->bge_ifp;
10173e9b1bcaSJung-uk Kim 
101845ee6ab3SJung-uk Kim 	/* Enable or disable promiscuous mode as needed. */
10193e9b1bcaSJung-uk Kim 	if (ifp->if_flags & IFF_PROMISC)
102045ee6ab3SJung-uk Kim 		BGE_SETBIT(sc, BGE_RX_MODE, BGE_RXMODE_RX_PROMISC);
10213e9b1bcaSJung-uk Kim 	else
102245ee6ab3SJung-uk Kim 		BGE_CLRBIT(sc, BGE_RX_MODE, BGE_RXMODE_RX_PROMISC);
10233e9b1bcaSJung-uk Kim }
10243e9b1bcaSJung-uk Kim 
10253e9b1bcaSJung-uk Kim static void
10263f74909aSGleb Smirnoff bge_setmulti(struct bge_softc *sc)
102795d67482SBill Paul {
102895d67482SBill Paul 	struct ifnet *ifp;
102995d67482SBill Paul 	struct ifmultiaddr *ifma;
10303f74909aSGleb Smirnoff 	uint32_t hashes[4] = { 0, 0, 0, 0 };
103195d67482SBill Paul 	int h, i;
103295d67482SBill Paul 
10330f9bd73bSSam Leffler 	BGE_LOCK_ASSERT(sc);
10340f9bd73bSSam Leffler 
1035fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp;
103695d67482SBill Paul 
103795d67482SBill Paul 	if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
103895d67482SBill Paul 		for (i = 0; i < 4; i++)
10390c8aa4eaSJung-uk Kim 			CSR_WRITE_4(sc, BGE_MAR0 + (i * 4), 0xFFFFFFFF);
104095d67482SBill Paul 		return;
104195d67482SBill Paul 	}
104295d67482SBill Paul 
104395d67482SBill Paul 	/* First, zot all the existing filters. */
104495d67482SBill Paul 	for (i = 0; i < 4; i++)
104595d67482SBill Paul 		CSR_WRITE_4(sc, BGE_MAR0 + (i * 4), 0);
104695d67482SBill Paul 
104795d67482SBill Paul 	/* Now program new ones. */
104813b203d0SRobert Watson 	IF_ADDR_LOCK(ifp);
104995d67482SBill Paul 	TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
105095d67482SBill Paul 		if (ifma->ifma_addr->sa_family != AF_LINK)
105195d67482SBill Paul 			continue;
10520e939c0cSChristian Weisgerber 		h = ether_crc32_le(LLADDR((struct sockaddr_dl *)
10530c8aa4eaSJung-uk Kim 		    ifma->ifma_addr), ETHER_ADDR_LEN) & 0x7F;
10540c8aa4eaSJung-uk Kim 		hashes[(h & 0x60) >> 5] |= 1 << (h & 0x1F);
105595d67482SBill Paul 	}
105613b203d0SRobert Watson 	IF_ADDR_UNLOCK(ifp);
105795d67482SBill Paul 
105895d67482SBill Paul 	for (i = 0; i < 4; i++)
105995d67482SBill Paul 		CSR_WRITE_4(sc, BGE_MAR0 + (i * 4), hashes[i]);
106095d67482SBill Paul }
106195d67482SBill Paul 
10628cb1383cSDoug Ambrisko static void
10638cb1383cSDoug Ambrisko bge_sig_pre_reset(sc, type)
10648cb1383cSDoug Ambrisko 	struct bge_softc *sc;
10658cb1383cSDoug Ambrisko 	int type;
10668cb1383cSDoug Ambrisko {
10678cb1383cSDoug Ambrisko 	/*
10688cb1383cSDoug Ambrisko 	 * Some chips don't like this so only do this if ASF is enabled
10698cb1383cSDoug Ambrisko 	 */
10708cb1383cSDoug Ambrisko 	if (sc->bge_asf_mode)
10718cb1383cSDoug Ambrisko 		bge_writemem_ind(sc, BGE_SOFTWARE_GENCOMM, BGE_MAGIC_NUMBER);
10728cb1383cSDoug Ambrisko 
10738cb1383cSDoug Ambrisko 	if (sc->bge_asf_mode & ASF_NEW_HANDSHAKE) {
10748cb1383cSDoug Ambrisko 		switch (type) {
10758cb1383cSDoug Ambrisko 		case BGE_RESET_START:
10768cb1383cSDoug Ambrisko 			bge_writemem_ind(sc, BGE_SDI_STATUS, 0x1); /* START */
10778cb1383cSDoug Ambrisko 			break;
10788cb1383cSDoug Ambrisko 		case BGE_RESET_STOP:
10798cb1383cSDoug Ambrisko 			bge_writemem_ind(sc, BGE_SDI_STATUS, 0x2); /* UNLOAD */
10808cb1383cSDoug Ambrisko 			break;
10818cb1383cSDoug Ambrisko 		}
10828cb1383cSDoug Ambrisko 	}
10838cb1383cSDoug Ambrisko }
10848cb1383cSDoug Ambrisko 
10858cb1383cSDoug Ambrisko static void
10868cb1383cSDoug Ambrisko bge_sig_post_reset(sc, type)
10878cb1383cSDoug Ambrisko 	struct bge_softc *sc;
10888cb1383cSDoug Ambrisko 	int type;
10898cb1383cSDoug Ambrisko {
10908cb1383cSDoug Ambrisko 	if (sc->bge_asf_mode & ASF_NEW_HANDSHAKE) {
10918cb1383cSDoug Ambrisko 		switch (type) {
10928cb1383cSDoug Ambrisko 		case BGE_RESET_START:
10938cb1383cSDoug Ambrisko 			bge_writemem_ind(sc, BGE_SDI_STATUS, 0x80000001);
10948cb1383cSDoug Ambrisko 			/* START DONE */
10958cb1383cSDoug Ambrisko 			break;
10968cb1383cSDoug Ambrisko 		case BGE_RESET_STOP:
10978cb1383cSDoug Ambrisko 			bge_writemem_ind(sc, BGE_SDI_STATUS, 0x80000002);
10988cb1383cSDoug Ambrisko 			break;
10998cb1383cSDoug Ambrisko 		}
11008cb1383cSDoug Ambrisko 	}
11018cb1383cSDoug Ambrisko }
11028cb1383cSDoug Ambrisko 
11038cb1383cSDoug Ambrisko static void
11048cb1383cSDoug Ambrisko bge_sig_legacy(sc, type)
11058cb1383cSDoug Ambrisko 	struct bge_softc *sc;
11068cb1383cSDoug Ambrisko 	int type;
11078cb1383cSDoug Ambrisko {
11088cb1383cSDoug Ambrisko 	if (sc->bge_asf_mode) {
11098cb1383cSDoug Ambrisko 		switch (type) {
11108cb1383cSDoug Ambrisko 		case BGE_RESET_START:
11118cb1383cSDoug Ambrisko 			bge_writemem_ind(sc, BGE_SDI_STATUS, 0x1); /* START */
11128cb1383cSDoug Ambrisko 			break;
11138cb1383cSDoug Ambrisko 		case BGE_RESET_STOP:
11148cb1383cSDoug Ambrisko 			bge_writemem_ind(sc, BGE_SDI_STATUS, 0x2); /* UNLOAD */
11158cb1383cSDoug Ambrisko 			break;
11168cb1383cSDoug Ambrisko 		}
11178cb1383cSDoug Ambrisko 	}
11188cb1383cSDoug Ambrisko }
11198cb1383cSDoug Ambrisko 
11208cb1383cSDoug Ambrisko void bge_stop_fw(struct bge_softc *);
11218cb1383cSDoug Ambrisko void
11228cb1383cSDoug Ambrisko bge_stop_fw(sc)
11238cb1383cSDoug Ambrisko 	struct bge_softc *sc;
11248cb1383cSDoug Ambrisko {
11258cb1383cSDoug Ambrisko 	int i;
11268cb1383cSDoug Ambrisko 
11278cb1383cSDoug Ambrisko 	if (sc->bge_asf_mode) {
11288cb1383cSDoug Ambrisko 		bge_writemem_ind(sc, BGE_SOFTWARE_GENCOMM_FW, BGE_FW_PAUSE);
11298cb1383cSDoug Ambrisko 		CSR_WRITE_4(sc, BGE_CPU_EVENT,
113039153c5aSJung-uk Kim 		    CSR_READ_4(sc, BGE_CPU_EVENT) | (1 << 14));
11318cb1383cSDoug Ambrisko 
11328cb1383cSDoug Ambrisko 		for (i = 0; i < 100; i++ ) {
11338cb1383cSDoug Ambrisko 			if (!(CSR_READ_4(sc, BGE_CPU_EVENT) & (1 << 14)))
11348cb1383cSDoug Ambrisko 				break;
11358cb1383cSDoug Ambrisko 			DELAY(10);
11368cb1383cSDoug Ambrisko 		}
11378cb1383cSDoug Ambrisko 	}
11388cb1383cSDoug Ambrisko }
11398cb1383cSDoug Ambrisko 
114095d67482SBill Paul /*
114195d67482SBill Paul  * Do endian, PCI and DMA initialization. Also check the on-board ROM
114295d67482SBill Paul  * self-test results.
114395d67482SBill Paul  */
114495d67482SBill Paul static int
11453f74909aSGleb Smirnoff bge_chipinit(struct bge_softc *sc)
114695d67482SBill Paul {
11473f74909aSGleb Smirnoff 	uint32_t dma_rw_ctl;
114895d67482SBill Paul 	int i;
114995d67482SBill Paul 
11508cb1383cSDoug Ambrisko 	/* Set endianness before we access any non-PCI registers. */
1151e907febfSPyun YongHyeon 	pci_write_config(sc->bge_dev, BGE_PCI_MISC_CTL, BGE_INIT, 4);
115295d67482SBill Paul 
115395d67482SBill Paul 	/*
115495d67482SBill Paul 	 * Check the 'ROM failed' bit on the RX CPU to see if
115508013fd3SMarius Strobl 	 * self-tests passed. Skip this check when there's no
115608013fd3SMarius Strobl 	 * EEPROM fitted, since in that case it will always
115708013fd3SMarius Strobl 	 * fail.
115895d67482SBill Paul 	 */
115908013fd3SMarius Strobl 	if ((sc->bge_flags & BGE_FLAG_EEPROM) &&
116008013fd3SMarius Strobl 	    CSR_READ_4(sc, BGE_RXCPU_MODE) & BGE_RXCPUMODE_ROMFAIL) {
11610c8aa4eaSJung-uk Kim 		device_printf(sc->bge_dev, "RX CPU self-diagnostics failed!\n");
116295d67482SBill Paul 		return (ENODEV);
116395d67482SBill Paul 	}
116495d67482SBill Paul 
116595d67482SBill Paul 	/* Clear the MAC control register */
116695d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MAC_MODE, 0);
116795d67482SBill Paul 
116895d67482SBill Paul 	/*
116995d67482SBill Paul 	 * Clear the MAC statistics block in the NIC's
117095d67482SBill Paul 	 * internal memory.
117195d67482SBill Paul 	 */
117295d67482SBill Paul 	for (i = BGE_STATS_BLOCK;
11733f74909aSGleb Smirnoff 	    i < BGE_STATS_BLOCK_END + 1; i += sizeof(uint32_t))
117495d67482SBill Paul 		BGE_MEMWIN_WRITE(sc, i, 0);
117595d67482SBill Paul 
117695d67482SBill Paul 	for (i = BGE_STATUS_BLOCK;
11773f74909aSGleb Smirnoff 	    i < BGE_STATUS_BLOCK_END + 1; i += sizeof(uint32_t))
117895d67482SBill Paul 		BGE_MEMWIN_WRITE(sc, i, 0);
117995d67482SBill Paul 
118095d67482SBill Paul 	/* Set up the PCI DMA control register. */
1181652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_PCIE) {
11824c0da0ffSGleb Smirnoff 		/* PCI Express bus */
1183e53d81eeSPaul Saab 		dma_rw_ctl = BGE_PCI_READ_CMD | BGE_PCI_WRITE_CMD |
11840c8aa4eaSJung-uk Kim 		    BGE_PCIDMARWCTL_RD_WAT_SHIFT(0xF) |
1185797b2220SJung-uk Kim 		    BGE_PCIDMARWCTL_WR_WAT_SHIFT(0x2);
1186652ae483SGleb Smirnoff 	} else if (sc->bge_flags & BGE_FLAG_PCIX) {
11878287860eSJohn Polstra 		/* PCI-X bus */
11884c0da0ffSGleb Smirnoff 		if (BGE_IS_5714_FAMILY(sc)) {
11894c0da0ffSGleb Smirnoff 			dma_rw_ctl = BGE_PCI_READ_CMD | BGE_PCI_WRITE_CMD;
11904c0da0ffSGleb Smirnoff 			dma_rw_ctl &= ~BGE_PCIDMARWCTL_ONEDMA_ATONCE; /* XXX */
11914c0da0ffSGleb Smirnoff 			/* XXX magic values, Broadcom-supplied Linux driver */
11926098821cSJung-uk Kim 			dma_rw_ctl |= (1 << 20) | (1 << 18);
11934c0da0ffSGleb Smirnoff 			if (sc->bge_asicrev == BGE_ASICREV_BCM5780)
11946098821cSJung-uk Kim 				dma_rw_ctl |= BGE_PCIDMARWCTL_ONEDMA_ATONCE;
11954c0da0ffSGleb Smirnoff 			else
11960c8aa4eaSJung-uk Kim 				dma_rw_ctl |= 1 << 15;
11974c0da0ffSGleb Smirnoff 
11984c0da0ffSGleb Smirnoff 		} else if (sc->bge_asicrev == BGE_ASICREV_BCM5704)
11995cba12d3SPaul Saab 			/*
12005cba12d3SPaul Saab 			 * The 5704 uses a different encoding of read/write
12015cba12d3SPaul Saab 			 * watermarks.
12025cba12d3SPaul Saab 			 */
12035cba12d3SPaul Saab 			dma_rw_ctl = BGE_PCI_READ_CMD | BGE_PCI_WRITE_CMD |
1204797b2220SJung-uk Kim 			    BGE_PCIDMARWCTL_RD_WAT_SHIFT(0x7) |
1205797b2220SJung-uk Kim 			    BGE_PCIDMARWCTL_WR_WAT_SHIFT(0x3);
12065cba12d3SPaul Saab 		else
12075cba12d3SPaul Saab 			dma_rw_ctl = BGE_PCI_READ_CMD | BGE_PCI_WRITE_CMD |
1208797b2220SJung-uk Kim 			    BGE_PCIDMARWCTL_RD_WAT_SHIFT(0x3) |
1209797b2220SJung-uk Kim 			    BGE_PCIDMARWCTL_WR_WAT_SHIFT(0x3) |
12100c8aa4eaSJung-uk Kim 			    0x0F;
12115cba12d3SPaul Saab 
12125cba12d3SPaul Saab 		/*
12135cba12d3SPaul Saab 		 * 5703 and 5704 need ONEDMA_AT_ONCE as a workaround
12145cba12d3SPaul Saab 		 * for hardware bugs.
12155cba12d3SPaul Saab 		 */
1216e0ced696SPaul Saab 		if (sc->bge_asicrev == BGE_ASICREV_BCM5703 ||
1217e0ced696SPaul Saab 		    sc->bge_asicrev == BGE_ASICREV_BCM5704) {
12183f74909aSGleb Smirnoff 			uint32_t tmp;
12195cba12d3SPaul Saab 
12200c8aa4eaSJung-uk Kim 			tmp = CSR_READ_4(sc, BGE_PCI_CLKCTL) & 0x1F;
12215cba12d3SPaul Saab 			if (tmp == 0x6 || tmp == 0x7)
12225cba12d3SPaul Saab 				dma_rw_ctl |= BGE_PCIDMARWCTL_ONEDMA_ATONCE;
12238287860eSJohn Polstra 		}
12244c0da0ffSGleb Smirnoff 	} else
12254c0da0ffSGleb Smirnoff 		/* Conventional PCI bus */
12264c0da0ffSGleb Smirnoff 		dma_rw_ctl = BGE_PCI_READ_CMD | BGE_PCI_WRITE_CMD |
1227797b2220SJung-uk Kim 		    BGE_PCIDMARWCTL_RD_WAT_SHIFT(0x7) |
1228797b2220SJung-uk Kim 		    BGE_PCIDMARWCTL_WR_WAT_SHIFT(0x7) |
12290c8aa4eaSJung-uk Kim 		    0x0F;
12305cba12d3SPaul Saab 
1231e0ced696SPaul Saab 	if (sc->bge_asicrev == BGE_ASICREV_BCM5703 ||
12320434d1b8SBill Paul 	    sc->bge_asicrev == BGE_ASICREV_BCM5704 ||
12334c0da0ffSGleb Smirnoff 	    sc->bge_asicrev == BGE_ASICREV_BCM5705)
12345cba12d3SPaul Saab 		dma_rw_ctl &= ~BGE_PCIDMARWCTL_MINDMA;
12355cba12d3SPaul Saab 	pci_write_config(sc->bge_dev, BGE_PCI_DMA_RW_CTL, dma_rw_ctl, 4);
123695d67482SBill Paul 
123795d67482SBill Paul 	/*
123895d67482SBill Paul 	 * Set up general mode register.
123995d67482SBill Paul 	 */
1240e907febfSPyun YongHyeon 	CSR_WRITE_4(sc, BGE_MODE_CTL, BGE_DMA_SWAP_OPTIONS |
124195d67482SBill Paul 	    BGE_MODECTL_MAC_ATTN_INTR | BGE_MODECTL_HOST_SEND_BDS |
1242ee7ef91cSOleg Bulyzhin 	    BGE_MODECTL_TX_NO_PHDR_CSUM);
124395d67482SBill Paul 
124495d67482SBill Paul 	/*
12458cb1383cSDoug Ambrisko 	 * Tell the firmware the driver is running
12468cb1383cSDoug Ambrisko 	 */
12478cb1383cSDoug Ambrisko 	if (sc->bge_asf_mode & ASF_STACKUP)
12488cb1383cSDoug Ambrisko 		BGE_SETBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
12498cb1383cSDoug Ambrisko 
12508cb1383cSDoug Ambrisko 	/*
1251ea13bdd5SJohn Polstra 	 * Disable memory write invalidate.  Apparently it is not supported
1252ea13bdd5SJohn Polstra 	 * properly by these devices.
125395d67482SBill Paul 	 */
1254ea13bdd5SJohn Polstra 	PCI_CLRBIT(sc->bge_dev, BGE_PCI_CMD, PCIM_CMD_MWIEN, 4);
125595d67482SBill Paul 
125695d67482SBill Paul #ifdef __brokenalpha__
125795d67482SBill Paul 	/*
125895d67482SBill Paul 	 * Must insure that we do not cross an 8K (bytes) boundary
125995d67482SBill Paul 	 * for DMA reads.  Our highest limit is 1K bytes.  This is a
126095d67482SBill Paul 	 * restriction on some ALPHA platforms with early revision
126195d67482SBill Paul 	 * 21174 PCI chipsets, such as the AlphaPC 164lx
126295d67482SBill Paul 	 */
126362f1ea9cSJohn Polstra 	PCI_SETBIT(sc->bge_dev, BGE_PCI_DMA_RW_CTL,
126462f1ea9cSJohn Polstra 	    BGE_PCI_READ_BNDRY_1024BYTES, 4);
126595d67482SBill Paul #endif
126695d67482SBill Paul 
126795d67482SBill Paul 	/* Set the timer prescaler (always 66Mhz) */
12680c8aa4eaSJung-uk Kim 	CSR_WRITE_4(sc, BGE_MISC_CFG, BGE_32BITTIME_66MHZ);
126995d67482SBill Paul 
127095d67482SBill Paul 	return (0);
127195d67482SBill Paul }
127295d67482SBill Paul 
127395d67482SBill Paul static int
12743f74909aSGleb Smirnoff bge_blockinit(struct bge_softc *sc)
127595d67482SBill Paul {
127695d67482SBill Paul 	struct bge_rcb *rcb;
1277e907febfSPyun YongHyeon 	bus_size_t vrcb;
1278e907febfSPyun YongHyeon 	bge_hostaddr taddr;
12796f8718a3SScott Long 	uint32_t val;
128095d67482SBill Paul 	int i;
128195d67482SBill Paul 
128295d67482SBill Paul 	/*
128395d67482SBill Paul 	 * Initialize the memory window pointer register so that
128495d67482SBill Paul 	 * we can access the first 32K of internal NIC RAM. This will
128595d67482SBill Paul 	 * allow us to set up the TX send ring RCBs and the RX return
128695d67482SBill Paul 	 * ring RCBs, plus other things which live in NIC memory.
128795d67482SBill Paul 	 */
128895d67482SBill Paul 	CSR_WRITE_4(sc, BGE_PCI_MEMWIN_BASEADDR, 0);
128995d67482SBill Paul 
1290822f63fcSBill Paul 	/* Note: the BCM5704 has a smaller mbuf space than other chips. */
1291822f63fcSBill Paul 
12927ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc))) {
129395d67482SBill Paul 		/* Configure mbuf memory pool */
12940dae9719SJung-uk Kim 		CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_BASEADDR, BGE_BUFFPOOL_1);
1295822f63fcSBill Paul 		if (sc->bge_asicrev == BGE_ASICREV_BCM5704)
1296822f63fcSBill Paul 			CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_LEN, 0x10000);
1297822f63fcSBill Paul 		else
129895d67482SBill Paul 			CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_LEN, 0x18000);
129995d67482SBill Paul 
130095d67482SBill Paul 		/* Configure DMA resource pool */
13010434d1b8SBill Paul 		CSR_WRITE_4(sc, BGE_BMAN_DMA_DESCPOOL_BASEADDR,
13020434d1b8SBill Paul 		    BGE_DMA_DESCRIPTORS);
130395d67482SBill Paul 		CSR_WRITE_4(sc, BGE_BMAN_DMA_DESCPOOL_LEN, 0x2000);
13040434d1b8SBill Paul 	}
130595d67482SBill Paul 
130695d67482SBill Paul 	/* Configure mbuf pool watermarks */
13077ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc))) {
13080434d1b8SBill Paul 		CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_READDMA_LOWAT, 0x0);
13090434d1b8SBill Paul 		CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_MACRX_LOWAT, 0x10);
13100434d1b8SBill Paul 	} else {
1311fa228020SPaul Saab 		CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_READDMA_LOWAT, 0x50);
1312fa228020SPaul Saab 		CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_MACRX_LOWAT, 0x20);
13130434d1b8SBill Paul 	}
1314fa228020SPaul Saab 	CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_HIWAT, 0x60);
131595d67482SBill Paul 
131695d67482SBill Paul 	/* Configure DMA resource watermarks */
131795d67482SBill Paul 	CSR_WRITE_4(sc, BGE_BMAN_DMA_DESCPOOL_LOWAT, 5);
131895d67482SBill Paul 	CSR_WRITE_4(sc, BGE_BMAN_DMA_DESCPOOL_HIWAT, 10);
131995d67482SBill Paul 
132095d67482SBill Paul 	/* Enable buffer manager */
13217ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc))) {
132295d67482SBill Paul 		CSR_WRITE_4(sc, BGE_BMAN_MODE,
132395d67482SBill Paul 		    BGE_BMANMODE_ENABLE | BGE_BMANMODE_LOMBUF_ATTN);
132495d67482SBill Paul 
132595d67482SBill Paul 		/* Poll for buffer manager start indication */
132695d67482SBill Paul 		for (i = 0; i < BGE_TIMEOUT; i++) {
13270c8aa4eaSJung-uk Kim 			if (CSR_READ_4(sc, BGE_BMAN_MODE) & BGE_BMANMODE_ENABLE)
132895d67482SBill Paul 				break;
132995d67482SBill Paul 			DELAY(10);
133095d67482SBill Paul 		}
133195d67482SBill Paul 
133295d67482SBill Paul 		if (i == BGE_TIMEOUT) {
1333fe806fdaSPyun YongHyeon 			device_printf(sc->bge_dev,
1334fe806fdaSPyun YongHyeon 			    "buffer manager failed to start\n");
133595d67482SBill Paul 			return (ENXIO);
133695d67482SBill Paul 		}
13370434d1b8SBill Paul 	}
133895d67482SBill Paul 
133995d67482SBill Paul 	/* Enable flow-through queues */
13400c8aa4eaSJung-uk Kim 	CSR_WRITE_4(sc, BGE_FTQ_RESET, 0xFFFFFFFF);
134195d67482SBill Paul 	CSR_WRITE_4(sc, BGE_FTQ_RESET, 0);
134295d67482SBill Paul 
134395d67482SBill Paul 	/* Wait until queue initialization is complete */
134495d67482SBill Paul 	for (i = 0; i < BGE_TIMEOUT; i++) {
134595d67482SBill Paul 		if (CSR_READ_4(sc, BGE_FTQ_RESET) == 0)
134695d67482SBill Paul 			break;
134795d67482SBill Paul 		DELAY(10);
134895d67482SBill Paul 	}
134995d67482SBill Paul 
135095d67482SBill Paul 	if (i == BGE_TIMEOUT) {
1351fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "flow-through queue init failed\n");
135295d67482SBill Paul 		return (ENXIO);
135395d67482SBill Paul 	}
135495d67482SBill Paul 
135595d67482SBill Paul 	/* Initialize the standard RX ring control block */
1356f41ac2beSBill Paul 	rcb = &sc->bge_ldata.bge_info.bge_std_rx_rcb;
1357f41ac2beSBill Paul 	rcb->bge_hostaddr.bge_addr_lo =
1358f41ac2beSBill Paul 	    BGE_ADDR_LO(sc->bge_ldata.bge_rx_std_ring_paddr);
1359f41ac2beSBill Paul 	rcb->bge_hostaddr.bge_addr_hi =
1360f41ac2beSBill Paul 	    BGE_ADDR_HI(sc->bge_ldata.bge_rx_std_ring_paddr);
1361f41ac2beSBill Paul 	bus_dmamap_sync(sc->bge_cdata.bge_rx_std_ring_tag,
1362f41ac2beSBill Paul 	    sc->bge_cdata.bge_rx_std_ring_map, BUS_DMASYNC_PREREAD);
13637ee00338SJung-uk Kim 	if (BGE_IS_5705_PLUS(sc))
13640434d1b8SBill Paul 		rcb->bge_maxlen_flags = BGE_RCB_MAXLEN_FLAGS(512, 0);
13650434d1b8SBill Paul 	else
13660434d1b8SBill Paul 		rcb->bge_maxlen_flags =
13670434d1b8SBill Paul 		    BGE_RCB_MAXLEN_FLAGS(BGE_MAX_FRAMELEN, 0);
136895d67482SBill Paul 	rcb->bge_nicaddr = BGE_STD_RX_RINGS;
13690c8aa4eaSJung-uk Kim 	CSR_WRITE_4(sc, BGE_RX_STD_RCB_HADDR_HI, rcb->bge_hostaddr.bge_addr_hi);
13700c8aa4eaSJung-uk Kim 	CSR_WRITE_4(sc, BGE_RX_STD_RCB_HADDR_LO, rcb->bge_hostaddr.bge_addr_lo);
1371f41ac2beSBill Paul 
137267111612SJohn Polstra 	CSR_WRITE_4(sc, BGE_RX_STD_RCB_MAXLEN_FLAGS, rcb->bge_maxlen_flags);
137367111612SJohn Polstra 	CSR_WRITE_4(sc, BGE_RX_STD_RCB_NICADDR, rcb->bge_nicaddr);
137495d67482SBill Paul 
137595d67482SBill Paul 	/*
137695d67482SBill Paul 	 * Initialize the jumbo RX ring control block
137795d67482SBill Paul 	 * We set the 'ring disabled' bit in the flags
137895d67482SBill Paul 	 * field until we're actually ready to start
137995d67482SBill Paul 	 * using this ring (i.e. once we set the MTU
138095d67482SBill Paul 	 * high enough to require it).
138195d67482SBill Paul 	 */
13824c0da0ffSGleb Smirnoff 	if (BGE_IS_JUMBO_CAPABLE(sc)) {
1383f41ac2beSBill Paul 		rcb = &sc->bge_ldata.bge_info.bge_jumbo_rx_rcb;
1384f41ac2beSBill Paul 
1385f41ac2beSBill Paul 		rcb->bge_hostaddr.bge_addr_lo =
1386f41ac2beSBill Paul 		    BGE_ADDR_LO(sc->bge_ldata.bge_rx_jumbo_ring_paddr);
1387f41ac2beSBill Paul 		rcb->bge_hostaddr.bge_addr_hi =
1388f41ac2beSBill Paul 		    BGE_ADDR_HI(sc->bge_ldata.bge_rx_jumbo_ring_paddr);
1389f41ac2beSBill Paul 		bus_dmamap_sync(sc->bge_cdata.bge_rx_jumbo_ring_tag,
1390f41ac2beSBill Paul 		    sc->bge_cdata.bge_rx_jumbo_ring_map,
1391f41ac2beSBill Paul 		    BUS_DMASYNC_PREREAD);
13921be6acb7SGleb Smirnoff 		rcb->bge_maxlen_flags = BGE_RCB_MAXLEN_FLAGS(0,
13931be6acb7SGleb Smirnoff 		    BGE_RCB_FLAG_USE_EXT_RX_BD | BGE_RCB_FLAG_RING_DISABLED);
139495d67482SBill Paul 		rcb->bge_nicaddr = BGE_JUMBO_RX_RINGS;
139567111612SJohn Polstra 		CSR_WRITE_4(sc, BGE_RX_JUMBO_RCB_HADDR_HI,
139667111612SJohn Polstra 		    rcb->bge_hostaddr.bge_addr_hi);
139767111612SJohn Polstra 		CSR_WRITE_4(sc, BGE_RX_JUMBO_RCB_HADDR_LO,
139867111612SJohn Polstra 		    rcb->bge_hostaddr.bge_addr_lo);
1399f41ac2beSBill Paul 
14000434d1b8SBill Paul 		CSR_WRITE_4(sc, BGE_RX_JUMBO_RCB_MAXLEN_FLAGS,
14010434d1b8SBill Paul 		    rcb->bge_maxlen_flags);
140267111612SJohn Polstra 		CSR_WRITE_4(sc, BGE_RX_JUMBO_RCB_NICADDR, rcb->bge_nicaddr);
140395d67482SBill Paul 
140495d67482SBill Paul 		/* Set up dummy disabled mini ring RCB */
1405f41ac2beSBill Paul 		rcb = &sc->bge_ldata.bge_info.bge_mini_rx_rcb;
140667111612SJohn Polstra 		rcb->bge_maxlen_flags =
140767111612SJohn Polstra 		    BGE_RCB_MAXLEN_FLAGS(0, BGE_RCB_FLAG_RING_DISABLED);
14080434d1b8SBill Paul 		CSR_WRITE_4(sc, BGE_RX_MINI_RCB_MAXLEN_FLAGS,
14090434d1b8SBill Paul 		    rcb->bge_maxlen_flags);
14100434d1b8SBill Paul 	}
141195d67482SBill Paul 
141295d67482SBill Paul 	/*
141395d67482SBill Paul 	 * Set the BD ring replentish thresholds. The recommended
141495d67482SBill Paul 	 * values are 1/8th the number of descriptors allocated to
141595d67482SBill Paul 	 * each ring.
14169ba784dbSScott Long 	 * XXX The 5754 requires a lower threshold, so it might be a
14179ba784dbSScott Long 	 * requirement of all 575x family chips.  The Linux driver sets
14189ba784dbSScott Long 	 * the lower threshold for all 5705 family chips as well, but there
14199ba784dbSScott Long 	 * are reports that it might not need to be so strict.
142095d67482SBill Paul 	 */
14215345bad0SScott Long 	if (BGE_IS_5705_PLUS(sc))
14226f8718a3SScott Long 		val = 8;
14236f8718a3SScott Long 	else
14246f8718a3SScott Long 		val = BGE_STD_RX_RING_CNT / 8;
14256f8718a3SScott Long 	CSR_WRITE_4(sc, BGE_RBDI_STD_REPL_THRESH, val);
142695d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RBDI_JUMBO_REPL_THRESH, BGE_JUMBO_RX_RING_CNT/8);
142795d67482SBill Paul 
142895d67482SBill Paul 	/*
142995d67482SBill Paul 	 * Disable all unused send rings by setting the 'ring disabled'
143095d67482SBill Paul 	 * bit in the flags field of all the TX send ring control blocks.
143195d67482SBill Paul 	 * These are located in NIC memory.
143295d67482SBill Paul 	 */
1433e907febfSPyun YongHyeon 	vrcb = BGE_MEMWIN_START + BGE_SEND_RING_RCB;
143495d67482SBill Paul 	for (i = 0; i < BGE_TX_RINGS_EXTSSRAM_MAX; i++) {
1435e907febfSPyun YongHyeon 		RCB_WRITE_4(sc, vrcb, bge_maxlen_flags,
1436e907febfSPyun YongHyeon 		    BGE_RCB_MAXLEN_FLAGS(0, BGE_RCB_FLAG_RING_DISABLED));
1437e907febfSPyun YongHyeon 		RCB_WRITE_4(sc, vrcb, bge_nicaddr, 0);
1438e907febfSPyun YongHyeon 		vrcb += sizeof(struct bge_rcb);
143995d67482SBill Paul 	}
144095d67482SBill Paul 
144195d67482SBill Paul 	/* Configure TX RCB 0 (we use only the first ring) */
1442e907febfSPyun YongHyeon 	vrcb = BGE_MEMWIN_START + BGE_SEND_RING_RCB;
1443e907febfSPyun YongHyeon 	BGE_HOSTADDR(taddr, sc->bge_ldata.bge_tx_ring_paddr);
1444e907febfSPyun YongHyeon 	RCB_WRITE_4(sc, vrcb, bge_hostaddr.bge_addr_hi, taddr.bge_addr_hi);
1445e907febfSPyun YongHyeon 	RCB_WRITE_4(sc, vrcb, bge_hostaddr.bge_addr_lo, taddr.bge_addr_lo);
1446e907febfSPyun YongHyeon 	RCB_WRITE_4(sc, vrcb, bge_nicaddr,
1447e907febfSPyun YongHyeon 	    BGE_NIC_TXRING_ADDR(0, BGE_TX_RING_CNT));
14487ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc)))
1449e907febfSPyun YongHyeon 		RCB_WRITE_4(sc, vrcb, bge_maxlen_flags,
1450e907febfSPyun YongHyeon 		    BGE_RCB_MAXLEN_FLAGS(BGE_TX_RING_CNT, 0));
145195d67482SBill Paul 
145295d67482SBill Paul 	/* Disable all unused RX return rings */
1453e907febfSPyun YongHyeon 	vrcb = BGE_MEMWIN_START + BGE_RX_RETURN_RING_RCB;
145495d67482SBill Paul 	for (i = 0; i < BGE_RX_RINGS_MAX; i++) {
1455e907febfSPyun YongHyeon 		RCB_WRITE_4(sc, vrcb, bge_hostaddr.bge_addr_hi, 0);
1456e907febfSPyun YongHyeon 		RCB_WRITE_4(sc, vrcb, bge_hostaddr.bge_addr_lo, 0);
1457e907febfSPyun YongHyeon 		RCB_WRITE_4(sc, vrcb, bge_maxlen_flags,
14580434d1b8SBill Paul 		    BGE_RCB_MAXLEN_FLAGS(sc->bge_return_ring_cnt,
1459e907febfSPyun YongHyeon 		    BGE_RCB_FLAG_RING_DISABLED));
1460e907febfSPyun YongHyeon 		RCB_WRITE_4(sc, vrcb, bge_nicaddr, 0);
146195d67482SBill Paul 		CSR_WRITE_4(sc, BGE_MBX_RX_CONS0_LO +
14623f74909aSGleb Smirnoff 		    (i * (sizeof(uint64_t))), 0);
1463e907febfSPyun YongHyeon 		vrcb += sizeof(struct bge_rcb);
146495d67482SBill Paul 	}
146595d67482SBill Paul 
146695d67482SBill Paul 	/* Initialize RX ring indexes */
146795d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_RX_STD_PROD_LO, 0);
146895d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_RX_JUMBO_PROD_LO, 0);
146995d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_RX_MINI_PROD_LO, 0);
147095d67482SBill Paul 
147195d67482SBill Paul 	/*
147295d67482SBill Paul 	 * Set up RX return ring 0
147395d67482SBill Paul 	 * Note that the NIC address for RX return rings is 0x00000000.
147495d67482SBill Paul 	 * The return rings live entirely within the host, so the
147595d67482SBill Paul 	 * nicaddr field in the RCB isn't used.
147695d67482SBill Paul 	 */
1477e907febfSPyun YongHyeon 	vrcb = BGE_MEMWIN_START + BGE_RX_RETURN_RING_RCB;
1478e907febfSPyun YongHyeon 	BGE_HOSTADDR(taddr, sc->bge_ldata.bge_rx_return_ring_paddr);
1479e907febfSPyun YongHyeon 	RCB_WRITE_4(sc, vrcb, bge_hostaddr.bge_addr_hi, taddr.bge_addr_hi);
1480e907febfSPyun YongHyeon 	RCB_WRITE_4(sc, vrcb, bge_hostaddr.bge_addr_lo, taddr.bge_addr_lo);
1481e907febfSPyun YongHyeon 	RCB_WRITE_4(sc, vrcb, bge_nicaddr, 0x00000000);
1482e907febfSPyun YongHyeon 	RCB_WRITE_4(sc, vrcb, bge_maxlen_flags,
1483e907febfSPyun YongHyeon 	    BGE_RCB_MAXLEN_FLAGS(sc->bge_return_ring_cnt, 0));
148495d67482SBill Paul 
148595d67482SBill Paul 	/* Set random backoff seed for TX */
148695d67482SBill Paul 	CSR_WRITE_4(sc, BGE_TX_RANDOM_BACKOFF,
14874a0d6638SRuslan Ermilov 	    IF_LLADDR(sc->bge_ifp)[0] + IF_LLADDR(sc->bge_ifp)[1] +
14884a0d6638SRuslan Ermilov 	    IF_LLADDR(sc->bge_ifp)[2] + IF_LLADDR(sc->bge_ifp)[3] +
14894a0d6638SRuslan Ermilov 	    IF_LLADDR(sc->bge_ifp)[4] + IF_LLADDR(sc->bge_ifp)[5] +
149095d67482SBill Paul 	    BGE_TX_BACKOFF_SEED_MASK);
149195d67482SBill Paul 
149295d67482SBill Paul 	/* Set inter-packet gap */
149395d67482SBill Paul 	CSR_WRITE_4(sc, BGE_TX_LENGTHS, 0x2620);
149495d67482SBill Paul 
149595d67482SBill Paul 	/*
149695d67482SBill Paul 	 * Specify which ring to use for packets that don't match
149795d67482SBill Paul 	 * any RX rules.
149895d67482SBill Paul 	 */
149995d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RX_RULES_CFG, 0x08);
150095d67482SBill Paul 
150195d67482SBill Paul 	/*
150295d67482SBill Paul 	 * Configure number of RX lists. One interrupt distribution
150395d67482SBill Paul 	 * list, sixteen active lists, one bad frames class.
150495d67482SBill Paul 	 */
150595d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RXLP_CFG, 0x181);
150695d67482SBill Paul 
150795d67482SBill Paul 	/* Inialize RX list placement stats mask. */
15080c8aa4eaSJung-uk Kim 	CSR_WRITE_4(sc, BGE_RXLP_STATS_ENABLE_MASK, 0x007FFFFF);
150995d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RXLP_STATS_CTL, 0x1);
151095d67482SBill Paul 
151195d67482SBill Paul 	/* Disable host coalescing until we get it set up */
151295d67482SBill Paul 	CSR_WRITE_4(sc, BGE_HCC_MODE, 0x00000000);
151395d67482SBill Paul 
151495d67482SBill Paul 	/* Poll to make sure it's shut down. */
151595d67482SBill Paul 	for (i = 0; i < BGE_TIMEOUT; i++) {
151695d67482SBill Paul 		if (!(CSR_READ_4(sc, BGE_HCC_MODE) & BGE_HCCMODE_ENABLE))
151795d67482SBill Paul 			break;
151895d67482SBill Paul 		DELAY(10);
151995d67482SBill Paul 	}
152095d67482SBill Paul 
152195d67482SBill Paul 	if (i == BGE_TIMEOUT) {
1522fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev,
1523fe806fdaSPyun YongHyeon 		    "host coalescing engine failed to idle\n");
152495d67482SBill Paul 		return (ENXIO);
152595d67482SBill Paul 	}
152695d67482SBill Paul 
152795d67482SBill Paul 	/* Set up host coalescing defaults */
152895d67482SBill Paul 	CSR_WRITE_4(sc, BGE_HCC_RX_COAL_TICKS, sc->bge_rx_coal_ticks);
152995d67482SBill Paul 	CSR_WRITE_4(sc, BGE_HCC_TX_COAL_TICKS, sc->bge_tx_coal_ticks);
153095d67482SBill Paul 	CSR_WRITE_4(sc, BGE_HCC_RX_MAX_COAL_BDS, sc->bge_rx_max_coal_bds);
153195d67482SBill Paul 	CSR_WRITE_4(sc, BGE_HCC_TX_MAX_COAL_BDS, sc->bge_tx_max_coal_bds);
15327ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc))) {
153395d67482SBill Paul 		CSR_WRITE_4(sc, BGE_HCC_RX_COAL_TICKS_INT, 0);
153495d67482SBill Paul 		CSR_WRITE_4(sc, BGE_HCC_TX_COAL_TICKS_INT, 0);
15350434d1b8SBill Paul 	}
1536b64728e5SBruce Evans 	CSR_WRITE_4(sc, BGE_HCC_RX_MAX_COAL_BDS_INT, 1);
1537b64728e5SBruce Evans 	CSR_WRITE_4(sc, BGE_HCC_TX_MAX_COAL_BDS_INT, 1);
153895d67482SBill Paul 
153995d67482SBill Paul 	/* Set up address of statistics block */
15407ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc))) {
1541f41ac2beSBill Paul 		CSR_WRITE_4(sc, BGE_HCC_STATS_ADDR_HI,
1542f41ac2beSBill Paul 		    BGE_ADDR_HI(sc->bge_ldata.bge_stats_paddr));
154395d67482SBill Paul 		CSR_WRITE_4(sc, BGE_HCC_STATS_ADDR_LO,
1544f41ac2beSBill Paul 		    BGE_ADDR_LO(sc->bge_ldata.bge_stats_paddr));
15450434d1b8SBill Paul 		CSR_WRITE_4(sc, BGE_HCC_STATS_BASEADDR, BGE_STATS_BLOCK);
154695d67482SBill Paul 		CSR_WRITE_4(sc, BGE_HCC_STATUSBLK_BASEADDR, BGE_STATUS_BLOCK);
15470434d1b8SBill Paul 		CSR_WRITE_4(sc, BGE_HCC_STATS_TICKS, sc->bge_stat_ticks);
15480434d1b8SBill Paul 	}
15490434d1b8SBill Paul 
15500434d1b8SBill Paul 	/* Set up address of status block */
1551f41ac2beSBill Paul 	CSR_WRITE_4(sc, BGE_HCC_STATUSBLK_ADDR_HI,
1552f41ac2beSBill Paul 	    BGE_ADDR_HI(sc->bge_ldata.bge_status_block_paddr));
155395d67482SBill Paul 	CSR_WRITE_4(sc, BGE_HCC_STATUSBLK_ADDR_LO,
1554f41ac2beSBill Paul 	    BGE_ADDR_LO(sc->bge_ldata.bge_status_block_paddr));
1555f41ac2beSBill Paul 	sc->bge_ldata.bge_status_block->bge_idx[0].bge_rx_prod_idx = 0;
1556f41ac2beSBill Paul 	sc->bge_ldata.bge_status_block->bge_idx[0].bge_tx_cons_idx = 0;
155795d67482SBill Paul 
155895d67482SBill Paul 	/* Turn on host coalescing state machine */
155995d67482SBill Paul 	CSR_WRITE_4(sc, BGE_HCC_MODE, BGE_HCCMODE_ENABLE);
156095d67482SBill Paul 
156195d67482SBill Paul 	/* Turn on RX BD completion state machine and enable attentions */
156295d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RBDC_MODE,
156395d67482SBill Paul 	    BGE_RBDCMODE_ENABLE | BGE_RBDCMODE_ATTN);
156495d67482SBill Paul 
156595d67482SBill Paul 	/* Turn on RX list placement state machine */
156695d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RXLP_MODE, BGE_RXLPMODE_ENABLE);
156795d67482SBill Paul 
156895d67482SBill Paul 	/* Turn on RX list selector state machine. */
15697ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc)))
157095d67482SBill Paul 		CSR_WRITE_4(sc, BGE_RXLS_MODE, BGE_RXLSMODE_ENABLE);
157195d67482SBill Paul 
157295d67482SBill Paul 	/* Turn on DMA, clear stats */
157395d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MAC_MODE, BGE_MACMODE_TXDMA_ENB |
157495d67482SBill Paul 	    BGE_MACMODE_RXDMA_ENB | BGE_MACMODE_RX_STATS_CLEAR |
157595d67482SBill Paul 	    BGE_MACMODE_TX_STATS_CLEAR | BGE_MACMODE_RX_STATS_ENB |
157695d67482SBill Paul 	    BGE_MACMODE_TX_STATS_ENB | BGE_MACMODE_FRMHDR_DMA_ENB |
1577652ae483SGleb Smirnoff 	    ((sc->bge_flags & BGE_FLAG_TBI) ?
1578652ae483SGleb Smirnoff 	    BGE_PORTMODE_TBI : BGE_PORTMODE_MII));
157995d67482SBill Paul 
158095d67482SBill Paul 	/* Set misc. local control, enable interrupts on attentions */
158195d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MISC_LOCAL_CTL, BGE_MLC_INTR_ONATTN);
158295d67482SBill Paul 
158395d67482SBill Paul #ifdef notdef
158495d67482SBill Paul 	/* Assert GPIO pins for PHY reset */
158595d67482SBill Paul 	BGE_SETBIT(sc, BGE_MISC_LOCAL_CTL, BGE_MLC_MISCIO_OUT0 |
158695d67482SBill Paul 	    BGE_MLC_MISCIO_OUT1 | BGE_MLC_MISCIO_OUT2);
158795d67482SBill Paul 	BGE_SETBIT(sc, BGE_MISC_LOCAL_CTL, BGE_MLC_MISCIO_OUTEN0 |
158895d67482SBill Paul 	    BGE_MLC_MISCIO_OUTEN1 | BGE_MLC_MISCIO_OUTEN2);
158995d67482SBill Paul #endif
159095d67482SBill Paul 
159195d67482SBill Paul 	/* Turn on DMA completion state machine */
15927ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc)))
159395d67482SBill Paul 		CSR_WRITE_4(sc, BGE_DMAC_MODE, BGE_DMACMODE_ENABLE);
159495d67482SBill Paul 
15956f8718a3SScott Long 	val = BGE_WDMAMODE_ENABLE | BGE_WDMAMODE_ALL_ATTNS;
15966f8718a3SScott Long 
15976f8718a3SScott Long 	/* Enable host coalescing bug fix. */
15986f8718a3SScott Long 	if (sc->bge_asicrev == BGE_ASICREV_BCM5755 ||
15996f8718a3SScott Long 	    sc->bge_asicrev == BGE_ASICREV_BCM5787)
16000c8aa4eaSJung-uk Kim 			val |= 1 << 29;
16016f8718a3SScott Long 
160295d67482SBill Paul 	/* Turn on write DMA state machine */
16036f8718a3SScott Long 	CSR_WRITE_4(sc, BGE_WDMA_MODE, val);
160495d67482SBill Paul 
160595d67482SBill Paul 	/* Turn on read DMA state machine */
160695d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RDMA_MODE,
160795d67482SBill Paul 	    BGE_RDMAMODE_ENABLE | BGE_RDMAMODE_ALL_ATTNS);
160895d67482SBill Paul 
160995d67482SBill Paul 	/* Turn on RX data completion state machine */
161095d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RDC_MODE, BGE_RDCMODE_ENABLE);
161195d67482SBill Paul 
161295d67482SBill Paul 	/* Turn on RX BD initiator state machine */
161395d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RBDI_MODE, BGE_RBDIMODE_ENABLE);
161495d67482SBill Paul 
161595d67482SBill Paul 	/* Turn on RX data and RX BD initiator state machine */
161695d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RDBDI_MODE, BGE_RDBDIMODE_ENABLE);
161795d67482SBill Paul 
161895d67482SBill Paul 	/* Turn on Mbuf cluster free state machine */
16197ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc)))
162095d67482SBill Paul 		CSR_WRITE_4(sc, BGE_MBCF_MODE, BGE_MBCFMODE_ENABLE);
162195d67482SBill Paul 
162295d67482SBill Paul 	/* Turn on send BD completion state machine */
162395d67482SBill Paul 	CSR_WRITE_4(sc, BGE_SBDC_MODE, BGE_SBDCMODE_ENABLE);
162495d67482SBill Paul 
162595d67482SBill Paul 	/* Turn on send data completion state machine */
162695d67482SBill Paul 	CSR_WRITE_4(sc, BGE_SDC_MODE, BGE_SDCMODE_ENABLE);
162795d67482SBill Paul 
162895d67482SBill Paul 	/* Turn on send data initiator state machine */
162995d67482SBill Paul 	CSR_WRITE_4(sc, BGE_SDI_MODE, BGE_SDIMODE_ENABLE);
163095d67482SBill Paul 
163195d67482SBill Paul 	/* Turn on send BD initiator state machine */
163295d67482SBill Paul 	CSR_WRITE_4(sc, BGE_SBDI_MODE, BGE_SBDIMODE_ENABLE);
163395d67482SBill Paul 
163495d67482SBill Paul 	/* Turn on send BD selector state machine */
163595d67482SBill Paul 	CSR_WRITE_4(sc, BGE_SRS_MODE, BGE_SRSMODE_ENABLE);
163695d67482SBill Paul 
16370c8aa4eaSJung-uk Kim 	CSR_WRITE_4(sc, BGE_SDI_STATS_ENABLE_MASK, 0x007FFFFF);
163895d67482SBill Paul 	CSR_WRITE_4(sc, BGE_SDI_STATS_CTL,
163995d67482SBill Paul 	    BGE_SDISTATSCTL_ENABLE | BGE_SDISTATSCTL_FASTER);
164095d67482SBill Paul 
164195d67482SBill Paul 	/* ack/clear link change events */
164295d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MAC_STS, BGE_MACSTAT_SYNC_CHANGED |
16430434d1b8SBill Paul 	    BGE_MACSTAT_CFG_CHANGED | BGE_MACSTAT_MI_COMPLETE |
16440434d1b8SBill Paul 	    BGE_MACSTAT_LINK_CHANGED);
1645f41ac2beSBill Paul 	CSR_WRITE_4(sc, BGE_MI_STS, 0);
164695d67482SBill Paul 
164795d67482SBill Paul 	/* Enable PHY auto polling (for MII/GMII only) */
1648652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_TBI) {
164995d67482SBill Paul 		CSR_WRITE_4(sc, BGE_MI_STS, BGE_MISTS_LINK);
1650a1d52896SBill Paul 	} else {
16516098821cSJung-uk Kim 		BGE_SETBIT(sc, BGE_MI_MODE, BGE_MIMODE_AUTOPOLL | (10 << 16));
16521f313773SOleg Bulyzhin 		if (sc->bge_asicrev == BGE_ASICREV_BCM5700 &&
16534c0da0ffSGleb Smirnoff 		    sc->bge_chipid != BGE_CHIPID_BCM5700_B2)
1654a1d52896SBill Paul 			CSR_WRITE_4(sc, BGE_MAC_EVT_ENB,
1655a1d52896SBill Paul 			    BGE_EVTENB_MI_INTERRUPT);
1656a1d52896SBill Paul 	}
165795d67482SBill Paul 
16581f313773SOleg Bulyzhin 	/*
16591f313773SOleg Bulyzhin 	 * Clear any pending link state attention.
16601f313773SOleg Bulyzhin 	 * Otherwise some link state change events may be lost until attention
16611f313773SOleg Bulyzhin 	 * is cleared by bge_intr() -> bge_link_upd() sequence.
16621f313773SOleg Bulyzhin 	 * It's not necessary on newer BCM chips - perhaps enabling link
16631f313773SOleg Bulyzhin 	 * state change attentions implies clearing pending attention.
16641f313773SOleg Bulyzhin 	 */
16651f313773SOleg Bulyzhin 	CSR_WRITE_4(sc, BGE_MAC_STS, BGE_MACSTAT_SYNC_CHANGED |
16661f313773SOleg Bulyzhin 	    BGE_MACSTAT_CFG_CHANGED | BGE_MACSTAT_MI_COMPLETE |
16671f313773SOleg Bulyzhin 	    BGE_MACSTAT_LINK_CHANGED);
16681f313773SOleg Bulyzhin 
166995d67482SBill Paul 	/* Enable link state change attentions. */
167095d67482SBill Paul 	BGE_SETBIT(sc, BGE_MAC_EVT_ENB, BGE_EVTENB_LINK_CHANGED);
167195d67482SBill Paul 
167295d67482SBill Paul 	return (0);
167395d67482SBill Paul }
167495d67482SBill Paul 
16754c0da0ffSGleb Smirnoff const struct bge_revision *
16764c0da0ffSGleb Smirnoff bge_lookup_rev(uint32_t chipid)
16774c0da0ffSGleb Smirnoff {
16784c0da0ffSGleb Smirnoff 	const struct bge_revision *br;
16794c0da0ffSGleb Smirnoff 
16804c0da0ffSGleb Smirnoff 	for (br = bge_revisions; br->br_name != NULL; br++) {
16814c0da0ffSGleb Smirnoff 		if (br->br_chipid == chipid)
16824c0da0ffSGleb Smirnoff 			return (br);
16834c0da0ffSGleb Smirnoff 	}
16844c0da0ffSGleb Smirnoff 
16854c0da0ffSGleb Smirnoff 	for (br = bge_majorrevs; br->br_name != NULL; br++) {
16864c0da0ffSGleb Smirnoff 		if (br->br_chipid == BGE_ASICREV(chipid))
16874c0da0ffSGleb Smirnoff 			return (br);
16884c0da0ffSGleb Smirnoff 	}
16894c0da0ffSGleb Smirnoff 
16904c0da0ffSGleb Smirnoff 	return (NULL);
16914c0da0ffSGleb Smirnoff }
16924c0da0ffSGleb Smirnoff 
16934c0da0ffSGleb Smirnoff const struct bge_vendor *
16944c0da0ffSGleb Smirnoff bge_lookup_vendor(uint16_t vid)
16954c0da0ffSGleb Smirnoff {
16964c0da0ffSGleb Smirnoff 	const struct bge_vendor *v;
16974c0da0ffSGleb Smirnoff 
16984c0da0ffSGleb Smirnoff 	for (v = bge_vendors; v->v_name != NULL; v++)
16994c0da0ffSGleb Smirnoff 		if (v->v_id == vid)
17004c0da0ffSGleb Smirnoff 			return (v);
17014c0da0ffSGleb Smirnoff 
17024c0da0ffSGleb Smirnoff 	panic("%s: unknown vendor %d", __func__, vid);
17034c0da0ffSGleb Smirnoff 	return (NULL);
17044c0da0ffSGleb Smirnoff }
17054c0da0ffSGleb Smirnoff 
170695d67482SBill Paul /*
170795d67482SBill Paul  * Probe for a Broadcom chip. Check the PCI vendor and device IDs
17084c0da0ffSGleb Smirnoff  * against our list and return its name if we find a match.
17094c0da0ffSGleb Smirnoff  *
17104c0da0ffSGleb Smirnoff  * Note that since the Broadcom controller contains VPD support, we
17117c929cf9SJung-uk Kim  * try to get the device name string from the controller itself instead
17127c929cf9SJung-uk Kim  * of the compiled-in string. It guarantees we'll always announce the
17137c929cf9SJung-uk Kim  * right product name. We fall back to the compiled-in string when
17147c929cf9SJung-uk Kim  * VPD is unavailable or corrupt.
171595d67482SBill Paul  */
171695d67482SBill Paul static int
17173f74909aSGleb Smirnoff bge_probe(device_t dev)
171895d67482SBill Paul {
17194c0da0ffSGleb Smirnoff 	struct bge_type *t = bge_devs;
17204c0da0ffSGleb Smirnoff 	struct bge_softc *sc = device_get_softc(dev);
17217c929cf9SJung-uk Kim 	uint16_t vid, did;
172295d67482SBill Paul 
172395d67482SBill Paul 	sc->bge_dev = dev;
17247c929cf9SJung-uk Kim 	vid = pci_get_vendor(dev);
17257c929cf9SJung-uk Kim 	did = pci_get_device(dev);
17264c0da0ffSGleb Smirnoff 	while(t->bge_vid != 0) {
17277c929cf9SJung-uk Kim 		if ((vid == t->bge_vid) && (did == t->bge_did)) {
17287c929cf9SJung-uk Kim 			char model[64], buf[96];
17294c0da0ffSGleb Smirnoff 			const struct bge_revision *br;
17304c0da0ffSGleb Smirnoff 			const struct bge_vendor *v;
17314c0da0ffSGleb Smirnoff 			uint32_t id;
17324c0da0ffSGleb Smirnoff 
17334c0da0ffSGleb Smirnoff 			id = pci_read_config(dev, BGE_PCI_MISC_CTL, 4) &
17344c0da0ffSGleb Smirnoff 			    BGE_PCIMISCCTL_ASICREV;
17354c0da0ffSGleb Smirnoff 			br = bge_lookup_rev(id);
17367c929cf9SJung-uk Kim 			v = bge_lookup_vendor(vid);
17374e35d186SJung-uk Kim 			{
17384e35d186SJung-uk Kim #if __FreeBSD_version > 700024
17394e35d186SJung-uk Kim 				const char *pname;
17404e35d186SJung-uk Kim 
17414e35d186SJung-uk Kim 				if (pci_get_vpd_ident(dev, &pname) == 0)
17424e35d186SJung-uk Kim 					snprintf(model, 64, "%s", pname);
17434e35d186SJung-uk Kim 				else
17444e35d186SJung-uk Kim #endif
17457c929cf9SJung-uk Kim 					snprintf(model, 64, "%s %s",
17467c929cf9SJung-uk Kim 					    v->v_name,
17477c929cf9SJung-uk Kim 					    br != NULL ? br->br_name :
17487c929cf9SJung-uk Kim 					    "NetXtreme Ethernet Controller");
17494e35d186SJung-uk Kim 			}
17507c929cf9SJung-uk Kim 			snprintf(buf, 96, "%s, %sASIC rev. %#04x", model,
17517c929cf9SJung-uk Kim 			    br != NULL ? "" : "unknown ", id >> 16);
17524c0da0ffSGleb Smirnoff 			device_set_desc_copy(dev, buf);
17536d2a9bd6SDoug Ambrisko 			if (pci_get_subvendor(dev) == DELL_VENDORID)
17545ee49a3aSJung-uk Kim 				sc->bge_flags |= BGE_FLAG_NO_3LED;
175508bf8bb7SJung-uk Kim 			if (did == BCOM_DEVICEID_BCM5755M)
175608bf8bb7SJung-uk Kim 				sc->bge_flags |= BGE_FLAG_ADJUST_TRIM;
175795d67482SBill Paul 			return (0);
175895d67482SBill Paul 		}
175995d67482SBill Paul 		t++;
176095d67482SBill Paul 	}
176195d67482SBill Paul 
176295d67482SBill Paul 	return (ENXIO);
176395d67482SBill Paul }
176495d67482SBill Paul 
1765f41ac2beSBill Paul static void
17663f74909aSGleb Smirnoff bge_dma_free(struct bge_softc *sc)
1767f41ac2beSBill Paul {
1768f41ac2beSBill Paul 	int i;
1769f41ac2beSBill Paul 
17703f74909aSGleb Smirnoff 	/* Destroy DMA maps for RX buffers. */
1771f41ac2beSBill Paul 	for (i = 0; i < BGE_STD_RX_RING_CNT; i++) {
1772f41ac2beSBill Paul 		if (sc->bge_cdata.bge_rx_std_dmamap[i])
1773f41ac2beSBill Paul 			bus_dmamap_destroy(sc->bge_cdata.bge_mtag,
1774f41ac2beSBill Paul 			    sc->bge_cdata.bge_rx_std_dmamap[i]);
1775f41ac2beSBill Paul 	}
1776f41ac2beSBill Paul 
17773f74909aSGleb Smirnoff 	/* Destroy DMA maps for jumbo RX buffers. */
1778f41ac2beSBill Paul 	for (i = 0; i < BGE_JUMBO_RX_RING_CNT; i++) {
1779f41ac2beSBill Paul 		if (sc->bge_cdata.bge_rx_jumbo_dmamap[i])
1780f41ac2beSBill Paul 			bus_dmamap_destroy(sc->bge_cdata.bge_mtag_jumbo,
1781f41ac2beSBill Paul 			    sc->bge_cdata.bge_rx_jumbo_dmamap[i]);
1782f41ac2beSBill Paul 	}
1783f41ac2beSBill Paul 
17843f74909aSGleb Smirnoff 	/* Destroy DMA maps for TX buffers. */
1785f41ac2beSBill Paul 	for (i = 0; i < BGE_TX_RING_CNT; i++) {
1786f41ac2beSBill Paul 		if (sc->bge_cdata.bge_tx_dmamap[i])
1787f41ac2beSBill Paul 			bus_dmamap_destroy(sc->bge_cdata.bge_mtag,
1788f41ac2beSBill Paul 			    sc->bge_cdata.bge_tx_dmamap[i]);
1789f41ac2beSBill Paul 	}
1790f41ac2beSBill Paul 
1791f41ac2beSBill Paul 	if (sc->bge_cdata.bge_mtag)
1792f41ac2beSBill Paul 		bus_dma_tag_destroy(sc->bge_cdata.bge_mtag);
1793f41ac2beSBill Paul 
1794f41ac2beSBill Paul 
17953f74909aSGleb Smirnoff 	/* Destroy standard RX ring. */
1796e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_rx_std_ring_map)
1797e65bed95SPyun YongHyeon 		bus_dmamap_unload(sc->bge_cdata.bge_rx_std_ring_tag,
1798e65bed95SPyun YongHyeon 		    sc->bge_cdata.bge_rx_std_ring_map);
1799e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_rx_std_ring_map && sc->bge_ldata.bge_rx_std_ring)
1800f41ac2beSBill Paul 		bus_dmamem_free(sc->bge_cdata.bge_rx_std_ring_tag,
1801f41ac2beSBill Paul 		    sc->bge_ldata.bge_rx_std_ring,
1802f41ac2beSBill Paul 		    sc->bge_cdata.bge_rx_std_ring_map);
1803f41ac2beSBill Paul 
1804f41ac2beSBill Paul 	if (sc->bge_cdata.bge_rx_std_ring_tag)
1805f41ac2beSBill Paul 		bus_dma_tag_destroy(sc->bge_cdata.bge_rx_std_ring_tag);
1806f41ac2beSBill Paul 
18073f74909aSGleb Smirnoff 	/* Destroy jumbo RX ring. */
1808e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_rx_jumbo_ring_map)
1809e65bed95SPyun YongHyeon 		bus_dmamap_unload(sc->bge_cdata.bge_rx_jumbo_ring_tag,
1810e65bed95SPyun YongHyeon 		    sc->bge_cdata.bge_rx_jumbo_ring_map);
1811e65bed95SPyun YongHyeon 
1812e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_rx_jumbo_ring_map &&
1813e65bed95SPyun YongHyeon 	    sc->bge_ldata.bge_rx_jumbo_ring)
1814f41ac2beSBill Paul 		bus_dmamem_free(sc->bge_cdata.bge_rx_jumbo_ring_tag,
1815f41ac2beSBill Paul 		    sc->bge_ldata.bge_rx_jumbo_ring,
1816f41ac2beSBill Paul 		    sc->bge_cdata.bge_rx_jumbo_ring_map);
1817f41ac2beSBill Paul 
1818f41ac2beSBill Paul 	if (sc->bge_cdata.bge_rx_jumbo_ring_tag)
1819f41ac2beSBill Paul 		bus_dma_tag_destroy(sc->bge_cdata.bge_rx_jumbo_ring_tag);
1820f41ac2beSBill Paul 
18213f74909aSGleb Smirnoff 	/* Destroy RX return ring. */
1822e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_rx_return_ring_map)
1823e65bed95SPyun YongHyeon 		bus_dmamap_unload(sc->bge_cdata.bge_rx_return_ring_tag,
1824e65bed95SPyun YongHyeon 		    sc->bge_cdata.bge_rx_return_ring_map);
1825e65bed95SPyun YongHyeon 
1826e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_rx_return_ring_map &&
1827e65bed95SPyun YongHyeon 	    sc->bge_ldata.bge_rx_return_ring)
1828f41ac2beSBill Paul 		bus_dmamem_free(sc->bge_cdata.bge_rx_return_ring_tag,
1829f41ac2beSBill Paul 		    sc->bge_ldata.bge_rx_return_ring,
1830f41ac2beSBill Paul 		    sc->bge_cdata.bge_rx_return_ring_map);
1831f41ac2beSBill Paul 
1832f41ac2beSBill Paul 	if (sc->bge_cdata.bge_rx_return_ring_tag)
1833f41ac2beSBill Paul 		bus_dma_tag_destroy(sc->bge_cdata.bge_rx_return_ring_tag);
1834f41ac2beSBill Paul 
18353f74909aSGleb Smirnoff 	/* Destroy TX ring. */
1836e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_tx_ring_map)
1837e65bed95SPyun YongHyeon 		bus_dmamap_unload(sc->bge_cdata.bge_tx_ring_tag,
1838e65bed95SPyun YongHyeon 		    sc->bge_cdata.bge_tx_ring_map);
1839e65bed95SPyun YongHyeon 
1840e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_tx_ring_map && sc->bge_ldata.bge_tx_ring)
1841f41ac2beSBill Paul 		bus_dmamem_free(sc->bge_cdata.bge_tx_ring_tag,
1842f41ac2beSBill Paul 		    sc->bge_ldata.bge_tx_ring,
1843f41ac2beSBill Paul 		    sc->bge_cdata.bge_tx_ring_map);
1844f41ac2beSBill Paul 
1845f41ac2beSBill Paul 	if (sc->bge_cdata.bge_tx_ring_tag)
1846f41ac2beSBill Paul 		bus_dma_tag_destroy(sc->bge_cdata.bge_tx_ring_tag);
1847f41ac2beSBill Paul 
18483f74909aSGleb Smirnoff 	/* Destroy status block. */
1849e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_status_map)
1850e65bed95SPyun YongHyeon 		bus_dmamap_unload(sc->bge_cdata.bge_status_tag,
1851e65bed95SPyun YongHyeon 		    sc->bge_cdata.bge_status_map);
1852e65bed95SPyun YongHyeon 
1853e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_status_map && sc->bge_ldata.bge_status_block)
1854f41ac2beSBill Paul 		bus_dmamem_free(sc->bge_cdata.bge_status_tag,
1855f41ac2beSBill Paul 		    sc->bge_ldata.bge_status_block,
1856f41ac2beSBill Paul 		    sc->bge_cdata.bge_status_map);
1857f41ac2beSBill Paul 
1858f41ac2beSBill Paul 	if (sc->bge_cdata.bge_status_tag)
1859f41ac2beSBill Paul 		bus_dma_tag_destroy(sc->bge_cdata.bge_status_tag);
1860f41ac2beSBill Paul 
18613f74909aSGleb Smirnoff 	/* Destroy statistics block. */
1862e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_stats_map)
1863e65bed95SPyun YongHyeon 		bus_dmamap_unload(sc->bge_cdata.bge_stats_tag,
1864e65bed95SPyun YongHyeon 		    sc->bge_cdata.bge_stats_map);
1865e65bed95SPyun YongHyeon 
1866e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_stats_map && sc->bge_ldata.bge_stats)
1867f41ac2beSBill Paul 		bus_dmamem_free(sc->bge_cdata.bge_stats_tag,
1868f41ac2beSBill Paul 		    sc->bge_ldata.bge_stats,
1869f41ac2beSBill Paul 		    sc->bge_cdata.bge_stats_map);
1870f41ac2beSBill Paul 
1871f41ac2beSBill Paul 	if (sc->bge_cdata.bge_stats_tag)
1872f41ac2beSBill Paul 		bus_dma_tag_destroy(sc->bge_cdata.bge_stats_tag);
1873f41ac2beSBill Paul 
18743f74909aSGleb Smirnoff 	/* Destroy the parent tag. */
1875f41ac2beSBill Paul 	if (sc->bge_cdata.bge_parent_tag)
1876f41ac2beSBill Paul 		bus_dma_tag_destroy(sc->bge_cdata.bge_parent_tag);
1877f41ac2beSBill Paul }
1878f41ac2beSBill Paul 
1879f41ac2beSBill Paul static int
18803f74909aSGleb Smirnoff bge_dma_alloc(device_t dev)
1881f41ac2beSBill Paul {
18823f74909aSGleb Smirnoff 	struct bge_dmamap_arg ctx;
1883f41ac2beSBill Paul 	struct bge_softc *sc;
18841be6acb7SGleb Smirnoff 	int i, error;
1885f41ac2beSBill Paul 
1886f41ac2beSBill Paul 	sc = device_get_softc(dev);
1887f41ac2beSBill Paul 
1888f41ac2beSBill Paul 	/*
1889f41ac2beSBill Paul 	 * Allocate the parent bus DMA tag appropriate for PCI.
1890f41ac2beSBill Paul 	 */
1891378f231eSJohn-Mark Gurney 	error = bus_dma_tag_create(bus_get_dma_tag(sc->bge_dev), /* parent */
1892706620f0SScott Long 			1, 0,			/* alignment, boundary */
1893f41ac2beSBill Paul 			BUS_SPACE_MAXADDR,	/* lowaddr */
18942f28b973SScott Long 			BUS_SPACE_MAXADDR,	/* highaddr */
1895f41ac2beSBill Paul 			NULL, NULL,		/* filter, filterarg */
1896f41ac2beSBill Paul 			MAXBSIZE, BGE_NSEG_NEW,	/* maxsize, nsegments */
1897f41ac2beSBill Paul 			BUS_SPACE_MAXSIZE_32BIT, /* maxsegsize */
18988a40c10eSScott Long 			0,			/* flags */
1899f41ac2beSBill Paul 			NULL, NULL,		/* lockfunc, lockarg */
1900f41ac2beSBill Paul 			&sc->bge_cdata.bge_parent_tag);
1901f41ac2beSBill Paul 
1902e65bed95SPyun YongHyeon 	if (error != 0) {
1903fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev,
1904fe806fdaSPyun YongHyeon 		    "could not allocate parent dma tag\n");
1905e65bed95SPyun YongHyeon 		return (ENOMEM);
1906e65bed95SPyun YongHyeon 	}
1907e65bed95SPyun YongHyeon 
1908f41ac2beSBill Paul 	/*
1909f41ac2beSBill Paul 	 * Create tag for RX mbufs.
1910f41ac2beSBill Paul 	 */
19118a2e22deSScott Long 	error = bus_dma_tag_create(sc->bge_cdata.bge_parent_tag, 1,
1912f41ac2beSBill Paul 	    0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL,
19131be6acb7SGleb Smirnoff 	    NULL, MCLBYTES * BGE_NSEG_NEW, BGE_NSEG_NEW, MCLBYTES,
19141be6acb7SGleb Smirnoff 	    BUS_DMA_ALLOCNOW, NULL, NULL, &sc->bge_cdata.bge_mtag);
1915f41ac2beSBill Paul 
1916f41ac2beSBill Paul 	if (error) {
1917fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "could not allocate dma tag\n");
1918f41ac2beSBill Paul 		return (ENOMEM);
1919f41ac2beSBill Paul 	}
1920f41ac2beSBill Paul 
19213f74909aSGleb Smirnoff 	/* Create DMA maps for RX buffers. */
1922f41ac2beSBill Paul 	for (i = 0; i < BGE_STD_RX_RING_CNT; i++) {
1923f41ac2beSBill Paul 		error = bus_dmamap_create(sc->bge_cdata.bge_mtag, 0,
1924f41ac2beSBill Paul 			    &sc->bge_cdata.bge_rx_std_dmamap[i]);
1925f41ac2beSBill Paul 		if (error) {
1926fe806fdaSPyun YongHyeon 			device_printf(sc->bge_dev,
1927fe806fdaSPyun YongHyeon 			    "can't create DMA map for RX\n");
1928f41ac2beSBill Paul 			return (ENOMEM);
1929f41ac2beSBill Paul 		}
1930f41ac2beSBill Paul 	}
1931f41ac2beSBill Paul 
19323f74909aSGleb Smirnoff 	/* Create DMA maps for TX buffers. */
1933f41ac2beSBill Paul 	for (i = 0; i < BGE_TX_RING_CNT; i++) {
1934f41ac2beSBill Paul 		error = bus_dmamap_create(sc->bge_cdata.bge_mtag, 0,
1935f41ac2beSBill Paul 			    &sc->bge_cdata.bge_tx_dmamap[i]);
1936f41ac2beSBill Paul 		if (error) {
1937fe806fdaSPyun YongHyeon 			device_printf(sc->bge_dev,
1938fe806fdaSPyun YongHyeon 			    "can't create DMA map for RX\n");
1939f41ac2beSBill Paul 			return (ENOMEM);
1940f41ac2beSBill Paul 		}
1941f41ac2beSBill Paul 	}
1942f41ac2beSBill Paul 
19433f74909aSGleb Smirnoff 	/* Create tag for standard RX ring. */
1944f41ac2beSBill Paul 	error = bus_dma_tag_create(sc->bge_cdata.bge_parent_tag,
1945f41ac2beSBill Paul 	    PAGE_SIZE, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL,
1946f41ac2beSBill Paul 	    NULL, BGE_STD_RX_RING_SZ, 1, BGE_STD_RX_RING_SZ, 0,
1947f41ac2beSBill Paul 	    NULL, NULL, &sc->bge_cdata.bge_rx_std_ring_tag);
1948f41ac2beSBill Paul 
1949f41ac2beSBill Paul 	if (error) {
1950fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "could not allocate dma tag\n");
1951f41ac2beSBill Paul 		return (ENOMEM);
1952f41ac2beSBill Paul 	}
1953f41ac2beSBill Paul 
19543f74909aSGleb Smirnoff 	/* Allocate DMA'able memory for standard RX ring. */
1955f41ac2beSBill Paul 	error = bus_dmamem_alloc(sc->bge_cdata.bge_rx_std_ring_tag,
1956f41ac2beSBill Paul 	    (void **)&sc->bge_ldata.bge_rx_std_ring, BUS_DMA_NOWAIT,
1957f41ac2beSBill Paul 	    &sc->bge_cdata.bge_rx_std_ring_map);
1958f41ac2beSBill Paul 	if (error)
1959f41ac2beSBill Paul 		return (ENOMEM);
1960f41ac2beSBill Paul 
1961f41ac2beSBill Paul 	bzero((char *)sc->bge_ldata.bge_rx_std_ring, BGE_STD_RX_RING_SZ);
1962f41ac2beSBill Paul 
19633f74909aSGleb Smirnoff 	/* Load the address of the standard RX ring. */
1964f41ac2beSBill Paul 	ctx.bge_maxsegs = 1;
1965f41ac2beSBill Paul 	ctx.sc = sc;
1966f41ac2beSBill Paul 
1967f41ac2beSBill Paul 	error = bus_dmamap_load(sc->bge_cdata.bge_rx_std_ring_tag,
1968f41ac2beSBill Paul 	    sc->bge_cdata.bge_rx_std_ring_map, sc->bge_ldata.bge_rx_std_ring,
1969f41ac2beSBill Paul 	    BGE_STD_RX_RING_SZ, bge_dma_map_addr, &ctx, BUS_DMA_NOWAIT);
1970f41ac2beSBill Paul 
1971f41ac2beSBill Paul 	if (error)
1972f41ac2beSBill Paul 		return (ENOMEM);
1973f41ac2beSBill Paul 
1974f41ac2beSBill Paul 	sc->bge_ldata.bge_rx_std_ring_paddr = ctx.bge_busaddr;
1975f41ac2beSBill Paul 
19763f74909aSGleb Smirnoff 	/* Create tags for jumbo mbufs. */
19774c0da0ffSGleb Smirnoff 	if (BGE_IS_JUMBO_CAPABLE(sc)) {
1978f41ac2beSBill Paul 		error = bus_dma_tag_create(sc->bge_cdata.bge_parent_tag,
19798a2e22deSScott Long 		    1, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL,
19801be6acb7SGleb Smirnoff 		    NULL, MJUM9BYTES, BGE_NSEG_JUMBO, PAGE_SIZE,
19811be6acb7SGleb Smirnoff 		    0, NULL, NULL, &sc->bge_cdata.bge_mtag_jumbo);
1982f41ac2beSBill Paul 		if (error) {
1983fe806fdaSPyun YongHyeon 			device_printf(sc->bge_dev,
19843f74909aSGleb Smirnoff 			    "could not allocate jumbo dma tag\n");
1985f41ac2beSBill Paul 			return (ENOMEM);
1986f41ac2beSBill Paul 		}
1987f41ac2beSBill Paul 
19883f74909aSGleb Smirnoff 		/* Create tag for jumbo RX ring. */
1989f41ac2beSBill Paul 		error = bus_dma_tag_create(sc->bge_cdata.bge_parent_tag,
1990f41ac2beSBill Paul 		    PAGE_SIZE, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL,
1991f41ac2beSBill Paul 		    NULL, BGE_JUMBO_RX_RING_SZ, 1, BGE_JUMBO_RX_RING_SZ, 0,
1992f41ac2beSBill Paul 		    NULL, NULL, &sc->bge_cdata.bge_rx_jumbo_ring_tag);
1993f41ac2beSBill Paul 
1994f41ac2beSBill Paul 		if (error) {
1995fe806fdaSPyun YongHyeon 			device_printf(sc->bge_dev,
19963f74909aSGleb Smirnoff 			    "could not allocate jumbo ring dma tag\n");
1997f41ac2beSBill Paul 			return (ENOMEM);
1998f41ac2beSBill Paul 		}
1999f41ac2beSBill Paul 
20003f74909aSGleb Smirnoff 		/* Allocate DMA'able memory for jumbo RX ring. */
2001f41ac2beSBill Paul 		error = bus_dmamem_alloc(sc->bge_cdata.bge_rx_jumbo_ring_tag,
20021be6acb7SGleb Smirnoff 		    (void **)&sc->bge_ldata.bge_rx_jumbo_ring,
20031be6acb7SGleb Smirnoff 		    BUS_DMA_NOWAIT | BUS_DMA_ZERO,
2004f41ac2beSBill Paul 		    &sc->bge_cdata.bge_rx_jumbo_ring_map);
2005f41ac2beSBill Paul 		if (error)
2006f41ac2beSBill Paul 			return (ENOMEM);
2007f41ac2beSBill Paul 
20083f74909aSGleb Smirnoff 		/* Load the address of the jumbo RX ring. */
2009f41ac2beSBill Paul 		ctx.bge_maxsegs = 1;
2010f41ac2beSBill Paul 		ctx.sc = sc;
2011f41ac2beSBill Paul 
2012f41ac2beSBill Paul 		error = bus_dmamap_load(sc->bge_cdata.bge_rx_jumbo_ring_tag,
2013f41ac2beSBill Paul 		    sc->bge_cdata.bge_rx_jumbo_ring_map,
2014f41ac2beSBill Paul 		    sc->bge_ldata.bge_rx_jumbo_ring, BGE_JUMBO_RX_RING_SZ,
2015f41ac2beSBill Paul 		    bge_dma_map_addr, &ctx, BUS_DMA_NOWAIT);
2016f41ac2beSBill Paul 
2017f41ac2beSBill Paul 		if (error)
2018f41ac2beSBill Paul 			return (ENOMEM);
2019f41ac2beSBill Paul 
2020f41ac2beSBill Paul 		sc->bge_ldata.bge_rx_jumbo_ring_paddr = ctx.bge_busaddr;
2021f41ac2beSBill Paul 
20223f74909aSGleb Smirnoff 		/* Create DMA maps for jumbo RX buffers. */
2023f41ac2beSBill Paul 		for (i = 0; i < BGE_JUMBO_RX_RING_CNT; i++) {
2024f41ac2beSBill Paul 			error = bus_dmamap_create(sc->bge_cdata.bge_mtag_jumbo,
2025f41ac2beSBill Paul 				    0, &sc->bge_cdata.bge_rx_jumbo_dmamap[i]);
2026f41ac2beSBill Paul 			if (error) {
2027fe806fdaSPyun YongHyeon 				device_printf(sc->bge_dev,
20283f74909aSGleb Smirnoff 				    "can't create DMA map for jumbo RX\n");
2029f41ac2beSBill Paul 				return (ENOMEM);
2030f41ac2beSBill Paul 			}
2031f41ac2beSBill Paul 		}
2032f41ac2beSBill Paul 
2033f41ac2beSBill Paul 	}
2034f41ac2beSBill Paul 
20353f74909aSGleb Smirnoff 	/* Create tag for RX return ring. */
2036f41ac2beSBill Paul 	error = bus_dma_tag_create(sc->bge_cdata.bge_parent_tag,
2037f41ac2beSBill Paul 	    PAGE_SIZE, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL,
2038f41ac2beSBill Paul 	    NULL, BGE_RX_RTN_RING_SZ(sc), 1, BGE_RX_RTN_RING_SZ(sc), 0,
2039f41ac2beSBill Paul 	    NULL, NULL, &sc->bge_cdata.bge_rx_return_ring_tag);
2040f41ac2beSBill Paul 
2041f41ac2beSBill Paul 	if (error) {
2042fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "could not allocate dma tag\n");
2043f41ac2beSBill Paul 		return (ENOMEM);
2044f41ac2beSBill Paul 	}
2045f41ac2beSBill Paul 
20463f74909aSGleb Smirnoff 	/* Allocate DMA'able memory for RX return ring. */
2047f41ac2beSBill Paul 	error = bus_dmamem_alloc(sc->bge_cdata.bge_rx_return_ring_tag,
2048f41ac2beSBill Paul 	    (void **)&sc->bge_ldata.bge_rx_return_ring, BUS_DMA_NOWAIT,
2049f41ac2beSBill Paul 	    &sc->bge_cdata.bge_rx_return_ring_map);
2050f41ac2beSBill Paul 	if (error)
2051f41ac2beSBill Paul 		return (ENOMEM);
2052f41ac2beSBill Paul 
2053f41ac2beSBill Paul 	bzero((char *)sc->bge_ldata.bge_rx_return_ring,
2054f41ac2beSBill Paul 	    BGE_RX_RTN_RING_SZ(sc));
2055f41ac2beSBill Paul 
20563f74909aSGleb Smirnoff 	/* Load the address of the RX return ring. */
2057f41ac2beSBill Paul 	ctx.bge_maxsegs = 1;
2058f41ac2beSBill Paul 	ctx.sc = sc;
2059f41ac2beSBill Paul 
2060f41ac2beSBill Paul 	error = bus_dmamap_load(sc->bge_cdata.bge_rx_return_ring_tag,
2061f41ac2beSBill Paul 	    sc->bge_cdata.bge_rx_return_ring_map,
2062f41ac2beSBill Paul 	    sc->bge_ldata.bge_rx_return_ring, BGE_RX_RTN_RING_SZ(sc),
2063f41ac2beSBill Paul 	    bge_dma_map_addr, &ctx, BUS_DMA_NOWAIT);
2064f41ac2beSBill Paul 
2065f41ac2beSBill Paul 	if (error)
2066f41ac2beSBill Paul 		return (ENOMEM);
2067f41ac2beSBill Paul 
2068f41ac2beSBill Paul 	sc->bge_ldata.bge_rx_return_ring_paddr = ctx.bge_busaddr;
2069f41ac2beSBill Paul 
20703f74909aSGleb Smirnoff 	/* Create tag for TX ring. */
2071f41ac2beSBill Paul 	error = bus_dma_tag_create(sc->bge_cdata.bge_parent_tag,
2072f41ac2beSBill Paul 	    PAGE_SIZE, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL,
2073f41ac2beSBill Paul 	    NULL, BGE_TX_RING_SZ, 1, BGE_TX_RING_SZ, 0, NULL, NULL,
2074f41ac2beSBill Paul 	    &sc->bge_cdata.bge_tx_ring_tag);
2075f41ac2beSBill Paul 
2076f41ac2beSBill Paul 	if (error) {
2077fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "could not allocate dma tag\n");
2078f41ac2beSBill Paul 		return (ENOMEM);
2079f41ac2beSBill Paul 	}
2080f41ac2beSBill Paul 
20813f74909aSGleb Smirnoff 	/* Allocate DMA'able memory for TX ring. */
2082f41ac2beSBill Paul 	error = bus_dmamem_alloc(sc->bge_cdata.bge_tx_ring_tag,
2083f41ac2beSBill Paul 	    (void **)&sc->bge_ldata.bge_tx_ring, BUS_DMA_NOWAIT,
2084f41ac2beSBill Paul 	    &sc->bge_cdata.bge_tx_ring_map);
2085f41ac2beSBill Paul 	if (error)
2086f41ac2beSBill Paul 		return (ENOMEM);
2087f41ac2beSBill Paul 
2088f41ac2beSBill Paul 	bzero((char *)sc->bge_ldata.bge_tx_ring, BGE_TX_RING_SZ);
2089f41ac2beSBill Paul 
20903f74909aSGleb Smirnoff 	/* Load the address of the TX ring. */
2091f41ac2beSBill Paul 	ctx.bge_maxsegs = 1;
2092f41ac2beSBill Paul 	ctx.sc = sc;
2093f41ac2beSBill Paul 
2094f41ac2beSBill Paul 	error = bus_dmamap_load(sc->bge_cdata.bge_tx_ring_tag,
2095f41ac2beSBill Paul 	    sc->bge_cdata.bge_tx_ring_map, sc->bge_ldata.bge_tx_ring,
2096f41ac2beSBill Paul 	    BGE_TX_RING_SZ, bge_dma_map_addr, &ctx, BUS_DMA_NOWAIT);
2097f41ac2beSBill Paul 
2098f41ac2beSBill Paul 	if (error)
2099f41ac2beSBill Paul 		return (ENOMEM);
2100f41ac2beSBill Paul 
2101f41ac2beSBill Paul 	sc->bge_ldata.bge_tx_ring_paddr = ctx.bge_busaddr;
2102f41ac2beSBill Paul 
21033f74909aSGleb Smirnoff 	/* Create tag for status block. */
2104f41ac2beSBill Paul 	error = bus_dma_tag_create(sc->bge_cdata.bge_parent_tag,
2105f41ac2beSBill Paul 	    PAGE_SIZE, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL,
2106f41ac2beSBill Paul 	    NULL, BGE_STATUS_BLK_SZ, 1, BGE_STATUS_BLK_SZ, 0,
2107f41ac2beSBill Paul 	    NULL, NULL, &sc->bge_cdata.bge_status_tag);
2108f41ac2beSBill Paul 
2109f41ac2beSBill Paul 	if (error) {
2110fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "could not allocate dma tag\n");
2111f41ac2beSBill Paul 		return (ENOMEM);
2112f41ac2beSBill Paul 	}
2113f41ac2beSBill Paul 
21143f74909aSGleb Smirnoff 	/* Allocate DMA'able memory for status block. */
2115f41ac2beSBill Paul 	error = bus_dmamem_alloc(sc->bge_cdata.bge_status_tag,
2116f41ac2beSBill Paul 	    (void **)&sc->bge_ldata.bge_status_block, BUS_DMA_NOWAIT,
2117f41ac2beSBill Paul 	    &sc->bge_cdata.bge_status_map);
2118f41ac2beSBill Paul 	if (error)
2119f41ac2beSBill Paul 		return (ENOMEM);
2120f41ac2beSBill Paul 
2121f41ac2beSBill Paul 	bzero((char *)sc->bge_ldata.bge_status_block, BGE_STATUS_BLK_SZ);
2122f41ac2beSBill Paul 
21233f74909aSGleb Smirnoff 	/* Load the address of the status block. */
2124f41ac2beSBill Paul 	ctx.sc = sc;
2125f41ac2beSBill Paul 	ctx.bge_maxsegs = 1;
2126f41ac2beSBill Paul 
2127f41ac2beSBill Paul 	error = bus_dmamap_load(sc->bge_cdata.bge_status_tag,
2128f41ac2beSBill Paul 	    sc->bge_cdata.bge_status_map, sc->bge_ldata.bge_status_block,
2129f41ac2beSBill Paul 	    BGE_STATUS_BLK_SZ, bge_dma_map_addr, &ctx, BUS_DMA_NOWAIT);
2130f41ac2beSBill Paul 
2131f41ac2beSBill Paul 	if (error)
2132f41ac2beSBill Paul 		return (ENOMEM);
2133f41ac2beSBill Paul 
2134f41ac2beSBill Paul 	sc->bge_ldata.bge_status_block_paddr = ctx.bge_busaddr;
2135f41ac2beSBill Paul 
21363f74909aSGleb Smirnoff 	/* Create tag for statistics block. */
2137f41ac2beSBill Paul 	error = bus_dma_tag_create(sc->bge_cdata.bge_parent_tag,
2138f41ac2beSBill Paul 	    PAGE_SIZE, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL,
2139f41ac2beSBill Paul 	    NULL, BGE_STATS_SZ, 1, BGE_STATS_SZ, 0, NULL, NULL,
2140f41ac2beSBill Paul 	    &sc->bge_cdata.bge_stats_tag);
2141f41ac2beSBill Paul 
2142f41ac2beSBill Paul 	if (error) {
2143fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "could not allocate dma tag\n");
2144f41ac2beSBill Paul 		return (ENOMEM);
2145f41ac2beSBill Paul 	}
2146f41ac2beSBill Paul 
21473f74909aSGleb Smirnoff 	/* Allocate DMA'able memory for statistics block. */
2148f41ac2beSBill Paul 	error = bus_dmamem_alloc(sc->bge_cdata.bge_stats_tag,
2149f41ac2beSBill Paul 	    (void **)&sc->bge_ldata.bge_stats, BUS_DMA_NOWAIT,
2150f41ac2beSBill Paul 	    &sc->bge_cdata.bge_stats_map);
2151f41ac2beSBill Paul 	if (error)
2152f41ac2beSBill Paul 		return (ENOMEM);
2153f41ac2beSBill Paul 
2154f41ac2beSBill Paul 	bzero((char *)sc->bge_ldata.bge_stats, BGE_STATS_SZ);
2155f41ac2beSBill Paul 
21563f74909aSGleb Smirnoff 	/* Load the address of the statstics block. */
2157f41ac2beSBill Paul 	ctx.sc = sc;
2158f41ac2beSBill Paul 	ctx.bge_maxsegs = 1;
2159f41ac2beSBill Paul 
2160f41ac2beSBill Paul 	error = bus_dmamap_load(sc->bge_cdata.bge_stats_tag,
2161f41ac2beSBill Paul 	    sc->bge_cdata.bge_stats_map, sc->bge_ldata.bge_stats,
2162f41ac2beSBill Paul 	    BGE_STATS_SZ, bge_dma_map_addr, &ctx, BUS_DMA_NOWAIT);
2163f41ac2beSBill Paul 
2164f41ac2beSBill Paul 	if (error)
2165f41ac2beSBill Paul 		return (ENOMEM);
2166f41ac2beSBill Paul 
2167f41ac2beSBill Paul 	sc->bge_ldata.bge_stats_paddr = ctx.bge_busaddr;
2168f41ac2beSBill Paul 
2169f41ac2beSBill Paul 	return (0);
2170f41ac2beSBill Paul }
2171f41ac2beSBill Paul 
21720a55a034SJung-uk Kim #if __FreeBSD_version > 602105
2173bf6ef57aSJohn Polstra /*
2174bf6ef57aSJohn Polstra  * Return true if this device has more than one port.
2175bf6ef57aSJohn Polstra  */
2176bf6ef57aSJohn Polstra static int
2177bf6ef57aSJohn Polstra bge_has_multiple_ports(struct bge_softc *sc)
2178bf6ef57aSJohn Polstra {
2179bf6ef57aSJohn Polstra 	device_t dev = sc->bge_dev;
2180bf6ef57aSJohn Polstra 	u_int b, s, f, fscan;
2181bf6ef57aSJohn Polstra 
2182bf6ef57aSJohn Polstra 	b = pci_get_bus(dev);
2183bf6ef57aSJohn Polstra 	s = pci_get_slot(dev);
2184bf6ef57aSJohn Polstra 	f = pci_get_function(dev);
2185bf6ef57aSJohn Polstra 	for (fscan = 0; fscan <= PCI_FUNCMAX; fscan++)
2186bf6ef57aSJohn Polstra 		if (fscan != f && pci_find_bsf(b, s, fscan) != NULL)
2187bf6ef57aSJohn Polstra 			return (1);
2188bf6ef57aSJohn Polstra 	return (0);
2189bf6ef57aSJohn Polstra }
2190bf6ef57aSJohn Polstra 
2191bf6ef57aSJohn Polstra /*
2192bf6ef57aSJohn Polstra  * Return true if MSI can be used with this device.
2193bf6ef57aSJohn Polstra  */
2194bf6ef57aSJohn Polstra static int
2195bf6ef57aSJohn Polstra bge_can_use_msi(struct bge_softc *sc)
2196bf6ef57aSJohn Polstra {
2197bf6ef57aSJohn Polstra 	int can_use_msi = 0;
2198bf6ef57aSJohn Polstra 
2199bf6ef57aSJohn Polstra 	switch (sc->bge_asicrev) {
2200bf6ef57aSJohn Polstra 	case BGE_ASICREV_BCM5714:
2201bf6ef57aSJohn Polstra 		/*
2202bf6ef57aSJohn Polstra 		 * Apparently, MSI doesn't work when this chip is configured
2203bf6ef57aSJohn Polstra 		 * in single-port mode.
2204bf6ef57aSJohn Polstra 		 */
2205bf6ef57aSJohn Polstra 		if (bge_has_multiple_ports(sc))
2206bf6ef57aSJohn Polstra 			can_use_msi = 1;
2207bf6ef57aSJohn Polstra 		break;
2208bf6ef57aSJohn Polstra 	case BGE_ASICREV_BCM5750:
2209bf6ef57aSJohn Polstra 		if (sc->bge_chiprev != BGE_CHIPREV_5750_AX &&
2210bf6ef57aSJohn Polstra 		    sc->bge_chiprev != BGE_CHIPREV_5750_BX)
2211bf6ef57aSJohn Polstra 			can_use_msi = 1;
2212bf6ef57aSJohn Polstra 		break;
2213bf6ef57aSJohn Polstra 	case BGE_ASICREV_BCM5752:
2214bf6ef57aSJohn Polstra 	case BGE_ASICREV_BCM5780:
2215bf6ef57aSJohn Polstra 		can_use_msi = 1;
2216bf6ef57aSJohn Polstra 		break;
2217bf6ef57aSJohn Polstra 	}
2218bf6ef57aSJohn Polstra 	return (can_use_msi);
2219bf6ef57aSJohn Polstra }
22204e35d186SJung-uk Kim #endif
2221bf6ef57aSJohn Polstra 
222295d67482SBill Paul static int
22233f74909aSGleb Smirnoff bge_attach(device_t dev)
222495d67482SBill Paul {
222595d67482SBill Paul 	struct ifnet *ifp;
222695d67482SBill Paul 	struct bge_softc *sc;
22273f74909aSGleb Smirnoff 	uint32_t hwcfg = 0;
22283f74909aSGleb Smirnoff 	uint32_t mac_tmp = 0;
222908013fd3SMarius Strobl 	u_char eaddr[ETHER_ADDR_LEN];
223008013fd3SMarius Strobl 	int error, reg, rid, trys;
223195d67482SBill Paul 
223295d67482SBill Paul 	sc = device_get_softc(dev);
223395d67482SBill Paul 	sc->bge_dev = dev;
223495d67482SBill Paul 
223595d67482SBill Paul 	/*
223695d67482SBill Paul 	 * Map control/status registers.
223795d67482SBill Paul 	 */
223895d67482SBill Paul 	pci_enable_busmaster(dev);
223995d67482SBill Paul 
224095d67482SBill Paul 	rid = BGE_PCI_BAR0;
22415f96beb9SNate Lawson 	sc->bge_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
22425f96beb9SNate Lawson 	    RF_ACTIVE | PCI_RF_DENSE);
224395d67482SBill Paul 
224495d67482SBill Paul 	if (sc->bge_res == NULL) {
2245fe806fdaSPyun YongHyeon 		device_printf (sc->bge_dev, "couldn't map memory\n");
224695d67482SBill Paul 		error = ENXIO;
224795d67482SBill Paul 		goto fail;
224895d67482SBill Paul 	}
224995d67482SBill Paul 
225095d67482SBill Paul 	sc->bge_btag = rman_get_bustag(sc->bge_res);
225195d67482SBill Paul 	sc->bge_bhandle = rman_get_bushandle(sc->bge_res);
225295d67482SBill Paul 
2253e53d81eeSPaul Saab 	/* Save ASIC rev. */
2254e53d81eeSPaul Saab 
2255e53d81eeSPaul Saab 	sc->bge_chipid =
2256e53d81eeSPaul Saab 	    pci_read_config(dev, BGE_PCI_MISC_CTL, 4) &
2257e53d81eeSPaul Saab 	    BGE_PCIMISCCTL_ASICREV;
2258e53d81eeSPaul Saab 	sc->bge_asicrev = BGE_ASICREV(sc->bge_chipid);
2259e53d81eeSPaul Saab 	sc->bge_chiprev = BGE_CHIPREV(sc->bge_chipid);
2260e53d81eeSPaul Saab 
226108013fd3SMarius Strobl 	if (bge_has_eeprom(sc))
226208013fd3SMarius Strobl 		sc->bge_flags |= BGE_FLAG_EEPROM;
226308013fd3SMarius Strobl 
22640dae9719SJung-uk Kim 	/* Save chipset family. */
22650dae9719SJung-uk Kim 	switch (sc->bge_asicrev) {
22660dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5700:
22670dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5701:
22680dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5703:
22690dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5704:
22707ee00338SJung-uk Kim 		sc->bge_flags |= BGE_FLAG_5700_FAMILY | BGE_FLAG_JUMBO;
22710dae9719SJung-uk Kim 		break;
22720dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5714_A0:
22730dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5780:
22740dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5714:
22757ee00338SJung-uk Kim 		sc->bge_flags |= BGE_FLAG_5714_FAMILY /* | BGE_FLAG_JUMBO */;
22765ee49a3aSJung-uk Kim 		/* FALLTHRU */
22770dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5750:
22780dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5752:
22790dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5755:
22800dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5787:
22810dae9719SJung-uk Kim 		sc->bge_flags |= BGE_FLAG_575X_PLUS;
22825ee49a3aSJung-uk Kim 		/* FALLTHRU */
22830dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5705:
22840dae9719SJung-uk Kim 		sc->bge_flags |= BGE_FLAG_5705_PLUS;
22850dae9719SJung-uk Kim 		break;
22860dae9719SJung-uk Kim 	}
22870dae9719SJung-uk Kim 
22885ee49a3aSJung-uk Kim 	/* Set various bug flags. */
22891ec4c3a8SJung-uk Kim 	if (sc->bge_chipid == BGE_CHIPID_BCM5701_A0 ||
22901ec4c3a8SJung-uk Kim 	    sc->bge_chipid == BGE_CHIPID_BCM5701_B0)
22911ec4c3a8SJung-uk Kim 		sc->bge_flags |= BGE_FLAG_CRC_BUG;
22925ee49a3aSJung-uk Kim 	if (sc->bge_chiprev == BGE_CHIPREV_5703_AX ||
22935ee49a3aSJung-uk Kim 	    sc->bge_chiprev == BGE_CHIPREV_5704_AX)
22945ee49a3aSJung-uk Kim 		sc->bge_flags |= BGE_FLAG_ADC_BUG;
22955ee49a3aSJung-uk Kim 	if (sc->bge_chipid == BGE_CHIPID_BCM5704_A0)
22965ee49a3aSJung-uk Kim 		sc->bge_flags |= BGE_FLAG_5704_A0_BUG;
229708bf8bb7SJung-uk Kim 	if (BGE_IS_5705_PLUS(sc) &&
229808bf8bb7SJung-uk Kim 	    !(sc->bge_flags & BGE_FLAG_ADJUST_TRIM)) {
22995ee49a3aSJung-uk Kim 		if (sc->bge_asicrev == BGE_ASICREV_BCM5755 ||
23005ee49a3aSJung-uk Kim 		    sc->bge_asicrev == BGE_ASICREV_BCM5787)
23015ee49a3aSJung-uk Kim 			sc->bge_flags |= BGE_FLAG_JITTER_BUG;
23025ee49a3aSJung-uk Kim 		else
23035ee49a3aSJung-uk Kim 			sc->bge_flags |= BGE_FLAG_BER_BUG;
23045ee49a3aSJung-uk Kim 	}
23055ee49a3aSJung-uk Kim 
2306e53d81eeSPaul Saab   	/*
23076f8718a3SScott Long 	 * Check if this is a PCI-X or PCI Express device.
2308e53d81eeSPaul Saab   	 */
23096f8718a3SScott Long #if __FreeBSD_version > 700010
23106f8718a3SScott Long 	if (pci_find_extcap(dev, PCIY_EXPRESS, &reg) == 0) {
23114c0da0ffSGleb Smirnoff 		/*
23126f8718a3SScott Long 		 * Found a PCI Express capabilities register, this
23136f8718a3SScott Long 		 * must be a PCI Express device.
23146f8718a3SScott Long 		 */
23156f8718a3SScott Long 		if (reg != 0)
23166f8718a3SScott Long 			sc->bge_flags |= BGE_FLAG_PCIE;
23176f8718a3SScott Long 	} else if (pci_find_extcap(dev, PCIY_PCIX, &reg) == 0) {
23186f8718a3SScott Long 		if (reg != 0)
23196f8718a3SScott Long 			sc->bge_flags |= BGE_FLAG_PCIX;
23206f8718a3SScott Long 	}
23216f8718a3SScott Long 
23226f8718a3SScott Long #else
23235345bad0SScott Long 	if (BGE_IS_5705_PLUS(sc)) {
23246f8718a3SScott Long 		reg = pci_read_config(dev, BGE_PCIE_CAPID_REG, 4);
23250c8aa4eaSJung-uk Kim 		if ((reg & 0xFF) == BGE_PCIE_CAPID)
23266f8718a3SScott Long 			sc->bge_flags |= BGE_FLAG_PCIE;
23276f8718a3SScott Long 	} else {
23286f8718a3SScott Long 		/*
23296f8718a3SScott Long 		 * Check if the device is in PCI-X Mode.
23306f8718a3SScott Long 		 * (This bit is not valid on PCI Express controllers.)
23314c0da0ffSGleb Smirnoff 		 */
23324c0da0ffSGleb Smirnoff 		if ((pci_read_config(sc->bge_dev, BGE_PCI_PCISTATE, 4) &
23334c0da0ffSGleb Smirnoff 		    BGE_PCISTATE_PCI_BUSMODE) == 0)
2334652ae483SGleb Smirnoff 			sc->bge_flags |= BGE_FLAG_PCIX;
23356f8718a3SScott Long 	}
23366f8718a3SScott Long #endif
23374c0da0ffSGleb Smirnoff 
23380a55a034SJung-uk Kim #if __FreeBSD_version > 602105
23394e35d186SJung-uk Kim 	{
23404e35d186SJung-uk Kim 		int msicount;
23414e35d186SJung-uk Kim 
2342bf6ef57aSJohn Polstra 		/*
2343bf6ef57aSJohn Polstra 		 * Allocate the interrupt, using MSI if possible.  These devices
2344bf6ef57aSJohn Polstra 		 * support 8 MSI messages, but only the first one is used in
2345bf6ef57aSJohn Polstra 		 * normal operation.
2346bf6ef57aSJohn Polstra 		 */
2347bf6ef57aSJohn Polstra 		if (bge_can_use_msi(sc)) {
2348bf6ef57aSJohn Polstra 			msicount = pci_msi_count(dev);
2349bf6ef57aSJohn Polstra 			if (msicount > 1)
2350bf6ef57aSJohn Polstra 				msicount = 1;
2351bf6ef57aSJohn Polstra 		} else
2352bf6ef57aSJohn Polstra 			msicount = 0;
2353bf6ef57aSJohn Polstra 		if (msicount == 1 && pci_alloc_msi(dev, &msicount) == 0) {
2354bf6ef57aSJohn Polstra 			rid = 1;
2355bf6ef57aSJohn Polstra 			sc->bge_flags |= BGE_FLAG_MSI;
2356bf6ef57aSJohn Polstra 		} else
2357bf6ef57aSJohn Polstra 			rid = 0;
23584e35d186SJung-uk Kim 	}
23594e35d186SJung-uk Kim #else
23604e35d186SJung-uk Kim 	rid = 0;
23614e35d186SJung-uk Kim #endif
2362bf6ef57aSJohn Polstra 
2363bf6ef57aSJohn Polstra 	sc->bge_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
2364bf6ef57aSJohn Polstra 	    RF_SHAREABLE | RF_ACTIVE);
2365bf6ef57aSJohn Polstra 
2366bf6ef57aSJohn Polstra 	if (sc->bge_irq == NULL) {
2367bf6ef57aSJohn Polstra 		device_printf(sc->bge_dev, "couldn't map interrupt\n");
2368bf6ef57aSJohn Polstra 		error = ENXIO;
2369bf6ef57aSJohn Polstra 		goto fail;
2370bf6ef57aSJohn Polstra 	}
2371bf6ef57aSJohn Polstra 
2372bf6ef57aSJohn Polstra 	BGE_LOCK_INIT(sc, device_get_nameunit(dev));
2373bf6ef57aSJohn Polstra 
237495d67482SBill Paul 	/* Try to reset the chip. */
23758cb1383cSDoug Ambrisko 	if (bge_reset(sc)) {
23768cb1383cSDoug Ambrisko 		device_printf(sc->bge_dev, "chip reset failed\n");
23778cb1383cSDoug Ambrisko 		error = ENXIO;
23788cb1383cSDoug Ambrisko 		goto fail;
23798cb1383cSDoug Ambrisko 	}
23808cb1383cSDoug Ambrisko 
23818cb1383cSDoug Ambrisko 	sc->bge_asf_mode = 0;
2382f1a7e6d5SScott Long 	if (bge_allow_asf && (bge_readmem_ind(sc, BGE_SOFTWARE_GENCOMM_SIG)
2383f1a7e6d5SScott Long 	    == BGE_MAGIC_NUMBER)) {
23848cb1383cSDoug Ambrisko 		if (bge_readmem_ind(sc, BGE_SOFTWARE_GENCOMM_NICCFG)
23858cb1383cSDoug Ambrisko 		    & BGE_HWCFG_ASF) {
23868cb1383cSDoug Ambrisko 			sc->bge_asf_mode |= ASF_ENABLE;
23878cb1383cSDoug Ambrisko 			sc->bge_asf_mode |= ASF_STACKUP;
23888cb1383cSDoug Ambrisko 			if (sc->bge_asicrev == BGE_ASICREV_BCM5750) {
23898cb1383cSDoug Ambrisko 				sc->bge_asf_mode |= ASF_NEW_HANDSHAKE;
23908cb1383cSDoug Ambrisko 			}
23918cb1383cSDoug Ambrisko 		}
23928cb1383cSDoug Ambrisko 	}
23938cb1383cSDoug Ambrisko 
23948cb1383cSDoug Ambrisko 	/* Try to reset the chip again the nice way. */
23958cb1383cSDoug Ambrisko 	bge_stop_fw(sc);
23968cb1383cSDoug Ambrisko 	bge_sig_pre_reset(sc, BGE_RESET_STOP);
23978cb1383cSDoug Ambrisko 	if (bge_reset(sc)) {
23988cb1383cSDoug Ambrisko 		device_printf(sc->bge_dev, "chip reset failed\n");
23998cb1383cSDoug Ambrisko 		error = ENXIO;
24008cb1383cSDoug Ambrisko 		goto fail;
24018cb1383cSDoug Ambrisko 	}
24028cb1383cSDoug Ambrisko 
24038cb1383cSDoug Ambrisko 	bge_sig_legacy(sc, BGE_RESET_STOP);
24048cb1383cSDoug Ambrisko 	bge_sig_post_reset(sc, BGE_RESET_STOP);
240595d67482SBill Paul 
240695d67482SBill Paul 	if (bge_chipinit(sc)) {
2407fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "chip initialization failed\n");
240895d67482SBill Paul 		error = ENXIO;
240995d67482SBill Paul 		goto fail;
241095d67482SBill Paul 	}
241195d67482SBill Paul 
241208013fd3SMarius Strobl #ifdef __sparc64__
241308013fd3SMarius Strobl 	if ((sc->bge_flags & BGE_FLAG_EEPROM) == 0)
241408013fd3SMarius Strobl 		OF_getetheraddr(dev, eaddr);
241508013fd3SMarius Strobl 	else
241608013fd3SMarius Strobl #endif
241708013fd3SMarius Strobl 	{
24180c8aa4eaSJung-uk Kim 		mac_tmp = bge_readmem_ind(sc, 0x0C14);
24190c8aa4eaSJung-uk Kim 		if ((mac_tmp >> 16) == 0x484B) {
2420fc74a9f9SBrooks Davis 			eaddr[0] = (u_char)(mac_tmp >> 8);
2421fc74a9f9SBrooks Davis 			eaddr[1] = (u_char)mac_tmp;
24220c8aa4eaSJung-uk Kim 			mac_tmp = bge_readmem_ind(sc, 0x0C18);
2423fc74a9f9SBrooks Davis 			eaddr[2] = (u_char)(mac_tmp >> 24);
2424fc74a9f9SBrooks Davis 			eaddr[3] = (u_char)(mac_tmp >> 16);
2425fc74a9f9SBrooks Davis 			eaddr[4] = (u_char)(mac_tmp >> 8);
2426fc74a9f9SBrooks Davis 			eaddr[5] = (u_char)mac_tmp;
2427fc74a9f9SBrooks Davis 		} else if (bge_read_eeprom(sc, eaddr,
242895d67482SBill Paul 		    BGE_EE_MAC_OFFSET + 2, ETHER_ADDR_LEN)) {
242908013fd3SMarius Strobl 			device_printf(sc->bge_dev,
243008013fd3SMarius Strobl 			    "failed to read station address\n");
243195d67482SBill Paul 			error = ENXIO;
243295d67482SBill Paul 			goto fail;
243395d67482SBill Paul 		}
243408013fd3SMarius Strobl 	}
243595d67482SBill Paul 
2436f41ac2beSBill Paul 	/* 5705 limits RX return ring to 512 entries. */
24377ee00338SJung-uk Kim 	if (BGE_IS_5705_PLUS(sc))
2438f41ac2beSBill Paul 		sc->bge_return_ring_cnt = BGE_RETURN_RING_CNT_5705;
2439f41ac2beSBill Paul 	else
2440f41ac2beSBill Paul 		sc->bge_return_ring_cnt = BGE_RETURN_RING_CNT;
2441f41ac2beSBill Paul 
2442f41ac2beSBill Paul 	if (bge_dma_alloc(dev)) {
2443fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev,
2444fe806fdaSPyun YongHyeon 		    "failed to allocate DMA resources\n");
2445f41ac2beSBill Paul 		error = ENXIO;
2446f41ac2beSBill Paul 		goto fail;
2447f41ac2beSBill Paul 	}
2448f41ac2beSBill Paul 
244995d67482SBill Paul 	/* Set default tuneable values. */
245095d67482SBill Paul 	sc->bge_stat_ticks = BGE_TICKS_PER_SEC;
245195d67482SBill Paul 	sc->bge_rx_coal_ticks = 150;
245295d67482SBill Paul 	sc->bge_tx_coal_ticks = 150;
24536f8718a3SScott Long 	sc->bge_rx_max_coal_bds = 10;
24546f8718a3SScott Long 	sc->bge_tx_max_coal_bds = 10;
245595d67482SBill Paul 
245695d67482SBill Paul 	/* Set up ifnet structure */
2457fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp = if_alloc(IFT_ETHER);
2458fc74a9f9SBrooks Davis 	if (ifp == NULL) {
2459fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "failed to if_alloc()\n");
2460fc74a9f9SBrooks Davis 		error = ENXIO;
2461fc74a9f9SBrooks Davis 		goto fail;
2462fc74a9f9SBrooks Davis 	}
246395d67482SBill Paul 	ifp->if_softc = sc;
24649bf40edeSBrooks Davis 	if_initname(ifp, device_get_name(dev), device_get_unit(dev));
246595d67482SBill Paul 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
246695d67482SBill Paul 	ifp->if_ioctl = bge_ioctl;
246795d67482SBill Paul 	ifp->if_start = bge_start;
246895d67482SBill Paul 	ifp->if_init = bge_init;
246995d67482SBill Paul 	ifp->if_mtu = ETHERMTU;
24704d665c4dSDag-Erling Smørgrav 	ifp->if_snd.ifq_drv_maxlen = BGE_TX_RING_CNT - 1;
24714d665c4dSDag-Erling Smørgrav 	IFQ_SET_MAXLEN(&ifp->if_snd, ifp->if_snd.ifq_drv_maxlen);
24724d665c4dSDag-Erling Smørgrav 	IFQ_SET_READY(&ifp->if_snd);
247395d67482SBill Paul 	ifp->if_hwassist = BGE_CSUM_FEATURES;
2474d375e524SGleb Smirnoff 	ifp->if_capabilities = IFCAP_HWCSUM | IFCAP_VLAN_HWTAGGING |
24754e35d186SJung-uk Kim 	    IFCAP_VLAN_MTU;
24764e35d186SJung-uk Kim #ifdef IFCAP_VLAN_HWCSUM
24774e35d186SJung-uk Kim 	ifp->if_capabilities |= IFCAP_VLAN_HWCSUM;
24784e35d186SJung-uk Kim #endif
247995d67482SBill Paul 	ifp->if_capenable = ifp->if_capabilities;
248075719184SGleb Smirnoff #ifdef DEVICE_POLLING
248175719184SGleb Smirnoff 	ifp->if_capabilities |= IFCAP_POLLING;
248275719184SGleb Smirnoff #endif
248395d67482SBill Paul 
2484a1d52896SBill Paul 	/*
2485d375e524SGleb Smirnoff 	 * 5700 B0 chips do not support checksumming correctly due
2486d375e524SGleb Smirnoff 	 * to hardware bugs.
2487d375e524SGleb Smirnoff 	 */
2488d375e524SGleb Smirnoff 	if (sc->bge_chipid == BGE_CHIPID_BCM5700_B0) {
2489d375e524SGleb Smirnoff 		ifp->if_capabilities &= ~IFCAP_HWCSUM;
2490d375e524SGleb Smirnoff 		ifp->if_capenable &= IFCAP_HWCSUM;
2491d375e524SGleb Smirnoff 		ifp->if_hwassist = 0;
2492d375e524SGleb Smirnoff 	}
2493d375e524SGleb Smirnoff 
2494d375e524SGleb Smirnoff 	/*
2495a1d52896SBill Paul 	 * Figure out what sort of media we have by checking the
249641abcc1bSPaul Saab 	 * hardware config word in the first 32k of NIC internal memory,
249741abcc1bSPaul Saab 	 * or fall back to examining the EEPROM if necessary.
249841abcc1bSPaul Saab 	 * Note: on some BCM5700 cards, this value appears to be unset.
249941abcc1bSPaul Saab 	 * If that's the case, we have to rely on identifying the NIC
250041abcc1bSPaul Saab 	 * by its PCI subsystem ID, as we do below for the SysKonnect
250141abcc1bSPaul Saab 	 * SK-9D41.
2502a1d52896SBill Paul 	 */
250341abcc1bSPaul Saab 	if (bge_readmem_ind(sc, BGE_SOFTWARE_GENCOMM_SIG) == BGE_MAGIC_NUMBER)
250441abcc1bSPaul Saab 		hwcfg = bge_readmem_ind(sc, BGE_SOFTWARE_GENCOMM_NICCFG);
250508013fd3SMarius Strobl 	else if (sc->bge_flags & BGE_FLAG_EEPROM) {
2506f6789fbaSPyun YongHyeon 		if (bge_read_eeprom(sc, (caddr_t)&hwcfg, BGE_EE_HWCFG_OFFSET,
2507f6789fbaSPyun YongHyeon 		    sizeof(hwcfg))) {
2508fe806fdaSPyun YongHyeon 			device_printf(sc->bge_dev, "failed to read EEPROM\n");
2509f6789fbaSPyun YongHyeon 			error = ENXIO;
2510f6789fbaSPyun YongHyeon 			goto fail;
2511f6789fbaSPyun YongHyeon 		}
251241abcc1bSPaul Saab 		hwcfg = ntohl(hwcfg);
251341abcc1bSPaul Saab 	}
251441abcc1bSPaul Saab 
251541abcc1bSPaul Saab 	if ((hwcfg & BGE_HWCFG_MEDIA) == BGE_MEDIA_FIBER)
2516652ae483SGleb Smirnoff 		sc->bge_flags |= BGE_FLAG_TBI;
2517a1d52896SBill Paul 
251895d67482SBill Paul 	/* The SysKonnect SK-9D41 is a 1000baseSX card. */
25190c8aa4eaSJung-uk Kim 	if ((pci_read_config(dev, BGE_PCI_SUBSYS, 4) >> 16) == SK_SUBSYSID_9D41)
2520652ae483SGleb Smirnoff 		sc->bge_flags |= BGE_FLAG_TBI;
252195d67482SBill Paul 
2522652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_TBI) {
25230c8aa4eaSJung-uk Kim 		ifmedia_init(&sc->bge_ifmedia, IFM_IMASK, bge_ifmedia_upd,
25240c8aa4eaSJung-uk Kim 		    bge_ifmedia_sts);
25250c8aa4eaSJung-uk Kim 		ifmedia_add(&sc->bge_ifmedia, IFM_ETHER | IFM_1000_SX, 0, NULL);
25266098821cSJung-uk Kim 		ifmedia_add(&sc->bge_ifmedia, IFM_ETHER | IFM_1000_SX | IFM_FDX,
25276098821cSJung-uk Kim 		    0, NULL);
252895d67482SBill Paul 		ifmedia_add(&sc->bge_ifmedia, IFM_ETHER | IFM_AUTO, 0, NULL);
252995d67482SBill Paul 		ifmedia_set(&sc->bge_ifmedia, IFM_ETHER | IFM_AUTO);
2530da3003f0SBill Paul 		sc->bge_ifmedia.ifm_media = sc->bge_ifmedia.ifm_cur->ifm_media;
253195d67482SBill Paul 	} else {
253295d67482SBill Paul 		/*
25338cb1383cSDoug Ambrisko 		 * Do transceiver setup and tell the firmware the
25348cb1383cSDoug Ambrisko 		 * driver is down so we can try to get access the
25358cb1383cSDoug Ambrisko 		 * probe if ASF is running.  Retry a couple of times
25368cb1383cSDoug Ambrisko 		 * if we get a conflict with the ASF firmware accessing
25378cb1383cSDoug Ambrisko 		 * the PHY.
253895d67482SBill Paul 		 */
25398cb1383cSDoug Ambrisko 		BGE_CLRBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
25408cb1383cSDoug Ambrisko again:
25418cb1383cSDoug Ambrisko 		bge_asf_driver_up(sc);
25428cb1383cSDoug Ambrisko 
25438cb1383cSDoug Ambrisko 		trys = 0;
254495d67482SBill Paul 		if (mii_phy_probe(dev, &sc->bge_miibus,
254595d67482SBill Paul 		    bge_ifmedia_upd, bge_ifmedia_sts)) {
25468cb1383cSDoug Ambrisko 			if (trys++ < 4) {
25478cb1383cSDoug Ambrisko 				device_printf(sc->bge_dev, "Try again\n");
25484e35d186SJung-uk Kim 				bge_miibus_writereg(sc->bge_dev, 1, MII_BMCR,
25494e35d186SJung-uk Kim 				    BMCR_RESET);
25508cb1383cSDoug Ambrisko 				goto again;
25518cb1383cSDoug Ambrisko 			}
25528cb1383cSDoug Ambrisko 
2553fe806fdaSPyun YongHyeon 			device_printf(sc->bge_dev, "MII without any PHY!\n");
255495d67482SBill Paul 			error = ENXIO;
255595d67482SBill Paul 			goto fail;
255695d67482SBill Paul 		}
25578cb1383cSDoug Ambrisko 
25588cb1383cSDoug Ambrisko 		/*
25598cb1383cSDoug Ambrisko 		 * Now tell the firmware we are going up after probing the PHY
25608cb1383cSDoug Ambrisko 		 */
25618cb1383cSDoug Ambrisko 		if (sc->bge_asf_mode & ASF_STACKUP)
25628cb1383cSDoug Ambrisko 			BGE_SETBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
256395d67482SBill Paul 	}
256495d67482SBill Paul 
256595d67482SBill Paul 	/*
2566e255b776SJohn Polstra 	 * When using the BCM5701 in PCI-X mode, data corruption has
2567e255b776SJohn Polstra 	 * been observed in the first few bytes of some received packets.
2568e255b776SJohn Polstra 	 * Aligning the packet buffer in memory eliminates the corruption.
2569e255b776SJohn Polstra 	 * Unfortunately, this misaligns the packet payloads.  On platforms
2570e255b776SJohn Polstra 	 * which do not support unaligned accesses, we will realign the
2571e255b776SJohn Polstra 	 * payloads by copying the received packets.
2572e255b776SJohn Polstra 	 */
2573652ae483SGleb Smirnoff 	if (sc->bge_asicrev == BGE_ASICREV_BCM5701 &&
2574652ae483SGleb Smirnoff 	    sc->bge_flags & BGE_FLAG_PCIX)
2575652ae483SGleb Smirnoff                 sc->bge_flags |= BGE_FLAG_RX_ALIGNBUG;
2576e255b776SJohn Polstra 
2577e255b776SJohn Polstra 	/*
257895d67482SBill Paul 	 * Call MI attach routine.
257995d67482SBill Paul 	 */
2580fc74a9f9SBrooks Davis 	ether_ifattach(ifp, eaddr);
2581b74e67fbSGleb Smirnoff 	callout_init_mtx(&sc->bge_stat_ch, &sc->bge_mtx, 0);
25820f9bd73bSSam Leffler 
25830f9bd73bSSam Leffler 	/*
25840f9bd73bSSam Leffler 	 * Hookup IRQ last.
25850f9bd73bSSam Leffler 	 */
25864e35d186SJung-uk Kim #if __FreeBSD_version > 700030
25870f9bd73bSSam Leffler 	error = bus_setup_intr(dev, sc->bge_irq, INTR_TYPE_NET | INTR_MPSAFE,
2588ef544f63SPaolo Pisati 	   NULL, bge_intr, sc, &sc->bge_intrhand);
25894e35d186SJung-uk Kim #else
25904e35d186SJung-uk Kim 	error = bus_setup_intr(dev, sc->bge_irq, INTR_TYPE_NET | INTR_MPSAFE,
25914e35d186SJung-uk Kim 	   bge_intr, sc, &sc->bge_intrhand);
25924e35d186SJung-uk Kim #endif
25930f9bd73bSSam Leffler 
25940f9bd73bSSam Leffler 	if (error) {
2595fc74a9f9SBrooks Davis 		bge_detach(dev);
2596fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "couldn't set up irq\n");
25970f9bd73bSSam Leffler 	}
259895d67482SBill Paul 
25996f8718a3SScott Long 	bge_add_sysctls(sc);
26006f8718a3SScott Long 
260108013fd3SMarius Strobl 	return (0);
260208013fd3SMarius Strobl 
260395d67482SBill Paul fail:
260408013fd3SMarius Strobl 	bge_release_resources(sc);
260508013fd3SMarius Strobl 
260695d67482SBill Paul 	return (error);
260795d67482SBill Paul }
260895d67482SBill Paul 
260995d67482SBill Paul static int
26103f74909aSGleb Smirnoff bge_detach(device_t dev)
261195d67482SBill Paul {
261295d67482SBill Paul 	struct bge_softc *sc;
261395d67482SBill Paul 	struct ifnet *ifp;
261495d67482SBill Paul 
261595d67482SBill Paul 	sc = device_get_softc(dev);
2616fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp;
261795d67482SBill Paul 
261875719184SGleb Smirnoff #ifdef DEVICE_POLLING
261975719184SGleb Smirnoff 	if (ifp->if_capenable & IFCAP_POLLING)
262075719184SGleb Smirnoff 		ether_poll_deregister(ifp);
262175719184SGleb Smirnoff #endif
262275719184SGleb Smirnoff 
26230f9bd73bSSam Leffler 	BGE_LOCK(sc);
262495d67482SBill Paul 	bge_stop(sc);
262595d67482SBill Paul 	bge_reset(sc);
26260f9bd73bSSam Leffler 	BGE_UNLOCK(sc);
26270f9bd73bSSam Leffler 
26285dda8085SOleg Bulyzhin 	callout_drain(&sc->bge_stat_ch);
26295dda8085SOleg Bulyzhin 
26300f9bd73bSSam Leffler 	ether_ifdetach(ifp);
263195d67482SBill Paul 
2632652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_TBI) {
263395d67482SBill Paul 		ifmedia_removeall(&sc->bge_ifmedia);
263495d67482SBill Paul 	} else {
263595d67482SBill Paul 		bus_generic_detach(dev);
263695d67482SBill Paul 		device_delete_child(dev, sc->bge_miibus);
263795d67482SBill Paul 	}
263895d67482SBill Paul 
263995d67482SBill Paul 	bge_release_resources(sc);
264095d67482SBill Paul 
264195d67482SBill Paul 	return (0);
264295d67482SBill Paul }
264395d67482SBill Paul 
264495d67482SBill Paul static void
26453f74909aSGleb Smirnoff bge_release_resources(struct bge_softc *sc)
264695d67482SBill Paul {
264795d67482SBill Paul 	device_t dev;
264895d67482SBill Paul 
264995d67482SBill Paul 	dev = sc->bge_dev;
265095d67482SBill Paul 
265195d67482SBill Paul 	if (sc->bge_intrhand != NULL)
265295d67482SBill Paul 		bus_teardown_intr(dev, sc->bge_irq, sc->bge_intrhand);
265395d67482SBill Paul 
265495d67482SBill Paul 	if (sc->bge_irq != NULL)
2655724bd939SJohn Polstra 		bus_release_resource(dev, SYS_RES_IRQ,
2656724bd939SJohn Polstra 		    sc->bge_flags & BGE_FLAG_MSI ? 1 : 0, sc->bge_irq);
2657724bd939SJohn Polstra 
26580a55a034SJung-uk Kim #if __FreeBSD_version > 602105
2659724bd939SJohn Polstra 	if (sc->bge_flags & BGE_FLAG_MSI)
2660724bd939SJohn Polstra 		pci_release_msi(dev);
26614e35d186SJung-uk Kim #endif
266295d67482SBill Paul 
266395d67482SBill Paul 	if (sc->bge_res != NULL)
266495d67482SBill Paul 		bus_release_resource(dev, SYS_RES_MEMORY,
266595d67482SBill Paul 		    BGE_PCI_BAR0, sc->bge_res);
266695d67482SBill Paul 
2667ad61f896SRuslan Ermilov 	if (sc->bge_ifp != NULL)
2668ad61f896SRuslan Ermilov 		if_free(sc->bge_ifp);
2669ad61f896SRuslan Ermilov 
2670f41ac2beSBill Paul 	bge_dma_free(sc);
267195d67482SBill Paul 
26720f9bd73bSSam Leffler 	if (mtx_initialized(&sc->bge_mtx))	/* XXX */
26730f9bd73bSSam Leffler 		BGE_LOCK_DESTROY(sc);
267495d67482SBill Paul }
267595d67482SBill Paul 
26768cb1383cSDoug Ambrisko static int
26773f74909aSGleb Smirnoff bge_reset(struct bge_softc *sc)
267895d67482SBill Paul {
267995d67482SBill Paul 	device_t dev;
26803f74909aSGleb Smirnoff 	uint32_t cachesize, command, pcistate, reset;
26816f8718a3SScott Long 	void (*write_op)(struct bge_softc *, int, int);
268295d67482SBill Paul 	int i, val = 0;
268395d67482SBill Paul 
268495d67482SBill Paul 	dev = sc->bge_dev;
268595d67482SBill Paul 
2686464223f7SJung-uk Kim 	if (BGE_IS_575X_PLUS(sc) && !BGE_IS_5714_FAMILY(sc)) {
26876f8718a3SScott Long 		if (sc->bge_flags & BGE_FLAG_PCIE)
26886f8718a3SScott Long 			write_op = bge_writemem_direct;
26896f8718a3SScott Long 		else
26906f8718a3SScott Long 			write_op = bge_writemem_ind;
26919ba784dbSScott Long 	} else
26926f8718a3SScott Long 		write_op = bge_writereg_ind;
26936f8718a3SScott Long 
269495d67482SBill Paul 	/* Save some important PCI state. */
269595d67482SBill Paul 	cachesize = pci_read_config(dev, BGE_PCI_CACHESZ, 4);
269695d67482SBill Paul 	command = pci_read_config(dev, BGE_PCI_CMD, 4);
269795d67482SBill Paul 	pcistate = pci_read_config(dev, BGE_PCI_PCISTATE, 4);
269895d67482SBill Paul 
269995d67482SBill Paul 	pci_write_config(dev, BGE_PCI_MISC_CTL,
270095d67482SBill Paul 	    BGE_PCIMISCCTL_INDIRECT_ACCESS | BGE_PCIMISCCTL_MASK_PCI_INTR |
2701e907febfSPyun YongHyeon 	    BGE_HIF_SWAP_OPTIONS | BGE_PCIMISCCTL_PCISTATE_RW, 4);
270295d67482SBill Paul 
27036f8718a3SScott Long 	/* Disable fastboot on controllers that support it. */
27046f8718a3SScott Long 	if (sc->bge_asicrev == BGE_ASICREV_BCM5752 ||
27056f8718a3SScott Long 	    sc->bge_asicrev == BGE_ASICREV_BCM5755 ||
27066f8718a3SScott Long 	    sc->bge_asicrev == BGE_ASICREV_BCM5787) {
27076f8718a3SScott Long 		if (bootverbose)
27089ba784dbSScott Long 			device_printf(sc->bge_dev, "Disabling fastboot\n");
27096f8718a3SScott Long 		CSR_WRITE_4(sc, BGE_FASTBOOT_PC, 0x0);
27106f8718a3SScott Long 	}
27116f8718a3SScott Long 
27126f8718a3SScott Long 	/*
27136f8718a3SScott Long 	 * Write the magic number to SRAM at offset 0xB50.
27146f8718a3SScott Long 	 * When firmware finishes its initialization it will
27156f8718a3SScott Long 	 * write ~BGE_MAGIC_NUMBER to the same location.
27166f8718a3SScott Long 	 */
27176f8718a3SScott Long 	bge_writemem_ind(sc, BGE_SOFTWARE_GENCOMM, BGE_MAGIC_NUMBER);
27186f8718a3SScott Long 
27190c8aa4eaSJung-uk Kim 	reset = BGE_MISCCFG_RESET_CORE_CLOCKS | BGE_32BITTIME_66MHZ;
2720e53d81eeSPaul Saab 
2721e53d81eeSPaul Saab 	/* XXX: Broadcom Linux driver. */
2722652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_PCIE) {
27230c8aa4eaSJung-uk Kim 		if (CSR_READ_4(sc, 0x7E2C) == 0x60)	/* PCIE 1.0 */
27240c8aa4eaSJung-uk Kim 			CSR_WRITE_4(sc, 0x7E2C, 0x20);
2725e53d81eeSPaul Saab 		if (sc->bge_chipid != BGE_CHIPID_BCM5750_A0) {
2726e53d81eeSPaul Saab 			/* Prevent PCIE link training during global reset */
27270c8aa4eaSJung-uk Kim 			CSR_WRITE_4(sc, BGE_MISC_CFG, 1 << 29);
27280c8aa4eaSJung-uk Kim 			reset |= 1 << 29;
2729e53d81eeSPaul Saab 		}
2730e53d81eeSPaul Saab 	}
2731e53d81eeSPaul Saab 
273221c9e407SDavid Christensen 	/*
27336f8718a3SScott Long 	 * Set GPHY Power Down Override to leave GPHY
27346f8718a3SScott Long 	 * powered up in D0 uninitialized.
27356f8718a3SScott Long 	 */
27365345bad0SScott Long 	if (BGE_IS_5705_PLUS(sc))
27376f8718a3SScott Long 		reset |= 0x04000000;
27386f8718a3SScott Long 
273995d67482SBill Paul 	/* Issue global reset */
27406f8718a3SScott Long 	write_op(sc, BGE_MISC_CFG, reset);
274195d67482SBill Paul 
274295d67482SBill Paul 	DELAY(1000);
274395d67482SBill Paul 
2744e53d81eeSPaul Saab 	/* XXX: Broadcom Linux driver. */
2745652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_PCIE) {
2746e53d81eeSPaul Saab 		if (sc->bge_chipid == BGE_CHIPID_BCM5750_A0) {
2747e53d81eeSPaul Saab 			uint32_t v;
2748e53d81eeSPaul Saab 
2749e53d81eeSPaul Saab 			DELAY(500000); /* wait for link training to complete */
27500c8aa4eaSJung-uk Kim 			v = pci_read_config(dev, 0xC4, 4);
27510c8aa4eaSJung-uk Kim 			pci_write_config(dev, 0xC4, v | (1 << 15), 4);
2752e53d81eeSPaul Saab 		}
27539ba784dbSScott Long 		/*
27549ba784dbSScott Long 		 * Set PCIE max payload size to 128 bytes and clear error
27559ba784dbSScott Long 		 * status.
27569ba784dbSScott Long 		 */
27570c8aa4eaSJung-uk Kim 		pci_write_config(dev, 0xD8, 0xF5000, 4);
2758e53d81eeSPaul Saab 	}
2759e53d81eeSPaul Saab 
27603f74909aSGleb Smirnoff 	/* Reset some of the PCI state that got zapped by reset. */
276195d67482SBill Paul 	pci_write_config(dev, BGE_PCI_MISC_CTL,
276295d67482SBill Paul 	    BGE_PCIMISCCTL_INDIRECT_ACCESS | BGE_PCIMISCCTL_MASK_PCI_INTR |
2763e907febfSPyun YongHyeon 	    BGE_HIF_SWAP_OPTIONS | BGE_PCIMISCCTL_PCISTATE_RW, 4);
276495d67482SBill Paul 	pci_write_config(dev, BGE_PCI_CACHESZ, cachesize, 4);
276595d67482SBill Paul 	pci_write_config(dev, BGE_PCI_CMD, command, 4);
27660c8aa4eaSJung-uk Kim 	write_op(sc, BGE_MISC_CFG, BGE_32BITTIME_66MHZ);
276795d67482SBill Paul 
2768bf6ef57aSJohn Polstra 	/* Re-enable MSI, if neccesary, and enable the memory arbiter. */
27694c0da0ffSGleb Smirnoff 	if (BGE_IS_5714_FAMILY(sc)) {
27704c0da0ffSGleb Smirnoff 		uint32_t val;
27714c0da0ffSGleb Smirnoff 
2772bf6ef57aSJohn Polstra 		/* This chip disables MSI on reset. */
2773bf6ef57aSJohn Polstra 		if (sc->bge_flags & BGE_FLAG_MSI) {
2774bf6ef57aSJohn Polstra 			val = pci_read_config(dev, BGE_PCI_MSI_CTL, 2);
2775bf6ef57aSJohn Polstra 			pci_write_config(dev, BGE_PCI_MSI_CTL,
2776bf6ef57aSJohn Polstra 			    val | PCIM_MSICTRL_MSI_ENABLE, 2);
2777bf6ef57aSJohn Polstra 			val = CSR_READ_4(sc, BGE_MSI_MODE);
2778bf6ef57aSJohn Polstra 			CSR_WRITE_4(sc, BGE_MSI_MODE,
2779bf6ef57aSJohn Polstra 			    val | BGE_MSIMODE_ENABLE);
2780bf6ef57aSJohn Polstra 		}
27814c0da0ffSGleb Smirnoff 		val = CSR_READ_4(sc, BGE_MARB_MODE);
27824c0da0ffSGleb Smirnoff 		CSR_WRITE_4(sc, BGE_MARB_MODE, BGE_MARBMODE_ENABLE | val);
27834c0da0ffSGleb Smirnoff 	} else
2784a7b0c314SPaul Saab 		CSR_WRITE_4(sc, BGE_MARB_MODE, BGE_MARBMODE_ENABLE);
2785a7b0c314SPaul Saab 
278695d67482SBill Paul 	/*
27876f8718a3SScott Long 	 * Poll until we see the 1's complement of the magic number.
278808013fd3SMarius Strobl 	 * This indicates that the firmware initialization is complete.
278908013fd3SMarius Strobl 	 * We expect this to fail if no EEPROM is fitted though.
279095d67482SBill Paul 	 */
279195d67482SBill Paul 	for (i = 0; i < BGE_TIMEOUT; i++) {
279295d67482SBill Paul 		val = bge_readmem_ind(sc, BGE_SOFTWARE_GENCOMM);
279395d67482SBill Paul 		if (val == ~BGE_MAGIC_NUMBER)
279495d67482SBill Paul 			break;
279595d67482SBill Paul 		DELAY(10);
279695d67482SBill Paul 	}
279795d67482SBill Paul 
279808013fd3SMarius Strobl 	if ((sc->bge_flags & BGE_FLAG_EEPROM) && i == BGE_TIMEOUT)
27999ba784dbSScott Long 		device_printf(sc->bge_dev, "firmware handshake timed out, "
28009ba784dbSScott Long 		    "found 0x%08x\n", val);
280195d67482SBill Paul 
280295d67482SBill Paul 	/*
280395d67482SBill Paul 	 * XXX Wait for the value of the PCISTATE register to
280495d67482SBill Paul 	 * return to its original pre-reset state. This is a
280595d67482SBill Paul 	 * fairly good indicator of reset completion. If we don't
280695d67482SBill Paul 	 * wait for the reset to fully complete, trying to read
280795d67482SBill Paul 	 * from the device's non-PCI registers may yield garbage
280895d67482SBill Paul 	 * results.
280995d67482SBill Paul 	 */
281095d67482SBill Paul 	for (i = 0; i < BGE_TIMEOUT; i++) {
281195d67482SBill Paul 		if (pci_read_config(dev, BGE_PCI_PCISTATE, 4) == pcistate)
281295d67482SBill Paul 			break;
281395d67482SBill Paul 		DELAY(10);
281495d67482SBill Paul 	}
281595d67482SBill Paul 
28166f8718a3SScott Long 	if (sc->bge_flags & BGE_FLAG_PCIE) {
28170c8aa4eaSJung-uk Kim 		reset = bge_readmem_ind(sc, 0x7C00);
28180c8aa4eaSJung-uk Kim 		bge_writemem_ind(sc, 0x7C00, reset | (1 << 25));
28196f8718a3SScott Long 	}
28206f8718a3SScott Long 
28213f74909aSGleb Smirnoff 	/* Fix up byte swapping. */
2822e907febfSPyun YongHyeon 	CSR_WRITE_4(sc, BGE_MODE_CTL, BGE_DMA_SWAP_OPTIONS |
282395d67482SBill Paul 	    BGE_MODECTL_BYTESWAP_DATA);
282495d67482SBill Paul 
28258cb1383cSDoug Ambrisko 	/* Tell the ASF firmware we are up */
28268cb1383cSDoug Ambrisko 	if (sc->bge_asf_mode & ASF_STACKUP)
28278cb1383cSDoug Ambrisko 		BGE_SETBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
28288cb1383cSDoug Ambrisko 
282995d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MAC_MODE, 0);
283095d67482SBill Paul 
2831da3003f0SBill Paul 	/*
2832da3003f0SBill Paul 	 * The 5704 in TBI mode apparently needs some special
2833da3003f0SBill Paul 	 * adjustment to insure the SERDES drive level is set
2834da3003f0SBill Paul 	 * to 1.2V.
2835da3003f0SBill Paul 	 */
2836652ae483SGleb Smirnoff 	if (sc->bge_asicrev == BGE_ASICREV_BCM5704 &&
2837652ae483SGleb Smirnoff 	    sc->bge_flags & BGE_FLAG_TBI) {
2838da3003f0SBill Paul 		uint32_t serdescfg;
2839652ae483SGleb Smirnoff 
2840da3003f0SBill Paul 		serdescfg = CSR_READ_4(sc, BGE_SERDES_CFG);
28410c8aa4eaSJung-uk Kim 		serdescfg = (serdescfg & ~0xFFF) | 0x880;
2842da3003f0SBill Paul 		CSR_WRITE_4(sc, BGE_SERDES_CFG, serdescfg);
2843da3003f0SBill Paul 	}
2844da3003f0SBill Paul 
2845e53d81eeSPaul Saab 	/* XXX: Broadcom Linux driver. */
2846652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_PCIE &&
2847652ae483SGleb Smirnoff 	    sc->bge_chipid != BGE_CHIPID_BCM5750_A0) {
2848e53d81eeSPaul Saab 		uint32_t v;
2849e53d81eeSPaul Saab 
28500c8aa4eaSJung-uk Kim 		v = CSR_READ_4(sc, 0x7C00);
28510c8aa4eaSJung-uk Kim 		CSR_WRITE_4(sc, 0x7C00, v | (1 << 25));
2852e53d81eeSPaul Saab 	}
285395d67482SBill Paul 	DELAY(10000);
28548cb1383cSDoug Ambrisko 
28558cb1383cSDoug Ambrisko 	return(0);
285695d67482SBill Paul }
285795d67482SBill Paul 
285895d67482SBill Paul /*
285995d67482SBill Paul  * Frame reception handling. This is called if there's a frame
286095d67482SBill Paul  * on the receive return list.
286195d67482SBill Paul  *
286295d67482SBill Paul  * Note: we have to be able to handle two possibilities here:
28631be6acb7SGleb Smirnoff  * 1) the frame is from the jumbo receive ring
286495d67482SBill Paul  * 2) the frame is from the standard receive ring
286595d67482SBill Paul  */
286695d67482SBill Paul 
286795d67482SBill Paul static void
28683f74909aSGleb Smirnoff bge_rxeof(struct bge_softc *sc)
286995d67482SBill Paul {
287095d67482SBill Paul 	struct ifnet *ifp;
287195d67482SBill Paul 	int stdcnt = 0, jumbocnt = 0;
287295d67482SBill Paul 
28730f9bd73bSSam Leffler 	BGE_LOCK_ASSERT(sc);
28740f9bd73bSSam Leffler 
28753f74909aSGleb Smirnoff 	/* Nothing to do. */
2876cfcb5025SOleg Bulyzhin 	if (sc->bge_rx_saved_considx ==
2877cfcb5025SOleg Bulyzhin 	    sc->bge_ldata.bge_status_block->bge_idx[0].bge_rx_prod_idx)
2878cfcb5025SOleg Bulyzhin 		return;
2879cfcb5025SOleg Bulyzhin 
2880fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp;
288195d67482SBill Paul 
2882f41ac2beSBill Paul 	bus_dmamap_sync(sc->bge_cdata.bge_rx_return_ring_tag,
2883e65bed95SPyun YongHyeon 	    sc->bge_cdata.bge_rx_return_ring_map, BUS_DMASYNC_POSTREAD);
2884f41ac2beSBill Paul 	bus_dmamap_sync(sc->bge_cdata.bge_rx_std_ring_tag,
2885f41ac2beSBill Paul 	    sc->bge_cdata.bge_rx_std_ring_map, BUS_DMASYNC_POSTREAD);
28864c0da0ffSGleb Smirnoff 	if (BGE_IS_JUMBO_CAPABLE(sc))
2887f41ac2beSBill Paul 		bus_dmamap_sync(sc->bge_cdata.bge_rx_jumbo_ring_tag,
28884c0da0ffSGleb Smirnoff 		    sc->bge_cdata.bge_rx_jumbo_ring_map, BUS_DMASYNC_POSTREAD);
2889f41ac2beSBill Paul 
289095d67482SBill Paul 	while(sc->bge_rx_saved_considx !=
2891f41ac2beSBill Paul 	    sc->bge_ldata.bge_status_block->bge_idx[0].bge_rx_prod_idx) {
289295d67482SBill Paul 		struct bge_rx_bd	*cur_rx;
28933f74909aSGleb Smirnoff 		uint32_t		rxidx;
289495d67482SBill Paul 		struct mbuf		*m = NULL;
28953f74909aSGleb Smirnoff 		uint16_t		vlan_tag = 0;
289695d67482SBill Paul 		int			have_tag = 0;
289795d67482SBill Paul 
289875719184SGleb Smirnoff #ifdef DEVICE_POLLING
289975719184SGleb Smirnoff 		if (ifp->if_capenable & IFCAP_POLLING) {
290075719184SGleb Smirnoff 			if (sc->rxcycles <= 0)
290175719184SGleb Smirnoff 				break;
290275719184SGleb Smirnoff 			sc->rxcycles--;
290375719184SGleb Smirnoff 		}
290475719184SGleb Smirnoff #endif
290575719184SGleb Smirnoff 
290695d67482SBill Paul 		cur_rx =
2907f41ac2beSBill Paul 	    &sc->bge_ldata.bge_rx_return_ring[sc->bge_rx_saved_considx];
290895d67482SBill Paul 
290995d67482SBill Paul 		rxidx = cur_rx->bge_idx;
29100434d1b8SBill Paul 		BGE_INC(sc->bge_rx_saved_considx, sc->bge_return_ring_cnt);
291195d67482SBill Paul 
291245ee6ab3SJung-uk Kim 		if (cur_rx->bge_flags & BGE_RXBDFLAG_VLAN_TAG) {
291395d67482SBill Paul 			have_tag = 1;
291495d67482SBill Paul 			vlan_tag = cur_rx->bge_vlan_tag;
291595d67482SBill Paul 		}
291695d67482SBill Paul 
291795d67482SBill Paul 		if (cur_rx->bge_flags & BGE_RXBDFLAG_JUMBO_RING) {
291895d67482SBill Paul 			BGE_INC(sc->bge_jumbo, BGE_JUMBO_RX_RING_CNT);
2919f41ac2beSBill Paul 			bus_dmamap_sync(sc->bge_cdata.bge_mtag_jumbo,
2920f41ac2beSBill Paul 			    sc->bge_cdata.bge_rx_jumbo_dmamap[rxidx],
2921f41ac2beSBill Paul 			    BUS_DMASYNC_POSTREAD);
2922f41ac2beSBill Paul 			bus_dmamap_unload(sc->bge_cdata.bge_mtag_jumbo,
2923f41ac2beSBill Paul 			    sc->bge_cdata.bge_rx_jumbo_dmamap[rxidx]);
292495d67482SBill Paul 			m = sc->bge_cdata.bge_rx_jumbo_chain[rxidx];
292595d67482SBill Paul 			sc->bge_cdata.bge_rx_jumbo_chain[rxidx] = NULL;
292695d67482SBill Paul 			jumbocnt++;
292795d67482SBill Paul 			if (cur_rx->bge_flags & BGE_RXBDFLAG_ERROR) {
292895d67482SBill Paul 				ifp->if_ierrors++;
292995d67482SBill Paul 				bge_newbuf_jumbo(sc, sc->bge_jumbo, m);
293095d67482SBill Paul 				continue;
293195d67482SBill Paul 			}
293295d67482SBill Paul 			if (bge_newbuf_jumbo(sc,
293395d67482SBill Paul 			    sc->bge_jumbo, NULL) == ENOBUFS) {
293495d67482SBill Paul 				ifp->if_ierrors++;
293595d67482SBill Paul 				bge_newbuf_jumbo(sc, sc->bge_jumbo, m);
293695d67482SBill Paul 				continue;
293795d67482SBill Paul 			}
293895d67482SBill Paul 		} else {
293995d67482SBill Paul 			BGE_INC(sc->bge_std, BGE_STD_RX_RING_CNT);
2940f41ac2beSBill Paul 			bus_dmamap_sync(sc->bge_cdata.bge_mtag,
2941f41ac2beSBill Paul 			    sc->bge_cdata.bge_rx_std_dmamap[rxidx],
2942f41ac2beSBill Paul 			    BUS_DMASYNC_POSTREAD);
2943f41ac2beSBill Paul 			bus_dmamap_unload(sc->bge_cdata.bge_mtag,
2944f41ac2beSBill Paul 			    sc->bge_cdata.bge_rx_std_dmamap[rxidx]);
294595d67482SBill Paul 			m = sc->bge_cdata.bge_rx_std_chain[rxidx];
294695d67482SBill Paul 			sc->bge_cdata.bge_rx_std_chain[rxidx] = NULL;
294795d67482SBill Paul 			stdcnt++;
294895d67482SBill Paul 			if (cur_rx->bge_flags & BGE_RXBDFLAG_ERROR) {
294995d67482SBill Paul 				ifp->if_ierrors++;
295095d67482SBill Paul 				bge_newbuf_std(sc, sc->bge_std, m);
295195d67482SBill Paul 				continue;
295295d67482SBill Paul 			}
295395d67482SBill Paul 			if (bge_newbuf_std(sc, sc->bge_std,
295495d67482SBill Paul 			    NULL) == ENOBUFS) {
295595d67482SBill Paul 				ifp->if_ierrors++;
295695d67482SBill Paul 				bge_newbuf_std(sc, sc->bge_std, m);
295795d67482SBill Paul 				continue;
295895d67482SBill Paul 			}
295995d67482SBill Paul 		}
296095d67482SBill Paul 
296195d67482SBill Paul 		ifp->if_ipackets++;
2962e65bed95SPyun YongHyeon #ifndef __NO_STRICT_ALIGNMENT
2963e255b776SJohn Polstra 		/*
2964e65bed95SPyun YongHyeon 		 * For architectures with strict alignment we must make sure
2965e65bed95SPyun YongHyeon 		 * the payload is aligned.
2966e255b776SJohn Polstra 		 */
2967652ae483SGleb Smirnoff 		if (sc->bge_flags & BGE_FLAG_RX_ALIGNBUG) {
2968e255b776SJohn Polstra 			bcopy(m->m_data, m->m_data + ETHER_ALIGN,
2969e255b776SJohn Polstra 			    cur_rx->bge_len);
2970e255b776SJohn Polstra 			m->m_data += ETHER_ALIGN;
2971e255b776SJohn Polstra 		}
2972e255b776SJohn Polstra #endif
2973473851baSPaul Saab 		m->m_pkthdr.len = m->m_len = cur_rx->bge_len - ETHER_CRC_LEN;
297495d67482SBill Paul 		m->m_pkthdr.rcvif = ifp;
297595d67482SBill Paul 
2976b874fdd4SYaroslav Tykhiy 		if (ifp->if_capenable & IFCAP_RXCSUM) {
297778178cd1SGleb Smirnoff 			if (cur_rx->bge_flags & BGE_RXBDFLAG_IP_CSUM) {
297895d67482SBill Paul 				m->m_pkthdr.csum_flags |= CSUM_IP_CHECKED;
29790c8aa4eaSJung-uk Kim 				if ((cur_rx->bge_ip_csum ^ 0xFFFF) == 0)
29800c8aa4eaSJung-uk Kim 					m->m_pkthdr.csum_flags |= CSUM_IP_VALID;
298178178cd1SGleb Smirnoff 			}
2982d375e524SGleb Smirnoff 			if (cur_rx->bge_flags & BGE_RXBDFLAG_TCP_UDP_CSUM &&
2983d375e524SGleb Smirnoff 			    m->m_pkthdr.len >= ETHER_MIN_NOPAD) {
298495d67482SBill Paul 				m->m_pkthdr.csum_data =
298595d67482SBill Paul 				    cur_rx->bge_tcp_udp_csum;
2986ee7ef91cSOleg Bulyzhin 				m->m_pkthdr.csum_flags |=
2987ee7ef91cSOleg Bulyzhin 				    CSUM_DATA_VALID | CSUM_PSEUDO_HDR;
298895d67482SBill Paul 			}
298995d67482SBill Paul 		}
299095d67482SBill Paul 
299195d67482SBill Paul 		/*
2992673d9191SSam Leffler 		 * If we received a packet with a vlan tag,
2993673d9191SSam Leffler 		 * attach that information to the packet.
299495d67482SBill Paul 		 */
2995d147662cSGleb Smirnoff 		if (have_tag) {
29964e35d186SJung-uk Kim #if __FreeBSD_version > 700022
299778ba57b9SAndre Oppermann 			m->m_pkthdr.ether_vtag = vlan_tag;
299878ba57b9SAndre Oppermann 			m->m_flags |= M_VLANTAG;
29994e35d186SJung-uk Kim #else
30004e35d186SJung-uk Kim 			VLAN_INPUT_TAG_NEW(ifp, m, vlan_tag);
30014e35d186SJung-uk Kim 			if (m == NULL)
30024e35d186SJung-uk Kim 				continue;
30034e35d186SJung-uk Kim #endif
3004d147662cSGleb Smirnoff 		}
300595d67482SBill Paul 
30060f9bd73bSSam Leffler 		BGE_UNLOCK(sc);
3007673d9191SSam Leffler 		(*ifp->if_input)(ifp, m);
30080f9bd73bSSam Leffler 		BGE_LOCK(sc);
300995d67482SBill Paul 	}
301095d67482SBill Paul 
3011e65bed95SPyun YongHyeon 	if (stdcnt > 0)
3012f41ac2beSBill Paul 		bus_dmamap_sync(sc->bge_cdata.bge_rx_std_ring_tag,
3013e65bed95SPyun YongHyeon 		    sc->bge_cdata.bge_rx_std_ring_map, BUS_DMASYNC_PREWRITE);
30144c0da0ffSGleb Smirnoff 
30154c0da0ffSGleb Smirnoff 	if (BGE_IS_JUMBO_CAPABLE(sc) && jumbocnt > 0)
3016f41ac2beSBill Paul 		bus_dmamap_sync(sc->bge_cdata.bge_rx_jumbo_ring_tag,
30174c0da0ffSGleb Smirnoff 		    sc->bge_cdata.bge_rx_jumbo_ring_map, BUS_DMASYNC_PREWRITE);
3018f41ac2beSBill Paul 
301995d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_RX_CONS0_LO, sc->bge_rx_saved_considx);
302095d67482SBill Paul 	if (stdcnt)
302195d67482SBill Paul 		CSR_WRITE_4(sc, BGE_MBX_RX_STD_PROD_LO, sc->bge_std);
302295d67482SBill Paul 	if (jumbocnt)
302395d67482SBill Paul 		CSR_WRITE_4(sc, BGE_MBX_RX_JUMBO_PROD_LO, sc->bge_jumbo);
30246b037352SJung-uk Kim #ifdef notyet
30256b037352SJung-uk Kim 	/*
30266b037352SJung-uk Kim 	 * This register wraps very quickly under heavy packet drops.
30276b037352SJung-uk Kim 	 * If you need correct statistics, you can enable this check.
30286b037352SJung-uk Kim 	 */
30296b037352SJung-uk Kim 	if (BGE_IS_5705_PLUS(sc))
30306b037352SJung-uk Kim 		ifp->if_ierrors += CSR_READ_4(sc, BGE_RXLP_LOCSTAT_IFIN_DROPS);
30316b037352SJung-uk Kim #endif
303295d67482SBill Paul }
303395d67482SBill Paul 
303495d67482SBill Paul static void
30353f74909aSGleb Smirnoff bge_txeof(struct bge_softc *sc)
303695d67482SBill Paul {
303795d67482SBill Paul 	struct bge_tx_bd *cur_tx = NULL;
303895d67482SBill Paul 	struct ifnet *ifp;
303995d67482SBill Paul 
30400f9bd73bSSam Leffler 	BGE_LOCK_ASSERT(sc);
30410f9bd73bSSam Leffler 
30423f74909aSGleb Smirnoff 	/* Nothing to do. */
3043cfcb5025SOleg Bulyzhin 	if (sc->bge_tx_saved_considx ==
3044cfcb5025SOleg Bulyzhin 	    sc->bge_ldata.bge_status_block->bge_idx[0].bge_tx_cons_idx)
3045cfcb5025SOleg Bulyzhin 		return;
3046cfcb5025SOleg Bulyzhin 
3047fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp;
304895d67482SBill Paul 
3049e65bed95SPyun YongHyeon 	bus_dmamap_sync(sc->bge_cdata.bge_tx_ring_tag,
3050e65bed95SPyun YongHyeon 	    sc->bge_cdata.bge_tx_ring_map,
3051e65bed95SPyun YongHyeon 	    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
305295d67482SBill Paul 	/*
305395d67482SBill Paul 	 * Go through our tx ring and free mbufs for those
305495d67482SBill Paul 	 * frames that have been sent.
305595d67482SBill Paul 	 */
305695d67482SBill Paul 	while (sc->bge_tx_saved_considx !=
3057f41ac2beSBill Paul 	    sc->bge_ldata.bge_status_block->bge_idx[0].bge_tx_cons_idx) {
30583f74909aSGleb Smirnoff 		uint32_t		idx = 0;
305995d67482SBill Paul 
306095d67482SBill Paul 		idx = sc->bge_tx_saved_considx;
3061f41ac2beSBill Paul 		cur_tx = &sc->bge_ldata.bge_tx_ring[idx];
306295d67482SBill Paul 		if (cur_tx->bge_flags & BGE_TXBDFLAG_END)
306395d67482SBill Paul 			ifp->if_opackets++;
306495d67482SBill Paul 		if (sc->bge_cdata.bge_tx_chain[idx] != NULL) {
3065e65bed95SPyun YongHyeon 			bus_dmamap_sync(sc->bge_cdata.bge_mtag,
3066e65bed95SPyun YongHyeon 			    sc->bge_cdata.bge_tx_dmamap[idx],
3067e65bed95SPyun YongHyeon 			    BUS_DMASYNC_POSTWRITE);
3068f41ac2beSBill Paul 			bus_dmamap_unload(sc->bge_cdata.bge_mtag,
3069f41ac2beSBill Paul 			    sc->bge_cdata.bge_tx_dmamap[idx]);
3070e65bed95SPyun YongHyeon 			m_freem(sc->bge_cdata.bge_tx_chain[idx]);
3071e65bed95SPyun YongHyeon 			sc->bge_cdata.bge_tx_chain[idx] = NULL;
307295d67482SBill Paul 		}
307395d67482SBill Paul 		sc->bge_txcnt--;
307495d67482SBill Paul 		BGE_INC(sc->bge_tx_saved_considx, BGE_TX_RING_CNT);
307595d67482SBill Paul 	}
307695d67482SBill Paul 
307795d67482SBill Paul 	if (cur_tx != NULL)
307813f4c340SRobert Watson 		ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
30795b01e77cSBruce Evans 	if (sc->bge_txcnt == 0)
30805b01e77cSBruce Evans 		sc->bge_timer = 0;
308195d67482SBill Paul }
308295d67482SBill Paul 
308375719184SGleb Smirnoff #ifdef DEVICE_POLLING
308475719184SGleb Smirnoff static void
308575719184SGleb Smirnoff bge_poll(struct ifnet *ifp, enum poll_cmd cmd, int count)
308675719184SGleb Smirnoff {
308775719184SGleb Smirnoff 	struct bge_softc *sc = ifp->if_softc;
3088366454f2SOleg Bulyzhin 	uint32_t statusword;
308975719184SGleb Smirnoff 
30903f74909aSGleb Smirnoff 	BGE_LOCK(sc);
30913f74909aSGleb Smirnoff 	if (!(ifp->if_drv_flags & IFF_DRV_RUNNING)) {
30923f74909aSGleb Smirnoff 		BGE_UNLOCK(sc);
30933f74909aSGleb Smirnoff 		return;
30943f74909aSGleb Smirnoff 	}
309575719184SGleb Smirnoff 
3096dab5cd05SOleg Bulyzhin 	bus_dmamap_sync(sc->bge_cdata.bge_status_tag,
3097e65bed95SPyun YongHyeon 	    sc->bge_cdata.bge_status_map, BUS_DMASYNC_POSTREAD);
3098dab5cd05SOleg Bulyzhin 
30993f74909aSGleb Smirnoff 	statusword = atomic_readandclear_32(
31003f74909aSGleb Smirnoff 	    &sc->bge_ldata.bge_status_block->bge_status);
3101dab5cd05SOleg Bulyzhin 
3102dab5cd05SOleg Bulyzhin 	bus_dmamap_sync(sc->bge_cdata.bge_status_tag,
3103e65bed95SPyun YongHyeon 	    sc->bge_cdata.bge_status_map, BUS_DMASYNC_PREREAD);
3104366454f2SOleg Bulyzhin 
31050c8aa4eaSJung-uk Kim 	/* Note link event. It will be processed by POLL_AND_CHECK_STATUS. */
3106366454f2SOleg Bulyzhin 	if (statusword & BGE_STATFLAG_LINKSTATE_CHANGED)
3107366454f2SOleg Bulyzhin 		sc->bge_link_evt++;
3108366454f2SOleg Bulyzhin 
3109366454f2SOleg Bulyzhin 	if (cmd == POLL_AND_CHECK_STATUS)
3110366454f2SOleg Bulyzhin 		if ((sc->bge_asicrev == BGE_ASICREV_BCM5700 &&
31114c0da0ffSGleb Smirnoff 		    sc->bge_chipid != BGE_CHIPID_BCM5700_B2) ||
3112652ae483SGleb Smirnoff 		    sc->bge_link_evt || (sc->bge_flags & BGE_FLAG_TBI))
3113366454f2SOleg Bulyzhin 			bge_link_upd(sc);
3114366454f2SOleg Bulyzhin 
3115366454f2SOleg Bulyzhin 	sc->rxcycles = count;
3116366454f2SOleg Bulyzhin 	bge_rxeof(sc);
3117366454f2SOleg Bulyzhin 	bge_txeof(sc);
3118366454f2SOleg Bulyzhin 	if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
3119366454f2SOleg Bulyzhin 		bge_start_locked(ifp);
31203f74909aSGleb Smirnoff 
31213f74909aSGleb Smirnoff 	BGE_UNLOCK(sc);
312275719184SGleb Smirnoff }
312375719184SGleb Smirnoff #endif /* DEVICE_POLLING */
312475719184SGleb Smirnoff 
312595d67482SBill Paul static void
31263f74909aSGleb Smirnoff bge_intr(void *xsc)
312795d67482SBill Paul {
312895d67482SBill Paul 	struct bge_softc *sc;
312995d67482SBill Paul 	struct ifnet *ifp;
3130dab5cd05SOleg Bulyzhin 	uint32_t statusword;
313195d67482SBill Paul 
313295d67482SBill Paul 	sc = xsc;
3133f41ac2beSBill Paul 
31340f9bd73bSSam Leffler 	BGE_LOCK(sc);
31350f9bd73bSSam Leffler 
3136dab5cd05SOleg Bulyzhin 	ifp = sc->bge_ifp;
3137dab5cd05SOleg Bulyzhin 
313875719184SGleb Smirnoff #ifdef DEVICE_POLLING
313975719184SGleb Smirnoff 	if (ifp->if_capenable & IFCAP_POLLING) {
314075719184SGleb Smirnoff 		BGE_UNLOCK(sc);
314175719184SGleb Smirnoff 		return;
314275719184SGleb Smirnoff 	}
314375719184SGleb Smirnoff #endif
314475719184SGleb Smirnoff 
3145f30cbfc6SScott Long 	/*
3146b848e032SBruce Evans 	 * Ack the interrupt by writing something to BGE_MBX_IRQ0_LO.  Don't
3147b848e032SBruce Evans 	 * disable interrupts by writing nonzero like we used to, since with
3148b848e032SBruce Evans 	 * our current organization this just gives complications and
3149b848e032SBruce Evans 	 * pessimizations for re-enabling interrupts.  We used to have races
3150b848e032SBruce Evans 	 * instead of the necessary complications.  Disabling interrupts
3151b848e032SBruce Evans 	 * would just reduce the chance of a status update while we are
3152b848e032SBruce Evans 	 * running (by switching to the interrupt-mode coalescence
3153b848e032SBruce Evans 	 * parameters), but this chance is already very low so it is more
3154b848e032SBruce Evans 	 * efficient to get another interrupt than prevent it.
3155b848e032SBruce Evans 	 *
3156b848e032SBruce Evans 	 * We do the ack first to ensure another interrupt if there is a
3157b848e032SBruce Evans 	 * status update after the ack.  We don't check for the status
3158b848e032SBruce Evans 	 * changing later because it is more efficient to get another
3159b848e032SBruce Evans 	 * interrupt than prevent it, not quite as above (not checking is
3160b848e032SBruce Evans 	 * a smaller optimization than not toggling the interrupt enable,
3161b848e032SBruce Evans 	 * since checking doesn't involve PCI accesses and toggling require
3162b848e032SBruce Evans 	 * the status check).  So toggling would probably be a pessimization
3163b848e032SBruce Evans 	 * even with MSI.  It would only be needed for using a task queue.
3164b848e032SBruce Evans 	 */
3165b848e032SBruce Evans 	CSR_WRITE_4(sc, BGE_MBX_IRQ0_LO, 0);
3166b848e032SBruce Evans 
3167b848e032SBruce Evans 	/*
3168f30cbfc6SScott Long 	 * Do the mandatory PCI flush as well as get the link status.
3169f30cbfc6SScott Long 	 */
3170f30cbfc6SScott Long 	statusword = CSR_READ_4(sc, BGE_MAC_STS) & BGE_MACSTAT_LINK_CHANGED;
3171f41ac2beSBill Paul 
3172f30cbfc6SScott Long 	/* Make sure the descriptor ring indexes are coherent. */
3173f30cbfc6SScott Long 	bus_dmamap_sync(sc->bge_cdata.bge_status_tag,
3174f30cbfc6SScott Long 	    sc->bge_cdata.bge_status_map, BUS_DMASYNC_POSTREAD);
3175f30cbfc6SScott Long 	bus_dmamap_sync(sc->bge_cdata.bge_status_tag,
3176f30cbfc6SScott Long 	    sc->bge_cdata.bge_status_map, BUS_DMASYNC_PREREAD);
3177f30cbfc6SScott Long 
31781f313773SOleg Bulyzhin 	if ((sc->bge_asicrev == BGE_ASICREV_BCM5700 &&
31794c0da0ffSGleb Smirnoff 	    sc->bge_chipid != BGE_CHIPID_BCM5700_B2) ||
3180f30cbfc6SScott Long 	    statusword || sc->bge_link_evt)
3181dab5cd05SOleg Bulyzhin 		bge_link_upd(sc);
318295d67482SBill Paul 
318313f4c340SRobert Watson 	if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
31843f74909aSGleb Smirnoff 		/* Check RX return ring producer/consumer. */
318595d67482SBill Paul 		bge_rxeof(sc);
318695d67482SBill Paul 
31873f74909aSGleb Smirnoff 		/* Check TX ring producer/consumer. */
318895d67482SBill Paul 		bge_txeof(sc);
318995d67482SBill Paul 	}
319095d67482SBill Paul 
319113f4c340SRobert Watson 	if (ifp->if_drv_flags & IFF_DRV_RUNNING &&
319213f4c340SRobert Watson 	    !IFQ_DRV_IS_EMPTY(&ifp->if_snd))
31930f9bd73bSSam Leffler 		bge_start_locked(ifp);
31940f9bd73bSSam Leffler 
31950f9bd73bSSam Leffler 	BGE_UNLOCK(sc);
319695d67482SBill Paul }
319795d67482SBill Paul 
319895d67482SBill Paul static void
31998cb1383cSDoug Ambrisko bge_asf_driver_up(struct bge_softc *sc)
32008cb1383cSDoug Ambrisko {
32018cb1383cSDoug Ambrisko 	if (sc->bge_asf_mode & ASF_STACKUP) {
32028cb1383cSDoug Ambrisko 		/* Send ASF heartbeat aprox. every 2s */
32038cb1383cSDoug Ambrisko 		if (sc->bge_asf_count)
32048cb1383cSDoug Ambrisko 			sc->bge_asf_count --;
32058cb1383cSDoug Ambrisko 		else {
32068cb1383cSDoug Ambrisko 			sc->bge_asf_count = 5;
32078cb1383cSDoug Ambrisko 			bge_writemem_ind(sc, BGE_SOFTWARE_GENCOMM_FW,
32088cb1383cSDoug Ambrisko 			    BGE_FW_DRV_ALIVE);
32098cb1383cSDoug Ambrisko 			bge_writemem_ind(sc, BGE_SOFTWARE_GENNCOMM_FW_LEN, 4);
32108cb1383cSDoug Ambrisko 			bge_writemem_ind(sc, BGE_SOFTWARE_GENNCOMM_FW_DATA, 3);
32118cb1383cSDoug Ambrisko 			CSR_WRITE_4(sc, BGE_CPU_EVENT,
321239153c5aSJung-uk Kim 			    CSR_READ_4(sc, BGE_CPU_EVENT) | (1 << 14));
32138cb1383cSDoug Ambrisko 		}
32148cb1383cSDoug Ambrisko 	}
32158cb1383cSDoug Ambrisko }
32168cb1383cSDoug Ambrisko 
32178cb1383cSDoug Ambrisko static void
3218b74e67fbSGleb Smirnoff bge_tick(void *xsc)
32190f9bd73bSSam Leffler {
3220b74e67fbSGleb Smirnoff 	struct bge_softc *sc = xsc;
322195d67482SBill Paul 	struct mii_data *mii = NULL;
322295d67482SBill Paul 
32230f9bd73bSSam Leffler 	BGE_LOCK_ASSERT(sc);
322495d67482SBill Paul 
32255dda8085SOleg Bulyzhin 	/* Synchronize with possible callout reset/stop. */
32265dda8085SOleg Bulyzhin 	if (callout_pending(&sc->bge_stat_ch) ||
32275dda8085SOleg Bulyzhin 	    !callout_active(&sc->bge_stat_ch))
32285dda8085SOleg Bulyzhin 	    	return;
32295dda8085SOleg Bulyzhin 
32307ee00338SJung-uk Kim 	if (BGE_IS_5705_PLUS(sc))
32310434d1b8SBill Paul 		bge_stats_update_regs(sc);
32320434d1b8SBill Paul 	else
323395d67482SBill Paul 		bge_stats_update(sc);
323495d67482SBill Paul 
3235652ae483SGleb Smirnoff 	if ((sc->bge_flags & BGE_FLAG_TBI) == 0) {
323695d67482SBill Paul 		mii = device_get_softc(sc->bge_miibus);
32378cb1383cSDoug Ambrisko 		/* Don't mess with the PHY in IPMI/ASF mode */
32388cb1383cSDoug Ambrisko 		if (!((sc->bge_asf_mode & ASF_STACKUP) && (sc->bge_link)))
323995d67482SBill Paul 			mii_tick(mii);
32407b97099dSOleg Bulyzhin 	} else {
32417b97099dSOleg Bulyzhin 		/*
32427b97099dSOleg Bulyzhin 		 * Since in TBI mode auto-polling can't be used we should poll
32437b97099dSOleg Bulyzhin 		 * link status manually. Here we register pending link event
32447b97099dSOleg Bulyzhin 		 * and trigger interrupt.
32457b97099dSOleg Bulyzhin 		 */
32467b97099dSOleg Bulyzhin #ifdef DEVICE_POLLING
32473f74909aSGleb Smirnoff 		/* In polling mode we poll link state in bge_poll(). */
32487b97099dSOleg Bulyzhin 		if (!(sc->bge_ifp->if_capenable & IFCAP_POLLING))
32497b97099dSOleg Bulyzhin #endif
32507b97099dSOleg Bulyzhin 		{
32517b97099dSOleg Bulyzhin 		sc->bge_link_evt++;
32527b97099dSOleg Bulyzhin 		BGE_SETBIT(sc, BGE_MISC_LOCAL_CTL, BGE_MLC_INTR_SET);
32537b97099dSOleg Bulyzhin 		}
3254dab5cd05SOleg Bulyzhin 	}
325595d67482SBill Paul 
32568cb1383cSDoug Ambrisko 	bge_asf_driver_up(sc);
3257b74e67fbSGleb Smirnoff 	bge_watchdog(sc);
32588cb1383cSDoug Ambrisko 
3259dab5cd05SOleg Bulyzhin 	callout_reset(&sc->bge_stat_ch, hz, bge_tick, sc);
326095d67482SBill Paul }
326195d67482SBill Paul 
326295d67482SBill Paul static void
32633f74909aSGleb Smirnoff bge_stats_update_regs(struct bge_softc *sc)
32640434d1b8SBill Paul {
32653f74909aSGleb Smirnoff 	struct ifnet *ifp;
32660434d1b8SBill Paul 
3267fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp;
32680434d1b8SBill Paul 
32696b037352SJung-uk Kim 	ifp->if_collisions += CSR_READ_4(sc, BGE_MAC_STATS +
32707e6e2507SJung-uk Kim 	    offsetof(struct bge_mac_stats_regs, etherStatsCollisions));
32717e6e2507SJung-uk Kim 
32726b037352SJung-uk Kim 	ifp->if_ierrors += CSR_READ_4(sc, BGE_RXLP_LOCSTAT_IFIN_DROPS);
32730434d1b8SBill Paul }
32740434d1b8SBill Paul 
32750434d1b8SBill Paul static void
32763f74909aSGleb Smirnoff bge_stats_update(struct bge_softc *sc)
327795d67482SBill Paul {
327895d67482SBill Paul 	struct ifnet *ifp;
3279e907febfSPyun YongHyeon 	bus_size_t stats;
32807e6e2507SJung-uk Kim 	uint32_t cnt;	/* current register value */
328195d67482SBill Paul 
3282fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp;
328395d67482SBill Paul 
3284e907febfSPyun YongHyeon 	stats = BGE_MEMWIN_START + BGE_STATS_BLOCK;
3285e907febfSPyun YongHyeon 
3286e907febfSPyun YongHyeon #define	READ_STAT(sc, stats, stat) \
3287e907febfSPyun YongHyeon 	CSR_READ_4(sc, stats + offsetof(struct bge_stats, stat))
328895d67482SBill Paul 
32898634dfffSJung-uk Kim 	cnt = READ_STAT(sc, stats, txstats.etherStatsCollisions.bge_addr_lo);
32906b037352SJung-uk Kim 	ifp->if_collisions += (uint32_t)(cnt - sc->bge_tx_collisions);
32916fb34dd2SOleg Bulyzhin 	sc->bge_tx_collisions = cnt;
32926fb34dd2SOleg Bulyzhin 
32936fb34dd2SOleg Bulyzhin 	cnt = READ_STAT(sc, stats, ifInDiscards.bge_addr_lo);
32946b037352SJung-uk Kim 	ifp->if_ierrors += (uint32_t)(cnt - sc->bge_rx_discards);
32956fb34dd2SOleg Bulyzhin 	sc->bge_rx_discards = cnt;
32966fb34dd2SOleg Bulyzhin 
32976fb34dd2SOleg Bulyzhin 	cnt = READ_STAT(sc, stats, txstats.ifOutDiscards.bge_addr_lo);
32986b037352SJung-uk Kim 	ifp->if_oerrors += (uint32_t)(cnt - sc->bge_tx_discards);
32996fb34dd2SOleg Bulyzhin 	sc->bge_tx_discards = cnt;
330095d67482SBill Paul 
3301e907febfSPyun YongHyeon #undef	READ_STAT
330295d67482SBill Paul }
330395d67482SBill Paul 
330495d67482SBill Paul /*
3305d375e524SGleb Smirnoff  * Pad outbound frame to ETHER_MIN_NOPAD for an unusual reason.
3306d375e524SGleb Smirnoff  * The bge hardware will pad out Tx runts to ETHER_MIN_NOPAD,
3307d375e524SGleb Smirnoff  * but when such padded frames employ the bge IP/TCP checksum offload,
3308d375e524SGleb Smirnoff  * the hardware checksum assist gives incorrect results (possibly
3309d375e524SGleb Smirnoff  * from incorporating its own padding into the UDP/TCP checksum; who knows).
3310d375e524SGleb Smirnoff  * If we pad such runts with zeros, the onboard checksum comes out correct.
3311d375e524SGleb Smirnoff  */
3312d375e524SGleb Smirnoff static __inline int
3313d375e524SGleb Smirnoff bge_cksum_pad(struct mbuf *m)
3314d375e524SGleb Smirnoff {
3315d375e524SGleb Smirnoff 	int padlen = ETHER_MIN_NOPAD - m->m_pkthdr.len;
3316d375e524SGleb Smirnoff 	struct mbuf *last;
3317d375e524SGleb Smirnoff 
3318d375e524SGleb Smirnoff 	/* If there's only the packet-header and we can pad there, use it. */
3319d375e524SGleb Smirnoff 	if (m->m_pkthdr.len == m->m_len && M_WRITABLE(m) &&
3320d375e524SGleb Smirnoff 	    M_TRAILINGSPACE(m) >= padlen) {
3321d375e524SGleb Smirnoff 		last = m;
3322d375e524SGleb Smirnoff 	} else {
3323d375e524SGleb Smirnoff 		/*
3324d375e524SGleb Smirnoff 		 * Walk packet chain to find last mbuf. We will either
3325d375e524SGleb Smirnoff 		 * pad there, or append a new mbuf and pad it.
3326d375e524SGleb Smirnoff 		 */
3327d375e524SGleb Smirnoff 		for (last = m; last->m_next != NULL; last = last->m_next);
3328d375e524SGleb Smirnoff 		if (!(M_WRITABLE(last) && M_TRAILINGSPACE(last) >= padlen)) {
3329d375e524SGleb Smirnoff 			/* Allocate new empty mbuf, pad it. Compact later. */
3330d375e524SGleb Smirnoff 			struct mbuf *n;
3331d375e524SGleb Smirnoff 
3332d375e524SGleb Smirnoff 			MGET(n, M_DONTWAIT, MT_DATA);
3333d375e524SGleb Smirnoff 			if (n == NULL)
3334d375e524SGleb Smirnoff 				return (ENOBUFS);
3335d375e524SGleb Smirnoff 			n->m_len = 0;
3336d375e524SGleb Smirnoff 			last->m_next = n;
3337d375e524SGleb Smirnoff 			last = n;
3338d375e524SGleb Smirnoff 		}
3339d375e524SGleb Smirnoff 	}
3340d375e524SGleb Smirnoff 
3341d375e524SGleb Smirnoff 	/* Now zero the pad area, to avoid the bge cksum-assist bug. */
3342d375e524SGleb Smirnoff 	memset(mtod(last, caddr_t) + last->m_len, 0, padlen);
3343d375e524SGleb Smirnoff 	last->m_len += padlen;
3344d375e524SGleb Smirnoff 	m->m_pkthdr.len += padlen;
3345d375e524SGleb Smirnoff 
3346d375e524SGleb Smirnoff 	return (0);
3347d375e524SGleb Smirnoff }
3348d375e524SGleb Smirnoff 
3349d375e524SGleb Smirnoff /*
335095d67482SBill Paul  * Encapsulate an mbuf chain in the tx ring  by coupling the mbuf data
335195d67482SBill Paul  * pointers to descriptors.
335295d67482SBill Paul  */
335395d67482SBill Paul static int
3354676ad2c9SGleb Smirnoff bge_encap(struct bge_softc *sc, struct mbuf **m_head, uint32_t *txidx)
335595d67482SBill Paul {
33567e27542aSGleb Smirnoff 	bus_dma_segment_t	segs[BGE_NSEG_NEW];
3357f41ac2beSBill Paul 	bus_dmamap_t		map;
3358676ad2c9SGleb Smirnoff 	struct bge_tx_bd	*d;
3359676ad2c9SGleb Smirnoff 	struct mbuf		*m = *m_head;
33607e27542aSGleb Smirnoff 	uint32_t		idx = *txidx;
3361676ad2c9SGleb Smirnoff 	uint16_t		csum_flags;
33627e27542aSGleb Smirnoff 	int			nsegs, i, error;
336395d67482SBill Paul 
33646909dc43SGleb Smirnoff 	csum_flags = 0;
33656909dc43SGleb Smirnoff 	if (m->m_pkthdr.csum_flags) {
33666909dc43SGleb Smirnoff 		if (m->m_pkthdr.csum_flags & CSUM_IP)
33676909dc43SGleb Smirnoff 			csum_flags |= BGE_TXBDFLAG_IP_CSUM;
33686909dc43SGleb Smirnoff 		if (m->m_pkthdr.csum_flags & (CSUM_TCP | CSUM_UDP)) {
33696909dc43SGleb Smirnoff 			csum_flags |= BGE_TXBDFLAG_TCP_UDP_CSUM;
33706909dc43SGleb Smirnoff 			if (m->m_pkthdr.len < ETHER_MIN_NOPAD &&
33716909dc43SGleb Smirnoff 			    (error = bge_cksum_pad(m)) != 0) {
33726909dc43SGleb Smirnoff 				m_freem(m);
33736909dc43SGleb Smirnoff 				*m_head = NULL;
33746909dc43SGleb Smirnoff 				return (error);
33756909dc43SGleb Smirnoff 			}
33766909dc43SGleb Smirnoff 		}
33776909dc43SGleb Smirnoff 		if (m->m_flags & M_LASTFRAG)
33786909dc43SGleb Smirnoff 			csum_flags |= BGE_TXBDFLAG_IP_FRAG_END;
33796909dc43SGleb Smirnoff 		else if (m->m_flags & M_FRAG)
33806909dc43SGleb Smirnoff 			csum_flags |= BGE_TXBDFLAG_IP_FRAG;
33816909dc43SGleb Smirnoff 	}
33826909dc43SGleb Smirnoff 
33837e27542aSGleb Smirnoff 	map = sc->bge_cdata.bge_tx_dmamap[idx];
3384676ad2c9SGleb Smirnoff 	error = bus_dmamap_load_mbuf_sg(sc->bge_cdata.bge_mtag, map, m, segs,
3385676ad2c9SGleb Smirnoff 	    &nsegs, BUS_DMA_NOWAIT);
33867e27542aSGleb Smirnoff 	if (error == EFBIG) {
3387676ad2c9SGleb Smirnoff 		m = m_defrag(m, M_DONTWAIT);
3388676ad2c9SGleb Smirnoff 		if (m == NULL) {
3389676ad2c9SGleb Smirnoff 			m_freem(*m_head);
3390676ad2c9SGleb Smirnoff 			*m_head = NULL;
33917e27542aSGleb Smirnoff 			return (ENOBUFS);
33927e27542aSGleb Smirnoff 		}
3393676ad2c9SGleb Smirnoff 		*m_head = m;
3394676ad2c9SGleb Smirnoff 		error = bus_dmamap_load_mbuf_sg(sc->bge_cdata.bge_mtag, map, m,
3395676ad2c9SGleb Smirnoff 		    segs, &nsegs, BUS_DMA_NOWAIT);
3396676ad2c9SGleb Smirnoff 		if (error) {
3397676ad2c9SGleb Smirnoff 			m_freem(m);
3398676ad2c9SGleb Smirnoff 			*m_head = NULL;
33997e27542aSGleb Smirnoff 			return (error);
34007e27542aSGleb Smirnoff 		}
3401676ad2c9SGleb Smirnoff 	} else if (error != 0)
3402676ad2c9SGleb Smirnoff 		return (error);
34037e27542aSGleb Smirnoff 
340495d67482SBill Paul 	/*
340595d67482SBill Paul 	 * Sanity check: avoid coming within 16 descriptors
340695d67482SBill Paul 	 * of the end of the ring.
340795d67482SBill Paul 	 */
34087e27542aSGleb Smirnoff 	if (nsegs > (BGE_TX_RING_CNT - sc->bge_txcnt - 16)) {
34097e27542aSGleb Smirnoff 		bus_dmamap_unload(sc->bge_cdata.bge_mtag, map);
341095d67482SBill Paul 		return (ENOBUFS);
34117e27542aSGleb Smirnoff 	}
34127e27542aSGleb Smirnoff 
3413e65bed95SPyun YongHyeon 	bus_dmamap_sync(sc->bge_cdata.bge_mtag, map, BUS_DMASYNC_PREWRITE);
3414e65bed95SPyun YongHyeon 
34157e27542aSGleb Smirnoff 	for (i = 0; ; i++) {
34167e27542aSGleb Smirnoff 		d = &sc->bge_ldata.bge_tx_ring[idx];
34177e27542aSGleb Smirnoff 		d->bge_addr.bge_addr_lo = BGE_ADDR_LO(segs[i].ds_addr);
34187e27542aSGleb Smirnoff 		d->bge_addr.bge_addr_hi = BGE_ADDR_HI(segs[i].ds_addr);
34197e27542aSGleb Smirnoff 		d->bge_len = segs[i].ds_len;
34207e27542aSGleb Smirnoff 		d->bge_flags = csum_flags;
34217e27542aSGleb Smirnoff 		if (i == nsegs - 1)
34227e27542aSGleb Smirnoff 			break;
34237e27542aSGleb Smirnoff 		BGE_INC(idx, BGE_TX_RING_CNT);
34247e27542aSGleb Smirnoff 	}
34257e27542aSGleb Smirnoff 
34267e27542aSGleb Smirnoff 	/* Mark the last segment as end of packet... */
34277e27542aSGleb Smirnoff 	d->bge_flags |= BGE_TXBDFLAG_END;
3428676ad2c9SGleb Smirnoff 
34297e27542aSGleb Smirnoff 	/* ... and put VLAN tag into first segment.  */
34307e27542aSGleb Smirnoff 	d = &sc->bge_ldata.bge_tx_ring[*txidx];
34314e35d186SJung-uk Kim #if __FreeBSD_version > 700022
343278ba57b9SAndre Oppermann 	if (m->m_flags & M_VLANTAG) {
34337e27542aSGleb Smirnoff 		d->bge_flags |= BGE_TXBDFLAG_VLAN_TAG;
343478ba57b9SAndre Oppermann 		d->bge_vlan_tag = m->m_pkthdr.ether_vtag;
34357e27542aSGleb Smirnoff 	} else
34367e27542aSGleb Smirnoff 		d->bge_vlan_tag = 0;
34374e35d186SJung-uk Kim #else
34384e35d186SJung-uk Kim 	{
34394e35d186SJung-uk Kim 		struct m_tag		*mtag;
34404e35d186SJung-uk Kim 
34414e35d186SJung-uk Kim 		if ((mtag = VLAN_OUTPUT_TAG(sc->bge_ifp, m)) != NULL) {
34424e35d186SJung-uk Kim 			d->bge_flags |= BGE_TXBDFLAG_VLAN_TAG;
34434e35d186SJung-uk Kim 			d->bge_vlan_tag = VLAN_TAG_VALUE(mtag);
34444e35d186SJung-uk Kim 		} else
34454e35d186SJung-uk Kim 			d->bge_vlan_tag = 0;
34464e35d186SJung-uk Kim 	}
34474e35d186SJung-uk Kim #endif
3448f41ac2beSBill Paul 
3449f41ac2beSBill Paul 	/*
3450f41ac2beSBill Paul 	 * Insure that the map for this transmission
3451f41ac2beSBill Paul 	 * is placed at the array index of the last descriptor
3452f41ac2beSBill Paul 	 * in this chain.
3453f41ac2beSBill Paul 	 */
34547e27542aSGleb Smirnoff 	sc->bge_cdata.bge_tx_dmamap[*txidx] = sc->bge_cdata.bge_tx_dmamap[idx];
34557e27542aSGleb Smirnoff 	sc->bge_cdata.bge_tx_dmamap[idx] = map;
3456676ad2c9SGleb Smirnoff 	sc->bge_cdata.bge_tx_chain[idx] = m;
34577e27542aSGleb Smirnoff 	sc->bge_txcnt += nsegs;
345895d67482SBill Paul 
34597e27542aSGleb Smirnoff 	BGE_INC(idx, BGE_TX_RING_CNT);
34607e27542aSGleb Smirnoff 	*txidx = idx;
346195d67482SBill Paul 
346295d67482SBill Paul 	return (0);
346395d67482SBill Paul }
346495d67482SBill Paul 
346595d67482SBill Paul /*
346695d67482SBill Paul  * Main transmit routine. To avoid having to do mbuf copies, we put pointers
346795d67482SBill Paul  * to the mbuf data regions directly in the transmit descriptors.
346895d67482SBill Paul  */
346995d67482SBill Paul static void
34703f74909aSGleb Smirnoff bge_start_locked(struct ifnet *ifp)
347195d67482SBill Paul {
347295d67482SBill Paul 	struct bge_softc *sc;
347395d67482SBill Paul 	struct mbuf *m_head = NULL;
347414bbd30fSGleb Smirnoff 	uint32_t prodidx;
3475303a718cSDag-Erling Smørgrav 	int count = 0;
347695d67482SBill Paul 
347795d67482SBill Paul 	sc = ifp->if_softc;
347895d67482SBill Paul 
3479dab5cd05SOleg Bulyzhin 	if (!sc->bge_link || IFQ_DRV_IS_EMPTY(&ifp->if_snd))
348095d67482SBill Paul 		return;
348195d67482SBill Paul 
348214bbd30fSGleb Smirnoff 	prodidx = sc->bge_tx_prodidx;
348395d67482SBill Paul 
348495d67482SBill Paul 	while(sc->bge_cdata.bge_tx_chain[prodidx] == NULL) {
34854d665c4dSDag-Erling Smørgrav 		IFQ_DRV_DEQUEUE(&ifp->if_snd, m_head);
348695d67482SBill Paul 		if (m_head == NULL)
348795d67482SBill Paul 			break;
348895d67482SBill Paul 
348995d67482SBill Paul 		/*
349095d67482SBill Paul 		 * XXX
3491b874fdd4SYaroslav Tykhiy 		 * The code inside the if() block is never reached since we
3492b874fdd4SYaroslav Tykhiy 		 * must mark CSUM_IP_FRAGS in our if_hwassist to start getting
3493b874fdd4SYaroslav Tykhiy 		 * requests to checksum TCP/UDP in a fragmented packet.
3494b874fdd4SYaroslav Tykhiy 		 *
3495b874fdd4SYaroslav Tykhiy 		 * XXX
349695d67482SBill Paul 		 * safety overkill.  If this is a fragmented packet chain
349795d67482SBill Paul 		 * with delayed TCP/UDP checksums, then only encapsulate
349895d67482SBill Paul 		 * it if we have enough descriptors to handle the entire
349995d67482SBill Paul 		 * chain at once.
350095d67482SBill Paul 		 * (paranoia -- may not actually be needed)
350195d67482SBill Paul 		 */
350295d67482SBill Paul 		if (m_head->m_flags & M_FIRSTFRAG &&
350395d67482SBill Paul 		    m_head->m_pkthdr.csum_flags & (CSUM_DELAY_DATA)) {
350495d67482SBill Paul 			if ((BGE_TX_RING_CNT - sc->bge_txcnt) <
350595d67482SBill Paul 			    m_head->m_pkthdr.csum_data + 16) {
35064d665c4dSDag-Erling Smørgrav 				IFQ_DRV_PREPEND(&ifp->if_snd, m_head);
350713f4c340SRobert Watson 				ifp->if_drv_flags |= IFF_DRV_OACTIVE;
350895d67482SBill Paul 				break;
350995d67482SBill Paul 			}
351095d67482SBill Paul 		}
351195d67482SBill Paul 
351295d67482SBill Paul 		/*
351395d67482SBill Paul 		 * Pack the data into the transmit ring. If we
351495d67482SBill Paul 		 * don't have room, set the OACTIVE flag and wait
351595d67482SBill Paul 		 * for the NIC to drain the ring.
351695d67482SBill Paul 		 */
3517676ad2c9SGleb Smirnoff 		if (bge_encap(sc, &m_head, &prodidx)) {
3518676ad2c9SGleb Smirnoff 			if (m_head == NULL)
3519676ad2c9SGleb Smirnoff 				break;
35204d665c4dSDag-Erling Smørgrav 			IFQ_DRV_PREPEND(&ifp->if_snd, m_head);
352113f4c340SRobert Watson 			ifp->if_drv_flags |= IFF_DRV_OACTIVE;
352295d67482SBill Paul 			break;
352395d67482SBill Paul 		}
3524303a718cSDag-Erling Smørgrav 		++count;
352595d67482SBill Paul 
352695d67482SBill Paul 		/*
352795d67482SBill Paul 		 * If there's a BPF listener, bounce a copy of this frame
352895d67482SBill Paul 		 * to him.
352995d67482SBill Paul 		 */
35304e35d186SJung-uk Kim #ifdef ETHER_BPF_MTAP
353145ee6ab3SJung-uk Kim 		ETHER_BPF_MTAP(ifp, m_head);
35324e35d186SJung-uk Kim #else
35334e35d186SJung-uk Kim 		BPF_MTAP(ifp, m_head);
35344e35d186SJung-uk Kim #endif
353595d67482SBill Paul 	}
353695d67482SBill Paul 
35373f74909aSGleb Smirnoff 	if (count == 0)
35383f74909aSGleb Smirnoff 		/* No packets were dequeued. */
3539303a718cSDag-Erling Smørgrav 		return;
3540303a718cSDag-Erling Smørgrav 
35413f74909aSGleb Smirnoff 	/* Transmit. */
354295d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_TX_HOST_PROD0_LO, prodidx);
35433927098fSPaul Saab 	/* 5700 b2 errata */
3544e0ced696SPaul Saab 	if (sc->bge_chiprev == BGE_CHIPREV_5700_BX)
35453927098fSPaul Saab 		CSR_WRITE_4(sc, BGE_MBX_TX_HOST_PROD0_LO, prodidx);
354695d67482SBill Paul 
354714bbd30fSGleb Smirnoff 	sc->bge_tx_prodidx = prodidx;
354814bbd30fSGleb Smirnoff 
354995d67482SBill Paul 	/*
355095d67482SBill Paul 	 * Set a timeout in case the chip goes out to lunch.
355195d67482SBill Paul 	 */
3552b74e67fbSGleb Smirnoff 	sc->bge_timer = 5;
355395d67482SBill Paul }
355495d67482SBill Paul 
35550f9bd73bSSam Leffler /*
35560f9bd73bSSam Leffler  * Main transmit routine. To avoid having to do mbuf copies, we put pointers
35570f9bd73bSSam Leffler  * to the mbuf data regions directly in the transmit descriptors.
35580f9bd73bSSam Leffler  */
355995d67482SBill Paul static void
35603f74909aSGleb Smirnoff bge_start(struct ifnet *ifp)
356195d67482SBill Paul {
35620f9bd73bSSam Leffler 	struct bge_softc *sc;
35630f9bd73bSSam Leffler 
35640f9bd73bSSam Leffler 	sc = ifp->if_softc;
35650f9bd73bSSam Leffler 	BGE_LOCK(sc);
35660f9bd73bSSam Leffler 	bge_start_locked(ifp);
35670f9bd73bSSam Leffler 	BGE_UNLOCK(sc);
35680f9bd73bSSam Leffler }
35690f9bd73bSSam Leffler 
35700f9bd73bSSam Leffler static void
35713f74909aSGleb Smirnoff bge_init_locked(struct bge_softc *sc)
35720f9bd73bSSam Leffler {
357395d67482SBill Paul 	struct ifnet *ifp;
35743f74909aSGleb Smirnoff 	uint16_t *m;
357595d67482SBill Paul 
35760f9bd73bSSam Leffler 	BGE_LOCK_ASSERT(sc);
357795d67482SBill Paul 
3578fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp;
357995d67482SBill Paul 
358013f4c340SRobert Watson 	if (ifp->if_drv_flags & IFF_DRV_RUNNING)
358195d67482SBill Paul 		return;
358295d67482SBill Paul 
358395d67482SBill Paul 	/* Cancel pending I/O and flush buffers. */
358495d67482SBill Paul 	bge_stop(sc);
35858cb1383cSDoug Ambrisko 
35868cb1383cSDoug Ambrisko 	bge_stop_fw(sc);
35878cb1383cSDoug Ambrisko 	bge_sig_pre_reset(sc, BGE_RESET_START);
358895d67482SBill Paul 	bge_reset(sc);
35898cb1383cSDoug Ambrisko 	bge_sig_legacy(sc, BGE_RESET_START);
35908cb1383cSDoug Ambrisko 	bge_sig_post_reset(sc, BGE_RESET_START);
35918cb1383cSDoug Ambrisko 
359295d67482SBill Paul 	bge_chipinit(sc);
359395d67482SBill Paul 
359495d67482SBill Paul 	/*
359595d67482SBill Paul 	 * Init the various state machines, ring
359695d67482SBill Paul 	 * control blocks and firmware.
359795d67482SBill Paul 	 */
359895d67482SBill Paul 	if (bge_blockinit(sc)) {
3599fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "initialization failure\n");
360095d67482SBill Paul 		return;
360195d67482SBill Paul 	}
360295d67482SBill Paul 
3603fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp;
360495d67482SBill Paul 
360595d67482SBill Paul 	/* Specify MTU. */
360695d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RX_MTU, ifp->if_mtu +
3607859c6c7dSBill Paul 	    ETHER_HDR_LEN + ETHER_CRC_LEN + ETHER_VLAN_ENCAP_LEN);
360895d67482SBill Paul 
360995d67482SBill Paul 	/* Load our MAC address. */
36103f74909aSGleb Smirnoff 	m = (uint16_t *)IF_LLADDR(sc->bge_ifp);
361195d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MAC_ADDR1_LO, htons(m[0]));
361295d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MAC_ADDR1_HI, (htons(m[1]) << 16) | htons(m[2]));
361395d67482SBill Paul 
36143e9b1bcaSJung-uk Kim 	/* Program promiscuous mode. */
36153e9b1bcaSJung-uk Kim 	bge_setpromisc(sc);
361695d67482SBill Paul 
361795d67482SBill Paul 	/* Program multicast filter. */
361895d67482SBill Paul 	bge_setmulti(sc);
361995d67482SBill Paul 
362095d67482SBill Paul 	/* Init RX ring. */
362195d67482SBill Paul 	bge_init_rx_ring_std(sc);
362295d67482SBill Paul 
36230434d1b8SBill Paul 	/*
36240434d1b8SBill Paul 	 * Workaround for a bug in 5705 ASIC rev A0. Poll the NIC's
36250434d1b8SBill Paul 	 * memory to insure that the chip has in fact read the first
36260434d1b8SBill Paul 	 * entry of the ring.
36270434d1b8SBill Paul 	 */
36280434d1b8SBill Paul 	if (sc->bge_chipid == BGE_CHIPID_BCM5705_A0) {
36293f74909aSGleb Smirnoff 		uint32_t		v, i;
36300434d1b8SBill Paul 		for (i = 0; i < 10; i++) {
36310434d1b8SBill Paul 			DELAY(20);
36320434d1b8SBill Paul 			v = bge_readmem_ind(sc, BGE_STD_RX_RINGS + 8);
36330434d1b8SBill Paul 			if (v == (MCLBYTES - ETHER_ALIGN))
36340434d1b8SBill Paul 				break;
36350434d1b8SBill Paul 		}
36360434d1b8SBill Paul 		if (i == 10)
3637fe806fdaSPyun YongHyeon 			device_printf (sc->bge_dev,
3638fe806fdaSPyun YongHyeon 			    "5705 A0 chip failed to load RX ring\n");
36390434d1b8SBill Paul 	}
36400434d1b8SBill Paul 
364195d67482SBill Paul 	/* Init jumbo RX ring. */
364295d67482SBill Paul 	if (ifp->if_mtu > (ETHERMTU + ETHER_HDR_LEN + ETHER_CRC_LEN))
364395d67482SBill Paul 		bge_init_rx_ring_jumbo(sc);
364495d67482SBill Paul 
36453f74909aSGleb Smirnoff 	/* Init our RX return ring index. */
364695d67482SBill Paul 	sc->bge_rx_saved_considx = 0;
364795d67482SBill Paul 
36487e6e2507SJung-uk Kim 	/* Init our RX/TX stat counters. */
36497e6e2507SJung-uk Kim 	sc->bge_rx_discards = sc->bge_tx_discards = sc->bge_tx_collisions = 0;
36507e6e2507SJung-uk Kim 
365195d67482SBill Paul 	/* Init TX ring. */
365295d67482SBill Paul 	bge_init_tx_ring(sc);
365395d67482SBill Paul 
36543f74909aSGleb Smirnoff 	/* Turn on transmitter. */
365595d67482SBill Paul 	BGE_SETBIT(sc, BGE_TX_MODE, BGE_TXMODE_ENABLE);
365695d67482SBill Paul 
36573f74909aSGleb Smirnoff 	/* Turn on receiver. */
365895d67482SBill Paul 	BGE_SETBIT(sc, BGE_RX_MODE, BGE_RXMODE_ENABLE);
365995d67482SBill Paul 
366095d67482SBill Paul 	/* Tell firmware we're alive. */
366195d67482SBill Paul 	BGE_SETBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
366295d67482SBill Paul 
366375719184SGleb Smirnoff #ifdef DEVICE_POLLING
366475719184SGleb Smirnoff 	/* Disable interrupts if we are polling. */
366575719184SGleb Smirnoff 	if (ifp->if_capenable & IFCAP_POLLING) {
366675719184SGleb Smirnoff 		BGE_SETBIT(sc, BGE_PCI_MISC_CTL,
366775719184SGleb Smirnoff 		    BGE_PCIMISCCTL_MASK_PCI_INTR);
366875719184SGleb Smirnoff 		CSR_WRITE_4(sc, BGE_MBX_IRQ0_LO, 1);
366975719184SGleb Smirnoff 	} else
367075719184SGleb Smirnoff #endif
367175719184SGleb Smirnoff 
367295d67482SBill Paul 	/* Enable host interrupts. */
367375719184SGleb Smirnoff 	{
367495d67482SBill Paul 	BGE_SETBIT(sc, BGE_PCI_MISC_CTL, BGE_PCIMISCCTL_CLEAR_INTA);
367595d67482SBill Paul 	BGE_CLRBIT(sc, BGE_PCI_MISC_CTL, BGE_PCIMISCCTL_MASK_PCI_INTR);
367695d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_IRQ0_LO, 0);
367775719184SGleb Smirnoff 	}
367895d67482SBill Paul 
367967d5e043SOleg Bulyzhin 	bge_ifmedia_upd_locked(ifp);
368095d67482SBill Paul 
368113f4c340SRobert Watson 	ifp->if_drv_flags |= IFF_DRV_RUNNING;
368213f4c340SRobert Watson 	ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
368395d67482SBill Paul 
36840f9bd73bSSam Leffler 	callout_reset(&sc->bge_stat_ch, hz, bge_tick, sc);
36850f9bd73bSSam Leffler }
36860f9bd73bSSam Leffler 
36870f9bd73bSSam Leffler static void
36883f74909aSGleb Smirnoff bge_init(void *xsc)
36890f9bd73bSSam Leffler {
36900f9bd73bSSam Leffler 	struct bge_softc *sc = xsc;
36910f9bd73bSSam Leffler 
36920f9bd73bSSam Leffler 	BGE_LOCK(sc);
36930f9bd73bSSam Leffler 	bge_init_locked(sc);
36940f9bd73bSSam Leffler 	BGE_UNLOCK(sc);
369595d67482SBill Paul }
369695d67482SBill Paul 
369795d67482SBill Paul /*
369895d67482SBill Paul  * Set media options.
369995d67482SBill Paul  */
370095d67482SBill Paul static int
37013f74909aSGleb Smirnoff bge_ifmedia_upd(struct ifnet *ifp)
370295d67482SBill Paul {
370367d5e043SOleg Bulyzhin 	struct bge_softc *sc = ifp->if_softc;
370467d5e043SOleg Bulyzhin 	int res;
370567d5e043SOleg Bulyzhin 
370667d5e043SOleg Bulyzhin 	BGE_LOCK(sc);
370767d5e043SOleg Bulyzhin 	res = bge_ifmedia_upd_locked(ifp);
370867d5e043SOleg Bulyzhin 	BGE_UNLOCK(sc);
370967d5e043SOleg Bulyzhin 
371067d5e043SOleg Bulyzhin 	return (res);
371167d5e043SOleg Bulyzhin }
371267d5e043SOleg Bulyzhin 
371367d5e043SOleg Bulyzhin static int
371467d5e043SOleg Bulyzhin bge_ifmedia_upd_locked(struct ifnet *ifp)
371567d5e043SOleg Bulyzhin {
371667d5e043SOleg Bulyzhin 	struct bge_softc *sc = ifp->if_softc;
371795d67482SBill Paul 	struct mii_data *mii;
371895d67482SBill Paul 	struct ifmedia *ifm;
371995d67482SBill Paul 
372067d5e043SOleg Bulyzhin 	BGE_LOCK_ASSERT(sc);
372167d5e043SOleg Bulyzhin 
372295d67482SBill Paul 	ifm = &sc->bge_ifmedia;
372395d67482SBill Paul 
372495d67482SBill Paul 	/* If this is a 1000baseX NIC, enable the TBI port. */
3725652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_TBI) {
372695d67482SBill Paul 		if (IFM_TYPE(ifm->ifm_media) != IFM_ETHER)
372795d67482SBill Paul 			return (EINVAL);
372895d67482SBill Paul 		switch(IFM_SUBTYPE(ifm->ifm_media)) {
372995d67482SBill Paul 		case IFM_AUTO:
3730ff50922bSDoug White 			/*
3731ff50922bSDoug White 			 * The BCM5704 ASIC appears to have a special
3732ff50922bSDoug White 			 * mechanism for programming the autoneg
3733ff50922bSDoug White 			 * advertisement registers in TBI mode.
3734ff50922bSDoug White 			 */
3735c4529f41SMichael Reifenberger 			if (bge_fake_autoneg == 0 &&
3736c4529f41SMichael Reifenberger 			    sc->bge_asicrev == BGE_ASICREV_BCM5704) {
3737ff50922bSDoug White 				uint32_t sgdig;
3738ff50922bSDoug White 				CSR_WRITE_4(sc, BGE_TX_TBI_AUTONEG, 0);
3739ff50922bSDoug White 				sgdig = CSR_READ_4(sc, BGE_SGDIG_CFG);
3740ff50922bSDoug White 				sgdig |= BGE_SGDIGCFG_AUTO |
3741ff50922bSDoug White 				    BGE_SGDIGCFG_PAUSE_CAP |
3742ff50922bSDoug White 				    BGE_SGDIGCFG_ASYM_PAUSE;
3743ff50922bSDoug White 				CSR_WRITE_4(sc, BGE_SGDIG_CFG,
3744ff50922bSDoug White 				    sgdig | BGE_SGDIGCFG_SEND);
3745ff50922bSDoug White 				DELAY(5);
3746ff50922bSDoug White 				CSR_WRITE_4(sc, BGE_SGDIG_CFG, sgdig);
3747ff50922bSDoug White 			}
374895d67482SBill Paul 			break;
374995d67482SBill Paul 		case IFM_1000_SX:
375095d67482SBill Paul 			if ((ifm->ifm_media & IFM_GMASK) == IFM_FDX) {
375195d67482SBill Paul 				BGE_CLRBIT(sc, BGE_MAC_MODE,
375295d67482SBill Paul 				    BGE_MACMODE_HALF_DUPLEX);
375395d67482SBill Paul 			} else {
375495d67482SBill Paul 				BGE_SETBIT(sc, BGE_MAC_MODE,
375595d67482SBill Paul 				    BGE_MACMODE_HALF_DUPLEX);
375695d67482SBill Paul 			}
375795d67482SBill Paul 			break;
375895d67482SBill Paul 		default:
375995d67482SBill Paul 			return (EINVAL);
376095d67482SBill Paul 		}
376195d67482SBill Paul 		return (0);
376295d67482SBill Paul 	}
376395d67482SBill Paul 
37641493e883SOleg Bulyzhin 	sc->bge_link_evt++;
376595d67482SBill Paul 	mii = device_get_softc(sc->bge_miibus);
376695d67482SBill Paul 	if (mii->mii_instance) {
376795d67482SBill Paul 		struct mii_softc *miisc;
376895d67482SBill Paul 		for (miisc = LIST_FIRST(&mii->mii_phys); miisc != NULL;
376995d67482SBill Paul 		    miisc = LIST_NEXT(miisc, mii_list))
377095d67482SBill Paul 			mii_phy_reset(miisc);
377195d67482SBill Paul 	}
377295d67482SBill Paul 	mii_mediachg(mii);
377395d67482SBill Paul 
377495d67482SBill Paul 	return (0);
377595d67482SBill Paul }
377695d67482SBill Paul 
377795d67482SBill Paul /*
377895d67482SBill Paul  * Report current media status.
377995d67482SBill Paul  */
378095d67482SBill Paul static void
37813f74909aSGleb Smirnoff bge_ifmedia_sts(struct ifnet *ifp, struct ifmediareq *ifmr)
378295d67482SBill Paul {
378367d5e043SOleg Bulyzhin 	struct bge_softc *sc = ifp->if_softc;
378495d67482SBill Paul 	struct mii_data *mii;
378595d67482SBill Paul 
378667d5e043SOleg Bulyzhin 	BGE_LOCK(sc);
378795d67482SBill Paul 
3788652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_TBI) {
378995d67482SBill Paul 		ifmr->ifm_status = IFM_AVALID;
379095d67482SBill Paul 		ifmr->ifm_active = IFM_ETHER;
379195d67482SBill Paul 		if (CSR_READ_4(sc, BGE_MAC_STS) &
379295d67482SBill Paul 		    BGE_MACSTAT_TBI_PCS_SYNCHED)
379395d67482SBill Paul 			ifmr->ifm_status |= IFM_ACTIVE;
37944c0da0ffSGleb Smirnoff 		else {
37954c0da0ffSGleb Smirnoff 			ifmr->ifm_active |= IFM_NONE;
379667d5e043SOleg Bulyzhin 			BGE_UNLOCK(sc);
37974c0da0ffSGleb Smirnoff 			return;
37984c0da0ffSGleb Smirnoff 		}
379995d67482SBill Paul 		ifmr->ifm_active |= IFM_1000_SX;
380095d67482SBill Paul 		if (CSR_READ_4(sc, BGE_MAC_MODE) & BGE_MACMODE_HALF_DUPLEX)
380195d67482SBill Paul 			ifmr->ifm_active |= IFM_HDX;
380295d67482SBill Paul 		else
380395d67482SBill Paul 			ifmr->ifm_active |= IFM_FDX;
380467d5e043SOleg Bulyzhin 		BGE_UNLOCK(sc);
380595d67482SBill Paul 		return;
380695d67482SBill Paul 	}
380795d67482SBill Paul 
380895d67482SBill Paul 	mii = device_get_softc(sc->bge_miibus);
380995d67482SBill Paul 	mii_pollstat(mii);
381095d67482SBill Paul 	ifmr->ifm_active = mii->mii_media_active;
381195d67482SBill Paul 	ifmr->ifm_status = mii->mii_media_status;
381267d5e043SOleg Bulyzhin 
381367d5e043SOleg Bulyzhin 	BGE_UNLOCK(sc);
381495d67482SBill Paul }
381595d67482SBill Paul 
381695d67482SBill Paul static int
38173f74909aSGleb Smirnoff bge_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
381895d67482SBill Paul {
381995d67482SBill Paul 	struct bge_softc *sc = ifp->if_softc;
382095d67482SBill Paul 	struct ifreq *ifr = (struct ifreq *) data;
382195d67482SBill Paul 	struct mii_data *mii;
3822f9004b6dSJung-uk Kim 	int flags, mask, error = 0;
382395d67482SBill Paul 
382495d67482SBill Paul 	switch (command) {
382595d67482SBill Paul 	case SIOCSIFMTU:
38264c0da0ffSGleb Smirnoff 		if (ifr->ifr_mtu < ETHERMIN ||
38274c0da0ffSGleb Smirnoff 		    ((BGE_IS_JUMBO_CAPABLE(sc)) &&
38284c0da0ffSGleb Smirnoff 		    ifr->ifr_mtu > BGE_JUMBO_MTU) ||
38294c0da0ffSGleb Smirnoff 		    ((!BGE_IS_JUMBO_CAPABLE(sc)) &&
38304c0da0ffSGleb Smirnoff 		    ifr->ifr_mtu > ETHERMTU))
383195d67482SBill Paul 			error = EINVAL;
38324c0da0ffSGleb Smirnoff 		else if (ifp->if_mtu != ifr->ifr_mtu) {
383395d67482SBill Paul 			ifp->if_mtu = ifr->ifr_mtu;
383413f4c340SRobert Watson 			ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
383595d67482SBill Paul 			bge_init(sc);
383695d67482SBill Paul 		}
383795d67482SBill Paul 		break;
383895d67482SBill Paul 	case SIOCSIFFLAGS:
38390f9bd73bSSam Leffler 		BGE_LOCK(sc);
384095d67482SBill Paul 		if (ifp->if_flags & IFF_UP) {
384195d67482SBill Paul 			/*
384295d67482SBill Paul 			 * If only the state of the PROMISC flag changed,
384395d67482SBill Paul 			 * then just use the 'set promisc mode' command
384495d67482SBill Paul 			 * instead of reinitializing the entire NIC. Doing
384595d67482SBill Paul 			 * a full re-init means reloading the firmware and
384695d67482SBill Paul 			 * waiting for it to start up, which may take a
3847d183af7fSRuslan Ermilov 			 * second or two.  Similarly for ALLMULTI.
384895d67482SBill Paul 			 */
3849f9004b6dSJung-uk Kim 			if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
3850f9004b6dSJung-uk Kim 				flags = ifp->if_flags ^ sc->bge_if_flags;
38513e9b1bcaSJung-uk Kim 				if (flags & IFF_PROMISC)
38523e9b1bcaSJung-uk Kim 					bge_setpromisc(sc);
3853f9004b6dSJung-uk Kim 				if (flags & IFF_ALLMULTI)
3854d183af7fSRuslan Ermilov 					bge_setmulti(sc);
385595d67482SBill Paul 			} else
38560f9bd73bSSam Leffler 				bge_init_locked(sc);
385795d67482SBill Paul 		} else {
385813f4c340SRobert Watson 			if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
385995d67482SBill Paul 				bge_stop(sc);
386095d67482SBill Paul 			}
386195d67482SBill Paul 		}
386295d67482SBill Paul 		sc->bge_if_flags = ifp->if_flags;
38630f9bd73bSSam Leffler 		BGE_UNLOCK(sc);
386495d67482SBill Paul 		error = 0;
386595d67482SBill Paul 		break;
386695d67482SBill Paul 	case SIOCADDMULTI:
386795d67482SBill Paul 	case SIOCDELMULTI:
386813f4c340SRobert Watson 		if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
38690f9bd73bSSam Leffler 			BGE_LOCK(sc);
387095d67482SBill Paul 			bge_setmulti(sc);
38710f9bd73bSSam Leffler 			BGE_UNLOCK(sc);
387295d67482SBill Paul 			error = 0;
387395d67482SBill Paul 		}
387495d67482SBill Paul 		break;
387595d67482SBill Paul 	case SIOCSIFMEDIA:
387695d67482SBill Paul 	case SIOCGIFMEDIA:
3877652ae483SGleb Smirnoff 		if (sc->bge_flags & BGE_FLAG_TBI) {
387895d67482SBill Paul 			error = ifmedia_ioctl(ifp, ifr,
387995d67482SBill Paul 			    &sc->bge_ifmedia, command);
388095d67482SBill Paul 		} else {
388195d67482SBill Paul 			mii = device_get_softc(sc->bge_miibus);
388295d67482SBill Paul 			error = ifmedia_ioctl(ifp, ifr,
388395d67482SBill Paul 			    &mii->mii_media, command);
388495d67482SBill Paul 		}
388595d67482SBill Paul 		break;
388695d67482SBill Paul 	case SIOCSIFCAP:
388795d67482SBill Paul 		mask = ifr->ifr_reqcap ^ ifp->if_capenable;
388875719184SGleb Smirnoff #ifdef DEVICE_POLLING
388975719184SGleb Smirnoff 		if (mask & IFCAP_POLLING) {
389075719184SGleb Smirnoff 			if (ifr->ifr_reqcap & IFCAP_POLLING) {
389175719184SGleb Smirnoff 				error = ether_poll_register(bge_poll, ifp);
389275719184SGleb Smirnoff 				if (error)
389375719184SGleb Smirnoff 					return (error);
389475719184SGleb Smirnoff 				BGE_LOCK(sc);
389575719184SGleb Smirnoff 				BGE_SETBIT(sc, BGE_PCI_MISC_CTL,
389675719184SGleb Smirnoff 				    BGE_PCIMISCCTL_MASK_PCI_INTR);
389775719184SGleb Smirnoff 				CSR_WRITE_4(sc, BGE_MBX_IRQ0_LO, 1);
389875719184SGleb Smirnoff 				ifp->if_capenable |= IFCAP_POLLING;
389975719184SGleb Smirnoff 				BGE_UNLOCK(sc);
390075719184SGleb Smirnoff 			} else {
390175719184SGleb Smirnoff 				error = ether_poll_deregister(ifp);
390275719184SGleb Smirnoff 				/* Enable interrupt even in error case */
390375719184SGleb Smirnoff 				BGE_LOCK(sc);
390475719184SGleb Smirnoff 				BGE_CLRBIT(sc, BGE_PCI_MISC_CTL,
390575719184SGleb Smirnoff 				    BGE_PCIMISCCTL_MASK_PCI_INTR);
390675719184SGleb Smirnoff 				CSR_WRITE_4(sc, BGE_MBX_IRQ0_LO, 0);
390775719184SGleb Smirnoff 				ifp->if_capenable &= ~IFCAP_POLLING;
390875719184SGleb Smirnoff 				BGE_UNLOCK(sc);
390975719184SGleb Smirnoff 			}
391075719184SGleb Smirnoff 		}
391175719184SGleb Smirnoff #endif
3912d375e524SGleb Smirnoff 		if (mask & IFCAP_HWCSUM) {
3913d375e524SGleb Smirnoff 			ifp->if_capenable ^= IFCAP_HWCSUM;
3914d375e524SGleb Smirnoff 			if (IFCAP_HWCSUM & ifp->if_capenable &&
3915d375e524SGleb Smirnoff 			    IFCAP_HWCSUM & ifp->if_capabilities)
3916b874fdd4SYaroslav Tykhiy 				ifp->if_hwassist = BGE_CSUM_FEATURES;
391795d67482SBill Paul 			else
3918b874fdd4SYaroslav Tykhiy 				ifp->if_hwassist = 0;
39194e35d186SJung-uk Kim #ifdef VLAN_CAPABILITIES
3920479b23b7SGleb Smirnoff 			VLAN_CAPABILITIES(ifp);
39214e35d186SJung-uk Kim #endif
392295d67482SBill Paul 		}
392395d67482SBill Paul 		break;
392495d67482SBill Paul 	default:
3925673d9191SSam Leffler 		error = ether_ioctl(ifp, command, data);
392695d67482SBill Paul 		break;
392795d67482SBill Paul 	}
392895d67482SBill Paul 
392995d67482SBill Paul 	return (error);
393095d67482SBill Paul }
393195d67482SBill Paul 
393295d67482SBill Paul static void
3933b74e67fbSGleb Smirnoff bge_watchdog(struct bge_softc *sc)
393495d67482SBill Paul {
3935b74e67fbSGleb Smirnoff 	struct ifnet *ifp;
393695d67482SBill Paul 
3937b74e67fbSGleb Smirnoff 	BGE_LOCK_ASSERT(sc);
3938b74e67fbSGleb Smirnoff 
3939b74e67fbSGleb Smirnoff 	if (sc->bge_timer == 0 || --sc->bge_timer)
3940b74e67fbSGleb Smirnoff 		return;
3941b74e67fbSGleb Smirnoff 
3942b74e67fbSGleb Smirnoff 	ifp = sc->bge_ifp;
394395d67482SBill Paul 
3944fe806fdaSPyun YongHyeon 	if_printf(ifp, "watchdog timeout -- resetting\n");
394595d67482SBill Paul 
394613f4c340SRobert Watson 	ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
3947426742bfSGleb Smirnoff 	bge_init_locked(sc);
394895d67482SBill Paul 
394995d67482SBill Paul 	ifp->if_oerrors++;
395095d67482SBill Paul }
395195d67482SBill Paul 
395295d67482SBill Paul /*
395395d67482SBill Paul  * Stop the adapter and free any mbufs allocated to the
395495d67482SBill Paul  * RX and TX lists.
395595d67482SBill Paul  */
395695d67482SBill Paul static void
39573f74909aSGleb Smirnoff bge_stop(struct bge_softc *sc)
395895d67482SBill Paul {
395995d67482SBill Paul 	struct ifnet *ifp;
396095d67482SBill Paul 	struct ifmedia_entry *ifm;
396195d67482SBill Paul 	struct mii_data *mii = NULL;
396295d67482SBill Paul 	int mtmp, itmp;
396395d67482SBill Paul 
39640f9bd73bSSam Leffler 	BGE_LOCK_ASSERT(sc);
39650f9bd73bSSam Leffler 
3966fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp;
396795d67482SBill Paul 
3968652ae483SGleb Smirnoff 	if ((sc->bge_flags & BGE_FLAG_TBI) == 0)
396995d67482SBill Paul 		mii = device_get_softc(sc->bge_miibus);
397095d67482SBill Paul 
39710f9bd73bSSam Leffler 	callout_stop(&sc->bge_stat_ch);
397295d67482SBill Paul 
397395d67482SBill Paul 	/*
39743f74909aSGleb Smirnoff 	 * Disable all of the receiver blocks.
397595d67482SBill Paul 	 */
397695d67482SBill Paul 	BGE_CLRBIT(sc, BGE_RX_MODE, BGE_RXMODE_ENABLE);
397795d67482SBill Paul 	BGE_CLRBIT(sc, BGE_RBDI_MODE, BGE_RBDIMODE_ENABLE);
397895d67482SBill Paul 	BGE_CLRBIT(sc, BGE_RXLP_MODE, BGE_RXLPMODE_ENABLE);
39797ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc)))
398095d67482SBill Paul 		BGE_CLRBIT(sc, BGE_RXLS_MODE, BGE_RXLSMODE_ENABLE);
398195d67482SBill Paul 	BGE_CLRBIT(sc, BGE_RDBDI_MODE, BGE_RBDIMODE_ENABLE);
398295d67482SBill Paul 	BGE_CLRBIT(sc, BGE_RDC_MODE, BGE_RDCMODE_ENABLE);
398395d67482SBill Paul 	BGE_CLRBIT(sc, BGE_RBDC_MODE, BGE_RBDCMODE_ENABLE);
398495d67482SBill Paul 
398595d67482SBill Paul 	/*
39863f74909aSGleb Smirnoff 	 * Disable all of the transmit blocks.
398795d67482SBill Paul 	 */
398895d67482SBill Paul 	BGE_CLRBIT(sc, BGE_SRS_MODE, BGE_SRSMODE_ENABLE);
398995d67482SBill Paul 	BGE_CLRBIT(sc, BGE_SBDI_MODE, BGE_SBDIMODE_ENABLE);
399095d67482SBill Paul 	BGE_CLRBIT(sc, BGE_SDI_MODE, BGE_SDIMODE_ENABLE);
399195d67482SBill Paul 	BGE_CLRBIT(sc, BGE_RDMA_MODE, BGE_RDMAMODE_ENABLE);
399295d67482SBill Paul 	BGE_CLRBIT(sc, BGE_SDC_MODE, BGE_SDCMODE_ENABLE);
39937ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc)))
399495d67482SBill Paul 		BGE_CLRBIT(sc, BGE_DMAC_MODE, BGE_DMACMODE_ENABLE);
399595d67482SBill Paul 	BGE_CLRBIT(sc, BGE_SBDC_MODE, BGE_SBDCMODE_ENABLE);
399695d67482SBill Paul 
399795d67482SBill Paul 	/*
399895d67482SBill Paul 	 * Shut down all of the memory managers and related
399995d67482SBill Paul 	 * state machines.
400095d67482SBill Paul 	 */
400195d67482SBill Paul 	BGE_CLRBIT(sc, BGE_HCC_MODE, BGE_HCCMODE_ENABLE);
400295d67482SBill Paul 	BGE_CLRBIT(sc, BGE_WDMA_MODE, BGE_WDMAMODE_ENABLE);
40037ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc)))
400495d67482SBill Paul 		BGE_CLRBIT(sc, BGE_MBCF_MODE, BGE_MBCFMODE_ENABLE);
40050c8aa4eaSJung-uk Kim 	CSR_WRITE_4(sc, BGE_FTQ_RESET, 0xFFFFFFFF);
400695d67482SBill Paul 	CSR_WRITE_4(sc, BGE_FTQ_RESET, 0);
40077ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc))) {
400895d67482SBill Paul 		BGE_CLRBIT(sc, BGE_BMAN_MODE, BGE_BMANMODE_ENABLE);
400995d67482SBill Paul 		BGE_CLRBIT(sc, BGE_MARB_MODE, BGE_MARBMODE_ENABLE);
40100434d1b8SBill Paul 	}
401195d67482SBill Paul 
401295d67482SBill Paul 	/* Disable host interrupts. */
401395d67482SBill Paul 	BGE_SETBIT(sc, BGE_PCI_MISC_CTL, BGE_PCIMISCCTL_MASK_PCI_INTR);
401495d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_IRQ0_LO, 1);
401595d67482SBill Paul 
401695d67482SBill Paul 	/*
401795d67482SBill Paul 	 * Tell firmware we're shutting down.
401895d67482SBill Paul 	 */
40198cb1383cSDoug Ambrisko 
40208cb1383cSDoug Ambrisko 	bge_stop_fw(sc);
40218cb1383cSDoug Ambrisko 	bge_sig_pre_reset(sc, BGE_RESET_STOP);
40228cb1383cSDoug Ambrisko 	bge_reset(sc);
40238cb1383cSDoug Ambrisko 	bge_sig_legacy(sc, BGE_RESET_STOP);
40248cb1383cSDoug Ambrisko 	bge_sig_post_reset(sc, BGE_RESET_STOP);
40258cb1383cSDoug Ambrisko 
40268cb1383cSDoug Ambrisko 	/*
40278cb1383cSDoug Ambrisko 	 * Keep the ASF firmware running if up.
40288cb1383cSDoug Ambrisko 	 */
40298cb1383cSDoug Ambrisko 	if (sc->bge_asf_mode & ASF_STACKUP)
40308cb1383cSDoug Ambrisko 		BGE_SETBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
40318cb1383cSDoug Ambrisko 	else
403295d67482SBill Paul 		BGE_CLRBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
403395d67482SBill Paul 
403495d67482SBill Paul 	/* Free the RX lists. */
403595d67482SBill Paul 	bge_free_rx_ring_std(sc);
403695d67482SBill Paul 
403795d67482SBill Paul 	/* Free jumbo RX list. */
40384c0da0ffSGleb Smirnoff 	if (BGE_IS_JUMBO_CAPABLE(sc))
403995d67482SBill Paul 		bge_free_rx_ring_jumbo(sc);
404095d67482SBill Paul 
404195d67482SBill Paul 	/* Free TX buffers. */
404295d67482SBill Paul 	bge_free_tx_ring(sc);
404395d67482SBill Paul 
404495d67482SBill Paul 	/*
404595d67482SBill Paul 	 * Isolate/power down the PHY, but leave the media selection
404695d67482SBill Paul 	 * unchanged so that things will be put back to normal when
404795d67482SBill Paul 	 * we bring the interface back up.
404895d67482SBill Paul 	 */
4049652ae483SGleb Smirnoff 	if ((sc->bge_flags & BGE_FLAG_TBI) == 0) {
405095d67482SBill Paul 		itmp = ifp->if_flags;
405195d67482SBill Paul 		ifp->if_flags |= IFF_UP;
4052dcc34049SPawel Jakub Dawidek 		/*
4053dcc34049SPawel Jakub Dawidek 		 * If we are called from bge_detach(), mii is already NULL.
4054dcc34049SPawel Jakub Dawidek 		 */
4055dcc34049SPawel Jakub Dawidek 		if (mii != NULL) {
405695d67482SBill Paul 			ifm = mii->mii_media.ifm_cur;
405795d67482SBill Paul 			mtmp = ifm->ifm_media;
405895d67482SBill Paul 			ifm->ifm_media = IFM_ETHER | IFM_NONE;
405995d67482SBill Paul 			mii_mediachg(mii);
406095d67482SBill Paul 			ifm->ifm_media = mtmp;
4061dcc34049SPawel Jakub Dawidek 		}
406295d67482SBill Paul 		ifp->if_flags = itmp;
406395d67482SBill Paul 	}
406495d67482SBill Paul 
406595d67482SBill Paul 	sc->bge_tx_saved_considx = BGE_TXCONS_UNSET;
406695d67482SBill Paul 
40675dda8085SOleg Bulyzhin 	/* Clear MAC's link state (PHY may still have link UP). */
40681493e883SOleg Bulyzhin 	if (bootverbose && sc->bge_link)
40691493e883SOleg Bulyzhin 		if_printf(sc->bge_ifp, "link DOWN\n");
40701493e883SOleg Bulyzhin 	sc->bge_link = 0;
407195d67482SBill Paul 
40721493e883SOleg Bulyzhin 	ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
407395d67482SBill Paul }
407495d67482SBill Paul 
407595d67482SBill Paul /*
407695d67482SBill Paul  * Stop all chip I/O so that the kernel's probe routines don't
407795d67482SBill Paul  * get confused by errant DMAs when rebooting.
407895d67482SBill Paul  */
407995d67482SBill Paul static void
40803f74909aSGleb Smirnoff bge_shutdown(device_t dev)
408195d67482SBill Paul {
408295d67482SBill Paul 	struct bge_softc *sc;
408395d67482SBill Paul 
408495d67482SBill Paul 	sc = device_get_softc(dev);
408595d67482SBill Paul 
40860f9bd73bSSam Leffler 	BGE_LOCK(sc);
408795d67482SBill Paul 	bge_stop(sc);
408895d67482SBill Paul 	bge_reset(sc);
40890f9bd73bSSam Leffler 	BGE_UNLOCK(sc);
409095d67482SBill Paul }
409114afefa3SPawel Jakub Dawidek 
409214afefa3SPawel Jakub Dawidek static int
409314afefa3SPawel Jakub Dawidek bge_suspend(device_t dev)
409414afefa3SPawel Jakub Dawidek {
409514afefa3SPawel Jakub Dawidek 	struct bge_softc *sc;
409614afefa3SPawel Jakub Dawidek 
409714afefa3SPawel Jakub Dawidek 	sc = device_get_softc(dev);
409814afefa3SPawel Jakub Dawidek 	BGE_LOCK(sc);
409914afefa3SPawel Jakub Dawidek 	bge_stop(sc);
410014afefa3SPawel Jakub Dawidek 	BGE_UNLOCK(sc);
410114afefa3SPawel Jakub Dawidek 
410214afefa3SPawel Jakub Dawidek 	return (0);
410314afefa3SPawel Jakub Dawidek }
410414afefa3SPawel Jakub Dawidek 
410514afefa3SPawel Jakub Dawidek static int
410614afefa3SPawel Jakub Dawidek bge_resume(device_t dev)
410714afefa3SPawel Jakub Dawidek {
410814afefa3SPawel Jakub Dawidek 	struct bge_softc *sc;
410914afefa3SPawel Jakub Dawidek 	struct ifnet *ifp;
411014afefa3SPawel Jakub Dawidek 
411114afefa3SPawel Jakub Dawidek 	sc = device_get_softc(dev);
411214afefa3SPawel Jakub Dawidek 	BGE_LOCK(sc);
411314afefa3SPawel Jakub Dawidek 	ifp = sc->bge_ifp;
411414afefa3SPawel Jakub Dawidek 	if (ifp->if_flags & IFF_UP) {
411514afefa3SPawel Jakub Dawidek 		bge_init_locked(sc);
411614afefa3SPawel Jakub Dawidek 		if (ifp->if_drv_flags & IFF_DRV_RUNNING)
411714afefa3SPawel Jakub Dawidek 			bge_start_locked(ifp);
411814afefa3SPawel Jakub Dawidek 	}
411914afefa3SPawel Jakub Dawidek 	BGE_UNLOCK(sc);
412014afefa3SPawel Jakub Dawidek 
412114afefa3SPawel Jakub Dawidek 	return (0);
412214afefa3SPawel Jakub Dawidek }
4123dab5cd05SOleg Bulyzhin 
4124dab5cd05SOleg Bulyzhin static void
41253f74909aSGleb Smirnoff bge_link_upd(struct bge_softc *sc)
4126dab5cd05SOleg Bulyzhin {
41271f313773SOleg Bulyzhin 	struct mii_data *mii;
41281f313773SOleg Bulyzhin 	uint32_t link, status;
4129dab5cd05SOleg Bulyzhin 
4130dab5cd05SOleg Bulyzhin 	BGE_LOCK_ASSERT(sc);
41311f313773SOleg Bulyzhin 
41323f74909aSGleb Smirnoff 	/* Clear 'pending link event' flag. */
41337b97099dSOleg Bulyzhin 	sc->bge_link_evt = 0;
41347b97099dSOleg Bulyzhin 
4135dab5cd05SOleg Bulyzhin 	/*
4136dab5cd05SOleg Bulyzhin 	 * Process link state changes.
4137dab5cd05SOleg Bulyzhin 	 * Grrr. The link status word in the status block does
4138dab5cd05SOleg Bulyzhin 	 * not work correctly on the BCM5700 rev AX and BX chips,
4139dab5cd05SOleg Bulyzhin 	 * according to all available information. Hence, we have
4140dab5cd05SOleg Bulyzhin 	 * to enable MII interrupts in order to properly obtain
4141dab5cd05SOleg Bulyzhin 	 * async link changes. Unfortunately, this also means that
4142dab5cd05SOleg Bulyzhin 	 * we have to read the MAC status register to detect link
4143dab5cd05SOleg Bulyzhin 	 * changes, thereby adding an additional register access to
4144dab5cd05SOleg Bulyzhin 	 * the interrupt handler.
41451f313773SOleg Bulyzhin 	 *
41461f313773SOleg Bulyzhin 	 * XXX: perhaps link state detection procedure used for
41474c0da0ffSGleb Smirnoff 	 * BGE_CHIPID_BCM5700_B2 can be used for others BCM5700 revisions.
4148dab5cd05SOleg Bulyzhin 	 */
4149dab5cd05SOleg Bulyzhin 
41501f313773SOleg Bulyzhin 	if (sc->bge_asicrev == BGE_ASICREV_BCM5700 &&
41514c0da0ffSGleb Smirnoff 	    sc->bge_chipid != BGE_CHIPID_BCM5700_B2) {
4152dab5cd05SOleg Bulyzhin 		status = CSR_READ_4(sc, BGE_MAC_STS);
4153dab5cd05SOleg Bulyzhin 		if (status & BGE_MACSTAT_MI_INTERRUPT) {
41541f313773SOleg Bulyzhin 			mii = device_get_softc(sc->bge_miibus);
41555dda8085SOleg Bulyzhin 			mii_pollstat(mii);
41561f313773SOleg Bulyzhin 			if (!sc->bge_link &&
41571f313773SOleg Bulyzhin 			    mii->mii_media_status & IFM_ACTIVE &&
41581f313773SOleg Bulyzhin 			    IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
41591f313773SOleg Bulyzhin 				sc->bge_link++;
41601f313773SOleg Bulyzhin 				if (bootverbose)
41611f313773SOleg Bulyzhin 					if_printf(sc->bge_ifp, "link UP\n");
41621f313773SOleg Bulyzhin 			} else if (sc->bge_link &&
41631f313773SOleg Bulyzhin 			    (!(mii->mii_media_status & IFM_ACTIVE) ||
41641f313773SOleg Bulyzhin 			    IFM_SUBTYPE(mii->mii_media_active) == IFM_NONE)) {
41651f313773SOleg Bulyzhin 				sc->bge_link = 0;
41661f313773SOleg Bulyzhin 				if (bootverbose)
41671f313773SOleg Bulyzhin 					if_printf(sc->bge_ifp, "link DOWN\n");
41681f313773SOleg Bulyzhin 			}
41691f313773SOleg Bulyzhin 
41703f74909aSGleb Smirnoff 			/* Clear the interrupt. */
4171dab5cd05SOleg Bulyzhin 			CSR_WRITE_4(sc, BGE_MAC_EVT_ENB,
4172dab5cd05SOleg Bulyzhin 			    BGE_EVTENB_MI_INTERRUPT);
4173dab5cd05SOleg Bulyzhin 			bge_miibus_readreg(sc->bge_dev, 1, BRGPHY_MII_ISR);
4174dab5cd05SOleg Bulyzhin 			bge_miibus_writereg(sc->bge_dev, 1, BRGPHY_MII_IMR,
4175dab5cd05SOleg Bulyzhin 			    BRGPHY_INTRS);
4176dab5cd05SOleg Bulyzhin 		}
4177dab5cd05SOleg Bulyzhin 		return;
4178dab5cd05SOleg Bulyzhin 	}
4179dab5cd05SOleg Bulyzhin 
4180652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_TBI) {
41811f313773SOleg Bulyzhin 		status = CSR_READ_4(sc, BGE_MAC_STS);
41827b97099dSOleg Bulyzhin 		if (status & BGE_MACSTAT_TBI_PCS_SYNCHED) {
41837b97099dSOleg Bulyzhin 			if (!sc->bge_link) {
41841f313773SOleg Bulyzhin 				sc->bge_link++;
41851f313773SOleg Bulyzhin 				if (sc->bge_asicrev == BGE_ASICREV_BCM5704)
41861f313773SOleg Bulyzhin 					BGE_CLRBIT(sc, BGE_MAC_MODE,
41871f313773SOleg Bulyzhin 					    BGE_MACMODE_TBI_SEND_CFGS);
41880c8aa4eaSJung-uk Kim 				CSR_WRITE_4(sc, BGE_MAC_STS, 0xFFFFFFFF);
41891f313773SOleg Bulyzhin 				if (bootverbose)
41901f313773SOleg Bulyzhin 					if_printf(sc->bge_ifp, "link UP\n");
41913f74909aSGleb Smirnoff 				if_link_state_change(sc->bge_ifp,
41923f74909aSGleb Smirnoff 				    LINK_STATE_UP);
41937b97099dSOleg Bulyzhin 			}
41941f313773SOleg Bulyzhin 		} else if (sc->bge_link) {
4195dab5cd05SOleg Bulyzhin 			sc->bge_link = 0;
41961f313773SOleg Bulyzhin 			if (bootverbose)
41971f313773SOleg Bulyzhin 				if_printf(sc->bge_ifp, "link DOWN\n");
41987b97099dSOleg Bulyzhin 			if_link_state_change(sc->bge_ifp, LINK_STATE_DOWN);
41991f313773SOleg Bulyzhin 		}
42001493e883SOleg Bulyzhin 	} else if (CSR_READ_4(sc, BGE_MI_MODE) & BGE_MIMODE_AUTOPOLL) {
42011f313773SOleg Bulyzhin 		/*
42020c8aa4eaSJung-uk Kim 		 * Some broken BCM chips have BGE_STATFLAG_LINKSTATE_CHANGED bit
42030c8aa4eaSJung-uk Kim 		 * in status word always set. Workaround this bug by reading
42040c8aa4eaSJung-uk Kim 		 * PHY link status directly.
42051f313773SOleg Bulyzhin 		 */
42061f313773SOleg Bulyzhin 		link = (CSR_READ_4(sc, BGE_MI_STS) & BGE_MISTS_LINK) ? 1 : 0;
42071f313773SOleg Bulyzhin 
42081f313773SOleg Bulyzhin 		if (link != sc->bge_link ||
42091f313773SOleg Bulyzhin 		    sc->bge_asicrev == BGE_ASICREV_BCM5700) {
42101f313773SOleg Bulyzhin 			mii = device_get_softc(sc->bge_miibus);
42115dda8085SOleg Bulyzhin 			mii_pollstat(mii);
42121f313773SOleg Bulyzhin 			if (!sc->bge_link &&
42131f313773SOleg Bulyzhin 			    mii->mii_media_status & IFM_ACTIVE &&
42141f313773SOleg Bulyzhin 			    IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
42151f313773SOleg Bulyzhin 				sc->bge_link++;
42161f313773SOleg Bulyzhin 				if (bootverbose)
42171f313773SOleg Bulyzhin 					if_printf(sc->bge_ifp, "link UP\n");
42181f313773SOleg Bulyzhin 			} else if (sc->bge_link &&
42191f313773SOleg Bulyzhin 			    (!(mii->mii_media_status & IFM_ACTIVE) ||
42201f313773SOleg Bulyzhin 			    IFM_SUBTYPE(mii->mii_media_active) == IFM_NONE)) {
42211f313773SOleg Bulyzhin 				sc->bge_link = 0;
42221f313773SOleg Bulyzhin 				if (bootverbose)
42231f313773SOleg Bulyzhin 					if_printf(sc->bge_ifp, "link DOWN\n");
42241f313773SOleg Bulyzhin 			}
42251f313773SOleg Bulyzhin 		}
42260c8aa4eaSJung-uk Kim 	} else {
42270c8aa4eaSJung-uk Kim 		/*
42280c8aa4eaSJung-uk Kim 		 * Discard link events for MII/GMII controllers
42290c8aa4eaSJung-uk Kim 		 * if MI auto-polling is disabled.
42300c8aa4eaSJung-uk Kim 		 */
4231dab5cd05SOleg Bulyzhin 	}
4232dab5cd05SOleg Bulyzhin 
42333f74909aSGleb Smirnoff 	/* Clear the attention. */
4234dab5cd05SOleg Bulyzhin 	CSR_WRITE_4(sc, BGE_MAC_STS, BGE_MACSTAT_SYNC_CHANGED |
4235dab5cd05SOleg Bulyzhin 	    BGE_MACSTAT_CFG_CHANGED | BGE_MACSTAT_MI_COMPLETE |
4236dab5cd05SOleg Bulyzhin 	    BGE_MACSTAT_LINK_CHANGED);
4237dab5cd05SOleg Bulyzhin }
42386f8718a3SScott Long 
4239763757b2SScott Long #define BGE_SYSCTL_STAT(sc, ctx, desc, parent, node, oid) \
424006e83c7eSScott Long 	SYSCTL_ADD_PROC(ctx, parent, OID_AUTO, oid, CTLTYPE_UINT|CTLFLAG_RD, \
4241763757b2SScott Long 	    sc, offsetof(struct bge_stats, node), bge_sysctl_stats, "IU", \
4242763757b2SScott Long 	    desc)
4243763757b2SScott Long 
42446f8718a3SScott Long static void
42456f8718a3SScott Long bge_add_sysctls(struct bge_softc *sc)
42466f8718a3SScott Long {
42476f8718a3SScott Long 	struct sysctl_ctx_list *ctx;
4248763757b2SScott Long 	struct sysctl_oid_list *children, *schildren;
4249763757b2SScott Long 	struct sysctl_oid *tree;
42506f8718a3SScott Long 
42516f8718a3SScott Long 	ctx = device_get_sysctl_ctx(sc->bge_dev);
42526f8718a3SScott Long 	children = SYSCTL_CHILDREN(device_get_sysctl_tree(sc->bge_dev));
42536f8718a3SScott Long 
42546f8718a3SScott Long #ifdef BGE_REGISTER_DEBUG
42556f8718a3SScott Long 	SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "debug_info",
42566f8718a3SScott Long 	    CTLTYPE_INT | CTLFLAG_RW, sc, 0, bge_sysctl_debug_info, "I",
42576f8718a3SScott Long 	    "Debug Information");
42586f8718a3SScott Long 
42596f8718a3SScott Long 	SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "reg_read",
42606f8718a3SScott Long 	    CTLTYPE_INT | CTLFLAG_RW, sc, 0, bge_sysctl_reg_read, "I",
42616f8718a3SScott Long 	    "Register Read");
42626f8718a3SScott Long 
42636f8718a3SScott Long 	SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "mem_read",
42646f8718a3SScott Long 	    CTLTYPE_INT | CTLFLAG_RW, sc, 0, bge_sysctl_mem_read, "I",
42656f8718a3SScott Long 	    "Memory Read");
42666f8718a3SScott Long 
42676f8718a3SScott Long #endif
4268763757b2SScott Long 
4269763757b2SScott Long 	tree = SYSCTL_ADD_NODE(ctx, children, OID_AUTO, "stats", CTLFLAG_RD,
4270763757b2SScott Long 	    NULL, "BGE Statistics");
4271763757b2SScott Long 	schildren = children = SYSCTL_CHILDREN(tree);
4272763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Frames Dropped Due To Filters",
4273763757b2SScott Long 	    children, COSFramesDroppedDueToFilters,
4274763757b2SScott Long 	    "FramesDroppedDueToFilters");
4275763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "NIC DMA Write Queue Full",
4276763757b2SScott Long 	    children, nicDmaWriteQueueFull, "DmaWriteQueueFull");
4277763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "NIC DMA Write High Priority Queue Full",
4278763757b2SScott Long 	    children, nicDmaWriteHighPriQueueFull, "DmaWriteHighPriQueueFull");
4279763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "NIC No More RX Buffer Descriptors",
4280763757b2SScott Long 	    children, nicNoMoreRxBDs, "NoMoreRxBDs");
428106e83c7eSScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Discarded Input Frames",
428206e83c7eSScott Long 	    children, ifInDiscards, "InputDiscards");
428306e83c7eSScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Input Errors",
428406e83c7eSScott Long 	    children, ifInErrors, "InputErrors");
4285763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "NIC Recv Threshold Hit",
4286763757b2SScott Long 	    children, nicRecvThresholdHit, "RecvThresholdHit");
4287763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "NIC DMA Read Queue Full",
4288763757b2SScott Long 	    children, nicDmaReadQueueFull, "DmaReadQueueFull");
4289763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "NIC DMA Read High Priority Queue Full",
4290763757b2SScott Long 	    children, nicDmaReadHighPriQueueFull, "DmaReadHighPriQueueFull");
4291763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "NIC Send Data Complete Queue Full",
4292763757b2SScott Long 	    children, nicSendDataCompQueueFull, "SendDataCompQueueFull");
4293763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "NIC Ring Set Send Producer Index",
4294763757b2SScott Long 	    children, nicRingSetSendProdIndex, "RingSetSendProdIndex");
4295763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "NIC Ring Status Update",
4296763757b2SScott Long 	    children, nicRingStatusUpdate, "RingStatusUpdate");
4297763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "NIC Interrupts",
4298763757b2SScott Long 	    children, nicInterrupts, "Interrupts");
4299763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "NIC Avoided Interrupts",
4300763757b2SScott Long 	    children, nicAvoidedInterrupts, "AvoidedInterrupts");
4301763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "NIC Send Threshold Hit",
4302763757b2SScott Long 	    children, nicSendThresholdHit, "SendThresholdHit");
4303763757b2SScott Long 
4304763757b2SScott Long 	tree = SYSCTL_ADD_NODE(ctx, schildren, OID_AUTO, "rx", CTLFLAG_RD,
4305763757b2SScott Long 	    NULL, "BGE RX Statistics");
4306763757b2SScott Long 	children = SYSCTL_CHILDREN(tree);
4307763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Inbound Octets",
4308763757b2SScott Long 	    children, rxstats.ifHCInOctets, "Octets");
4309763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Fragments",
4310763757b2SScott Long 	    children, rxstats.etherStatsFragments, "Fragments");
4311763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Inbound Unicast Packets",
4312763757b2SScott Long 	    children, rxstats.ifHCInUcastPkts, "UcastPkts");
4313763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Inbound Multicast Packets",
4314763757b2SScott Long 	    children, rxstats.ifHCInMulticastPkts, "MulticastPkts");
4315763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "FCS Errors",
4316763757b2SScott Long 	    children, rxstats.dot3StatsFCSErrors, "FCSErrors");
4317763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Alignment Errors",
4318763757b2SScott Long 	    children, rxstats.dot3StatsAlignmentErrors, "AlignmentErrors");
4319763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "XON Pause Frames Received",
4320763757b2SScott Long 	    children, rxstats.xonPauseFramesReceived, "xonPauseFramesReceived");
4321763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "XOFF Pause Frames Received",
4322763757b2SScott Long 	    children, rxstats.xoffPauseFramesReceived,
4323763757b2SScott Long 	    "xoffPauseFramesReceived");
4324763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "MAC Control Frames Received",
4325763757b2SScott Long 	    children, rxstats.macControlFramesReceived,
4326763757b2SScott Long 	    "ControlFramesReceived");
4327763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "XOFF State Entered",
4328763757b2SScott Long 	    children, rxstats.xoffStateEntered, "xoffStateEntered");
4329763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Frames Too Long",
4330763757b2SScott Long 	    children, rxstats.dot3StatsFramesTooLong, "FramesTooLong");
4331763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Jabbers",
4332763757b2SScott Long 	    children, rxstats.etherStatsJabbers, "Jabbers");
4333763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Undersized Packets",
4334763757b2SScott Long 	    children, rxstats.etherStatsUndersizePkts, "UndersizePkts");
4335763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Inbound Range Length Errors",
433606e83c7eSScott Long 	    children, rxstats.inRangeLengthError, "inRangeLengthError");
4337763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Outbound Range Length Errors",
433806e83c7eSScott Long 	    children, rxstats.outRangeLengthError, "outRangeLengthError");
4339763757b2SScott Long 
4340763757b2SScott Long 	tree = SYSCTL_ADD_NODE(ctx, schildren, OID_AUTO, "tx", CTLFLAG_RD,
4341763757b2SScott Long 	    NULL, "BGE TX Statistics");
4342763757b2SScott Long 	children = SYSCTL_CHILDREN(tree);
4343763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Outbound Octets",
4344763757b2SScott Long 	    children, txstats.ifHCOutOctets, "Octets");
4345763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "TX Collisions",
4346763757b2SScott Long 	    children, txstats.etherStatsCollisions, "Collisions");
4347763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "XON Sent",
4348763757b2SScott Long 	    children, txstats.outXonSent, "XonSent");
4349763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "XOFF Sent",
4350763757b2SScott Long 	    children, txstats.outXoffSent, "XoffSent");
4351763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Flow Control Done",
4352763757b2SScott Long 	    children, txstats.flowControlDone, "flowControlDone");
4353763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Internal MAC TX errors",
4354763757b2SScott Long 	    children, txstats.dot3StatsInternalMacTransmitErrors,
4355763757b2SScott Long 	    "InternalMacTransmitErrors");
4356763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Single Collision Frames",
4357763757b2SScott Long 	    children, txstats.dot3StatsSingleCollisionFrames,
4358763757b2SScott Long 	    "SingleCollisionFrames");
4359763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Multiple Collision Frames",
4360763757b2SScott Long 	    children, txstats.dot3StatsMultipleCollisionFrames,
4361763757b2SScott Long 	    "MultipleCollisionFrames");
4362763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Deferred Transmissions",
4363763757b2SScott Long 	    children, txstats.dot3StatsDeferredTransmissions,
4364763757b2SScott Long 	    "DeferredTransmissions");
4365763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Excessive Collisions",
4366763757b2SScott Long 	    children, txstats.dot3StatsExcessiveCollisions,
4367763757b2SScott Long 	    "ExcessiveCollisions");
4368763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Late Collisions",
436906e83c7eSScott Long 	    children, txstats.dot3StatsLateCollisions,
437006e83c7eSScott Long 	    "LateCollisions");
4371763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Outbound Unicast Packets",
4372763757b2SScott Long 	    children, txstats.ifHCOutUcastPkts, "UcastPkts");
4373763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Outbound Multicast Packets",
4374763757b2SScott Long 	    children, txstats.ifHCOutMulticastPkts, "MulticastPkts");
4375763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Outbound Broadcast Packets",
4376763757b2SScott Long 	    children, txstats.ifHCOutBroadcastPkts, "BroadcastPkts");
4377763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Carrier Sense Errors",
4378763757b2SScott Long 	    children, txstats.dot3StatsCarrierSenseErrors,
4379763757b2SScott Long 	    "CarrierSenseErrors");
4380763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Outbound Discards",
4381763757b2SScott Long 	    children, txstats.ifOutDiscards, "Discards");
4382763757b2SScott Long 	BGE_SYSCTL_STAT(sc, ctx, "Outbound Errors",
4383763757b2SScott Long 	    children, txstats.ifOutErrors, "Errors");
4384763757b2SScott Long }
4385763757b2SScott Long 
4386763757b2SScott Long static int
4387763757b2SScott Long bge_sysctl_stats(SYSCTL_HANDLER_ARGS)
4388763757b2SScott Long {
4389763757b2SScott Long 	struct bge_softc *sc;
439006e83c7eSScott Long 	uint32_t result;
4391763757b2SScott Long 	int base, offset;
4392763757b2SScott Long 
4393763757b2SScott Long 	sc = (struct bge_softc *)arg1;
4394763757b2SScott Long 	offset = arg2;
4395763757b2SScott Long 	if (BGE_IS_5705_PLUS(sc))
4396763757b2SScott Long 		base = BGE_MAC_STATS;
4397763757b2SScott Long 	else
4398763757b2SScott Long 		base = BGE_MEMWIN_START + BGE_STATS_BLOCK;
439906e83c7eSScott Long 	result = CSR_READ_4(sc, base + offset + offsetof(bge_hostaddr,
4400763757b2SScott Long 	    bge_addr_lo));
4401763757b2SScott Long 	return (sysctl_handle_int(oidp, &result, sizeof(result), req));
44026f8718a3SScott Long }
44036f8718a3SScott Long 
44046f8718a3SScott Long #ifdef BGE_REGISTER_DEBUG
44056f8718a3SScott Long static int
44066f8718a3SScott Long bge_sysctl_debug_info(SYSCTL_HANDLER_ARGS)
44076f8718a3SScott Long {
44086f8718a3SScott Long 	struct bge_softc *sc;
44096f8718a3SScott Long 	uint16_t *sbdata;
44106f8718a3SScott Long 	int error;
44116f8718a3SScott Long 	int result;
44126f8718a3SScott Long 	int i, j;
44136f8718a3SScott Long 
44146f8718a3SScott Long 	result = -1;
44156f8718a3SScott Long 	error = sysctl_handle_int(oidp, &result, 0, req);
44166f8718a3SScott Long 	if (error || (req->newptr == NULL))
44176f8718a3SScott Long 		return (error);
44186f8718a3SScott Long 
44196f8718a3SScott Long 	if (result == 1) {
44206f8718a3SScott Long 		sc = (struct bge_softc *)arg1;
44216f8718a3SScott Long 
44226f8718a3SScott Long 		sbdata = (uint16_t *)sc->bge_ldata.bge_status_block;
44236f8718a3SScott Long 		printf("Status Block:\n");
44246f8718a3SScott Long 		for (i = 0x0; i < (BGE_STATUS_BLK_SZ / 4); ) {
44256f8718a3SScott Long 			printf("%06x:", i);
44266f8718a3SScott Long 			for (j = 0; j < 8; j++) {
44276f8718a3SScott Long 				printf(" %04x", sbdata[i]);
44286f8718a3SScott Long 				i += 4;
44296f8718a3SScott Long 			}
44306f8718a3SScott Long 			printf("\n");
44316f8718a3SScott Long 		}
44326f8718a3SScott Long 
44336f8718a3SScott Long 		printf("Registers:\n");
44340c8aa4eaSJung-uk Kim 		for (i = 0x800; i < 0xA00; ) {
44356f8718a3SScott Long 			printf("%06x:", i);
44366f8718a3SScott Long 			for (j = 0; j < 8; j++) {
44376f8718a3SScott Long 				printf(" %08x", CSR_READ_4(sc, i));
44386f8718a3SScott Long 				i += 4;
44396f8718a3SScott Long 			}
44406f8718a3SScott Long 			printf("\n");
44416f8718a3SScott Long 		}
44426f8718a3SScott Long 
44436f8718a3SScott Long 		printf("Hardware Flags:\n");
44445345bad0SScott Long 		if (BGE_IS_575X_PLUS(sc))
44456f8718a3SScott Long 			printf(" - 575X Plus\n");
44465345bad0SScott Long 		if (BGE_IS_5705_PLUS(sc))
44476f8718a3SScott Long 			printf(" - 5705 Plus\n");
44485345bad0SScott Long 		if (BGE_IS_5714_FAMILY(sc))
44495345bad0SScott Long 			printf(" - 5714 Family\n");
44505345bad0SScott Long 		if (BGE_IS_5700_FAMILY(sc))
44515345bad0SScott Long 			printf(" - 5700 Family\n");
44526f8718a3SScott Long 		if (sc->bge_flags & BGE_FLAG_JUMBO)
44536f8718a3SScott Long 			printf(" - Supports Jumbo Frames\n");
44546f8718a3SScott Long 		if (sc->bge_flags & BGE_FLAG_PCIX)
44556f8718a3SScott Long 			printf(" - PCI-X Bus\n");
44566f8718a3SScott Long 		if (sc->bge_flags & BGE_FLAG_PCIE)
44576f8718a3SScott Long 			printf(" - PCI Express Bus\n");
44585ee49a3aSJung-uk Kim 		if (sc->bge_flags & BGE_FLAG_NO_3LED)
44596f8718a3SScott Long 			printf(" - No 3 LEDs\n");
44606f8718a3SScott Long 		if (sc->bge_flags & BGE_FLAG_RX_ALIGNBUG)
44616f8718a3SScott Long 			printf(" - RX Alignment Bug\n");
44626f8718a3SScott Long 	}
44636f8718a3SScott Long 
44646f8718a3SScott Long 	return (error);
44656f8718a3SScott Long }
44666f8718a3SScott Long 
44676f8718a3SScott Long static int
44686f8718a3SScott Long bge_sysctl_reg_read(SYSCTL_HANDLER_ARGS)
44696f8718a3SScott Long {
44706f8718a3SScott Long 	struct bge_softc *sc;
44716f8718a3SScott Long 	int error;
44726f8718a3SScott Long 	uint16_t result;
44736f8718a3SScott Long 	uint32_t val;
44746f8718a3SScott Long 
44756f8718a3SScott Long 	result = -1;
44766f8718a3SScott Long 	error = sysctl_handle_int(oidp, &result, 0, req);
44776f8718a3SScott Long 	if (error || (req->newptr == NULL))
44786f8718a3SScott Long 		return (error);
44796f8718a3SScott Long 
44806f8718a3SScott Long 	if (result < 0x8000) {
44816f8718a3SScott Long 		sc = (struct bge_softc *)arg1;
44826f8718a3SScott Long 		val = CSR_READ_4(sc, result);
44836f8718a3SScott Long 		printf("reg 0x%06X = 0x%08X\n", result, val);
44846f8718a3SScott Long 	}
44856f8718a3SScott Long 
44866f8718a3SScott Long 	return (error);
44876f8718a3SScott Long }
44886f8718a3SScott Long 
44896f8718a3SScott Long static int
44906f8718a3SScott Long bge_sysctl_mem_read(SYSCTL_HANDLER_ARGS)
44916f8718a3SScott Long {
44926f8718a3SScott Long 	struct bge_softc *sc;
44936f8718a3SScott Long 	int error;
44946f8718a3SScott Long 	uint16_t result;
44956f8718a3SScott Long 	uint32_t val;
44966f8718a3SScott Long 
44976f8718a3SScott Long 	result = -1;
44986f8718a3SScott Long 	error = sysctl_handle_int(oidp, &result, 0, req);
44996f8718a3SScott Long 	if (error || (req->newptr == NULL))
45006f8718a3SScott Long 		return (error);
45016f8718a3SScott Long 
45026f8718a3SScott Long 	if (result < 0x8000) {
45036f8718a3SScott Long 		sc = (struct bge_softc *)arg1;
45046f8718a3SScott Long 		val = bge_readmem_ind(sc, result);
45056f8718a3SScott Long 		printf("mem 0x%06X = 0x%08X\n", result, val);
45066f8718a3SScott Long 	}
45076f8718a3SScott Long 
45086f8718a3SScott Long 	return (error);
45096f8718a3SScott Long }
45106f8718a3SScott Long #endif
4511