xref: /freebsd/sys/dev/bge/if_bge.c (revision 7ee00338c55f2870795cb57a947b86e2420476cd)
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 
1094fbd232cSWarner Losh #include <dev/pci/pcireg.h>
1104fbd232cSWarner Losh #include <dev/pci/pcivar.h>
11195d67482SBill Paul 
11295d67482SBill Paul #include <dev/bge/if_bgereg.h>
11395d67482SBill Paul 
1145ddc5794SJohn Polstra #define BGE_CSUM_FEATURES	(CSUM_IP | CSUM_TCP | CSUM_UDP)
115d375e524SGleb Smirnoff #define ETHER_MIN_NOPAD		(ETHER_MIN_LEN - ETHER_CRC_LEN) /* i.e., 60 */
11695d67482SBill Paul 
117f246e4a1SMatthew N. Dodd MODULE_DEPEND(bge, pci, 1, 1, 1);
118f246e4a1SMatthew N. Dodd MODULE_DEPEND(bge, ether, 1, 1, 1);
11995d67482SBill Paul MODULE_DEPEND(bge, miibus, 1, 1, 1);
12095d67482SBill Paul 
1217b279558SWarner Losh /* "device miibus" required.  See GENERIC if you get errors here. */
12295d67482SBill Paul #include "miibus_if.h"
12395d67482SBill Paul 
12495d67482SBill Paul /*
12595d67482SBill Paul  * Various supported device vendors/types and their names. Note: the
12695d67482SBill Paul  * spec seems to indicate that the hardware still has Alteon's vendor
12795d67482SBill Paul  * ID burned into it, though it will always be overriden by the vendor
12895d67482SBill Paul  * ID in the EEPROM. Just to be safe, we cover all possibilities.
12995d67482SBill Paul  */
1304c0da0ffSGleb Smirnoff static struct bge_type {
1314c0da0ffSGleb Smirnoff 	uint16_t	bge_vid;
1324c0da0ffSGleb Smirnoff 	uint16_t	bge_did;
1334c0da0ffSGleb Smirnoff } bge_devs[] = {
1344c0da0ffSGleb Smirnoff 	{ ALTEON_VENDORID,	ALTEON_DEVICEID_BCM5700 },
1354c0da0ffSGleb Smirnoff 	{ ALTEON_VENDORID,	ALTEON_DEVICEID_BCM5701 },
13695d67482SBill Paul 
1374c0da0ffSGleb Smirnoff 	{ ALTIMA_VENDORID,	ALTIMA_DEVICE_AC1000 },
1384c0da0ffSGleb Smirnoff 	{ ALTIMA_VENDORID,	ALTIMA_DEVICE_AC1002 },
1394c0da0ffSGleb Smirnoff 	{ ALTIMA_VENDORID,	ALTIMA_DEVICE_AC9100 },
1404c0da0ffSGleb Smirnoff 
1414c0da0ffSGleb Smirnoff 	{ APPLE_VENDORID,	APPLE_DEVICE_BCM5701 },
1424c0da0ffSGleb Smirnoff 
1434c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5700 },
1444c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5701 },
1454c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5702 },
1464c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5702_ALT },
1474c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5702X },
1484c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5703 },
1494c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5703_ALT },
1504c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5703X },
1514c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5704C },
1524c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5704S },
1534c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5704S_ALT },
1544c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5705 },
1554c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5705F },
1564c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5705K },
1574c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5705M },
1584c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5705M_ALT },
1594c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5714C },
1604c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5714S },
1614c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5715 },
1624c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5715S },
1634c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5720 },
1644c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5721 },
1654c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5750 },
1664c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5750M },
1674c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5751 },
1684c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5751F },
1694c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5751M },
1704c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5752 },
1714c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5752M },
1724c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5753 },
1734c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5753F },
1744c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5753M },
1759e86676bSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5754 },
1769e86676bSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5754M },
1779e86676bSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5755 },
1789e86676bSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5755M },
1794c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5780 },
1804c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5780S },
1814c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5781 },
1824c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5782 },
1839e86676bSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5786 },
1849e86676bSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5787 },
1859e86676bSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5787M },
1864c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5788 },
1874c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5789 },
1884c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5901 },
1894c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5901A2 },
1904c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	BCOM_DEVICEID_BCM5903M },
1914c0da0ffSGleb Smirnoff 
1924c0da0ffSGleb Smirnoff 	{ SK_VENDORID,		SK_DEVICEID_ALTIMA },
1934c0da0ffSGleb Smirnoff 
1944c0da0ffSGleb Smirnoff 	{ TC_VENDORID,		TC_DEVICEID_3C996 },
1954c0da0ffSGleb Smirnoff 
1964c0da0ffSGleb Smirnoff 	{ 0, 0 }
19795d67482SBill Paul };
19895d67482SBill Paul 
1994c0da0ffSGleb Smirnoff static const struct bge_vendor {
2004c0da0ffSGleb Smirnoff 	uint16_t	v_id;
2014c0da0ffSGleb Smirnoff 	const char	*v_name;
2024c0da0ffSGleb Smirnoff } bge_vendors[] = {
2034c0da0ffSGleb Smirnoff 	{ ALTEON_VENDORID,	"Alteon" },
2044c0da0ffSGleb Smirnoff 	{ ALTIMA_VENDORID,	"Altima" },
2054c0da0ffSGleb Smirnoff 	{ APPLE_VENDORID,	"Apple" },
2064c0da0ffSGleb Smirnoff 	{ BCOM_VENDORID,	"Broadcom" },
2074c0da0ffSGleb Smirnoff 	{ SK_VENDORID,		"SysKonnect" },
2084c0da0ffSGleb Smirnoff 	{ TC_VENDORID,		"3Com" },
2094c0da0ffSGleb Smirnoff 
2104c0da0ffSGleb Smirnoff 	{ 0, NULL }
2114c0da0ffSGleb Smirnoff };
2124c0da0ffSGleb Smirnoff 
2134c0da0ffSGleb Smirnoff static const struct bge_revision {
2144c0da0ffSGleb Smirnoff 	uint32_t	br_chipid;
2154c0da0ffSGleb Smirnoff 	const char	*br_name;
2164c0da0ffSGleb Smirnoff } bge_revisions[] = {
2174c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5700_A0,	"BCM5700 A0" },
2184c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5700_A1,	"BCM5700 A1" },
2194c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5700_B0,	"BCM5700 B0" },
2204c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5700_B1,	"BCM5700 B1" },
2214c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5700_B2,	"BCM5700 B2" },
2224c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5700_B3,	"BCM5700 B3" },
2234c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5700_ALTIMA,	"BCM5700 Altima" },
2244c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5700_C0,	"BCM5700 C0" },
2254c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5701_A0,	"BCM5701 A0" },
2264c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5701_B0,	"BCM5701 B0" },
2274c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5701_B2,	"BCM5701 B2" },
2284c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5701_B5,	"BCM5701 B5" },
2294c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5703_A0,	"BCM5703 A0" },
2304c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5703_A1,	"BCM5703 A1" },
2314c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5703_A2,	"BCM5703 A2" },
2324c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5703_A3,	"BCM5703 A3" },
2339e86676bSGleb Smirnoff 	{ BGE_CHIPID_BCM5703_B0,	"BCM5703 B0" },
2344c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5704_A0,	"BCM5704 A0" },
2354c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5704_A1,	"BCM5704 A1" },
2364c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5704_A2,	"BCM5704 A2" },
2374c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5704_A3,	"BCM5704 A3" },
2384c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5704_B0,	"BCM5704 B0" },
2394c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5705_A0,	"BCM5705 A0" },
2404c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5705_A1,	"BCM5705 A1" },
2414c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5705_A2,	"BCM5705 A2" },
2424c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5705_A3,	"BCM5705 A3" },
2434c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5750_A0,	"BCM5750 A0" },
2444c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5750_A1,	"BCM5750 A1" },
2454c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5750_A3,	"BCM5750 A3" },
2464c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5750_B0,	"BCM5750 B0" },
2474c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5750_B1,	"BCM5750 B1" },
2484c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5750_C0,	"BCM5750 C0" },
2494c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5750_C1,	"BCM5750 C1" },
25042787b76SGleb Smirnoff 	{ BGE_CHIPID_BCM5750_C2,	"BCM5750 C2" },
2514c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5714_A0,	"BCM5714 A0" },
2524c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5752_A0,	"BCM5752 A0" },
2534c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5752_A1,	"BCM5752 A1" },
2544c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5752_A2,	"BCM5752 A2" },
2554c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5714_B0,	"BCM5714 B0" },
2564c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5714_B3,	"BCM5714 B3" },
2574c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5715_A0,	"BCM5715 A0" },
2584c0da0ffSGleb Smirnoff 	{ BGE_CHIPID_BCM5715_A1,	"BCM5715 A1" },
2594c0da0ffSGleb Smirnoff 
2604c0da0ffSGleb Smirnoff 	{ 0, NULL }
2614c0da0ffSGleb Smirnoff };
2624c0da0ffSGleb Smirnoff 
2634c0da0ffSGleb Smirnoff /*
2644c0da0ffSGleb Smirnoff  * Some defaults for major revisions, so that newer steppings
2654c0da0ffSGleb Smirnoff  * that we don't know about have a shot at working.
2664c0da0ffSGleb Smirnoff  */
2674c0da0ffSGleb Smirnoff static const struct bge_revision bge_majorrevs[] = {
2689e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5700,		"unknown BCM5700" },
2699e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5701,		"unknown BCM5701" },
2709e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5703,		"unknown BCM5703" },
2719e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5704,		"unknown BCM5704" },
2729e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5705,		"unknown BCM5705" },
2739e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5750,		"unknown BCM5750" },
2749e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5714_A0,	"unknown BCM5714" },
2759e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5752,		"unknown BCM5752" },
2769e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5780,		"unknown BCM5780" },
2779e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5714,		"unknown BCM5714" },
2789e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5755,		"unknown BCM5755" },
2799e86676bSGleb Smirnoff 	{ BGE_ASICREV_BCM5787,		"unknown BCM5787" },
2804c0da0ffSGleb Smirnoff 
2814c0da0ffSGleb Smirnoff 	{ 0, NULL }
2824c0da0ffSGleb Smirnoff };
2834c0da0ffSGleb Smirnoff 
2847ee00338SJung-uk Kim #define BGE_IS_JUMBO_CAPABLE(sc)	((sc)->bge_flags & BGE_FLAG_JUMBO)
2857ee00338SJung-uk Kim #define BGE_IS_5700_FAMILY(sc)		((sc)->bge_flags & BGE_FLAG_5700_FAMILY)
2867ee00338SJung-uk Kim #define BGE_IS_5705_PLUS(sc)		((sc)->bge_flags & BGE_FLAG_5705_PLUS)
2870dae9719SJung-uk Kim #define BGE_IS_5714_FAMILY(sc)		((sc)->bge_flags & BGE_FLAG_5714_FAMILY)
2880dae9719SJung-uk Kim #define BGE_IS_575X_PLUS(sc)		((sc)->bge_flags & BGE_FLAG_575X_PLUS)
2894c0da0ffSGleb Smirnoff 
2904c0da0ffSGleb Smirnoff const struct bge_revision * bge_lookup_rev(uint32_t);
2914c0da0ffSGleb Smirnoff const struct bge_vendor * bge_lookup_vendor(uint16_t);
292e51a25f8SAlfred Perlstein static int bge_probe(device_t);
293e51a25f8SAlfred Perlstein static int bge_attach(device_t);
294e51a25f8SAlfred Perlstein static int bge_detach(device_t);
29514afefa3SPawel Jakub Dawidek static int bge_suspend(device_t);
29614afefa3SPawel Jakub Dawidek static int bge_resume(device_t);
2973f74909aSGleb Smirnoff static void bge_release_resources(struct bge_softc *);
298f41ac2beSBill Paul static void bge_dma_map_addr(void *, bus_dma_segment_t *, int, int);
299f41ac2beSBill Paul static int bge_dma_alloc(device_t);
300f41ac2beSBill Paul static void bge_dma_free(struct bge_softc *);
301f41ac2beSBill Paul 
302e51a25f8SAlfred Perlstein static void bge_txeof(struct bge_softc *);
303e51a25f8SAlfred Perlstein static void bge_rxeof(struct bge_softc *);
30495d67482SBill Paul 
3058cb1383cSDoug Ambrisko static void bge_asf_driver_up (struct bge_softc *);
306e51a25f8SAlfred Perlstein static void bge_tick(void *);
307e51a25f8SAlfred Perlstein static void bge_stats_update(struct bge_softc *);
3083f74909aSGleb Smirnoff static void bge_stats_update_regs(struct bge_softc *);
309676ad2c9SGleb Smirnoff static int bge_encap(struct bge_softc *, struct mbuf **, uint32_t *);
31095d67482SBill Paul 
311e51a25f8SAlfred Perlstein static void bge_intr(void *);
3120f9bd73bSSam Leffler static void bge_start_locked(struct ifnet *);
313e51a25f8SAlfred Perlstein static void bge_start(struct ifnet *);
314e51a25f8SAlfred Perlstein static int bge_ioctl(struct ifnet *, u_long, caddr_t);
3150f9bd73bSSam Leffler static void bge_init_locked(struct bge_softc *);
316e51a25f8SAlfred Perlstein static void bge_init(void *);
317e51a25f8SAlfred Perlstein static void bge_stop(struct bge_softc *);
318b74e67fbSGleb Smirnoff static void bge_watchdog(struct bge_softc *);
319e51a25f8SAlfred Perlstein static void bge_shutdown(device_t);
32067d5e043SOleg Bulyzhin static int bge_ifmedia_upd_locked(struct ifnet *);
321e51a25f8SAlfred Perlstein static int bge_ifmedia_upd(struct ifnet *);
322e51a25f8SAlfred Perlstein static void bge_ifmedia_sts(struct ifnet *, struct ifmediareq *);
32395d67482SBill Paul 
3243f74909aSGleb Smirnoff static uint8_t bge_eeprom_getbyte(struct bge_softc *, int, uint8_t *);
325e51a25f8SAlfred Perlstein static int bge_read_eeprom(struct bge_softc *, caddr_t, int, int);
32695d67482SBill Paul 
3273e9b1bcaSJung-uk Kim static void bge_setpromisc(struct bge_softc *);
328e51a25f8SAlfred Perlstein static void bge_setmulti(struct bge_softc *);
32995d67482SBill Paul 
330e51a25f8SAlfred Perlstein static int bge_newbuf_std(struct bge_softc *, int, struct mbuf *);
331e51a25f8SAlfred Perlstein static int bge_newbuf_jumbo(struct bge_softc *, int, struct mbuf *);
332e51a25f8SAlfred Perlstein static int bge_init_rx_ring_std(struct bge_softc *);
333e51a25f8SAlfred Perlstein static void bge_free_rx_ring_std(struct bge_softc *);
334e51a25f8SAlfred Perlstein static int bge_init_rx_ring_jumbo(struct bge_softc *);
335e51a25f8SAlfred Perlstein static void bge_free_rx_ring_jumbo(struct bge_softc *);
336e51a25f8SAlfred Perlstein static void bge_free_tx_ring(struct bge_softc *);
337e51a25f8SAlfred Perlstein static int bge_init_tx_ring(struct bge_softc *);
33895d67482SBill Paul 
339e51a25f8SAlfred Perlstein static int bge_chipinit(struct bge_softc *);
340e51a25f8SAlfred Perlstein static int bge_blockinit(struct bge_softc *);
34195d67482SBill Paul 
3423f74909aSGleb Smirnoff static uint32_t bge_readmem_ind(struct bge_softc *, int);
343e51a25f8SAlfred Perlstein static void bge_writemem_ind(struct bge_softc *, int, int);
34495d67482SBill Paul #ifdef notdef
3453f74909aSGleb Smirnoff static uint32_t bge_readreg_ind(struct bge_softc *, int);
34695d67482SBill Paul #endif
347e51a25f8SAlfred Perlstein static void bge_writereg_ind(struct bge_softc *, int, int);
34895d67482SBill Paul 
349e51a25f8SAlfred Perlstein static int bge_miibus_readreg(device_t, int, int);
350e51a25f8SAlfred Perlstein static int bge_miibus_writereg(device_t, int, int, int);
351e51a25f8SAlfred Perlstein static void bge_miibus_statchg(device_t);
35275719184SGleb Smirnoff #ifdef DEVICE_POLLING
3533f74909aSGleb Smirnoff static void bge_poll(struct ifnet *ifp, enum poll_cmd cmd, int count);
35475719184SGleb Smirnoff #endif
35595d67482SBill Paul 
3568cb1383cSDoug Ambrisko #define BGE_RESET_START 1
3578cb1383cSDoug Ambrisko #define BGE_RESET_STOP  2
3588cb1383cSDoug Ambrisko static void bge_sig_post_reset(struct bge_softc *, int);
3598cb1383cSDoug Ambrisko static void bge_sig_legacy(struct bge_softc *, int);
3608cb1383cSDoug Ambrisko static void bge_sig_pre_reset(struct bge_softc *, int);
3618cb1383cSDoug Ambrisko static int bge_reset(struct bge_softc *);
362dab5cd05SOleg Bulyzhin static void bge_link_upd(struct bge_softc *);
36395d67482SBill Paul 
36495d67482SBill Paul static device_method_t bge_methods[] = {
36595d67482SBill Paul 	/* Device interface */
36695d67482SBill Paul 	DEVMETHOD(device_probe,		bge_probe),
36795d67482SBill Paul 	DEVMETHOD(device_attach,	bge_attach),
36895d67482SBill Paul 	DEVMETHOD(device_detach,	bge_detach),
36995d67482SBill Paul 	DEVMETHOD(device_shutdown,	bge_shutdown),
37014afefa3SPawel Jakub Dawidek 	DEVMETHOD(device_suspend,	bge_suspend),
37114afefa3SPawel Jakub Dawidek 	DEVMETHOD(device_resume,	bge_resume),
37295d67482SBill Paul 
37395d67482SBill Paul 	/* bus interface */
37495d67482SBill Paul 	DEVMETHOD(bus_print_child,	bus_generic_print_child),
37595d67482SBill Paul 	DEVMETHOD(bus_driver_added,	bus_generic_driver_added),
37695d67482SBill Paul 
37795d67482SBill Paul 	/* MII interface */
37895d67482SBill Paul 	DEVMETHOD(miibus_readreg,	bge_miibus_readreg),
37995d67482SBill Paul 	DEVMETHOD(miibus_writereg,	bge_miibus_writereg),
38095d67482SBill Paul 	DEVMETHOD(miibus_statchg,	bge_miibus_statchg),
38195d67482SBill Paul 
38295d67482SBill Paul 	{ 0, 0 }
38395d67482SBill Paul };
38495d67482SBill Paul 
38595d67482SBill Paul static driver_t bge_driver = {
38695d67482SBill Paul 	"bge",
38795d67482SBill Paul 	bge_methods,
38895d67482SBill Paul 	sizeof(struct bge_softc)
38995d67482SBill Paul };
39095d67482SBill Paul 
39195d67482SBill Paul static devclass_t bge_devclass;
39295d67482SBill Paul 
393f246e4a1SMatthew N. Dodd DRIVER_MODULE(bge, pci, bge_driver, bge_devclass, 0, 0);
39495d67482SBill Paul DRIVER_MODULE(miibus, bge, miibus_driver, miibus_devclass, 0, 0);
39595d67482SBill Paul 
396c4529f41SMichael Reifenberger static int bge_fake_autoneg = 0;
397f1a7e6d5SScott Long static int bge_allow_asf = 1;
398f1a7e6d5SScott Long 
399c4529f41SMichael Reifenberger TUNABLE_INT("hw.bge.fake_autoneg", &bge_fake_autoneg);
400f1a7e6d5SScott Long TUNABLE_INT("hw.bge.allow_asf", &bge_allow_asf);
401f1a7e6d5SScott Long 
402f1a7e6d5SScott Long SYSCTL_NODE(_hw, OID_AUTO, bge, CTLFLAG_RD, 0, "BGE driver parameters");
403f1a7e6d5SScott Long SYSCTL_INT(_hw_bge, OID_AUTO, fake_autoneg, CTLFLAG_RD, &bge_fake_autoneg, 0,
404f1a7e6d5SScott Long 	"Enable fake autonegotiation for certain blade systems");
405f1a7e6d5SScott Long SYSCTL_INT(_hw_bge, OID_AUTO, allow_asf, CTLFLAG_RD, &bge_allow_asf, 0,
406f1a7e6d5SScott Long 	"Allow ASF mode if available");
407c4529f41SMichael Reifenberger 
4083f74909aSGleb Smirnoff static uint32_t
4093f74909aSGleb Smirnoff bge_readmem_ind(struct bge_softc *sc, int off)
41095d67482SBill Paul {
41195d67482SBill Paul 	device_t dev;
41295d67482SBill Paul 
41395d67482SBill Paul 	dev = sc->bge_dev;
41495d67482SBill Paul 
41595d67482SBill Paul 	pci_write_config(dev, BGE_PCI_MEMWIN_BASEADDR, off, 4);
41695d67482SBill Paul 	return (pci_read_config(dev, BGE_PCI_MEMWIN_DATA, 4));
41795d67482SBill Paul }
41895d67482SBill Paul 
41995d67482SBill Paul static void
4203f74909aSGleb Smirnoff bge_writemem_ind(struct bge_softc *sc, int off, int val)
42195d67482SBill Paul {
42295d67482SBill Paul 	device_t dev;
42395d67482SBill Paul 
42495d67482SBill Paul 	dev = sc->bge_dev;
42595d67482SBill Paul 
42695d67482SBill Paul 	pci_write_config(dev, BGE_PCI_MEMWIN_BASEADDR, off, 4);
42795d67482SBill Paul 	pci_write_config(dev, BGE_PCI_MEMWIN_DATA, val, 4);
42895d67482SBill Paul }
42995d67482SBill Paul 
43095d67482SBill Paul #ifdef notdef
4313f74909aSGleb Smirnoff static uint32_t
4323f74909aSGleb Smirnoff bge_readreg_ind(struct bge_softc *sc, int off)
43395d67482SBill Paul {
43495d67482SBill Paul 	device_t dev;
43595d67482SBill Paul 
43695d67482SBill Paul 	dev = sc->bge_dev;
43795d67482SBill Paul 
43895d67482SBill Paul 	pci_write_config(dev, BGE_PCI_REG_BASEADDR, off, 4);
43995d67482SBill Paul 	return (pci_read_config(dev, BGE_PCI_REG_DATA, 4));
44095d67482SBill Paul }
44195d67482SBill Paul #endif
44295d67482SBill Paul 
44395d67482SBill Paul static void
4443f74909aSGleb Smirnoff bge_writereg_ind(struct bge_softc *sc, int off, int val)
44595d67482SBill Paul {
44695d67482SBill Paul 	device_t dev;
44795d67482SBill Paul 
44895d67482SBill Paul 	dev = sc->bge_dev;
44995d67482SBill Paul 
45095d67482SBill Paul 	pci_write_config(dev, BGE_PCI_REG_BASEADDR, off, 4);
45195d67482SBill Paul 	pci_write_config(dev, BGE_PCI_REG_DATA, val, 4);
45295d67482SBill Paul }
45395d67482SBill Paul 
454f41ac2beSBill Paul /*
455f41ac2beSBill Paul  * Map a single buffer address.
456f41ac2beSBill Paul  */
457f41ac2beSBill Paul 
458f41ac2beSBill Paul static void
4593f74909aSGleb Smirnoff bge_dma_map_addr(void *arg, bus_dma_segment_t *segs, int nseg, int error)
460f41ac2beSBill Paul {
461f41ac2beSBill Paul 	struct bge_dmamap_arg *ctx;
462f41ac2beSBill Paul 
463f41ac2beSBill Paul 	if (error)
464f41ac2beSBill Paul 		return;
465f41ac2beSBill Paul 
466f41ac2beSBill Paul 	ctx = arg;
467f41ac2beSBill Paul 
468f41ac2beSBill Paul 	if (nseg > ctx->bge_maxsegs) {
469f41ac2beSBill Paul 		ctx->bge_maxsegs = 0;
470f41ac2beSBill Paul 		return;
471f41ac2beSBill Paul 	}
472f41ac2beSBill Paul 
473f41ac2beSBill Paul 	ctx->bge_busaddr = segs->ds_addr;
474f41ac2beSBill Paul }
475f41ac2beSBill Paul 
47695d67482SBill Paul /*
47795d67482SBill Paul  * Read a byte of data stored in the EEPROM at address 'addr.' The
47895d67482SBill Paul  * BCM570x supports both the traditional bitbang interface and an
47995d67482SBill Paul  * auto access interface for reading the EEPROM. We use the auto
48095d67482SBill Paul  * access method.
48195d67482SBill Paul  */
4823f74909aSGleb Smirnoff static uint8_t
4833f74909aSGleb Smirnoff bge_eeprom_getbyte(struct bge_softc *sc, int addr, uint8_t *dest)
48495d67482SBill Paul {
48595d67482SBill Paul 	int i;
4863f74909aSGleb Smirnoff 	uint32_t byte = 0;
48795d67482SBill Paul 
48895d67482SBill Paul 	/*
48995d67482SBill Paul 	 * Enable use of auto EEPROM access so we can avoid
49095d67482SBill Paul 	 * having to use the bitbang method.
49195d67482SBill Paul 	 */
49295d67482SBill Paul 	BGE_SETBIT(sc, BGE_MISC_LOCAL_CTL, BGE_MLC_AUTO_EEPROM);
49395d67482SBill Paul 
49495d67482SBill Paul 	/* Reset the EEPROM, load the clock period. */
49595d67482SBill Paul 	CSR_WRITE_4(sc, BGE_EE_ADDR,
49695d67482SBill Paul 	    BGE_EEADDR_RESET|BGE_EEHALFCLK(BGE_HALFCLK_384SCL));
49795d67482SBill Paul 	DELAY(20);
49895d67482SBill Paul 
49995d67482SBill Paul 	/* Issue the read EEPROM command. */
50095d67482SBill Paul 	CSR_WRITE_4(sc, BGE_EE_ADDR, BGE_EE_READCMD | addr);
50195d67482SBill Paul 
50295d67482SBill Paul 	/* Wait for completion */
50395d67482SBill Paul 	for(i = 0; i < BGE_TIMEOUT * 10; i++) {
50495d67482SBill Paul 		DELAY(10);
50595d67482SBill Paul 		if (CSR_READ_4(sc, BGE_EE_ADDR) & BGE_EEADDR_DONE)
50695d67482SBill Paul 			break;
50795d67482SBill Paul 	}
50895d67482SBill Paul 
50995d67482SBill Paul 	if (i == BGE_TIMEOUT) {
510fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "EEPROM read timed out\n");
511f6789fbaSPyun YongHyeon 		return (1);
51295d67482SBill Paul 	}
51395d67482SBill Paul 
51495d67482SBill Paul 	/* Get result. */
51595d67482SBill Paul 	byte = CSR_READ_4(sc, BGE_EE_DATA);
51695d67482SBill Paul 
51795d67482SBill Paul 	*dest = (byte >> ((addr % 4) * 8)) & 0xFF;
51895d67482SBill Paul 
51995d67482SBill Paul 	return (0);
52095d67482SBill Paul }
52195d67482SBill Paul 
52295d67482SBill Paul /*
52395d67482SBill Paul  * Read a sequence of bytes from the EEPROM.
52495d67482SBill Paul  */
52595d67482SBill Paul static int
5263f74909aSGleb Smirnoff bge_read_eeprom(struct bge_softc *sc, caddr_t dest, int off, int cnt)
52795d67482SBill Paul {
5283f74909aSGleb Smirnoff 	int i, error = 0;
5293f74909aSGleb Smirnoff 	uint8_t byte = 0;
53095d67482SBill Paul 
53195d67482SBill Paul 	for (i = 0; i < cnt; i++) {
5323f74909aSGleb Smirnoff 		error = bge_eeprom_getbyte(sc, off + i, &byte);
5333f74909aSGleb Smirnoff 		if (error)
53495d67482SBill Paul 			break;
53595d67482SBill Paul 		*(dest + i) = byte;
53695d67482SBill Paul 	}
53795d67482SBill Paul 
5383f74909aSGleb Smirnoff 	return (error ? 1 : 0);
53995d67482SBill Paul }
54095d67482SBill Paul 
54195d67482SBill Paul static int
5423f74909aSGleb Smirnoff bge_miibus_readreg(device_t dev, int phy, int reg)
54395d67482SBill Paul {
54495d67482SBill Paul 	struct bge_softc *sc;
5453f74909aSGleb Smirnoff 	uint32_t val, autopoll;
54695d67482SBill Paul 	int i;
54795d67482SBill Paul 
54895d67482SBill Paul 	sc = device_get_softc(dev);
54995d67482SBill Paul 
5500434d1b8SBill Paul 	/*
5510434d1b8SBill Paul 	 * Broadcom's own driver always assumes the internal
5520434d1b8SBill Paul 	 * PHY is at GMII address 1. On some chips, the PHY responds
5530434d1b8SBill Paul 	 * to accesses at all addresses, which could cause us to
5540434d1b8SBill Paul 	 * bogusly attach the PHY 32 times at probe type. Always
5550434d1b8SBill Paul 	 * restricting the lookup to address 1 is simpler than
5560434d1b8SBill Paul 	 * trying to figure out which chips revisions should be
5570434d1b8SBill Paul 	 * special-cased.
5580434d1b8SBill Paul 	 */
559b1265c1aSJohn Polstra 	if (phy != 1)
56098b28ee5SBill Paul 		return (0);
56198b28ee5SBill Paul 
56237ceeb4dSPaul Saab 	/* Reading with autopolling on may trigger PCI errors */
56337ceeb4dSPaul Saab 	autopoll = CSR_READ_4(sc, BGE_MI_MODE);
56437ceeb4dSPaul Saab 	if (autopoll & BGE_MIMODE_AUTOPOLL) {
56537ceeb4dSPaul Saab 		BGE_CLRBIT(sc, BGE_MI_MODE, BGE_MIMODE_AUTOPOLL);
56637ceeb4dSPaul Saab 		DELAY(40);
56737ceeb4dSPaul Saab 	}
56837ceeb4dSPaul Saab 
56995d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MI_COMM, BGE_MICMD_READ|BGE_MICOMM_BUSY|
57095d67482SBill Paul 	    BGE_MIPHY(phy)|BGE_MIREG(reg));
57195d67482SBill Paul 
57295d67482SBill Paul 	for (i = 0; i < BGE_TIMEOUT; i++) {
57395d67482SBill Paul 		val = CSR_READ_4(sc, BGE_MI_COMM);
57495d67482SBill Paul 		if (!(val & BGE_MICOMM_BUSY))
57595d67482SBill Paul 			break;
57695d67482SBill Paul 	}
57795d67482SBill Paul 
57895d67482SBill Paul 	if (i == BGE_TIMEOUT) {
5796b9f5c94SGleb Smirnoff 		device_printf(sc->bge_dev, "PHY read timed out\n");
58037ceeb4dSPaul Saab 		val = 0;
58137ceeb4dSPaul Saab 		goto done;
58295d67482SBill Paul 	}
58395d67482SBill Paul 
58495d67482SBill Paul 	val = CSR_READ_4(sc, BGE_MI_COMM);
58595d67482SBill Paul 
58637ceeb4dSPaul Saab done:
58737ceeb4dSPaul Saab 	if (autopoll & BGE_MIMODE_AUTOPOLL) {
58837ceeb4dSPaul Saab 		BGE_SETBIT(sc, BGE_MI_MODE, BGE_MIMODE_AUTOPOLL);
58937ceeb4dSPaul Saab 		DELAY(40);
59037ceeb4dSPaul Saab 	}
59137ceeb4dSPaul Saab 
59295d67482SBill Paul 	if (val & BGE_MICOMM_READFAIL)
59395d67482SBill Paul 		return (0);
59495d67482SBill Paul 
59595d67482SBill Paul 	return (val & 0xFFFF);
59695d67482SBill Paul }
59795d67482SBill Paul 
59895d67482SBill Paul static int
5993f74909aSGleb Smirnoff bge_miibus_writereg(device_t dev, int phy, int reg, int val)
60095d67482SBill Paul {
60195d67482SBill Paul 	struct bge_softc *sc;
6023f74909aSGleb Smirnoff 	uint32_t autopoll;
60395d67482SBill Paul 	int i;
60495d67482SBill Paul 
60595d67482SBill Paul 	sc = device_get_softc(dev);
60695d67482SBill Paul 
60737ceeb4dSPaul Saab 	/* Reading with autopolling on may trigger PCI errors */
60837ceeb4dSPaul Saab 	autopoll = CSR_READ_4(sc, BGE_MI_MODE);
60937ceeb4dSPaul Saab 	if (autopoll & BGE_MIMODE_AUTOPOLL) {
61037ceeb4dSPaul Saab 		BGE_CLRBIT(sc, BGE_MI_MODE, BGE_MIMODE_AUTOPOLL);
61137ceeb4dSPaul Saab 		DELAY(40);
61237ceeb4dSPaul Saab 	}
61337ceeb4dSPaul Saab 
61495d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MI_COMM, BGE_MICMD_WRITE|BGE_MICOMM_BUSY|
61595d67482SBill Paul 	    BGE_MIPHY(phy)|BGE_MIREG(reg)|val);
61695d67482SBill Paul 
61795d67482SBill Paul 	for (i = 0; i < BGE_TIMEOUT; i++) {
61895d67482SBill Paul 		if (!(CSR_READ_4(sc, BGE_MI_COMM) & BGE_MICOMM_BUSY))
61995d67482SBill Paul 			break;
62095d67482SBill Paul 	}
62195d67482SBill Paul 
62237ceeb4dSPaul Saab 	if (autopoll & BGE_MIMODE_AUTOPOLL) {
62337ceeb4dSPaul Saab 		BGE_SETBIT(sc, BGE_MI_MODE, BGE_MIMODE_AUTOPOLL);
62437ceeb4dSPaul Saab 		DELAY(40);
62537ceeb4dSPaul Saab 	}
62637ceeb4dSPaul Saab 
62795d67482SBill Paul 	if (i == BGE_TIMEOUT) {
6286b9f5c94SGleb Smirnoff 		device_printf(sc->bge_dev, "PHY read timed out\n");
62995d67482SBill Paul 		return (0);
63095d67482SBill Paul 	}
63195d67482SBill Paul 
63295d67482SBill Paul 	return (0);
63395d67482SBill Paul }
63495d67482SBill Paul 
63595d67482SBill Paul static void
6363f74909aSGleb Smirnoff bge_miibus_statchg(device_t dev)
63795d67482SBill Paul {
63895d67482SBill Paul 	struct bge_softc *sc;
63995d67482SBill Paul 	struct mii_data *mii;
64095d67482SBill Paul 	sc = device_get_softc(dev);
64195d67482SBill Paul 	mii = device_get_softc(sc->bge_miibus);
64295d67482SBill Paul 
64395d67482SBill Paul 	BGE_CLRBIT(sc, BGE_MAC_MODE, BGE_MACMODE_PORTMODE);
6443f74909aSGleb Smirnoff 	if (IFM_SUBTYPE(mii->mii_media_active) == IFM_1000_T)
64595d67482SBill Paul 		BGE_SETBIT(sc, BGE_MAC_MODE, BGE_PORTMODE_GMII);
6463f74909aSGleb Smirnoff 	else
64795d67482SBill Paul 		BGE_SETBIT(sc, BGE_MAC_MODE, BGE_PORTMODE_MII);
64895d67482SBill Paul 
6493f74909aSGleb Smirnoff 	if ((mii->mii_media_active & IFM_GMASK) == IFM_FDX)
65095d67482SBill Paul 		BGE_CLRBIT(sc, BGE_MAC_MODE, BGE_MACMODE_HALF_DUPLEX);
6513f74909aSGleb Smirnoff 	else
65295d67482SBill Paul 		BGE_SETBIT(sc, BGE_MAC_MODE, BGE_MACMODE_HALF_DUPLEX);
65395d67482SBill Paul }
65495d67482SBill Paul 
65595d67482SBill Paul /*
65695d67482SBill Paul  * Intialize a standard receive ring descriptor.
65795d67482SBill Paul  */
65895d67482SBill Paul static int
6593f74909aSGleb Smirnoff bge_newbuf_std(struct bge_softc *sc, int i, struct mbuf *m)
66095d67482SBill Paul {
66195d67482SBill Paul 	struct mbuf *m_new = NULL;
66295d67482SBill Paul 	struct bge_rx_bd *r;
663f41ac2beSBill Paul 	struct bge_dmamap_arg ctx;
664f41ac2beSBill Paul 	int error;
66595d67482SBill Paul 
66695d67482SBill Paul 	if (m == NULL) {
667c3a56752SGleb Smirnoff 		m_new = m_getcl(M_DONTWAIT, MT_DATA, M_PKTHDR);
668c3a56752SGleb Smirnoff 		if (m_new == NULL)
66995d67482SBill Paul 			return (ENOBUFS);
67095d67482SBill Paul 		m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
67195d67482SBill Paul 	} else {
67295d67482SBill Paul 		m_new = m;
67395d67482SBill Paul 		m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
67495d67482SBill Paul 		m_new->m_data = m_new->m_ext.ext_buf;
67595d67482SBill Paul 	}
67695d67482SBill Paul 
677652ae483SGleb Smirnoff 	if ((sc->bge_flags & BGE_FLAG_RX_ALIGNBUG) == 0)
67895d67482SBill Paul 		m_adj(m_new, ETHER_ALIGN);
67995d67482SBill Paul 	sc->bge_cdata.bge_rx_std_chain[i] = m_new;
680f41ac2beSBill Paul 	r = &sc->bge_ldata.bge_rx_std_ring[i];
681f41ac2beSBill Paul 	ctx.bge_maxsegs = 1;
682f41ac2beSBill Paul 	ctx.sc = sc;
683f41ac2beSBill Paul 	error = bus_dmamap_load(sc->bge_cdata.bge_mtag,
684f41ac2beSBill Paul 	    sc->bge_cdata.bge_rx_std_dmamap[i], mtod(m_new, void *),
685f41ac2beSBill Paul 	    m_new->m_len, bge_dma_map_addr, &ctx, BUS_DMA_NOWAIT);
686f41ac2beSBill Paul 	if (error || ctx.bge_maxsegs == 0) {
687f7cea149SGleb Smirnoff 		if (m == NULL) {
688f7cea149SGleb Smirnoff 			sc->bge_cdata.bge_rx_std_chain[i] = NULL;
689f41ac2beSBill Paul 			m_freem(m_new);
690f7cea149SGleb Smirnoff 		}
691f41ac2beSBill Paul 		return (ENOMEM);
692f41ac2beSBill Paul 	}
693e907febfSPyun YongHyeon 	r->bge_addr.bge_addr_lo = BGE_ADDR_LO(ctx.bge_busaddr);
694e907febfSPyun YongHyeon 	r->bge_addr.bge_addr_hi = BGE_ADDR_HI(ctx.bge_busaddr);
695e907febfSPyun YongHyeon 	r->bge_flags = BGE_RXBDFLAG_END;
696e907febfSPyun YongHyeon 	r->bge_len = m_new->m_len;
697e907febfSPyun YongHyeon 	r->bge_idx = i;
698f41ac2beSBill Paul 
699f41ac2beSBill Paul 	bus_dmamap_sync(sc->bge_cdata.bge_mtag,
700f41ac2beSBill Paul 	    sc->bge_cdata.bge_rx_std_dmamap[i],
701f41ac2beSBill Paul 	    BUS_DMASYNC_PREREAD);
70295d67482SBill Paul 
70395d67482SBill Paul 	return (0);
70495d67482SBill Paul }
70595d67482SBill Paul 
70695d67482SBill Paul /*
70795d67482SBill Paul  * Initialize a jumbo receive ring descriptor. This allocates
70895d67482SBill Paul  * a jumbo buffer from the pool managed internally by the driver.
70995d67482SBill Paul  */
71095d67482SBill Paul static int
7113f74909aSGleb Smirnoff bge_newbuf_jumbo(struct bge_softc *sc, int i, struct mbuf *m)
71295d67482SBill Paul {
7131be6acb7SGleb Smirnoff 	bus_dma_segment_t segs[BGE_NSEG_JUMBO];
7141be6acb7SGleb Smirnoff 	struct bge_extrx_bd *r;
71595d67482SBill Paul 	struct mbuf *m_new = NULL;
7161be6acb7SGleb Smirnoff 	int nsegs;
717f41ac2beSBill Paul 	int error;
71895d67482SBill Paul 
71995d67482SBill Paul 	if (m == NULL) {
720a163d034SWarner Losh 		MGETHDR(m_new, M_DONTWAIT, MT_DATA);
7211be6acb7SGleb Smirnoff 		if (m_new == NULL)
72295d67482SBill Paul 			return (ENOBUFS);
72395d67482SBill Paul 
7241be6acb7SGleb Smirnoff 		m_cljget(m_new, M_DONTWAIT, MJUM9BYTES);
7251be6acb7SGleb Smirnoff 		if (!(m_new->m_flags & M_EXT)) {
72695d67482SBill Paul 			m_freem(m_new);
72795d67482SBill Paul 			return (ENOBUFS);
72895d67482SBill Paul 		}
7291be6acb7SGleb Smirnoff 		m_new->m_len = m_new->m_pkthdr.len = MJUM9BYTES;
73095d67482SBill Paul 	} else {
73195d67482SBill Paul 		m_new = m;
7321be6acb7SGleb Smirnoff 		m_new->m_len = m_new->m_pkthdr.len = MJUM9BYTES;
73395d67482SBill Paul 		m_new->m_data = m_new->m_ext.ext_buf;
73495d67482SBill Paul 	}
73595d67482SBill Paul 
736652ae483SGleb Smirnoff 	if ((sc->bge_flags & BGE_FLAG_RX_ALIGNBUG) == 0)
73795d67482SBill Paul 		m_adj(m_new, ETHER_ALIGN);
7381be6acb7SGleb Smirnoff 
7391be6acb7SGleb Smirnoff 	error = bus_dmamap_load_mbuf_sg(sc->bge_cdata.bge_mtag_jumbo,
7401be6acb7SGleb Smirnoff 	    sc->bge_cdata.bge_rx_jumbo_dmamap[i],
7411be6acb7SGleb Smirnoff 	    m_new, segs, &nsegs, BUS_DMA_NOWAIT);
7421be6acb7SGleb Smirnoff 	if (error) {
7431be6acb7SGleb Smirnoff 		if (m == NULL)
744f41ac2beSBill Paul 			m_freem(m_new);
7451be6acb7SGleb Smirnoff 		return (error);
746f7cea149SGleb Smirnoff 	}
7471be6acb7SGleb Smirnoff 	sc->bge_cdata.bge_rx_jumbo_chain[i] = m_new;
7481be6acb7SGleb Smirnoff 
7491be6acb7SGleb Smirnoff 	/*
7501be6acb7SGleb Smirnoff 	 * Fill in the extended RX buffer descriptor.
7511be6acb7SGleb Smirnoff 	 */
7521be6acb7SGleb Smirnoff 	r = &sc->bge_ldata.bge_rx_jumbo_ring[i];
7534e7ba1abSGleb Smirnoff 	r->bge_flags = BGE_RXBDFLAG_JUMBO_RING|BGE_RXBDFLAG_END;
7544e7ba1abSGleb Smirnoff 	r->bge_idx = i;
7554e7ba1abSGleb Smirnoff 	r->bge_len3 = r->bge_len2 = r->bge_len1 = 0;
7564e7ba1abSGleb Smirnoff 	switch (nsegs) {
7574e7ba1abSGleb Smirnoff 	case 4:
7584e7ba1abSGleb Smirnoff 		r->bge_addr3.bge_addr_lo = BGE_ADDR_LO(segs[3].ds_addr);
7594e7ba1abSGleb Smirnoff 		r->bge_addr3.bge_addr_hi = BGE_ADDR_HI(segs[3].ds_addr);
7604e7ba1abSGleb Smirnoff 		r->bge_len3 = segs[3].ds_len;
7614e7ba1abSGleb Smirnoff 	case 3:
762e907febfSPyun YongHyeon 		r->bge_addr2.bge_addr_lo = BGE_ADDR_LO(segs[2].ds_addr);
763e907febfSPyun YongHyeon 		r->bge_addr2.bge_addr_hi = BGE_ADDR_HI(segs[2].ds_addr);
764e907febfSPyun YongHyeon 		r->bge_len2 = segs[2].ds_len;
7654e7ba1abSGleb Smirnoff 	case 2:
7664e7ba1abSGleb Smirnoff 		r->bge_addr1.bge_addr_lo = BGE_ADDR_LO(segs[1].ds_addr);
7674e7ba1abSGleb Smirnoff 		r->bge_addr1.bge_addr_hi = BGE_ADDR_HI(segs[1].ds_addr);
7684e7ba1abSGleb Smirnoff 		r->bge_len1 = segs[1].ds_len;
7694e7ba1abSGleb Smirnoff 	case 1:
7704e7ba1abSGleb Smirnoff 		r->bge_addr0.bge_addr_lo = BGE_ADDR_LO(segs[0].ds_addr);
7714e7ba1abSGleb Smirnoff 		r->bge_addr0.bge_addr_hi = BGE_ADDR_HI(segs[0].ds_addr);
7724e7ba1abSGleb Smirnoff 		r->bge_len0 = segs[0].ds_len;
7734e7ba1abSGleb Smirnoff 		break;
7744e7ba1abSGleb Smirnoff 	default:
7754e7ba1abSGleb Smirnoff 		panic("%s: %d segments\n", __func__, nsegs);
7764e7ba1abSGleb Smirnoff 	}
777f41ac2beSBill Paul 
778f41ac2beSBill Paul 	bus_dmamap_sync(sc->bge_cdata.bge_mtag,
779f41ac2beSBill Paul 	    sc->bge_cdata.bge_rx_jumbo_dmamap[i],
780f41ac2beSBill Paul 	    BUS_DMASYNC_PREREAD);
78195d67482SBill Paul 
78295d67482SBill Paul 	return (0);
78395d67482SBill Paul }
78495d67482SBill Paul 
78595d67482SBill Paul /*
78695d67482SBill Paul  * The standard receive ring has 512 entries in it. At 2K per mbuf cluster,
78795d67482SBill Paul  * that's 1MB or memory, which is a lot. For now, we fill only the first
78895d67482SBill Paul  * 256 ring entries and hope that our CPU is fast enough to keep up with
78995d67482SBill Paul  * the NIC.
79095d67482SBill Paul  */
79195d67482SBill Paul static int
7923f74909aSGleb Smirnoff bge_init_rx_ring_std(struct bge_softc *sc)
79395d67482SBill Paul {
79495d67482SBill Paul 	int i;
79595d67482SBill Paul 
79695d67482SBill Paul 	for (i = 0; i < BGE_SSLOTS; i++) {
79795d67482SBill Paul 		if (bge_newbuf_std(sc, i, NULL) == ENOBUFS)
79895d67482SBill Paul 			return (ENOBUFS);
79995d67482SBill Paul 	};
80095d67482SBill Paul 
801f41ac2beSBill Paul 	bus_dmamap_sync(sc->bge_cdata.bge_rx_std_ring_tag,
802f41ac2beSBill Paul 	    sc->bge_cdata.bge_rx_std_ring_map,
803f41ac2beSBill Paul 	    BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
804f41ac2beSBill Paul 
80595d67482SBill Paul 	sc->bge_std = i - 1;
80695d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_RX_STD_PROD_LO, sc->bge_std);
80795d67482SBill Paul 
80895d67482SBill Paul 	return (0);
80995d67482SBill Paul }
81095d67482SBill Paul 
81195d67482SBill Paul static void
8123f74909aSGleb Smirnoff bge_free_rx_ring_std(struct bge_softc *sc)
81395d67482SBill Paul {
81495d67482SBill Paul 	int i;
81595d67482SBill Paul 
81695d67482SBill Paul 	for (i = 0; i < BGE_STD_RX_RING_CNT; i++) {
81795d67482SBill Paul 		if (sc->bge_cdata.bge_rx_std_chain[i] != NULL) {
818e65bed95SPyun YongHyeon 			bus_dmamap_sync(sc->bge_cdata.bge_mtag,
819e65bed95SPyun YongHyeon 			    sc->bge_cdata.bge_rx_std_dmamap[i],
820e65bed95SPyun YongHyeon 			    BUS_DMASYNC_POSTREAD);
821f41ac2beSBill Paul 			bus_dmamap_unload(sc->bge_cdata.bge_mtag,
822f41ac2beSBill Paul 			    sc->bge_cdata.bge_rx_std_dmamap[i]);
823e65bed95SPyun YongHyeon 			m_freem(sc->bge_cdata.bge_rx_std_chain[i]);
824e65bed95SPyun YongHyeon 			sc->bge_cdata.bge_rx_std_chain[i] = NULL;
82595d67482SBill Paul 		}
826f41ac2beSBill Paul 		bzero((char *)&sc->bge_ldata.bge_rx_std_ring[i],
82795d67482SBill Paul 		    sizeof(struct bge_rx_bd));
82895d67482SBill Paul 	}
82995d67482SBill Paul }
83095d67482SBill Paul 
83195d67482SBill Paul static int
8323f74909aSGleb Smirnoff bge_init_rx_ring_jumbo(struct bge_softc *sc)
83395d67482SBill Paul {
83495d67482SBill Paul 	struct bge_rcb *rcb;
8351be6acb7SGleb Smirnoff 	int i;
83695d67482SBill Paul 
83795d67482SBill Paul 	for (i = 0; i < BGE_JUMBO_RX_RING_CNT; i++) {
83895d67482SBill Paul 		if (bge_newbuf_jumbo(sc, i, NULL) == ENOBUFS)
83995d67482SBill Paul 			return (ENOBUFS);
84095d67482SBill Paul 	};
84195d67482SBill Paul 
842f41ac2beSBill Paul 	bus_dmamap_sync(sc->bge_cdata.bge_rx_jumbo_ring_tag,
843f41ac2beSBill Paul 	    sc->bge_cdata.bge_rx_jumbo_ring_map,
844f41ac2beSBill Paul 	    BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
845f41ac2beSBill Paul 
84695d67482SBill Paul 	sc->bge_jumbo = i - 1;
84795d67482SBill Paul 
848f41ac2beSBill Paul 	rcb = &sc->bge_ldata.bge_info.bge_jumbo_rx_rcb;
8491be6acb7SGleb Smirnoff 	rcb->bge_maxlen_flags = BGE_RCB_MAXLEN_FLAGS(0,
8501be6acb7SGleb Smirnoff 				    BGE_RCB_FLAG_USE_EXT_RX_BD);
85167111612SJohn Polstra 	CSR_WRITE_4(sc, BGE_RX_JUMBO_RCB_MAXLEN_FLAGS, rcb->bge_maxlen_flags);
85295d67482SBill Paul 
85395d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_RX_JUMBO_PROD_LO, sc->bge_jumbo);
85495d67482SBill Paul 
85595d67482SBill Paul 	return (0);
85695d67482SBill Paul }
85795d67482SBill Paul 
85895d67482SBill Paul static void
8593f74909aSGleb Smirnoff bge_free_rx_ring_jumbo(struct bge_softc *sc)
86095d67482SBill Paul {
86195d67482SBill Paul 	int i;
86295d67482SBill Paul 
86395d67482SBill Paul 	for (i = 0; i < BGE_JUMBO_RX_RING_CNT; i++) {
86495d67482SBill Paul 		if (sc->bge_cdata.bge_rx_jumbo_chain[i] != NULL) {
865e65bed95SPyun YongHyeon 			bus_dmamap_sync(sc->bge_cdata.bge_mtag_jumbo,
866e65bed95SPyun YongHyeon 			    sc->bge_cdata.bge_rx_jumbo_dmamap[i],
867e65bed95SPyun YongHyeon 			    BUS_DMASYNC_POSTREAD);
868f41ac2beSBill Paul 			bus_dmamap_unload(sc->bge_cdata.bge_mtag_jumbo,
869f41ac2beSBill Paul 			    sc->bge_cdata.bge_rx_jumbo_dmamap[i]);
870e65bed95SPyun YongHyeon 			m_freem(sc->bge_cdata.bge_rx_jumbo_chain[i]);
871e65bed95SPyun YongHyeon 			sc->bge_cdata.bge_rx_jumbo_chain[i] = NULL;
87295d67482SBill Paul 		}
873f41ac2beSBill Paul 		bzero((char *)&sc->bge_ldata.bge_rx_jumbo_ring[i],
8741be6acb7SGleb Smirnoff 		    sizeof(struct bge_extrx_bd));
87595d67482SBill Paul 	}
87695d67482SBill Paul }
87795d67482SBill Paul 
87895d67482SBill Paul static void
8793f74909aSGleb Smirnoff bge_free_tx_ring(struct bge_softc *sc)
88095d67482SBill Paul {
88195d67482SBill Paul 	int i;
88295d67482SBill Paul 
883f41ac2beSBill Paul 	if (sc->bge_ldata.bge_tx_ring == NULL)
88495d67482SBill Paul 		return;
88595d67482SBill Paul 
88695d67482SBill Paul 	for (i = 0; i < BGE_TX_RING_CNT; i++) {
88795d67482SBill Paul 		if (sc->bge_cdata.bge_tx_chain[i] != NULL) {
888e65bed95SPyun YongHyeon 			bus_dmamap_sync(sc->bge_cdata.bge_mtag,
889e65bed95SPyun YongHyeon 			    sc->bge_cdata.bge_tx_dmamap[i],
890e65bed95SPyun YongHyeon 			    BUS_DMASYNC_POSTWRITE);
891f41ac2beSBill Paul 			bus_dmamap_unload(sc->bge_cdata.bge_mtag,
892f41ac2beSBill Paul 			    sc->bge_cdata.bge_tx_dmamap[i]);
893e65bed95SPyun YongHyeon 			m_freem(sc->bge_cdata.bge_tx_chain[i]);
894e65bed95SPyun YongHyeon 			sc->bge_cdata.bge_tx_chain[i] = NULL;
89595d67482SBill Paul 		}
896f41ac2beSBill Paul 		bzero((char *)&sc->bge_ldata.bge_tx_ring[i],
89795d67482SBill Paul 		    sizeof(struct bge_tx_bd));
89895d67482SBill Paul 	}
89995d67482SBill Paul }
90095d67482SBill Paul 
90195d67482SBill Paul static int
9023f74909aSGleb Smirnoff bge_init_tx_ring(struct bge_softc *sc)
90395d67482SBill Paul {
90495d67482SBill Paul 	sc->bge_txcnt = 0;
90595d67482SBill Paul 	sc->bge_tx_saved_considx = 0;
9063927098fSPaul Saab 
90714bbd30fSGleb Smirnoff 	/* Initialize transmit producer index for host-memory send ring. */
90814bbd30fSGleb Smirnoff 	sc->bge_tx_prodidx = 0;
90914bbd30fSGleb Smirnoff 	CSR_WRITE_4(sc, BGE_MBX_TX_HOST_PROD0_LO, sc->bge_tx_prodidx);
91014bbd30fSGleb Smirnoff 
9113927098fSPaul Saab 	/* 5700 b2 errata */
912e0ced696SPaul Saab 	if (sc->bge_chiprev == BGE_CHIPREV_5700_BX)
91314bbd30fSGleb Smirnoff 		CSR_WRITE_4(sc, BGE_MBX_TX_HOST_PROD0_LO, sc->bge_tx_prodidx);
9143927098fSPaul Saab 
91514bbd30fSGleb Smirnoff 	/* NIC-memory send ring not used; initialize to zero. */
9163927098fSPaul Saab 	CSR_WRITE_4(sc, BGE_MBX_TX_NIC_PROD0_LO, 0);
9173927098fSPaul Saab 	/* 5700 b2 errata */
918e0ced696SPaul Saab 	if (sc->bge_chiprev == BGE_CHIPREV_5700_BX)
91995d67482SBill Paul 		CSR_WRITE_4(sc, BGE_MBX_TX_NIC_PROD0_LO, 0);
92095d67482SBill Paul 
92195d67482SBill Paul 	return (0);
92295d67482SBill Paul }
92395d67482SBill Paul 
92495d67482SBill Paul static void
9253e9b1bcaSJung-uk Kim bge_setpromisc(struct bge_softc *sc)
9263e9b1bcaSJung-uk Kim {
9273e9b1bcaSJung-uk Kim 	struct ifnet *ifp;
9283e9b1bcaSJung-uk Kim 
9293e9b1bcaSJung-uk Kim 	BGE_LOCK_ASSERT(sc);
9303e9b1bcaSJung-uk Kim 
9313e9b1bcaSJung-uk Kim 	ifp = sc->bge_ifp;
9323e9b1bcaSJung-uk Kim 
9333e9b1bcaSJung-uk Kim 	/*
9343e9b1bcaSJung-uk Kim 	 * Enable or disable promiscuous mode as needed.
9353e9b1bcaSJung-uk Kim 	 * Do not strip VLAN tag when promiscuous mode is enabled.
9363e9b1bcaSJung-uk Kim 	 */
9373e9b1bcaSJung-uk Kim 	if (ifp->if_flags & IFF_PROMISC)
9383e9b1bcaSJung-uk Kim 		BGE_SETBIT(sc, BGE_RX_MODE, BGE_RXMODE_RX_PROMISC |
9393e9b1bcaSJung-uk Kim 		    BGE_RXMODE_RX_KEEP_VLAN_DIAG);
9403e9b1bcaSJung-uk Kim 	else
9413e9b1bcaSJung-uk Kim 		BGE_CLRBIT(sc, BGE_RX_MODE, BGE_RXMODE_RX_PROMISC |
9423e9b1bcaSJung-uk Kim 		    BGE_RXMODE_RX_KEEP_VLAN_DIAG);
9433e9b1bcaSJung-uk Kim }
9443e9b1bcaSJung-uk Kim 
9453e9b1bcaSJung-uk Kim static void
9463f74909aSGleb Smirnoff bge_setmulti(struct bge_softc *sc)
94795d67482SBill Paul {
94895d67482SBill Paul 	struct ifnet *ifp;
94995d67482SBill Paul 	struct ifmultiaddr *ifma;
9503f74909aSGleb Smirnoff 	uint32_t hashes[4] = { 0, 0, 0, 0 };
95195d67482SBill Paul 	int h, i;
95295d67482SBill Paul 
9530f9bd73bSSam Leffler 	BGE_LOCK_ASSERT(sc);
9540f9bd73bSSam Leffler 
955fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp;
95695d67482SBill Paul 
95795d67482SBill Paul 	if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
95895d67482SBill Paul 		for (i = 0; i < 4; i++)
95995d67482SBill Paul 			CSR_WRITE_4(sc, BGE_MAR0 + (i * 4), 0xFFFFFFFF);
96095d67482SBill Paul 		return;
96195d67482SBill Paul 	}
96295d67482SBill Paul 
96395d67482SBill Paul 	/* First, zot all the existing filters. */
96495d67482SBill Paul 	for (i = 0; i < 4; i++)
96595d67482SBill Paul 		CSR_WRITE_4(sc, BGE_MAR0 + (i * 4), 0);
96695d67482SBill Paul 
96795d67482SBill Paul 	/* Now program new ones. */
96813b203d0SRobert Watson 	IF_ADDR_LOCK(ifp);
96995d67482SBill Paul 	TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
97095d67482SBill Paul 		if (ifma->ifma_addr->sa_family != AF_LINK)
97195d67482SBill Paul 			continue;
9720e939c0cSChristian Weisgerber 		h = ether_crc32_le(LLADDR((struct sockaddr_dl *)
9730e939c0cSChristian Weisgerber 		    ifma->ifma_addr), ETHER_ADDR_LEN) & 0x7F;
97495d67482SBill Paul 		hashes[(h & 0x60) >> 5] |= 1 << (h & 0x1F);
97595d67482SBill Paul 	}
97613b203d0SRobert Watson 	IF_ADDR_UNLOCK(ifp);
97795d67482SBill Paul 
97895d67482SBill Paul 	for (i = 0; i < 4; i++)
97995d67482SBill Paul 		CSR_WRITE_4(sc, BGE_MAR0 + (i * 4), hashes[i]);
98095d67482SBill Paul }
98195d67482SBill Paul 
9828cb1383cSDoug Ambrisko static void
9838cb1383cSDoug Ambrisko bge_sig_pre_reset(sc, type)
9848cb1383cSDoug Ambrisko 	struct bge_softc *sc;
9858cb1383cSDoug Ambrisko 	int type;
9868cb1383cSDoug Ambrisko {
9878cb1383cSDoug Ambrisko 	/*
9888cb1383cSDoug Ambrisko 	 * Some chips don't like this so only do this if ASF is enabled
9898cb1383cSDoug Ambrisko 	 */
9908cb1383cSDoug Ambrisko 	if (sc->bge_asf_mode)
9918cb1383cSDoug Ambrisko 		bge_writemem_ind(sc, BGE_SOFTWARE_GENCOMM, BGE_MAGIC_NUMBER);
9928cb1383cSDoug Ambrisko 
9938cb1383cSDoug Ambrisko 	if (sc->bge_asf_mode & ASF_NEW_HANDSHAKE) {
9948cb1383cSDoug Ambrisko 		switch (type) {
9958cb1383cSDoug Ambrisko 		case BGE_RESET_START:
9968cb1383cSDoug Ambrisko 			bge_writemem_ind(sc, BGE_SDI_STATUS, 0x1); /* START */
9978cb1383cSDoug Ambrisko 			break;
9988cb1383cSDoug Ambrisko 		case BGE_RESET_STOP:
9998cb1383cSDoug Ambrisko 			bge_writemem_ind(sc, BGE_SDI_STATUS, 0x2); /* UNLOAD */
10008cb1383cSDoug Ambrisko 			break;
10018cb1383cSDoug Ambrisko 		}
10028cb1383cSDoug Ambrisko 	}
10038cb1383cSDoug Ambrisko }
10048cb1383cSDoug Ambrisko 
10058cb1383cSDoug Ambrisko static void
10068cb1383cSDoug Ambrisko bge_sig_post_reset(sc, type)
10078cb1383cSDoug Ambrisko 	struct bge_softc *sc;
10088cb1383cSDoug Ambrisko 	int type;
10098cb1383cSDoug Ambrisko {
10108cb1383cSDoug Ambrisko 	if (sc->bge_asf_mode & ASF_NEW_HANDSHAKE) {
10118cb1383cSDoug Ambrisko 		switch (type) {
10128cb1383cSDoug Ambrisko 		case BGE_RESET_START:
10138cb1383cSDoug Ambrisko 			bge_writemem_ind(sc, BGE_SDI_STATUS, 0x80000001);
10148cb1383cSDoug Ambrisko 			/* START DONE */
10158cb1383cSDoug Ambrisko 			break;
10168cb1383cSDoug Ambrisko 		case BGE_RESET_STOP:
10178cb1383cSDoug Ambrisko 			bge_writemem_ind(sc, BGE_SDI_STATUS, 0x80000002);
10188cb1383cSDoug Ambrisko 			break;
10198cb1383cSDoug Ambrisko 		}
10208cb1383cSDoug Ambrisko 	}
10218cb1383cSDoug Ambrisko }
10228cb1383cSDoug Ambrisko 
10238cb1383cSDoug Ambrisko static void
10248cb1383cSDoug Ambrisko bge_sig_legacy(sc, type)
10258cb1383cSDoug Ambrisko 	struct bge_softc *sc;
10268cb1383cSDoug Ambrisko 	int type;
10278cb1383cSDoug Ambrisko {
10288cb1383cSDoug Ambrisko 	if (sc->bge_asf_mode) {
10298cb1383cSDoug Ambrisko 		switch (type) {
10308cb1383cSDoug Ambrisko 		case BGE_RESET_START:
10318cb1383cSDoug Ambrisko 			bge_writemem_ind(sc, BGE_SDI_STATUS, 0x1); /* START */
10328cb1383cSDoug Ambrisko 			break;
10338cb1383cSDoug Ambrisko 		case BGE_RESET_STOP:
10348cb1383cSDoug Ambrisko 			bge_writemem_ind(sc, BGE_SDI_STATUS, 0x2); /* UNLOAD */
10358cb1383cSDoug Ambrisko 			break;
10368cb1383cSDoug Ambrisko 		}
10378cb1383cSDoug Ambrisko 	}
10388cb1383cSDoug Ambrisko }
10398cb1383cSDoug Ambrisko 
10408cb1383cSDoug Ambrisko void bge_stop_fw(struct bge_softc *);
10418cb1383cSDoug Ambrisko void
10428cb1383cSDoug Ambrisko bge_stop_fw(sc)
10438cb1383cSDoug Ambrisko 	struct bge_softc *sc;
10448cb1383cSDoug Ambrisko {
10458cb1383cSDoug Ambrisko 	int i;
10468cb1383cSDoug Ambrisko 
10478cb1383cSDoug Ambrisko 	if (sc->bge_asf_mode) {
10488cb1383cSDoug Ambrisko 		bge_writemem_ind(sc, BGE_SOFTWARE_GENCOMM_FW, BGE_FW_PAUSE);
10498cb1383cSDoug Ambrisko 		CSR_WRITE_4(sc, BGE_CPU_EVENT,
10508cb1383cSDoug Ambrisko 			    CSR_READ_4(sc, BGE_CPU_EVENT) != (1 << 14));
10518cb1383cSDoug Ambrisko 
10528cb1383cSDoug Ambrisko 		for (i = 0; i < 100; i++ ) {
10538cb1383cSDoug Ambrisko 			if (!(CSR_READ_4(sc, BGE_CPU_EVENT) & (1 << 14)))
10548cb1383cSDoug Ambrisko 				break;
10558cb1383cSDoug Ambrisko 			DELAY(10);
10568cb1383cSDoug Ambrisko 		}
10578cb1383cSDoug Ambrisko 	}
10588cb1383cSDoug Ambrisko }
10598cb1383cSDoug Ambrisko 
106095d67482SBill Paul /*
106195d67482SBill Paul  * Do endian, PCI and DMA initialization. Also check the on-board ROM
106295d67482SBill Paul  * self-test results.
106395d67482SBill Paul  */
106495d67482SBill Paul static int
10653f74909aSGleb Smirnoff bge_chipinit(struct bge_softc *sc)
106695d67482SBill Paul {
10673f74909aSGleb Smirnoff 	uint32_t dma_rw_ctl;
106895d67482SBill Paul 	int i;
106995d67482SBill Paul 
10708cb1383cSDoug Ambrisko 	/* Set endianness before we access any non-PCI registers. */
1071e907febfSPyun YongHyeon 	pci_write_config(sc->bge_dev, BGE_PCI_MISC_CTL, BGE_INIT, 4);
107295d67482SBill Paul 
107395d67482SBill Paul 	/*
107495d67482SBill Paul 	 * Check the 'ROM failed' bit on the RX CPU to see if
107595d67482SBill Paul 	 * self-tests passed.
107695d67482SBill Paul 	 */
107795d67482SBill Paul 	if (CSR_READ_4(sc, BGE_RXCPU_MODE) & BGE_RXCPUMODE_ROMFAIL) {
1078fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "RX CPU self-diagnostics failed!\n");
107995d67482SBill Paul 		return (ENODEV);
108095d67482SBill Paul 	}
108195d67482SBill Paul 
108295d67482SBill Paul 	/* Clear the MAC control register */
108395d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MAC_MODE, 0);
108495d67482SBill Paul 
108595d67482SBill Paul 	/*
108695d67482SBill Paul 	 * Clear the MAC statistics block in the NIC's
108795d67482SBill Paul 	 * internal memory.
108895d67482SBill Paul 	 */
108995d67482SBill Paul 	for (i = BGE_STATS_BLOCK;
10903f74909aSGleb Smirnoff 	    i < BGE_STATS_BLOCK_END + 1; i += sizeof(uint32_t))
109195d67482SBill Paul 		BGE_MEMWIN_WRITE(sc, i, 0);
109295d67482SBill Paul 
109395d67482SBill Paul 	for (i = BGE_STATUS_BLOCK;
10943f74909aSGleb Smirnoff 	    i < BGE_STATUS_BLOCK_END + 1; i += sizeof(uint32_t))
109595d67482SBill Paul 		BGE_MEMWIN_WRITE(sc, i, 0);
109695d67482SBill Paul 
109795d67482SBill Paul 	/* Set up the PCI DMA control register. */
1098652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_PCIE) {
10994c0da0ffSGleb Smirnoff 		/* PCI Express bus */
1100e53d81eeSPaul Saab 		dma_rw_ctl = BGE_PCI_READ_CMD|BGE_PCI_WRITE_CMD |
1101e53d81eeSPaul Saab 		    (0xf << BGE_PCIDMARWCTL_RD_WAT_SHIFT) |
1102e53d81eeSPaul Saab 		    (0x2 << BGE_PCIDMARWCTL_WR_WAT_SHIFT);
1103652ae483SGleb Smirnoff 	} else if (sc->bge_flags & BGE_FLAG_PCIX) {
11048287860eSJohn Polstra 		/* PCI-X bus */
11054c0da0ffSGleb Smirnoff 		if (BGE_IS_5714_FAMILY(sc)) {
11064c0da0ffSGleb Smirnoff 			dma_rw_ctl = BGE_PCI_READ_CMD|BGE_PCI_WRITE_CMD;
11074c0da0ffSGleb Smirnoff 			dma_rw_ctl &= ~BGE_PCIDMARWCTL_ONEDMA_ATONCE; /* XXX */
11084c0da0ffSGleb Smirnoff 			/* XXX magic values, Broadcom-supplied Linux driver */
11094c0da0ffSGleb Smirnoff 			if (sc->bge_asicrev == BGE_ASICREV_BCM5780)
11104c0da0ffSGleb Smirnoff 				dma_rw_ctl |= (1 << 20) | (1 << 18) |
11114c0da0ffSGleb Smirnoff 				    BGE_PCIDMARWCTL_ONEDMA_ATONCE;
11124c0da0ffSGleb Smirnoff 			else
11134c0da0ffSGleb Smirnoff 				dma_rw_ctl |= (1 << 20) | (1 << 18) | (1 << 15);
11144c0da0ffSGleb Smirnoff 
11154c0da0ffSGleb Smirnoff 		} else if (sc->bge_asicrev == BGE_ASICREV_BCM5704)
11165cba12d3SPaul Saab 			/*
11175cba12d3SPaul Saab 			 * The 5704 uses a different encoding of read/write
11185cba12d3SPaul Saab 			 * watermarks.
11195cba12d3SPaul Saab 			 */
11205cba12d3SPaul Saab 			dma_rw_ctl = BGE_PCI_READ_CMD|BGE_PCI_WRITE_CMD |
11215cba12d3SPaul Saab 			    (0x7 << BGE_PCIDMARWCTL_RD_WAT_SHIFT) |
11225cba12d3SPaul Saab 			    (0x3 << BGE_PCIDMARWCTL_WR_WAT_SHIFT);
11235cba12d3SPaul Saab 		else
11245cba12d3SPaul Saab 			dma_rw_ctl = BGE_PCI_READ_CMD|BGE_PCI_WRITE_CMD |
11255cba12d3SPaul Saab 			    (0x3 << BGE_PCIDMARWCTL_RD_WAT_SHIFT) |
11265cba12d3SPaul Saab 			    (0x3 << BGE_PCIDMARWCTL_WR_WAT_SHIFT) |
11275cba12d3SPaul Saab 			    (0x0F);
11285cba12d3SPaul Saab 
11295cba12d3SPaul Saab 		/*
11305cba12d3SPaul Saab 		 * 5703 and 5704 need ONEDMA_AT_ONCE as a workaround
11315cba12d3SPaul Saab 		 * for hardware bugs.
11325cba12d3SPaul Saab 		 */
1133e0ced696SPaul Saab 		if (sc->bge_asicrev == BGE_ASICREV_BCM5703 ||
1134e0ced696SPaul Saab 		    sc->bge_asicrev == BGE_ASICREV_BCM5704) {
11353f74909aSGleb Smirnoff 			uint32_t tmp;
11365cba12d3SPaul Saab 
11375cba12d3SPaul Saab 			tmp = CSR_READ_4(sc, BGE_PCI_CLKCTL) & 0x1f;
11385cba12d3SPaul Saab 			if (tmp == 0x6 || tmp == 0x7)
11395cba12d3SPaul Saab 				dma_rw_ctl |= BGE_PCIDMARWCTL_ONEDMA_ATONCE;
11408287860eSJohn Polstra 		}
11414c0da0ffSGleb Smirnoff 	} else
11424c0da0ffSGleb Smirnoff 		/* Conventional PCI bus */
11434c0da0ffSGleb Smirnoff 		dma_rw_ctl = BGE_PCI_READ_CMD|BGE_PCI_WRITE_CMD |
11444c0da0ffSGleb Smirnoff 		    (0x7 << BGE_PCIDMARWCTL_RD_WAT_SHIFT) |
11454c0da0ffSGleb Smirnoff 		    (0x7 << BGE_PCIDMARWCTL_WR_WAT_SHIFT) |
11464c0da0ffSGleb Smirnoff 		    (0x0F);
11475cba12d3SPaul Saab 
1148e0ced696SPaul Saab 	if (sc->bge_asicrev == BGE_ASICREV_BCM5703 ||
11490434d1b8SBill Paul 	    sc->bge_asicrev == BGE_ASICREV_BCM5704 ||
11504c0da0ffSGleb Smirnoff 	    sc->bge_asicrev == BGE_ASICREV_BCM5705)
11515cba12d3SPaul Saab 		dma_rw_ctl &= ~BGE_PCIDMARWCTL_MINDMA;
11525cba12d3SPaul Saab 	pci_write_config(sc->bge_dev, BGE_PCI_DMA_RW_CTL, dma_rw_ctl, 4);
115395d67482SBill Paul 
115495d67482SBill Paul 	/*
115595d67482SBill Paul 	 * Set up general mode register.
115695d67482SBill Paul 	 */
1157e907febfSPyun YongHyeon 	CSR_WRITE_4(sc, BGE_MODE_CTL, BGE_DMA_SWAP_OPTIONS|
115895d67482SBill Paul 	    BGE_MODECTL_MAC_ATTN_INTR|BGE_MODECTL_HOST_SEND_BDS|
1159ee7ef91cSOleg Bulyzhin 	    BGE_MODECTL_TX_NO_PHDR_CSUM);
116095d67482SBill Paul 
116195d67482SBill Paul 	/*
11628cb1383cSDoug Ambrisko 	 * Tell the firmware the driver is running
11638cb1383cSDoug Ambrisko 	 */
11648cb1383cSDoug Ambrisko 	if (sc->bge_asf_mode & ASF_STACKUP)
11658cb1383cSDoug Ambrisko 		BGE_SETBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
11668cb1383cSDoug Ambrisko 
11678cb1383cSDoug Ambrisko 	/*
1168ea13bdd5SJohn Polstra 	 * Disable memory write invalidate.  Apparently it is not supported
1169ea13bdd5SJohn Polstra 	 * properly by these devices.
117095d67482SBill Paul 	 */
1171ea13bdd5SJohn Polstra 	PCI_CLRBIT(sc->bge_dev, BGE_PCI_CMD, PCIM_CMD_MWIEN, 4);
117295d67482SBill Paul 
117395d67482SBill Paul #ifdef __brokenalpha__
117495d67482SBill Paul 	/*
117595d67482SBill Paul 	 * Must insure that we do not cross an 8K (bytes) boundary
117695d67482SBill Paul 	 * for DMA reads.  Our highest limit is 1K bytes.  This is a
117795d67482SBill Paul 	 * restriction on some ALPHA platforms with early revision
117895d67482SBill Paul 	 * 21174 PCI chipsets, such as the AlphaPC 164lx
117995d67482SBill Paul 	 */
118062f1ea9cSJohn Polstra 	PCI_SETBIT(sc->bge_dev, BGE_PCI_DMA_RW_CTL,
118162f1ea9cSJohn Polstra 	    BGE_PCI_READ_BNDRY_1024BYTES, 4);
118295d67482SBill Paul #endif
118395d67482SBill Paul 
118495d67482SBill Paul 	/* Set the timer prescaler (always 66Mhz) */
118595d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MISC_CFG, 65 << 1/*BGE_32BITTIME_66MHZ*/);
118695d67482SBill Paul 
118795d67482SBill Paul 	return (0);
118895d67482SBill Paul }
118995d67482SBill Paul 
119095d67482SBill Paul static int
11913f74909aSGleb Smirnoff bge_blockinit(struct bge_softc *sc)
119295d67482SBill Paul {
119395d67482SBill Paul 	struct bge_rcb *rcb;
1194e907febfSPyun YongHyeon 	bus_size_t vrcb;
1195e907febfSPyun YongHyeon 	bge_hostaddr taddr;
119695d67482SBill Paul 	int i;
119795d67482SBill Paul 
119895d67482SBill Paul 	/*
119995d67482SBill Paul 	 * Initialize the memory window pointer register so that
120095d67482SBill Paul 	 * we can access the first 32K of internal NIC RAM. This will
120195d67482SBill Paul 	 * allow us to set up the TX send ring RCBs and the RX return
120295d67482SBill Paul 	 * ring RCBs, plus other things which live in NIC memory.
120395d67482SBill Paul 	 */
120495d67482SBill Paul 	CSR_WRITE_4(sc, BGE_PCI_MEMWIN_BASEADDR, 0);
120595d67482SBill Paul 
1206822f63fcSBill Paul 	/* Note: the BCM5704 has a smaller mbuf space than other chips. */
1207822f63fcSBill Paul 
12087ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc))) {
120995d67482SBill Paul 		/* Configure mbuf memory pool */
12100dae9719SJung-uk Kim 		CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_BASEADDR, BGE_BUFFPOOL_1);
1211822f63fcSBill Paul 		if (sc->bge_asicrev == BGE_ASICREV_BCM5704)
1212822f63fcSBill Paul 			CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_LEN, 0x10000);
1213822f63fcSBill Paul 		else
121495d67482SBill Paul 			CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_LEN, 0x18000);
121595d67482SBill Paul 
121695d67482SBill Paul 		/* Configure DMA resource pool */
12170434d1b8SBill Paul 		CSR_WRITE_4(sc, BGE_BMAN_DMA_DESCPOOL_BASEADDR,
12180434d1b8SBill Paul 		    BGE_DMA_DESCRIPTORS);
121995d67482SBill Paul 		CSR_WRITE_4(sc, BGE_BMAN_DMA_DESCPOOL_LEN, 0x2000);
12200434d1b8SBill Paul 	}
122195d67482SBill Paul 
122295d67482SBill Paul 	/* Configure mbuf pool watermarks */
12237ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc))) {
12240434d1b8SBill Paul 		CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_READDMA_LOWAT, 0x0);
12250434d1b8SBill Paul 		CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_MACRX_LOWAT, 0x10);
12260434d1b8SBill Paul 	} else {
1227fa228020SPaul Saab 		CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_READDMA_LOWAT, 0x50);
1228fa228020SPaul Saab 		CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_MACRX_LOWAT, 0x20);
12290434d1b8SBill Paul 	}
1230fa228020SPaul Saab 	CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_HIWAT, 0x60);
123195d67482SBill Paul 
123295d67482SBill Paul 	/* Configure DMA resource watermarks */
123395d67482SBill Paul 	CSR_WRITE_4(sc, BGE_BMAN_DMA_DESCPOOL_LOWAT, 5);
123495d67482SBill Paul 	CSR_WRITE_4(sc, BGE_BMAN_DMA_DESCPOOL_HIWAT, 10);
123595d67482SBill Paul 
123695d67482SBill Paul 	/* Enable buffer manager */
12377ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc))) {
123895d67482SBill Paul 		CSR_WRITE_4(sc, BGE_BMAN_MODE,
123995d67482SBill Paul 		    BGE_BMANMODE_ENABLE|BGE_BMANMODE_LOMBUF_ATTN);
124095d67482SBill Paul 
124195d67482SBill Paul 		/* Poll for buffer manager start indication */
124295d67482SBill Paul 		for (i = 0; i < BGE_TIMEOUT; i++) {
124395d67482SBill Paul 			if (CSR_READ_4(sc, BGE_BMAN_MODE) & BGE_BMANMODE_ENABLE)
124495d67482SBill Paul 				break;
124595d67482SBill Paul 			DELAY(10);
124695d67482SBill Paul 		}
124795d67482SBill Paul 
124895d67482SBill Paul 		if (i == BGE_TIMEOUT) {
1249fe806fdaSPyun YongHyeon 			device_printf(sc->bge_dev,
1250fe806fdaSPyun YongHyeon 			    "buffer manager failed to start\n");
125195d67482SBill Paul 			return (ENXIO);
125295d67482SBill Paul 		}
12530434d1b8SBill Paul 	}
125495d67482SBill Paul 
125595d67482SBill Paul 	/* Enable flow-through queues */
125695d67482SBill Paul 	CSR_WRITE_4(sc, BGE_FTQ_RESET, 0xFFFFFFFF);
125795d67482SBill Paul 	CSR_WRITE_4(sc, BGE_FTQ_RESET, 0);
125895d67482SBill Paul 
125995d67482SBill Paul 	/* Wait until queue initialization is complete */
126095d67482SBill Paul 	for (i = 0; i < BGE_TIMEOUT; i++) {
126195d67482SBill Paul 		if (CSR_READ_4(sc, BGE_FTQ_RESET) == 0)
126295d67482SBill Paul 			break;
126395d67482SBill Paul 		DELAY(10);
126495d67482SBill Paul 	}
126595d67482SBill Paul 
126695d67482SBill Paul 	if (i == BGE_TIMEOUT) {
1267fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "flow-through queue init failed\n");
126895d67482SBill Paul 		return (ENXIO);
126995d67482SBill Paul 	}
127095d67482SBill Paul 
127195d67482SBill Paul 	/* Initialize the standard RX ring control block */
1272f41ac2beSBill Paul 	rcb = &sc->bge_ldata.bge_info.bge_std_rx_rcb;
1273f41ac2beSBill Paul 	rcb->bge_hostaddr.bge_addr_lo =
1274f41ac2beSBill Paul 	    BGE_ADDR_LO(sc->bge_ldata.bge_rx_std_ring_paddr);
1275f41ac2beSBill Paul 	rcb->bge_hostaddr.bge_addr_hi =
1276f41ac2beSBill Paul 	    BGE_ADDR_HI(sc->bge_ldata.bge_rx_std_ring_paddr);
1277f41ac2beSBill Paul 	bus_dmamap_sync(sc->bge_cdata.bge_rx_std_ring_tag,
1278f41ac2beSBill Paul 	    sc->bge_cdata.bge_rx_std_ring_map, BUS_DMASYNC_PREREAD);
12797ee00338SJung-uk Kim 	if (BGE_IS_5705_PLUS(sc))
12800434d1b8SBill Paul 		rcb->bge_maxlen_flags = BGE_RCB_MAXLEN_FLAGS(512, 0);
12810434d1b8SBill Paul 	else
12820434d1b8SBill Paul 		rcb->bge_maxlen_flags =
12830434d1b8SBill Paul 		    BGE_RCB_MAXLEN_FLAGS(BGE_MAX_FRAMELEN, 0);
128495d67482SBill Paul 	rcb->bge_nicaddr = BGE_STD_RX_RINGS;
128567111612SJohn Polstra 	CSR_WRITE_4(sc, BGE_RX_STD_RCB_HADDR_HI, rcb->bge_hostaddr.bge_addr_hi);
128667111612SJohn Polstra 	CSR_WRITE_4(sc, BGE_RX_STD_RCB_HADDR_LO, rcb->bge_hostaddr.bge_addr_lo);
1287f41ac2beSBill Paul 
128867111612SJohn Polstra 	CSR_WRITE_4(sc, BGE_RX_STD_RCB_MAXLEN_FLAGS, rcb->bge_maxlen_flags);
128967111612SJohn Polstra 	CSR_WRITE_4(sc, BGE_RX_STD_RCB_NICADDR, rcb->bge_nicaddr);
129095d67482SBill Paul 
129195d67482SBill Paul 	/*
129295d67482SBill Paul 	 * Initialize the jumbo RX ring control block
129395d67482SBill Paul 	 * We set the 'ring disabled' bit in the flags
129495d67482SBill Paul 	 * field until we're actually ready to start
129595d67482SBill Paul 	 * using this ring (i.e. once we set the MTU
129695d67482SBill Paul 	 * high enough to require it).
129795d67482SBill Paul 	 */
12984c0da0ffSGleb Smirnoff 	if (BGE_IS_JUMBO_CAPABLE(sc)) {
1299f41ac2beSBill Paul 		rcb = &sc->bge_ldata.bge_info.bge_jumbo_rx_rcb;
1300f41ac2beSBill Paul 
1301f41ac2beSBill Paul 		rcb->bge_hostaddr.bge_addr_lo =
1302f41ac2beSBill Paul 		    BGE_ADDR_LO(sc->bge_ldata.bge_rx_jumbo_ring_paddr);
1303f41ac2beSBill Paul 		rcb->bge_hostaddr.bge_addr_hi =
1304f41ac2beSBill Paul 		    BGE_ADDR_HI(sc->bge_ldata.bge_rx_jumbo_ring_paddr);
1305f41ac2beSBill Paul 		bus_dmamap_sync(sc->bge_cdata.bge_rx_jumbo_ring_tag,
1306f41ac2beSBill Paul 		    sc->bge_cdata.bge_rx_jumbo_ring_map,
1307f41ac2beSBill Paul 		    BUS_DMASYNC_PREREAD);
13081be6acb7SGleb Smirnoff 		rcb->bge_maxlen_flags = BGE_RCB_MAXLEN_FLAGS(0,
13091be6acb7SGleb Smirnoff 		    BGE_RCB_FLAG_USE_EXT_RX_BD|BGE_RCB_FLAG_RING_DISABLED);
131095d67482SBill Paul 		rcb->bge_nicaddr = BGE_JUMBO_RX_RINGS;
131167111612SJohn Polstra 		CSR_WRITE_4(sc, BGE_RX_JUMBO_RCB_HADDR_HI,
131267111612SJohn Polstra 		    rcb->bge_hostaddr.bge_addr_hi);
131367111612SJohn Polstra 		CSR_WRITE_4(sc, BGE_RX_JUMBO_RCB_HADDR_LO,
131467111612SJohn Polstra 		    rcb->bge_hostaddr.bge_addr_lo);
1315f41ac2beSBill Paul 
13160434d1b8SBill Paul 		CSR_WRITE_4(sc, BGE_RX_JUMBO_RCB_MAXLEN_FLAGS,
13170434d1b8SBill Paul 		    rcb->bge_maxlen_flags);
131867111612SJohn Polstra 		CSR_WRITE_4(sc, BGE_RX_JUMBO_RCB_NICADDR, rcb->bge_nicaddr);
131995d67482SBill Paul 
132095d67482SBill Paul 		/* Set up dummy disabled mini ring RCB */
1321f41ac2beSBill Paul 		rcb = &sc->bge_ldata.bge_info.bge_mini_rx_rcb;
132267111612SJohn Polstra 		rcb->bge_maxlen_flags =
132367111612SJohn Polstra 		    BGE_RCB_MAXLEN_FLAGS(0, BGE_RCB_FLAG_RING_DISABLED);
13240434d1b8SBill Paul 		CSR_WRITE_4(sc, BGE_RX_MINI_RCB_MAXLEN_FLAGS,
13250434d1b8SBill Paul 		    rcb->bge_maxlen_flags);
13260434d1b8SBill Paul 	}
132795d67482SBill Paul 
132895d67482SBill Paul 	/*
132995d67482SBill Paul 	 * Set the BD ring replentish thresholds. The recommended
133095d67482SBill Paul 	 * values are 1/8th the number of descriptors allocated to
133195d67482SBill Paul 	 * each ring.
133295d67482SBill Paul 	 */
133395d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RBDI_STD_REPL_THRESH, BGE_STD_RX_RING_CNT/8);
133495d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RBDI_JUMBO_REPL_THRESH, BGE_JUMBO_RX_RING_CNT/8);
133595d67482SBill Paul 
133695d67482SBill Paul 	/*
133795d67482SBill Paul 	 * Disable all unused send rings by setting the 'ring disabled'
133895d67482SBill Paul 	 * bit in the flags field of all the TX send ring control blocks.
133995d67482SBill Paul 	 * These are located in NIC memory.
134095d67482SBill Paul 	 */
1341e907febfSPyun YongHyeon 	vrcb = BGE_MEMWIN_START + BGE_SEND_RING_RCB;
134295d67482SBill Paul 	for (i = 0; i < BGE_TX_RINGS_EXTSSRAM_MAX; i++) {
1343e907febfSPyun YongHyeon 		RCB_WRITE_4(sc, vrcb, bge_maxlen_flags,
1344e907febfSPyun YongHyeon 		    BGE_RCB_MAXLEN_FLAGS(0, BGE_RCB_FLAG_RING_DISABLED));
1345e907febfSPyun YongHyeon 		RCB_WRITE_4(sc, vrcb, bge_nicaddr, 0);
1346e907febfSPyun YongHyeon 		vrcb += sizeof(struct bge_rcb);
134795d67482SBill Paul 	}
134895d67482SBill Paul 
134995d67482SBill Paul 	/* Configure TX RCB 0 (we use only the first ring) */
1350e907febfSPyun YongHyeon 	vrcb = BGE_MEMWIN_START + BGE_SEND_RING_RCB;
1351e907febfSPyun YongHyeon 	BGE_HOSTADDR(taddr, sc->bge_ldata.bge_tx_ring_paddr);
1352e907febfSPyun YongHyeon 	RCB_WRITE_4(sc, vrcb, bge_hostaddr.bge_addr_hi, taddr.bge_addr_hi);
1353e907febfSPyun YongHyeon 	RCB_WRITE_4(sc, vrcb, bge_hostaddr.bge_addr_lo, taddr.bge_addr_lo);
1354e907febfSPyun YongHyeon 	RCB_WRITE_4(sc, vrcb, bge_nicaddr,
1355e907febfSPyun YongHyeon 	    BGE_NIC_TXRING_ADDR(0, BGE_TX_RING_CNT));
13567ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc)))
1357e907febfSPyun YongHyeon 		RCB_WRITE_4(sc, vrcb, bge_maxlen_flags,
1358e907febfSPyun YongHyeon 		    BGE_RCB_MAXLEN_FLAGS(BGE_TX_RING_CNT, 0));
135995d67482SBill Paul 
136095d67482SBill Paul 	/* Disable all unused RX return rings */
1361e907febfSPyun YongHyeon 	vrcb = BGE_MEMWIN_START + BGE_RX_RETURN_RING_RCB;
136295d67482SBill Paul 	for (i = 0; i < BGE_RX_RINGS_MAX; i++) {
1363e907febfSPyun YongHyeon 		RCB_WRITE_4(sc, vrcb, bge_hostaddr.bge_addr_hi, 0);
1364e907febfSPyun YongHyeon 		RCB_WRITE_4(sc, vrcb, bge_hostaddr.bge_addr_lo, 0);
1365e907febfSPyun YongHyeon 		RCB_WRITE_4(sc, vrcb, bge_maxlen_flags,
13660434d1b8SBill Paul 		    BGE_RCB_MAXLEN_FLAGS(sc->bge_return_ring_cnt,
1367e907febfSPyun YongHyeon 		    BGE_RCB_FLAG_RING_DISABLED));
1368e907febfSPyun YongHyeon 		RCB_WRITE_4(sc, vrcb, bge_nicaddr, 0);
136995d67482SBill Paul 		CSR_WRITE_4(sc, BGE_MBX_RX_CONS0_LO +
13703f74909aSGleb Smirnoff 		    (i * (sizeof(uint64_t))), 0);
1371e907febfSPyun YongHyeon 		vrcb += sizeof(struct bge_rcb);
137295d67482SBill Paul 	}
137395d67482SBill Paul 
137495d67482SBill Paul 	/* Initialize RX ring indexes */
137595d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_RX_STD_PROD_LO, 0);
137695d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_RX_JUMBO_PROD_LO, 0);
137795d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_RX_MINI_PROD_LO, 0);
137895d67482SBill Paul 
137995d67482SBill Paul 	/*
138095d67482SBill Paul 	 * Set up RX return ring 0
138195d67482SBill Paul 	 * Note that the NIC address for RX return rings is 0x00000000.
138295d67482SBill Paul 	 * The return rings live entirely within the host, so the
138395d67482SBill Paul 	 * nicaddr field in the RCB isn't used.
138495d67482SBill Paul 	 */
1385e907febfSPyun YongHyeon 	vrcb = BGE_MEMWIN_START + BGE_RX_RETURN_RING_RCB;
1386e907febfSPyun YongHyeon 	BGE_HOSTADDR(taddr, sc->bge_ldata.bge_rx_return_ring_paddr);
1387e907febfSPyun YongHyeon 	RCB_WRITE_4(sc, vrcb, bge_hostaddr.bge_addr_hi, taddr.bge_addr_hi);
1388e907febfSPyun YongHyeon 	RCB_WRITE_4(sc, vrcb, bge_hostaddr.bge_addr_lo, taddr.bge_addr_lo);
1389e907febfSPyun YongHyeon 	RCB_WRITE_4(sc, vrcb, bge_nicaddr, 0x00000000);
1390e907febfSPyun YongHyeon 	RCB_WRITE_4(sc, vrcb, bge_maxlen_flags,
1391e907febfSPyun YongHyeon 	    BGE_RCB_MAXLEN_FLAGS(sc->bge_return_ring_cnt, 0));
139295d67482SBill Paul 
139395d67482SBill Paul 	/* Set random backoff seed for TX */
139495d67482SBill Paul 	CSR_WRITE_4(sc, BGE_TX_RANDOM_BACKOFF,
13954a0d6638SRuslan Ermilov 	    IF_LLADDR(sc->bge_ifp)[0] + IF_LLADDR(sc->bge_ifp)[1] +
13964a0d6638SRuslan Ermilov 	    IF_LLADDR(sc->bge_ifp)[2] + IF_LLADDR(sc->bge_ifp)[3] +
13974a0d6638SRuslan Ermilov 	    IF_LLADDR(sc->bge_ifp)[4] + IF_LLADDR(sc->bge_ifp)[5] +
139895d67482SBill Paul 	    BGE_TX_BACKOFF_SEED_MASK);
139995d67482SBill Paul 
140095d67482SBill Paul 	/* Set inter-packet gap */
140195d67482SBill Paul 	CSR_WRITE_4(sc, BGE_TX_LENGTHS, 0x2620);
140295d67482SBill Paul 
140395d67482SBill Paul 	/*
140495d67482SBill Paul 	 * Specify which ring to use for packets that don't match
140595d67482SBill Paul 	 * any RX rules.
140695d67482SBill Paul 	 */
140795d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RX_RULES_CFG, 0x08);
140895d67482SBill Paul 
140995d67482SBill Paul 	/*
141095d67482SBill Paul 	 * Configure number of RX lists. One interrupt distribution
141195d67482SBill Paul 	 * list, sixteen active lists, one bad frames class.
141295d67482SBill Paul 	 */
141395d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RXLP_CFG, 0x181);
141495d67482SBill Paul 
141595d67482SBill Paul 	/* Inialize RX list placement stats mask. */
141695d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RXLP_STATS_ENABLE_MASK, 0x007FFFFF);
141795d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RXLP_STATS_CTL, 0x1);
141895d67482SBill Paul 
141995d67482SBill Paul 	/* Disable host coalescing until we get it set up */
142095d67482SBill Paul 	CSR_WRITE_4(sc, BGE_HCC_MODE, 0x00000000);
142195d67482SBill Paul 
142295d67482SBill Paul 	/* Poll to make sure it's shut down. */
142395d67482SBill Paul 	for (i = 0; i < BGE_TIMEOUT; i++) {
142495d67482SBill Paul 		if (!(CSR_READ_4(sc, BGE_HCC_MODE) & BGE_HCCMODE_ENABLE))
142595d67482SBill Paul 			break;
142695d67482SBill Paul 		DELAY(10);
142795d67482SBill Paul 	}
142895d67482SBill Paul 
142995d67482SBill Paul 	if (i == BGE_TIMEOUT) {
1430fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev,
1431fe806fdaSPyun YongHyeon 		    "host coalescing engine failed to idle\n");
143295d67482SBill Paul 		return (ENXIO);
143395d67482SBill Paul 	}
143495d67482SBill Paul 
143595d67482SBill Paul 	/* Set up host coalescing defaults */
143695d67482SBill Paul 	CSR_WRITE_4(sc, BGE_HCC_RX_COAL_TICKS, sc->bge_rx_coal_ticks);
143795d67482SBill Paul 	CSR_WRITE_4(sc, BGE_HCC_TX_COAL_TICKS, sc->bge_tx_coal_ticks);
143895d67482SBill Paul 	CSR_WRITE_4(sc, BGE_HCC_RX_MAX_COAL_BDS, sc->bge_rx_max_coal_bds);
143995d67482SBill Paul 	CSR_WRITE_4(sc, BGE_HCC_TX_MAX_COAL_BDS, sc->bge_tx_max_coal_bds);
14407ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc))) {
144195d67482SBill Paul 		CSR_WRITE_4(sc, BGE_HCC_RX_COAL_TICKS_INT, 0);
144295d67482SBill Paul 		CSR_WRITE_4(sc, BGE_HCC_TX_COAL_TICKS_INT, 0);
14430434d1b8SBill Paul 	}
144495d67482SBill Paul 	CSR_WRITE_4(sc, BGE_HCC_RX_MAX_COAL_BDS_INT, 0);
144595d67482SBill Paul 	CSR_WRITE_4(sc, BGE_HCC_TX_MAX_COAL_BDS_INT, 0);
144695d67482SBill Paul 
144795d67482SBill Paul 	/* Set up address of statistics block */
14487ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc))) {
1449f41ac2beSBill Paul 		CSR_WRITE_4(sc, BGE_HCC_STATS_ADDR_HI,
1450f41ac2beSBill Paul 		    BGE_ADDR_HI(sc->bge_ldata.bge_stats_paddr));
145195d67482SBill Paul 		CSR_WRITE_4(sc, BGE_HCC_STATS_ADDR_LO,
1452f41ac2beSBill Paul 		    BGE_ADDR_LO(sc->bge_ldata.bge_stats_paddr));
14530434d1b8SBill Paul 		CSR_WRITE_4(sc, BGE_HCC_STATS_BASEADDR, BGE_STATS_BLOCK);
145495d67482SBill Paul 		CSR_WRITE_4(sc, BGE_HCC_STATUSBLK_BASEADDR, BGE_STATUS_BLOCK);
14550434d1b8SBill Paul 		CSR_WRITE_4(sc, BGE_HCC_STATS_TICKS, sc->bge_stat_ticks);
14560434d1b8SBill Paul 	}
14570434d1b8SBill Paul 
14580434d1b8SBill Paul 	/* Set up address of status block */
1459f41ac2beSBill Paul 	CSR_WRITE_4(sc, BGE_HCC_STATUSBLK_ADDR_HI,
1460f41ac2beSBill Paul 	    BGE_ADDR_HI(sc->bge_ldata.bge_status_block_paddr));
146195d67482SBill Paul 	CSR_WRITE_4(sc, BGE_HCC_STATUSBLK_ADDR_LO,
1462f41ac2beSBill Paul 	    BGE_ADDR_LO(sc->bge_ldata.bge_status_block_paddr));
1463f41ac2beSBill Paul 	sc->bge_ldata.bge_status_block->bge_idx[0].bge_rx_prod_idx = 0;
1464f41ac2beSBill Paul 	sc->bge_ldata.bge_status_block->bge_idx[0].bge_tx_cons_idx = 0;
146595d67482SBill Paul 
146695d67482SBill Paul 	/* Turn on host coalescing state machine */
146795d67482SBill Paul 	CSR_WRITE_4(sc, BGE_HCC_MODE, BGE_HCCMODE_ENABLE);
146895d67482SBill Paul 
146995d67482SBill Paul 	/* Turn on RX BD completion state machine and enable attentions */
147095d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RBDC_MODE,
147195d67482SBill Paul 	    BGE_RBDCMODE_ENABLE|BGE_RBDCMODE_ATTN);
147295d67482SBill Paul 
147395d67482SBill Paul 	/* Turn on RX list placement state machine */
147495d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RXLP_MODE, BGE_RXLPMODE_ENABLE);
147595d67482SBill Paul 
147695d67482SBill Paul 	/* Turn on RX list selector state machine. */
14777ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc)))
147895d67482SBill Paul 		CSR_WRITE_4(sc, BGE_RXLS_MODE, BGE_RXLSMODE_ENABLE);
147995d67482SBill Paul 
148095d67482SBill Paul 	/* Turn on DMA, clear stats */
148195d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MAC_MODE, BGE_MACMODE_TXDMA_ENB|
148295d67482SBill Paul 	    BGE_MACMODE_RXDMA_ENB|BGE_MACMODE_RX_STATS_CLEAR|
148395d67482SBill Paul 	    BGE_MACMODE_TX_STATS_CLEAR|BGE_MACMODE_RX_STATS_ENB|
148495d67482SBill Paul 	    BGE_MACMODE_TX_STATS_ENB|BGE_MACMODE_FRMHDR_DMA_ENB|
1485652ae483SGleb Smirnoff 	    ((sc->bge_flags & BGE_FLAG_TBI) ?
1486652ae483SGleb Smirnoff 	    BGE_PORTMODE_TBI : BGE_PORTMODE_MII));
148795d67482SBill Paul 
148895d67482SBill Paul 	/* Set misc. local control, enable interrupts on attentions */
148995d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MISC_LOCAL_CTL, BGE_MLC_INTR_ONATTN);
149095d67482SBill Paul 
149195d67482SBill Paul #ifdef notdef
149295d67482SBill Paul 	/* Assert GPIO pins for PHY reset */
149395d67482SBill Paul 	BGE_SETBIT(sc, BGE_MISC_LOCAL_CTL, BGE_MLC_MISCIO_OUT0|
149495d67482SBill Paul 	    BGE_MLC_MISCIO_OUT1|BGE_MLC_MISCIO_OUT2);
149595d67482SBill Paul 	BGE_SETBIT(sc, BGE_MISC_LOCAL_CTL, BGE_MLC_MISCIO_OUTEN0|
149695d67482SBill Paul 	    BGE_MLC_MISCIO_OUTEN1|BGE_MLC_MISCIO_OUTEN2);
149795d67482SBill Paul #endif
149895d67482SBill Paul 
149995d67482SBill Paul 	/* Turn on DMA completion state machine */
15007ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc)))
150195d67482SBill Paul 		CSR_WRITE_4(sc, BGE_DMAC_MODE, BGE_DMACMODE_ENABLE);
150295d67482SBill Paul 
150395d67482SBill Paul 	/* Turn on write DMA state machine */
150495d67482SBill Paul 	CSR_WRITE_4(sc, BGE_WDMA_MODE,
150595d67482SBill Paul 	    BGE_WDMAMODE_ENABLE|BGE_WDMAMODE_ALL_ATTNS);
150695d67482SBill Paul 
150795d67482SBill Paul 	/* Turn on read DMA state machine */
150895d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RDMA_MODE,
150995d67482SBill Paul 	    BGE_RDMAMODE_ENABLE|BGE_RDMAMODE_ALL_ATTNS);
151095d67482SBill Paul 
151195d67482SBill Paul 	/* Turn on RX data completion state machine */
151295d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RDC_MODE, BGE_RDCMODE_ENABLE);
151395d67482SBill Paul 
151495d67482SBill Paul 	/* Turn on RX BD initiator state machine */
151595d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RBDI_MODE, BGE_RBDIMODE_ENABLE);
151695d67482SBill Paul 
151795d67482SBill Paul 	/* Turn on RX data and RX BD initiator state machine */
151895d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RDBDI_MODE, BGE_RDBDIMODE_ENABLE);
151995d67482SBill Paul 
152095d67482SBill Paul 	/* Turn on Mbuf cluster free state machine */
15217ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc)))
152295d67482SBill Paul 		CSR_WRITE_4(sc, BGE_MBCF_MODE, BGE_MBCFMODE_ENABLE);
152395d67482SBill Paul 
152495d67482SBill Paul 	/* Turn on send BD completion state machine */
152595d67482SBill Paul 	CSR_WRITE_4(sc, BGE_SBDC_MODE, BGE_SBDCMODE_ENABLE);
152695d67482SBill Paul 
152795d67482SBill Paul 	/* Turn on send data completion state machine */
152895d67482SBill Paul 	CSR_WRITE_4(sc, BGE_SDC_MODE, BGE_SDCMODE_ENABLE);
152995d67482SBill Paul 
153095d67482SBill Paul 	/* Turn on send data initiator state machine */
153195d67482SBill Paul 	CSR_WRITE_4(sc, BGE_SDI_MODE, BGE_SDIMODE_ENABLE);
153295d67482SBill Paul 
153395d67482SBill Paul 	/* Turn on send BD initiator state machine */
153495d67482SBill Paul 	CSR_WRITE_4(sc, BGE_SBDI_MODE, BGE_SBDIMODE_ENABLE);
153595d67482SBill Paul 
153695d67482SBill Paul 	/* Turn on send BD selector state machine */
153795d67482SBill Paul 	CSR_WRITE_4(sc, BGE_SRS_MODE, BGE_SRSMODE_ENABLE);
153895d67482SBill Paul 
153995d67482SBill Paul 	CSR_WRITE_4(sc, BGE_SDI_STATS_ENABLE_MASK, 0x007FFFFF);
154095d67482SBill Paul 	CSR_WRITE_4(sc, BGE_SDI_STATS_CTL,
154195d67482SBill Paul 	    BGE_SDISTATSCTL_ENABLE|BGE_SDISTATSCTL_FASTER);
154295d67482SBill Paul 
154395d67482SBill Paul 	/* ack/clear link change events */
154495d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MAC_STS, BGE_MACSTAT_SYNC_CHANGED|
15450434d1b8SBill Paul 	    BGE_MACSTAT_CFG_CHANGED|BGE_MACSTAT_MI_COMPLETE|
15460434d1b8SBill Paul 	    BGE_MACSTAT_LINK_CHANGED);
1547f41ac2beSBill Paul 	CSR_WRITE_4(sc, BGE_MI_STS, 0);
154895d67482SBill Paul 
154995d67482SBill Paul 	/* Enable PHY auto polling (for MII/GMII only) */
1550652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_TBI) {
155195d67482SBill Paul 		CSR_WRITE_4(sc, BGE_MI_STS, BGE_MISTS_LINK);
1552a1d52896SBill Paul 	} else {
155395d67482SBill Paul 		BGE_SETBIT(sc, BGE_MI_MODE, BGE_MIMODE_AUTOPOLL|10<<16);
15541f313773SOleg Bulyzhin 		if (sc->bge_asicrev == BGE_ASICREV_BCM5700 &&
15554c0da0ffSGleb Smirnoff 		    sc->bge_chipid != BGE_CHIPID_BCM5700_B2)
1556a1d52896SBill Paul 			CSR_WRITE_4(sc, BGE_MAC_EVT_ENB,
1557a1d52896SBill Paul 			    BGE_EVTENB_MI_INTERRUPT);
1558a1d52896SBill Paul 	}
155995d67482SBill Paul 
15601f313773SOleg Bulyzhin 	/*
15611f313773SOleg Bulyzhin 	 * Clear any pending link state attention.
15621f313773SOleg Bulyzhin 	 * Otherwise some link state change events may be lost until attention
15631f313773SOleg Bulyzhin 	 * is cleared by bge_intr() -> bge_link_upd() sequence.
15641f313773SOleg Bulyzhin 	 * It's not necessary on newer BCM chips - perhaps enabling link
15651f313773SOleg Bulyzhin 	 * state change attentions implies clearing pending attention.
15661f313773SOleg Bulyzhin 	 */
15671f313773SOleg Bulyzhin 	CSR_WRITE_4(sc, BGE_MAC_STS, BGE_MACSTAT_SYNC_CHANGED|
15681f313773SOleg Bulyzhin 	    BGE_MACSTAT_CFG_CHANGED|BGE_MACSTAT_MI_COMPLETE|
15691f313773SOleg Bulyzhin 	    BGE_MACSTAT_LINK_CHANGED);
15701f313773SOleg Bulyzhin 
157195d67482SBill Paul 	/* Enable link state change attentions. */
157295d67482SBill Paul 	BGE_SETBIT(sc, BGE_MAC_EVT_ENB, BGE_EVTENB_LINK_CHANGED);
157395d67482SBill Paul 
157495d67482SBill Paul 	return (0);
157595d67482SBill Paul }
157695d67482SBill Paul 
15774c0da0ffSGleb Smirnoff const struct bge_revision *
15784c0da0ffSGleb Smirnoff bge_lookup_rev(uint32_t chipid)
15794c0da0ffSGleb Smirnoff {
15804c0da0ffSGleb Smirnoff 	const struct bge_revision *br;
15814c0da0ffSGleb Smirnoff 
15824c0da0ffSGleb Smirnoff 	for (br = bge_revisions; br->br_name != NULL; br++) {
15834c0da0ffSGleb Smirnoff 		if (br->br_chipid == chipid)
15844c0da0ffSGleb Smirnoff 			return (br);
15854c0da0ffSGleb Smirnoff 	}
15864c0da0ffSGleb Smirnoff 
15874c0da0ffSGleb Smirnoff 	for (br = bge_majorrevs; br->br_name != NULL; br++) {
15884c0da0ffSGleb Smirnoff 		if (br->br_chipid == BGE_ASICREV(chipid))
15894c0da0ffSGleb Smirnoff 			return (br);
15904c0da0ffSGleb Smirnoff 	}
15914c0da0ffSGleb Smirnoff 
15924c0da0ffSGleb Smirnoff 	return (NULL);
15934c0da0ffSGleb Smirnoff }
15944c0da0ffSGleb Smirnoff 
15954c0da0ffSGleb Smirnoff const struct bge_vendor *
15964c0da0ffSGleb Smirnoff bge_lookup_vendor(uint16_t vid)
15974c0da0ffSGleb Smirnoff {
15984c0da0ffSGleb Smirnoff 	const struct bge_vendor *v;
15994c0da0ffSGleb Smirnoff 
16004c0da0ffSGleb Smirnoff 	for (v = bge_vendors; v->v_name != NULL; v++)
16014c0da0ffSGleb Smirnoff 		if (v->v_id == vid)
16024c0da0ffSGleb Smirnoff 			return (v);
16034c0da0ffSGleb Smirnoff 
16044c0da0ffSGleb Smirnoff 	panic("%s: unknown vendor %d", __func__, vid);
16054c0da0ffSGleb Smirnoff 	return (NULL);
16064c0da0ffSGleb Smirnoff }
16074c0da0ffSGleb Smirnoff 
160895d67482SBill Paul /*
160995d67482SBill Paul  * Probe for a Broadcom chip. Check the PCI vendor and device IDs
16104c0da0ffSGleb Smirnoff  * against our list and return its name if we find a match.
16114c0da0ffSGleb Smirnoff  *
16124c0da0ffSGleb Smirnoff  * Note that since the Broadcom controller contains VPD support, we
161395d67482SBill Paul  * can get the device name string from the controller itself instead
161495d67482SBill Paul  * of the compiled-in string. This is a little slow, but it guarantees
16154c0da0ffSGleb Smirnoff  * we'll always announce the right product name. Unfortunately, this
16164c0da0ffSGleb Smirnoff  * is possible only later in bge_attach(), when we have established
16174c0da0ffSGleb Smirnoff  * access to EEPROM.
161895d67482SBill Paul  */
161995d67482SBill Paul static int
16203f74909aSGleb Smirnoff bge_probe(device_t dev)
162195d67482SBill Paul {
16224c0da0ffSGleb Smirnoff 	struct bge_type *t = bge_devs;
16234c0da0ffSGleb Smirnoff 	struct bge_softc *sc = device_get_softc(dev);
162495d67482SBill Paul 
162595d67482SBill Paul 	bzero(sc, sizeof(struct bge_softc));
162695d67482SBill Paul 	sc->bge_dev = dev;
162795d67482SBill Paul 
16284c0da0ffSGleb Smirnoff 	while(t->bge_vid != 0) {
162995d67482SBill Paul 		if ((pci_get_vendor(dev) == t->bge_vid) &&
163095d67482SBill Paul 		    (pci_get_device(dev) == t->bge_did)) {
16314c0da0ffSGleb Smirnoff 			char buf[64];
16324c0da0ffSGleb Smirnoff 			const struct bge_revision *br;
16334c0da0ffSGleb Smirnoff 			const struct bge_vendor *v;
16344c0da0ffSGleb Smirnoff 			uint32_t id;
16354c0da0ffSGleb Smirnoff 
16364c0da0ffSGleb Smirnoff 			id = pci_read_config(dev, BGE_PCI_MISC_CTL, 4) &
16374c0da0ffSGleb Smirnoff 			    BGE_PCIMISCCTL_ASICREV;
16384c0da0ffSGleb Smirnoff 			br = bge_lookup_rev(id);
16394c0da0ffSGleb Smirnoff 			id >>= 16;
16404c0da0ffSGleb Smirnoff 			v = bge_lookup_vendor(t->bge_vid);
16414c0da0ffSGleb Smirnoff 			if (br == NULL)
16424c0da0ffSGleb Smirnoff 				snprintf(buf, 64, "%s unknown ASIC (%#04x)",
16434c0da0ffSGleb Smirnoff 				    v->v_name, id);
16444c0da0ffSGleb Smirnoff 			else
16454c0da0ffSGleb Smirnoff 				snprintf(buf, 64, "%s %s, ASIC rev. %#04x",
16464c0da0ffSGleb Smirnoff 				    v->v_name, br->br_name, id);
16474c0da0ffSGleb Smirnoff 			device_set_desc_copy(dev, buf);
16486d2a9bd6SDoug Ambrisko 			if (pci_get_subvendor(dev) == DELL_VENDORID)
1649652ae483SGleb Smirnoff 				sc->bge_flags |= BGE_FLAG_NO3LED;
165095d67482SBill Paul 			return (0);
165195d67482SBill Paul 		}
165295d67482SBill Paul 		t++;
165395d67482SBill Paul 	}
165495d67482SBill Paul 
165595d67482SBill Paul 	return (ENXIO);
165695d67482SBill Paul }
165795d67482SBill Paul 
1658f41ac2beSBill Paul static void
16593f74909aSGleb Smirnoff bge_dma_free(struct bge_softc *sc)
1660f41ac2beSBill Paul {
1661f41ac2beSBill Paul 	int i;
1662f41ac2beSBill Paul 
16633f74909aSGleb Smirnoff 	/* Destroy DMA maps for RX buffers. */
1664f41ac2beSBill Paul 	for (i = 0; i < BGE_STD_RX_RING_CNT; i++) {
1665f41ac2beSBill Paul 		if (sc->bge_cdata.bge_rx_std_dmamap[i])
1666f41ac2beSBill Paul 			bus_dmamap_destroy(sc->bge_cdata.bge_mtag,
1667f41ac2beSBill Paul 			    sc->bge_cdata.bge_rx_std_dmamap[i]);
1668f41ac2beSBill Paul 	}
1669f41ac2beSBill Paul 
16703f74909aSGleb Smirnoff 	/* Destroy DMA maps for jumbo RX buffers. */
1671f41ac2beSBill Paul 	for (i = 0; i < BGE_JUMBO_RX_RING_CNT; i++) {
1672f41ac2beSBill Paul 		if (sc->bge_cdata.bge_rx_jumbo_dmamap[i])
1673f41ac2beSBill Paul 			bus_dmamap_destroy(sc->bge_cdata.bge_mtag_jumbo,
1674f41ac2beSBill Paul 			    sc->bge_cdata.bge_rx_jumbo_dmamap[i]);
1675f41ac2beSBill Paul 	}
1676f41ac2beSBill Paul 
16773f74909aSGleb Smirnoff 	/* Destroy DMA maps for TX buffers. */
1678f41ac2beSBill Paul 	for (i = 0; i < BGE_TX_RING_CNT; i++) {
1679f41ac2beSBill Paul 		if (sc->bge_cdata.bge_tx_dmamap[i])
1680f41ac2beSBill Paul 			bus_dmamap_destroy(sc->bge_cdata.bge_mtag,
1681f41ac2beSBill Paul 			    sc->bge_cdata.bge_tx_dmamap[i]);
1682f41ac2beSBill Paul 	}
1683f41ac2beSBill Paul 
1684f41ac2beSBill Paul 	if (sc->bge_cdata.bge_mtag)
1685f41ac2beSBill Paul 		bus_dma_tag_destroy(sc->bge_cdata.bge_mtag);
1686f41ac2beSBill Paul 
1687f41ac2beSBill Paul 
16883f74909aSGleb Smirnoff 	/* Destroy standard RX ring. */
1689e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_rx_std_ring_map)
1690e65bed95SPyun YongHyeon 		bus_dmamap_unload(sc->bge_cdata.bge_rx_std_ring_tag,
1691e65bed95SPyun YongHyeon 		    sc->bge_cdata.bge_rx_std_ring_map);
1692e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_rx_std_ring_map && sc->bge_ldata.bge_rx_std_ring)
1693f41ac2beSBill Paul 		bus_dmamem_free(sc->bge_cdata.bge_rx_std_ring_tag,
1694f41ac2beSBill Paul 		    sc->bge_ldata.bge_rx_std_ring,
1695f41ac2beSBill Paul 		    sc->bge_cdata.bge_rx_std_ring_map);
1696f41ac2beSBill Paul 
1697f41ac2beSBill Paul 	if (sc->bge_cdata.bge_rx_std_ring_tag)
1698f41ac2beSBill Paul 		bus_dma_tag_destroy(sc->bge_cdata.bge_rx_std_ring_tag);
1699f41ac2beSBill Paul 
17003f74909aSGleb Smirnoff 	/* Destroy jumbo RX ring. */
1701e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_rx_jumbo_ring_map)
1702e65bed95SPyun YongHyeon 		bus_dmamap_unload(sc->bge_cdata.bge_rx_jumbo_ring_tag,
1703e65bed95SPyun YongHyeon 		    sc->bge_cdata.bge_rx_jumbo_ring_map);
1704e65bed95SPyun YongHyeon 
1705e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_rx_jumbo_ring_map &&
1706e65bed95SPyun YongHyeon 	    sc->bge_ldata.bge_rx_jumbo_ring)
1707f41ac2beSBill Paul 		bus_dmamem_free(sc->bge_cdata.bge_rx_jumbo_ring_tag,
1708f41ac2beSBill Paul 		    sc->bge_ldata.bge_rx_jumbo_ring,
1709f41ac2beSBill Paul 		    sc->bge_cdata.bge_rx_jumbo_ring_map);
1710f41ac2beSBill Paul 
1711f41ac2beSBill Paul 	if (sc->bge_cdata.bge_rx_jumbo_ring_tag)
1712f41ac2beSBill Paul 		bus_dma_tag_destroy(sc->bge_cdata.bge_rx_jumbo_ring_tag);
1713f41ac2beSBill Paul 
17143f74909aSGleb Smirnoff 	/* Destroy RX return ring. */
1715e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_rx_return_ring_map)
1716e65bed95SPyun YongHyeon 		bus_dmamap_unload(sc->bge_cdata.bge_rx_return_ring_tag,
1717e65bed95SPyun YongHyeon 		    sc->bge_cdata.bge_rx_return_ring_map);
1718e65bed95SPyun YongHyeon 
1719e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_rx_return_ring_map &&
1720e65bed95SPyun YongHyeon 	    sc->bge_ldata.bge_rx_return_ring)
1721f41ac2beSBill Paul 		bus_dmamem_free(sc->bge_cdata.bge_rx_return_ring_tag,
1722f41ac2beSBill Paul 		    sc->bge_ldata.bge_rx_return_ring,
1723f41ac2beSBill Paul 		    sc->bge_cdata.bge_rx_return_ring_map);
1724f41ac2beSBill Paul 
1725f41ac2beSBill Paul 	if (sc->bge_cdata.bge_rx_return_ring_tag)
1726f41ac2beSBill Paul 		bus_dma_tag_destroy(sc->bge_cdata.bge_rx_return_ring_tag);
1727f41ac2beSBill Paul 
17283f74909aSGleb Smirnoff 	/* Destroy TX ring. */
1729e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_tx_ring_map)
1730e65bed95SPyun YongHyeon 		bus_dmamap_unload(sc->bge_cdata.bge_tx_ring_tag,
1731e65bed95SPyun YongHyeon 		    sc->bge_cdata.bge_tx_ring_map);
1732e65bed95SPyun YongHyeon 
1733e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_tx_ring_map && sc->bge_ldata.bge_tx_ring)
1734f41ac2beSBill Paul 		bus_dmamem_free(sc->bge_cdata.bge_tx_ring_tag,
1735f41ac2beSBill Paul 		    sc->bge_ldata.bge_tx_ring,
1736f41ac2beSBill Paul 		    sc->bge_cdata.bge_tx_ring_map);
1737f41ac2beSBill Paul 
1738f41ac2beSBill Paul 	if (sc->bge_cdata.bge_tx_ring_tag)
1739f41ac2beSBill Paul 		bus_dma_tag_destroy(sc->bge_cdata.bge_tx_ring_tag);
1740f41ac2beSBill Paul 
17413f74909aSGleb Smirnoff 	/* Destroy status block. */
1742e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_status_map)
1743e65bed95SPyun YongHyeon 		bus_dmamap_unload(sc->bge_cdata.bge_status_tag,
1744e65bed95SPyun YongHyeon 		    sc->bge_cdata.bge_status_map);
1745e65bed95SPyun YongHyeon 
1746e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_status_map && sc->bge_ldata.bge_status_block)
1747f41ac2beSBill Paul 		bus_dmamem_free(sc->bge_cdata.bge_status_tag,
1748f41ac2beSBill Paul 		    sc->bge_ldata.bge_status_block,
1749f41ac2beSBill Paul 		    sc->bge_cdata.bge_status_map);
1750f41ac2beSBill Paul 
1751f41ac2beSBill Paul 	if (sc->bge_cdata.bge_status_tag)
1752f41ac2beSBill Paul 		bus_dma_tag_destroy(sc->bge_cdata.bge_status_tag);
1753f41ac2beSBill Paul 
17543f74909aSGleb Smirnoff 	/* Destroy statistics block. */
1755e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_stats_map)
1756e65bed95SPyun YongHyeon 		bus_dmamap_unload(sc->bge_cdata.bge_stats_tag,
1757e65bed95SPyun YongHyeon 		    sc->bge_cdata.bge_stats_map);
1758e65bed95SPyun YongHyeon 
1759e65bed95SPyun YongHyeon 	if (sc->bge_cdata.bge_stats_map && sc->bge_ldata.bge_stats)
1760f41ac2beSBill Paul 		bus_dmamem_free(sc->bge_cdata.bge_stats_tag,
1761f41ac2beSBill Paul 		    sc->bge_ldata.bge_stats,
1762f41ac2beSBill Paul 		    sc->bge_cdata.bge_stats_map);
1763f41ac2beSBill Paul 
1764f41ac2beSBill Paul 	if (sc->bge_cdata.bge_stats_tag)
1765f41ac2beSBill Paul 		bus_dma_tag_destroy(sc->bge_cdata.bge_stats_tag);
1766f41ac2beSBill Paul 
17673f74909aSGleb Smirnoff 	/* Destroy the parent tag. */
1768f41ac2beSBill Paul 	if (sc->bge_cdata.bge_parent_tag)
1769f41ac2beSBill Paul 		bus_dma_tag_destroy(sc->bge_cdata.bge_parent_tag);
1770f41ac2beSBill Paul }
1771f41ac2beSBill Paul 
1772f41ac2beSBill Paul static int
17733f74909aSGleb Smirnoff bge_dma_alloc(device_t dev)
1774f41ac2beSBill Paul {
17753f74909aSGleb Smirnoff 	struct bge_dmamap_arg ctx;
1776f41ac2beSBill Paul 	struct bge_softc *sc;
17771be6acb7SGleb Smirnoff 	int i, error;
1778f41ac2beSBill Paul 
1779f41ac2beSBill Paul 	sc = device_get_softc(dev);
1780f41ac2beSBill Paul 
1781f41ac2beSBill Paul 	/*
1782f41ac2beSBill Paul 	 * Allocate the parent bus DMA tag appropriate for PCI.
1783f41ac2beSBill Paul 	 */
1784378f231eSJohn-Mark Gurney 	error = bus_dma_tag_create(bus_get_dma_tag(sc->bge_dev),/* parent */
1785706620f0SScott Long 			1, 0,			/* alignment, boundary */
1786f41ac2beSBill Paul 			BUS_SPACE_MAXADDR,	/* lowaddr */
17872f28b973SScott Long 			BUS_SPACE_MAXADDR,	/* highaddr */
1788f41ac2beSBill Paul 			NULL, NULL,		/* filter, filterarg */
1789f41ac2beSBill Paul 			MAXBSIZE, BGE_NSEG_NEW,	/* maxsize, nsegments */
1790f41ac2beSBill Paul 			BUS_SPACE_MAXSIZE_32BIT,/* maxsegsize */
17918a40c10eSScott Long 			0,			/* flags */
1792f41ac2beSBill Paul 			NULL, NULL,		/* lockfunc, lockarg */
1793f41ac2beSBill Paul 			&sc->bge_cdata.bge_parent_tag);
1794f41ac2beSBill Paul 
1795e65bed95SPyun YongHyeon 	if (error != 0) {
1796fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev,
1797fe806fdaSPyun YongHyeon 		    "could not allocate parent dma tag\n");
1798e65bed95SPyun YongHyeon 		return (ENOMEM);
1799e65bed95SPyun YongHyeon 	}
1800e65bed95SPyun YongHyeon 
1801f41ac2beSBill Paul 	/*
1802f41ac2beSBill Paul 	 * Create tag for RX mbufs.
1803f41ac2beSBill Paul 	 */
18048a2e22deSScott Long 	error = bus_dma_tag_create(sc->bge_cdata.bge_parent_tag, 1,
1805f41ac2beSBill Paul 	    0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL,
18061be6acb7SGleb Smirnoff 	    NULL, MCLBYTES * BGE_NSEG_NEW, BGE_NSEG_NEW, MCLBYTES,
18071be6acb7SGleb Smirnoff 	    BUS_DMA_ALLOCNOW, NULL, NULL, &sc->bge_cdata.bge_mtag);
1808f41ac2beSBill Paul 
1809f41ac2beSBill Paul 	if (error) {
1810fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "could not allocate dma tag\n");
1811f41ac2beSBill Paul 		return (ENOMEM);
1812f41ac2beSBill Paul 	}
1813f41ac2beSBill Paul 
18143f74909aSGleb Smirnoff 	/* Create DMA maps for RX buffers. */
1815f41ac2beSBill Paul 	for (i = 0; i < BGE_STD_RX_RING_CNT; i++) {
1816f41ac2beSBill Paul 		error = bus_dmamap_create(sc->bge_cdata.bge_mtag, 0,
1817f41ac2beSBill Paul 			    &sc->bge_cdata.bge_rx_std_dmamap[i]);
1818f41ac2beSBill Paul 		if (error) {
1819fe806fdaSPyun YongHyeon 			device_printf(sc->bge_dev,
1820fe806fdaSPyun YongHyeon 			    "can't create DMA map for RX\n");
1821f41ac2beSBill Paul 			return (ENOMEM);
1822f41ac2beSBill Paul 		}
1823f41ac2beSBill Paul 	}
1824f41ac2beSBill Paul 
18253f74909aSGleb Smirnoff 	/* Create DMA maps for TX buffers. */
1826f41ac2beSBill Paul 	for (i = 0; i < BGE_TX_RING_CNT; i++) {
1827f41ac2beSBill Paul 		error = bus_dmamap_create(sc->bge_cdata.bge_mtag, 0,
1828f41ac2beSBill Paul 			    &sc->bge_cdata.bge_tx_dmamap[i]);
1829f41ac2beSBill Paul 		if (error) {
1830fe806fdaSPyun YongHyeon 			device_printf(sc->bge_dev,
1831fe806fdaSPyun YongHyeon 			    "can't create DMA map for RX\n");
1832f41ac2beSBill Paul 			return (ENOMEM);
1833f41ac2beSBill Paul 		}
1834f41ac2beSBill Paul 	}
1835f41ac2beSBill Paul 
18363f74909aSGleb Smirnoff 	/* Create tag for standard RX ring. */
1837f41ac2beSBill Paul 	error = bus_dma_tag_create(sc->bge_cdata.bge_parent_tag,
1838f41ac2beSBill Paul 	    PAGE_SIZE, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL,
1839f41ac2beSBill Paul 	    NULL, BGE_STD_RX_RING_SZ, 1, BGE_STD_RX_RING_SZ, 0,
1840f41ac2beSBill Paul 	    NULL, NULL, &sc->bge_cdata.bge_rx_std_ring_tag);
1841f41ac2beSBill Paul 
1842f41ac2beSBill Paul 	if (error) {
1843fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "could not allocate dma tag\n");
1844f41ac2beSBill Paul 		return (ENOMEM);
1845f41ac2beSBill Paul 	}
1846f41ac2beSBill Paul 
18473f74909aSGleb Smirnoff 	/* Allocate DMA'able memory for standard RX ring. */
1848f41ac2beSBill Paul 	error = bus_dmamem_alloc(sc->bge_cdata.bge_rx_std_ring_tag,
1849f41ac2beSBill Paul 	    (void **)&sc->bge_ldata.bge_rx_std_ring, BUS_DMA_NOWAIT,
1850f41ac2beSBill Paul 	    &sc->bge_cdata.bge_rx_std_ring_map);
1851f41ac2beSBill Paul 	if (error)
1852f41ac2beSBill Paul 		return (ENOMEM);
1853f41ac2beSBill Paul 
1854f41ac2beSBill Paul 	bzero((char *)sc->bge_ldata.bge_rx_std_ring, BGE_STD_RX_RING_SZ);
1855f41ac2beSBill Paul 
18563f74909aSGleb Smirnoff 	/* Load the address of the standard RX ring. */
1857f41ac2beSBill Paul 	ctx.bge_maxsegs = 1;
1858f41ac2beSBill Paul 	ctx.sc = sc;
1859f41ac2beSBill Paul 
1860f41ac2beSBill Paul 	error = bus_dmamap_load(sc->bge_cdata.bge_rx_std_ring_tag,
1861f41ac2beSBill Paul 	    sc->bge_cdata.bge_rx_std_ring_map, sc->bge_ldata.bge_rx_std_ring,
1862f41ac2beSBill Paul 	    BGE_STD_RX_RING_SZ, bge_dma_map_addr, &ctx, BUS_DMA_NOWAIT);
1863f41ac2beSBill Paul 
1864f41ac2beSBill Paul 	if (error)
1865f41ac2beSBill Paul 		return (ENOMEM);
1866f41ac2beSBill Paul 
1867f41ac2beSBill Paul 	sc->bge_ldata.bge_rx_std_ring_paddr = ctx.bge_busaddr;
1868f41ac2beSBill Paul 
18693f74909aSGleb Smirnoff 	/* Create tags for jumbo mbufs. */
18704c0da0ffSGleb Smirnoff 	if (BGE_IS_JUMBO_CAPABLE(sc)) {
1871f41ac2beSBill Paul 		error = bus_dma_tag_create(sc->bge_cdata.bge_parent_tag,
18728a2e22deSScott Long 		    1, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL,
18731be6acb7SGleb Smirnoff 		    NULL, MJUM9BYTES, BGE_NSEG_JUMBO, PAGE_SIZE,
18741be6acb7SGleb Smirnoff 		    0, NULL, NULL, &sc->bge_cdata.bge_mtag_jumbo);
1875f41ac2beSBill Paul 		if (error) {
1876fe806fdaSPyun YongHyeon 			device_printf(sc->bge_dev,
18773f74909aSGleb Smirnoff 			    "could not allocate jumbo dma tag\n");
1878f41ac2beSBill Paul 			return (ENOMEM);
1879f41ac2beSBill Paul 		}
1880f41ac2beSBill Paul 
18813f74909aSGleb Smirnoff 		/* Create tag for jumbo RX ring. */
1882f41ac2beSBill Paul 		error = bus_dma_tag_create(sc->bge_cdata.bge_parent_tag,
1883f41ac2beSBill Paul 		    PAGE_SIZE, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL,
1884f41ac2beSBill Paul 		    NULL, BGE_JUMBO_RX_RING_SZ, 1, BGE_JUMBO_RX_RING_SZ, 0,
1885f41ac2beSBill Paul 		    NULL, NULL, &sc->bge_cdata.bge_rx_jumbo_ring_tag);
1886f41ac2beSBill Paul 
1887f41ac2beSBill Paul 		if (error) {
1888fe806fdaSPyun YongHyeon 			device_printf(sc->bge_dev,
18893f74909aSGleb Smirnoff 			    "could not allocate jumbo ring dma tag\n");
1890f41ac2beSBill Paul 			return (ENOMEM);
1891f41ac2beSBill Paul 		}
1892f41ac2beSBill Paul 
18933f74909aSGleb Smirnoff 		/* Allocate DMA'able memory for jumbo RX ring. */
1894f41ac2beSBill Paul 		error = bus_dmamem_alloc(sc->bge_cdata.bge_rx_jumbo_ring_tag,
18951be6acb7SGleb Smirnoff 		    (void **)&sc->bge_ldata.bge_rx_jumbo_ring,
18961be6acb7SGleb Smirnoff 		    BUS_DMA_NOWAIT | BUS_DMA_ZERO,
1897f41ac2beSBill Paul 		    &sc->bge_cdata.bge_rx_jumbo_ring_map);
1898f41ac2beSBill Paul 		if (error)
1899f41ac2beSBill Paul 			return (ENOMEM);
1900f41ac2beSBill Paul 
19013f74909aSGleb Smirnoff 		/* Load the address of the jumbo RX ring. */
1902f41ac2beSBill Paul 		ctx.bge_maxsegs = 1;
1903f41ac2beSBill Paul 		ctx.sc = sc;
1904f41ac2beSBill Paul 
1905f41ac2beSBill Paul 		error = bus_dmamap_load(sc->bge_cdata.bge_rx_jumbo_ring_tag,
1906f41ac2beSBill Paul 		    sc->bge_cdata.bge_rx_jumbo_ring_map,
1907f41ac2beSBill Paul 		    sc->bge_ldata.bge_rx_jumbo_ring, BGE_JUMBO_RX_RING_SZ,
1908f41ac2beSBill Paul 		    bge_dma_map_addr, &ctx, BUS_DMA_NOWAIT);
1909f41ac2beSBill Paul 
1910f41ac2beSBill Paul 		if (error)
1911f41ac2beSBill Paul 			return (ENOMEM);
1912f41ac2beSBill Paul 
1913f41ac2beSBill Paul 		sc->bge_ldata.bge_rx_jumbo_ring_paddr = ctx.bge_busaddr;
1914f41ac2beSBill Paul 
19153f74909aSGleb Smirnoff 		/* Create DMA maps for jumbo RX buffers. */
1916f41ac2beSBill Paul 		for (i = 0; i < BGE_JUMBO_RX_RING_CNT; i++) {
1917f41ac2beSBill Paul 			error = bus_dmamap_create(sc->bge_cdata.bge_mtag_jumbo,
1918f41ac2beSBill Paul 				    0, &sc->bge_cdata.bge_rx_jumbo_dmamap[i]);
1919f41ac2beSBill Paul 			if (error) {
1920fe806fdaSPyun YongHyeon 				device_printf(sc->bge_dev,
19213f74909aSGleb Smirnoff 				    "can't create DMA map for jumbo RX\n");
1922f41ac2beSBill Paul 				return (ENOMEM);
1923f41ac2beSBill Paul 			}
1924f41ac2beSBill Paul 		}
1925f41ac2beSBill Paul 
1926f41ac2beSBill Paul 	}
1927f41ac2beSBill Paul 
19283f74909aSGleb Smirnoff 	/* Create tag for RX return ring. */
1929f41ac2beSBill Paul 	error = bus_dma_tag_create(sc->bge_cdata.bge_parent_tag,
1930f41ac2beSBill Paul 	    PAGE_SIZE, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL,
1931f41ac2beSBill Paul 	    NULL, BGE_RX_RTN_RING_SZ(sc), 1, BGE_RX_RTN_RING_SZ(sc), 0,
1932f41ac2beSBill Paul 	    NULL, NULL, &sc->bge_cdata.bge_rx_return_ring_tag);
1933f41ac2beSBill Paul 
1934f41ac2beSBill Paul 	if (error) {
1935fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "could not allocate dma tag\n");
1936f41ac2beSBill Paul 		return (ENOMEM);
1937f41ac2beSBill Paul 	}
1938f41ac2beSBill Paul 
19393f74909aSGleb Smirnoff 	/* Allocate DMA'able memory for RX return ring. */
1940f41ac2beSBill Paul 	error = bus_dmamem_alloc(sc->bge_cdata.bge_rx_return_ring_tag,
1941f41ac2beSBill Paul 	    (void **)&sc->bge_ldata.bge_rx_return_ring, BUS_DMA_NOWAIT,
1942f41ac2beSBill Paul 	    &sc->bge_cdata.bge_rx_return_ring_map);
1943f41ac2beSBill Paul 	if (error)
1944f41ac2beSBill Paul 		return (ENOMEM);
1945f41ac2beSBill Paul 
1946f41ac2beSBill Paul 	bzero((char *)sc->bge_ldata.bge_rx_return_ring,
1947f41ac2beSBill Paul 	    BGE_RX_RTN_RING_SZ(sc));
1948f41ac2beSBill Paul 
19493f74909aSGleb Smirnoff 	/* Load the address of the RX return ring. */
1950f41ac2beSBill Paul 	ctx.bge_maxsegs = 1;
1951f41ac2beSBill Paul 	ctx.sc = sc;
1952f41ac2beSBill Paul 
1953f41ac2beSBill Paul 	error = bus_dmamap_load(sc->bge_cdata.bge_rx_return_ring_tag,
1954f41ac2beSBill Paul 	    sc->bge_cdata.bge_rx_return_ring_map,
1955f41ac2beSBill Paul 	    sc->bge_ldata.bge_rx_return_ring, BGE_RX_RTN_RING_SZ(sc),
1956f41ac2beSBill Paul 	    bge_dma_map_addr, &ctx, BUS_DMA_NOWAIT);
1957f41ac2beSBill Paul 
1958f41ac2beSBill Paul 	if (error)
1959f41ac2beSBill Paul 		return (ENOMEM);
1960f41ac2beSBill Paul 
1961f41ac2beSBill Paul 	sc->bge_ldata.bge_rx_return_ring_paddr = ctx.bge_busaddr;
1962f41ac2beSBill Paul 
19633f74909aSGleb Smirnoff 	/* Create tag for TX ring. */
1964f41ac2beSBill Paul 	error = bus_dma_tag_create(sc->bge_cdata.bge_parent_tag,
1965f41ac2beSBill Paul 	    PAGE_SIZE, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL,
1966f41ac2beSBill Paul 	    NULL, BGE_TX_RING_SZ, 1, BGE_TX_RING_SZ, 0, NULL, NULL,
1967f41ac2beSBill Paul 	    &sc->bge_cdata.bge_tx_ring_tag);
1968f41ac2beSBill Paul 
1969f41ac2beSBill Paul 	if (error) {
1970fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "could not allocate dma tag\n");
1971f41ac2beSBill Paul 		return (ENOMEM);
1972f41ac2beSBill Paul 	}
1973f41ac2beSBill Paul 
19743f74909aSGleb Smirnoff 	/* Allocate DMA'able memory for TX ring. */
1975f41ac2beSBill Paul 	error = bus_dmamem_alloc(sc->bge_cdata.bge_tx_ring_tag,
1976f41ac2beSBill Paul 	    (void **)&sc->bge_ldata.bge_tx_ring, BUS_DMA_NOWAIT,
1977f41ac2beSBill Paul 	    &sc->bge_cdata.bge_tx_ring_map);
1978f41ac2beSBill Paul 	if (error)
1979f41ac2beSBill Paul 		return (ENOMEM);
1980f41ac2beSBill Paul 
1981f41ac2beSBill Paul 	bzero((char *)sc->bge_ldata.bge_tx_ring, BGE_TX_RING_SZ);
1982f41ac2beSBill Paul 
19833f74909aSGleb Smirnoff 	/* Load the address of the TX ring. */
1984f41ac2beSBill Paul 	ctx.bge_maxsegs = 1;
1985f41ac2beSBill Paul 	ctx.sc = sc;
1986f41ac2beSBill Paul 
1987f41ac2beSBill Paul 	error = bus_dmamap_load(sc->bge_cdata.bge_tx_ring_tag,
1988f41ac2beSBill Paul 	    sc->bge_cdata.bge_tx_ring_map, sc->bge_ldata.bge_tx_ring,
1989f41ac2beSBill Paul 	    BGE_TX_RING_SZ, bge_dma_map_addr, &ctx, BUS_DMA_NOWAIT);
1990f41ac2beSBill Paul 
1991f41ac2beSBill Paul 	if (error)
1992f41ac2beSBill Paul 		return (ENOMEM);
1993f41ac2beSBill Paul 
1994f41ac2beSBill Paul 	sc->bge_ldata.bge_tx_ring_paddr = ctx.bge_busaddr;
1995f41ac2beSBill Paul 
19963f74909aSGleb Smirnoff 	/* Create tag for status block. */
1997f41ac2beSBill Paul 	error = bus_dma_tag_create(sc->bge_cdata.bge_parent_tag,
1998f41ac2beSBill Paul 	    PAGE_SIZE, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL,
1999f41ac2beSBill Paul 	    NULL, BGE_STATUS_BLK_SZ, 1, BGE_STATUS_BLK_SZ, 0,
2000f41ac2beSBill Paul 	    NULL, NULL, &sc->bge_cdata.bge_status_tag);
2001f41ac2beSBill Paul 
2002f41ac2beSBill Paul 	if (error) {
2003fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "could not allocate dma tag\n");
2004f41ac2beSBill Paul 		return (ENOMEM);
2005f41ac2beSBill Paul 	}
2006f41ac2beSBill Paul 
20073f74909aSGleb Smirnoff 	/* Allocate DMA'able memory for status block. */
2008f41ac2beSBill Paul 	error = bus_dmamem_alloc(sc->bge_cdata.bge_status_tag,
2009f41ac2beSBill Paul 	    (void **)&sc->bge_ldata.bge_status_block, BUS_DMA_NOWAIT,
2010f41ac2beSBill Paul 	    &sc->bge_cdata.bge_status_map);
2011f41ac2beSBill Paul 	if (error)
2012f41ac2beSBill Paul 		return (ENOMEM);
2013f41ac2beSBill Paul 
2014f41ac2beSBill Paul 	bzero((char *)sc->bge_ldata.bge_status_block, BGE_STATUS_BLK_SZ);
2015f41ac2beSBill Paul 
20163f74909aSGleb Smirnoff 	/* Load the address of the status block. */
2017f41ac2beSBill Paul 	ctx.sc = sc;
2018f41ac2beSBill Paul 	ctx.bge_maxsegs = 1;
2019f41ac2beSBill Paul 
2020f41ac2beSBill Paul 	error = bus_dmamap_load(sc->bge_cdata.bge_status_tag,
2021f41ac2beSBill Paul 	    sc->bge_cdata.bge_status_map, sc->bge_ldata.bge_status_block,
2022f41ac2beSBill Paul 	    BGE_STATUS_BLK_SZ, bge_dma_map_addr, &ctx, BUS_DMA_NOWAIT);
2023f41ac2beSBill Paul 
2024f41ac2beSBill Paul 	if (error)
2025f41ac2beSBill Paul 		return (ENOMEM);
2026f41ac2beSBill Paul 
2027f41ac2beSBill Paul 	sc->bge_ldata.bge_status_block_paddr = ctx.bge_busaddr;
2028f41ac2beSBill Paul 
20293f74909aSGleb Smirnoff 	/* Create tag for statistics block. */
2030f41ac2beSBill Paul 	error = bus_dma_tag_create(sc->bge_cdata.bge_parent_tag,
2031f41ac2beSBill Paul 	    PAGE_SIZE, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL,
2032f41ac2beSBill Paul 	    NULL, BGE_STATS_SZ, 1, BGE_STATS_SZ, 0, NULL, NULL,
2033f41ac2beSBill Paul 	    &sc->bge_cdata.bge_stats_tag);
2034f41ac2beSBill Paul 
2035f41ac2beSBill Paul 	if (error) {
2036fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "could not allocate dma tag\n");
2037f41ac2beSBill Paul 		return (ENOMEM);
2038f41ac2beSBill Paul 	}
2039f41ac2beSBill Paul 
20403f74909aSGleb Smirnoff 	/* Allocate DMA'able memory for statistics block. */
2041f41ac2beSBill Paul 	error = bus_dmamem_alloc(sc->bge_cdata.bge_stats_tag,
2042f41ac2beSBill Paul 	    (void **)&sc->bge_ldata.bge_stats, BUS_DMA_NOWAIT,
2043f41ac2beSBill Paul 	    &sc->bge_cdata.bge_stats_map);
2044f41ac2beSBill Paul 	if (error)
2045f41ac2beSBill Paul 		return (ENOMEM);
2046f41ac2beSBill Paul 
2047f41ac2beSBill Paul 	bzero((char *)sc->bge_ldata.bge_stats, BGE_STATS_SZ);
2048f41ac2beSBill Paul 
20493f74909aSGleb Smirnoff 	/* Load the address of the statstics block. */
2050f41ac2beSBill Paul 	ctx.sc = sc;
2051f41ac2beSBill Paul 	ctx.bge_maxsegs = 1;
2052f41ac2beSBill Paul 
2053f41ac2beSBill Paul 	error = bus_dmamap_load(sc->bge_cdata.bge_stats_tag,
2054f41ac2beSBill Paul 	    sc->bge_cdata.bge_stats_map, sc->bge_ldata.bge_stats,
2055f41ac2beSBill Paul 	    BGE_STATS_SZ, bge_dma_map_addr, &ctx, BUS_DMA_NOWAIT);
2056f41ac2beSBill Paul 
2057f41ac2beSBill Paul 	if (error)
2058f41ac2beSBill Paul 		return (ENOMEM);
2059f41ac2beSBill Paul 
2060f41ac2beSBill Paul 	sc->bge_ldata.bge_stats_paddr = ctx.bge_busaddr;
2061f41ac2beSBill Paul 
2062f41ac2beSBill Paul 	return (0);
2063f41ac2beSBill Paul }
2064f41ac2beSBill Paul 
206595d67482SBill Paul static int
20663f74909aSGleb Smirnoff bge_attach(device_t dev)
206795d67482SBill Paul {
206895d67482SBill Paul 	struct ifnet *ifp;
206995d67482SBill Paul 	struct bge_softc *sc;
20703f74909aSGleb Smirnoff 	uint32_t hwcfg = 0;
20713f74909aSGleb Smirnoff 	uint32_t mac_tmp = 0;
2072fc74a9f9SBrooks Davis 	u_char eaddr[6];
2073fe806fdaSPyun YongHyeon 	int error = 0, rid;
20748cb1383cSDoug Ambrisko 	int trys;
207595d67482SBill Paul 
207695d67482SBill Paul 	sc = device_get_softc(dev);
207795d67482SBill Paul 	sc->bge_dev = dev;
207895d67482SBill Paul 
207995d67482SBill Paul 	/*
208095d67482SBill Paul 	 * Map control/status registers.
208195d67482SBill Paul 	 */
208295d67482SBill Paul 	pci_enable_busmaster(dev);
208395d67482SBill Paul 
208495d67482SBill Paul 	rid = BGE_PCI_BAR0;
20855f96beb9SNate Lawson 	sc->bge_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
20865f96beb9SNate Lawson 	    RF_ACTIVE|PCI_RF_DENSE);
208795d67482SBill Paul 
208895d67482SBill Paul 	if (sc->bge_res == NULL) {
2089fe806fdaSPyun YongHyeon 		device_printf (sc->bge_dev, "couldn't map memory\n");
209095d67482SBill Paul 		error = ENXIO;
209195d67482SBill Paul 		goto fail;
209295d67482SBill Paul 	}
209395d67482SBill Paul 
209495d67482SBill Paul 	sc->bge_btag = rman_get_bustag(sc->bge_res);
209595d67482SBill Paul 	sc->bge_bhandle = rman_get_bushandle(sc->bge_res);
209695d67482SBill Paul 
20973f74909aSGleb Smirnoff 	/* Allocate interrupt. */
209895d67482SBill Paul 	rid = 0;
209995d67482SBill Paul 
21005f96beb9SNate Lawson 	sc->bge_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
210195d67482SBill Paul 	    RF_SHAREABLE | RF_ACTIVE);
210295d67482SBill Paul 
210395d67482SBill Paul 	if (sc->bge_irq == NULL) {
2104fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "couldn't map interrupt\n");
210595d67482SBill Paul 		error = ENXIO;
210695d67482SBill Paul 		goto fail;
210795d67482SBill Paul 	}
210895d67482SBill Paul 
21090f9bd73bSSam Leffler 	BGE_LOCK_INIT(sc, device_get_nameunit(dev));
21100f9bd73bSSam Leffler 
2111e53d81eeSPaul Saab 	/* Save ASIC rev. */
2112e53d81eeSPaul Saab 
2113e53d81eeSPaul Saab 	sc->bge_chipid =
2114e53d81eeSPaul Saab 	    pci_read_config(dev, BGE_PCI_MISC_CTL, 4) &
2115e53d81eeSPaul Saab 	    BGE_PCIMISCCTL_ASICREV;
2116e53d81eeSPaul Saab 	sc->bge_asicrev = BGE_ASICREV(sc->bge_chipid);
2117e53d81eeSPaul Saab 	sc->bge_chiprev = BGE_CHIPREV(sc->bge_chipid);
2118e53d81eeSPaul Saab 
21190dae9719SJung-uk Kim 	/* Save chipset family. */
21200dae9719SJung-uk Kim 	switch (sc->bge_asicrev) {
21210dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5700:
21220dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5701:
21230dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5703:
21240dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5704:
21257ee00338SJung-uk Kim 		sc->bge_flags |= BGE_FLAG_5700_FAMILY | BGE_FLAG_JUMBO;
21260dae9719SJung-uk Kim 		break;
21270dae9719SJung-uk Kim 
21280dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5714_A0:
21290dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5780:
21300dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5714:
21317ee00338SJung-uk Kim 		sc->bge_flags |= BGE_FLAG_5714_FAMILY /* | BGE_FLAG_JUMBO */;
21320dae9719SJung-uk Kim 		/* Fall through */
21330dae9719SJung-uk Kim 
21340dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5750:
21350dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5752:
21360dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5755:
21370dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5787:
21380dae9719SJung-uk Kim 		sc->bge_flags |= BGE_FLAG_575X_PLUS;
21390dae9719SJung-uk Kim 		/* Fall through */
21400dae9719SJung-uk Kim 
21410dae9719SJung-uk Kim 	case BGE_ASICREV_BCM5705:
21420dae9719SJung-uk Kim 		sc->bge_flags |= BGE_FLAG_5705_PLUS;
21430dae9719SJung-uk Kim 		break;
21440dae9719SJung-uk Kim 	}
21450dae9719SJung-uk Kim 
2146e53d81eeSPaul Saab 	/*
2147e53d81eeSPaul Saab 	 * XXX: Broadcom Linux driver.  Not in specs or eratta.
2148e53d81eeSPaul Saab 	 * PCI-Express?
2149e53d81eeSPaul Saab 	 */
21507ee00338SJung-uk Kim 	if (BGE_IS_5705_PLUS(sc)) {
21513f74909aSGleb Smirnoff 		uint32_t v;
2152e53d81eeSPaul Saab 
2153e53d81eeSPaul Saab 		v = pci_read_config(dev, BGE_PCI_MSI_CAPID, 4);
2154e53d81eeSPaul Saab 		if (((v >> 8) & 0xff) == BGE_PCIE_CAPID_REG) {
2155e53d81eeSPaul Saab 			v = pci_read_config(dev, BGE_PCIE_CAPID_REG, 4);
2156e53d81eeSPaul Saab 			if ((v & 0xff) == BGE_PCIE_CAPID)
2157652ae483SGleb Smirnoff 				sc->bge_flags |= BGE_FLAG_PCIE;
2158e53d81eeSPaul Saab 		}
2159e53d81eeSPaul Saab 	}
2160e53d81eeSPaul Saab 
21614c0da0ffSGleb Smirnoff 	/*
21624c0da0ffSGleb Smirnoff 	 * PCI-X ?
21634c0da0ffSGleb Smirnoff 	 */
21644c0da0ffSGleb Smirnoff 	if ((pci_read_config(sc->bge_dev, BGE_PCI_PCISTATE, 4) &
21654c0da0ffSGleb Smirnoff 	    BGE_PCISTATE_PCI_BUSMODE) == 0)
2166652ae483SGleb Smirnoff 		sc->bge_flags |= BGE_FLAG_PCIX;
21674c0da0ffSGleb Smirnoff 
216895d67482SBill Paul 	/* Try to reset the chip. */
21698cb1383cSDoug Ambrisko 	if (bge_reset(sc)) {
21708cb1383cSDoug Ambrisko 		device_printf(sc->bge_dev, "chip reset failed\n");
21718cb1383cSDoug Ambrisko 		bge_release_resources(sc);
21728cb1383cSDoug Ambrisko 		error = ENXIO;
21738cb1383cSDoug Ambrisko 		goto fail;
21748cb1383cSDoug Ambrisko 	}
21758cb1383cSDoug Ambrisko 
21768cb1383cSDoug Ambrisko 	sc->bge_asf_mode = 0;
2177f1a7e6d5SScott Long 	if (bge_allow_asf && (bge_readmem_ind(sc, BGE_SOFTWARE_GENCOMM_SIG)
2178f1a7e6d5SScott Long 	    == BGE_MAGIC_NUMBER)) {
21798cb1383cSDoug Ambrisko 		if (bge_readmem_ind(sc, BGE_SOFTWARE_GENCOMM_NICCFG)
21808cb1383cSDoug Ambrisko 		    & BGE_HWCFG_ASF) {
21818cb1383cSDoug Ambrisko 			sc->bge_asf_mode |= ASF_ENABLE;
21828cb1383cSDoug Ambrisko 			sc->bge_asf_mode |= ASF_STACKUP;
21838cb1383cSDoug Ambrisko 			if (sc->bge_asicrev == BGE_ASICREV_BCM5750) {
21848cb1383cSDoug Ambrisko 				sc->bge_asf_mode |= ASF_NEW_HANDSHAKE;
21858cb1383cSDoug Ambrisko 			}
21868cb1383cSDoug Ambrisko 		}
21878cb1383cSDoug Ambrisko 	}
21888cb1383cSDoug Ambrisko 
21898cb1383cSDoug Ambrisko 	/* Try to reset the chip again the nice way. */
21908cb1383cSDoug Ambrisko 	bge_stop_fw(sc);
21918cb1383cSDoug Ambrisko 	bge_sig_pre_reset(sc, BGE_RESET_STOP);
21928cb1383cSDoug Ambrisko 	if (bge_reset(sc)) {
21938cb1383cSDoug Ambrisko 		device_printf(sc->bge_dev, "chip reset failed\n");
21948cb1383cSDoug Ambrisko 		bge_release_resources(sc);
21958cb1383cSDoug Ambrisko 		error = ENXIO;
21968cb1383cSDoug Ambrisko 		goto fail;
21978cb1383cSDoug Ambrisko 	}
21988cb1383cSDoug Ambrisko 
21998cb1383cSDoug Ambrisko 	bge_sig_legacy(sc, BGE_RESET_STOP);
22008cb1383cSDoug Ambrisko 	bge_sig_post_reset(sc, BGE_RESET_STOP);
220195d67482SBill Paul 
220295d67482SBill Paul 	if (bge_chipinit(sc)) {
2203fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "chip initialization failed\n");
220495d67482SBill Paul 		bge_release_resources(sc);
220595d67482SBill Paul 		error = ENXIO;
220695d67482SBill Paul 		goto fail;
220795d67482SBill Paul 	}
220895d67482SBill Paul 
220995d67482SBill Paul 	/*
221095d67482SBill Paul 	 * Get station address from the EEPROM.
221195d67482SBill Paul 	 */
2212fc74a9f9SBrooks Davis 	mac_tmp = bge_readmem_ind(sc, 0x0c14);
2213fc74a9f9SBrooks Davis 	if ((mac_tmp >> 16) == 0x484b) {
2214fc74a9f9SBrooks Davis 		eaddr[0] = (u_char)(mac_tmp >> 8);
2215fc74a9f9SBrooks Davis 		eaddr[1] = (u_char)mac_tmp;
2216fc74a9f9SBrooks Davis 		mac_tmp = bge_readmem_ind(sc, 0x0c18);
2217fc74a9f9SBrooks Davis 		eaddr[2] = (u_char)(mac_tmp >> 24);
2218fc74a9f9SBrooks Davis 		eaddr[3] = (u_char)(mac_tmp >> 16);
2219fc74a9f9SBrooks Davis 		eaddr[4] = (u_char)(mac_tmp >> 8);
2220fc74a9f9SBrooks Davis 		eaddr[5] = (u_char)mac_tmp;
2221fc74a9f9SBrooks Davis 	} else if (bge_read_eeprom(sc, eaddr,
222295d67482SBill Paul 	    BGE_EE_MAC_OFFSET + 2, ETHER_ADDR_LEN)) {
2223fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "failed to read station address\n");
222495d67482SBill Paul 		bge_release_resources(sc);
222595d67482SBill Paul 		error = ENXIO;
222695d67482SBill Paul 		goto fail;
222795d67482SBill Paul 	}
222895d67482SBill Paul 
2229f41ac2beSBill Paul 	/* 5705 limits RX return ring to 512 entries. */
22307ee00338SJung-uk Kim 	if (BGE_IS_5705_PLUS(sc))
2231f41ac2beSBill Paul 		sc->bge_return_ring_cnt = BGE_RETURN_RING_CNT_5705;
2232f41ac2beSBill Paul 	else
2233f41ac2beSBill Paul 		sc->bge_return_ring_cnt = BGE_RETURN_RING_CNT;
2234f41ac2beSBill Paul 
2235f41ac2beSBill Paul 	if (bge_dma_alloc(dev)) {
2236fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev,
2237fe806fdaSPyun YongHyeon 		    "failed to allocate DMA resources\n");
2238f41ac2beSBill Paul 		bge_release_resources(sc);
2239f41ac2beSBill Paul 		error = ENXIO;
2240f41ac2beSBill Paul 		goto fail;
2241f41ac2beSBill Paul 	}
2242f41ac2beSBill Paul 
224395d67482SBill Paul 	/* Set default tuneable values. */
224495d67482SBill Paul 	sc->bge_stat_ticks = BGE_TICKS_PER_SEC;
224595d67482SBill Paul 	sc->bge_rx_coal_ticks = 150;
224695d67482SBill Paul 	sc->bge_tx_coal_ticks = 150;
224795d67482SBill Paul 	sc->bge_rx_max_coal_bds = 64;
224895d67482SBill Paul 	sc->bge_tx_max_coal_bds = 128;
224995d67482SBill Paul 
225095d67482SBill Paul 	/* Set up ifnet structure */
2251fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp = if_alloc(IFT_ETHER);
2252fc74a9f9SBrooks Davis 	if (ifp == NULL) {
2253fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "failed to if_alloc()\n");
2254fc74a9f9SBrooks Davis 		bge_release_resources(sc);
2255fc74a9f9SBrooks Davis 		error = ENXIO;
2256fc74a9f9SBrooks Davis 		goto fail;
2257fc74a9f9SBrooks Davis 	}
225895d67482SBill Paul 	ifp->if_softc = sc;
22599bf40edeSBrooks Davis 	if_initname(ifp, device_get_name(dev), device_get_unit(dev));
226095d67482SBill Paul 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
226195d67482SBill Paul 	ifp->if_ioctl = bge_ioctl;
226295d67482SBill Paul 	ifp->if_start = bge_start;
226395d67482SBill Paul 	ifp->if_init = bge_init;
226495d67482SBill Paul 	ifp->if_mtu = ETHERMTU;
22654d665c4dSDag-Erling Smørgrav 	ifp->if_snd.ifq_drv_maxlen = BGE_TX_RING_CNT - 1;
22664d665c4dSDag-Erling Smørgrav 	IFQ_SET_MAXLEN(&ifp->if_snd, ifp->if_snd.ifq_drv_maxlen);
22674d665c4dSDag-Erling Smørgrav 	IFQ_SET_READY(&ifp->if_snd);
226895d67482SBill Paul 	ifp->if_hwassist = BGE_CSUM_FEATURES;
2269d375e524SGleb Smirnoff 	ifp->if_capabilities = IFCAP_HWCSUM | IFCAP_VLAN_HWTAGGING |
2270479b23b7SGleb Smirnoff 	    IFCAP_VLAN_MTU | IFCAP_VLAN_HWCSUM;
227195d67482SBill Paul 	ifp->if_capenable = ifp->if_capabilities;
227275719184SGleb Smirnoff #ifdef DEVICE_POLLING
227375719184SGleb Smirnoff 	ifp->if_capabilities |= IFCAP_POLLING;
227475719184SGleb Smirnoff #endif
227595d67482SBill Paul 
2276a1d52896SBill Paul 	/*
2277d375e524SGleb Smirnoff 	 * 5700 B0 chips do not support checksumming correctly due
2278d375e524SGleb Smirnoff 	 * to hardware bugs.
2279d375e524SGleb Smirnoff 	 */
2280d375e524SGleb Smirnoff 	if (sc->bge_chipid == BGE_CHIPID_BCM5700_B0) {
2281d375e524SGleb Smirnoff 		ifp->if_capabilities &= ~IFCAP_HWCSUM;
2282d375e524SGleb Smirnoff 		ifp->if_capenable &= IFCAP_HWCSUM;
2283d375e524SGleb Smirnoff 		ifp->if_hwassist = 0;
2284d375e524SGleb Smirnoff 	}
2285d375e524SGleb Smirnoff 
2286d375e524SGleb Smirnoff 	/*
2287a1d52896SBill Paul 	 * Figure out what sort of media we have by checking the
228841abcc1bSPaul Saab 	 * hardware config word in the first 32k of NIC internal memory,
228941abcc1bSPaul Saab 	 * or fall back to examining the EEPROM if necessary.
229041abcc1bSPaul Saab 	 * Note: on some BCM5700 cards, this value appears to be unset.
229141abcc1bSPaul Saab 	 * If that's the case, we have to rely on identifying the NIC
229241abcc1bSPaul Saab 	 * by its PCI subsystem ID, as we do below for the SysKonnect
229341abcc1bSPaul Saab 	 * SK-9D41.
2294a1d52896SBill Paul 	 */
229541abcc1bSPaul Saab 	if (bge_readmem_ind(sc, BGE_SOFTWARE_GENCOMM_SIG) == BGE_MAGIC_NUMBER)
229641abcc1bSPaul Saab 		hwcfg = bge_readmem_ind(sc, BGE_SOFTWARE_GENCOMM_NICCFG);
229741abcc1bSPaul Saab 	else {
2298f6789fbaSPyun YongHyeon 		if (bge_read_eeprom(sc, (caddr_t)&hwcfg, BGE_EE_HWCFG_OFFSET,
2299f6789fbaSPyun YongHyeon 		    sizeof(hwcfg))) {
2300fe806fdaSPyun YongHyeon 			device_printf(sc->bge_dev, "failed to read EEPROM\n");
2301f6789fbaSPyun YongHyeon 			bge_release_resources(sc);
2302f6789fbaSPyun YongHyeon 			error = ENXIO;
2303f6789fbaSPyun YongHyeon 			goto fail;
2304f6789fbaSPyun YongHyeon 		}
230541abcc1bSPaul Saab 		hwcfg = ntohl(hwcfg);
230641abcc1bSPaul Saab 	}
230741abcc1bSPaul Saab 
230841abcc1bSPaul Saab 	if ((hwcfg & BGE_HWCFG_MEDIA) == BGE_MEDIA_FIBER)
2309652ae483SGleb Smirnoff 		sc->bge_flags |= BGE_FLAG_TBI;
2310a1d52896SBill Paul 
231195d67482SBill Paul 	/* The SysKonnect SK-9D41 is a 1000baseSX card. */
231295d67482SBill Paul 	if ((pci_read_config(dev, BGE_PCI_SUBSYS, 4) >> 16) == SK_SUBSYSID_9D41)
2313652ae483SGleb Smirnoff 		sc->bge_flags |= BGE_FLAG_TBI;
231495d67482SBill Paul 
2315652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_TBI) {
231695d67482SBill Paul 		ifmedia_init(&sc->bge_ifmedia, IFM_IMASK,
231795d67482SBill Paul 		    bge_ifmedia_upd, bge_ifmedia_sts);
231895d67482SBill Paul 		ifmedia_add(&sc->bge_ifmedia, IFM_ETHER|IFM_1000_SX, 0, NULL);
231995d67482SBill Paul 		ifmedia_add(&sc->bge_ifmedia,
232095d67482SBill Paul 		    IFM_ETHER|IFM_1000_SX|IFM_FDX, 0, NULL);
232195d67482SBill Paul 		ifmedia_add(&sc->bge_ifmedia, IFM_ETHER|IFM_AUTO, 0, NULL);
232295d67482SBill Paul 		ifmedia_set(&sc->bge_ifmedia, IFM_ETHER|IFM_AUTO);
2323da3003f0SBill Paul 		sc->bge_ifmedia.ifm_media = sc->bge_ifmedia.ifm_cur->ifm_media;
232495d67482SBill Paul 	} else {
232595d67482SBill Paul 		/*
23268cb1383cSDoug Ambrisko 		 * Do transceiver setup and tell the firmware the
23278cb1383cSDoug Ambrisko 		 * driver is down so we can try to get access the
23288cb1383cSDoug Ambrisko 		 * probe if ASF is running.  Retry a couple of times
23298cb1383cSDoug Ambrisko 		 * if we get a conflict with the ASF firmware accessing
23308cb1383cSDoug Ambrisko 		 * the PHY.
233195d67482SBill Paul 		 */
23328cb1383cSDoug Ambrisko 		BGE_CLRBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
23338cb1383cSDoug Ambrisko again:
23348cb1383cSDoug Ambrisko 		bge_asf_driver_up(sc);
23358cb1383cSDoug Ambrisko 
23368cb1383cSDoug Ambrisko 		trys = 0;
233795d67482SBill Paul 		if (mii_phy_probe(dev, &sc->bge_miibus,
233895d67482SBill Paul 		    bge_ifmedia_upd, bge_ifmedia_sts)) {
23398cb1383cSDoug Ambrisko 			if (trys++ < 4) {
23408cb1383cSDoug Ambrisko 				device_printf(sc->bge_dev, "Try again\n");
23418cb1383cSDoug Ambrisko 				bge_miibus_writereg(sc->bge_dev, 1, MII_BMCR, BMCR_RESET);
23428cb1383cSDoug Ambrisko 				goto again;
23438cb1383cSDoug Ambrisko 			}
23448cb1383cSDoug Ambrisko 
2345fe806fdaSPyun YongHyeon 			device_printf(sc->bge_dev, "MII without any PHY!\n");
234695d67482SBill Paul 			bge_release_resources(sc);
234795d67482SBill Paul 			error = ENXIO;
234895d67482SBill Paul 			goto fail;
234995d67482SBill Paul 		}
23508cb1383cSDoug Ambrisko 
23518cb1383cSDoug Ambrisko 		/*
23528cb1383cSDoug Ambrisko 		 * Now tell the firmware we are going up after probing the PHY
23538cb1383cSDoug Ambrisko 		 */
23548cb1383cSDoug Ambrisko 		if (sc->bge_asf_mode & ASF_STACKUP)
23558cb1383cSDoug Ambrisko 			BGE_SETBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
235695d67482SBill Paul 	}
235795d67482SBill Paul 
235895d67482SBill Paul 	/*
2359e255b776SJohn Polstra 	 * When using the BCM5701 in PCI-X mode, data corruption has
2360e255b776SJohn Polstra 	 * been observed in the first few bytes of some received packets.
2361e255b776SJohn Polstra 	 * Aligning the packet buffer in memory eliminates the corruption.
2362e255b776SJohn Polstra 	 * Unfortunately, this misaligns the packet payloads.  On platforms
2363e255b776SJohn Polstra 	 * which do not support unaligned accesses, we will realign the
2364e255b776SJohn Polstra 	 * payloads by copying the received packets.
2365e255b776SJohn Polstra 	 */
2366652ae483SGleb Smirnoff 	if (sc->bge_asicrev == BGE_ASICREV_BCM5701 &&
2367652ae483SGleb Smirnoff 	    sc->bge_flags & BGE_FLAG_PCIX)
2368652ae483SGleb Smirnoff                 sc->bge_flags |= BGE_FLAG_RX_ALIGNBUG;
2369e255b776SJohn Polstra 
2370e255b776SJohn Polstra 	/*
237195d67482SBill Paul 	 * Call MI attach routine.
237295d67482SBill Paul 	 */
2373fc74a9f9SBrooks Davis 	ether_ifattach(ifp, eaddr);
2374b74e67fbSGleb Smirnoff 	callout_init_mtx(&sc->bge_stat_ch, &sc->bge_mtx, 0);
23750f9bd73bSSam Leffler 
23760f9bd73bSSam Leffler 	/*
23770f9bd73bSSam Leffler 	 * Hookup IRQ last.
23780f9bd73bSSam Leffler 	 */
23790f9bd73bSSam Leffler 	error = bus_setup_intr(dev, sc->bge_irq, INTR_TYPE_NET | INTR_MPSAFE,
23800f9bd73bSSam Leffler 	   bge_intr, sc, &sc->bge_intrhand);
23810f9bd73bSSam Leffler 
23820f9bd73bSSam Leffler 	if (error) {
2383fc74a9f9SBrooks Davis 		bge_detach(dev);
2384fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "couldn't set up irq\n");
23850f9bd73bSSam Leffler 	}
238695d67482SBill Paul 
238795d67482SBill Paul fail:
238895d67482SBill Paul 	return (error);
238995d67482SBill Paul }
239095d67482SBill Paul 
239195d67482SBill Paul static int
23923f74909aSGleb Smirnoff bge_detach(device_t dev)
239395d67482SBill Paul {
239495d67482SBill Paul 	struct bge_softc *sc;
239595d67482SBill Paul 	struct ifnet *ifp;
239695d67482SBill Paul 
239795d67482SBill Paul 	sc = device_get_softc(dev);
2398fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp;
239995d67482SBill Paul 
240075719184SGleb Smirnoff #ifdef DEVICE_POLLING
240175719184SGleb Smirnoff 	if (ifp->if_capenable & IFCAP_POLLING)
240275719184SGleb Smirnoff 		ether_poll_deregister(ifp);
240375719184SGleb Smirnoff #endif
240475719184SGleb Smirnoff 
24050f9bd73bSSam Leffler 	BGE_LOCK(sc);
240695d67482SBill Paul 	bge_stop(sc);
240795d67482SBill Paul 	bge_reset(sc);
24080f9bd73bSSam Leffler 	BGE_UNLOCK(sc);
24090f9bd73bSSam Leffler 
24100f9bd73bSSam Leffler 	ether_ifdetach(ifp);
241195d67482SBill Paul 
2412652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_TBI) {
241395d67482SBill Paul 		ifmedia_removeall(&sc->bge_ifmedia);
241495d67482SBill Paul 	} else {
241595d67482SBill Paul 		bus_generic_detach(dev);
241695d67482SBill Paul 		device_delete_child(dev, sc->bge_miibus);
241795d67482SBill Paul 	}
241895d67482SBill Paul 
241995d67482SBill Paul 	bge_release_resources(sc);
242095d67482SBill Paul 
242195d67482SBill Paul 	return (0);
242295d67482SBill Paul }
242395d67482SBill Paul 
242495d67482SBill Paul static void
24253f74909aSGleb Smirnoff bge_release_resources(struct bge_softc *sc)
242695d67482SBill Paul {
242795d67482SBill Paul 	device_t dev;
242895d67482SBill Paul 
242995d67482SBill Paul 	dev = sc->bge_dev;
243095d67482SBill Paul 
243195d67482SBill Paul 	if (sc->bge_vpd_prodname != NULL)
243295d67482SBill Paul 		free(sc->bge_vpd_prodname, M_DEVBUF);
243395d67482SBill Paul 
243495d67482SBill Paul 	if (sc->bge_vpd_readonly != NULL)
243595d67482SBill Paul 		free(sc->bge_vpd_readonly, M_DEVBUF);
243695d67482SBill Paul 
243795d67482SBill Paul 	if (sc->bge_intrhand != NULL)
243895d67482SBill Paul 		bus_teardown_intr(dev, sc->bge_irq, sc->bge_intrhand);
243995d67482SBill Paul 
244095d67482SBill Paul 	if (sc->bge_irq != NULL)
244195d67482SBill Paul 		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->bge_irq);
244295d67482SBill Paul 
244395d67482SBill Paul 	if (sc->bge_res != NULL)
244495d67482SBill Paul 		bus_release_resource(dev, SYS_RES_MEMORY,
244595d67482SBill Paul 		    BGE_PCI_BAR0, sc->bge_res);
244695d67482SBill Paul 
2447ad61f896SRuslan Ermilov 	if (sc->bge_ifp != NULL)
2448ad61f896SRuslan Ermilov 		if_free(sc->bge_ifp);
2449ad61f896SRuslan Ermilov 
2450f41ac2beSBill Paul 	bge_dma_free(sc);
245195d67482SBill Paul 
24520f9bd73bSSam Leffler 	if (mtx_initialized(&sc->bge_mtx))	/* XXX */
24530f9bd73bSSam Leffler 		BGE_LOCK_DESTROY(sc);
245495d67482SBill Paul }
245595d67482SBill Paul 
24568cb1383cSDoug Ambrisko static int
24573f74909aSGleb Smirnoff bge_reset(struct bge_softc *sc)
245895d67482SBill Paul {
245995d67482SBill Paul 	device_t dev;
24603f74909aSGleb Smirnoff 	uint32_t cachesize, command, pcistate, reset;
246195d67482SBill Paul 	int i, val = 0;
246295d67482SBill Paul 
246395d67482SBill Paul 	dev = sc->bge_dev;
246495d67482SBill Paul 
246595d67482SBill Paul 	/* Save some important PCI state. */
246695d67482SBill Paul 	cachesize = pci_read_config(dev, BGE_PCI_CACHESZ, 4);
246795d67482SBill Paul 	command = pci_read_config(dev, BGE_PCI_CMD, 4);
246895d67482SBill Paul 	pcistate = pci_read_config(dev, BGE_PCI_PCISTATE, 4);
246995d67482SBill Paul 
247095d67482SBill Paul 	pci_write_config(dev, BGE_PCI_MISC_CTL,
247195d67482SBill Paul 	    BGE_PCIMISCCTL_INDIRECT_ACCESS|BGE_PCIMISCCTL_MASK_PCI_INTR|
2472e907febfSPyun YongHyeon 	BGE_HIF_SWAP_OPTIONS|BGE_PCIMISCCTL_PCISTATE_RW, 4);
247395d67482SBill Paul 
2474e53d81eeSPaul Saab 	reset = BGE_MISCCFG_RESET_CORE_CLOCKS|(65<<1);
2475e53d81eeSPaul Saab 
2476e53d81eeSPaul Saab 	/* XXX: Broadcom Linux driver. */
2477652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_PCIE) {
2478e53d81eeSPaul Saab 		if (CSR_READ_4(sc, 0x7e2c) == 0x60)	/* PCIE 1.0 */
2479e53d81eeSPaul Saab 			CSR_WRITE_4(sc, 0x7e2c, 0x20);
2480e53d81eeSPaul Saab 		if (sc->bge_chipid != BGE_CHIPID_BCM5750_A0) {
2481e53d81eeSPaul Saab 			/* Prevent PCIE link training during global reset */
2482e53d81eeSPaul Saab 			CSR_WRITE_4(sc, BGE_MISC_CFG, (1<<29));
2483e53d81eeSPaul Saab 			reset |= (1<<29);
2484e53d81eeSPaul Saab 		}
2485e53d81eeSPaul Saab 	}
2486e53d81eeSPaul Saab 
248721c9e407SDavid Christensen 	/*
248821c9e407SDavid Christensen 	 * Write the magic number to the firmware mailbox at 0xb50
248921c9e407SDavid Christensen          * so that the driver can synchronize with the firmware.
249021c9e407SDavid Christensen 	 */
249121c9e407SDavid Christensen 	bge_writemem_ind(sc, BGE_SOFTWARE_GENCOMM, BGE_MAGIC_NUMBER);
249221c9e407SDavid Christensen 
249395d67482SBill Paul 	/* Issue global reset */
2494e53d81eeSPaul Saab 	bge_writereg_ind(sc, BGE_MISC_CFG, reset);
249595d67482SBill Paul 
249695d67482SBill Paul 	DELAY(1000);
249795d67482SBill Paul 
2498e53d81eeSPaul Saab 	/* XXX: Broadcom Linux driver. */
2499652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_PCIE) {
2500e53d81eeSPaul Saab 		if (sc->bge_chipid == BGE_CHIPID_BCM5750_A0) {
2501e53d81eeSPaul Saab 			uint32_t v;
2502e53d81eeSPaul Saab 
2503e53d81eeSPaul Saab 			DELAY(500000); /* wait for link training to complete */
2504e53d81eeSPaul Saab 			v = pci_read_config(dev, 0xc4, 4);
2505e53d81eeSPaul Saab 			pci_write_config(dev, 0xc4, v | (1<<15), 4);
2506e53d81eeSPaul Saab 		}
2507e53d81eeSPaul Saab 		/* Set PCIE max payload size and clear error status. */
2508e53d81eeSPaul Saab 		pci_write_config(dev, 0xd8, 0xf5000, 4);
2509e53d81eeSPaul Saab 	}
2510e53d81eeSPaul Saab 
25113f74909aSGleb Smirnoff 	/* Reset some of the PCI state that got zapped by reset. */
251295d67482SBill Paul 	pci_write_config(dev, BGE_PCI_MISC_CTL,
251395d67482SBill Paul 	    BGE_PCIMISCCTL_INDIRECT_ACCESS|BGE_PCIMISCCTL_MASK_PCI_INTR|
2514e907febfSPyun YongHyeon 	    BGE_HIF_SWAP_OPTIONS|BGE_PCIMISCCTL_PCISTATE_RW, 4);
251595d67482SBill Paul 	pci_write_config(dev, BGE_PCI_CACHESZ, cachesize, 4);
251695d67482SBill Paul 	pci_write_config(dev, BGE_PCI_CMD, command, 4);
251795d67482SBill Paul 	bge_writereg_ind(sc, BGE_MISC_CFG, (65 << 1));
251895d67482SBill Paul 
2519a7b0c314SPaul Saab 	/* Enable memory arbiter. */
25204c0da0ffSGleb Smirnoff 	if (BGE_IS_5714_FAMILY(sc)) {
25214c0da0ffSGleb Smirnoff 		uint32_t val;
25224c0da0ffSGleb Smirnoff 
25234c0da0ffSGleb Smirnoff 		val = CSR_READ_4(sc, BGE_MARB_MODE);
25244c0da0ffSGleb Smirnoff 		CSR_WRITE_4(sc, BGE_MARB_MODE, BGE_MARBMODE_ENABLE | val);
25254c0da0ffSGleb Smirnoff 	} else
2526a7b0c314SPaul Saab 		CSR_WRITE_4(sc, BGE_MARB_MODE, BGE_MARBMODE_ENABLE);
2527a7b0c314SPaul Saab 
252895d67482SBill Paul 	/*
252995d67482SBill Paul 	 * Poll the value location we just wrote until
253095d67482SBill Paul 	 * we see the 1's complement of the magic number.
253195d67482SBill Paul 	 * This indicates that the firmware initialization
253295d67482SBill Paul 	 * is complete.
253395d67482SBill Paul 	 */
253495d67482SBill Paul 	for (i = 0; i < BGE_TIMEOUT; i++) {
253595d67482SBill Paul 		val = bge_readmem_ind(sc, BGE_SOFTWARE_GENCOMM);
253695d67482SBill Paul 		if (val == ~BGE_MAGIC_NUMBER)
253795d67482SBill Paul 			break;
253895d67482SBill Paul 		DELAY(10);
253995d67482SBill Paul 	}
254095d67482SBill Paul 
254195d67482SBill Paul 	if (i == BGE_TIMEOUT) {
2542fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "firmware handshake timed out\n");
25438cb1383cSDoug Ambrisko 		return(0);
254495d67482SBill Paul 	}
254595d67482SBill Paul 
254695d67482SBill Paul 	/*
254795d67482SBill Paul 	 * XXX Wait for the value of the PCISTATE register to
254895d67482SBill Paul 	 * return to its original pre-reset state. This is a
254995d67482SBill Paul 	 * fairly good indicator of reset completion. If we don't
255095d67482SBill Paul 	 * wait for the reset to fully complete, trying to read
255195d67482SBill Paul 	 * from the device's non-PCI registers may yield garbage
255295d67482SBill Paul 	 * results.
255395d67482SBill Paul 	 */
255495d67482SBill Paul 	for (i = 0; i < BGE_TIMEOUT; i++) {
255595d67482SBill Paul 		if (pci_read_config(dev, BGE_PCI_PCISTATE, 4) == pcistate)
255695d67482SBill Paul 			break;
255795d67482SBill Paul 		DELAY(10);
255895d67482SBill Paul 	}
255995d67482SBill Paul 
25603f74909aSGleb Smirnoff 	/* Fix up byte swapping. */
2561e907febfSPyun YongHyeon 	CSR_WRITE_4(sc, BGE_MODE_CTL, BGE_DMA_SWAP_OPTIONS|
256295d67482SBill Paul 	    BGE_MODECTL_BYTESWAP_DATA);
256395d67482SBill Paul 
25648cb1383cSDoug Ambrisko 	/* Tell the ASF firmware we are up */
25658cb1383cSDoug Ambrisko 	if (sc->bge_asf_mode & ASF_STACKUP)
25668cb1383cSDoug Ambrisko 		BGE_SETBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
25678cb1383cSDoug Ambrisko 
256895d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MAC_MODE, 0);
256995d67482SBill Paul 
2570da3003f0SBill Paul 	/*
2571da3003f0SBill Paul 	 * The 5704 in TBI mode apparently needs some special
2572da3003f0SBill Paul 	 * adjustment to insure the SERDES drive level is set
2573da3003f0SBill Paul 	 * to 1.2V.
2574da3003f0SBill Paul 	 */
2575652ae483SGleb Smirnoff 	if (sc->bge_asicrev == BGE_ASICREV_BCM5704 &&
2576652ae483SGleb Smirnoff 	    sc->bge_flags & BGE_FLAG_TBI) {
2577da3003f0SBill Paul 		uint32_t serdescfg;
2578652ae483SGleb Smirnoff 
2579da3003f0SBill Paul 		serdescfg = CSR_READ_4(sc, BGE_SERDES_CFG);
2580da3003f0SBill Paul 		serdescfg = (serdescfg & ~0xFFF) | 0x880;
2581da3003f0SBill Paul 		CSR_WRITE_4(sc, BGE_SERDES_CFG, serdescfg);
2582da3003f0SBill Paul 	}
2583da3003f0SBill Paul 
2584e53d81eeSPaul Saab 	/* XXX: Broadcom Linux driver. */
2585652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_PCIE &&
2586652ae483SGleb Smirnoff 	    sc->bge_chipid != BGE_CHIPID_BCM5750_A0) {
2587e53d81eeSPaul Saab 		uint32_t v;
2588e53d81eeSPaul Saab 
2589e53d81eeSPaul Saab 		v = CSR_READ_4(sc, 0x7c00);
2590e53d81eeSPaul Saab 		CSR_WRITE_4(sc, 0x7c00, v | (1<<25));
2591e53d81eeSPaul Saab 	}
259295d67482SBill Paul 	DELAY(10000);
25938cb1383cSDoug Ambrisko 
25948cb1383cSDoug Ambrisko 	return(0);
259595d67482SBill Paul }
259695d67482SBill Paul 
259795d67482SBill Paul /*
259895d67482SBill Paul  * Frame reception handling. This is called if there's a frame
259995d67482SBill Paul  * on the receive return list.
260095d67482SBill Paul  *
260195d67482SBill Paul  * Note: we have to be able to handle two possibilities here:
26021be6acb7SGleb Smirnoff  * 1) the frame is from the jumbo receive ring
260395d67482SBill Paul  * 2) the frame is from the standard receive ring
260495d67482SBill Paul  */
260595d67482SBill Paul 
260695d67482SBill Paul static void
26073f74909aSGleb Smirnoff bge_rxeof(struct bge_softc *sc)
260895d67482SBill Paul {
260995d67482SBill Paul 	struct ifnet *ifp;
261095d67482SBill Paul 	int stdcnt = 0, jumbocnt = 0;
261195d67482SBill Paul 
26120f9bd73bSSam Leffler 	BGE_LOCK_ASSERT(sc);
26130f9bd73bSSam Leffler 
26143f74909aSGleb Smirnoff 	/* Nothing to do. */
2615cfcb5025SOleg Bulyzhin 	if (sc->bge_rx_saved_considx ==
2616cfcb5025SOleg Bulyzhin 	    sc->bge_ldata.bge_status_block->bge_idx[0].bge_rx_prod_idx)
2617cfcb5025SOleg Bulyzhin 		return;
2618cfcb5025SOleg Bulyzhin 
2619fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp;
262095d67482SBill Paul 
2621f41ac2beSBill Paul 	bus_dmamap_sync(sc->bge_cdata.bge_rx_return_ring_tag,
2622e65bed95SPyun YongHyeon 	    sc->bge_cdata.bge_rx_return_ring_map, BUS_DMASYNC_POSTREAD);
2623f41ac2beSBill Paul 	bus_dmamap_sync(sc->bge_cdata.bge_rx_std_ring_tag,
2624f41ac2beSBill Paul 	    sc->bge_cdata.bge_rx_std_ring_map, BUS_DMASYNC_POSTREAD);
26254c0da0ffSGleb Smirnoff 	if (BGE_IS_JUMBO_CAPABLE(sc))
2626f41ac2beSBill Paul 		bus_dmamap_sync(sc->bge_cdata.bge_rx_jumbo_ring_tag,
26274c0da0ffSGleb Smirnoff 		    sc->bge_cdata.bge_rx_jumbo_ring_map, BUS_DMASYNC_POSTREAD);
2628f41ac2beSBill Paul 
262995d67482SBill Paul 	while(sc->bge_rx_saved_considx !=
2630f41ac2beSBill Paul 	    sc->bge_ldata.bge_status_block->bge_idx[0].bge_rx_prod_idx) {
263195d67482SBill Paul 		struct bge_rx_bd	*cur_rx;
26323f74909aSGleb Smirnoff 		uint32_t		rxidx;
263395d67482SBill Paul 		struct mbuf		*m = NULL;
26343f74909aSGleb Smirnoff 		uint16_t		vlan_tag = 0;
263595d67482SBill Paul 		int			have_tag = 0;
263695d67482SBill Paul 
263775719184SGleb Smirnoff #ifdef DEVICE_POLLING
263875719184SGleb Smirnoff 		if (ifp->if_capenable & IFCAP_POLLING) {
263975719184SGleb Smirnoff 			if (sc->rxcycles <= 0)
264075719184SGleb Smirnoff 				break;
264175719184SGleb Smirnoff 			sc->rxcycles--;
264275719184SGleb Smirnoff 		}
264375719184SGleb Smirnoff #endif
264475719184SGleb Smirnoff 
264595d67482SBill Paul 		cur_rx =
2646f41ac2beSBill Paul 	    &sc->bge_ldata.bge_rx_return_ring[sc->bge_rx_saved_considx];
264795d67482SBill Paul 
264895d67482SBill Paul 		rxidx = cur_rx->bge_idx;
26490434d1b8SBill Paul 		BGE_INC(sc->bge_rx_saved_considx, sc->bge_return_ring_cnt);
265095d67482SBill Paul 
26513e9b1bcaSJung-uk Kim 		if (!(ifp->if_flags & IFF_PROMISC) &&
26523e9b1bcaSJung-uk Kim 		    (cur_rx->bge_flags & BGE_RXBDFLAG_VLAN_TAG)) {
265395d67482SBill Paul 			have_tag = 1;
265495d67482SBill Paul 			vlan_tag = cur_rx->bge_vlan_tag;
265595d67482SBill Paul 		}
265695d67482SBill Paul 
265795d67482SBill Paul 		if (cur_rx->bge_flags & BGE_RXBDFLAG_JUMBO_RING) {
265895d67482SBill Paul 			BGE_INC(sc->bge_jumbo, BGE_JUMBO_RX_RING_CNT);
2659f41ac2beSBill Paul 			bus_dmamap_sync(sc->bge_cdata.bge_mtag_jumbo,
2660f41ac2beSBill Paul 			    sc->bge_cdata.bge_rx_jumbo_dmamap[rxidx],
2661f41ac2beSBill Paul 			    BUS_DMASYNC_POSTREAD);
2662f41ac2beSBill Paul 			bus_dmamap_unload(sc->bge_cdata.bge_mtag_jumbo,
2663f41ac2beSBill Paul 			    sc->bge_cdata.bge_rx_jumbo_dmamap[rxidx]);
266495d67482SBill Paul 			m = sc->bge_cdata.bge_rx_jumbo_chain[rxidx];
266595d67482SBill Paul 			sc->bge_cdata.bge_rx_jumbo_chain[rxidx] = NULL;
266695d67482SBill Paul 			jumbocnt++;
266795d67482SBill Paul 			if (cur_rx->bge_flags & BGE_RXBDFLAG_ERROR) {
266895d67482SBill Paul 				ifp->if_ierrors++;
266995d67482SBill Paul 				bge_newbuf_jumbo(sc, sc->bge_jumbo, m);
267095d67482SBill Paul 				continue;
267195d67482SBill Paul 			}
267295d67482SBill Paul 			if (bge_newbuf_jumbo(sc,
267395d67482SBill Paul 			    sc->bge_jumbo, NULL) == ENOBUFS) {
267495d67482SBill Paul 				ifp->if_ierrors++;
267595d67482SBill Paul 				bge_newbuf_jumbo(sc, sc->bge_jumbo, m);
267695d67482SBill Paul 				continue;
267795d67482SBill Paul 			}
267895d67482SBill Paul 		} else {
267995d67482SBill Paul 			BGE_INC(sc->bge_std, BGE_STD_RX_RING_CNT);
2680f41ac2beSBill Paul 			bus_dmamap_sync(sc->bge_cdata.bge_mtag,
2681f41ac2beSBill Paul 			    sc->bge_cdata.bge_rx_std_dmamap[rxidx],
2682f41ac2beSBill Paul 			    BUS_DMASYNC_POSTREAD);
2683f41ac2beSBill Paul 			bus_dmamap_unload(sc->bge_cdata.bge_mtag,
2684f41ac2beSBill Paul 			    sc->bge_cdata.bge_rx_std_dmamap[rxidx]);
268595d67482SBill Paul 			m = sc->bge_cdata.bge_rx_std_chain[rxidx];
268695d67482SBill Paul 			sc->bge_cdata.bge_rx_std_chain[rxidx] = NULL;
268795d67482SBill Paul 			stdcnt++;
268895d67482SBill Paul 			if (cur_rx->bge_flags & BGE_RXBDFLAG_ERROR) {
268995d67482SBill Paul 				ifp->if_ierrors++;
269095d67482SBill Paul 				bge_newbuf_std(sc, sc->bge_std, m);
269195d67482SBill Paul 				continue;
269295d67482SBill Paul 			}
269395d67482SBill Paul 			if (bge_newbuf_std(sc, sc->bge_std,
269495d67482SBill Paul 			    NULL) == ENOBUFS) {
269595d67482SBill Paul 				ifp->if_ierrors++;
269695d67482SBill Paul 				bge_newbuf_std(sc, sc->bge_std, m);
269795d67482SBill Paul 				continue;
269895d67482SBill Paul 			}
269995d67482SBill Paul 		}
270095d67482SBill Paul 
270195d67482SBill Paul 		ifp->if_ipackets++;
2702e65bed95SPyun YongHyeon #ifndef __NO_STRICT_ALIGNMENT
2703e255b776SJohn Polstra 		/*
2704e65bed95SPyun YongHyeon 		 * For architectures with strict alignment we must make sure
2705e65bed95SPyun YongHyeon 		 * the payload is aligned.
2706e255b776SJohn Polstra 		 */
2707652ae483SGleb Smirnoff 		if (sc->bge_flags & BGE_FLAG_RX_ALIGNBUG) {
2708e255b776SJohn Polstra 			bcopy(m->m_data, m->m_data + ETHER_ALIGN,
2709e255b776SJohn Polstra 			    cur_rx->bge_len);
2710e255b776SJohn Polstra 			m->m_data += ETHER_ALIGN;
2711e255b776SJohn Polstra 		}
2712e255b776SJohn Polstra #endif
2713473851baSPaul Saab 		m->m_pkthdr.len = m->m_len = cur_rx->bge_len - ETHER_CRC_LEN;
271495d67482SBill Paul 		m->m_pkthdr.rcvif = ifp;
271595d67482SBill Paul 
2716b874fdd4SYaroslav Tykhiy 		if (ifp->if_capenable & IFCAP_RXCSUM) {
271778178cd1SGleb Smirnoff 			if (cur_rx->bge_flags & BGE_RXBDFLAG_IP_CSUM) {
271895d67482SBill Paul 				m->m_pkthdr.csum_flags |= CSUM_IP_CHECKED;
271995d67482SBill Paul 				if ((cur_rx->bge_ip_csum ^ 0xffff) == 0)
272095d67482SBill Paul 					m->m_pkthdr.csum_flags |= CSUM_IP_VALID;
272178178cd1SGleb Smirnoff 			}
2722d375e524SGleb Smirnoff 			if (cur_rx->bge_flags & BGE_RXBDFLAG_TCP_UDP_CSUM &&
2723d375e524SGleb Smirnoff 			    m->m_pkthdr.len >= ETHER_MIN_NOPAD) {
272495d67482SBill Paul 				m->m_pkthdr.csum_data =
272595d67482SBill Paul 				    cur_rx->bge_tcp_udp_csum;
2726ee7ef91cSOleg Bulyzhin 				m->m_pkthdr.csum_flags |=
2727ee7ef91cSOleg Bulyzhin 				    CSUM_DATA_VALID | CSUM_PSEUDO_HDR;
272895d67482SBill Paul 			}
272995d67482SBill Paul 		}
273095d67482SBill Paul 
273195d67482SBill Paul 		/*
2732673d9191SSam Leffler 		 * If we received a packet with a vlan tag,
2733673d9191SSam Leffler 		 * attach that information to the packet.
273495d67482SBill Paul 		 */
2735d147662cSGleb Smirnoff 		if (have_tag) {
273678ba57b9SAndre Oppermann 			m->m_pkthdr.ether_vtag = vlan_tag;
273778ba57b9SAndre Oppermann 			m->m_flags |= M_VLANTAG;
2738d147662cSGleb Smirnoff 		}
273995d67482SBill Paul 
27400f9bd73bSSam Leffler 		BGE_UNLOCK(sc);
2741673d9191SSam Leffler 		(*ifp->if_input)(ifp, m);
27420f9bd73bSSam Leffler 		BGE_LOCK(sc);
274395d67482SBill Paul 	}
274495d67482SBill Paul 
2745e65bed95SPyun YongHyeon 	if (stdcnt > 0)
2746f41ac2beSBill Paul 		bus_dmamap_sync(sc->bge_cdata.bge_rx_std_ring_tag,
2747e65bed95SPyun YongHyeon 		    sc->bge_cdata.bge_rx_std_ring_map, BUS_DMASYNC_PREWRITE);
27484c0da0ffSGleb Smirnoff 
27494c0da0ffSGleb Smirnoff 	if (BGE_IS_JUMBO_CAPABLE(sc) && jumbocnt > 0)
2750f41ac2beSBill Paul 		bus_dmamap_sync(sc->bge_cdata.bge_rx_jumbo_ring_tag,
27514c0da0ffSGleb Smirnoff 		    sc->bge_cdata.bge_rx_jumbo_ring_map, BUS_DMASYNC_PREWRITE);
2752f41ac2beSBill Paul 
275395d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_RX_CONS0_LO, sc->bge_rx_saved_considx);
275495d67482SBill Paul 	if (stdcnt)
275595d67482SBill Paul 		CSR_WRITE_4(sc, BGE_MBX_RX_STD_PROD_LO, sc->bge_std);
275695d67482SBill Paul 	if (jumbocnt)
275795d67482SBill Paul 		CSR_WRITE_4(sc, BGE_MBX_RX_JUMBO_PROD_LO, sc->bge_jumbo);
275895d67482SBill Paul }
275995d67482SBill Paul 
276095d67482SBill Paul static void
27613f74909aSGleb Smirnoff bge_txeof(struct bge_softc *sc)
276295d67482SBill Paul {
276395d67482SBill Paul 	struct bge_tx_bd *cur_tx = NULL;
276495d67482SBill Paul 	struct ifnet *ifp;
276595d67482SBill Paul 
27660f9bd73bSSam Leffler 	BGE_LOCK_ASSERT(sc);
27670f9bd73bSSam Leffler 
27683f74909aSGleb Smirnoff 	/* Nothing to do. */
2769cfcb5025SOleg Bulyzhin 	if (sc->bge_tx_saved_considx ==
2770cfcb5025SOleg Bulyzhin 	    sc->bge_ldata.bge_status_block->bge_idx[0].bge_tx_cons_idx)
2771cfcb5025SOleg Bulyzhin 		return;
2772cfcb5025SOleg Bulyzhin 
2773fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp;
277495d67482SBill Paul 
2775e65bed95SPyun YongHyeon 	bus_dmamap_sync(sc->bge_cdata.bge_tx_ring_tag,
2776e65bed95SPyun YongHyeon 	    sc->bge_cdata.bge_tx_ring_map,
2777e65bed95SPyun YongHyeon 	    BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
277895d67482SBill Paul 	/*
277995d67482SBill Paul 	 * Go through our tx ring and free mbufs for those
278095d67482SBill Paul 	 * frames that have been sent.
278195d67482SBill Paul 	 */
278295d67482SBill Paul 	while (sc->bge_tx_saved_considx !=
2783f41ac2beSBill Paul 	    sc->bge_ldata.bge_status_block->bge_idx[0].bge_tx_cons_idx) {
27843f74909aSGleb Smirnoff 		uint32_t		idx = 0;
278595d67482SBill Paul 
278695d67482SBill Paul 		idx = sc->bge_tx_saved_considx;
2787f41ac2beSBill Paul 		cur_tx = &sc->bge_ldata.bge_tx_ring[idx];
278895d67482SBill Paul 		if (cur_tx->bge_flags & BGE_TXBDFLAG_END)
278995d67482SBill Paul 			ifp->if_opackets++;
279095d67482SBill Paul 		if (sc->bge_cdata.bge_tx_chain[idx] != NULL) {
2791e65bed95SPyun YongHyeon 			bus_dmamap_sync(sc->bge_cdata.bge_mtag,
2792e65bed95SPyun YongHyeon 			    sc->bge_cdata.bge_tx_dmamap[idx],
2793e65bed95SPyun YongHyeon 			    BUS_DMASYNC_POSTWRITE);
2794f41ac2beSBill Paul 			bus_dmamap_unload(sc->bge_cdata.bge_mtag,
2795f41ac2beSBill Paul 			    sc->bge_cdata.bge_tx_dmamap[idx]);
2796e65bed95SPyun YongHyeon 			m_freem(sc->bge_cdata.bge_tx_chain[idx]);
2797e65bed95SPyun YongHyeon 			sc->bge_cdata.bge_tx_chain[idx] = NULL;
279895d67482SBill Paul 		}
279995d67482SBill Paul 		sc->bge_txcnt--;
280095d67482SBill Paul 		BGE_INC(sc->bge_tx_saved_considx, BGE_TX_RING_CNT);
2801b74e67fbSGleb Smirnoff 		sc->bge_timer = 0;
280295d67482SBill Paul 	}
280395d67482SBill Paul 
280495d67482SBill Paul 	if (cur_tx != NULL)
280513f4c340SRobert Watson 		ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
280695d67482SBill Paul }
280795d67482SBill Paul 
280875719184SGleb Smirnoff #ifdef DEVICE_POLLING
280975719184SGleb Smirnoff static void
281075719184SGleb Smirnoff bge_poll(struct ifnet *ifp, enum poll_cmd cmd, int count)
281175719184SGleb Smirnoff {
281275719184SGleb Smirnoff 	struct bge_softc *sc = ifp->if_softc;
2813366454f2SOleg Bulyzhin 	uint32_t statusword;
281475719184SGleb Smirnoff 
28153f74909aSGleb Smirnoff 	BGE_LOCK(sc);
28163f74909aSGleb Smirnoff 	if (!(ifp->if_drv_flags & IFF_DRV_RUNNING)) {
28173f74909aSGleb Smirnoff 		BGE_UNLOCK(sc);
28183f74909aSGleb Smirnoff 		return;
28193f74909aSGleb Smirnoff 	}
282075719184SGleb Smirnoff 
2821dab5cd05SOleg Bulyzhin 	bus_dmamap_sync(sc->bge_cdata.bge_status_tag,
2822e65bed95SPyun YongHyeon 	    sc->bge_cdata.bge_status_map, BUS_DMASYNC_POSTREAD);
2823dab5cd05SOleg Bulyzhin 
28243f74909aSGleb Smirnoff 	statusword = atomic_readandclear_32(
28253f74909aSGleb Smirnoff 	    &sc->bge_ldata.bge_status_block->bge_status);
2826dab5cd05SOleg Bulyzhin 
2827dab5cd05SOleg Bulyzhin 	bus_dmamap_sync(sc->bge_cdata.bge_status_tag,
2828e65bed95SPyun YongHyeon 	    sc->bge_cdata.bge_status_map, BUS_DMASYNC_PREREAD);
2829366454f2SOleg Bulyzhin 
2830366454f2SOleg Bulyzhin 	/* Note link event. It will be processed by POLL_AND_CHECK_STATUS cmd */
2831366454f2SOleg Bulyzhin 	if (statusword & BGE_STATFLAG_LINKSTATE_CHANGED)
2832366454f2SOleg Bulyzhin 		sc->bge_link_evt++;
2833366454f2SOleg Bulyzhin 
2834366454f2SOleg Bulyzhin 	if (cmd == POLL_AND_CHECK_STATUS)
2835366454f2SOleg Bulyzhin 		if ((sc->bge_asicrev == BGE_ASICREV_BCM5700 &&
28364c0da0ffSGleb Smirnoff 		    sc->bge_chipid != BGE_CHIPID_BCM5700_B2) ||
2837652ae483SGleb Smirnoff 		    sc->bge_link_evt || (sc->bge_flags & BGE_FLAG_TBI))
2838366454f2SOleg Bulyzhin 			bge_link_upd(sc);
2839366454f2SOleg Bulyzhin 
2840366454f2SOleg Bulyzhin 	sc->rxcycles = count;
2841366454f2SOleg Bulyzhin 	bge_rxeof(sc);
2842366454f2SOleg Bulyzhin 	bge_txeof(sc);
2843366454f2SOleg Bulyzhin 	if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
2844366454f2SOleg Bulyzhin 		bge_start_locked(ifp);
28453f74909aSGleb Smirnoff 
28463f74909aSGleb Smirnoff 	BGE_UNLOCK(sc);
284775719184SGleb Smirnoff }
284875719184SGleb Smirnoff #endif /* DEVICE_POLLING */
284975719184SGleb Smirnoff 
285095d67482SBill Paul static void
28513f74909aSGleb Smirnoff bge_intr(void *xsc)
285295d67482SBill Paul {
285395d67482SBill Paul 	struct bge_softc *sc;
285495d67482SBill Paul 	struct ifnet *ifp;
2855dab5cd05SOleg Bulyzhin 	uint32_t statusword;
285695d67482SBill Paul 
285795d67482SBill Paul 	sc = xsc;
2858f41ac2beSBill Paul 
28590f9bd73bSSam Leffler 	BGE_LOCK(sc);
28600f9bd73bSSam Leffler 
2861dab5cd05SOleg Bulyzhin 	ifp = sc->bge_ifp;
2862dab5cd05SOleg Bulyzhin 
286375719184SGleb Smirnoff #ifdef DEVICE_POLLING
286475719184SGleb Smirnoff 	if (ifp->if_capenable & IFCAP_POLLING) {
286575719184SGleb Smirnoff 		BGE_UNLOCK(sc);
286675719184SGleb Smirnoff 		return;
286775719184SGleb Smirnoff 	}
286875719184SGleb Smirnoff #endif
286975719184SGleb Smirnoff 
2870f30cbfc6SScott Long 	/*
2871f30cbfc6SScott Long 	 * Do the mandatory PCI flush as well as get the link status.
2872f30cbfc6SScott Long 	 */
2873f30cbfc6SScott Long 	statusword = CSR_READ_4(sc, BGE_MAC_STS) & BGE_MACSTAT_LINK_CHANGED;
2874f41ac2beSBill Paul 
287595d67482SBill Paul 	/* Ack interrupt and stop others from occuring. */
287695d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_IRQ0_LO, 1);
287795d67482SBill Paul 
2878f30cbfc6SScott Long 	/* Make sure the descriptor ring indexes are coherent. */
2879f30cbfc6SScott Long 	bus_dmamap_sync(sc->bge_cdata.bge_status_tag,
2880f30cbfc6SScott Long 	    sc->bge_cdata.bge_status_map, BUS_DMASYNC_POSTREAD);
2881f30cbfc6SScott Long 	bus_dmamap_sync(sc->bge_cdata.bge_status_tag,
2882f30cbfc6SScott Long 	    sc->bge_cdata.bge_status_map, BUS_DMASYNC_PREREAD);
2883f30cbfc6SScott Long 
28841f313773SOleg Bulyzhin 	if ((sc->bge_asicrev == BGE_ASICREV_BCM5700 &&
28854c0da0ffSGleb Smirnoff 	    sc->bge_chipid != BGE_CHIPID_BCM5700_B2) ||
2886f30cbfc6SScott Long 	    statusword || sc->bge_link_evt)
2887dab5cd05SOleg Bulyzhin 		bge_link_upd(sc);
288895d67482SBill Paul 
288913f4c340SRobert Watson 	if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
28903f74909aSGleb Smirnoff 		/* Check RX return ring producer/consumer. */
289195d67482SBill Paul 		bge_rxeof(sc);
289295d67482SBill Paul 
28933f74909aSGleb Smirnoff 		/* Check TX ring producer/consumer. */
289495d67482SBill Paul 		bge_txeof(sc);
289595d67482SBill Paul 	}
289695d67482SBill Paul 
289795d67482SBill Paul 	/* Re-enable interrupts. */
289895d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_IRQ0_LO, 0);
289995d67482SBill Paul 
290013f4c340SRobert Watson 	if (ifp->if_drv_flags & IFF_DRV_RUNNING &&
290113f4c340SRobert Watson 	    !IFQ_DRV_IS_EMPTY(&ifp->if_snd))
29020f9bd73bSSam Leffler 		bge_start_locked(ifp);
29030f9bd73bSSam Leffler 
29040f9bd73bSSam Leffler 	BGE_UNLOCK(sc);
290595d67482SBill Paul }
290695d67482SBill Paul 
290795d67482SBill Paul static void
29088cb1383cSDoug Ambrisko bge_asf_driver_up(struct bge_softc *sc)
29098cb1383cSDoug Ambrisko {
29108cb1383cSDoug Ambrisko 	if (sc->bge_asf_mode & ASF_STACKUP) {
29118cb1383cSDoug Ambrisko 		/* Send ASF heartbeat aprox. every 2s */
29128cb1383cSDoug Ambrisko 		if (sc->bge_asf_count)
29138cb1383cSDoug Ambrisko 			sc->bge_asf_count --;
29148cb1383cSDoug Ambrisko 		else {
29158cb1383cSDoug Ambrisko 			sc->bge_asf_count = 5;
29168cb1383cSDoug Ambrisko 			bge_writemem_ind(sc, BGE_SOFTWARE_GENCOMM_FW,
29178cb1383cSDoug Ambrisko 			    BGE_FW_DRV_ALIVE);
29188cb1383cSDoug Ambrisko 			bge_writemem_ind(sc, BGE_SOFTWARE_GENNCOMM_FW_LEN, 4);
29198cb1383cSDoug Ambrisko 			bge_writemem_ind(sc, BGE_SOFTWARE_GENNCOMM_FW_DATA, 3);
29208cb1383cSDoug Ambrisko 			CSR_WRITE_4(sc, BGE_CPU_EVENT,
29218cb1383cSDoug Ambrisko 			    CSR_READ_4(sc, BGE_CPU_EVENT) != (1 << 14));
29228cb1383cSDoug Ambrisko 		}
29238cb1383cSDoug Ambrisko 	}
29248cb1383cSDoug Ambrisko }
29258cb1383cSDoug Ambrisko 
29268cb1383cSDoug Ambrisko static void
2927b74e67fbSGleb Smirnoff bge_tick(void *xsc)
29280f9bd73bSSam Leffler {
2929b74e67fbSGleb Smirnoff 	struct bge_softc *sc = xsc;
293095d67482SBill Paul 	struct mii_data *mii = NULL;
293195d67482SBill Paul 
29320f9bd73bSSam Leffler 	BGE_LOCK_ASSERT(sc);
293395d67482SBill Paul 
29347ee00338SJung-uk Kim 	if (BGE_IS_5705_PLUS(sc))
29350434d1b8SBill Paul 		bge_stats_update_regs(sc);
29360434d1b8SBill Paul 	else
293795d67482SBill Paul 		bge_stats_update(sc);
293895d67482SBill Paul 
2939652ae483SGleb Smirnoff 	if ((sc->bge_flags & BGE_FLAG_TBI) == 0) {
294095d67482SBill Paul 		mii = device_get_softc(sc->bge_miibus);
29418cb1383cSDoug Ambrisko 		/* Don't mess with the PHY in IPMI/ASF mode */
29428cb1383cSDoug Ambrisko 		if (!((sc->bge_asf_mode & ASF_STACKUP) && (sc->bge_link)))
294395d67482SBill Paul 			mii_tick(mii);
29447b97099dSOleg Bulyzhin 	} else {
29457b97099dSOleg Bulyzhin 		/*
29467b97099dSOleg Bulyzhin 		 * Since in TBI mode auto-polling can't be used we should poll
29477b97099dSOleg Bulyzhin 		 * link status manually. Here we register pending link event
29487b97099dSOleg Bulyzhin 		 * and trigger interrupt.
29497b97099dSOleg Bulyzhin 		 */
29507b97099dSOleg Bulyzhin #ifdef DEVICE_POLLING
29513f74909aSGleb Smirnoff 		/* In polling mode we poll link state in bge_poll(). */
29527b97099dSOleg Bulyzhin 		if (!(sc->bge_ifp->if_capenable & IFCAP_POLLING))
29537b97099dSOleg Bulyzhin #endif
29547b97099dSOleg Bulyzhin 		{
29557b97099dSOleg Bulyzhin 		sc->bge_link_evt++;
29567b97099dSOleg Bulyzhin 		BGE_SETBIT(sc, BGE_MISC_LOCAL_CTL, BGE_MLC_INTR_SET);
29577b97099dSOleg Bulyzhin 		}
2958dab5cd05SOleg Bulyzhin 	}
295995d67482SBill Paul 
29608cb1383cSDoug Ambrisko 	bge_asf_driver_up(sc);
2961b74e67fbSGleb Smirnoff 	bge_watchdog(sc);
29628cb1383cSDoug Ambrisko 
2963dab5cd05SOleg Bulyzhin 	callout_reset(&sc->bge_stat_ch, hz, bge_tick, sc);
296495d67482SBill Paul }
296595d67482SBill Paul 
296695d67482SBill Paul static void
29673f74909aSGleb Smirnoff bge_stats_update_regs(struct bge_softc *sc)
29680434d1b8SBill Paul {
29693f74909aSGleb Smirnoff 	struct ifnet *ifp;
29707e6e2507SJung-uk Kim 	uint32_t cnt;	/* current register value */
29710434d1b8SBill Paul 
2972fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp;
29730434d1b8SBill Paul 
29747e6e2507SJung-uk Kim 	cnt = CSR_READ_4(sc, BGE_MAC_STATS +
29757e6e2507SJung-uk Kim 	    offsetof(struct bge_mac_stats_regs, etherStatsCollisions));
29767e6e2507SJung-uk Kim 	ifp->if_collisions += (u_long)(cnt - sc->bge_tx_collisions);
29776fb34dd2SOleg Bulyzhin 	sc->bge_tx_collisions = cnt;
29787e6e2507SJung-uk Kim 
29797e6e2507SJung-uk Kim 	cnt = CSR_READ_4(sc, BGE_RXLP_LOCSTAT_IFIN_DROPS);
29807e6e2507SJung-uk Kim 	ifp->if_ierrors += (u_long)(cnt - sc->bge_rx_discards);
29817e6e2507SJung-uk Kim 	sc->bge_rx_discards = cnt;
29820434d1b8SBill Paul }
29830434d1b8SBill Paul 
29840434d1b8SBill Paul static void
29853f74909aSGleb Smirnoff bge_stats_update(struct bge_softc *sc)
298695d67482SBill Paul {
298795d67482SBill Paul 	struct ifnet *ifp;
2988e907febfSPyun YongHyeon 	bus_size_t stats;
29897e6e2507SJung-uk Kim 	uint32_t cnt;	/* current register value */
299095d67482SBill Paul 
2991fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp;
299295d67482SBill Paul 
2993e907febfSPyun YongHyeon 	stats = BGE_MEMWIN_START + BGE_STATS_BLOCK;
2994e907febfSPyun YongHyeon 
2995e907febfSPyun YongHyeon #define READ_STAT(sc, stats, stat) \
2996e907febfSPyun YongHyeon 	CSR_READ_4(sc, stats + offsetof(struct bge_stats, stat))
299795d67482SBill Paul 
29986fb34dd2SOleg Bulyzhin 	cnt = READ_STAT(sc, stats,
29996fb34dd2SOleg Bulyzhin 	    txstats.dot3StatsSingleCollisionFrames.bge_addr_lo);
30006fb34dd2SOleg Bulyzhin 	cnt += READ_STAT(sc, stats,
30016fb34dd2SOleg Bulyzhin 	    txstats.dot3StatsMultipleCollisionFrames.bge_addr_lo);
30026fb34dd2SOleg Bulyzhin 	cnt += READ_STAT(sc, stats,
30036fb34dd2SOleg Bulyzhin 	    txstats.dot3StatsExcessiveCollisions.bge_addr_lo);
30046fb34dd2SOleg Bulyzhin 	cnt += READ_STAT(sc, stats,
30056fb34dd2SOleg Bulyzhin 		txstats.dot3StatsLateCollisions.bge_addr_lo);
30067e6e2507SJung-uk Kim 	ifp->if_collisions += (u_long)(cnt - sc->bge_tx_collisions);
30076fb34dd2SOleg Bulyzhin 	sc->bge_tx_collisions = cnt;
30086fb34dd2SOleg Bulyzhin 
30096fb34dd2SOleg Bulyzhin 	cnt = READ_STAT(sc, stats, ifInDiscards.bge_addr_lo);
30107e6e2507SJung-uk Kim 	ifp->if_ierrors += (u_long)(cnt - sc->bge_rx_discards);
30116fb34dd2SOleg Bulyzhin 	sc->bge_rx_discards = cnt;
30126fb34dd2SOleg Bulyzhin 
30136fb34dd2SOleg Bulyzhin 	cnt = READ_STAT(sc, stats, txstats.ifOutDiscards.bge_addr_lo);
30147e6e2507SJung-uk Kim 	ifp->if_oerrors += (u_long)(cnt - sc->bge_tx_discards);
30156fb34dd2SOleg Bulyzhin 	sc->bge_tx_discards = cnt;
301695d67482SBill Paul 
3017e907febfSPyun YongHyeon #undef READ_STAT
301895d67482SBill Paul }
301995d67482SBill Paul 
302095d67482SBill Paul /*
3021d375e524SGleb Smirnoff  * Pad outbound frame to ETHER_MIN_NOPAD for an unusual reason.
3022d375e524SGleb Smirnoff  * The bge hardware will pad out Tx runts to ETHER_MIN_NOPAD,
3023d375e524SGleb Smirnoff  * but when such padded frames employ the bge IP/TCP checksum offload,
3024d375e524SGleb Smirnoff  * the hardware checksum assist gives incorrect results (possibly
3025d375e524SGleb Smirnoff  * from incorporating its own padding into the UDP/TCP checksum; who knows).
3026d375e524SGleb Smirnoff  * If we pad such runts with zeros, the onboard checksum comes out correct.
3027d375e524SGleb Smirnoff  */
3028d375e524SGleb Smirnoff static __inline int
3029d375e524SGleb Smirnoff bge_cksum_pad(struct mbuf *m)
3030d375e524SGleb Smirnoff {
3031d375e524SGleb Smirnoff 	int padlen = ETHER_MIN_NOPAD - m->m_pkthdr.len;
3032d375e524SGleb Smirnoff 	struct mbuf *last;
3033d375e524SGleb Smirnoff 
3034d375e524SGleb Smirnoff 	/* If there's only the packet-header and we can pad there, use it. */
3035d375e524SGleb Smirnoff 	if (m->m_pkthdr.len == m->m_len && M_WRITABLE(m) &&
3036d375e524SGleb Smirnoff 	    M_TRAILINGSPACE(m) >= padlen) {
3037d375e524SGleb Smirnoff 		last = m;
3038d375e524SGleb Smirnoff 	} else {
3039d375e524SGleb Smirnoff 		/*
3040d375e524SGleb Smirnoff 		 * Walk packet chain to find last mbuf. We will either
3041d375e524SGleb Smirnoff 		 * pad there, or append a new mbuf and pad it.
3042d375e524SGleb Smirnoff 		 */
3043d375e524SGleb Smirnoff 		for (last = m; last->m_next != NULL; last = last->m_next);
3044d375e524SGleb Smirnoff 		if (!(M_WRITABLE(last) && M_TRAILINGSPACE(last) >= padlen)) {
3045d375e524SGleb Smirnoff 			/* Allocate new empty mbuf, pad it. Compact later. */
3046d375e524SGleb Smirnoff 			struct mbuf *n;
3047d375e524SGleb Smirnoff 
3048d375e524SGleb Smirnoff 			MGET(n, M_DONTWAIT, MT_DATA);
3049d375e524SGleb Smirnoff 			if (n == NULL)
3050d375e524SGleb Smirnoff 				return (ENOBUFS);
3051d375e524SGleb Smirnoff 			n->m_len = 0;
3052d375e524SGleb Smirnoff 			last->m_next = n;
3053d375e524SGleb Smirnoff 			last = n;
3054d375e524SGleb Smirnoff 		}
3055d375e524SGleb Smirnoff 	}
3056d375e524SGleb Smirnoff 
3057d375e524SGleb Smirnoff 	/* Now zero the pad area, to avoid the bge cksum-assist bug. */
3058d375e524SGleb Smirnoff 	memset(mtod(last, caddr_t) + last->m_len, 0, padlen);
3059d375e524SGleb Smirnoff 	last->m_len += padlen;
3060d375e524SGleb Smirnoff 	m->m_pkthdr.len += padlen;
3061d375e524SGleb Smirnoff 
3062d375e524SGleb Smirnoff 	return (0);
3063d375e524SGleb Smirnoff }
3064d375e524SGleb Smirnoff 
3065d375e524SGleb Smirnoff /*
306695d67482SBill Paul  * Encapsulate an mbuf chain in the tx ring  by coupling the mbuf data
306795d67482SBill Paul  * pointers to descriptors.
306895d67482SBill Paul  */
306995d67482SBill Paul static int
3070676ad2c9SGleb Smirnoff bge_encap(struct bge_softc *sc, struct mbuf **m_head, uint32_t *txidx)
307195d67482SBill Paul {
30727e27542aSGleb Smirnoff 	bus_dma_segment_t	segs[BGE_NSEG_NEW];
3073f41ac2beSBill Paul 	bus_dmamap_t		map;
3074676ad2c9SGleb Smirnoff 	struct bge_tx_bd	*d;
3075676ad2c9SGleb Smirnoff 	struct mbuf		*m = *m_head;
30767e27542aSGleb Smirnoff 	uint32_t		idx = *txidx;
3077676ad2c9SGleb Smirnoff 	uint16_t		csum_flags;
30787e27542aSGleb Smirnoff 	int			nsegs, i, error;
307995d67482SBill Paul 
30806909dc43SGleb Smirnoff 	csum_flags = 0;
30816909dc43SGleb Smirnoff 	if (m->m_pkthdr.csum_flags) {
30826909dc43SGleb Smirnoff 		if (m->m_pkthdr.csum_flags & CSUM_IP)
30836909dc43SGleb Smirnoff 			csum_flags |= BGE_TXBDFLAG_IP_CSUM;
30846909dc43SGleb Smirnoff 		if (m->m_pkthdr.csum_flags & (CSUM_TCP | CSUM_UDP)) {
30856909dc43SGleb Smirnoff 			csum_flags |= BGE_TXBDFLAG_TCP_UDP_CSUM;
30866909dc43SGleb Smirnoff 			if (m->m_pkthdr.len < ETHER_MIN_NOPAD &&
30876909dc43SGleb Smirnoff 			    (error = bge_cksum_pad(m)) != 0) {
30886909dc43SGleb Smirnoff 				m_freem(m);
30896909dc43SGleb Smirnoff 				*m_head = NULL;
30906909dc43SGleb Smirnoff 				return (error);
30916909dc43SGleb Smirnoff 			}
30926909dc43SGleb Smirnoff 		}
30936909dc43SGleb Smirnoff 		if (m->m_flags & M_LASTFRAG)
30946909dc43SGleb Smirnoff 			csum_flags |= BGE_TXBDFLAG_IP_FRAG_END;
30956909dc43SGleb Smirnoff 		else if (m->m_flags & M_FRAG)
30966909dc43SGleb Smirnoff 			csum_flags |= BGE_TXBDFLAG_IP_FRAG;
30976909dc43SGleb Smirnoff 	}
30986909dc43SGleb Smirnoff 
30997e27542aSGleb Smirnoff 	map = sc->bge_cdata.bge_tx_dmamap[idx];
3100676ad2c9SGleb Smirnoff 	error = bus_dmamap_load_mbuf_sg(sc->bge_cdata.bge_mtag, map, m, segs,
3101676ad2c9SGleb Smirnoff 	    &nsegs, BUS_DMA_NOWAIT);
31027e27542aSGleb Smirnoff 	if (error == EFBIG) {
3103676ad2c9SGleb Smirnoff 		m = m_defrag(m, M_DONTWAIT);
3104676ad2c9SGleb Smirnoff 		if (m == NULL) {
3105676ad2c9SGleb Smirnoff 			m_freem(*m_head);
3106676ad2c9SGleb Smirnoff 			*m_head = NULL;
31077e27542aSGleb Smirnoff 			return (ENOBUFS);
31087e27542aSGleb Smirnoff 		}
3109676ad2c9SGleb Smirnoff 		*m_head = m;
3110676ad2c9SGleb Smirnoff 		error = bus_dmamap_load_mbuf_sg(sc->bge_cdata.bge_mtag, map, m,
3111676ad2c9SGleb Smirnoff 		    segs, &nsegs, BUS_DMA_NOWAIT);
3112676ad2c9SGleb Smirnoff 		if (error) {
3113676ad2c9SGleb Smirnoff 			m_freem(m);
3114676ad2c9SGleb Smirnoff 			*m_head = NULL;
31157e27542aSGleb Smirnoff 			return (error);
31167e27542aSGleb Smirnoff 		}
3117676ad2c9SGleb Smirnoff 	} else if (error != 0)
3118676ad2c9SGleb Smirnoff 		return (error);
31197e27542aSGleb Smirnoff 
312095d67482SBill Paul 	/*
312195d67482SBill Paul 	 * Sanity check: avoid coming within 16 descriptors
312295d67482SBill Paul 	 * of the end of the ring.
312395d67482SBill Paul 	 */
31247e27542aSGleb Smirnoff 	if (nsegs > (BGE_TX_RING_CNT - sc->bge_txcnt - 16)) {
31257e27542aSGleb Smirnoff 		bus_dmamap_unload(sc->bge_cdata.bge_mtag, map);
312695d67482SBill Paul 		return (ENOBUFS);
31277e27542aSGleb Smirnoff 	}
31287e27542aSGleb Smirnoff 
3129e65bed95SPyun YongHyeon 	bus_dmamap_sync(sc->bge_cdata.bge_mtag, map, BUS_DMASYNC_PREWRITE);
3130e65bed95SPyun YongHyeon 
31317e27542aSGleb Smirnoff 	for (i = 0; ; i++) {
31327e27542aSGleb Smirnoff 		d = &sc->bge_ldata.bge_tx_ring[idx];
31337e27542aSGleb Smirnoff 		d->bge_addr.bge_addr_lo = BGE_ADDR_LO(segs[i].ds_addr);
31347e27542aSGleb Smirnoff 		d->bge_addr.bge_addr_hi = BGE_ADDR_HI(segs[i].ds_addr);
31357e27542aSGleb Smirnoff 		d->bge_len = segs[i].ds_len;
31367e27542aSGleb Smirnoff 		d->bge_flags = csum_flags;
31377e27542aSGleb Smirnoff 		if (i == nsegs - 1)
31387e27542aSGleb Smirnoff 			break;
31397e27542aSGleb Smirnoff 		BGE_INC(idx, BGE_TX_RING_CNT);
31407e27542aSGleb Smirnoff 	}
31417e27542aSGleb Smirnoff 
31427e27542aSGleb Smirnoff 	/* Mark the last segment as end of packet... */
31437e27542aSGleb Smirnoff 	d->bge_flags |= BGE_TXBDFLAG_END;
3144676ad2c9SGleb Smirnoff 
31457e27542aSGleb Smirnoff 	/* ... and put VLAN tag into first segment.  */
31467e27542aSGleb Smirnoff 	d = &sc->bge_ldata.bge_tx_ring[*txidx];
314778ba57b9SAndre Oppermann 	if (m->m_flags & M_VLANTAG) {
31487e27542aSGleb Smirnoff 		d->bge_flags |= BGE_TXBDFLAG_VLAN_TAG;
314978ba57b9SAndre Oppermann 		d->bge_vlan_tag = m->m_pkthdr.ether_vtag;
31507e27542aSGleb Smirnoff 	} else
31517e27542aSGleb Smirnoff 		d->bge_vlan_tag = 0;
3152f41ac2beSBill Paul 
3153f41ac2beSBill Paul 	/*
3154f41ac2beSBill Paul 	 * Insure that the map for this transmission
3155f41ac2beSBill Paul 	 * is placed at the array index of the last descriptor
3156f41ac2beSBill Paul 	 * in this chain.
3157f41ac2beSBill Paul 	 */
31587e27542aSGleb Smirnoff 	sc->bge_cdata.bge_tx_dmamap[*txidx] = sc->bge_cdata.bge_tx_dmamap[idx];
31597e27542aSGleb Smirnoff 	sc->bge_cdata.bge_tx_dmamap[idx] = map;
3160676ad2c9SGleb Smirnoff 	sc->bge_cdata.bge_tx_chain[idx] = m;
31617e27542aSGleb Smirnoff 	sc->bge_txcnt += nsegs;
316295d67482SBill Paul 
31637e27542aSGleb Smirnoff 	BGE_INC(idx, BGE_TX_RING_CNT);
31647e27542aSGleb Smirnoff 	*txidx = idx;
316595d67482SBill Paul 
316695d67482SBill Paul 	return (0);
316795d67482SBill Paul }
316895d67482SBill Paul 
316995d67482SBill Paul /*
317095d67482SBill Paul  * Main transmit routine. To avoid having to do mbuf copies, we put pointers
317195d67482SBill Paul  * to the mbuf data regions directly in the transmit descriptors.
317295d67482SBill Paul  */
317395d67482SBill Paul static void
31743f74909aSGleb Smirnoff bge_start_locked(struct ifnet *ifp)
317595d67482SBill Paul {
317695d67482SBill Paul 	struct bge_softc *sc;
317795d67482SBill Paul 	struct mbuf *m_head = NULL;
317814bbd30fSGleb Smirnoff 	uint32_t prodidx;
3179303a718cSDag-Erling Smørgrav 	int count = 0;
318095d67482SBill Paul 
318195d67482SBill Paul 	sc = ifp->if_softc;
318295d67482SBill Paul 
3183dab5cd05SOleg Bulyzhin 	if (!sc->bge_link || IFQ_DRV_IS_EMPTY(&ifp->if_snd))
318495d67482SBill Paul 		return;
318595d67482SBill Paul 
318614bbd30fSGleb Smirnoff 	prodidx = sc->bge_tx_prodidx;
318795d67482SBill Paul 
318895d67482SBill Paul 	while(sc->bge_cdata.bge_tx_chain[prodidx] == NULL) {
31894d665c4dSDag-Erling Smørgrav 		IFQ_DRV_DEQUEUE(&ifp->if_snd, m_head);
319095d67482SBill Paul 		if (m_head == NULL)
319195d67482SBill Paul 			break;
319295d67482SBill Paul 
319395d67482SBill Paul 		/*
319495d67482SBill Paul 		 * XXX
3195b874fdd4SYaroslav Tykhiy 		 * The code inside the if() block is never reached since we
3196b874fdd4SYaroslav Tykhiy 		 * must mark CSUM_IP_FRAGS in our if_hwassist to start getting
3197b874fdd4SYaroslav Tykhiy 		 * requests to checksum TCP/UDP in a fragmented packet.
3198b874fdd4SYaroslav Tykhiy 		 *
3199b874fdd4SYaroslav Tykhiy 		 * XXX
320095d67482SBill Paul 		 * safety overkill.  If this is a fragmented packet chain
320195d67482SBill Paul 		 * with delayed TCP/UDP checksums, then only encapsulate
320295d67482SBill Paul 		 * it if we have enough descriptors to handle the entire
320395d67482SBill Paul 		 * chain at once.
320495d67482SBill Paul 		 * (paranoia -- may not actually be needed)
320595d67482SBill Paul 		 */
320695d67482SBill Paul 		if (m_head->m_flags & M_FIRSTFRAG &&
320795d67482SBill Paul 		    m_head->m_pkthdr.csum_flags & (CSUM_DELAY_DATA)) {
320895d67482SBill Paul 			if ((BGE_TX_RING_CNT - sc->bge_txcnt) <
320995d67482SBill Paul 			    m_head->m_pkthdr.csum_data + 16) {
32104d665c4dSDag-Erling Smørgrav 				IFQ_DRV_PREPEND(&ifp->if_snd, m_head);
321113f4c340SRobert Watson 				ifp->if_drv_flags |= IFF_DRV_OACTIVE;
321295d67482SBill Paul 				break;
321395d67482SBill Paul 			}
321495d67482SBill Paul 		}
321595d67482SBill Paul 
321695d67482SBill Paul 		/*
321795d67482SBill Paul 		 * Pack the data into the transmit ring. If we
321895d67482SBill Paul 		 * don't have room, set the OACTIVE flag and wait
321995d67482SBill Paul 		 * for the NIC to drain the ring.
322095d67482SBill Paul 		 */
3221676ad2c9SGleb Smirnoff 		if (bge_encap(sc, &m_head, &prodidx)) {
3222676ad2c9SGleb Smirnoff 			if (m_head == NULL)
3223676ad2c9SGleb Smirnoff 				break;
32244d665c4dSDag-Erling Smørgrav 			IFQ_DRV_PREPEND(&ifp->if_snd, m_head);
322513f4c340SRobert Watson 			ifp->if_drv_flags |= IFF_DRV_OACTIVE;
322695d67482SBill Paul 			break;
322795d67482SBill Paul 		}
3228303a718cSDag-Erling Smørgrav 		++count;
322995d67482SBill Paul 
323095d67482SBill Paul 		/*
323195d67482SBill Paul 		 * If there's a BPF listener, bounce a copy of this frame
323295d67482SBill Paul 		 * to him.
323395d67482SBill Paul 		 */
3234673d9191SSam Leffler 		BPF_MTAP(ifp, m_head);
323595d67482SBill Paul 	}
323695d67482SBill Paul 
32373f74909aSGleb Smirnoff 	if (count == 0)
32383f74909aSGleb Smirnoff 		/* No packets were dequeued. */
3239303a718cSDag-Erling Smørgrav 		return;
3240303a718cSDag-Erling Smørgrav 
32413f74909aSGleb Smirnoff 	/* Transmit. */
324295d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_TX_HOST_PROD0_LO, prodidx);
32433927098fSPaul Saab 	/* 5700 b2 errata */
3244e0ced696SPaul Saab 	if (sc->bge_chiprev == BGE_CHIPREV_5700_BX)
32453927098fSPaul Saab 		CSR_WRITE_4(sc, BGE_MBX_TX_HOST_PROD0_LO, prodidx);
324695d67482SBill Paul 
324714bbd30fSGleb Smirnoff 	sc->bge_tx_prodidx = prodidx;
324814bbd30fSGleb Smirnoff 
324995d67482SBill Paul 	/*
325095d67482SBill Paul 	 * Set a timeout in case the chip goes out to lunch.
325195d67482SBill Paul 	 */
3252b74e67fbSGleb Smirnoff 	sc->bge_timer = 5;
325395d67482SBill Paul }
325495d67482SBill Paul 
32550f9bd73bSSam Leffler /*
32560f9bd73bSSam Leffler  * Main transmit routine. To avoid having to do mbuf copies, we put pointers
32570f9bd73bSSam Leffler  * to the mbuf data regions directly in the transmit descriptors.
32580f9bd73bSSam Leffler  */
325995d67482SBill Paul static void
32603f74909aSGleb Smirnoff bge_start(struct ifnet *ifp)
326195d67482SBill Paul {
32620f9bd73bSSam Leffler 	struct bge_softc *sc;
32630f9bd73bSSam Leffler 
32640f9bd73bSSam Leffler 	sc = ifp->if_softc;
32650f9bd73bSSam Leffler 	BGE_LOCK(sc);
32660f9bd73bSSam Leffler 	bge_start_locked(ifp);
32670f9bd73bSSam Leffler 	BGE_UNLOCK(sc);
32680f9bd73bSSam Leffler }
32690f9bd73bSSam Leffler 
32700f9bd73bSSam Leffler static void
32713f74909aSGleb Smirnoff bge_init_locked(struct bge_softc *sc)
32720f9bd73bSSam Leffler {
327395d67482SBill Paul 	struct ifnet *ifp;
32743f74909aSGleb Smirnoff 	uint16_t *m;
327595d67482SBill Paul 
32760f9bd73bSSam Leffler 	BGE_LOCK_ASSERT(sc);
327795d67482SBill Paul 
3278fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp;
327995d67482SBill Paul 
328013f4c340SRobert Watson 	if (ifp->if_drv_flags & IFF_DRV_RUNNING)
328195d67482SBill Paul 		return;
328295d67482SBill Paul 
328395d67482SBill Paul 	/* Cancel pending I/O and flush buffers. */
328495d67482SBill Paul 	bge_stop(sc);
32858cb1383cSDoug Ambrisko 
32868cb1383cSDoug Ambrisko 	bge_stop_fw(sc);
32878cb1383cSDoug Ambrisko 	bge_sig_pre_reset(sc, BGE_RESET_START);
328895d67482SBill Paul 	bge_reset(sc);
32898cb1383cSDoug Ambrisko 	bge_sig_legacy(sc, BGE_RESET_START);
32908cb1383cSDoug Ambrisko 	bge_sig_post_reset(sc, BGE_RESET_START);
32918cb1383cSDoug Ambrisko 
329295d67482SBill Paul 	bge_chipinit(sc);
329395d67482SBill Paul 
329495d67482SBill Paul 	/*
329595d67482SBill Paul 	 * Init the various state machines, ring
329695d67482SBill Paul 	 * control blocks and firmware.
329795d67482SBill Paul 	 */
329895d67482SBill Paul 	if (bge_blockinit(sc)) {
3299fe806fdaSPyun YongHyeon 		device_printf(sc->bge_dev, "initialization failure\n");
330095d67482SBill Paul 		return;
330195d67482SBill Paul 	}
330295d67482SBill Paul 
3303fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp;
330495d67482SBill Paul 
330595d67482SBill Paul 	/* Specify MTU. */
330695d67482SBill Paul 	CSR_WRITE_4(sc, BGE_RX_MTU, ifp->if_mtu +
3307859c6c7dSBill Paul 	    ETHER_HDR_LEN + ETHER_CRC_LEN + ETHER_VLAN_ENCAP_LEN);
330895d67482SBill Paul 
330995d67482SBill Paul 	/* Load our MAC address. */
33103f74909aSGleb Smirnoff 	m = (uint16_t *)IF_LLADDR(sc->bge_ifp);
331195d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MAC_ADDR1_LO, htons(m[0]));
331295d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MAC_ADDR1_HI, (htons(m[1]) << 16) | htons(m[2]));
331395d67482SBill Paul 
33143e9b1bcaSJung-uk Kim 	/* Program promiscuous mode. */
33153e9b1bcaSJung-uk Kim 	bge_setpromisc(sc);
331695d67482SBill Paul 
331795d67482SBill Paul 	/* Program multicast filter. */
331895d67482SBill Paul 	bge_setmulti(sc);
331995d67482SBill Paul 
332095d67482SBill Paul 	/* Init RX ring. */
332195d67482SBill Paul 	bge_init_rx_ring_std(sc);
332295d67482SBill Paul 
33230434d1b8SBill Paul 	/*
33240434d1b8SBill Paul 	 * Workaround for a bug in 5705 ASIC rev A0. Poll the NIC's
33250434d1b8SBill Paul 	 * memory to insure that the chip has in fact read the first
33260434d1b8SBill Paul 	 * entry of the ring.
33270434d1b8SBill Paul 	 */
33280434d1b8SBill Paul 	if (sc->bge_chipid == BGE_CHIPID_BCM5705_A0) {
33293f74909aSGleb Smirnoff 		uint32_t		v, i;
33300434d1b8SBill Paul 		for (i = 0; i < 10; i++) {
33310434d1b8SBill Paul 			DELAY(20);
33320434d1b8SBill Paul 			v = bge_readmem_ind(sc, BGE_STD_RX_RINGS + 8);
33330434d1b8SBill Paul 			if (v == (MCLBYTES - ETHER_ALIGN))
33340434d1b8SBill Paul 				break;
33350434d1b8SBill Paul 		}
33360434d1b8SBill Paul 		if (i == 10)
3337fe806fdaSPyun YongHyeon 			device_printf (sc->bge_dev,
3338fe806fdaSPyun YongHyeon 			    "5705 A0 chip failed to load RX ring\n");
33390434d1b8SBill Paul 	}
33400434d1b8SBill Paul 
334195d67482SBill Paul 	/* Init jumbo RX ring. */
334295d67482SBill Paul 	if (ifp->if_mtu > (ETHERMTU + ETHER_HDR_LEN + ETHER_CRC_LEN))
334395d67482SBill Paul 		bge_init_rx_ring_jumbo(sc);
334495d67482SBill Paul 
33453f74909aSGleb Smirnoff 	/* Init our RX return ring index. */
334695d67482SBill Paul 	sc->bge_rx_saved_considx = 0;
334795d67482SBill Paul 
33487e6e2507SJung-uk Kim 	/* Init our RX/TX stat counters. */
33497e6e2507SJung-uk Kim 	sc->bge_rx_discards = sc->bge_tx_discards = sc->bge_tx_collisions = 0;
33507e6e2507SJung-uk Kim 
335195d67482SBill Paul 	/* Init TX ring. */
335295d67482SBill Paul 	bge_init_tx_ring(sc);
335395d67482SBill Paul 
33543f74909aSGleb Smirnoff 	/* Turn on transmitter. */
335595d67482SBill Paul 	BGE_SETBIT(sc, BGE_TX_MODE, BGE_TXMODE_ENABLE);
335695d67482SBill Paul 
33573f74909aSGleb Smirnoff 	/* Turn on receiver. */
335895d67482SBill Paul 	BGE_SETBIT(sc, BGE_RX_MODE, BGE_RXMODE_ENABLE);
335995d67482SBill Paul 
336095d67482SBill Paul 	/* Tell firmware we're alive. */
336195d67482SBill Paul 	BGE_SETBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
336295d67482SBill Paul 
336375719184SGleb Smirnoff #ifdef DEVICE_POLLING
336475719184SGleb Smirnoff 	/* Disable interrupts if we are polling. */
336575719184SGleb Smirnoff 	if (ifp->if_capenable & IFCAP_POLLING) {
336675719184SGleb Smirnoff 		BGE_SETBIT(sc, BGE_PCI_MISC_CTL,
336775719184SGleb Smirnoff 		    BGE_PCIMISCCTL_MASK_PCI_INTR);
336875719184SGleb Smirnoff 		CSR_WRITE_4(sc, BGE_MBX_IRQ0_LO, 1);
336975719184SGleb Smirnoff 		CSR_WRITE_4(sc, BGE_HCC_RX_MAX_COAL_BDS_INT, 1);
337075719184SGleb Smirnoff 		CSR_WRITE_4(sc, BGE_HCC_TX_MAX_COAL_BDS_INT, 1);
337175719184SGleb Smirnoff 	} else
337275719184SGleb Smirnoff #endif
337375719184SGleb Smirnoff 
337495d67482SBill Paul 	/* Enable host interrupts. */
337575719184SGleb Smirnoff 	{
337695d67482SBill Paul 	BGE_SETBIT(sc, BGE_PCI_MISC_CTL, BGE_PCIMISCCTL_CLEAR_INTA);
337795d67482SBill Paul 	BGE_CLRBIT(sc, BGE_PCI_MISC_CTL, BGE_PCIMISCCTL_MASK_PCI_INTR);
337895d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_IRQ0_LO, 0);
337975719184SGleb Smirnoff 	}
338095d67482SBill Paul 
338167d5e043SOleg Bulyzhin 	bge_ifmedia_upd_locked(ifp);
338295d67482SBill Paul 
338313f4c340SRobert Watson 	ifp->if_drv_flags |= IFF_DRV_RUNNING;
338413f4c340SRobert Watson 	ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
338595d67482SBill Paul 
33860f9bd73bSSam Leffler 	callout_reset(&sc->bge_stat_ch, hz, bge_tick, sc);
33870f9bd73bSSam Leffler }
33880f9bd73bSSam Leffler 
33890f9bd73bSSam Leffler static void
33903f74909aSGleb Smirnoff bge_init(void *xsc)
33910f9bd73bSSam Leffler {
33920f9bd73bSSam Leffler 	struct bge_softc *sc = xsc;
33930f9bd73bSSam Leffler 
33940f9bd73bSSam Leffler 	BGE_LOCK(sc);
33950f9bd73bSSam Leffler 	bge_init_locked(sc);
33960f9bd73bSSam Leffler 	BGE_UNLOCK(sc);
339795d67482SBill Paul }
339895d67482SBill Paul 
339995d67482SBill Paul /*
340095d67482SBill Paul  * Set media options.
340195d67482SBill Paul  */
340295d67482SBill Paul static int
34033f74909aSGleb Smirnoff bge_ifmedia_upd(struct ifnet *ifp)
340495d67482SBill Paul {
340567d5e043SOleg Bulyzhin 	struct bge_softc *sc = ifp->if_softc;
340667d5e043SOleg Bulyzhin 	int res;
340767d5e043SOleg Bulyzhin 
340867d5e043SOleg Bulyzhin 	BGE_LOCK(sc);
340967d5e043SOleg Bulyzhin 	res = bge_ifmedia_upd_locked(ifp);
341067d5e043SOleg Bulyzhin 	BGE_UNLOCK(sc);
341167d5e043SOleg Bulyzhin 
341267d5e043SOleg Bulyzhin 	return (res);
341367d5e043SOleg Bulyzhin }
341467d5e043SOleg Bulyzhin 
341567d5e043SOleg Bulyzhin static int
341667d5e043SOleg Bulyzhin bge_ifmedia_upd_locked(struct ifnet *ifp)
341767d5e043SOleg Bulyzhin {
341867d5e043SOleg Bulyzhin 	struct bge_softc *sc = ifp->if_softc;
341995d67482SBill Paul 	struct mii_data *mii;
342095d67482SBill Paul 	struct ifmedia *ifm;
342195d67482SBill Paul 
342267d5e043SOleg Bulyzhin 	BGE_LOCK_ASSERT(sc);
342367d5e043SOleg Bulyzhin 
342495d67482SBill Paul 	ifm = &sc->bge_ifmedia;
342595d67482SBill Paul 
342695d67482SBill Paul 	/* If this is a 1000baseX NIC, enable the TBI port. */
3427652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_TBI) {
342895d67482SBill Paul 		if (IFM_TYPE(ifm->ifm_media) != IFM_ETHER)
342995d67482SBill Paul 			return (EINVAL);
343095d67482SBill Paul 		switch(IFM_SUBTYPE(ifm->ifm_media)) {
343195d67482SBill Paul 		case IFM_AUTO:
3432ff50922bSDoug White 			/*
3433ff50922bSDoug White 			 * The BCM5704 ASIC appears to have a special
3434ff50922bSDoug White 			 * mechanism for programming the autoneg
3435ff50922bSDoug White 			 * advertisement registers in TBI mode.
3436ff50922bSDoug White 			 */
3437c4529f41SMichael Reifenberger 			if (bge_fake_autoneg == 0 &&
3438c4529f41SMichael Reifenberger 			    sc->bge_asicrev == BGE_ASICREV_BCM5704) {
3439ff50922bSDoug White 				uint32_t sgdig;
3440ff50922bSDoug White 				CSR_WRITE_4(sc, BGE_TX_TBI_AUTONEG, 0);
3441ff50922bSDoug White 				sgdig = CSR_READ_4(sc, BGE_SGDIG_CFG);
3442ff50922bSDoug White 				sgdig |= BGE_SGDIGCFG_AUTO|
3443ff50922bSDoug White 				    BGE_SGDIGCFG_PAUSE_CAP|
3444ff50922bSDoug White 				    BGE_SGDIGCFG_ASYM_PAUSE;
3445ff50922bSDoug White 				CSR_WRITE_4(sc, BGE_SGDIG_CFG,
3446ff50922bSDoug White 				    sgdig|BGE_SGDIGCFG_SEND);
3447ff50922bSDoug White 				DELAY(5);
3448ff50922bSDoug White 				CSR_WRITE_4(sc, BGE_SGDIG_CFG, sgdig);
3449ff50922bSDoug White 			}
345095d67482SBill Paul 			break;
345195d67482SBill Paul 		case IFM_1000_SX:
345295d67482SBill Paul 			if ((ifm->ifm_media & IFM_GMASK) == IFM_FDX) {
345395d67482SBill Paul 				BGE_CLRBIT(sc, BGE_MAC_MODE,
345495d67482SBill Paul 				    BGE_MACMODE_HALF_DUPLEX);
345595d67482SBill Paul 			} else {
345695d67482SBill Paul 				BGE_SETBIT(sc, BGE_MAC_MODE,
345795d67482SBill Paul 				    BGE_MACMODE_HALF_DUPLEX);
345895d67482SBill Paul 			}
345995d67482SBill Paul 			break;
346095d67482SBill Paul 		default:
346195d67482SBill Paul 			return (EINVAL);
346295d67482SBill Paul 		}
346395d67482SBill Paul 		return (0);
346495d67482SBill Paul 	}
346595d67482SBill Paul 
34661493e883SOleg Bulyzhin 	sc->bge_link_evt++;
346795d67482SBill Paul 	mii = device_get_softc(sc->bge_miibus);
346895d67482SBill Paul 	if (mii->mii_instance) {
346995d67482SBill Paul 		struct mii_softc *miisc;
347095d67482SBill Paul 		for (miisc = LIST_FIRST(&mii->mii_phys); miisc != NULL;
347195d67482SBill Paul 		    miisc = LIST_NEXT(miisc, mii_list))
347295d67482SBill Paul 			mii_phy_reset(miisc);
347395d67482SBill Paul 	}
347495d67482SBill Paul 	mii_mediachg(mii);
347595d67482SBill Paul 
347695d67482SBill Paul 	return (0);
347795d67482SBill Paul }
347895d67482SBill Paul 
347995d67482SBill Paul /*
348095d67482SBill Paul  * Report current media status.
348195d67482SBill Paul  */
348295d67482SBill Paul static void
34833f74909aSGleb Smirnoff bge_ifmedia_sts(struct ifnet *ifp, struct ifmediareq *ifmr)
348495d67482SBill Paul {
348567d5e043SOleg Bulyzhin 	struct bge_softc *sc = ifp->if_softc;
348695d67482SBill Paul 	struct mii_data *mii;
348795d67482SBill Paul 
348867d5e043SOleg Bulyzhin 	BGE_LOCK(sc);
348995d67482SBill Paul 
3490652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_TBI) {
349195d67482SBill Paul 		ifmr->ifm_status = IFM_AVALID;
349295d67482SBill Paul 		ifmr->ifm_active = IFM_ETHER;
349395d67482SBill Paul 		if (CSR_READ_4(sc, BGE_MAC_STS) &
349495d67482SBill Paul 		    BGE_MACSTAT_TBI_PCS_SYNCHED)
349595d67482SBill Paul 			ifmr->ifm_status |= IFM_ACTIVE;
34964c0da0ffSGleb Smirnoff 		else {
34974c0da0ffSGleb Smirnoff 			ifmr->ifm_active |= IFM_NONE;
349867d5e043SOleg Bulyzhin 			BGE_UNLOCK(sc);
34994c0da0ffSGleb Smirnoff 			return;
35004c0da0ffSGleb Smirnoff 		}
350195d67482SBill Paul 		ifmr->ifm_active |= IFM_1000_SX;
350295d67482SBill Paul 		if (CSR_READ_4(sc, BGE_MAC_MODE) & BGE_MACMODE_HALF_DUPLEX)
350395d67482SBill Paul 			ifmr->ifm_active |= IFM_HDX;
350495d67482SBill Paul 		else
350595d67482SBill Paul 			ifmr->ifm_active |= IFM_FDX;
350667d5e043SOleg Bulyzhin 		BGE_UNLOCK(sc);
350795d67482SBill Paul 		return;
350895d67482SBill Paul 	}
350995d67482SBill Paul 
351095d67482SBill Paul 	mii = device_get_softc(sc->bge_miibus);
351195d67482SBill Paul 	mii_pollstat(mii);
351295d67482SBill Paul 	ifmr->ifm_active = mii->mii_media_active;
351395d67482SBill Paul 	ifmr->ifm_status = mii->mii_media_status;
351467d5e043SOleg Bulyzhin 
351567d5e043SOleg Bulyzhin 	BGE_UNLOCK(sc);
351695d67482SBill Paul }
351795d67482SBill Paul 
351895d67482SBill Paul static int
35193f74909aSGleb Smirnoff bge_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
352095d67482SBill Paul {
352195d67482SBill Paul 	struct bge_softc *sc = ifp->if_softc;
352295d67482SBill Paul 	struct ifreq *ifr = (struct ifreq *) data;
352395d67482SBill Paul 	struct mii_data *mii;
3524f9004b6dSJung-uk Kim 	int flags, mask, error = 0;
352595d67482SBill Paul 
352695d67482SBill Paul 	switch (command) {
352795d67482SBill Paul 	case SIOCSIFMTU:
35284c0da0ffSGleb Smirnoff 		if (ifr->ifr_mtu < ETHERMIN ||
35294c0da0ffSGleb Smirnoff 		    ((BGE_IS_JUMBO_CAPABLE(sc)) &&
35304c0da0ffSGleb Smirnoff 		    ifr->ifr_mtu > BGE_JUMBO_MTU) ||
35314c0da0ffSGleb Smirnoff 		    ((!BGE_IS_JUMBO_CAPABLE(sc)) &&
35324c0da0ffSGleb Smirnoff 		    ifr->ifr_mtu > ETHERMTU))
353395d67482SBill Paul 			error = EINVAL;
35344c0da0ffSGleb Smirnoff 		else if (ifp->if_mtu != ifr->ifr_mtu) {
353595d67482SBill Paul 			ifp->if_mtu = ifr->ifr_mtu;
353613f4c340SRobert Watson 			ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
353795d67482SBill Paul 			bge_init(sc);
353895d67482SBill Paul 		}
353995d67482SBill Paul 		break;
354095d67482SBill Paul 	case SIOCSIFFLAGS:
35410f9bd73bSSam Leffler 		BGE_LOCK(sc);
354295d67482SBill Paul 		if (ifp->if_flags & IFF_UP) {
354395d67482SBill Paul 			/*
354495d67482SBill Paul 			 * If only the state of the PROMISC flag changed,
354595d67482SBill Paul 			 * then just use the 'set promisc mode' command
354695d67482SBill Paul 			 * instead of reinitializing the entire NIC. Doing
354795d67482SBill Paul 			 * a full re-init means reloading the firmware and
354895d67482SBill Paul 			 * waiting for it to start up, which may take a
3549d183af7fSRuslan Ermilov 			 * second or two.  Similarly for ALLMULTI.
355095d67482SBill Paul 			 */
3551f9004b6dSJung-uk Kim 			if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
3552f9004b6dSJung-uk Kim 				flags = ifp->if_flags ^ sc->bge_if_flags;
35533e9b1bcaSJung-uk Kim 				if (flags & IFF_PROMISC)
35543e9b1bcaSJung-uk Kim 					bge_setpromisc(sc);
3555f9004b6dSJung-uk Kim 				if (flags & IFF_ALLMULTI)
3556d183af7fSRuslan Ermilov 					bge_setmulti(sc);
355795d67482SBill Paul 			} else
35580f9bd73bSSam Leffler 				bge_init_locked(sc);
355995d67482SBill Paul 		} else {
356013f4c340SRobert Watson 			if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
356195d67482SBill Paul 				bge_stop(sc);
356295d67482SBill Paul 			}
356395d67482SBill Paul 		}
356495d67482SBill Paul 		sc->bge_if_flags = ifp->if_flags;
35650f9bd73bSSam Leffler 		BGE_UNLOCK(sc);
356695d67482SBill Paul 		error = 0;
356795d67482SBill Paul 		break;
356895d67482SBill Paul 	case SIOCADDMULTI:
356995d67482SBill Paul 	case SIOCDELMULTI:
357013f4c340SRobert Watson 		if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
35710f9bd73bSSam Leffler 			BGE_LOCK(sc);
357295d67482SBill Paul 			bge_setmulti(sc);
35730f9bd73bSSam Leffler 			BGE_UNLOCK(sc);
357495d67482SBill Paul 			error = 0;
357595d67482SBill Paul 		}
357695d67482SBill Paul 		break;
357795d67482SBill Paul 	case SIOCSIFMEDIA:
357895d67482SBill Paul 	case SIOCGIFMEDIA:
3579652ae483SGleb Smirnoff 		if (sc->bge_flags & BGE_FLAG_TBI) {
358095d67482SBill Paul 			error = ifmedia_ioctl(ifp, ifr,
358195d67482SBill Paul 			    &sc->bge_ifmedia, command);
358295d67482SBill Paul 		} else {
358395d67482SBill Paul 			mii = device_get_softc(sc->bge_miibus);
358495d67482SBill Paul 			error = ifmedia_ioctl(ifp, ifr,
358595d67482SBill Paul 			    &mii->mii_media, command);
358695d67482SBill Paul 		}
358795d67482SBill Paul 		break;
358895d67482SBill Paul 	case SIOCSIFCAP:
358995d67482SBill Paul 		mask = ifr->ifr_reqcap ^ ifp->if_capenable;
359075719184SGleb Smirnoff #ifdef DEVICE_POLLING
359175719184SGleb Smirnoff 		if (mask & IFCAP_POLLING) {
359275719184SGleb Smirnoff 			if (ifr->ifr_reqcap & IFCAP_POLLING) {
359375719184SGleb Smirnoff 				error = ether_poll_register(bge_poll, ifp);
359475719184SGleb Smirnoff 				if (error)
359575719184SGleb Smirnoff 					return (error);
359675719184SGleb Smirnoff 				BGE_LOCK(sc);
359775719184SGleb Smirnoff 				BGE_SETBIT(sc, BGE_PCI_MISC_CTL,
359875719184SGleb Smirnoff 				    BGE_PCIMISCCTL_MASK_PCI_INTR);
359975719184SGleb Smirnoff 				CSR_WRITE_4(sc, BGE_MBX_IRQ0_LO, 1);
360075719184SGleb Smirnoff 				CSR_WRITE_4(sc, BGE_HCC_RX_MAX_COAL_BDS_INT, 1);
360175719184SGleb Smirnoff 				CSR_WRITE_4(sc, BGE_HCC_TX_MAX_COAL_BDS_INT, 1);
360275719184SGleb Smirnoff 				ifp->if_capenable |= IFCAP_POLLING;
360375719184SGleb Smirnoff 				BGE_UNLOCK(sc);
360475719184SGleb Smirnoff 			} else {
360575719184SGleb Smirnoff 				error = ether_poll_deregister(ifp);
360675719184SGleb Smirnoff 				/* Enable interrupt even in error case */
360775719184SGleb Smirnoff 				BGE_LOCK(sc);
360875719184SGleb Smirnoff 				CSR_WRITE_4(sc, BGE_HCC_RX_MAX_COAL_BDS_INT, 0);
360975719184SGleb Smirnoff 				CSR_WRITE_4(sc, BGE_HCC_TX_MAX_COAL_BDS_INT, 0);
361075719184SGleb Smirnoff 				BGE_CLRBIT(sc, BGE_PCI_MISC_CTL,
361175719184SGleb Smirnoff 				    BGE_PCIMISCCTL_MASK_PCI_INTR);
361275719184SGleb Smirnoff 				CSR_WRITE_4(sc, BGE_MBX_IRQ0_LO, 0);
361375719184SGleb Smirnoff 				ifp->if_capenable &= ~IFCAP_POLLING;
361475719184SGleb Smirnoff 				BGE_UNLOCK(sc);
361575719184SGleb Smirnoff 			}
361675719184SGleb Smirnoff 		}
361775719184SGleb Smirnoff #endif
3618d375e524SGleb Smirnoff 		if (mask & IFCAP_HWCSUM) {
3619d375e524SGleb Smirnoff 			ifp->if_capenable ^= IFCAP_HWCSUM;
3620d375e524SGleb Smirnoff 			if (IFCAP_HWCSUM & ifp->if_capenable &&
3621d375e524SGleb Smirnoff 			    IFCAP_HWCSUM & ifp->if_capabilities)
3622b874fdd4SYaroslav Tykhiy 				ifp->if_hwassist = BGE_CSUM_FEATURES;
362395d67482SBill Paul 			else
3624b874fdd4SYaroslav Tykhiy 				ifp->if_hwassist = 0;
3625479b23b7SGleb Smirnoff 			VLAN_CAPABILITIES(ifp);
362695d67482SBill Paul 		}
362795d67482SBill Paul 		break;
362895d67482SBill Paul 	default:
3629673d9191SSam Leffler 		error = ether_ioctl(ifp, command, data);
363095d67482SBill Paul 		break;
363195d67482SBill Paul 	}
363295d67482SBill Paul 
363395d67482SBill Paul 	return (error);
363495d67482SBill Paul }
363595d67482SBill Paul 
363695d67482SBill Paul static void
3637b74e67fbSGleb Smirnoff bge_watchdog(struct bge_softc *sc)
363895d67482SBill Paul {
3639b74e67fbSGleb Smirnoff 	struct ifnet *ifp;
364095d67482SBill Paul 
3641b74e67fbSGleb Smirnoff 	BGE_LOCK_ASSERT(sc);
3642b74e67fbSGleb Smirnoff 
3643b74e67fbSGleb Smirnoff 	if (sc->bge_timer == 0 || --sc->bge_timer)
3644b74e67fbSGleb Smirnoff 		return;
3645b74e67fbSGleb Smirnoff 
3646b74e67fbSGleb Smirnoff 	ifp = sc->bge_ifp;
364795d67482SBill Paul 
3648fe806fdaSPyun YongHyeon 	if_printf(ifp, "watchdog timeout -- resetting\n");
364995d67482SBill Paul 
365013f4c340SRobert Watson 	ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
3651426742bfSGleb Smirnoff 	bge_init_locked(sc);
365295d67482SBill Paul 
365395d67482SBill Paul 	ifp->if_oerrors++;
365495d67482SBill Paul }
365595d67482SBill Paul 
365695d67482SBill Paul /*
365795d67482SBill Paul  * Stop the adapter and free any mbufs allocated to the
365895d67482SBill Paul  * RX and TX lists.
365995d67482SBill Paul  */
366095d67482SBill Paul static void
36613f74909aSGleb Smirnoff bge_stop(struct bge_softc *sc)
366295d67482SBill Paul {
366395d67482SBill Paul 	struct ifnet *ifp;
366495d67482SBill Paul 	struct ifmedia_entry *ifm;
366595d67482SBill Paul 	struct mii_data *mii = NULL;
366695d67482SBill Paul 	int mtmp, itmp;
366795d67482SBill Paul 
36680f9bd73bSSam Leffler 	BGE_LOCK_ASSERT(sc);
36690f9bd73bSSam Leffler 
3670fc74a9f9SBrooks Davis 	ifp = sc->bge_ifp;
367195d67482SBill Paul 
3672652ae483SGleb Smirnoff 	if ((sc->bge_flags & BGE_FLAG_TBI) == 0)
367395d67482SBill Paul 		mii = device_get_softc(sc->bge_miibus);
367495d67482SBill Paul 
36750f9bd73bSSam Leffler 	callout_stop(&sc->bge_stat_ch);
367695d67482SBill Paul 
367795d67482SBill Paul 	/*
36783f74909aSGleb Smirnoff 	 * Disable all of the receiver blocks.
367995d67482SBill Paul 	 */
368095d67482SBill Paul 	BGE_CLRBIT(sc, BGE_RX_MODE, BGE_RXMODE_ENABLE);
368195d67482SBill Paul 	BGE_CLRBIT(sc, BGE_RBDI_MODE, BGE_RBDIMODE_ENABLE);
368295d67482SBill Paul 	BGE_CLRBIT(sc, BGE_RXLP_MODE, BGE_RXLPMODE_ENABLE);
36837ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc)))
368495d67482SBill Paul 		BGE_CLRBIT(sc, BGE_RXLS_MODE, BGE_RXLSMODE_ENABLE);
368595d67482SBill Paul 	BGE_CLRBIT(sc, BGE_RDBDI_MODE, BGE_RBDIMODE_ENABLE);
368695d67482SBill Paul 	BGE_CLRBIT(sc, BGE_RDC_MODE, BGE_RDCMODE_ENABLE);
368795d67482SBill Paul 	BGE_CLRBIT(sc, BGE_RBDC_MODE, BGE_RBDCMODE_ENABLE);
368895d67482SBill Paul 
368995d67482SBill Paul 	/*
36903f74909aSGleb Smirnoff 	 * Disable all of the transmit blocks.
369195d67482SBill Paul 	 */
369295d67482SBill Paul 	BGE_CLRBIT(sc, BGE_SRS_MODE, BGE_SRSMODE_ENABLE);
369395d67482SBill Paul 	BGE_CLRBIT(sc, BGE_SBDI_MODE, BGE_SBDIMODE_ENABLE);
369495d67482SBill Paul 	BGE_CLRBIT(sc, BGE_SDI_MODE, BGE_SDIMODE_ENABLE);
369595d67482SBill Paul 	BGE_CLRBIT(sc, BGE_RDMA_MODE, BGE_RDMAMODE_ENABLE);
369695d67482SBill Paul 	BGE_CLRBIT(sc, BGE_SDC_MODE, BGE_SDCMODE_ENABLE);
36977ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc)))
369895d67482SBill Paul 		BGE_CLRBIT(sc, BGE_DMAC_MODE, BGE_DMACMODE_ENABLE);
369995d67482SBill Paul 	BGE_CLRBIT(sc, BGE_SBDC_MODE, BGE_SBDCMODE_ENABLE);
370095d67482SBill Paul 
370195d67482SBill Paul 	/*
370295d67482SBill Paul 	 * Shut down all of the memory managers and related
370395d67482SBill Paul 	 * state machines.
370495d67482SBill Paul 	 */
370595d67482SBill Paul 	BGE_CLRBIT(sc, BGE_HCC_MODE, BGE_HCCMODE_ENABLE);
370695d67482SBill Paul 	BGE_CLRBIT(sc, BGE_WDMA_MODE, BGE_WDMAMODE_ENABLE);
37077ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc)))
370895d67482SBill Paul 		BGE_CLRBIT(sc, BGE_MBCF_MODE, BGE_MBCFMODE_ENABLE);
370995d67482SBill Paul 	CSR_WRITE_4(sc, BGE_FTQ_RESET, 0xFFFFFFFF);
371095d67482SBill Paul 	CSR_WRITE_4(sc, BGE_FTQ_RESET, 0);
37117ee00338SJung-uk Kim 	if (!(BGE_IS_5705_PLUS(sc))) {
371295d67482SBill Paul 		BGE_CLRBIT(sc, BGE_BMAN_MODE, BGE_BMANMODE_ENABLE);
371395d67482SBill Paul 		BGE_CLRBIT(sc, BGE_MARB_MODE, BGE_MARBMODE_ENABLE);
37140434d1b8SBill Paul 	}
371595d67482SBill Paul 
371695d67482SBill Paul 	/* Disable host interrupts. */
371795d67482SBill Paul 	BGE_SETBIT(sc, BGE_PCI_MISC_CTL, BGE_PCIMISCCTL_MASK_PCI_INTR);
371895d67482SBill Paul 	CSR_WRITE_4(sc, BGE_MBX_IRQ0_LO, 1);
371995d67482SBill Paul 
372095d67482SBill Paul 	/*
372195d67482SBill Paul 	 * Tell firmware we're shutting down.
372295d67482SBill Paul 	 */
37238cb1383cSDoug Ambrisko 
37248cb1383cSDoug Ambrisko 	bge_stop_fw(sc);
37258cb1383cSDoug Ambrisko 	bge_sig_pre_reset(sc, BGE_RESET_STOP);
37268cb1383cSDoug Ambrisko 	bge_reset(sc);
37278cb1383cSDoug Ambrisko 	bge_sig_legacy(sc, BGE_RESET_STOP);
37288cb1383cSDoug Ambrisko 	bge_sig_post_reset(sc, BGE_RESET_STOP);
37298cb1383cSDoug Ambrisko 
37308cb1383cSDoug Ambrisko 	/*
37318cb1383cSDoug Ambrisko 	 * Keep the ASF firmware running if up.
37328cb1383cSDoug Ambrisko 	 */
37338cb1383cSDoug Ambrisko 	if (sc->bge_asf_mode & ASF_STACKUP)
37348cb1383cSDoug Ambrisko 		BGE_SETBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
37358cb1383cSDoug Ambrisko 	else
373695d67482SBill Paul 		BGE_CLRBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
373795d67482SBill Paul 
373895d67482SBill Paul 	/* Free the RX lists. */
373995d67482SBill Paul 	bge_free_rx_ring_std(sc);
374095d67482SBill Paul 
374195d67482SBill Paul 	/* Free jumbo RX list. */
37424c0da0ffSGleb Smirnoff 	if (BGE_IS_JUMBO_CAPABLE(sc))
374395d67482SBill Paul 		bge_free_rx_ring_jumbo(sc);
374495d67482SBill Paul 
374595d67482SBill Paul 	/* Free TX buffers. */
374695d67482SBill Paul 	bge_free_tx_ring(sc);
374795d67482SBill Paul 
374895d67482SBill Paul 	/*
374995d67482SBill Paul 	 * Isolate/power down the PHY, but leave the media selection
375095d67482SBill Paul 	 * unchanged so that things will be put back to normal when
375195d67482SBill Paul 	 * we bring the interface back up.
375295d67482SBill Paul 	 */
3753652ae483SGleb Smirnoff 	if ((sc->bge_flags & BGE_FLAG_TBI) == 0) {
375495d67482SBill Paul 		itmp = ifp->if_flags;
375595d67482SBill Paul 		ifp->if_flags |= IFF_UP;
3756dcc34049SPawel Jakub Dawidek 		/*
3757dcc34049SPawel Jakub Dawidek 		 * If we are called from bge_detach(), mii is already NULL.
3758dcc34049SPawel Jakub Dawidek 		 */
3759dcc34049SPawel Jakub Dawidek 		if (mii != NULL) {
376095d67482SBill Paul 			ifm = mii->mii_media.ifm_cur;
376195d67482SBill Paul 			mtmp = ifm->ifm_media;
376295d67482SBill Paul 			ifm->ifm_media = IFM_ETHER|IFM_NONE;
376395d67482SBill Paul 			mii_mediachg(mii);
376495d67482SBill Paul 			ifm->ifm_media = mtmp;
3765dcc34049SPawel Jakub Dawidek 		}
376695d67482SBill Paul 		ifp->if_flags = itmp;
376795d67482SBill Paul 	}
376895d67482SBill Paul 
376995d67482SBill Paul 	sc->bge_tx_saved_considx = BGE_TXCONS_UNSET;
377095d67482SBill Paul 
37711493e883SOleg Bulyzhin 	/*
37721493e883SOleg Bulyzhin 	 * We can't just call bge_link_upd() cause chip is almost stopped so
37731493e883SOleg Bulyzhin 	 * bge_link_upd -> bge_tick_locked -> bge_stats_update sequence may
37741493e883SOleg Bulyzhin 	 * lead to hardware deadlock. So we just clearing MAC's link state
37751493e883SOleg Bulyzhin 	 * (PHY may still have link UP).
37761493e883SOleg Bulyzhin 	 */
37771493e883SOleg Bulyzhin 	if (bootverbose && sc->bge_link)
37781493e883SOleg Bulyzhin 		if_printf(sc->bge_ifp, "link DOWN\n");
37791493e883SOleg Bulyzhin 	sc->bge_link = 0;
378095d67482SBill Paul 
37811493e883SOleg Bulyzhin 	ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
378295d67482SBill Paul }
378395d67482SBill Paul 
378495d67482SBill Paul /*
378595d67482SBill Paul  * Stop all chip I/O so that the kernel's probe routines don't
378695d67482SBill Paul  * get confused by errant DMAs when rebooting.
378795d67482SBill Paul  */
378895d67482SBill Paul static void
37893f74909aSGleb Smirnoff bge_shutdown(device_t dev)
379095d67482SBill Paul {
379195d67482SBill Paul 	struct bge_softc *sc;
379295d67482SBill Paul 
379395d67482SBill Paul 	sc = device_get_softc(dev);
379495d67482SBill Paul 
37950f9bd73bSSam Leffler 	BGE_LOCK(sc);
379695d67482SBill Paul 	bge_stop(sc);
379795d67482SBill Paul 	bge_reset(sc);
37980f9bd73bSSam Leffler 	BGE_UNLOCK(sc);
379995d67482SBill Paul }
380014afefa3SPawel Jakub Dawidek 
380114afefa3SPawel Jakub Dawidek static int
380214afefa3SPawel Jakub Dawidek bge_suspend(device_t dev)
380314afefa3SPawel Jakub Dawidek {
380414afefa3SPawel Jakub Dawidek 	struct bge_softc *sc;
380514afefa3SPawel Jakub Dawidek 
380614afefa3SPawel Jakub Dawidek 	sc = device_get_softc(dev);
380714afefa3SPawel Jakub Dawidek 	BGE_LOCK(sc);
380814afefa3SPawel Jakub Dawidek 	bge_stop(sc);
380914afefa3SPawel Jakub Dawidek 	BGE_UNLOCK(sc);
381014afefa3SPawel Jakub Dawidek 
381114afefa3SPawel Jakub Dawidek 	return (0);
381214afefa3SPawel Jakub Dawidek }
381314afefa3SPawel Jakub Dawidek 
381414afefa3SPawel Jakub Dawidek static int
381514afefa3SPawel Jakub Dawidek bge_resume(device_t dev)
381614afefa3SPawel Jakub Dawidek {
381714afefa3SPawel Jakub Dawidek 	struct bge_softc *sc;
381814afefa3SPawel Jakub Dawidek 	struct ifnet *ifp;
381914afefa3SPawel Jakub Dawidek 
382014afefa3SPawel Jakub Dawidek 	sc = device_get_softc(dev);
382114afefa3SPawel Jakub Dawidek 	BGE_LOCK(sc);
382214afefa3SPawel Jakub Dawidek 	ifp = sc->bge_ifp;
382314afefa3SPawel Jakub Dawidek 	if (ifp->if_flags & IFF_UP) {
382414afefa3SPawel Jakub Dawidek 		bge_init_locked(sc);
382514afefa3SPawel Jakub Dawidek 		if (ifp->if_drv_flags & IFF_DRV_RUNNING)
382614afefa3SPawel Jakub Dawidek 			bge_start_locked(ifp);
382714afefa3SPawel Jakub Dawidek 	}
382814afefa3SPawel Jakub Dawidek 	BGE_UNLOCK(sc);
382914afefa3SPawel Jakub Dawidek 
383014afefa3SPawel Jakub Dawidek 	return (0);
383114afefa3SPawel Jakub Dawidek }
3832dab5cd05SOleg Bulyzhin 
3833dab5cd05SOleg Bulyzhin static void
38343f74909aSGleb Smirnoff bge_link_upd(struct bge_softc *sc)
3835dab5cd05SOleg Bulyzhin {
38361f313773SOleg Bulyzhin 	struct mii_data *mii;
38371f313773SOleg Bulyzhin 	uint32_t link, status;
3838dab5cd05SOleg Bulyzhin 
3839dab5cd05SOleg Bulyzhin 	BGE_LOCK_ASSERT(sc);
38401f313773SOleg Bulyzhin 
38413f74909aSGleb Smirnoff 	/* Clear 'pending link event' flag. */
38427b97099dSOleg Bulyzhin 	sc->bge_link_evt = 0;
38437b97099dSOleg Bulyzhin 
3844dab5cd05SOleg Bulyzhin 	/*
3845dab5cd05SOleg Bulyzhin 	 * Process link state changes.
3846dab5cd05SOleg Bulyzhin 	 * Grrr. The link status word in the status block does
3847dab5cd05SOleg Bulyzhin 	 * not work correctly on the BCM5700 rev AX and BX chips,
3848dab5cd05SOleg Bulyzhin 	 * according to all available information. Hence, we have
3849dab5cd05SOleg Bulyzhin 	 * to enable MII interrupts in order to properly obtain
3850dab5cd05SOleg Bulyzhin 	 * async link changes. Unfortunately, this also means that
3851dab5cd05SOleg Bulyzhin 	 * we have to read the MAC status register to detect link
3852dab5cd05SOleg Bulyzhin 	 * changes, thereby adding an additional register access to
3853dab5cd05SOleg Bulyzhin 	 * the interrupt handler.
38541f313773SOleg Bulyzhin 	 *
38551f313773SOleg Bulyzhin 	 * XXX: perhaps link state detection procedure used for
38564c0da0ffSGleb Smirnoff 	 * BGE_CHIPID_BCM5700_B2 can be used for others BCM5700 revisions.
3857dab5cd05SOleg Bulyzhin 	 */
3858dab5cd05SOleg Bulyzhin 
38591f313773SOleg Bulyzhin 	if (sc->bge_asicrev == BGE_ASICREV_BCM5700 &&
38604c0da0ffSGleb Smirnoff 	    sc->bge_chipid != BGE_CHIPID_BCM5700_B2) {
3861dab5cd05SOleg Bulyzhin 		status = CSR_READ_4(sc, BGE_MAC_STS);
3862dab5cd05SOleg Bulyzhin 		if (status & BGE_MACSTAT_MI_INTERRUPT) {
3863dab5cd05SOleg Bulyzhin 			callout_stop(&sc->bge_stat_ch);
3864b74e67fbSGleb Smirnoff 			bge_tick(sc);
38651f313773SOleg Bulyzhin 
38661f313773SOleg Bulyzhin 			mii = device_get_softc(sc->bge_miibus);
38671f313773SOleg Bulyzhin 			if (!sc->bge_link &&
38681f313773SOleg Bulyzhin 			    mii->mii_media_status & IFM_ACTIVE &&
38691f313773SOleg Bulyzhin 			    IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
38701f313773SOleg Bulyzhin 				sc->bge_link++;
38711f313773SOleg Bulyzhin 				if (bootverbose)
38721f313773SOleg Bulyzhin 					if_printf(sc->bge_ifp, "link UP\n");
38731f313773SOleg Bulyzhin 			} else if (sc->bge_link &&
38741f313773SOleg Bulyzhin 			    (!(mii->mii_media_status & IFM_ACTIVE) ||
38751f313773SOleg Bulyzhin 			    IFM_SUBTYPE(mii->mii_media_active) == IFM_NONE)) {
38761f313773SOleg Bulyzhin 				sc->bge_link = 0;
38771f313773SOleg Bulyzhin 				if (bootverbose)
38781f313773SOleg Bulyzhin 					if_printf(sc->bge_ifp, "link DOWN\n");
38791f313773SOleg Bulyzhin 			}
38801f313773SOleg Bulyzhin 
38813f74909aSGleb Smirnoff 			/* Clear the interrupt. */
3882dab5cd05SOleg Bulyzhin 			CSR_WRITE_4(sc, BGE_MAC_EVT_ENB,
3883dab5cd05SOleg Bulyzhin 			    BGE_EVTENB_MI_INTERRUPT);
3884dab5cd05SOleg Bulyzhin 			bge_miibus_readreg(sc->bge_dev, 1, BRGPHY_MII_ISR);
3885dab5cd05SOleg Bulyzhin 			bge_miibus_writereg(sc->bge_dev, 1, BRGPHY_MII_IMR,
3886dab5cd05SOleg Bulyzhin 			    BRGPHY_INTRS);
3887dab5cd05SOleg Bulyzhin 		}
3888dab5cd05SOleg Bulyzhin 		return;
3889dab5cd05SOleg Bulyzhin 	}
3890dab5cd05SOleg Bulyzhin 
3891652ae483SGleb Smirnoff 	if (sc->bge_flags & BGE_FLAG_TBI) {
38921f313773SOleg Bulyzhin 		status = CSR_READ_4(sc, BGE_MAC_STS);
38937b97099dSOleg Bulyzhin 		if (status & BGE_MACSTAT_TBI_PCS_SYNCHED) {
38947b97099dSOleg Bulyzhin 			if (!sc->bge_link) {
38951f313773SOleg Bulyzhin 				sc->bge_link++;
38961f313773SOleg Bulyzhin 				if (sc->bge_asicrev == BGE_ASICREV_BCM5704)
38971f313773SOleg Bulyzhin 					BGE_CLRBIT(sc, BGE_MAC_MODE,
38981f313773SOleg Bulyzhin 					    BGE_MACMODE_TBI_SEND_CFGS);
38991f313773SOleg Bulyzhin 				CSR_WRITE_4(sc, BGE_MAC_STS, 0xFFFFFFFF);
39001f313773SOleg Bulyzhin 				if (bootverbose)
39011f313773SOleg Bulyzhin 					if_printf(sc->bge_ifp, "link UP\n");
39023f74909aSGleb Smirnoff 				if_link_state_change(sc->bge_ifp,
39033f74909aSGleb Smirnoff 				    LINK_STATE_UP);
39047b97099dSOleg Bulyzhin 			}
39051f313773SOleg Bulyzhin 		} else if (sc->bge_link) {
3906dab5cd05SOleg Bulyzhin 			sc->bge_link = 0;
39071f313773SOleg Bulyzhin 			if (bootverbose)
39081f313773SOleg Bulyzhin 				if_printf(sc->bge_ifp, "link DOWN\n");
39097b97099dSOleg Bulyzhin 			if_link_state_change(sc->bge_ifp, LINK_STATE_DOWN);
39101f313773SOleg Bulyzhin 		}
39111493e883SOleg Bulyzhin 	/* Discard link events for MII/GMII cards if MI auto-polling disabled */
39121493e883SOleg Bulyzhin 	} else if (CSR_READ_4(sc, BGE_MI_MODE) & BGE_MIMODE_AUTOPOLL) {
39131f313773SOleg Bulyzhin 		/*
39141f313773SOleg Bulyzhin 		 * Some broken BCM chips have BGE_STATFLAG_LINKSTATE_CHANGED bit
39151f313773SOleg Bulyzhin 		 * in status word always set. Workaround this bug by reading
39161f313773SOleg Bulyzhin 		 * PHY link status directly.
39171f313773SOleg Bulyzhin 		 */
39181f313773SOleg Bulyzhin 		link = (CSR_READ_4(sc, BGE_MI_STS) & BGE_MISTS_LINK) ? 1 : 0;
39191f313773SOleg Bulyzhin 
39201f313773SOleg Bulyzhin 		if (link != sc->bge_link ||
39211f313773SOleg Bulyzhin 		    sc->bge_asicrev == BGE_ASICREV_BCM5700) {
3922dab5cd05SOleg Bulyzhin 			callout_stop(&sc->bge_stat_ch);
3923b74e67fbSGleb Smirnoff 			bge_tick(sc);
39241f313773SOleg Bulyzhin 
39251f313773SOleg Bulyzhin 			mii = device_get_softc(sc->bge_miibus);
39261f313773SOleg Bulyzhin 			if (!sc->bge_link &&
39271f313773SOleg Bulyzhin 			    mii->mii_media_status & IFM_ACTIVE &&
39281f313773SOleg Bulyzhin 			    IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
39291f313773SOleg Bulyzhin 				sc->bge_link++;
39301f313773SOleg Bulyzhin 				if (bootverbose)
39311f313773SOleg Bulyzhin 					if_printf(sc->bge_ifp, "link UP\n");
39321f313773SOleg Bulyzhin 			} else if (sc->bge_link &&
39331f313773SOleg Bulyzhin 			    (!(mii->mii_media_status & IFM_ACTIVE) ||
39341f313773SOleg Bulyzhin 			    IFM_SUBTYPE(mii->mii_media_active) == IFM_NONE)) {
39351f313773SOleg Bulyzhin 				sc->bge_link = 0;
39361f313773SOleg Bulyzhin 				if (bootverbose)
39371f313773SOleg Bulyzhin 					if_printf(sc->bge_ifp, "link DOWN\n");
39381f313773SOleg Bulyzhin 			}
39391f313773SOleg Bulyzhin 		}
3940dab5cd05SOleg Bulyzhin 	}
3941dab5cd05SOleg Bulyzhin 
39423f74909aSGleb Smirnoff 	/* Clear the attention. */
3943dab5cd05SOleg Bulyzhin 	CSR_WRITE_4(sc, BGE_MAC_STS, BGE_MACSTAT_SYNC_CHANGED|
3944dab5cd05SOleg Bulyzhin 	    BGE_MACSTAT_CFG_CHANGED|BGE_MACSTAT_MI_COMPLETE|
3945dab5cd05SOleg Bulyzhin 	    BGE_MACSTAT_LINK_CHANGED);
3946dab5cd05SOleg Bulyzhin }
3947