1098ca2bdSWarner Losh /*-
2df57947fSPedro F. Giffuni * SPDX-License-Identifier: BSD-4-Clause
3df57947fSPedro F. Giffuni *
495d67482SBill Paul * Copyright (c) 2001 Wind River Systems
595d67482SBill Paul * Copyright (c) 1997, 1998, 1999, 2001
695d67482SBill Paul * Bill Paul <wpaul@windriver.com>. All rights reserved.
795d67482SBill Paul *
895d67482SBill Paul * Redistribution and use in source and binary forms, with or without
995d67482SBill Paul * modification, are permitted provided that the following conditions
1095d67482SBill Paul * are met:
1195d67482SBill Paul * 1. Redistributions of source code must retain the above copyright
1295d67482SBill Paul * notice, this list of conditions and the following disclaimer.
1395d67482SBill Paul * 2. Redistributions in binary form must reproduce the above copyright
1495d67482SBill Paul * notice, this list of conditions and the following disclaimer in the
1595d67482SBill Paul * documentation and/or other materials provided with the distribution.
1695d67482SBill Paul * 3. All advertising materials mentioning features or use of this software
1795d67482SBill Paul * must display the following acknowledgement:
1895d67482SBill Paul * This product includes software developed by Bill Paul.
1995d67482SBill Paul * 4. Neither the name of the author nor the names of any co-contributors
2095d67482SBill Paul * may be used to endorse or promote products derived from this software
2195d67482SBill Paul * without specific prior written permission.
2295d67482SBill Paul *
2395d67482SBill Paul * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
2495d67482SBill Paul * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2595d67482SBill Paul * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2695d67482SBill Paul * ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
2795d67482SBill Paul * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2895d67482SBill Paul * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2995d67482SBill Paul * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
3095d67482SBill Paul * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
3195d67482SBill Paul * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
3295d67482SBill Paul * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
3395d67482SBill Paul * THE POSSIBILITY OF SUCH DAMAGE.
3495d67482SBill Paul */
3595d67482SBill Paul
36aad970f1SDavid E. O'Brien #include <sys/cdefs.h>
3795d67482SBill Paul /*
38d7acafa1SMarius Strobl * Broadcom BCM57xx(x)/BCM590x NetXtreme and NetLink family Ethernet driver
3995d67482SBill Paul *
4095d67482SBill Paul * The Broadcom BCM5700 is based on technology originally developed by
41d7acafa1SMarius Strobl * Alteon Networks as part of the Tigon I and Tigon II Gigabit Ethernet
4222a4ecedSMarius Strobl * MAC chips. The BCM5700, sometimes referred 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>
83dfe0df9aSPyun YongHyeon #include <sys/taskqueue.h>
8495d67482SBill Paul
857790c8c1SConrad Meyer #include <net/debugnet.h>
8695d67482SBill Paul #include <net/if.h>
8776039bc8SGleb Smirnoff #include <net/if_var.h>
8895d67482SBill Paul #include <net/if_arp.h>
8995d67482SBill Paul #include <net/ethernet.h>
9095d67482SBill Paul #include <net/if_dl.h>
9195d67482SBill Paul #include <net/if_media.h>
9295d67482SBill Paul
9395d67482SBill Paul #include <net/bpf.h>
9495d67482SBill Paul
9595d67482SBill Paul #include <net/if_types.h>
9695d67482SBill Paul #include <net/if_vlan_var.h>
9795d67482SBill Paul
9895d67482SBill Paul #include <netinet/in_systm.h>
9995d67482SBill Paul #include <netinet/in.h>
10095d67482SBill Paul #include <netinet/ip.h>
101ca3f1187SPyun YongHyeon #include <netinet/tcp.h>
10295d67482SBill Paul
10395d67482SBill Paul #include <machine/bus.h>
10495d67482SBill Paul #include <machine/resource.h>
10595d67482SBill Paul #include <sys/bus.h>
10695d67482SBill Paul #include <sys/rman.h>
10795d67482SBill Paul
10895d67482SBill Paul #include <dev/mii/mii.h>
10995d67482SBill Paul #include <dev/mii/miivar.h>
1102d3ce713SDavid E. O'Brien #include "miidevs.h"
11195d67482SBill Paul #include <dev/mii/brgphyreg.h>
11295d67482SBill Paul
1134fbd232cSWarner Losh #include <dev/pci/pcireg.h>
1144fbd232cSWarner Losh #include <dev/pci/pcivar.h>
11595d67482SBill Paul
11695d67482SBill Paul #include <dev/bge/if_bgereg.h>
11795d67482SBill Paul
11835f945cdSPyun YongHyeon #define BGE_CSUM_FEATURES (CSUM_IP | CSUM_TCP)
119d375e524SGleb Smirnoff #define ETHER_MIN_NOPAD (ETHER_MIN_LEN - ETHER_CRC_LEN) /* i.e., 60 */
12095d67482SBill Paul
121f246e4a1SMatthew N. Dodd MODULE_DEPEND(bge, pci, 1, 1, 1);
122f246e4a1SMatthew N. Dodd MODULE_DEPEND(bge, ether, 1, 1, 1);
12395d67482SBill Paul MODULE_DEPEND(bge, miibus, 1, 1, 1);
12495d67482SBill Paul
1257b279558SWarner Losh /* "device miibus" required. See GENERIC if you get errors here. */
12695d67482SBill Paul #include "miibus_if.h"
12795d67482SBill Paul
12895d67482SBill Paul /*
12995d67482SBill Paul * Various supported device vendors/types and their names. Note: the
13095d67482SBill Paul * spec seems to indicate that the hardware still has Alteon's vendor
131de47bf0dSGordon Bergling * ID burned into it, though it will always be overridden by the vendor
13295d67482SBill Paul * ID in the EEPROM. Just to be safe, we cover all possibilities.
13395d67482SBill Paul */
134852c67f9SMarius Strobl static const struct bge_type {
1354c0da0ffSGleb Smirnoff uint16_t bge_vid;
1364c0da0ffSGleb Smirnoff uint16_t bge_did;
13729658c96SDimitry Andric } bge_devs[] = {
1384c0da0ffSGleb Smirnoff { ALTEON_VENDORID, ALTEON_DEVICEID_BCM5700 },
1394c0da0ffSGleb Smirnoff { ALTEON_VENDORID, ALTEON_DEVICEID_BCM5701 },
14095d67482SBill Paul
1414c0da0ffSGleb Smirnoff { ALTIMA_VENDORID, ALTIMA_DEVICE_AC1000 },
1424c0da0ffSGleb Smirnoff { ALTIMA_VENDORID, ALTIMA_DEVICE_AC1002 },
1434c0da0ffSGleb Smirnoff { ALTIMA_VENDORID, ALTIMA_DEVICE_AC9100 },
1444c0da0ffSGleb Smirnoff
1454c0da0ffSGleb Smirnoff { APPLE_VENDORID, APPLE_DEVICE_BCM5701 },
1464c0da0ffSGleb Smirnoff
1474c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5700 },
1484c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5701 },
1494c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5702 },
1504c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5702_ALT },
1514c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5702X },
1524c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5703 },
1534c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5703_ALT },
1544c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5703X },
1554c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5704C },
1564c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5704S },
1574c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5704S_ALT },
1584c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5705 },
1594c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5705F },
1604c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5705K },
1614c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5705M },
1624c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5705M_ALT },
1634c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5714C },
1644c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5714S },
1654c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5715 },
1664c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5715S },
1671108273aSPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM5717 },
168cb2404b4SSepherosa Ziehau { BCOM_VENDORID, BCOM_DEVICEID_BCM5717C },
1691108273aSPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM5718 },
170bbe2ca75SPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM5719 },
1714c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5720 },
1724c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5721 },
173effef978SRemko Lodder { BCOM_VENDORID, BCOM_DEVICEID_BCM5722 },
174a5779553SStanislav Sedov { BCOM_VENDORID, BCOM_DEVICEID_BCM5723 },
1752927f01fSPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM5725 },
1762927f01fSPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM5727 },
1774c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5750 },
1784c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5750M },
1794c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5751 },
1804c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5751F },
1814c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5751M },
1824c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5752 },
1834c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5752M },
1844c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5753 },
1854c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5753F },
1864c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5753M },
1879e86676bSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5754 },
1889e86676bSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5754M },
1899e86676bSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5755 },
1909e86676bSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5755M },
191f7d1b2ebSXin LI { BCOM_VENDORID, BCOM_DEVICEID_BCM5756 },
192a5779553SStanislav Sedov { BCOM_VENDORID, BCOM_DEVICEID_BCM5761 },
193a5779553SStanislav Sedov { BCOM_VENDORID, BCOM_DEVICEID_BCM5761E },
194a5779553SStanislav Sedov { BCOM_VENDORID, BCOM_DEVICEID_BCM5761S },
195a5779553SStanislav Sedov { BCOM_VENDORID, BCOM_DEVICEID_BCM5761SE },
1962927f01fSPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM5762 },
197a5779553SStanislav Sedov { BCOM_VENDORID, BCOM_DEVICEID_BCM5764 },
1984c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5780 },
1994c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5780S },
2004c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5781 },
2014c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5782 },
202a5779553SStanislav Sedov { BCOM_VENDORID, BCOM_DEVICEID_BCM5784 },
203a5779553SStanislav Sedov { BCOM_VENDORID, BCOM_DEVICEID_BCM5785F },
204a5779553SStanislav Sedov { BCOM_VENDORID, BCOM_DEVICEID_BCM5785G },
2059e86676bSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5786 },
2069e86676bSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5787 },
207a5779553SStanislav Sedov { BCOM_VENDORID, BCOM_DEVICEID_BCM5787F },
2089e86676bSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5787M },
2094c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5788 },
2104c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5789 },
2114c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5901 },
2124c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5901A2 },
2134c0da0ffSGleb Smirnoff { BCOM_VENDORID, BCOM_DEVICEID_BCM5903M },
21438cc658fSJohn Baldwin { BCOM_VENDORID, BCOM_DEVICEID_BCM5906 },
21538cc658fSJohn Baldwin { BCOM_VENDORID, BCOM_DEVICEID_BCM5906M },
216a5779553SStanislav Sedov { BCOM_VENDORID, BCOM_DEVICEID_BCM57760 },
217b4a256acSPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM57761 },
218fe26ad88SPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM57762 },
21967129934SPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM57764 },
220b4a256acSPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM57765 },
221fe26ad88SPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM57766 },
22267129934SPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM57767 },
223a5779553SStanislav Sedov { BCOM_VENDORID, BCOM_DEVICEID_BCM57780 },
224b4a256acSPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM57781 },
22567129934SPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM57782 },
226b4a256acSPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM57785 },
22767129934SPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM57786 },
22867129934SPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM57787 },
229a5779553SStanislav Sedov { BCOM_VENDORID, BCOM_DEVICEID_BCM57788 },
230a5779553SStanislav Sedov { BCOM_VENDORID, BCOM_DEVICEID_BCM57790 },
231b4a256acSPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM57791 },
232b4a256acSPyun YongHyeon { BCOM_VENDORID, BCOM_DEVICEID_BCM57795 },
2334c0da0ffSGleb Smirnoff
2344c0da0ffSGleb Smirnoff { SK_VENDORID, SK_DEVICEID_ALTIMA },
2354c0da0ffSGleb Smirnoff
2364c0da0ffSGleb Smirnoff { TC_VENDORID, TC_DEVICEID_3C996 },
2374c0da0ffSGleb Smirnoff
238a5779553SStanislav Sedov { FJTSU_VENDORID, FJTSU_DEVICEID_PW008GE4 },
239a5779553SStanislav Sedov { FJTSU_VENDORID, FJTSU_DEVICEID_PW008GE5 },
2404c0da0ffSGleb Smirnoff { 0, 0 }
24195d67482SBill Paul };
24295d67482SBill Paul
2434c0da0ffSGleb Smirnoff static const struct bge_vendor {
2444c0da0ffSGleb Smirnoff uint16_t v_id;
2454c0da0ffSGleb Smirnoff const char *v_name;
24629658c96SDimitry Andric } bge_vendors[] = {
2474c0da0ffSGleb Smirnoff { ALTEON_VENDORID, "Alteon" },
2484c0da0ffSGleb Smirnoff { ALTIMA_VENDORID, "Altima" },
2494c0da0ffSGleb Smirnoff { APPLE_VENDORID, "Apple" },
2504c0da0ffSGleb Smirnoff { BCOM_VENDORID, "Broadcom" },
2514c0da0ffSGleb Smirnoff { SK_VENDORID, "SysKonnect" },
2524c0da0ffSGleb Smirnoff { TC_VENDORID, "3Com" },
253a5779553SStanislav Sedov { FJTSU_VENDORID, "Fujitsu" },
2544c0da0ffSGleb Smirnoff { 0, NULL }
2554c0da0ffSGleb Smirnoff };
2564c0da0ffSGleb Smirnoff
2574c0da0ffSGleb Smirnoff static const struct bge_revision {
2584c0da0ffSGleb Smirnoff uint32_t br_chipid;
2594c0da0ffSGleb Smirnoff const char *br_name;
26029658c96SDimitry Andric } bge_revisions[] = {
2614c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5700_A0, "BCM5700 A0" },
2624c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5700_A1, "BCM5700 A1" },
2634c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5700_B0, "BCM5700 B0" },
2644c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5700_B1, "BCM5700 B1" },
2654c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5700_B2, "BCM5700 B2" },
2664c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5700_B3, "BCM5700 B3" },
2674c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5700_ALTIMA, "BCM5700 Altima" },
2684c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5700_C0, "BCM5700 C0" },
2694c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5701_A0, "BCM5701 A0" },
2704c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5701_B0, "BCM5701 B0" },
2714c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5701_B2, "BCM5701 B2" },
2724c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5701_B5, "BCM5701 B5" },
2734c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5703_A0, "BCM5703 A0" },
2744c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5703_A1, "BCM5703 A1" },
2754c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5703_A2, "BCM5703 A2" },
2764c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5703_A3, "BCM5703 A3" },
2779e86676bSGleb Smirnoff { BGE_CHIPID_BCM5703_B0, "BCM5703 B0" },
2784c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5704_A0, "BCM5704 A0" },
2794c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5704_A1, "BCM5704 A1" },
2804c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5704_A2, "BCM5704 A2" },
2814c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5704_A3, "BCM5704 A3" },
2824c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5704_B0, "BCM5704 B0" },
2834c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5705_A0, "BCM5705 A0" },
2844c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5705_A1, "BCM5705 A1" },
2854c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5705_A2, "BCM5705 A2" },
2864c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5705_A3, "BCM5705 A3" },
2874c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5750_A0, "BCM5750 A0" },
2884c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5750_A1, "BCM5750 A1" },
2894c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5750_A3, "BCM5750 A3" },
2904c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5750_B0, "BCM5750 B0" },
2914c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5750_B1, "BCM5750 B1" },
2924c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5750_C0, "BCM5750 C0" },
2934c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5750_C1, "BCM5750 C1" },
29442787b76SGleb Smirnoff { BGE_CHIPID_BCM5750_C2, "BCM5750 C2" },
2954c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5714_A0, "BCM5714 A0" },
2964c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5752_A0, "BCM5752 A0" },
2974c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5752_A1, "BCM5752 A1" },
2984c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5752_A2, "BCM5752 A2" },
2994c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5714_B0, "BCM5714 B0" },
3004c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5714_B3, "BCM5714 B3" },
3014c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5715_A0, "BCM5715 A0" },
3024c0da0ffSGleb Smirnoff { BGE_CHIPID_BCM5715_A1, "BCM5715 A1" },
3030c4a1ef8SJung-uk Kim { BGE_CHIPID_BCM5715_A3, "BCM5715 A3" },
3041108273aSPyun YongHyeon { BGE_CHIPID_BCM5717_A0, "BCM5717 A0" },
3051108273aSPyun YongHyeon { BGE_CHIPID_BCM5717_B0, "BCM5717 B0" },
306cb2404b4SSepherosa Ziehau { BGE_CHIPID_BCM5717_C0, "BCM5717 C0" },
307bbe2ca75SPyun YongHyeon { BGE_CHIPID_BCM5719_A0, "BCM5719 A0" },
30850515680SPyun YongHyeon { BGE_CHIPID_BCM5720_A0, "BCM5720 A0" },
3090c4a1ef8SJung-uk Kim { BGE_CHIPID_BCM5755_A0, "BCM5755 A0" },
3100c4a1ef8SJung-uk Kim { BGE_CHIPID_BCM5755_A1, "BCM5755 A1" },
3110c4a1ef8SJung-uk Kim { BGE_CHIPID_BCM5755_A2, "BCM5755 A2" },
312bcc20328SJohn Baldwin { BGE_CHIPID_BCM5722_A0, "BCM5722 A0" },
313a5779553SStanislav Sedov { BGE_CHIPID_BCM5761_A0, "BCM5761 A0" },
314a5779553SStanislav Sedov { BGE_CHIPID_BCM5761_A1, "BCM5761 A1" },
3152927f01fSPyun YongHyeon { BGE_CHIPID_BCM5762_A0, "BCM5762 A0" },
316a5779553SStanislav Sedov { BGE_CHIPID_BCM5784_A0, "BCM5784 A0" },
317a5779553SStanislav Sedov { BGE_CHIPID_BCM5784_A1, "BCM5784 A1" },
31881179070SJung-uk Kim /* 5754 and 5787 share the same ASIC ID */
3196f8718a3SScott Long { BGE_CHIPID_BCM5787_A0, "BCM5754/5787 A0" },
3206f8718a3SScott Long { BGE_CHIPID_BCM5787_A1, "BCM5754/5787 A1" },
3216f8718a3SScott Long { BGE_CHIPID_BCM5787_A2, "BCM5754/5787 A2" },
32238cc658fSJohn Baldwin { BGE_CHIPID_BCM5906_A1, "BCM5906 A1" },
32338cc658fSJohn Baldwin { BGE_CHIPID_BCM5906_A2, "BCM5906 A2" },
324b4a256acSPyun YongHyeon { BGE_CHIPID_BCM57765_A0, "BCM57765 A0" },
325b4a256acSPyun YongHyeon { BGE_CHIPID_BCM57765_B0, "BCM57765 B0" },
326a5779553SStanislav Sedov { BGE_CHIPID_BCM57780_A0, "BCM57780 A0" },
327a5779553SStanislav Sedov { BGE_CHIPID_BCM57780_A1, "BCM57780 A1" },
3284c0da0ffSGleb Smirnoff { 0, NULL }
3294c0da0ffSGleb Smirnoff };
3304c0da0ffSGleb Smirnoff
3314c0da0ffSGleb Smirnoff /*
3324c0da0ffSGleb Smirnoff * Some defaults for major revisions, so that newer steppings
3334c0da0ffSGleb Smirnoff * that we don't know about have a shot at working.
3344c0da0ffSGleb Smirnoff */
33529658c96SDimitry Andric static const struct bge_revision bge_majorrevs[] = {
3369e86676bSGleb Smirnoff { BGE_ASICREV_BCM5700, "unknown BCM5700" },
3379e86676bSGleb Smirnoff { BGE_ASICREV_BCM5701, "unknown BCM5701" },
3389e86676bSGleb Smirnoff { BGE_ASICREV_BCM5703, "unknown BCM5703" },
3399e86676bSGleb Smirnoff { BGE_ASICREV_BCM5704, "unknown BCM5704" },
3409e86676bSGleb Smirnoff { BGE_ASICREV_BCM5705, "unknown BCM5705" },
3419e86676bSGleb Smirnoff { BGE_ASICREV_BCM5750, "unknown BCM5750" },
3429e86676bSGleb Smirnoff { BGE_ASICREV_BCM5714_A0, "unknown BCM5714" },
3439e86676bSGleb Smirnoff { BGE_ASICREV_BCM5752, "unknown BCM5752" },
3449e86676bSGleb Smirnoff { BGE_ASICREV_BCM5780, "unknown BCM5780" },
3459e86676bSGleb Smirnoff { BGE_ASICREV_BCM5714, "unknown BCM5714" },
3469e86676bSGleb Smirnoff { BGE_ASICREV_BCM5755, "unknown BCM5755" },
347a5779553SStanislav Sedov { BGE_ASICREV_BCM5761, "unknown BCM5761" },
348a5779553SStanislav Sedov { BGE_ASICREV_BCM5784, "unknown BCM5784" },
349a5779553SStanislav Sedov { BGE_ASICREV_BCM5785, "unknown BCM5785" },
35081179070SJung-uk Kim /* 5754 and 5787 share the same ASIC ID */
3516f8718a3SScott Long { BGE_ASICREV_BCM5787, "unknown BCM5754/5787" },
35238cc658fSJohn Baldwin { BGE_ASICREV_BCM5906, "unknown BCM5906" },
353b4a256acSPyun YongHyeon { BGE_ASICREV_BCM57765, "unknown BCM57765" },
354fe26ad88SPyun YongHyeon { BGE_ASICREV_BCM57766, "unknown BCM57766" },
355a5779553SStanislav Sedov { BGE_ASICREV_BCM57780, "unknown BCM57780" },
3561108273aSPyun YongHyeon { BGE_ASICREV_BCM5717, "unknown BCM5717" },
357bbe2ca75SPyun YongHyeon { BGE_ASICREV_BCM5719, "unknown BCM5719" },
35850515680SPyun YongHyeon { BGE_ASICREV_BCM5720, "unknown BCM5720" },
3592927f01fSPyun YongHyeon { BGE_ASICREV_BCM5762, "unknown BCM5762" },
3604c0da0ffSGleb Smirnoff { 0, NULL }
3614c0da0ffSGleb Smirnoff };
3624c0da0ffSGleb Smirnoff
3630c8aa4eaSJung-uk Kim #define BGE_IS_JUMBO_CAPABLE(sc) ((sc)->bge_flags & BGE_FLAG_JUMBO)
3640c8aa4eaSJung-uk Kim #define BGE_IS_5700_FAMILY(sc) ((sc)->bge_flags & BGE_FLAG_5700_FAMILY)
3650c8aa4eaSJung-uk Kim #define BGE_IS_5705_PLUS(sc) ((sc)->bge_flags & BGE_FLAG_5705_PLUS)
3660c8aa4eaSJung-uk Kim #define BGE_IS_5714_FAMILY(sc) ((sc)->bge_flags & BGE_FLAG_5714_FAMILY)
3670c8aa4eaSJung-uk Kim #define BGE_IS_575X_PLUS(sc) ((sc)->bge_flags & BGE_FLAG_575X_PLUS)
368a5779553SStanislav Sedov #define BGE_IS_5755_PLUS(sc) ((sc)->bge_flags & BGE_FLAG_5755_PLUS)
3691108273aSPyun YongHyeon #define BGE_IS_5717_PLUS(sc) ((sc)->bge_flags & BGE_FLAG_5717_PLUS)
370fe26ad88SPyun YongHyeon #define BGE_IS_57765_PLUS(sc) ((sc)->bge_flags & BGE_FLAG_57765_PLUS)
3714c0da0ffSGleb Smirnoff
372d7acafa1SMarius Strobl static uint32_t bge_chipid(device_t);
373d7acafa1SMarius Strobl static const struct bge_vendor * bge_lookup_vendor(uint16_t);
374d7acafa1SMarius Strobl static const struct bge_revision * bge_lookup_rev(uint32_t);
37538cc658fSJohn Baldwin
37638cc658fSJohn Baldwin typedef int (*bge_eaddr_fcn_t)(struct bge_softc *, uint8_t[]);
37738cc658fSJohn Baldwin
378e51a25f8SAlfred Perlstein static int bge_probe(device_t);
379e51a25f8SAlfred Perlstein static int bge_attach(device_t);
380e51a25f8SAlfred Perlstein static int bge_detach(device_t);
38114afefa3SPawel Jakub Dawidek static int bge_suspend(device_t);
38214afefa3SPawel Jakub Dawidek static int bge_resume(device_t);
3833f74909aSGleb Smirnoff static void bge_release_resources(struct bge_softc *);
384f41ac2beSBill Paul static void bge_dma_map_addr(void *, bus_dma_segment_t *, int, int);
3855b610048SPyun YongHyeon static int bge_dma_alloc(struct bge_softc *);
386f41ac2beSBill Paul static void bge_dma_free(struct bge_softc *);
3875b610048SPyun YongHyeon static int bge_dma_ring_alloc(struct bge_softc *, bus_size_t, bus_size_t,
3885b610048SPyun YongHyeon bus_dma_tag_t *, uint8_t **, bus_dmamap_t *, bus_addr_t *, const char *);
389f41ac2beSBill Paul
390ea9c3a30SPyun YongHyeon static void bge_devinfo(struct bge_softc *);
391062af0b0SPyun YongHyeon static int bge_mbox_reorder(struct bge_softc *);
392062af0b0SPyun YongHyeon
3935fea260fSMarius Strobl static int bge_get_eaddr_fw(struct bge_softc *sc, uint8_t ether_addr[]);
39438cc658fSJohn Baldwin static int bge_get_eaddr_mem(struct bge_softc *, uint8_t[]);
39538cc658fSJohn Baldwin static int bge_get_eaddr_nvram(struct bge_softc *, uint8_t[]);
39638cc658fSJohn Baldwin static int bge_get_eaddr_eeprom(struct bge_softc *, uint8_t[]);
39738cc658fSJohn Baldwin static int bge_get_eaddr(struct bge_softc *, uint8_t[]);
39838cc658fSJohn Baldwin
399b9c05fa5SPyun YongHyeon static void bge_txeof(struct bge_softc *, uint16_t);
4001108273aSPyun YongHyeon static void bge_rxcsum(struct bge_softc *, struct bge_rx_bd *, struct mbuf *);
401dfe0df9aSPyun YongHyeon static int bge_rxeof(struct bge_softc *, uint16_t, int);
40295d67482SBill Paul
4038cb1383cSDoug Ambrisko static void bge_asf_driver_up (struct bge_softc *);
404e51a25f8SAlfred Perlstein static void bge_tick(void *);
4052280c16bSPyun YongHyeon static void bge_stats_clear_regs(struct bge_softc *);
406e51a25f8SAlfred Perlstein static void bge_stats_update(struct bge_softc *);
4073f74909aSGleb Smirnoff static void bge_stats_update_regs(struct bge_softc *);
408d598b626SPyun YongHyeon static struct mbuf *bge_check_short_dma(struct mbuf *);
4092e1d4df4SPyun YongHyeon static struct mbuf *bge_setup_tso(struct bge_softc *, struct mbuf *,
4101108273aSPyun YongHyeon uint16_t *, uint16_t *);
411676ad2c9SGleb Smirnoff static int bge_encap(struct bge_softc *, struct mbuf **, uint32_t *);
41295d67482SBill Paul
413e51a25f8SAlfred Perlstein static void bge_intr(void *);
414dfe0df9aSPyun YongHyeon static int bge_msi_intr(void *);
415dfe0df9aSPyun YongHyeon static void bge_intr_task(void *, int);
416fba8b109SMarcel Moolenaar static void bge_start(if_t);
417ded66962SMark Johnston static void bge_start_locked(if_t);
418ded66962SMark Johnston static void bge_start_tx(struct bge_softc *, uint32_t);
419fba8b109SMarcel Moolenaar static int bge_ioctl(if_t, u_long, caddr_t);
4200f9bd73bSSam Leffler static void bge_init_locked(struct bge_softc *);
421e51a25f8SAlfred Perlstein static void bge_init(void *);
4225a147ba6SPyun YongHyeon static void bge_stop_block(struct bge_softc *, bus_size_t, uint32_t);
423e51a25f8SAlfred Perlstein static void bge_stop(struct bge_softc *);
424b74e67fbSGleb Smirnoff static void bge_watchdog(struct bge_softc *);
425b6c974e8SWarner Losh static int bge_shutdown(device_t);
426fba8b109SMarcel Moolenaar static int bge_ifmedia_upd_locked(if_t);
427fba8b109SMarcel Moolenaar static int bge_ifmedia_upd(if_t);
428fba8b109SMarcel Moolenaar static void bge_ifmedia_sts(if_t, struct ifmediareq *);
429df360178SGleb Smirnoff static uint64_t bge_get_counter(if_t, ift_counter);
43095d67482SBill Paul
43138cc658fSJohn Baldwin static uint8_t bge_nvram_getbyte(struct bge_softc *, int, uint8_t *);
43238cc658fSJohn Baldwin static int bge_read_nvram(struct bge_softc *, caddr_t, int, int);
43338cc658fSJohn Baldwin
4343f74909aSGleb Smirnoff static uint8_t bge_eeprom_getbyte(struct bge_softc *, int, uint8_t *);
435e51a25f8SAlfred Perlstein static int bge_read_eeprom(struct bge_softc *, caddr_t, int, int);
43695d67482SBill Paul
4373e9b1bcaSJung-uk Kim static void bge_setpromisc(struct bge_softc *);
438e51a25f8SAlfred Perlstein static void bge_setmulti(struct bge_softc *);
439cb2eacc7SYaroslav Tykhiy static void bge_setvlan(struct bge_softc *);
44095d67482SBill Paul
441e0b7b101SPyun YongHyeon static __inline void bge_rxreuse_std(struct bge_softc *, int);
442e0b7b101SPyun YongHyeon static __inline void bge_rxreuse_jumbo(struct bge_softc *, int);
443943787f3SPyun YongHyeon static int bge_newbuf_std(struct bge_softc *, int);
444943787f3SPyun YongHyeon static int bge_newbuf_jumbo(struct bge_softc *, int);
445e51a25f8SAlfred Perlstein static int bge_init_rx_ring_std(struct bge_softc *);
446e51a25f8SAlfred Perlstein static void bge_free_rx_ring_std(struct bge_softc *);
447e51a25f8SAlfred Perlstein static int bge_init_rx_ring_jumbo(struct bge_softc *);
448e51a25f8SAlfred Perlstein static void bge_free_rx_ring_jumbo(struct bge_softc *);
449e51a25f8SAlfred Perlstein static void bge_free_tx_ring(struct bge_softc *);
450e51a25f8SAlfred Perlstein static int bge_init_tx_ring(struct bge_softc *);
45195d67482SBill Paul
452e51a25f8SAlfred Perlstein static int bge_chipinit(struct bge_softc *);
453e51a25f8SAlfred Perlstein static int bge_blockinit(struct bge_softc *);
45450515680SPyun YongHyeon static uint32_t bge_dma_swap_options(struct bge_softc *);
45595d67482SBill Paul
4565fea260fSMarius Strobl static int bge_has_eaddr(struct bge_softc *);
4573f74909aSGleb Smirnoff static uint32_t bge_readmem_ind(struct bge_softc *, int);
458e51a25f8SAlfred Perlstein static void bge_writemem_ind(struct bge_softc *, int, int);
45938cc658fSJohn Baldwin static void bge_writembx(struct bge_softc *, int, int);
46095d67482SBill Paul #ifdef notdef
4613f74909aSGleb Smirnoff static uint32_t bge_readreg_ind(struct bge_softc *, int);
46295d67482SBill Paul #endif
4639ba784dbSScott Long static void bge_writemem_direct(struct bge_softc *, int, int);
464e51a25f8SAlfred Perlstein static void bge_writereg_ind(struct bge_softc *, int, int);
46595d67482SBill Paul
466e51a25f8SAlfred Perlstein static int bge_miibus_readreg(device_t, int, int);
467e51a25f8SAlfred Perlstein static int bge_miibus_writereg(device_t, int, int, int);
468e51a25f8SAlfred Perlstein static void bge_miibus_statchg(device_t);
46975719184SGleb Smirnoff #ifdef DEVICE_POLLING
470fba8b109SMarcel Moolenaar static int bge_poll(if_t ifp, enum poll_cmd cmd, int count);
47175719184SGleb Smirnoff #endif
47295d67482SBill Paul
473548c8f1aSPyun YongHyeon #define BGE_RESET_SHUTDOWN 0
4748cb1383cSDoug Ambrisko #define BGE_RESET_START 1
475548c8f1aSPyun YongHyeon #define BGE_RESET_SUSPEND 2
4768cb1383cSDoug Ambrisko static void bge_sig_post_reset(struct bge_softc *, int);
4778cb1383cSDoug Ambrisko static void bge_sig_legacy(struct bge_softc *, int);
4788cb1383cSDoug Ambrisko static void bge_sig_pre_reset(struct bge_softc *, int);
479797ab05eSPyun YongHyeon static void bge_stop_fw(struct bge_softc *);
4808cb1383cSDoug Ambrisko static int bge_reset(struct bge_softc *);
481dab5cd05SOleg Bulyzhin static void bge_link_upd(struct bge_softc *);
48295d67482SBill Paul
483548c8f1aSPyun YongHyeon static void bge_ape_lock_init(struct bge_softc *);
484548c8f1aSPyun YongHyeon static void bge_ape_read_fw_ver(struct bge_softc *);
485548c8f1aSPyun YongHyeon static int bge_ape_lock(struct bge_softc *, int);
486548c8f1aSPyun YongHyeon static void bge_ape_unlock(struct bge_softc *, int);
487548c8f1aSPyun YongHyeon static void bge_ape_send_event(struct bge_softc *, uint32_t);
488548c8f1aSPyun YongHyeon static void bge_ape_driver_state_change(struct bge_softc *, int);
489548c8f1aSPyun YongHyeon
4906f8718a3SScott Long /*
4916f8718a3SScott Long * The BGE_REGISTER_DEBUG option is only for low-level debugging. It may
4926f8718a3SScott Long * leak information to untrusted users. It is also known to cause alignment
4936f8718a3SScott Long * traps on certain architectures.
4946f8718a3SScott Long */
4956f8718a3SScott Long #ifdef BGE_REGISTER_DEBUG
4966f8718a3SScott Long static int bge_sysctl_debug_info(SYSCTL_HANDLER_ARGS);
4976f8718a3SScott Long static int bge_sysctl_reg_read(SYSCTL_HANDLER_ARGS);
498548c8f1aSPyun YongHyeon static int bge_sysctl_ape_read(SYSCTL_HANDLER_ARGS);
4996f8718a3SScott Long static int bge_sysctl_mem_read(SYSCTL_HANDLER_ARGS);
5006f8718a3SScott Long #endif
5016f8718a3SScott Long static void bge_add_sysctls(struct bge_softc *);
5022280c16bSPyun YongHyeon static void bge_add_sysctl_stats_regs(struct bge_softc *,
5032280c16bSPyun YongHyeon struct sysctl_ctx_list *, struct sysctl_oid_list *);
5042280c16bSPyun YongHyeon static void bge_add_sysctl_stats(struct bge_softc *, struct sysctl_ctx_list *,
5052280c16bSPyun YongHyeon struct sysctl_oid_list *);
506763757b2SScott Long static int bge_sysctl_stats(SYSCTL_HANDLER_ARGS);
5076f8718a3SScott Long
5087790c8c1SConrad Meyer DEBUGNET_DEFINE(bge);
509ded66962SMark Johnston
51095d67482SBill Paul static device_method_t bge_methods[] = {
51195d67482SBill Paul /* Device interface */
51295d67482SBill Paul DEVMETHOD(device_probe, bge_probe),
51395d67482SBill Paul DEVMETHOD(device_attach, bge_attach),
51495d67482SBill Paul DEVMETHOD(device_detach, bge_detach),
51595d67482SBill Paul DEVMETHOD(device_shutdown, bge_shutdown),
51614afefa3SPawel Jakub Dawidek DEVMETHOD(device_suspend, bge_suspend),
51714afefa3SPawel Jakub Dawidek DEVMETHOD(device_resume, bge_resume),
51895d67482SBill Paul
51995d67482SBill Paul /* MII interface */
52095d67482SBill Paul DEVMETHOD(miibus_readreg, bge_miibus_readreg),
52195d67482SBill Paul DEVMETHOD(miibus_writereg, bge_miibus_writereg),
52295d67482SBill Paul DEVMETHOD(miibus_statchg, bge_miibus_statchg),
52395d67482SBill Paul
5244b7ec270SMarius Strobl DEVMETHOD_END
52595d67482SBill Paul };
52695d67482SBill Paul
52795d67482SBill Paul static driver_t bge_driver = {
52895d67482SBill Paul "bge",
52995d67482SBill Paul bge_methods,
53095d67482SBill Paul sizeof(struct bge_softc)
53195d67482SBill Paul };
53295d67482SBill Paul
533d628b8c9SJohn Baldwin DRIVER_MODULE(bge, pci, bge_driver, 0, 0);
534ea72f463SWarner Losh MODULE_PNP_INFO("U16:vendor;U16:device", pci, bge, bge_devs,
535329e817fSWarner Losh nitems(bge_devs) - 1);
5363e38757dSJohn Baldwin DRIVER_MODULE(miibus, bge, miibus_driver, 0, 0);
53795d67482SBill Paul
538f1a7e6d5SScott Long static int bge_allow_asf = 1;
539f1a7e6d5SScott Long
5407029da5cSPawel Biernacki static SYSCTL_NODE(_hw, OID_AUTO, bge, CTLFLAG_RD | CTLFLAG_MPSAFE, 0,
5417029da5cSPawel Biernacki "BGE driver parameters");
542af3b2549SHans Petter Selasky SYSCTL_INT(_hw_bge, OID_AUTO, allow_asf, CTLFLAG_RDTUN, &bge_allow_asf, 0,
543f1a7e6d5SScott Long "Allow ASF mode if available");
544c4529f41SMichael Reifenberger
54508013fd3SMarius Strobl static int
bge_has_eaddr(struct bge_softc * sc)5465fea260fSMarius Strobl bge_has_eaddr(struct bge_softc *sc)
54708013fd3SMarius Strobl {
54808013fd3SMarius Strobl return (1);
54908013fd3SMarius Strobl }
55008013fd3SMarius Strobl
5513f74909aSGleb Smirnoff static uint32_t
bge_readmem_ind(struct bge_softc * sc,int off)5523f74909aSGleb Smirnoff bge_readmem_ind(struct bge_softc *sc, int off)
55395d67482SBill Paul {
55495d67482SBill Paul device_t dev;
5556f8718a3SScott Long uint32_t val;
55695d67482SBill Paul
557a4431ebaSPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5906 &&
558a4431ebaSPyun YongHyeon off >= BGE_STATS_BLOCK && off < BGE_SEND_RING_1_TO_4)
559a4431ebaSPyun YongHyeon return (0);
560a4431ebaSPyun YongHyeon
56195d67482SBill Paul dev = sc->bge_dev;
56295d67482SBill Paul
56395d67482SBill Paul pci_write_config(dev, BGE_PCI_MEMWIN_BASEADDR, off, 4);
5646f8718a3SScott Long val = pci_read_config(dev, BGE_PCI_MEMWIN_DATA, 4);
5656f8718a3SScott Long pci_write_config(dev, BGE_PCI_MEMWIN_BASEADDR, 0, 4);
5666f8718a3SScott Long return (val);
56795d67482SBill Paul }
56895d67482SBill Paul
56995d67482SBill Paul static void
bge_writemem_ind(struct bge_softc * sc,int off,int val)5703f74909aSGleb Smirnoff bge_writemem_ind(struct bge_softc *sc, int off, int val)
57195d67482SBill Paul {
57295d67482SBill Paul device_t dev;
57395d67482SBill Paul
574a4431ebaSPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5906 &&
575a4431ebaSPyun YongHyeon off >= BGE_STATS_BLOCK && off < BGE_SEND_RING_1_TO_4)
576a4431ebaSPyun YongHyeon return;
577a4431ebaSPyun YongHyeon
57895d67482SBill Paul dev = sc->bge_dev;
57995d67482SBill Paul
58095d67482SBill Paul pci_write_config(dev, BGE_PCI_MEMWIN_BASEADDR, off, 4);
58195d67482SBill Paul pci_write_config(dev, BGE_PCI_MEMWIN_DATA, val, 4);
5826f8718a3SScott Long pci_write_config(dev, BGE_PCI_MEMWIN_BASEADDR, 0, 4);
58395d67482SBill Paul }
58495d67482SBill Paul
58595d67482SBill Paul #ifdef notdef
5863f74909aSGleb Smirnoff static uint32_t
bge_readreg_ind(struct bge_softc * sc,int off)5873f74909aSGleb Smirnoff bge_readreg_ind(struct bge_softc *sc, int off)
58895d67482SBill Paul {
58995d67482SBill Paul device_t dev;
59095d67482SBill Paul
59195d67482SBill Paul dev = sc->bge_dev;
59295d67482SBill Paul
59395d67482SBill Paul pci_write_config(dev, BGE_PCI_REG_BASEADDR, off, 4);
59495d67482SBill Paul return (pci_read_config(dev, BGE_PCI_REG_DATA, 4));
59595d67482SBill Paul }
59695d67482SBill Paul #endif
59795d67482SBill Paul
59895d67482SBill Paul static void
bge_writereg_ind(struct bge_softc * sc,int off,int val)5993f74909aSGleb Smirnoff bge_writereg_ind(struct bge_softc *sc, int off, int val)
60095d67482SBill Paul {
60195d67482SBill Paul device_t dev;
60295d67482SBill Paul
60395d67482SBill Paul dev = sc->bge_dev;
60495d67482SBill Paul
60595d67482SBill Paul pci_write_config(dev, BGE_PCI_REG_BASEADDR, off, 4);
60695d67482SBill Paul pci_write_config(dev, BGE_PCI_REG_DATA, val, 4);
60795d67482SBill Paul }
60895d67482SBill Paul
6096f8718a3SScott Long static void
bge_writemem_direct(struct bge_softc * sc,int off,int val)6106f8718a3SScott Long bge_writemem_direct(struct bge_softc *sc, int off, int val)
6116f8718a3SScott Long {
6126f8718a3SScott Long CSR_WRITE_4(sc, off, val);
6136f8718a3SScott Long }
6146f8718a3SScott Long
61538cc658fSJohn Baldwin static void
bge_writembx(struct bge_softc * sc,int off,int val)61638cc658fSJohn Baldwin bge_writembx(struct bge_softc *sc, int off, int val)
61738cc658fSJohn Baldwin {
61838cc658fSJohn Baldwin if (sc->bge_asicrev == BGE_ASICREV_BCM5906)
61938cc658fSJohn Baldwin off += BGE_LPMBX_IRQ0_HI - BGE_MBX_IRQ0_HI;
62038cc658fSJohn Baldwin
62138cc658fSJohn Baldwin CSR_WRITE_4(sc, off, val);
622062af0b0SPyun YongHyeon if ((sc->bge_flags & BGE_FLAG_MBOX_REORDER) != 0)
623062af0b0SPyun YongHyeon CSR_READ_4(sc, off);
62438cc658fSJohn Baldwin }
62538cc658fSJohn Baldwin
626f41ac2beSBill Paul /*
627548c8f1aSPyun YongHyeon * Clear all stale locks and select the lock for this driver instance.
628548c8f1aSPyun YongHyeon */
629548c8f1aSPyun YongHyeon static void
bge_ape_lock_init(struct bge_softc * sc)630548c8f1aSPyun YongHyeon bge_ape_lock_init(struct bge_softc *sc)
631548c8f1aSPyun YongHyeon {
632548c8f1aSPyun YongHyeon uint32_t bit, regbase;
633548c8f1aSPyun YongHyeon int i;
634548c8f1aSPyun YongHyeon
635548c8f1aSPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5761)
636548c8f1aSPyun YongHyeon regbase = BGE_APE_LOCK_GRANT;
637548c8f1aSPyun YongHyeon else
638548c8f1aSPyun YongHyeon regbase = BGE_APE_PER_LOCK_GRANT;
639548c8f1aSPyun YongHyeon
640548c8f1aSPyun YongHyeon /* Clear any stale locks. */
641548c8f1aSPyun YongHyeon for (i = BGE_APE_LOCK_PHY0; i <= BGE_APE_LOCK_GPIO; i++) {
642548c8f1aSPyun YongHyeon switch (i) {
643548c8f1aSPyun YongHyeon case BGE_APE_LOCK_PHY0:
644548c8f1aSPyun YongHyeon case BGE_APE_LOCK_PHY1:
645548c8f1aSPyun YongHyeon case BGE_APE_LOCK_PHY2:
646548c8f1aSPyun YongHyeon case BGE_APE_LOCK_PHY3:
647548c8f1aSPyun YongHyeon bit = BGE_APE_LOCK_GRANT_DRIVER0;
648548c8f1aSPyun YongHyeon break;
649548c8f1aSPyun YongHyeon default:
650bd9c196aSPyun YongHyeon if (sc->bge_func_addr == 0)
651548c8f1aSPyun YongHyeon bit = BGE_APE_LOCK_GRANT_DRIVER0;
652548c8f1aSPyun YongHyeon else
653548c8f1aSPyun YongHyeon bit = (1 << sc->bge_func_addr);
654548c8f1aSPyun YongHyeon }
655548c8f1aSPyun YongHyeon APE_WRITE_4(sc, regbase + 4 * i, bit);
656548c8f1aSPyun YongHyeon }
657548c8f1aSPyun YongHyeon
658548c8f1aSPyun YongHyeon /* Select the PHY lock based on the device's function number. */
659548c8f1aSPyun YongHyeon switch (sc->bge_func_addr) {
660548c8f1aSPyun YongHyeon case 0:
661548c8f1aSPyun YongHyeon sc->bge_phy_ape_lock = BGE_APE_LOCK_PHY0;
662548c8f1aSPyun YongHyeon break;
663548c8f1aSPyun YongHyeon case 1:
664548c8f1aSPyun YongHyeon sc->bge_phy_ape_lock = BGE_APE_LOCK_PHY1;
665548c8f1aSPyun YongHyeon break;
666548c8f1aSPyun YongHyeon case 2:
667548c8f1aSPyun YongHyeon sc->bge_phy_ape_lock = BGE_APE_LOCK_PHY2;
668548c8f1aSPyun YongHyeon break;
669548c8f1aSPyun YongHyeon case 3:
670548c8f1aSPyun YongHyeon sc->bge_phy_ape_lock = BGE_APE_LOCK_PHY3;
671548c8f1aSPyun YongHyeon break;
672548c8f1aSPyun YongHyeon default:
673548c8f1aSPyun YongHyeon device_printf(sc->bge_dev,
674548c8f1aSPyun YongHyeon "PHY lock not supported on this function\n");
675548c8f1aSPyun YongHyeon }
676548c8f1aSPyun YongHyeon }
677548c8f1aSPyun YongHyeon
678548c8f1aSPyun YongHyeon /*
679548c8f1aSPyun YongHyeon * Check for APE firmware, set flags, and print version info.
680548c8f1aSPyun YongHyeon */
681548c8f1aSPyun YongHyeon static void
bge_ape_read_fw_ver(struct bge_softc * sc)682548c8f1aSPyun YongHyeon bge_ape_read_fw_ver(struct bge_softc *sc)
683548c8f1aSPyun YongHyeon {
684548c8f1aSPyun YongHyeon const char *fwtype;
685548c8f1aSPyun YongHyeon uint32_t apedata, features;
686548c8f1aSPyun YongHyeon
687548c8f1aSPyun YongHyeon /* Check for a valid APE signature in shared memory. */
688548c8f1aSPyun YongHyeon apedata = APE_READ_4(sc, BGE_APE_SEG_SIG);
689548c8f1aSPyun YongHyeon if (apedata != BGE_APE_SEG_SIG_MAGIC) {
690548c8f1aSPyun YongHyeon sc->bge_mfw_flags &= ~ BGE_MFW_ON_APE;
691548c8f1aSPyun YongHyeon return;
692548c8f1aSPyun YongHyeon }
693548c8f1aSPyun YongHyeon
694548c8f1aSPyun YongHyeon /* Check if APE firmware is running. */
695548c8f1aSPyun YongHyeon apedata = APE_READ_4(sc, BGE_APE_FW_STATUS);
696548c8f1aSPyun YongHyeon if ((apedata & BGE_APE_FW_STATUS_READY) == 0) {
697548c8f1aSPyun YongHyeon device_printf(sc->bge_dev, "APE signature found "
698548c8f1aSPyun YongHyeon "but FW status not ready! 0x%08x\n", apedata);
699548c8f1aSPyun YongHyeon return;
700548c8f1aSPyun YongHyeon }
701548c8f1aSPyun YongHyeon
702548c8f1aSPyun YongHyeon sc->bge_mfw_flags |= BGE_MFW_ON_APE;
703548c8f1aSPyun YongHyeon
704d646dca3SGordon Bergling /* Fetch the APE firmware type and version. */
705548c8f1aSPyun YongHyeon apedata = APE_READ_4(sc, BGE_APE_FW_VERSION);
706548c8f1aSPyun YongHyeon features = APE_READ_4(sc, BGE_APE_FW_FEATURES);
707548c8f1aSPyun YongHyeon if ((features & BGE_APE_FW_FEATURE_NCSI) != 0) {
708548c8f1aSPyun YongHyeon sc->bge_mfw_flags |= BGE_MFW_TYPE_NCSI;
709548c8f1aSPyun YongHyeon fwtype = "NCSI";
710548c8f1aSPyun YongHyeon } else if ((features & BGE_APE_FW_FEATURE_DASH) != 0) {
711548c8f1aSPyun YongHyeon sc->bge_mfw_flags |= BGE_MFW_TYPE_DASH;
712548c8f1aSPyun YongHyeon fwtype = "DASH";
713548c8f1aSPyun YongHyeon } else
714548c8f1aSPyun YongHyeon fwtype = "UNKN";
715548c8f1aSPyun YongHyeon
716548c8f1aSPyun YongHyeon /* Print the APE firmware version. */
717548c8f1aSPyun YongHyeon device_printf(sc->bge_dev, "APE FW version: %s v%d.%d.%d.%d\n",
718548c8f1aSPyun YongHyeon fwtype,
719548c8f1aSPyun YongHyeon (apedata & BGE_APE_FW_VERSION_MAJMSK) >> BGE_APE_FW_VERSION_MAJSFT,
720548c8f1aSPyun YongHyeon (apedata & BGE_APE_FW_VERSION_MINMSK) >> BGE_APE_FW_VERSION_MINSFT,
721548c8f1aSPyun YongHyeon (apedata & BGE_APE_FW_VERSION_REVMSK) >> BGE_APE_FW_VERSION_REVSFT,
722548c8f1aSPyun YongHyeon (apedata & BGE_APE_FW_VERSION_BLDMSK));
723548c8f1aSPyun YongHyeon }
724548c8f1aSPyun YongHyeon
725548c8f1aSPyun YongHyeon static int
bge_ape_lock(struct bge_softc * sc,int locknum)726548c8f1aSPyun YongHyeon bge_ape_lock(struct bge_softc *sc, int locknum)
727548c8f1aSPyun YongHyeon {
728548c8f1aSPyun YongHyeon uint32_t bit, gnt, req, status;
729548c8f1aSPyun YongHyeon int i, off;
730548c8f1aSPyun YongHyeon
731548c8f1aSPyun YongHyeon if ((sc->bge_mfw_flags & BGE_MFW_ON_APE) == 0)
732548c8f1aSPyun YongHyeon return (0);
733548c8f1aSPyun YongHyeon
734548c8f1aSPyun YongHyeon /* Lock request/grant registers have different bases. */
735548c8f1aSPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5761) {
736548c8f1aSPyun YongHyeon req = BGE_APE_LOCK_REQ;
737548c8f1aSPyun YongHyeon gnt = BGE_APE_LOCK_GRANT;
738548c8f1aSPyun YongHyeon } else {
739548c8f1aSPyun YongHyeon req = BGE_APE_PER_LOCK_REQ;
740548c8f1aSPyun YongHyeon gnt = BGE_APE_PER_LOCK_GRANT;
741548c8f1aSPyun YongHyeon }
742548c8f1aSPyun YongHyeon
743548c8f1aSPyun YongHyeon off = 4 * locknum;
744548c8f1aSPyun YongHyeon
745548c8f1aSPyun YongHyeon switch (locknum) {
746548c8f1aSPyun YongHyeon case BGE_APE_LOCK_GPIO:
747548c8f1aSPyun YongHyeon /* Lock required when using GPIO. */
748548c8f1aSPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5761)
749548c8f1aSPyun YongHyeon return (0);
750548c8f1aSPyun YongHyeon if (sc->bge_func_addr == 0)
751548c8f1aSPyun YongHyeon bit = BGE_APE_LOCK_REQ_DRIVER0;
752548c8f1aSPyun YongHyeon else
753548c8f1aSPyun YongHyeon bit = (1 << sc->bge_func_addr);
754548c8f1aSPyun YongHyeon break;
755548c8f1aSPyun YongHyeon case BGE_APE_LOCK_GRC:
756548c8f1aSPyun YongHyeon /* Lock required to reset the device. */
757548c8f1aSPyun YongHyeon if (sc->bge_func_addr == 0)
758548c8f1aSPyun YongHyeon bit = BGE_APE_LOCK_REQ_DRIVER0;
759548c8f1aSPyun YongHyeon else
760548c8f1aSPyun YongHyeon bit = (1 << sc->bge_func_addr);
761548c8f1aSPyun YongHyeon break;
762548c8f1aSPyun YongHyeon case BGE_APE_LOCK_MEM:
763548c8f1aSPyun YongHyeon /* Lock required when accessing certain APE memory. */
764548c8f1aSPyun YongHyeon if (sc->bge_func_addr == 0)
765548c8f1aSPyun YongHyeon bit = BGE_APE_LOCK_REQ_DRIVER0;
766548c8f1aSPyun YongHyeon else
767548c8f1aSPyun YongHyeon bit = (1 << sc->bge_func_addr);
768548c8f1aSPyun YongHyeon break;
769548c8f1aSPyun YongHyeon case BGE_APE_LOCK_PHY0:
770548c8f1aSPyun YongHyeon case BGE_APE_LOCK_PHY1:
771548c8f1aSPyun YongHyeon case BGE_APE_LOCK_PHY2:
772548c8f1aSPyun YongHyeon case BGE_APE_LOCK_PHY3:
773548c8f1aSPyun YongHyeon /* Lock required when accessing PHYs. */
774548c8f1aSPyun YongHyeon bit = BGE_APE_LOCK_REQ_DRIVER0;
775548c8f1aSPyun YongHyeon break;
776548c8f1aSPyun YongHyeon default:
777548c8f1aSPyun YongHyeon return (EINVAL);
778548c8f1aSPyun YongHyeon }
779548c8f1aSPyun YongHyeon
780548c8f1aSPyun YongHyeon /* Request a lock. */
781548c8f1aSPyun YongHyeon APE_WRITE_4(sc, req + off, bit);
782548c8f1aSPyun YongHyeon
783548c8f1aSPyun YongHyeon /* Wait up to 1 second to acquire lock. */
784548c8f1aSPyun YongHyeon for (i = 0; i < 20000; i++) {
785548c8f1aSPyun YongHyeon status = APE_READ_4(sc, gnt + off);
786548c8f1aSPyun YongHyeon if (status == bit)
787548c8f1aSPyun YongHyeon break;
788548c8f1aSPyun YongHyeon DELAY(50);
789548c8f1aSPyun YongHyeon }
790548c8f1aSPyun YongHyeon
791548c8f1aSPyun YongHyeon /* Handle any errors. */
792548c8f1aSPyun YongHyeon if (status != bit) {
793548c8f1aSPyun YongHyeon device_printf(sc->bge_dev, "APE lock %d request failed! "
794548c8f1aSPyun YongHyeon "request = 0x%04x[0x%04x], status = 0x%04x[0x%04x]\n",
795548c8f1aSPyun YongHyeon locknum, req + off, bit & 0xFFFF, gnt + off,
796548c8f1aSPyun YongHyeon status & 0xFFFF);
797548c8f1aSPyun YongHyeon /* Revoke the lock request. */
798548c8f1aSPyun YongHyeon APE_WRITE_4(sc, gnt + off, bit);
799548c8f1aSPyun YongHyeon return (EBUSY);
800548c8f1aSPyun YongHyeon }
801548c8f1aSPyun YongHyeon
802548c8f1aSPyun YongHyeon return (0);
803548c8f1aSPyun YongHyeon }
804548c8f1aSPyun YongHyeon
805548c8f1aSPyun YongHyeon static void
bge_ape_unlock(struct bge_softc * sc,int locknum)806548c8f1aSPyun YongHyeon bge_ape_unlock(struct bge_softc *sc, int locknum)
807548c8f1aSPyun YongHyeon {
808548c8f1aSPyun YongHyeon uint32_t bit, gnt;
809548c8f1aSPyun YongHyeon int off;
810548c8f1aSPyun YongHyeon
811548c8f1aSPyun YongHyeon if ((sc->bge_mfw_flags & BGE_MFW_ON_APE) == 0)
812548c8f1aSPyun YongHyeon return;
813548c8f1aSPyun YongHyeon
814548c8f1aSPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5761)
815548c8f1aSPyun YongHyeon gnt = BGE_APE_LOCK_GRANT;
816548c8f1aSPyun YongHyeon else
817548c8f1aSPyun YongHyeon gnt = BGE_APE_PER_LOCK_GRANT;
818548c8f1aSPyun YongHyeon
819548c8f1aSPyun YongHyeon off = 4 * locknum;
820548c8f1aSPyun YongHyeon
821548c8f1aSPyun YongHyeon switch (locknum) {
822548c8f1aSPyun YongHyeon case BGE_APE_LOCK_GPIO:
823548c8f1aSPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5761)
824548c8f1aSPyun YongHyeon return;
825548c8f1aSPyun YongHyeon if (sc->bge_func_addr == 0)
826548c8f1aSPyun YongHyeon bit = BGE_APE_LOCK_GRANT_DRIVER0;
827548c8f1aSPyun YongHyeon else
828548c8f1aSPyun YongHyeon bit = (1 << sc->bge_func_addr);
829548c8f1aSPyun YongHyeon break;
830548c8f1aSPyun YongHyeon case BGE_APE_LOCK_GRC:
831548c8f1aSPyun YongHyeon if (sc->bge_func_addr == 0)
832548c8f1aSPyun YongHyeon bit = BGE_APE_LOCK_GRANT_DRIVER0;
833548c8f1aSPyun YongHyeon else
834548c8f1aSPyun YongHyeon bit = (1 << sc->bge_func_addr);
835548c8f1aSPyun YongHyeon break;
836548c8f1aSPyun YongHyeon case BGE_APE_LOCK_MEM:
837548c8f1aSPyun YongHyeon if (sc->bge_func_addr == 0)
838548c8f1aSPyun YongHyeon bit = BGE_APE_LOCK_GRANT_DRIVER0;
839548c8f1aSPyun YongHyeon else
840548c8f1aSPyun YongHyeon bit = (1 << sc->bge_func_addr);
841548c8f1aSPyun YongHyeon break;
842548c8f1aSPyun YongHyeon case BGE_APE_LOCK_PHY0:
843548c8f1aSPyun YongHyeon case BGE_APE_LOCK_PHY1:
844548c8f1aSPyun YongHyeon case BGE_APE_LOCK_PHY2:
845548c8f1aSPyun YongHyeon case BGE_APE_LOCK_PHY3:
846548c8f1aSPyun YongHyeon bit = BGE_APE_LOCK_GRANT_DRIVER0;
847548c8f1aSPyun YongHyeon break;
848548c8f1aSPyun YongHyeon default:
849548c8f1aSPyun YongHyeon return;
850548c8f1aSPyun YongHyeon }
851548c8f1aSPyun YongHyeon
852548c8f1aSPyun YongHyeon APE_WRITE_4(sc, gnt + off, bit);
853548c8f1aSPyun YongHyeon }
854548c8f1aSPyun YongHyeon
855548c8f1aSPyun YongHyeon /*
856548c8f1aSPyun YongHyeon * Send an event to the APE firmware.
857548c8f1aSPyun YongHyeon */
858548c8f1aSPyun YongHyeon static void
bge_ape_send_event(struct bge_softc * sc,uint32_t event)859548c8f1aSPyun YongHyeon bge_ape_send_event(struct bge_softc *sc, uint32_t event)
860548c8f1aSPyun YongHyeon {
861548c8f1aSPyun YongHyeon uint32_t apedata;
862548c8f1aSPyun YongHyeon int i;
863548c8f1aSPyun YongHyeon
864548c8f1aSPyun YongHyeon /* NCSI does not support APE events. */
865548c8f1aSPyun YongHyeon if ((sc->bge_mfw_flags & BGE_MFW_ON_APE) == 0)
866548c8f1aSPyun YongHyeon return;
867548c8f1aSPyun YongHyeon
868548c8f1aSPyun YongHyeon /* Wait up to 1ms for APE to service previous event. */
869548c8f1aSPyun YongHyeon for (i = 10; i > 0; i--) {
870548c8f1aSPyun YongHyeon if (bge_ape_lock(sc, BGE_APE_LOCK_MEM) != 0)
871548c8f1aSPyun YongHyeon break;
872548c8f1aSPyun YongHyeon apedata = APE_READ_4(sc, BGE_APE_EVENT_STATUS);
873548c8f1aSPyun YongHyeon if ((apedata & BGE_APE_EVENT_STATUS_EVENT_PENDING) == 0) {
874548c8f1aSPyun YongHyeon APE_WRITE_4(sc, BGE_APE_EVENT_STATUS, event |
875548c8f1aSPyun YongHyeon BGE_APE_EVENT_STATUS_EVENT_PENDING);
876548c8f1aSPyun YongHyeon bge_ape_unlock(sc, BGE_APE_LOCK_MEM);
877548c8f1aSPyun YongHyeon APE_WRITE_4(sc, BGE_APE_EVENT, BGE_APE_EVENT_1);
878548c8f1aSPyun YongHyeon break;
879548c8f1aSPyun YongHyeon }
880548c8f1aSPyun YongHyeon bge_ape_unlock(sc, BGE_APE_LOCK_MEM);
881548c8f1aSPyun YongHyeon DELAY(100);
882548c8f1aSPyun YongHyeon }
883548c8f1aSPyun YongHyeon if (i == 0)
884548c8f1aSPyun YongHyeon device_printf(sc->bge_dev, "APE event 0x%08x send timed out\n",
885548c8f1aSPyun YongHyeon event);
886548c8f1aSPyun YongHyeon }
887548c8f1aSPyun YongHyeon
888548c8f1aSPyun YongHyeon static void
bge_ape_driver_state_change(struct bge_softc * sc,int kind)889548c8f1aSPyun YongHyeon bge_ape_driver_state_change(struct bge_softc *sc, int kind)
890548c8f1aSPyun YongHyeon {
891548c8f1aSPyun YongHyeon uint32_t apedata, event;
892548c8f1aSPyun YongHyeon
893548c8f1aSPyun YongHyeon if ((sc->bge_mfw_flags & BGE_MFW_ON_APE) == 0)
894548c8f1aSPyun YongHyeon return;
895548c8f1aSPyun YongHyeon
896548c8f1aSPyun YongHyeon switch (kind) {
897548c8f1aSPyun YongHyeon case BGE_RESET_START:
898548c8f1aSPyun YongHyeon /* If this is the first load, clear the load counter. */
899548c8f1aSPyun YongHyeon apedata = APE_READ_4(sc, BGE_APE_HOST_SEG_SIG);
900548c8f1aSPyun YongHyeon if (apedata != BGE_APE_HOST_SEG_SIG_MAGIC)
901548c8f1aSPyun YongHyeon APE_WRITE_4(sc, BGE_APE_HOST_INIT_COUNT, 0);
902548c8f1aSPyun YongHyeon else {
903548c8f1aSPyun YongHyeon apedata = APE_READ_4(sc, BGE_APE_HOST_INIT_COUNT);
904548c8f1aSPyun YongHyeon APE_WRITE_4(sc, BGE_APE_HOST_INIT_COUNT, ++apedata);
905548c8f1aSPyun YongHyeon }
906548c8f1aSPyun YongHyeon APE_WRITE_4(sc, BGE_APE_HOST_SEG_SIG,
907548c8f1aSPyun YongHyeon BGE_APE_HOST_SEG_SIG_MAGIC);
908548c8f1aSPyun YongHyeon APE_WRITE_4(sc, BGE_APE_HOST_SEG_LEN,
909548c8f1aSPyun YongHyeon BGE_APE_HOST_SEG_LEN_MAGIC);
910548c8f1aSPyun YongHyeon
911548c8f1aSPyun YongHyeon /* Add some version info if bge(4) supports it. */
912548c8f1aSPyun YongHyeon APE_WRITE_4(sc, BGE_APE_HOST_DRIVER_ID,
913548c8f1aSPyun YongHyeon BGE_APE_HOST_DRIVER_ID_MAGIC(1, 0));
914548c8f1aSPyun YongHyeon APE_WRITE_4(sc, BGE_APE_HOST_BEHAVIOR,
915548c8f1aSPyun YongHyeon BGE_APE_HOST_BEHAV_NO_PHYLOCK);
916548c8f1aSPyun YongHyeon APE_WRITE_4(sc, BGE_APE_HOST_HEARTBEAT_INT_MS,
917548c8f1aSPyun YongHyeon BGE_APE_HOST_HEARTBEAT_INT_DISABLE);
918548c8f1aSPyun YongHyeon APE_WRITE_4(sc, BGE_APE_HOST_DRVR_STATE,
919548c8f1aSPyun YongHyeon BGE_APE_HOST_DRVR_STATE_START);
920548c8f1aSPyun YongHyeon event = BGE_APE_EVENT_STATUS_STATE_START;
921548c8f1aSPyun YongHyeon break;
922548c8f1aSPyun YongHyeon case BGE_RESET_SHUTDOWN:
923548c8f1aSPyun YongHyeon APE_WRITE_4(sc, BGE_APE_HOST_DRVR_STATE,
924548c8f1aSPyun YongHyeon BGE_APE_HOST_DRVR_STATE_UNLOAD);
925548c8f1aSPyun YongHyeon event = BGE_APE_EVENT_STATUS_STATE_UNLOAD;
926548c8f1aSPyun YongHyeon break;
927548c8f1aSPyun YongHyeon case BGE_RESET_SUSPEND:
928548c8f1aSPyun YongHyeon event = BGE_APE_EVENT_STATUS_STATE_SUSPEND;
929548c8f1aSPyun YongHyeon break;
930548c8f1aSPyun YongHyeon default:
931548c8f1aSPyun YongHyeon return;
932548c8f1aSPyun YongHyeon }
933548c8f1aSPyun YongHyeon
934548c8f1aSPyun YongHyeon bge_ape_send_event(sc, event | BGE_APE_EVENT_STATUS_DRIVER_EVNT |
935548c8f1aSPyun YongHyeon BGE_APE_EVENT_STATUS_STATE_CHNGE);
936548c8f1aSPyun YongHyeon }
937548c8f1aSPyun YongHyeon
938548c8f1aSPyun YongHyeon /*
939f41ac2beSBill Paul * Map a single buffer address.
940f41ac2beSBill Paul */
941f41ac2beSBill Paul
942f41ac2beSBill Paul static void
bge_dma_map_addr(void * arg,bus_dma_segment_t * segs,int nseg,int error)9433f74909aSGleb Smirnoff bge_dma_map_addr(void *arg, bus_dma_segment_t *segs, int nseg, int error)
944f41ac2beSBill Paul {
945f41ac2beSBill Paul struct bge_dmamap_arg *ctx;
946f41ac2beSBill Paul
947f41ac2beSBill Paul if (error)
948f41ac2beSBill Paul return;
949f41ac2beSBill Paul
9505b610048SPyun YongHyeon KASSERT(nseg == 1, ("%s: %d segments returned!", __func__, nseg));
9515b610048SPyun YongHyeon
952f41ac2beSBill Paul ctx = arg;
953f41ac2beSBill Paul ctx->bge_busaddr = segs->ds_addr;
954f41ac2beSBill Paul }
955f41ac2beSBill Paul
95638cc658fSJohn Baldwin static uint8_t
bge_nvram_getbyte(struct bge_softc * sc,int addr,uint8_t * dest)95738cc658fSJohn Baldwin bge_nvram_getbyte(struct bge_softc *sc, int addr, uint8_t *dest)
95838cc658fSJohn Baldwin {
95938cc658fSJohn Baldwin uint32_t access, byte = 0;
96038cc658fSJohn Baldwin int i;
96138cc658fSJohn Baldwin
96238cc658fSJohn Baldwin /* Lock. */
96338cc658fSJohn Baldwin CSR_WRITE_4(sc, BGE_NVRAM_SWARB, BGE_NVRAMSWARB_SET1);
96438cc658fSJohn Baldwin for (i = 0; i < 8000; i++) {
96538cc658fSJohn Baldwin if (CSR_READ_4(sc, BGE_NVRAM_SWARB) & BGE_NVRAMSWARB_GNT1)
96638cc658fSJohn Baldwin break;
96738cc658fSJohn Baldwin DELAY(20);
96838cc658fSJohn Baldwin }
96938cc658fSJohn Baldwin if (i == 8000)
97038cc658fSJohn Baldwin return (1);
97138cc658fSJohn Baldwin
97238cc658fSJohn Baldwin /* Enable access. */
97338cc658fSJohn Baldwin access = CSR_READ_4(sc, BGE_NVRAM_ACCESS);
97438cc658fSJohn Baldwin CSR_WRITE_4(sc, BGE_NVRAM_ACCESS, access | BGE_NVRAMACC_ENABLE);
97538cc658fSJohn Baldwin
97638cc658fSJohn Baldwin CSR_WRITE_4(sc, BGE_NVRAM_ADDR, addr & 0xfffffffc);
97738cc658fSJohn Baldwin CSR_WRITE_4(sc, BGE_NVRAM_CMD, BGE_NVRAM_READCMD);
97838cc658fSJohn Baldwin for (i = 0; i < BGE_TIMEOUT * 10; i++) {
97938cc658fSJohn Baldwin DELAY(10);
98038cc658fSJohn Baldwin if (CSR_READ_4(sc, BGE_NVRAM_CMD) & BGE_NVRAMCMD_DONE) {
98138cc658fSJohn Baldwin DELAY(10);
98238cc658fSJohn Baldwin break;
98338cc658fSJohn Baldwin }
98438cc658fSJohn Baldwin }
98538cc658fSJohn Baldwin
98638cc658fSJohn Baldwin if (i == BGE_TIMEOUT * 10) {
98738cc658fSJohn Baldwin if_printf(sc->bge_ifp, "nvram read timed out\n");
98838cc658fSJohn Baldwin return (1);
98938cc658fSJohn Baldwin }
99038cc658fSJohn Baldwin
99138cc658fSJohn Baldwin /* Get result. */
99238cc658fSJohn Baldwin byte = CSR_READ_4(sc, BGE_NVRAM_RDDATA);
99338cc658fSJohn Baldwin
99438cc658fSJohn Baldwin *dest = (bswap32(byte) >> ((addr % 4) * 8)) & 0xFF;
99538cc658fSJohn Baldwin
99638cc658fSJohn Baldwin /* Disable access. */
99738cc658fSJohn Baldwin CSR_WRITE_4(sc, BGE_NVRAM_ACCESS, access);
99838cc658fSJohn Baldwin
99938cc658fSJohn Baldwin /* Unlock. */
100038cc658fSJohn Baldwin CSR_WRITE_4(sc, BGE_NVRAM_SWARB, BGE_NVRAMSWARB_CLR1);
100138cc658fSJohn Baldwin CSR_READ_4(sc, BGE_NVRAM_SWARB);
100238cc658fSJohn Baldwin
100338cc658fSJohn Baldwin return (0);
100438cc658fSJohn Baldwin }
100538cc658fSJohn Baldwin
100638cc658fSJohn Baldwin /*
100738cc658fSJohn Baldwin * Read a sequence of bytes from NVRAM.
100838cc658fSJohn Baldwin */
100938cc658fSJohn Baldwin static int
bge_read_nvram(struct bge_softc * sc,caddr_t dest,int off,int cnt)101038cc658fSJohn Baldwin bge_read_nvram(struct bge_softc *sc, caddr_t dest, int off, int cnt)
101138cc658fSJohn Baldwin {
101238cc658fSJohn Baldwin int err = 0, i;
101338cc658fSJohn Baldwin uint8_t byte = 0;
101438cc658fSJohn Baldwin
101538cc658fSJohn Baldwin if (sc->bge_asicrev != BGE_ASICREV_BCM5906)
101638cc658fSJohn Baldwin return (1);
101738cc658fSJohn Baldwin
101838cc658fSJohn Baldwin for (i = 0; i < cnt; i++) {
101938cc658fSJohn Baldwin err = bge_nvram_getbyte(sc, off + i, &byte);
102038cc658fSJohn Baldwin if (err)
102138cc658fSJohn Baldwin break;
102238cc658fSJohn Baldwin *(dest + i) = byte;
102338cc658fSJohn Baldwin }
102438cc658fSJohn Baldwin
102538cc658fSJohn Baldwin return (err ? 1 : 0);
102638cc658fSJohn Baldwin }
102738cc658fSJohn Baldwin
102895d67482SBill Paul /*
102995d67482SBill Paul * Read a byte of data stored in the EEPROM at address 'addr.' The
103095d67482SBill Paul * BCM570x supports both the traditional bitbang interface and an
103195d67482SBill Paul * auto access interface for reading the EEPROM. We use the auto
103295d67482SBill Paul * access method.
103395d67482SBill Paul */
10343f74909aSGleb Smirnoff static uint8_t
bge_eeprom_getbyte(struct bge_softc * sc,int addr,uint8_t * dest)10353f74909aSGleb Smirnoff bge_eeprom_getbyte(struct bge_softc *sc, int addr, uint8_t *dest)
103695d67482SBill Paul {
103795d67482SBill Paul int i;
10383f74909aSGleb Smirnoff uint32_t byte = 0;
103995d67482SBill Paul
104095d67482SBill Paul /*
104195d67482SBill Paul * Enable use of auto EEPROM access so we can avoid
104295d67482SBill Paul * having to use the bitbang method.
104395d67482SBill Paul */
104495d67482SBill Paul BGE_SETBIT(sc, BGE_MISC_LOCAL_CTL, BGE_MLC_AUTO_EEPROM);
104595d67482SBill Paul
104695d67482SBill Paul /* Reset the EEPROM, load the clock period. */
104795d67482SBill Paul CSR_WRITE_4(sc, BGE_EE_ADDR,
104895d67482SBill Paul BGE_EEADDR_RESET | BGE_EEHALFCLK(BGE_HALFCLK_384SCL));
104995d67482SBill Paul DELAY(20);
105095d67482SBill Paul
105195d67482SBill Paul /* Issue the read EEPROM command. */
105295d67482SBill Paul CSR_WRITE_4(sc, BGE_EE_ADDR, BGE_EE_READCMD | addr);
105395d67482SBill Paul
105495d67482SBill Paul /* Wait for completion */
105595d67482SBill Paul for(i = 0; i < BGE_TIMEOUT * 10; i++) {
105695d67482SBill Paul DELAY(10);
105795d67482SBill Paul if (CSR_READ_4(sc, BGE_EE_ADDR) & BGE_EEADDR_DONE)
105895d67482SBill Paul break;
105995d67482SBill Paul }
106095d67482SBill Paul
1061d5d23857SJung-uk Kim if (i == BGE_TIMEOUT * 10) {
1062fe806fdaSPyun YongHyeon device_printf(sc->bge_dev, "EEPROM read timed out\n");
1063f6789fbaSPyun YongHyeon return (1);
106495d67482SBill Paul }
106595d67482SBill Paul
106695d67482SBill Paul /* Get result. */
106795d67482SBill Paul byte = CSR_READ_4(sc, BGE_EE_DATA);
106895d67482SBill Paul
10690c8aa4eaSJung-uk Kim *dest = (byte >> ((addr % 4) * 8)) & 0xFF;
107095d67482SBill Paul
107195d67482SBill Paul return (0);
107295d67482SBill Paul }
107395d67482SBill Paul
107495d67482SBill Paul /*
107595d67482SBill Paul * Read a sequence of bytes from the EEPROM.
107695d67482SBill Paul */
107795d67482SBill Paul static int
bge_read_eeprom(struct bge_softc * sc,caddr_t dest,int off,int cnt)10783f74909aSGleb Smirnoff bge_read_eeprom(struct bge_softc *sc, caddr_t dest, int off, int cnt)
107995d67482SBill Paul {
10803f74909aSGleb Smirnoff int i, error = 0;
10813f74909aSGleb Smirnoff uint8_t byte = 0;
108295d67482SBill Paul
108395d67482SBill Paul for (i = 0; i < cnt; i++) {
10843f74909aSGleb Smirnoff error = bge_eeprom_getbyte(sc, off + i, &byte);
10853f74909aSGleb Smirnoff if (error)
108695d67482SBill Paul break;
108795d67482SBill Paul *(dest + i) = byte;
108895d67482SBill Paul }
108995d67482SBill Paul
10903f74909aSGleb Smirnoff return (error ? 1 : 0);
109195d67482SBill Paul }
109295d67482SBill Paul
109395d67482SBill Paul static int
bge_miibus_readreg(device_t dev,int phy,int reg)10943f74909aSGleb Smirnoff bge_miibus_readreg(device_t dev, int phy, int reg)
109595d67482SBill Paul {
109695d67482SBill Paul struct bge_softc *sc;
1097a813ed78SPyun YongHyeon uint32_t val;
109895d67482SBill Paul int i;
109995d67482SBill Paul
110095d67482SBill Paul sc = device_get_softc(dev);
110195d67482SBill Paul
1102548c8f1aSPyun YongHyeon if (bge_ape_lock(sc, sc->bge_phy_ape_lock) != 0)
1103548c8f1aSPyun YongHyeon return (0);
1104548c8f1aSPyun YongHyeon
1105a813ed78SPyun YongHyeon /* Clear the autopoll bit if set, otherwise may trigger PCI errors. */
1106a813ed78SPyun YongHyeon if ((sc->bge_mi_mode & BGE_MIMODE_AUTOPOLL) != 0) {
1107a813ed78SPyun YongHyeon CSR_WRITE_4(sc, BGE_MI_MODE,
1108a813ed78SPyun YongHyeon sc->bge_mi_mode & ~BGE_MIMODE_AUTOPOLL);
1109a813ed78SPyun YongHyeon DELAY(80);
111037ceeb4dSPaul Saab }
111137ceeb4dSPaul Saab
111295d67482SBill Paul CSR_WRITE_4(sc, BGE_MI_COMM, BGE_MICMD_READ | BGE_MICOMM_BUSY |
111395d67482SBill Paul BGE_MIPHY(phy) | BGE_MIREG(reg));
111495d67482SBill Paul
1115a813ed78SPyun YongHyeon /* Poll for the PHY register access to complete. */
111695d67482SBill Paul for (i = 0; i < BGE_TIMEOUT; i++) {
1117d5d23857SJung-uk Kim DELAY(10);
111895d67482SBill Paul val = CSR_READ_4(sc, BGE_MI_COMM);
1119a813ed78SPyun YongHyeon if ((val & BGE_MICOMM_BUSY) == 0) {
1120a813ed78SPyun YongHyeon DELAY(5);
1121a813ed78SPyun YongHyeon val = CSR_READ_4(sc, BGE_MI_COMM);
112295d67482SBill Paul break;
112395d67482SBill Paul }
1124a813ed78SPyun YongHyeon }
112595d67482SBill Paul
112695d67482SBill Paul if (i == BGE_TIMEOUT) {
11275fea260fSMarius Strobl device_printf(sc->bge_dev,
11285fea260fSMarius Strobl "PHY read timed out (phy %d, reg %d, val 0x%08x)\n",
11295fea260fSMarius Strobl phy, reg, val);
113037ceeb4dSPaul Saab val = 0;
113195d67482SBill Paul }
113295d67482SBill Paul
1133a813ed78SPyun YongHyeon /* Restore the autopoll bit if necessary. */
1134a813ed78SPyun YongHyeon if ((sc->bge_mi_mode & BGE_MIMODE_AUTOPOLL) != 0) {
1135a813ed78SPyun YongHyeon CSR_WRITE_4(sc, BGE_MI_MODE, sc->bge_mi_mode);
1136a813ed78SPyun YongHyeon DELAY(80);
113737ceeb4dSPaul Saab }
113837ceeb4dSPaul Saab
1139548c8f1aSPyun YongHyeon bge_ape_unlock(sc, sc->bge_phy_ape_lock);
1140548c8f1aSPyun YongHyeon
114195d67482SBill Paul if (val & BGE_MICOMM_READFAIL)
114295d67482SBill Paul return (0);
114395d67482SBill Paul
11440c8aa4eaSJung-uk Kim return (val & 0xFFFF);
114595d67482SBill Paul }
114695d67482SBill Paul
114795d67482SBill Paul static int
bge_miibus_writereg(device_t dev,int phy,int reg,int val)11483f74909aSGleb Smirnoff bge_miibus_writereg(device_t dev, int phy, int reg, int val)
114995d67482SBill Paul {
115095d67482SBill Paul struct bge_softc *sc;
115195d67482SBill Paul int i;
115295d67482SBill Paul
115395d67482SBill Paul sc = device_get_softc(dev);
115495d67482SBill Paul
115538cc658fSJohn Baldwin if (sc->bge_asicrev == BGE_ASICREV_BCM5906 &&
115638cc658fSJohn Baldwin (reg == BRGPHY_MII_1000CTL || reg == BRGPHY_MII_AUXCTL))
115738cc658fSJohn Baldwin return (0);
115838cc658fSJohn Baldwin
1159548c8f1aSPyun YongHyeon if (bge_ape_lock(sc, sc->bge_phy_ape_lock) != 0)
1160548c8f1aSPyun YongHyeon return (0);
1161548c8f1aSPyun YongHyeon
1162a813ed78SPyun YongHyeon /* Clear the autopoll bit if set, otherwise may trigger PCI errors. */
1163a813ed78SPyun YongHyeon if ((sc->bge_mi_mode & BGE_MIMODE_AUTOPOLL) != 0) {
1164a813ed78SPyun YongHyeon CSR_WRITE_4(sc, BGE_MI_MODE,
1165a813ed78SPyun YongHyeon sc->bge_mi_mode & ~BGE_MIMODE_AUTOPOLL);
1166a813ed78SPyun YongHyeon DELAY(80);
116737ceeb4dSPaul Saab }
116837ceeb4dSPaul Saab
116995d67482SBill Paul CSR_WRITE_4(sc, BGE_MI_COMM, BGE_MICMD_WRITE | BGE_MICOMM_BUSY |
117095d67482SBill Paul BGE_MIPHY(phy) | BGE_MIREG(reg) | val);
117195d67482SBill Paul
117295d67482SBill Paul for (i = 0; i < BGE_TIMEOUT; i++) {
1173d5d23857SJung-uk Kim DELAY(10);
117438cc658fSJohn Baldwin if (!(CSR_READ_4(sc, BGE_MI_COMM) & BGE_MICOMM_BUSY)) {
117538cc658fSJohn Baldwin DELAY(5);
117638cc658fSJohn Baldwin CSR_READ_4(sc, BGE_MI_COMM); /* dummy read */
117795d67482SBill Paul break;
1178d5d23857SJung-uk Kim }
117938cc658fSJohn Baldwin }
1180d5d23857SJung-uk Kim
1181a813ed78SPyun YongHyeon /* Restore the autopoll bit if necessary. */
1182a813ed78SPyun YongHyeon if ((sc->bge_mi_mode & BGE_MIMODE_AUTOPOLL) != 0) {
1183a813ed78SPyun YongHyeon CSR_WRITE_4(sc, BGE_MI_MODE, sc->bge_mi_mode);
1184a813ed78SPyun YongHyeon DELAY(80);
1185a813ed78SPyun YongHyeon }
1186a813ed78SPyun YongHyeon
1187548c8f1aSPyun YongHyeon bge_ape_unlock(sc, sc->bge_phy_ape_lock);
1188548c8f1aSPyun YongHyeon
1189a813ed78SPyun YongHyeon if (i == BGE_TIMEOUT)
119038cc658fSJohn Baldwin device_printf(sc->bge_dev,
11912246e8c6SPyun YongHyeon "PHY write timed out (phy %d, reg %d, val 0x%04x)\n",
119238cc658fSJohn Baldwin phy, reg, val);
119337ceeb4dSPaul Saab
119495d67482SBill Paul return (0);
119595d67482SBill Paul }
119695d67482SBill Paul
119795d67482SBill Paul static void
bge_miibus_statchg(device_t dev)11983f74909aSGleb Smirnoff bge_miibus_statchg(device_t dev)
119995d67482SBill Paul {
120095d67482SBill Paul struct bge_softc *sc;
120195d67482SBill Paul struct mii_data *mii;
1202a0a03d1eSPyun YongHyeon uint32_t mac_mode, rx_mode, tx_mode;
1203e4146b95SPyun YongHyeon
120495d67482SBill Paul sc = device_get_softc(dev);
1205fba8b109SMarcel Moolenaar if ((if_getdrvflags(sc->bge_ifp) & IFF_DRV_RUNNING) == 0)
1206e4146b95SPyun YongHyeon return;
120795d67482SBill Paul mii = device_get_softc(sc->bge_miibus);
120895d67482SBill Paul
1209d4f5240aSPyun YongHyeon if ((mii->mii_media_status & (IFM_ACTIVE | IFM_AVALID)) ==
1210d4f5240aSPyun YongHyeon (IFM_ACTIVE | IFM_AVALID)) {
1211d4f5240aSPyun YongHyeon switch (IFM_SUBTYPE(mii->mii_media_active)) {
1212d4f5240aSPyun YongHyeon case IFM_10_T:
1213d4f5240aSPyun YongHyeon case IFM_100_TX:
1214d4f5240aSPyun YongHyeon sc->bge_link = 1;
1215d4f5240aSPyun YongHyeon break;
1216d4f5240aSPyun YongHyeon case IFM_1000_T:
1217d4f5240aSPyun YongHyeon case IFM_1000_SX:
1218d4f5240aSPyun YongHyeon case IFM_2500_SX:
1219d4f5240aSPyun YongHyeon if (sc->bge_asicrev != BGE_ASICREV_BCM5906)
1220d4f5240aSPyun YongHyeon sc->bge_link = 1;
1221d4f5240aSPyun YongHyeon else
1222d4f5240aSPyun YongHyeon sc->bge_link = 0;
1223d4f5240aSPyun YongHyeon break;
1224d4f5240aSPyun YongHyeon default:
1225d4f5240aSPyun YongHyeon sc->bge_link = 0;
1226d4f5240aSPyun YongHyeon break;
1227d4f5240aSPyun YongHyeon }
1228d4f5240aSPyun YongHyeon } else
1229d4f5240aSPyun YongHyeon sc->bge_link = 0;
1230d4f5240aSPyun YongHyeon if (sc->bge_link == 0)
1231d4f5240aSPyun YongHyeon return;
1232a0a03d1eSPyun YongHyeon
1233a0a03d1eSPyun YongHyeon /*
1234a0a03d1eSPyun YongHyeon * APE firmware touches these registers to keep the MAC
1235a0a03d1eSPyun YongHyeon * connected to the outside world. Try to keep the
1236a0a03d1eSPyun YongHyeon * accesses atomic.
1237a0a03d1eSPyun YongHyeon */
1238a0a03d1eSPyun YongHyeon
1239a0a03d1eSPyun YongHyeon /* Set the port mode (MII/GMII) to match the link speed. */
1240a0a03d1eSPyun YongHyeon mac_mode = CSR_READ_4(sc, BGE_MAC_MODE) &
1241a0a03d1eSPyun YongHyeon ~(BGE_MACMODE_PORTMODE | BGE_MACMODE_HALF_DUPLEX);
1242a0a03d1eSPyun YongHyeon tx_mode = CSR_READ_4(sc, BGE_TX_MODE);
1243a0a03d1eSPyun YongHyeon rx_mode = CSR_READ_4(sc, BGE_RX_MODE);
1244a0a03d1eSPyun YongHyeon
1245ea3b4127SPyun YongHyeon if (IFM_SUBTYPE(mii->mii_media_active) == IFM_1000_T ||
1246ea3b4127SPyun YongHyeon IFM_SUBTYPE(mii->mii_media_active) == IFM_1000_SX)
1247a0a03d1eSPyun YongHyeon mac_mode |= BGE_PORTMODE_GMII;
12483f74909aSGleb Smirnoff else
1249a0a03d1eSPyun YongHyeon mac_mode |= BGE_PORTMODE_MII;
125095d67482SBill Paul
1251a0a03d1eSPyun YongHyeon /* Set MAC flow control behavior to match link flow control settings. */
1252a0a03d1eSPyun YongHyeon tx_mode &= ~BGE_TXMODE_FLOWCTL_ENABLE;
1253a0a03d1eSPyun YongHyeon rx_mode &= ~BGE_RXMODE_FLOWCTL_ENABLE;
12544951ca86SPyun YongHyeon if ((IFM_OPTIONS(mii->mii_media_active) & IFM_FDX) != 0) {
1255a0a03d1eSPyun YongHyeon if ((IFM_OPTIONS(mii->mii_media_active) & IFM_ETH_TXPAUSE) != 0)
1256a0a03d1eSPyun YongHyeon tx_mode |= BGE_TXMODE_FLOWCTL_ENABLE;
1257a0a03d1eSPyun YongHyeon if ((IFM_OPTIONS(mii->mii_media_active) & IFM_ETH_RXPAUSE) != 0)
1258a0a03d1eSPyun YongHyeon rx_mode |= BGE_RXMODE_FLOWCTL_ENABLE;
1259a0a03d1eSPyun YongHyeon } else
1260a0a03d1eSPyun YongHyeon mac_mode |= BGE_MACMODE_HALF_DUPLEX;
1261a0a03d1eSPyun YongHyeon
1262a0a03d1eSPyun YongHyeon CSR_WRITE_4(sc, BGE_MAC_MODE, mac_mode);
12639b80ffe7SPyun YongHyeon DELAY(40);
1264a0a03d1eSPyun YongHyeon CSR_WRITE_4(sc, BGE_TX_MODE, tx_mode);
1265a0a03d1eSPyun YongHyeon CSR_WRITE_4(sc, BGE_RX_MODE, rx_mode);
126695d67482SBill Paul }
126795d67482SBill Paul
126895d67482SBill Paul /*
126995d67482SBill Paul * Intialize a standard receive ring descriptor.
127095d67482SBill Paul */
127195d67482SBill Paul static int
bge_newbuf_std(struct bge_softc * sc,int i)1272943787f3SPyun YongHyeon bge_newbuf_std(struct bge_softc *sc, int i)
127395d67482SBill Paul {
1274943787f3SPyun YongHyeon struct mbuf *m;
127595d67482SBill Paul struct bge_rx_bd *r;
1276a23634a1SPyun YongHyeon bus_dma_segment_t segs[1];
1277943787f3SPyun YongHyeon bus_dmamap_t map;
1278a23634a1SPyun YongHyeon int error, nsegs;
127995d67482SBill Paul
1280f5459d4cSPyun YongHyeon if (sc->bge_flags & BGE_FLAG_JUMBO_STD &&
1281fba8b109SMarcel Moolenaar (if_getmtu(sc->bge_ifp) + ETHER_HDR_LEN + ETHER_CRC_LEN +
1282f5459d4cSPyun YongHyeon ETHER_VLAN_ENCAP_LEN > (MCLBYTES - ETHER_ALIGN))) {
1283c6499eccSGleb Smirnoff m = m_getjcl(M_NOWAIT, MT_DATA, M_PKTHDR, MJUM9BYTES);
1284f5459d4cSPyun YongHyeon if (m == NULL)
1285f5459d4cSPyun YongHyeon return (ENOBUFS);
1286f5459d4cSPyun YongHyeon m->m_len = m->m_pkthdr.len = MJUM9BYTES;
1287f5459d4cSPyun YongHyeon } else {
1288c6499eccSGleb Smirnoff m = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
1289943787f3SPyun YongHyeon if (m == NULL)
129095d67482SBill Paul return (ENOBUFS);
1291943787f3SPyun YongHyeon m->m_len = m->m_pkthdr.len = MCLBYTES;
1292f5459d4cSPyun YongHyeon }
1293652ae483SGleb Smirnoff if ((sc->bge_flags & BGE_FLAG_RX_ALIGNBUG) == 0)
1294943787f3SPyun YongHyeon m_adj(m, ETHER_ALIGN);
1295943787f3SPyun YongHyeon
12960ac56796SPyun YongHyeon error = bus_dmamap_load_mbuf_sg(sc->bge_cdata.bge_rx_mtag,
1297943787f3SPyun YongHyeon sc->bge_cdata.bge_rx_std_sparemap, m, segs, &nsegs, 0);
1298a23634a1SPyun YongHyeon if (error != 0) {
1299943787f3SPyun YongHyeon m_freem(m);
1300a23634a1SPyun YongHyeon return (error);
1301f41ac2beSBill Paul }
1302943787f3SPyun YongHyeon if (sc->bge_cdata.bge_rx_std_chain[i] != NULL) {
1303943787f3SPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_rx_mtag,
1304943787f3SPyun YongHyeon sc->bge_cdata.bge_rx_std_dmamap[i], BUS_DMASYNC_POSTREAD);
1305943787f3SPyun YongHyeon bus_dmamap_unload(sc->bge_cdata.bge_rx_mtag,
1306943787f3SPyun YongHyeon sc->bge_cdata.bge_rx_std_dmamap[i]);
1307943787f3SPyun YongHyeon }
1308943787f3SPyun YongHyeon map = sc->bge_cdata.bge_rx_std_dmamap[i];
1309943787f3SPyun YongHyeon sc->bge_cdata.bge_rx_std_dmamap[i] = sc->bge_cdata.bge_rx_std_sparemap;
1310943787f3SPyun YongHyeon sc->bge_cdata.bge_rx_std_sparemap = map;
1311943787f3SPyun YongHyeon sc->bge_cdata.bge_rx_std_chain[i] = m;
1312e0b7b101SPyun YongHyeon sc->bge_cdata.bge_rx_std_seglen[i] = segs[0].ds_len;
1313943787f3SPyun YongHyeon r = &sc->bge_ldata.bge_rx_std_ring[sc->bge_std];
1314a23634a1SPyun YongHyeon r->bge_addr.bge_addr_lo = BGE_ADDR_LO(segs[0].ds_addr);
1315a23634a1SPyun YongHyeon r->bge_addr.bge_addr_hi = BGE_ADDR_HI(segs[0].ds_addr);
1316e907febfSPyun YongHyeon r->bge_flags = BGE_RXBDFLAG_END;
1317a23634a1SPyun YongHyeon r->bge_len = segs[0].ds_len;
1318e907febfSPyun YongHyeon r->bge_idx = i;
1319f41ac2beSBill Paul
13200ac56796SPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_rx_mtag,
1321943787f3SPyun YongHyeon sc->bge_cdata.bge_rx_std_dmamap[i], BUS_DMASYNC_PREREAD);
132295d67482SBill Paul
132395d67482SBill Paul return (0);
132495d67482SBill Paul }
132595d67482SBill Paul
132695d67482SBill Paul /*
132795d67482SBill Paul * Initialize a jumbo receive ring descriptor. This allocates
132895d67482SBill Paul * a jumbo buffer from the pool managed internally by the driver.
132995d67482SBill Paul */
133095d67482SBill Paul static int
bge_newbuf_jumbo(struct bge_softc * sc,int i)1331943787f3SPyun YongHyeon bge_newbuf_jumbo(struct bge_softc *sc, int i)
133295d67482SBill Paul {
13331be6acb7SGleb Smirnoff bus_dma_segment_t segs[BGE_NSEG_JUMBO];
1334943787f3SPyun YongHyeon bus_dmamap_t map;
13351be6acb7SGleb Smirnoff struct bge_extrx_bd *r;
1336943787f3SPyun YongHyeon struct mbuf *m;
1337943787f3SPyun YongHyeon int error, nsegs;
133895d67482SBill Paul
1339c6499eccSGleb Smirnoff MGETHDR(m, M_NOWAIT, MT_DATA);
1340943787f3SPyun YongHyeon if (m == NULL)
134195d67482SBill Paul return (ENOBUFS);
134295d67482SBill Paul
13432a8c860fSRobert Watson if (m_cljget(m, M_NOWAIT, MJUM9BYTES) == NULL) {
1344943787f3SPyun YongHyeon m_freem(m);
134595d67482SBill Paul return (ENOBUFS);
134695d67482SBill Paul }
1347943787f3SPyun YongHyeon m->m_len = m->m_pkthdr.len = MJUM9BYTES;
1348652ae483SGleb Smirnoff if ((sc->bge_flags & BGE_FLAG_RX_ALIGNBUG) == 0)
1349943787f3SPyun YongHyeon m_adj(m, ETHER_ALIGN);
13501be6acb7SGleb Smirnoff
13511be6acb7SGleb Smirnoff error = bus_dmamap_load_mbuf_sg(sc->bge_cdata.bge_mtag_jumbo,
1352943787f3SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_sparemap, m, segs, &nsegs, 0);
1353943787f3SPyun YongHyeon if (error != 0) {
1354943787f3SPyun YongHyeon m_freem(m);
13551be6acb7SGleb Smirnoff return (error);
1356f7cea149SGleb Smirnoff }
13571be6acb7SGleb Smirnoff
1358aa8cbdbfSMarius Strobl if (sc->bge_cdata.bge_rx_jumbo_chain[i] != NULL) {
1359943787f3SPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_mtag_jumbo,
1360943787f3SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_dmamap[i], BUS_DMASYNC_POSTREAD);
1361943787f3SPyun YongHyeon bus_dmamap_unload(sc->bge_cdata.bge_mtag_jumbo,
1362943787f3SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_dmamap[i]);
1363943787f3SPyun YongHyeon }
1364943787f3SPyun YongHyeon map = sc->bge_cdata.bge_rx_jumbo_dmamap[i];
1365943787f3SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_dmamap[i] =
1366943787f3SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_sparemap;
1367943787f3SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_sparemap = map;
1368943787f3SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_chain[i] = m;
1369e0b7b101SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_seglen[i][0] = 0;
1370e0b7b101SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_seglen[i][1] = 0;
1371e0b7b101SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_seglen[i][2] = 0;
1372e0b7b101SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_seglen[i][3] = 0;
1373e0b7b101SPyun YongHyeon
13741be6acb7SGleb Smirnoff /*
13751be6acb7SGleb Smirnoff * Fill in the extended RX buffer descriptor.
13761be6acb7SGleb Smirnoff */
1377943787f3SPyun YongHyeon r = &sc->bge_ldata.bge_rx_jumbo_ring[sc->bge_jumbo];
13784e7ba1abSGleb Smirnoff r->bge_flags = BGE_RXBDFLAG_JUMBO_RING | BGE_RXBDFLAG_END;
13794e7ba1abSGleb Smirnoff r->bge_idx = i;
13804e7ba1abSGleb Smirnoff r->bge_len3 = r->bge_len2 = r->bge_len1 = 0;
13814e7ba1abSGleb Smirnoff switch (nsegs) {
13824e7ba1abSGleb Smirnoff case 4:
13834e7ba1abSGleb Smirnoff r->bge_addr3.bge_addr_lo = BGE_ADDR_LO(segs[3].ds_addr);
13844e7ba1abSGleb Smirnoff r->bge_addr3.bge_addr_hi = BGE_ADDR_HI(segs[3].ds_addr);
13854e7ba1abSGleb Smirnoff r->bge_len3 = segs[3].ds_len;
1386e0b7b101SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_seglen[i][3] = segs[3].ds_len;
13874e7ba1abSGleb Smirnoff case 3:
1388e907febfSPyun YongHyeon r->bge_addr2.bge_addr_lo = BGE_ADDR_LO(segs[2].ds_addr);
1389e907febfSPyun YongHyeon r->bge_addr2.bge_addr_hi = BGE_ADDR_HI(segs[2].ds_addr);
1390e907febfSPyun YongHyeon r->bge_len2 = segs[2].ds_len;
1391e0b7b101SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_seglen[i][2] = segs[2].ds_len;
13924e7ba1abSGleb Smirnoff case 2:
13934e7ba1abSGleb Smirnoff r->bge_addr1.bge_addr_lo = BGE_ADDR_LO(segs[1].ds_addr);
13944e7ba1abSGleb Smirnoff r->bge_addr1.bge_addr_hi = BGE_ADDR_HI(segs[1].ds_addr);
13954e7ba1abSGleb Smirnoff r->bge_len1 = segs[1].ds_len;
1396e0b7b101SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_seglen[i][1] = segs[1].ds_len;
13974e7ba1abSGleb Smirnoff case 1:
13984e7ba1abSGleb Smirnoff r->bge_addr0.bge_addr_lo = BGE_ADDR_LO(segs[0].ds_addr);
13994e7ba1abSGleb Smirnoff r->bge_addr0.bge_addr_hi = BGE_ADDR_HI(segs[0].ds_addr);
14004e7ba1abSGleb Smirnoff r->bge_len0 = segs[0].ds_len;
1401e0b7b101SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_seglen[i][0] = segs[0].ds_len;
14024e7ba1abSGleb Smirnoff break;
14034e7ba1abSGleb Smirnoff default:
14044e7ba1abSGleb Smirnoff panic("%s: %d segments\n", __func__, nsegs);
14054e7ba1abSGleb Smirnoff }
1406f41ac2beSBill Paul
1407a41504a9SPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_mtag_jumbo,
1408943787f3SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_dmamap[i], BUS_DMASYNC_PREREAD);
140995d67482SBill Paul
141095d67482SBill Paul return (0);
141195d67482SBill Paul }
141295d67482SBill Paul
141395d67482SBill Paul static int
bge_init_rx_ring_std(struct bge_softc * sc)14143f74909aSGleb Smirnoff bge_init_rx_ring_std(struct bge_softc *sc)
141595d67482SBill Paul {
14163ee5d7daSPyun YongHyeon int error, i;
141795d67482SBill Paul
1418e6bf277eSPyun YongHyeon bzero(sc->bge_ldata.bge_rx_std_ring, BGE_STD_RX_RING_SZ);
141903e78bd0SPyun YongHyeon sc->bge_std = 0;
1420e0b7b101SPyun YongHyeon for (i = 0; i < BGE_STD_RX_RING_CNT; i++) {
1421943787f3SPyun YongHyeon if ((error = bge_newbuf_std(sc, i)) != 0)
14223ee5d7daSPyun YongHyeon return (error);
142303e78bd0SPyun YongHyeon BGE_INC(sc->bge_std, BGE_STD_RX_RING_CNT);
14241888f324SPyun YongHyeon }
142595d67482SBill Paul
1426f41ac2beSBill Paul bus_dmamap_sync(sc->bge_cdata.bge_rx_std_ring_tag,
1427d77e9fa7SPyun YongHyeon sc->bge_cdata.bge_rx_std_ring_map, BUS_DMASYNC_PREWRITE);
1428f41ac2beSBill Paul
1429e0b7b101SPyun YongHyeon sc->bge_std = 0;
1430e0b7b101SPyun YongHyeon bge_writembx(sc, BGE_MBX_RX_STD_PROD_LO, BGE_STD_RX_RING_CNT - 1);
143195d67482SBill Paul
143295d67482SBill Paul return (0);
143395d67482SBill Paul }
143495d67482SBill Paul
143595d67482SBill Paul static void
bge_free_rx_ring_std(struct bge_softc * sc)14363f74909aSGleb Smirnoff bge_free_rx_ring_std(struct bge_softc *sc)
143795d67482SBill Paul {
143895d67482SBill Paul int i;
143995d67482SBill Paul
144095d67482SBill Paul for (i = 0; i < BGE_STD_RX_RING_CNT; i++) {
144195d67482SBill Paul if (sc->bge_cdata.bge_rx_std_chain[i] != NULL) {
14420ac56796SPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_rx_mtag,
1443e65bed95SPyun YongHyeon sc->bge_cdata.bge_rx_std_dmamap[i],
1444e65bed95SPyun YongHyeon BUS_DMASYNC_POSTREAD);
14450ac56796SPyun YongHyeon bus_dmamap_unload(sc->bge_cdata.bge_rx_mtag,
1446f41ac2beSBill Paul sc->bge_cdata.bge_rx_std_dmamap[i]);
1447e65bed95SPyun YongHyeon m_freem(sc->bge_cdata.bge_rx_std_chain[i]);
1448e65bed95SPyun YongHyeon sc->bge_cdata.bge_rx_std_chain[i] = NULL;
144995d67482SBill Paul }
1450f41ac2beSBill Paul bzero((char *)&sc->bge_ldata.bge_rx_std_ring[i],
145195d67482SBill Paul sizeof(struct bge_rx_bd));
145295d67482SBill Paul }
145395d67482SBill Paul }
145495d67482SBill Paul
145595d67482SBill Paul static int
bge_init_rx_ring_jumbo(struct bge_softc * sc)14563f74909aSGleb Smirnoff bge_init_rx_ring_jumbo(struct bge_softc *sc)
145795d67482SBill Paul {
145895d67482SBill Paul struct bge_rcb *rcb;
14593ee5d7daSPyun YongHyeon int error, i;
146095d67482SBill Paul
1461e6bf277eSPyun YongHyeon bzero(sc->bge_ldata.bge_rx_jumbo_ring, BGE_JUMBO_RX_RING_SZ);
146203e78bd0SPyun YongHyeon sc->bge_jumbo = 0;
146395d67482SBill Paul for (i = 0; i < BGE_JUMBO_RX_RING_CNT; i++) {
1464943787f3SPyun YongHyeon if ((error = bge_newbuf_jumbo(sc, i)) != 0)
14653ee5d7daSPyun YongHyeon return (error);
146603e78bd0SPyun YongHyeon BGE_INC(sc->bge_jumbo, BGE_JUMBO_RX_RING_CNT);
14671888f324SPyun YongHyeon }
146895d67482SBill Paul
1469f41ac2beSBill Paul bus_dmamap_sync(sc->bge_cdata.bge_rx_jumbo_ring_tag,
1470d77e9fa7SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_ring_map, BUS_DMASYNC_PREWRITE);
1471f41ac2beSBill Paul
1472e0b7b101SPyun YongHyeon sc->bge_jumbo = 0;
147395d67482SBill Paul
14748a315a6dSPyun YongHyeon /* Enable the jumbo receive producer ring. */
1475f41ac2beSBill Paul rcb = &sc->bge_ldata.bge_info.bge_jumbo_rx_rcb;
14768a315a6dSPyun YongHyeon rcb->bge_maxlen_flags =
14778a315a6dSPyun YongHyeon BGE_RCB_MAXLEN_FLAGS(0, BGE_RCB_FLAG_USE_EXT_RX_BD);
147867111612SJohn Polstra CSR_WRITE_4(sc, BGE_RX_JUMBO_RCB_MAXLEN_FLAGS, rcb->bge_maxlen_flags);
147995d67482SBill Paul
1480e0b7b101SPyun YongHyeon bge_writembx(sc, BGE_MBX_RX_JUMBO_PROD_LO, BGE_JUMBO_RX_RING_CNT - 1);
148195d67482SBill Paul
148295d67482SBill Paul return (0);
148395d67482SBill Paul }
148495d67482SBill Paul
148595d67482SBill Paul static void
bge_free_rx_ring_jumbo(struct bge_softc * sc)14863f74909aSGleb Smirnoff bge_free_rx_ring_jumbo(struct bge_softc *sc)
148795d67482SBill Paul {
148895d67482SBill Paul int i;
148995d67482SBill Paul
149095d67482SBill Paul for (i = 0; i < BGE_JUMBO_RX_RING_CNT; i++) {
149195d67482SBill Paul if (sc->bge_cdata.bge_rx_jumbo_chain[i] != NULL) {
1492e65bed95SPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_mtag_jumbo,
1493e65bed95SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_dmamap[i],
1494e65bed95SPyun YongHyeon BUS_DMASYNC_POSTREAD);
1495f41ac2beSBill Paul bus_dmamap_unload(sc->bge_cdata.bge_mtag_jumbo,
1496f41ac2beSBill Paul sc->bge_cdata.bge_rx_jumbo_dmamap[i]);
1497e65bed95SPyun YongHyeon m_freem(sc->bge_cdata.bge_rx_jumbo_chain[i]);
1498e65bed95SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_chain[i] = NULL;
149995d67482SBill Paul }
1500f41ac2beSBill Paul bzero((char *)&sc->bge_ldata.bge_rx_jumbo_ring[i],
15011be6acb7SGleb Smirnoff sizeof(struct bge_extrx_bd));
150295d67482SBill Paul }
150395d67482SBill Paul }
150495d67482SBill Paul
150595d67482SBill Paul static void
bge_free_tx_ring(struct bge_softc * sc)15063f74909aSGleb Smirnoff bge_free_tx_ring(struct bge_softc *sc)
150795d67482SBill Paul {
150895d67482SBill Paul int i;
150995d67482SBill Paul
1510f41ac2beSBill Paul if (sc->bge_ldata.bge_tx_ring == NULL)
151195d67482SBill Paul return;
151295d67482SBill Paul
151395d67482SBill Paul for (i = 0; i < BGE_TX_RING_CNT; i++) {
151495d67482SBill Paul if (sc->bge_cdata.bge_tx_chain[i] != NULL) {
15150ac56796SPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_tx_mtag,
1516e65bed95SPyun YongHyeon sc->bge_cdata.bge_tx_dmamap[i],
1517e65bed95SPyun YongHyeon BUS_DMASYNC_POSTWRITE);
15180ac56796SPyun YongHyeon bus_dmamap_unload(sc->bge_cdata.bge_tx_mtag,
1519f41ac2beSBill Paul sc->bge_cdata.bge_tx_dmamap[i]);
1520e65bed95SPyun YongHyeon m_freem(sc->bge_cdata.bge_tx_chain[i]);
1521e65bed95SPyun YongHyeon sc->bge_cdata.bge_tx_chain[i] = NULL;
152295d67482SBill Paul }
1523f41ac2beSBill Paul bzero((char *)&sc->bge_ldata.bge_tx_ring[i],
152495d67482SBill Paul sizeof(struct bge_tx_bd));
152595d67482SBill Paul }
152695d67482SBill Paul }
152795d67482SBill Paul
152895d67482SBill Paul static int
bge_init_tx_ring(struct bge_softc * sc)15293f74909aSGleb Smirnoff bge_init_tx_ring(struct bge_softc *sc)
153095d67482SBill Paul {
153195d67482SBill Paul sc->bge_txcnt = 0;
153295d67482SBill Paul sc->bge_tx_saved_considx = 0;
15333927098fSPaul Saab
1534e6bf277eSPyun YongHyeon bzero(sc->bge_ldata.bge_tx_ring, BGE_TX_RING_SZ);
1535e6bf277eSPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_tx_ring_tag,
15365c1da2faSPyun YongHyeon sc->bge_cdata.bge_tx_ring_map, BUS_DMASYNC_PREWRITE);
1537e6bf277eSPyun YongHyeon
153814bbd30fSGleb Smirnoff /* Initialize transmit producer index for host-memory send ring. */
153914bbd30fSGleb Smirnoff sc->bge_tx_prodidx = 0;
154038cc658fSJohn Baldwin bge_writembx(sc, BGE_MBX_TX_HOST_PROD0_LO, sc->bge_tx_prodidx);
154114bbd30fSGleb Smirnoff
15423927098fSPaul Saab /* 5700 b2 errata */
1543e0ced696SPaul Saab if (sc->bge_chiprev == BGE_CHIPREV_5700_BX)
154438cc658fSJohn Baldwin bge_writembx(sc, BGE_MBX_TX_HOST_PROD0_LO, sc->bge_tx_prodidx);
15453927098fSPaul Saab
154614bbd30fSGleb Smirnoff /* NIC-memory send ring not used; initialize to zero. */
154738cc658fSJohn Baldwin bge_writembx(sc, BGE_MBX_TX_NIC_PROD0_LO, 0);
15483927098fSPaul Saab /* 5700 b2 errata */
1549e0ced696SPaul Saab if (sc->bge_chiprev == BGE_CHIPREV_5700_BX)
155038cc658fSJohn Baldwin bge_writembx(sc, BGE_MBX_TX_NIC_PROD0_LO, 0);
155195d67482SBill Paul
155295d67482SBill Paul return (0);
155395d67482SBill Paul }
155495d67482SBill Paul
155595d67482SBill Paul static void
bge_setpromisc(struct bge_softc * sc)15563e9b1bcaSJung-uk Kim bge_setpromisc(struct bge_softc *sc)
15573e9b1bcaSJung-uk Kim {
1558fba8b109SMarcel Moolenaar if_t ifp;
15593e9b1bcaSJung-uk Kim
15603e9b1bcaSJung-uk Kim BGE_LOCK_ASSERT(sc);
15613e9b1bcaSJung-uk Kim
15623e9b1bcaSJung-uk Kim ifp = sc->bge_ifp;
15633e9b1bcaSJung-uk Kim
156445ee6ab3SJung-uk Kim /* Enable or disable promiscuous mode as needed. */
1565fba8b109SMarcel Moolenaar if (if_getflags(ifp) & IFF_PROMISC)
156645ee6ab3SJung-uk Kim BGE_SETBIT(sc, BGE_RX_MODE, BGE_RXMODE_RX_PROMISC);
15673e9b1bcaSJung-uk Kim else
156845ee6ab3SJung-uk Kim BGE_CLRBIT(sc, BGE_RX_MODE, BGE_RXMODE_RX_PROMISC);
15693e9b1bcaSJung-uk Kim }
15703e9b1bcaSJung-uk Kim
15710322ca23SGleb Smirnoff static u_int
bge_hash_maddr(void * arg,struct sockaddr_dl * sdl,u_int cnt)15720322ca23SGleb Smirnoff bge_hash_maddr(void *arg, struct sockaddr_dl *sdl, u_int cnt)
15730322ca23SGleb Smirnoff {
15740322ca23SGleb Smirnoff uint32_t *hashes = arg;
15750322ca23SGleb Smirnoff int h;
15760322ca23SGleb Smirnoff
15770322ca23SGleb Smirnoff h = ether_crc32_le(LLADDR(sdl), ETHER_ADDR_LEN) & 0x7F;
15780322ca23SGleb Smirnoff hashes[(h & 0x60) >> 5] |= 1 << (h & 0x1F);
15790322ca23SGleb Smirnoff
15800322ca23SGleb Smirnoff return (1);
15810322ca23SGleb Smirnoff }
15820322ca23SGleb Smirnoff
15833e9b1bcaSJung-uk Kim static void
bge_setmulti(struct bge_softc * sc)15843f74909aSGleb Smirnoff bge_setmulti(struct bge_softc *sc)
158595d67482SBill Paul {
1586fba8b109SMarcel Moolenaar if_t ifp;
15873f74909aSGleb Smirnoff uint32_t hashes[4] = { 0, 0, 0, 0 };
15880322ca23SGleb Smirnoff int i;
158995d67482SBill Paul
15900f9bd73bSSam Leffler BGE_LOCK_ASSERT(sc);
15910f9bd73bSSam Leffler
1592fc74a9f9SBrooks Davis ifp = sc->bge_ifp;
159395d67482SBill Paul
1594fba8b109SMarcel Moolenaar if (if_getflags(ifp) & IFF_ALLMULTI || if_getflags(ifp) & IFF_PROMISC) {
159595d67482SBill Paul for (i = 0; i < 4; i++)
15960c8aa4eaSJung-uk Kim CSR_WRITE_4(sc, BGE_MAR0 + (i * 4), 0xFFFFFFFF);
159795d67482SBill Paul return;
159895d67482SBill Paul }
159995d67482SBill Paul
160095d67482SBill Paul /* First, zot all the existing filters. */
160195d67482SBill Paul for (i = 0; i < 4; i++)
160295d67482SBill Paul CSR_WRITE_4(sc, BGE_MAR0 + (i * 4), 0);
160395d67482SBill Paul
16040322ca23SGleb Smirnoff if_foreach_llmaddr(ifp, bge_hash_maddr, hashes);
160595d67482SBill Paul
160695d67482SBill Paul for (i = 0; i < 4; i++)
160795d67482SBill Paul CSR_WRITE_4(sc, BGE_MAR0 + (i * 4), hashes[i]);
160895d67482SBill Paul }
160995d67482SBill Paul
16108cb1383cSDoug Ambrisko static void
bge_setvlan(struct bge_softc * sc)1611cb2eacc7SYaroslav Tykhiy bge_setvlan(struct bge_softc *sc)
1612cb2eacc7SYaroslav Tykhiy {
1613fba8b109SMarcel Moolenaar if_t ifp;
1614cb2eacc7SYaroslav Tykhiy
1615cb2eacc7SYaroslav Tykhiy BGE_LOCK_ASSERT(sc);
1616cb2eacc7SYaroslav Tykhiy
1617cb2eacc7SYaroslav Tykhiy ifp = sc->bge_ifp;
1618cb2eacc7SYaroslav Tykhiy
1619cb2eacc7SYaroslav Tykhiy /* Enable or disable VLAN tag stripping as needed. */
1620fba8b109SMarcel Moolenaar if (if_getcapenable(ifp) & IFCAP_VLAN_HWTAGGING)
1621cb2eacc7SYaroslav Tykhiy BGE_CLRBIT(sc, BGE_RX_MODE, BGE_RXMODE_RX_KEEP_VLAN_DIAG);
1622cb2eacc7SYaroslav Tykhiy else
1623cb2eacc7SYaroslav Tykhiy BGE_SETBIT(sc, BGE_RX_MODE, BGE_RXMODE_RX_KEEP_VLAN_DIAG);
1624cb2eacc7SYaroslav Tykhiy }
1625cb2eacc7SYaroslav Tykhiy
1626cb2eacc7SYaroslav Tykhiy static void
bge_sig_pre_reset(struct bge_softc * sc,int type)1627797ab05eSPyun YongHyeon bge_sig_pre_reset(struct bge_softc *sc, int type)
16288cb1383cSDoug Ambrisko {
1629797ab05eSPyun YongHyeon
16308cb1383cSDoug Ambrisko /*
16318cb1383cSDoug Ambrisko * Some chips don't like this so only do this if ASF is enabled
16328cb1383cSDoug Ambrisko */
16338cb1383cSDoug Ambrisko if (sc->bge_asf_mode)
1634888b47f0SPyun YongHyeon bge_writemem_ind(sc, BGE_SRAM_FW_MB, BGE_SRAM_FW_MB_MAGIC);
16358cb1383cSDoug Ambrisko
16368cb1383cSDoug Ambrisko if (sc->bge_asf_mode & ASF_NEW_HANDSHAKE) {
16378cb1383cSDoug Ambrisko switch (type) {
16388cb1383cSDoug Ambrisko case BGE_RESET_START:
1639224f8785SPyun YongHyeon bge_writemem_ind(sc, BGE_SRAM_FW_DRV_STATE_MB,
1640224f8785SPyun YongHyeon BGE_FW_DRV_STATE_START);
16418cb1383cSDoug Ambrisko break;
1642548c8f1aSPyun YongHyeon case BGE_RESET_SHUTDOWN:
1643224f8785SPyun YongHyeon bge_writemem_ind(sc, BGE_SRAM_FW_DRV_STATE_MB,
1644224f8785SPyun YongHyeon BGE_FW_DRV_STATE_UNLOAD);
16458cb1383cSDoug Ambrisko break;
1646548c8f1aSPyun YongHyeon case BGE_RESET_SUSPEND:
1647548c8f1aSPyun YongHyeon bge_writemem_ind(sc, BGE_SRAM_FW_DRV_STATE_MB,
1648548c8f1aSPyun YongHyeon BGE_FW_DRV_STATE_SUSPEND);
1649548c8f1aSPyun YongHyeon break;
16508cb1383cSDoug Ambrisko }
16518cb1383cSDoug Ambrisko }
1652548c8f1aSPyun YongHyeon
1653548c8f1aSPyun YongHyeon if (type == BGE_RESET_START || type == BGE_RESET_SUSPEND)
1654548c8f1aSPyun YongHyeon bge_ape_driver_state_change(sc, type);
16558cb1383cSDoug Ambrisko }
16568cb1383cSDoug Ambrisko
16578cb1383cSDoug Ambrisko static void
bge_sig_post_reset(struct bge_softc * sc,int type)1658797ab05eSPyun YongHyeon bge_sig_post_reset(struct bge_softc *sc, int type)
16598cb1383cSDoug Ambrisko {
1660797ab05eSPyun YongHyeon
16618cb1383cSDoug Ambrisko if (sc->bge_asf_mode & ASF_NEW_HANDSHAKE) {
16628cb1383cSDoug Ambrisko switch (type) {
16638cb1383cSDoug Ambrisko case BGE_RESET_START:
1664224f8785SPyun YongHyeon bge_writemem_ind(sc, BGE_SRAM_FW_DRV_STATE_MB,
1665224f8785SPyun YongHyeon BGE_FW_DRV_STATE_START_DONE);
16668cb1383cSDoug Ambrisko /* START DONE */
16678cb1383cSDoug Ambrisko break;
1668548c8f1aSPyun YongHyeon case BGE_RESET_SHUTDOWN:
1669224f8785SPyun YongHyeon bge_writemem_ind(sc, BGE_SRAM_FW_DRV_STATE_MB,
1670224f8785SPyun YongHyeon BGE_FW_DRV_STATE_UNLOAD_DONE);
16718cb1383cSDoug Ambrisko break;
16728cb1383cSDoug Ambrisko }
16738cb1383cSDoug Ambrisko }
1674548c8f1aSPyun YongHyeon if (type == BGE_RESET_SHUTDOWN)
1675548c8f1aSPyun YongHyeon bge_ape_driver_state_change(sc, type);
16768cb1383cSDoug Ambrisko }
16778cb1383cSDoug Ambrisko
16788cb1383cSDoug Ambrisko static void
bge_sig_legacy(struct bge_softc * sc,int type)1679797ab05eSPyun YongHyeon bge_sig_legacy(struct bge_softc *sc, int type)
16808cb1383cSDoug Ambrisko {
1681797ab05eSPyun YongHyeon
16828cb1383cSDoug Ambrisko if (sc->bge_asf_mode) {
16838cb1383cSDoug Ambrisko switch (type) {
16848cb1383cSDoug Ambrisko case BGE_RESET_START:
1685224f8785SPyun YongHyeon bge_writemem_ind(sc, BGE_SRAM_FW_DRV_STATE_MB,
1686224f8785SPyun YongHyeon BGE_FW_DRV_STATE_START);
16878cb1383cSDoug Ambrisko break;
1688548c8f1aSPyun YongHyeon case BGE_RESET_SHUTDOWN:
1689224f8785SPyun YongHyeon bge_writemem_ind(sc, BGE_SRAM_FW_DRV_STATE_MB,
1690224f8785SPyun YongHyeon BGE_FW_DRV_STATE_UNLOAD);
16918cb1383cSDoug Ambrisko break;
16928cb1383cSDoug Ambrisko }
16938cb1383cSDoug Ambrisko }
16948cb1383cSDoug Ambrisko }
16958cb1383cSDoug Ambrisko
1696797ab05eSPyun YongHyeon static void
bge_stop_fw(struct bge_softc * sc)1697797ab05eSPyun YongHyeon bge_stop_fw(struct bge_softc *sc)
16988cb1383cSDoug Ambrisko {
16998cb1383cSDoug Ambrisko int i;
17008cb1383cSDoug Ambrisko
17018cb1383cSDoug Ambrisko if (sc->bge_asf_mode) {
17023c201200SPyun YongHyeon bge_writemem_ind(sc, BGE_SRAM_FW_CMD_MB, BGE_FW_CMD_PAUSE);
17033fed2d5dSPyun YongHyeon CSR_WRITE_4(sc, BGE_RX_CPU_EVENT,
17049931ba85SPyun YongHyeon CSR_READ_4(sc, BGE_RX_CPU_EVENT) | BGE_RX_CPU_DRV_EVENT);
17058cb1383cSDoug Ambrisko
17068cb1383cSDoug Ambrisko for (i = 0; i < 100; i++ ) {
17079931ba85SPyun YongHyeon if (!(CSR_READ_4(sc, BGE_RX_CPU_EVENT) &
17089931ba85SPyun YongHyeon BGE_RX_CPU_DRV_EVENT))
17098cb1383cSDoug Ambrisko break;
17108cb1383cSDoug Ambrisko DELAY(10);
17118cb1383cSDoug Ambrisko }
17128cb1383cSDoug Ambrisko }
17138cb1383cSDoug Ambrisko }
17148cb1383cSDoug Ambrisko
171550515680SPyun YongHyeon static uint32_t
bge_dma_swap_options(struct bge_softc * sc)171650515680SPyun YongHyeon bge_dma_swap_options(struct bge_softc *sc)
171750515680SPyun YongHyeon {
171850515680SPyun YongHyeon uint32_t dma_options;
171950515680SPyun YongHyeon
172050515680SPyun YongHyeon dma_options = BGE_MODECTL_WORDSWAP_NONFRAME |
172150515680SPyun YongHyeon BGE_MODECTL_BYTESWAP_DATA | BGE_MODECTL_WORDSWAP_DATA;
172250515680SPyun YongHyeon #if BYTE_ORDER == BIG_ENDIAN
172350515680SPyun YongHyeon dma_options |= BGE_MODECTL_BYTESWAP_NONFRAME;
172450515680SPyun YongHyeon #endif
172550515680SPyun YongHyeon return (dma_options);
172650515680SPyun YongHyeon }
172750515680SPyun YongHyeon
172895d67482SBill Paul /*
1729c9ffd9f0SMarius Strobl * Do endian, PCI and DMA initialization.
173095d67482SBill Paul */
173195d67482SBill Paul static int
bge_chipinit(struct bge_softc * sc)17323f74909aSGleb Smirnoff bge_chipinit(struct bge_softc *sc)
173395d67482SBill Paul {
173450515680SPyun YongHyeon uint32_t dma_rw_ctl, misc_ctl, mode_ctl;
1735fbc374afSPyun YongHyeon uint16_t val;
173695d67482SBill Paul int i;
173795d67482SBill Paul
17388cb1383cSDoug Ambrisko /* Set endianness before we access any non-PCI registers. */
17391108273aSPyun YongHyeon misc_ctl = BGE_INIT;
17401108273aSPyun YongHyeon if (sc->bge_flags & BGE_FLAG_TAGGED_STATUS)
17411108273aSPyun YongHyeon misc_ctl |= BGE_PCIMISCCTL_TAGGED_STATUS;
17421108273aSPyun YongHyeon pci_write_config(sc->bge_dev, BGE_PCI_MISC_CTL, misc_ctl, 4);
174395d67482SBill Paul
174495d67482SBill Paul /*
174595d67482SBill Paul * Clear the MAC statistics block in the NIC's
174695d67482SBill Paul * internal memory.
174795d67482SBill Paul */
174895d67482SBill Paul for (i = BGE_STATS_BLOCK;
17493f74909aSGleb Smirnoff i < BGE_STATS_BLOCK_END + 1; i += sizeof(uint32_t))
175095d67482SBill Paul BGE_MEMWIN_WRITE(sc, i, 0);
175195d67482SBill Paul
175295d67482SBill Paul for (i = BGE_STATUS_BLOCK;
17533f74909aSGleb Smirnoff i < BGE_STATUS_BLOCK_END + 1; i += sizeof(uint32_t))
175495d67482SBill Paul BGE_MEMWIN_WRITE(sc, i, 0);
175595d67482SBill Paul
1756fbc374afSPyun YongHyeon if (sc->bge_chiprev == BGE_CHIPREV_5704_BX) {
1757fbc374afSPyun YongHyeon /*
1758d896b3feSPyun YongHyeon * Fix data corruption caused by non-qword write with WB.
1759fbc374afSPyun YongHyeon * Fix master abort in PCI mode.
1760fbc374afSPyun YongHyeon * Fix PCI latency timer.
1761fbc374afSPyun YongHyeon */
1762fbc374afSPyun YongHyeon val = pci_read_config(sc->bge_dev, BGE_PCI_MSI_DATA + 2, 2);
1763fbc374afSPyun YongHyeon val |= (1 << 10) | (1 << 12) | (1 << 13);
1764fbc374afSPyun YongHyeon pci_write_config(sc->bge_dev, BGE_PCI_MSI_DATA + 2, val, 2);
1765fbc374afSPyun YongHyeon }
1766fbc374afSPyun YongHyeon
1767f8bb33c3SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM57765 ||
1768f8bb33c3SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM57766) {
1769f8bb33c3SPyun YongHyeon /*
1770f8bb33c3SPyun YongHyeon * For the 57766 and non Ax versions of 57765, bootcode
1771f8bb33c3SPyun YongHyeon * needs to setup the PCIE Fast Training Sequence (FTS)
1772f8bb33c3SPyun YongHyeon * value to prevent transmit hangs.
1773f8bb33c3SPyun YongHyeon */
1774f8bb33c3SPyun YongHyeon if (sc->bge_chiprev != BGE_CHIPREV_57765_AX) {
1775f8bb33c3SPyun YongHyeon CSR_WRITE_4(sc, BGE_CPMU_PADRNG_CTL,
1776f8bb33c3SPyun YongHyeon CSR_READ_4(sc, BGE_CPMU_PADRNG_CTL) |
1777f8bb33c3SPyun YongHyeon BGE_CPMU_PADRNG_CTL_RDIV2);
1778f8bb33c3SPyun YongHyeon }
1779f8bb33c3SPyun YongHyeon }
1780f8bb33c3SPyun YongHyeon
1781186f842bSJung-uk Kim /*
1782186f842bSJung-uk Kim * Set up the PCI DMA control register.
1783186f842bSJung-uk Kim */
1784186f842bSJung-uk Kim dma_rw_ctl = BGE_PCIDMARWCTL_RD_CMD_SHIFT(6) |
1785186f842bSJung-uk Kim BGE_PCIDMARWCTL_WR_CMD_SHIFT(7);
1786652ae483SGleb Smirnoff if (sc->bge_flags & BGE_FLAG_PCIE) {
178748630d79SPyun YongHyeon if (sc->bge_mps >= 256)
178848630d79SPyun YongHyeon dma_rw_ctl |= BGE_PCIDMARWCTL_WR_WAT_SHIFT(7);
178948630d79SPyun YongHyeon else
1790186f842bSJung-uk Kim dma_rw_ctl |= BGE_PCIDMARWCTL_WR_WAT_SHIFT(3);
1791652ae483SGleb Smirnoff } else if (sc->bge_flags & BGE_FLAG_PCIX) {
17924c0da0ffSGleb Smirnoff if (BGE_IS_5714_FAMILY(sc)) {
1793186f842bSJung-uk Kim /* 256 bytes for read and write. */
1794186f842bSJung-uk Kim dma_rw_ctl |= BGE_PCIDMARWCTL_RD_WAT_SHIFT(2) |
1795186f842bSJung-uk Kim BGE_PCIDMARWCTL_WR_WAT_SHIFT(2);
1796186f842bSJung-uk Kim dma_rw_ctl |= (sc->bge_asicrev == BGE_ASICREV_BCM5780) ?
1797186f842bSJung-uk Kim BGE_PCIDMARWCTL_ONEDMA_ATONCE_GLOBAL :
1798186f842bSJung-uk Kim BGE_PCIDMARWCTL_ONEDMA_ATONCE_LOCAL;
1799cbb2b2feSPyun YongHyeon } else if (sc->bge_asicrev == BGE_ASICREV_BCM5703) {
1800cbb2b2feSPyun YongHyeon /*
1801cbb2b2feSPyun YongHyeon * In the BCM5703, the DMA read watermark should
1802cbb2b2feSPyun YongHyeon * be set to less than or equal to the maximum
1803cbb2b2feSPyun YongHyeon * memory read byte count of the PCI-X command
1804cbb2b2feSPyun YongHyeon * register.
1805cbb2b2feSPyun YongHyeon */
1806cbb2b2feSPyun YongHyeon dma_rw_ctl |= BGE_PCIDMARWCTL_RD_WAT_SHIFT(4) |
1807cbb2b2feSPyun YongHyeon BGE_PCIDMARWCTL_WR_WAT_SHIFT(3);
1808186f842bSJung-uk Kim } else if (sc->bge_asicrev == BGE_ASICREV_BCM5704) {
1809186f842bSJung-uk Kim /* 1536 bytes for read, 384 bytes for write. */
1810186f842bSJung-uk Kim dma_rw_ctl |= BGE_PCIDMARWCTL_RD_WAT_SHIFT(7) |
1811186f842bSJung-uk Kim BGE_PCIDMARWCTL_WR_WAT_SHIFT(3);
1812186f842bSJung-uk Kim } else {
1813186f842bSJung-uk Kim /* 384 bytes for read and write. */
1814186f842bSJung-uk Kim dma_rw_ctl |= BGE_PCIDMARWCTL_RD_WAT_SHIFT(3) |
1815186f842bSJung-uk Kim BGE_PCIDMARWCTL_WR_WAT_SHIFT(3) |
18160c8aa4eaSJung-uk Kim 0x0F;
1817186f842bSJung-uk Kim }
1818e0ced696SPaul Saab if (sc->bge_asicrev == BGE_ASICREV_BCM5703 ||
1819e0ced696SPaul Saab sc->bge_asicrev == BGE_ASICREV_BCM5704) {
18203f74909aSGleb Smirnoff uint32_t tmp;
18215cba12d3SPaul Saab
1822186f842bSJung-uk Kim /* Set ONE_DMA_AT_ONCE for hardware workaround. */
18230c8aa4eaSJung-uk Kim tmp = CSR_READ_4(sc, BGE_PCI_CLKCTL) & 0x1F;
1824186f842bSJung-uk Kim if (tmp == 6 || tmp == 7)
1825186f842bSJung-uk Kim dma_rw_ctl |=
1826186f842bSJung-uk Kim BGE_PCIDMARWCTL_ONEDMA_ATONCE_GLOBAL;
18275cba12d3SPaul Saab
1828186f842bSJung-uk Kim /* Set PCI-X DMA write workaround. */
1829186f842bSJung-uk Kim dma_rw_ctl |= BGE_PCIDMARWCTL_ASRT_ALL_BE;
1830186f842bSJung-uk Kim }
1831186f842bSJung-uk Kim } else {
1832186f842bSJung-uk Kim /* Conventional PCI bus: 256 bytes for read and write. */
1833186f842bSJung-uk Kim dma_rw_ctl |= BGE_PCIDMARWCTL_RD_WAT_SHIFT(7) |
1834186f842bSJung-uk Kim BGE_PCIDMARWCTL_WR_WAT_SHIFT(7);
1835186f842bSJung-uk Kim
1836186f842bSJung-uk Kim if (sc->bge_asicrev != BGE_ASICREV_BCM5705 &&
1837186f842bSJung-uk Kim sc->bge_asicrev != BGE_ASICREV_BCM5750)
1838186f842bSJung-uk Kim dma_rw_ctl |= 0x0F;
1839186f842bSJung-uk Kim }
1840186f842bSJung-uk Kim if (sc->bge_asicrev == BGE_ASICREV_BCM5700 ||
1841186f842bSJung-uk Kim sc->bge_asicrev == BGE_ASICREV_BCM5701)
1842186f842bSJung-uk Kim dma_rw_ctl |= BGE_PCIDMARWCTL_USE_MRM |
1843186f842bSJung-uk Kim BGE_PCIDMARWCTL_ASRT_ALL_BE;
1844e0ced696SPaul Saab if (sc->bge_asicrev == BGE_ASICREV_BCM5703 ||
1845186f842bSJung-uk Kim sc->bge_asicrev == BGE_ASICREV_BCM5704)
18465cba12d3SPaul Saab dma_rw_ctl &= ~BGE_PCIDMARWCTL_MINDMA;
1847b4a256acSPyun YongHyeon if (BGE_IS_5717_PLUS(sc)) {
18481108273aSPyun YongHyeon dma_rw_ctl &= ~BGE_PCIDMARWCTL_DIS_CACHE_ALIGNMENT;
1849b4a256acSPyun YongHyeon if (sc->bge_chipid == BGE_CHIPID_BCM57765_A0)
1850b4a256acSPyun YongHyeon dma_rw_ctl &= ~BGE_PCIDMARWCTL_CRDRDR_RDMA_MRRS_MSK;
1851bbe2ca75SPyun YongHyeon /*
1852bbe2ca75SPyun YongHyeon * Enable HW workaround for controllers that misinterpret
1853bbe2ca75SPyun YongHyeon * a status tag update and leave interrupts permanently
1854bbe2ca75SPyun YongHyeon * disabled.
1855bbe2ca75SPyun YongHyeon */
18562927f01fSPyun YongHyeon if (!BGE_IS_57765_PLUS(sc) &&
18572927f01fSPyun YongHyeon sc->bge_asicrev != BGE_ASICREV_BCM5717 &&
18582927f01fSPyun YongHyeon sc->bge_asicrev != BGE_ASICREV_BCM5762)
1859bbe2ca75SPyun YongHyeon dma_rw_ctl |= BGE_PCIDMARWCTL_TAGGED_STATUS_WA;
1860b4a256acSPyun YongHyeon }
18615cba12d3SPaul Saab pci_write_config(sc->bge_dev, BGE_PCI_DMA_RW_CTL, dma_rw_ctl, 4);
186295d67482SBill Paul
186395d67482SBill Paul /*
186495d67482SBill Paul * Set up general mode register.
186595d67482SBill Paul */
1866548c8f1aSPyun YongHyeon mode_ctl = bge_dma_swap_options(sc);
18672927f01fSPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5720 ||
18682927f01fSPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5762) {
1869548c8f1aSPyun YongHyeon /* Retain Host-2-BMC settings written by APE firmware. */
1870548c8f1aSPyun YongHyeon mode_ctl |= CSR_READ_4(sc, BGE_MODE_CTL) &
1871548c8f1aSPyun YongHyeon (BGE_MODECTL_BYTESWAP_B2HRX_DATA |
1872548c8f1aSPyun YongHyeon BGE_MODECTL_WORDSWAP_B2HRX_DATA |
1873548c8f1aSPyun YongHyeon BGE_MODECTL_B2HRX_ENABLE | BGE_MODECTL_HTX2B_ENABLE);
1874548c8f1aSPyun YongHyeon }
1875548c8f1aSPyun YongHyeon mode_ctl |= BGE_MODECTL_MAC_ATTN_INTR | BGE_MODECTL_HOST_SEND_BDS |
1876548c8f1aSPyun YongHyeon BGE_MODECTL_TX_NO_PHDR_CSUM;
187795d67482SBill Paul
187895d67482SBill Paul /*
187990447aadSMarius Strobl * BCM5701 B5 have a bug causing data corruption when using
188090447aadSMarius Strobl * 64-bit DMA reads, which can be terminated early and then
188190447aadSMarius Strobl * completed later as 32-bit accesses, in combination with
188290447aadSMarius Strobl * certain bridges.
188390447aadSMarius Strobl */
188490447aadSMarius Strobl if (sc->bge_asicrev == BGE_ASICREV_BCM5701 &&
188590447aadSMarius Strobl sc->bge_chipid == BGE_CHIPID_BCM5701_B5)
188650515680SPyun YongHyeon mode_ctl |= BGE_MODECTL_FORCE_PCI32;
188790447aadSMarius Strobl
188890447aadSMarius Strobl /*
18898cb1383cSDoug Ambrisko * Tell the firmware the driver is running
18908cb1383cSDoug Ambrisko */
18918cb1383cSDoug Ambrisko if (sc->bge_asf_mode & ASF_STACKUP)
189250515680SPyun YongHyeon mode_ctl |= BGE_MODECTL_STACKUP;
189350515680SPyun YongHyeon
189450515680SPyun YongHyeon CSR_WRITE_4(sc, BGE_MODE_CTL, mode_ctl);
18958cb1383cSDoug Ambrisko
18968cb1383cSDoug Ambrisko /*
1897ea13bdd5SJohn Polstra * Disable memory write invalidate. Apparently it is not supported
189840438c47SMarius Strobl * properly by these devices.
189995d67482SBill Paul */
190040438c47SMarius Strobl PCI_CLRBIT(sc->bge_dev, BGE_PCI_CMD, PCIM_CMD_MWIEN, 4);
190195d67482SBill Paul
1902d7acafa1SMarius Strobl /* Set the timer prescaler (always 66 MHz). */
19030c8aa4eaSJung-uk Kim CSR_WRITE_4(sc, BGE_MISC_CFG, BGE_32BITTIME_66MHZ);
190495d67482SBill Paul
190538cc658fSJohn Baldwin /* XXX: The Linux tg3 driver does this at the start of brgphy_reset. */
190638cc658fSJohn Baldwin if (sc->bge_asicrev == BGE_ASICREV_BCM5906) {
190738cc658fSJohn Baldwin DELAY(40); /* XXX */
190838cc658fSJohn Baldwin
190938cc658fSJohn Baldwin /* Put PHY into ready state */
191038cc658fSJohn Baldwin BGE_CLRBIT(sc, BGE_MISC_CFG, BGE_MISCCFG_EPHY_IDDQ);
191138cc658fSJohn Baldwin CSR_READ_4(sc, BGE_MISC_CFG); /* Flush */
191238cc658fSJohn Baldwin DELAY(40);
191338cc658fSJohn Baldwin }
191438cc658fSJohn Baldwin
191595d67482SBill Paul return (0);
191695d67482SBill Paul }
191795d67482SBill Paul
191895d67482SBill Paul static int
bge_blockinit(struct bge_softc * sc)19193f74909aSGleb Smirnoff bge_blockinit(struct bge_softc *sc)
192095d67482SBill Paul {
192195d67482SBill Paul struct bge_rcb *rcb;
1922e907febfSPyun YongHyeon bus_size_t vrcb;
1923087f0d35SJustin Hibbits caddr_t lladdr;
1924e907febfSPyun YongHyeon bge_hostaddr taddr;
19252927f01fSPyun YongHyeon uint32_t dmactl, rdmareg, val;
19268a315a6dSPyun YongHyeon int i, limit;
192795d67482SBill Paul
192895d67482SBill Paul /*
192995d67482SBill Paul * Initialize the memory window pointer register so that
193095d67482SBill Paul * we can access the first 32K of internal NIC RAM. This will
193195d67482SBill Paul * allow us to set up the TX send ring RCBs and the RX return
193295d67482SBill Paul * ring RCBs, plus other things which live in NIC memory.
193395d67482SBill Paul */
193495d67482SBill Paul CSR_WRITE_4(sc, BGE_PCI_MEMWIN_BASEADDR, 0);
193595d67482SBill Paul
1936822f63fcSBill Paul /* Note: the BCM5704 has a smaller mbuf space than other chips. */
1937822f63fcSBill Paul
19387ee00338SJung-uk Kim if (!(BGE_IS_5705_PLUS(sc))) {
193995d67482SBill Paul /* Configure mbuf memory pool */
19400dae9719SJung-uk Kim CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_BASEADDR, BGE_BUFFPOOL_1);
1941822f63fcSBill Paul if (sc->bge_asicrev == BGE_ASICREV_BCM5704)
1942822f63fcSBill Paul CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_LEN, 0x10000);
1943822f63fcSBill Paul else
194495d67482SBill Paul CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_LEN, 0x18000);
194595d67482SBill Paul
194695d67482SBill Paul /* Configure DMA resource pool */
19470434d1b8SBill Paul CSR_WRITE_4(sc, BGE_BMAN_DMA_DESCPOOL_BASEADDR,
19480434d1b8SBill Paul BGE_DMA_DESCRIPTORS);
194995d67482SBill Paul CSR_WRITE_4(sc, BGE_BMAN_DMA_DESCPOOL_LEN, 0x2000);
19500434d1b8SBill Paul }
195195d67482SBill Paul
195295d67482SBill Paul /* Configure mbuf pool watermarks */
195350515680SPyun YongHyeon if (BGE_IS_5717_PLUS(sc)) {
19541108273aSPyun YongHyeon CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_READDMA_LOWAT, 0x0);
1955fba8b109SMarcel Moolenaar if (if_getmtu(sc->bge_ifp) > ETHERMTU) {
19561108273aSPyun YongHyeon CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_MACRX_LOWAT, 0x7e);
19571108273aSPyun YongHyeon CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_HIWAT, 0xea);
19581108273aSPyun YongHyeon } else {
19591108273aSPyun YongHyeon CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_MACRX_LOWAT, 0x2a);
19601108273aSPyun YongHyeon CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_HIWAT, 0xa0);
19611108273aSPyun YongHyeon }
19621108273aSPyun YongHyeon } else if (!BGE_IS_5705_PLUS(sc)) {
1963fa228020SPaul Saab CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_READDMA_LOWAT, 0x50);
1964fa228020SPaul Saab CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_MACRX_LOWAT, 0x20);
1965fa228020SPaul Saab CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_HIWAT, 0x60);
196638cc658fSJohn Baldwin } else if (sc->bge_asicrev == BGE_ASICREV_BCM5906) {
196738cc658fSJohn Baldwin CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_READDMA_LOWAT, 0x0);
196838cc658fSJohn Baldwin CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_MACRX_LOWAT, 0x04);
196938cc658fSJohn Baldwin CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_HIWAT, 0x10);
197038cc658fSJohn Baldwin } else {
197138cc658fSJohn Baldwin CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_READDMA_LOWAT, 0x0);
197238cc658fSJohn Baldwin CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_MACRX_LOWAT, 0x10);
197338cc658fSJohn Baldwin CSR_WRITE_4(sc, BGE_BMAN_MBUFPOOL_HIWAT, 0x60);
197438cc658fSJohn Baldwin }
197595d67482SBill Paul
197695d67482SBill Paul /* Configure DMA resource watermarks */
197795d67482SBill Paul CSR_WRITE_4(sc, BGE_BMAN_DMA_DESCPOOL_LOWAT, 5);
197895d67482SBill Paul CSR_WRITE_4(sc, BGE_BMAN_DMA_DESCPOOL_HIWAT, 10);
197995d67482SBill Paul
198095d67482SBill Paul /* Enable buffer manager */
1981bbe2ca75SPyun YongHyeon val = BGE_BMANMODE_ENABLE | BGE_BMANMODE_LOMBUF_ATTN;
1982bbe2ca75SPyun YongHyeon /*
1983bbe2ca75SPyun YongHyeon * Change the arbitration algorithm of TXMBUF read request to
1984bbe2ca75SPyun YongHyeon * round-robin instead of priority based for BCM5719. When
1985bbe2ca75SPyun YongHyeon * TXFIFO is almost empty, RDMA will hold its request until
1986bbe2ca75SPyun YongHyeon * TXFIFO is not almost empty.
1987bbe2ca75SPyun YongHyeon */
1988bbe2ca75SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5719)
1989bbe2ca75SPyun YongHyeon val |= BGE_BMANMODE_NO_TX_UNDERRUN;
1990bbe2ca75SPyun YongHyeon CSR_WRITE_4(sc, BGE_BMAN_MODE, val);
199195d67482SBill Paul
199295d67482SBill Paul /* Poll for buffer manager start indication */
199395d67482SBill Paul for (i = 0; i < BGE_TIMEOUT; i++) {
1994d5d23857SJung-uk Kim DELAY(10);
19950c8aa4eaSJung-uk Kim if (CSR_READ_4(sc, BGE_BMAN_MODE) & BGE_BMANMODE_ENABLE)
199695d67482SBill Paul break;
199795d67482SBill Paul }
199895d67482SBill Paul
199995d67482SBill Paul if (i == BGE_TIMEOUT) {
20005a147ba6SPyun YongHyeon device_printf(sc->bge_dev, "buffer manager failed to start\n");
200195d67482SBill Paul return (ENXIO);
200295d67482SBill Paul }
200395d67482SBill Paul
200495d67482SBill Paul /* Enable flow-through queues */
20050c8aa4eaSJung-uk Kim CSR_WRITE_4(sc, BGE_FTQ_RESET, 0xFFFFFFFF);
200695d67482SBill Paul CSR_WRITE_4(sc, BGE_FTQ_RESET, 0);
200795d67482SBill Paul
200895d67482SBill Paul /* Wait until queue initialization is complete */
200995d67482SBill Paul for (i = 0; i < BGE_TIMEOUT; i++) {
2010d5d23857SJung-uk Kim DELAY(10);
201195d67482SBill Paul if (CSR_READ_4(sc, BGE_FTQ_RESET) == 0)
201295d67482SBill Paul break;
201395d67482SBill Paul }
201495d67482SBill Paul
201595d67482SBill Paul if (i == BGE_TIMEOUT) {
2016fe806fdaSPyun YongHyeon device_printf(sc->bge_dev, "flow-through queue init failed\n");
201795d67482SBill Paul return (ENXIO);
201895d67482SBill Paul }
201995d67482SBill Paul
20208a315a6dSPyun YongHyeon /*
20218a315a6dSPyun YongHyeon * Summary of rings supported by the controller:
20228a315a6dSPyun YongHyeon *
20238a315a6dSPyun YongHyeon * Standard Receive Producer Ring
20248a315a6dSPyun YongHyeon * - This ring is used to feed receive buffers for "standard"
20258a315a6dSPyun YongHyeon * sized frames (typically 1536 bytes) to the controller.
20268a315a6dSPyun YongHyeon *
20278a315a6dSPyun YongHyeon * Jumbo Receive Producer Ring
20288a315a6dSPyun YongHyeon * - This ring is used to feed receive buffers for jumbo sized
20298a315a6dSPyun YongHyeon * frames (i.e. anything bigger than the "standard" frames)
20308a315a6dSPyun YongHyeon * to the controller.
20318a315a6dSPyun YongHyeon *
20328a315a6dSPyun YongHyeon * Mini Receive Producer Ring
20338a315a6dSPyun YongHyeon * - This ring is used to feed receive buffers for "mini"
20348a315a6dSPyun YongHyeon * sized frames to the controller.
20358a315a6dSPyun YongHyeon * - This feature required external memory for the controller
20368a315a6dSPyun YongHyeon * but was never used in a production system. Should always
20378a315a6dSPyun YongHyeon * be disabled.
20388a315a6dSPyun YongHyeon *
20398a315a6dSPyun YongHyeon * Receive Return Ring
20408a315a6dSPyun YongHyeon * - After the controller has placed an incoming frame into a
20418a315a6dSPyun YongHyeon * receive buffer that buffer is moved into a receive return
20428a315a6dSPyun YongHyeon * ring. The driver is then responsible to passing the
20438a315a6dSPyun YongHyeon * buffer up to the stack. Many versions of the controller
20448a315a6dSPyun YongHyeon * support multiple RR rings.
20458a315a6dSPyun YongHyeon *
20468a315a6dSPyun YongHyeon * Send Ring
20478a315a6dSPyun YongHyeon * - This ring is used for outgoing frames. Many versions of
20488a315a6dSPyun YongHyeon * the controller support multiple send rings.
20498a315a6dSPyun YongHyeon */
20508a315a6dSPyun YongHyeon
20518a315a6dSPyun YongHyeon /* Initialize the standard receive producer ring control block. */
2052f41ac2beSBill Paul rcb = &sc->bge_ldata.bge_info.bge_std_rx_rcb;
2053f41ac2beSBill Paul rcb->bge_hostaddr.bge_addr_lo =
2054f41ac2beSBill Paul BGE_ADDR_LO(sc->bge_ldata.bge_rx_std_ring_paddr);
2055f41ac2beSBill Paul rcb->bge_hostaddr.bge_addr_hi =
2056f41ac2beSBill Paul BGE_ADDR_HI(sc->bge_ldata.bge_rx_std_ring_paddr);
2057f41ac2beSBill Paul bus_dmamap_sync(sc->bge_cdata.bge_rx_std_ring_tag,
2058f41ac2beSBill Paul sc->bge_cdata.bge_rx_std_ring_map, BUS_DMASYNC_PREREAD);
20591108273aSPyun YongHyeon if (BGE_IS_5717_PLUS(sc)) {
20601108273aSPyun YongHyeon /*
20611108273aSPyun YongHyeon * Bits 31-16: Programmable ring size (2048, 1024, 512, .., 32)
20621108273aSPyun YongHyeon * Bits 15-2 : Maximum RX frame size
20631108273aSPyun YongHyeon * Bit 1 : 1 = Ring Disabled, 0 = Ring ENabled
20641108273aSPyun YongHyeon * Bit 0 : Reserved
20651108273aSPyun YongHyeon */
20661108273aSPyun YongHyeon rcb->bge_maxlen_flags =
20671108273aSPyun YongHyeon BGE_RCB_MAXLEN_FLAGS(512, BGE_MAX_FRAMELEN << 2);
20681108273aSPyun YongHyeon } else if (BGE_IS_5705_PLUS(sc)) {
20698a315a6dSPyun YongHyeon /*
20708a315a6dSPyun YongHyeon * Bits 31-16: Programmable ring size (512, 256, 128, 64, 32)
20718a315a6dSPyun YongHyeon * Bits 15-2 : Reserved (should be 0)
20728a315a6dSPyun YongHyeon * Bit 1 : 1 = Ring Disabled, 0 = Ring Enabled
20738a315a6dSPyun YongHyeon * Bit 0 : Reserved
20748a315a6dSPyun YongHyeon */
20750434d1b8SBill Paul rcb->bge_maxlen_flags = BGE_RCB_MAXLEN_FLAGS(512, 0);
20768a315a6dSPyun YongHyeon } else {
20778a315a6dSPyun YongHyeon /*
20788a315a6dSPyun YongHyeon * Ring size is always XXX entries
20798a315a6dSPyun YongHyeon * Bits 31-16: Maximum RX frame size
20808a315a6dSPyun YongHyeon * Bits 15-2 : Reserved (should be 0)
20818a315a6dSPyun YongHyeon * Bit 1 : 1 = Ring Disabled, 0 = Ring Enabled
20828a315a6dSPyun YongHyeon * Bit 0 : Reserved
20838a315a6dSPyun YongHyeon */
20840434d1b8SBill Paul rcb->bge_maxlen_flags =
20850434d1b8SBill Paul BGE_RCB_MAXLEN_FLAGS(BGE_MAX_FRAMELEN, 0);
20868a315a6dSPyun YongHyeon }
2087bbe2ca75SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5717 ||
208850515680SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5719 ||
208950515680SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5720)
20901108273aSPyun YongHyeon rcb->bge_nicaddr = BGE_STD_RX_RINGS_5717;
20911108273aSPyun YongHyeon else
209295d67482SBill Paul rcb->bge_nicaddr = BGE_STD_RX_RINGS;
20938a315a6dSPyun YongHyeon /* Write the standard receive producer ring control block. */
20940c8aa4eaSJung-uk Kim CSR_WRITE_4(sc, BGE_RX_STD_RCB_HADDR_HI, rcb->bge_hostaddr.bge_addr_hi);
20950c8aa4eaSJung-uk Kim CSR_WRITE_4(sc, BGE_RX_STD_RCB_HADDR_LO, rcb->bge_hostaddr.bge_addr_lo);
209667111612SJohn Polstra CSR_WRITE_4(sc, BGE_RX_STD_RCB_MAXLEN_FLAGS, rcb->bge_maxlen_flags);
209767111612SJohn Polstra CSR_WRITE_4(sc, BGE_RX_STD_RCB_NICADDR, rcb->bge_nicaddr);
209895d67482SBill Paul
20998a315a6dSPyun YongHyeon /* Reset the standard receive producer ring producer index. */
21008a315a6dSPyun YongHyeon bge_writembx(sc, BGE_MBX_RX_STD_PROD_LO, 0);
21018a315a6dSPyun YongHyeon
210295d67482SBill Paul /*
21038a315a6dSPyun YongHyeon * Initialize the jumbo RX producer ring control
21048a315a6dSPyun YongHyeon * block. We set the 'ring disabled' bit in the
21058a315a6dSPyun YongHyeon * flags field until we're actually ready to start
210695d67482SBill Paul * using this ring (i.e. once we set the MTU
210795d67482SBill Paul * high enough to require it).
210895d67482SBill Paul */
21094c0da0ffSGleb Smirnoff if (BGE_IS_JUMBO_CAPABLE(sc)) {
2110f41ac2beSBill Paul rcb = &sc->bge_ldata.bge_info.bge_jumbo_rx_rcb;
21118a315a6dSPyun YongHyeon /* Get the jumbo receive producer ring RCB parameters. */
2112f41ac2beSBill Paul rcb->bge_hostaddr.bge_addr_lo =
2113f41ac2beSBill Paul BGE_ADDR_LO(sc->bge_ldata.bge_rx_jumbo_ring_paddr);
2114f41ac2beSBill Paul rcb->bge_hostaddr.bge_addr_hi =
2115f41ac2beSBill Paul BGE_ADDR_HI(sc->bge_ldata.bge_rx_jumbo_ring_paddr);
2116f41ac2beSBill Paul bus_dmamap_sync(sc->bge_cdata.bge_rx_jumbo_ring_tag,
2117f41ac2beSBill Paul sc->bge_cdata.bge_rx_jumbo_ring_map,
2118f41ac2beSBill Paul BUS_DMASYNC_PREREAD);
21191be6acb7SGleb Smirnoff rcb->bge_maxlen_flags = BGE_RCB_MAXLEN_FLAGS(0,
21201be6acb7SGleb Smirnoff BGE_RCB_FLAG_USE_EXT_RX_BD | BGE_RCB_FLAG_RING_DISABLED);
2121bbe2ca75SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5717 ||
212250515680SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5719 ||
212350515680SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5720)
21241108273aSPyun YongHyeon rcb->bge_nicaddr = BGE_JUMBO_RX_RINGS_5717;
21251108273aSPyun YongHyeon else
212695d67482SBill Paul rcb->bge_nicaddr = BGE_JUMBO_RX_RINGS;
212767111612SJohn Polstra CSR_WRITE_4(sc, BGE_RX_JUMBO_RCB_HADDR_HI,
212867111612SJohn Polstra rcb->bge_hostaddr.bge_addr_hi);
212967111612SJohn Polstra CSR_WRITE_4(sc, BGE_RX_JUMBO_RCB_HADDR_LO,
213067111612SJohn Polstra rcb->bge_hostaddr.bge_addr_lo);
21318a315a6dSPyun YongHyeon /* Program the jumbo receive producer ring RCB parameters. */
21320434d1b8SBill Paul CSR_WRITE_4(sc, BGE_RX_JUMBO_RCB_MAXLEN_FLAGS,
21330434d1b8SBill Paul rcb->bge_maxlen_flags);
213467111612SJohn Polstra CSR_WRITE_4(sc, BGE_RX_JUMBO_RCB_NICADDR, rcb->bge_nicaddr);
21358a315a6dSPyun YongHyeon /* Reset the jumbo receive producer ring producer index. */
21368a315a6dSPyun YongHyeon bge_writembx(sc, BGE_MBX_RX_JUMBO_PROD_LO, 0);
21378a315a6dSPyun YongHyeon }
213895d67482SBill Paul
21398a315a6dSPyun YongHyeon /* Disable the mini receive producer ring RCB. */
21405e2f96bfSPyun YongHyeon if (BGE_IS_5700_FAMILY(sc)) {
2141f41ac2beSBill Paul rcb = &sc->bge_ldata.bge_info.bge_mini_rx_rcb;
214267111612SJohn Polstra rcb->bge_maxlen_flags =
214367111612SJohn Polstra BGE_RCB_MAXLEN_FLAGS(0, BGE_RCB_FLAG_RING_DISABLED);
21440434d1b8SBill Paul CSR_WRITE_4(sc, BGE_RX_MINI_RCB_MAXLEN_FLAGS,
21450434d1b8SBill Paul rcb->bge_maxlen_flags);
21468a315a6dSPyun YongHyeon /* Reset the mini receive producer ring producer index. */
21478a315a6dSPyun YongHyeon bge_writembx(sc, BGE_MBX_RX_MINI_PROD_LO, 0);
21480434d1b8SBill Paul }
214995d67482SBill Paul
2150ca4f8986SPyun YongHyeon /* Choose de-pipeline mode for BCM5906 A0, A1 and A2. */
2151ca4f8986SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5906) {
2152427d3f33SPyun YongHyeon if (sc->bge_chipid == BGE_CHIPID_BCM5906_A0 ||
2153427d3f33SPyun YongHyeon sc->bge_chipid == BGE_CHIPID_BCM5906_A1 ||
2154427d3f33SPyun YongHyeon sc->bge_chipid == BGE_CHIPID_BCM5906_A2)
21558d5f7181SPyun YongHyeon CSR_WRITE_4(sc, BGE_ISO_PKT_TX,
21568d5f7181SPyun YongHyeon (CSR_READ_4(sc, BGE_ISO_PKT_TX) & ~3) | 2);
2157ca4f8986SPyun YongHyeon }
215895d67482SBill Paul /*
21598a315a6dSPyun YongHyeon * The BD ring replenish thresholds control how often the
21608a315a6dSPyun YongHyeon * hardware fetches new BD's from the producer rings in host
21618a315a6dSPyun YongHyeon * memory. Setting the value too low on a busy system can
2162d646dca3SGordon Bergling * starve the hardware and reduce the throughput.
21638a315a6dSPyun YongHyeon *
216495d67482SBill Paul * Set the BD ring replentish thresholds. The recommended
216595d67482SBill Paul * values are 1/8th the number of descriptors allocated to
216695d67482SBill Paul * each ring.
21679ba784dbSScott Long * XXX The 5754 requires a lower threshold, so it might be a
21689ba784dbSScott Long * requirement of all 575x family chips. The Linux driver sets
21699ba784dbSScott Long * the lower threshold for all 5705 family chips as well, but there
21709ba784dbSScott Long * are reports that it might not need to be so strict.
217138cc658fSJohn Baldwin *
217238cc658fSJohn Baldwin * XXX Linux does some extra fiddling here for the 5906 parts as
217338cc658fSJohn Baldwin * well.
217495d67482SBill Paul */
21755345bad0SScott Long if (BGE_IS_5705_PLUS(sc))
21766f8718a3SScott Long val = 8;
21776f8718a3SScott Long else
21786f8718a3SScott Long val = BGE_STD_RX_RING_CNT / 8;
21796f8718a3SScott Long CSR_WRITE_4(sc, BGE_RBDI_STD_REPL_THRESH, val);
21802a141b94SPyun YongHyeon if (BGE_IS_JUMBO_CAPABLE(sc))
21812a141b94SPyun YongHyeon CSR_WRITE_4(sc, BGE_RBDI_JUMBO_REPL_THRESH,
21822a141b94SPyun YongHyeon BGE_JUMBO_RX_RING_CNT/8);
21831108273aSPyun YongHyeon if (BGE_IS_5717_PLUS(sc)) {
21841108273aSPyun YongHyeon CSR_WRITE_4(sc, BGE_STD_REPLENISH_LWM, 32);
21851108273aSPyun YongHyeon CSR_WRITE_4(sc, BGE_JMB_REPLENISH_LWM, 16);
21861108273aSPyun YongHyeon }
218795d67482SBill Paul
218895d67482SBill Paul /*
21898a315a6dSPyun YongHyeon * Disable all send rings by setting the 'ring disabled' bit
21908a315a6dSPyun YongHyeon * in the flags field of all the TX send ring control blocks,
21918a315a6dSPyun YongHyeon * located in NIC memory.
219295d67482SBill Paul */
21938a315a6dSPyun YongHyeon if (!BGE_IS_5705_PLUS(sc))
21948a315a6dSPyun YongHyeon /* 5700 to 5704 had 16 send rings. */
21958a315a6dSPyun YongHyeon limit = BGE_TX_RINGS_EXTSSRAM_MAX;
21962927f01fSPyun YongHyeon else if (BGE_IS_57765_PLUS(sc) ||
21972927f01fSPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5762)
21982927f01fSPyun YongHyeon limit = 2;
21992927f01fSPyun YongHyeon else if (BGE_IS_5717_PLUS(sc))
22002927f01fSPyun YongHyeon limit = 4;
22018a315a6dSPyun YongHyeon else
22028a315a6dSPyun YongHyeon limit = 1;
2203e907febfSPyun YongHyeon vrcb = BGE_MEMWIN_START + BGE_SEND_RING_RCB;
22048a315a6dSPyun YongHyeon for (i = 0; i < limit; i++) {
2205e907febfSPyun YongHyeon RCB_WRITE_4(sc, vrcb, bge_maxlen_flags,
2206e907febfSPyun YongHyeon BGE_RCB_MAXLEN_FLAGS(0, BGE_RCB_FLAG_RING_DISABLED));
2207e907febfSPyun YongHyeon RCB_WRITE_4(sc, vrcb, bge_nicaddr, 0);
2208e907febfSPyun YongHyeon vrcb += sizeof(struct bge_rcb);
220995d67482SBill Paul }
221095d67482SBill Paul
22118a315a6dSPyun YongHyeon /* Configure send ring RCB 0 (we use only the first ring) */
2212e907febfSPyun YongHyeon vrcb = BGE_MEMWIN_START + BGE_SEND_RING_RCB;
2213e907febfSPyun YongHyeon BGE_HOSTADDR(taddr, sc->bge_ldata.bge_tx_ring_paddr);
2214e907febfSPyun YongHyeon RCB_WRITE_4(sc, vrcb, bge_hostaddr.bge_addr_hi, taddr.bge_addr_hi);
2215e907febfSPyun YongHyeon RCB_WRITE_4(sc, vrcb, bge_hostaddr.bge_addr_lo, taddr.bge_addr_lo);
2216bbe2ca75SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5717 ||
221750515680SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5719 ||
221850515680SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5720)
22191108273aSPyun YongHyeon RCB_WRITE_4(sc, vrcb, bge_nicaddr, BGE_SEND_RING_5717);
22201108273aSPyun YongHyeon else
2221e907febfSPyun YongHyeon RCB_WRITE_4(sc, vrcb, bge_nicaddr,
2222e907febfSPyun YongHyeon BGE_NIC_TXRING_ADDR(0, BGE_TX_RING_CNT));
2223e907febfSPyun YongHyeon RCB_WRITE_4(sc, vrcb, bge_maxlen_flags,
2224e907febfSPyun YongHyeon BGE_RCB_MAXLEN_FLAGS(BGE_TX_RING_CNT, 0));
222595d67482SBill Paul
22268a315a6dSPyun YongHyeon /*
22278a315a6dSPyun YongHyeon * Disable all receive return rings by setting the
22288a315a6dSPyun YongHyeon * 'ring diabled' bit in the flags field of all the receive
22298a315a6dSPyun YongHyeon * return ring control blocks, located in NIC memory.
22308a315a6dSPyun YongHyeon */
2231bbe2ca75SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5717 ||
223250515680SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5719 ||
223350515680SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5720) {
22341108273aSPyun YongHyeon /* Should be 17, use 16 until we get an SRAM map. */
22351108273aSPyun YongHyeon limit = 16;
22361108273aSPyun YongHyeon } else if (!BGE_IS_5705_PLUS(sc))
22378a315a6dSPyun YongHyeon limit = BGE_RX_RINGS_MAX;
2238b4a256acSPyun YongHyeon else if (sc->bge_asicrev == BGE_ASICREV_BCM5755 ||
22392927f01fSPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5762 ||
2240fe26ad88SPyun YongHyeon BGE_IS_57765_PLUS(sc))
22418a315a6dSPyun YongHyeon limit = 4;
22428a315a6dSPyun YongHyeon else
22438a315a6dSPyun YongHyeon limit = 1;
22448a315a6dSPyun YongHyeon /* Disable all receive return rings. */
2245e907febfSPyun YongHyeon vrcb = BGE_MEMWIN_START + BGE_RX_RETURN_RING_RCB;
22468a315a6dSPyun YongHyeon for (i = 0; i < limit; i++) {
2247e907febfSPyun YongHyeon RCB_WRITE_4(sc, vrcb, bge_hostaddr.bge_addr_hi, 0);
2248e907febfSPyun YongHyeon RCB_WRITE_4(sc, vrcb, bge_hostaddr.bge_addr_lo, 0);
2249e907febfSPyun YongHyeon RCB_WRITE_4(sc, vrcb, bge_maxlen_flags,
22508a315a6dSPyun YongHyeon BGE_RCB_FLAG_RING_DISABLED);
2251e907febfSPyun YongHyeon RCB_WRITE_4(sc, vrcb, bge_nicaddr, 0);
225238cc658fSJohn Baldwin bge_writembx(sc, BGE_MBX_RX_CONS0_LO +
22533f74909aSGleb Smirnoff (i * (sizeof(uint64_t))), 0);
2254e907febfSPyun YongHyeon vrcb += sizeof(struct bge_rcb);
225595d67482SBill Paul }
225695d67482SBill Paul
225795d67482SBill Paul /*
22588a315a6dSPyun YongHyeon * Set up receive return ring 0. Note that the NIC address
22598a315a6dSPyun YongHyeon * for RX return rings is 0x0. The return rings live entirely
22608a315a6dSPyun YongHyeon * within the host, so the nicaddr field in the RCB isn't used.
226195d67482SBill Paul */
2262e907febfSPyun YongHyeon vrcb = BGE_MEMWIN_START + BGE_RX_RETURN_RING_RCB;
2263e907febfSPyun YongHyeon BGE_HOSTADDR(taddr, sc->bge_ldata.bge_rx_return_ring_paddr);
2264e907febfSPyun YongHyeon RCB_WRITE_4(sc, vrcb, bge_hostaddr.bge_addr_hi, taddr.bge_addr_hi);
2265e907febfSPyun YongHyeon RCB_WRITE_4(sc, vrcb, bge_hostaddr.bge_addr_lo, taddr.bge_addr_lo);
22668a315a6dSPyun YongHyeon RCB_WRITE_4(sc, vrcb, bge_nicaddr, 0);
2267e907febfSPyun YongHyeon RCB_WRITE_4(sc, vrcb, bge_maxlen_flags,
2268e907febfSPyun YongHyeon BGE_RCB_MAXLEN_FLAGS(sc->bge_return_ring_cnt, 0));
226995d67482SBill Paul
2270087f0d35SJustin Hibbits lladdr = if_getlladdr(sc->bge_ifp);
227195d67482SBill Paul /* Set random backoff seed for TX */
227295d67482SBill Paul CSR_WRITE_4(sc, BGE_TX_RANDOM_BACKOFF,
2273087f0d35SJustin Hibbits (lladdr[0] + lladdr[1] +
2274087f0d35SJustin Hibbits lladdr[2] + lladdr[3] +
2275087f0d35SJustin Hibbits lladdr[4] + lladdr[5]) &
227695d67482SBill Paul BGE_TX_BACKOFF_SEED_MASK);
227795d67482SBill Paul
227895d67482SBill Paul /* Set inter-packet gap */
227950515680SPyun YongHyeon val = 0x2620;
22802927f01fSPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5720 ||
22812927f01fSPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5762)
228250515680SPyun YongHyeon val |= CSR_READ_4(sc, BGE_TX_LENGTHS) &
228350515680SPyun YongHyeon (BGE_TXLEN_JMB_FRM_LEN_MSK | BGE_TXLEN_CNT_DN_VAL_MSK);
228450515680SPyun YongHyeon CSR_WRITE_4(sc, BGE_TX_LENGTHS, val);
228595d67482SBill Paul
228695d67482SBill Paul /*
228795d67482SBill Paul * Specify which ring to use for packets that don't match
228895d67482SBill Paul * any RX rules.
228995d67482SBill Paul */
229095d67482SBill Paul CSR_WRITE_4(sc, BGE_RX_RULES_CFG, 0x08);
229195d67482SBill Paul
229295d67482SBill Paul /*
229395d67482SBill Paul * Configure number of RX lists. One interrupt distribution
229495d67482SBill Paul * list, sixteen active lists, one bad frames class.
229595d67482SBill Paul */
229695d67482SBill Paul CSR_WRITE_4(sc, BGE_RXLP_CFG, 0x181);
229795d67482SBill Paul
2298d646dca3SGordon Bergling /* Initialize RX list placement stats mask. */
22990c8aa4eaSJung-uk Kim CSR_WRITE_4(sc, BGE_RXLP_STATS_ENABLE_MASK, 0x007FFFFF);
230095d67482SBill Paul CSR_WRITE_4(sc, BGE_RXLP_STATS_CTL, 0x1);
230195d67482SBill Paul
230295d67482SBill Paul /* Disable host coalescing until we get it set up */
230395d67482SBill Paul CSR_WRITE_4(sc, BGE_HCC_MODE, 0x00000000);
230495d67482SBill Paul
230595d67482SBill Paul /* Poll to make sure it's shut down. */
230695d67482SBill Paul for (i = 0; i < BGE_TIMEOUT; i++) {
2307d5d23857SJung-uk Kim DELAY(10);
230895d67482SBill Paul if (!(CSR_READ_4(sc, BGE_HCC_MODE) & BGE_HCCMODE_ENABLE))
230995d67482SBill Paul break;
231095d67482SBill Paul }
231195d67482SBill Paul
231295d67482SBill Paul if (i == BGE_TIMEOUT) {
2313fe806fdaSPyun YongHyeon device_printf(sc->bge_dev,
2314fe806fdaSPyun YongHyeon "host coalescing engine failed to idle\n");
231595d67482SBill Paul return (ENXIO);
231695d67482SBill Paul }
231795d67482SBill Paul
231895d67482SBill Paul /* Set up host coalescing defaults */
231995d67482SBill Paul CSR_WRITE_4(sc, BGE_HCC_RX_COAL_TICKS, sc->bge_rx_coal_ticks);
232095d67482SBill Paul CSR_WRITE_4(sc, BGE_HCC_TX_COAL_TICKS, sc->bge_tx_coal_ticks);
232195d67482SBill Paul CSR_WRITE_4(sc, BGE_HCC_RX_MAX_COAL_BDS, sc->bge_rx_max_coal_bds);
232295d67482SBill Paul CSR_WRITE_4(sc, BGE_HCC_TX_MAX_COAL_BDS, sc->bge_tx_max_coal_bds);
23237ee00338SJung-uk Kim if (!(BGE_IS_5705_PLUS(sc))) {
232495d67482SBill Paul CSR_WRITE_4(sc, BGE_HCC_RX_COAL_TICKS_INT, 0);
232595d67482SBill Paul CSR_WRITE_4(sc, BGE_HCC_TX_COAL_TICKS_INT, 0);
23260434d1b8SBill Paul }
2327b64728e5SBruce Evans CSR_WRITE_4(sc, BGE_HCC_RX_MAX_COAL_BDS_INT, 1);
2328b64728e5SBruce Evans CSR_WRITE_4(sc, BGE_HCC_TX_MAX_COAL_BDS_INT, 1);
232995d67482SBill Paul
233095d67482SBill Paul /* Set up address of statistics block */
23317ee00338SJung-uk Kim if (!(BGE_IS_5705_PLUS(sc))) {
2332f41ac2beSBill Paul CSR_WRITE_4(sc, BGE_HCC_STATS_ADDR_HI,
2333f41ac2beSBill Paul BGE_ADDR_HI(sc->bge_ldata.bge_stats_paddr));
233495d67482SBill Paul CSR_WRITE_4(sc, BGE_HCC_STATS_ADDR_LO,
2335f41ac2beSBill Paul BGE_ADDR_LO(sc->bge_ldata.bge_stats_paddr));
23360434d1b8SBill Paul CSR_WRITE_4(sc, BGE_HCC_STATS_BASEADDR, BGE_STATS_BLOCK);
233795d67482SBill Paul CSR_WRITE_4(sc, BGE_HCC_STATUSBLK_BASEADDR, BGE_STATUS_BLOCK);
23380434d1b8SBill Paul CSR_WRITE_4(sc, BGE_HCC_STATS_TICKS, sc->bge_stat_ticks);
23390434d1b8SBill Paul }
23400434d1b8SBill Paul
23410434d1b8SBill Paul /* Set up address of status block */
2342f41ac2beSBill Paul CSR_WRITE_4(sc, BGE_HCC_STATUSBLK_ADDR_HI,
2343f41ac2beSBill Paul BGE_ADDR_HI(sc->bge_ldata.bge_status_block_paddr));
234495d67482SBill Paul CSR_WRITE_4(sc, BGE_HCC_STATUSBLK_ADDR_LO,
2345f41ac2beSBill Paul BGE_ADDR_LO(sc->bge_ldata.bge_status_block_paddr));
234695d67482SBill Paul
234730f57f61SPyun YongHyeon /* Set up status block size. */
234830f57f61SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5700 &&
2349864104feSPyun YongHyeon sc->bge_chipid != BGE_CHIPID_BCM5700_C0) {
235030f57f61SPyun YongHyeon val = BGE_STATBLKSZ_FULL;
2351864104feSPyun YongHyeon bzero(sc->bge_ldata.bge_status_block, BGE_STATUS_BLK_SZ);
2352864104feSPyun YongHyeon } else {
235330f57f61SPyun YongHyeon val = BGE_STATBLKSZ_32BYTE;
2354864104feSPyun YongHyeon bzero(sc->bge_ldata.bge_status_block, 32);
2355864104feSPyun YongHyeon }
2356864104feSPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_status_tag,
2357864104feSPyun YongHyeon sc->bge_cdata.bge_status_map,
2358864104feSPyun YongHyeon BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
235930f57f61SPyun YongHyeon
236095d67482SBill Paul /* Turn on host coalescing state machine */
236130f57f61SPyun YongHyeon CSR_WRITE_4(sc, BGE_HCC_MODE, val | BGE_HCCMODE_ENABLE);
236295d67482SBill Paul
236395d67482SBill Paul /* Turn on RX BD completion state machine and enable attentions */
236495d67482SBill Paul CSR_WRITE_4(sc, BGE_RBDC_MODE,
236595d67482SBill Paul BGE_RBDCMODE_ENABLE | BGE_RBDCMODE_ATTN);
236695d67482SBill Paul
236795d67482SBill Paul /* Turn on RX list placement state machine */
236895d67482SBill Paul CSR_WRITE_4(sc, BGE_RXLP_MODE, BGE_RXLPMODE_ENABLE);
236995d67482SBill Paul
237095d67482SBill Paul /* Turn on RX list selector state machine. */
23717ee00338SJung-uk Kim if (!(BGE_IS_5705_PLUS(sc)))
237295d67482SBill Paul CSR_WRITE_4(sc, BGE_RXLS_MODE, BGE_RXLSMODE_ENABLE);
237395d67482SBill Paul
23742246e8c6SPyun YongHyeon /* Turn on DMA, clear stats. */
2375ea3b4127SPyun YongHyeon val = BGE_MACMODE_TXDMA_ENB | BGE_MACMODE_RXDMA_ENB |
2376ea3b4127SPyun YongHyeon BGE_MACMODE_RX_STATS_CLEAR | BGE_MACMODE_TX_STATS_CLEAR |
2377ea3b4127SPyun YongHyeon BGE_MACMODE_RX_STATS_ENB | BGE_MACMODE_TX_STATS_ENB |
2378ea3b4127SPyun YongHyeon BGE_MACMODE_FRMHDR_DMA_ENB;
2379ea3b4127SPyun YongHyeon
2380ea3b4127SPyun YongHyeon if (sc->bge_flags & BGE_FLAG_TBI)
2381ea3b4127SPyun YongHyeon val |= BGE_PORTMODE_TBI;
2382ea3b4127SPyun YongHyeon else if (sc->bge_flags & BGE_FLAG_MII_SERDES)
2383ea3b4127SPyun YongHyeon val |= BGE_PORTMODE_GMII;
2384ea3b4127SPyun YongHyeon else
2385ea3b4127SPyun YongHyeon val |= BGE_PORTMODE_MII;
2386ea3b4127SPyun YongHyeon
2387548c8f1aSPyun YongHyeon /* Allow APE to send/receive frames. */
2388548c8f1aSPyun YongHyeon if ((sc->bge_mfw_flags & BGE_MFW_ON_APE) != 0)
2389548c8f1aSPyun YongHyeon val |= BGE_MACMODE_APE_RX_EN | BGE_MACMODE_APE_TX_EN;
2390548c8f1aSPyun YongHyeon
2391ea3b4127SPyun YongHyeon CSR_WRITE_4(sc, BGE_MAC_MODE, val);
23929b80ffe7SPyun YongHyeon DELAY(40);
239395d67482SBill Paul
239495d67482SBill Paul /* Set misc. local control, enable interrupts on attentions */
239591bd90d8SPyun YongHyeon BGE_SETBIT(sc, BGE_MISC_LOCAL_CTL, BGE_MLC_INTR_ONATTN);
239695d67482SBill Paul
239795d67482SBill Paul #ifdef notdef
239895d67482SBill Paul /* Assert GPIO pins for PHY reset */
239995d67482SBill Paul BGE_SETBIT(sc, BGE_MISC_LOCAL_CTL, BGE_MLC_MISCIO_OUT0 |
240095d67482SBill Paul BGE_MLC_MISCIO_OUT1 | BGE_MLC_MISCIO_OUT2);
240195d67482SBill Paul BGE_SETBIT(sc, BGE_MISC_LOCAL_CTL, BGE_MLC_MISCIO_OUTEN0 |
240295d67482SBill Paul BGE_MLC_MISCIO_OUTEN1 | BGE_MLC_MISCIO_OUTEN2);
240395d67482SBill Paul #endif
240495d67482SBill Paul
240595d67482SBill Paul /* Turn on DMA completion state machine */
24067ee00338SJung-uk Kim if (!(BGE_IS_5705_PLUS(sc)))
240795d67482SBill Paul CSR_WRITE_4(sc, BGE_DMAC_MODE, BGE_DMACMODE_ENABLE);
240895d67482SBill Paul
24096f8718a3SScott Long val = BGE_WDMAMODE_ENABLE | BGE_WDMAMODE_ALL_ATTNS;
24106f8718a3SScott Long
24116f8718a3SScott Long /* Enable host coalescing bug fix. */
2412a5779553SStanislav Sedov if (BGE_IS_5755_PLUS(sc))
24133889907fSStanislav Sedov val |= BGE_WDMAMODE_STATUS_TAG_FIX;
24146f8718a3SScott Long
24157aa4b937SPyun YongHyeon /* Request larger DMA burst size to get better performance. */
24167aa4b937SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5785)
24177aa4b937SPyun YongHyeon val |= BGE_WDMAMODE_BURST_ALL_DATA;
24187aa4b937SPyun YongHyeon
241995d67482SBill Paul /* Turn on write DMA state machine */
24206f8718a3SScott Long CSR_WRITE_4(sc, BGE_WDMA_MODE, val);
24214f09c4c7SMarius Strobl DELAY(40);
242295d67482SBill Paul
242395d67482SBill Paul /* Turn on read DMA state machine */
24244f09c4c7SMarius Strobl val = BGE_RDMAMODE_ENABLE | BGE_RDMAMODE_ALL_ATTNS;
24251108273aSPyun YongHyeon
24261108273aSPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5717)
24271108273aSPyun YongHyeon val |= BGE_RDMAMODE_MULT_DMA_RD_DIS;
24281108273aSPyun YongHyeon
2429a5779553SStanislav Sedov if (sc->bge_asicrev == BGE_ASICREV_BCM5784 ||
2430a5779553SStanislav Sedov sc->bge_asicrev == BGE_ASICREV_BCM5785 ||
2431a5779553SStanislav Sedov sc->bge_asicrev == BGE_ASICREV_BCM57780)
2432a5779553SStanislav Sedov val |= BGE_RDMAMODE_BD_SBD_CRPT_ATTN |
2433a5779553SStanislav Sedov BGE_RDMAMODE_MBUF_RBD_CRPT_ATTN |
2434a5779553SStanislav Sedov BGE_RDMAMODE_MBUF_SBD_CRPT_ATTN;
24354f09c4c7SMarius Strobl if (sc->bge_flags & BGE_FLAG_PCIE)
24364f09c4c7SMarius Strobl val |= BGE_RDMAMODE_FIFO_LONG_BURST;
24371108273aSPyun YongHyeon if (sc->bge_flags & (BGE_FLAG_TSO | BGE_FLAG_TSO3)) {
2438ca3f1187SPyun YongHyeon val |= BGE_RDMAMODE_TSO4_ENABLE;
24391108273aSPyun YongHyeon if (sc->bge_flags & BGE_FLAG_TSO3 ||
24401108273aSPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5785 ||
244155a24a05SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM57780)
244255a24a05SPyun YongHyeon val |= BGE_RDMAMODE_TSO6_ENABLE;
244355a24a05SPyun YongHyeon }
244450515680SPyun YongHyeon
24452927f01fSPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5720 ||
24462927f01fSPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5762) {
244750515680SPyun YongHyeon val |= CSR_READ_4(sc, BGE_RDMA_MODE) &
244850515680SPyun YongHyeon BGE_RDMAMODE_H2BNC_VLAN_DET;
2449e3215f76SPyun YongHyeon /*
2450e3215f76SPyun YongHyeon * Allow multiple outstanding read requests from
2451e3215f76SPyun YongHyeon * non-LSO read DMA engine.
2452e3215f76SPyun YongHyeon */
2453e3215f76SPyun YongHyeon val &= ~BGE_RDMAMODE_MULT_DMA_RD_DIS;
2454e3215f76SPyun YongHyeon }
245550515680SPyun YongHyeon
2456d255f2a9SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5761 ||
2457d255f2a9SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5784 ||
2458d255f2a9SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5785 ||
24591108273aSPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM57780 ||
24602927f01fSPyun YongHyeon BGE_IS_5717_PLUS(sc) || BGE_IS_57765_PLUS(sc)) {
24612927f01fSPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5762)
24622927f01fSPyun YongHyeon rdmareg = BGE_RDMA_RSRVCTRL_REG2;
24632927f01fSPyun YongHyeon else
24642927f01fSPyun YongHyeon rdmareg = BGE_RDMA_RSRVCTRL;
24652927f01fSPyun YongHyeon dmactl = CSR_READ_4(sc, rdmareg);
2466bbe2ca75SPyun YongHyeon /*
2467bbe2ca75SPyun YongHyeon * Adjust tx margin to prevent TX data corruption and
2468bbe2ca75SPyun YongHyeon * fix internal FIFO overflow.
2469bbe2ca75SPyun YongHyeon */
24702927f01fSPyun YongHyeon if (sc->bge_chipid == BGE_CHIPID_BCM5719_A0 ||
24712927f01fSPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5762) {
2472bbe2ca75SPyun YongHyeon dmactl &= ~(BGE_RDMA_RSRVCTRL_FIFO_LWM_MASK |
2473bbe2ca75SPyun YongHyeon BGE_RDMA_RSRVCTRL_FIFO_HWM_MASK |
2474bbe2ca75SPyun YongHyeon BGE_RDMA_RSRVCTRL_TXMRGN_MASK);
2475bbe2ca75SPyun YongHyeon dmactl |= BGE_RDMA_RSRVCTRL_FIFO_LWM_1_5K |
2476bbe2ca75SPyun YongHyeon BGE_RDMA_RSRVCTRL_FIFO_HWM_1_5K |
2477bbe2ca75SPyun YongHyeon BGE_RDMA_RSRVCTRL_TXMRGN_320B;
2478bbe2ca75SPyun YongHyeon }
2479d255f2a9SPyun YongHyeon /*
2480d255f2a9SPyun YongHyeon * Enable fix for read DMA FIFO overruns.
2481d255f2a9SPyun YongHyeon * The fix is to limit the number of RX BDs
2482d255f2a9SPyun YongHyeon * the hardware would fetch at a fime.
2483d255f2a9SPyun YongHyeon */
24842927f01fSPyun YongHyeon CSR_WRITE_4(sc, rdmareg, dmactl |
2485d255f2a9SPyun YongHyeon BGE_RDMA_RSRVCTRL_FIFO_OFLW_FIX);
2486d255f2a9SPyun YongHyeon }
2487bbe2ca75SPyun YongHyeon
2488e3215f76SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5719) {
2489bbe2ca75SPyun YongHyeon CSR_WRITE_4(sc, BGE_RDMA_LSO_CRPTEN_CTRL,
2490bbe2ca75SPyun YongHyeon CSR_READ_4(sc, BGE_RDMA_LSO_CRPTEN_CTRL) |
2491bbe2ca75SPyun YongHyeon BGE_RDMA_LSO_CRPTEN_CTRL_BLEN_BD_4K |
2492bbe2ca75SPyun YongHyeon BGE_RDMA_LSO_CRPTEN_CTRL_BLEN_LSO_4K);
2493e3215f76SPyun YongHyeon } else if (sc->bge_asicrev == BGE_ASICREV_BCM5720) {
2494e3215f76SPyun YongHyeon /*
2495e3215f76SPyun YongHyeon * Allow 4KB burst length reads for non-LSO frames.
2496e3215f76SPyun YongHyeon * Enable 512B burst length reads for buffer descriptors.
2497e3215f76SPyun YongHyeon */
2498e3215f76SPyun YongHyeon CSR_WRITE_4(sc, BGE_RDMA_LSO_CRPTEN_CTRL,
2499e3215f76SPyun YongHyeon CSR_READ_4(sc, BGE_RDMA_LSO_CRPTEN_CTRL) |
2500e3215f76SPyun YongHyeon BGE_RDMA_LSO_CRPTEN_CTRL_BLEN_BD_512 |
2501e3215f76SPyun YongHyeon BGE_RDMA_LSO_CRPTEN_CTRL_BLEN_LSO_4K);
25022927f01fSPyun YongHyeon } else if (sc->bge_asicrev == BGE_ASICREV_BCM5762) {
25032927f01fSPyun YongHyeon CSR_WRITE_4(sc, BGE_RDMA_LSO_CRPTEN_CTRL_REG2,
25042927f01fSPyun YongHyeon CSR_READ_4(sc, BGE_RDMA_LSO_CRPTEN_CTRL_REG2) |
25052927f01fSPyun YongHyeon BGE_RDMA_LSO_CRPTEN_CTRL_BLEN_BD_4K |
25062927f01fSPyun YongHyeon BGE_RDMA_LSO_CRPTEN_CTRL_BLEN_LSO_4K);
2507bbe2ca75SPyun YongHyeon }
2508bbe2ca75SPyun YongHyeon
25094f09c4c7SMarius Strobl CSR_WRITE_4(sc, BGE_RDMA_MODE, val);
25104f09c4c7SMarius Strobl DELAY(40);
251195d67482SBill Paul
251229b44b09SPyun YongHyeon if (sc->bge_flags & BGE_FLAG_RDMA_BUG) {
251329b44b09SPyun YongHyeon for (i = 0; i < BGE_NUM_RDMA_CHANNELS / 2; i++) {
251429b44b09SPyun YongHyeon val = CSR_READ_4(sc, BGE_RDMA_LENGTH + i * 4);
251529b44b09SPyun YongHyeon if ((val & 0xFFFF) > BGE_FRAMELEN)
251629b44b09SPyun YongHyeon break;
251729b44b09SPyun YongHyeon if (((val >> 16) & 0xFFFF) > BGE_FRAMELEN)
251829b44b09SPyun YongHyeon break;
251929b44b09SPyun YongHyeon }
252029b44b09SPyun YongHyeon if (i != BGE_NUM_RDMA_CHANNELS / 2) {
252129b44b09SPyun YongHyeon val = CSR_READ_4(sc, BGE_RDMA_LSO_CRPTEN_CTRL);
252229b44b09SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5719)
252329b44b09SPyun YongHyeon val |= BGE_RDMA_TX_LENGTH_WA_5719;
252429b44b09SPyun YongHyeon else
252529b44b09SPyun YongHyeon val |= BGE_RDMA_TX_LENGTH_WA_5720;
252629b44b09SPyun YongHyeon CSR_WRITE_4(sc, BGE_RDMA_LSO_CRPTEN_CTRL, val);
252729b44b09SPyun YongHyeon }
252829b44b09SPyun YongHyeon }
252929b44b09SPyun YongHyeon
253095d67482SBill Paul /* Turn on RX data completion state machine */
253195d67482SBill Paul CSR_WRITE_4(sc, BGE_RDC_MODE, BGE_RDCMODE_ENABLE);
253295d67482SBill Paul
253395d67482SBill Paul /* Turn on RX BD initiator state machine */
253495d67482SBill Paul CSR_WRITE_4(sc, BGE_RBDI_MODE, BGE_RBDIMODE_ENABLE);
253595d67482SBill Paul
253695d67482SBill Paul /* Turn on RX data and RX BD initiator state machine */
253795d67482SBill Paul CSR_WRITE_4(sc, BGE_RDBDI_MODE, BGE_RDBDIMODE_ENABLE);
253895d67482SBill Paul
253995d67482SBill Paul /* Turn on Mbuf cluster free state machine */
25407ee00338SJung-uk Kim if (!(BGE_IS_5705_PLUS(sc)))
254195d67482SBill Paul CSR_WRITE_4(sc, BGE_MBCF_MODE, BGE_MBCFMODE_ENABLE);
254295d67482SBill Paul
254395d67482SBill Paul /* Turn on send BD completion state machine */
254495d67482SBill Paul CSR_WRITE_4(sc, BGE_SBDC_MODE, BGE_SBDCMODE_ENABLE);
254595d67482SBill Paul
254695d67482SBill Paul /* Turn on send data completion state machine */
2547a5779553SStanislav Sedov val = BGE_SDCMODE_ENABLE;
2548a5779553SStanislav Sedov if (sc->bge_asicrev == BGE_ASICREV_BCM5761)
2549a5779553SStanislav Sedov val |= BGE_SDCMODE_CDELAY;
2550a5779553SStanislav Sedov CSR_WRITE_4(sc, BGE_SDC_MODE, val);
255195d67482SBill Paul
255295d67482SBill Paul /* Turn on send data initiator state machine */
25531108273aSPyun YongHyeon if (sc->bge_flags & (BGE_FLAG_TSO | BGE_FLAG_TSO3))
25541108273aSPyun YongHyeon CSR_WRITE_4(sc, BGE_SDI_MODE, BGE_SDIMODE_ENABLE |
25551108273aSPyun YongHyeon BGE_SDIMODE_HW_LSO_PRE_DMA);
2556ca3f1187SPyun YongHyeon else
255795d67482SBill Paul CSR_WRITE_4(sc, BGE_SDI_MODE, BGE_SDIMODE_ENABLE);
255895d67482SBill Paul
255995d67482SBill Paul /* Turn on send BD initiator state machine */
256095d67482SBill Paul CSR_WRITE_4(sc, BGE_SBDI_MODE, BGE_SBDIMODE_ENABLE);
256195d67482SBill Paul
256295d67482SBill Paul /* Turn on send BD selector state machine */
256395d67482SBill Paul CSR_WRITE_4(sc, BGE_SRS_MODE, BGE_SRSMODE_ENABLE);
256495d67482SBill Paul
25650c8aa4eaSJung-uk Kim CSR_WRITE_4(sc, BGE_SDI_STATS_ENABLE_MASK, 0x007FFFFF);
256695d67482SBill Paul CSR_WRITE_4(sc, BGE_SDI_STATS_CTL,
256795d67482SBill Paul BGE_SDISTATSCTL_ENABLE | BGE_SDISTATSCTL_FASTER);
256895d67482SBill Paul
256995d67482SBill Paul /* ack/clear link change events */
257095d67482SBill Paul CSR_WRITE_4(sc, BGE_MAC_STS, BGE_MACSTAT_SYNC_CHANGED |
25710434d1b8SBill Paul BGE_MACSTAT_CFG_CHANGED | BGE_MACSTAT_MI_COMPLETE |
25720434d1b8SBill Paul BGE_MACSTAT_LINK_CHANGED);
2573f41ac2beSBill Paul CSR_WRITE_4(sc, BGE_MI_STS, 0);
257495d67482SBill Paul
25756ede2cfaSPyun YongHyeon /*
25766ede2cfaSPyun YongHyeon * Enable attention when the link has changed state for
25776ede2cfaSPyun YongHyeon * devices that use auto polling.
25786ede2cfaSPyun YongHyeon */
2579652ae483SGleb Smirnoff if (sc->bge_flags & BGE_FLAG_TBI) {
258095d67482SBill Paul CSR_WRITE_4(sc, BGE_MI_STS, BGE_MISTS_LINK);
2581a1d52896SBill Paul } else {
25827ed3f0f0SPyun YongHyeon if (sc->bge_mi_mode & BGE_MIMODE_AUTOPOLL) {
25837ed3f0f0SPyun YongHyeon CSR_WRITE_4(sc, BGE_MI_MODE, sc->bge_mi_mode);
25847ed3f0f0SPyun YongHyeon DELAY(80);
25857ed3f0f0SPyun YongHyeon }
25861f313773SOleg Bulyzhin if (sc->bge_asicrev == BGE_ASICREV_BCM5700 &&
25874c0da0ffSGleb Smirnoff sc->bge_chipid != BGE_CHIPID_BCM5700_B2)
2588a1d52896SBill Paul CSR_WRITE_4(sc, BGE_MAC_EVT_ENB,
2589a1d52896SBill Paul BGE_EVTENB_MI_INTERRUPT);
2590a1d52896SBill Paul }
259195d67482SBill Paul
25921f313773SOleg Bulyzhin /*
25931f313773SOleg Bulyzhin * Clear any pending link state attention.
25941f313773SOleg Bulyzhin * Otherwise some link state change events may be lost until attention
25951f313773SOleg Bulyzhin * is cleared by bge_intr() -> bge_link_upd() sequence.
25961f313773SOleg Bulyzhin * It's not necessary on newer BCM chips - perhaps enabling link
25971f313773SOleg Bulyzhin * state change attentions implies clearing pending attention.
25981f313773SOleg Bulyzhin */
25991f313773SOleg Bulyzhin CSR_WRITE_4(sc, BGE_MAC_STS, BGE_MACSTAT_SYNC_CHANGED |
26001f313773SOleg Bulyzhin BGE_MACSTAT_CFG_CHANGED | BGE_MACSTAT_MI_COMPLETE |
26011f313773SOleg Bulyzhin BGE_MACSTAT_LINK_CHANGED);
26021f313773SOleg Bulyzhin
260395d67482SBill Paul /* Enable link state change attentions. */
260495d67482SBill Paul BGE_SETBIT(sc, BGE_MAC_EVT_ENB, BGE_EVTENB_LINK_CHANGED);
260595d67482SBill Paul
260695d67482SBill Paul return (0);
260795d67482SBill Paul }
260895d67482SBill Paul
2609d7acafa1SMarius Strobl static const struct bge_revision *
bge_lookup_rev(uint32_t chipid)26104c0da0ffSGleb Smirnoff bge_lookup_rev(uint32_t chipid)
26114c0da0ffSGleb Smirnoff {
26124c0da0ffSGleb Smirnoff const struct bge_revision *br;
26134c0da0ffSGleb Smirnoff
26144c0da0ffSGleb Smirnoff for (br = bge_revisions; br->br_name != NULL; br++) {
26154c0da0ffSGleb Smirnoff if (br->br_chipid == chipid)
26164c0da0ffSGleb Smirnoff return (br);
26174c0da0ffSGleb Smirnoff }
26184c0da0ffSGleb Smirnoff
26194c0da0ffSGleb Smirnoff for (br = bge_majorrevs; br->br_name != NULL; br++) {
26204c0da0ffSGleb Smirnoff if (br->br_chipid == BGE_ASICREV(chipid))
26214c0da0ffSGleb Smirnoff return (br);
26224c0da0ffSGleb Smirnoff }
26234c0da0ffSGleb Smirnoff
26244c0da0ffSGleb Smirnoff return (NULL);
26254c0da0ffSGleb Smirnoff }
26264c0da0ffSGleb Smirnoff
2627d7acafa1SMarius Strobl static const struct bge_vendor *
bge_lookup_vendor(uint16_t vid)26284c0da0ffSGleb Smirnoff bge_lookup_vendor(uint16_t vid)
26294c0da0ffSGleb Smirnoff {
26304c0da0ffSGleb Smirnoff const struct bge_vendor *v;
26314c0da0ffSGleb Smirnoff
26324c0da0ffSGleb Smirnoff for (v = bge_vendors; v->v_name != NULL; v++)
26334c0da0ffSGleb Smirnoff if (v->v_id == vid)
26344c0da0ffSGleb Smirnoff return (v);
26354c0da0ffSGleb Smirnoff
26364c0da0ffSGleb Smirnoff return (NULL);
26374c0da0ffSGleb Smirnoff }
26384c0da0ffSGleb Smirnoff
2639d7acafa1SMarius Strobl static uint32_t
bge_chipid(device_t dev)2640d7acafa1SMarius Strobl bge_chipid(device_t dev)
264195d67482SBill Paul {
2642978f2704SMarius Strobl uint32_t id;
264395d67482SBill Paul
2644a5779553SStanislav Sedov id = pci_read_config(dev, BGE_PCI_MISC_CTL, 4) >>
2645a5779553SStanislav Sedov BGE_PCIMISCCTL_ASICREV_SHIFT;
26461108273aSPyun YongHyeon if (BGE_ASICREV(id) == BGE_ASICREV_USE_PRODID_REG) {
26471108273aSPyun YongHyeon /*
2648d7acafa1SMarius Strobl * Find the ASCI revision. Different chips use different
2649d7acafa1SMarius Strobl * registers.
26501108273aSPyun YongHyeon */
26511108273aSPyun YongHyeon switch (pci_get_device(dev)) {
2652cb2404b4SSepherosa Ziehau case BCOM_DEVICEID_BCM5717C:
26531ca32af8SSepherosa Ziehau /* 5717 C0 seems to belong to 5720 line. */
26541ca32af8SSepherosa Ziehau id = BGE_CHIPID_BCM5720_A0;
26551ca32af8SSepherosa Ziehau break;
26561ca32af8SSepherosa Ziehau case BCOM_DEVICEID_BCM5717:
26571108273aSPyun YongHyeon case BCOM_DEVICEID_BCM5718:
2658bbe2ca75SPyun YongHyeon case BCOM_DEVICEID_BCM5719:
265950515680SPyun YongHyeon case BCOM_DEVICEID_BCM5720:
26602927f01fSPyun YongHyeon case BCOM_DEVICEID_BCM5725:
26612927f01fSPyun YongHyeon case BCOM_DEVICEID_BCM5727:
26622927f01fSPyun YongHyeon case BCOM_DEVICEID_BCM5762:
266367129934SPyun YongHyeon case BCOM_DEVICEID_BCM57764:
266467129934SPyun YongHyeon case BCOM_DEVICEID_BCM57767:
266567129934SPyun YongHyeon case BCOM_DEVICEID_BCM57787:
26661108273aSPyun YongHyeon id = pci_read_config(dev,
26671108273aSPyun YongHyeon BGE_PCI_GEN2_PRODID_ASICREV, 4);
26681108273aSPyun YongHyeon break;
2669b4a256acSPyun YongHyeon case BCOM_DEVICEID_BCM57761:
2670fe26ad88SPyun YongHyeon case BCOM_DEVICEID_BCM57762:
2671b4a256acSPyun YongHyeon case BCOM_DEVICEID_BCM57765:
2672fe26ad88SPyun YongHyeon case BCOM_DEVICEID_BCM57766:
2673b4a256acSPyun YongHyeon case BCOM_DEVICEID_BCM57781:
267467129934SPyun YongHyeon case BCOM_DEVICEID_BCM57782:
2675b4a256acSPyun YongHyeon case BCOM_DEVICEID_BCM57785:
267667129934SPyun YongHyeon case BCOM_DEVICEID_BCM57786:
2677b4a256acSPyun YongHyeon case BCOM_DEVICEID_BCM57791:
2678b4a256acSPyun YongHyeon case BCOM_DEVICEID_BCM57795:
2679b4a256acSPyun YongHyeon id = pci_read_config(dev,
2680b4a256acSPyun YongHyeon BGE_PCI_GEN15_PRODID_ASICREV, 4);
2681b4a256acSPyun YongHyeon break;
26821108273aSPyun YongHyeon default:
2683d7acafa1SMarius Strobl id = pci_read_config(dev, BGE_PCI_PRODID_ASICREV, 4);
26841108273aSPyun YongHyeon }
26851108273aSPyun YongHyeon }
2686d7acafa1SMarius Strobl return (id);
2687d7acafa1SMarius Strobl }
2688d7acafa1SMarius Strobl
2689d7acafa1SMarius Strobl /*
2690d7acafa1SMarius Strobl * Probe for a Broadcom chip. Check the PCI vendor and device IDs
2691d7acafa1SMarius Strobl * against our list and return its name if we find a match.
2692d7acafa1SMarius Strobl *
2693d7acafa1SMarius Strobl * Note that since the Broadcom controller contains VPD support, we
2694d7acafa1SMarius Strobl * try to get the device name string from the controller itself instead
2695d7acafa1SMarius Strobl * of the compiled-in string. It guarantees we'll always announce the
2696d7acafa1SMarius Strobl * right product name. We fall back to the compiled-in string when
2697d7acafa1SMarius Strobl * VPD is unavailable or corrupt.
2698d7acafa1SMarius Strobl */
2699d7acafa1SMarius Strobl static int
bge_probe(device_t dev)2700d7acafa1SMarius Strobl bge_probe(device_t dev)
2701d7acafa1SMarius Strobl {
2702d7acafa1SMarius Strobl char model[64];
2703d7acafa1SMarius Strobl const struct bge_revision *br;
2704d7acafa1SMarius Strobl const char *pname;
2705d7acafa1SMarius Strobl struct bge_softc *sc;
2706d7acafa1SMarius Strobl const struct bge_type *t = bge_devs;
2707d7acafa1SMarius Strobl const struct bge_vendor *v;
2708d7acafa1SMarius Strobl uint32_t id;
2709d7acafa1SMarius Strobl uint16_t did, vid;
2710d7acafa1SMarius Strobl
2711d7acafa1SMarius Strobl sc = device_get_softc(dev);
2712d7acafa1SMarius Strobl sc->bge_dev = dev;
2713d7acafa1SMarius Strobl vid = pci_get_vendor(dev);
2714d7acafa1SMarius Strobl did = pci_get_device(dev);
2715d7acafa1SMarius Strobl while(t->bge_vid != 0) {
2716d7acafa1SMarius Strobl if ((vid == t->bge_vid) && (did == t->bge_did)) {
2717d7acafa1SMarius Strobl id = bge_chipid(dev);
27184c0da0ffSGleb Smirnoff br = bge_lookup_rev(id);
2719852c67f9SMarius Strobl if (bge_has_eaddr(sc) &&
2720852c67f9SMarius Strobl pci_get_vpd_ident(dev, &pname) == 0)
2721d7acafa1SMarius Strobl snprintf(model, sizeof(model), "%s", pname);
2722d7acafa1SMarius Strobl else {
2723d7acafa1SMarius Strobl v = bge_lookup_vendor(vid);
2724d7acafa1SMarius Strobl snprintf(model, sizeof(model), "%s %s",
2725d7acafa1SMarius Strobl v != NULL ? v->v_name : "Unknown",
27267c929cf9SJung-uk Kim br != NULL ? br->br_name :
27272ad1b396SMarius Strobl "NetXtreme/NetLink Ethernet Controller");
2728d7acafa1SMarius Strobl }
2729*50505c85SMark Johnston device_set_descf(dev, "%s, %sASIC rev. %#08x",
2730d7acafa1SMarius Strobl model, br != NULL ? "" : "unknown ", id);
2731d7acafa1SMarius Strobl return (BUS_PROBE_DEFAULT);
273295d67482SBill Paul }
273395d67482SBill Paul t++;
273495d67482SBill Paul }
273595d67482SBill Paul
273695d67482SBill Paul return (ENXIO);
273795d67482SBill Paul }
273895d67482SBill Paul
2739f41ac2beSBill Paul static void
bge_dma_free(struct bge_softc * sc)27403f74909aSGleb Smirnoff bge_dma_free(struct bge_softc *sc)
2741f41ac2beSBill Paul {
2742f41ac2beSBill Paul int i;
2743f41ac2beSBill Paul
27443f74909aSGleb Smirnoff /* Destroy DMA maps for RX buffers. */
2745f41ac2beSBill Paul for (i = 0; i < BGE_STD_RX_RING_CNT; i++) {
2746f41ac2beSBill Paul if (sc->bge_cdata.bge_rx_std_dmamap[i])
27470ac56796SPyun YongHyeon bus_dmamap_destroy(sc->bge_cdata.bge_rx_mtag,
2748f41ac2beSBill Paul sc->bge_cdata.bge_rx_std_dmamap[i]);
2749f41ac2beSBill Paul }
2750943787f3SPyun YongHyeon if (sc->bge_cdata.bge_rx_std_sparemap)
2751943787f3SPyun YongHyeon bus_dmamap_destroy(sc->bge_cdata.bge_rx_mtag,
2752943787f3SPyun YongHyeon sc->bge_cdata.bge_rx_std_sparemap);
2753f41ac2beSBill Paul
27543f74909aSGleb Smirnoff /* Destroy DMA maps for jumbo RX buffers. */
2755f41ac2beSBill Paul for (i = 0; i < BGE_JUMBO_RX_RING_CNT; i++) {
2756f41ac2beSBill Paul if (sc->bge_cdata.bge_rx_jumbo_dmamap[i])
2757f41ac2beSBill Paul bus_dmamap_destroy(sc->bge_cdata.bge_mtag_jumbo,
2758f41ac2beSBill Paul sc->bge_cdata.bge_rx_jumbo_dmamap[i]);
2759f41ac2beSBill Paul }
2760943787f3SPyun YongHyeon if (sc->bge_cdata.bge_rx_jumbo_sparemap)
2761943787f3SPyun YongHyeon bus_dmamap_destroy(sc->bge_cdata.bge_mtag_jumbo,
2762943787f3SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_sparemap);
2763f41ac2beSBill Paul
27643f74909aSGleb Smirnoff /* Destroy DMA maps for TX buffers. */
2765f41ac2beSBill Paul for (i = 0; i < BGE_TX_RING_CNT; i++) {
2766f41ac2beSBill Paul if (sc->bge_cdata.bge_tx_dmamap[i])
27670ac56796SPyun YongHyeon bus_dmamap_destroy(sc->bge_cdata.bge_tx_mtag,
2768f41ac2beSBill Paul sc->bge_cdata.bge_tx_dmamap[i]);
2769f41ac2beSBill Paul }
2770f41ac2beSBill Paul
27710ac56796SPyun YongHyeon if (sc->bge_cdata.bge_rx_mtag)
27720ac56796SPyun YongHyeon bus_dma_tag_destroy(sc->bge_cdata.bge_rx_mtag);
2773c0220d81SPyun YongHyeon if (sc->bge_cdata.bge_mtag_jumbo)
2774c0220d81SPyun YongHyeon bus_dma_tag_destroy(sc->bge_cdata.bge_mtag_jumbo);
27750ac56796SPyun YongHyeon if (sc->bge_cdata.bge_tx_mtag)
27760ac56796SPyun YongHyeon bus_dma_tag_destroy(sc->bge_cdata.bge_tx_mtag);
2777f41ac2beSBill Paul
27783f74909aSGleb Smirnoff /* Destroy standard RX ring. */
2779068d8643SJohn Baldwin if (sc->bge_ldata.bge_rx_std_ring_paddr)
2780e65bed95SPyun YongHyeon bus_dmamap_unload(sc->bge_cdata.bge_rx_std_ring_tag,
2781e65bed95SPyun YongHyeon sc->bge_cdata.bge_rx_std_ring_map);
2782068d8643SJohn Baldwin if (sc->bge_ldata.bge_rx_std_ring)
2783f41ac2beSBill Paul bus_dmamem_free(sc->bge_cdata.bge_rx_std_ring_tag,
2784f41ac2beSBill Paul sc->bge_ldata.bge_rx_std_ring,
2785f41ac2beSBill Paul sc->bge_cdata.bge_rx_std_ring_map);
2786f41ac2beSBill Paul
2787f41ac2beSBill Paul if (sc->bge_cdata.bge_rx_std_ring_tag)
2788f41ac2beSBill Paul bus_dma_tag_destroy(sc->bge_cdata.bge_rx_std_ring_tag);
2789f41ac2beSBill Paul
27903f74909aSGleb Smirnoff /* Destroy jumbo RX ring. */
2791068d8643SJohn Baldwin if (sc->bge_ldata.bge_rx_jumbo_ring_paddr)
2792e65bed95SPyun YongHyeon bus_dmamap_unload(sc->bge_cdata.bge_rx_jumbo_ring_tag,
2793e65bed95SPyun YongHyeon sc->bge_cdata.bge_rx_jumbo_ring_map);
2794e65bed95SPyun YongHyeon
2795068d8643SJohn Baldwin if (sc->bge_ldata.bge_rx_jumbo_ring)
2796f41ac2beSBill Paul bus_dmamem_free(sc->bge_cdata.bge_rx_jumbo_ring_tag,
2797f41ac2beSBill Paul sc->bge_ldata.bge_rx_jumbo_ring,
2798f41ac2beSBill Paul sc->bge_cdata.bge_rx_jumbo_ring_map);
2799f41ac2beSBill Paul
2800f41ac2beSBill Paul if (sc->bge_cdata.bge_rx_jumbo_ring_tag)
2801f41ac2beSBill Paul bus_dma_tag_destroy(sc->bge_cdata.bge_rx_jumbo_ring_tag);
2802f41ac2beSBill Paul
28033f74909aSGleb Smirnoff /* Destroy RX return ring. */
2804068d8643SJohn Baldwin if (sc->bge_ldata.bge_rx_return_ring_paddr)
2805e65bed95SPyun YongHyeon bus_dmamap_unload(sc->bge_cdata.bge_rx_return_ring_tag,
2806e65bed95SPyun YongHyeon sc->bge_cdata.bge_rx_return_ring_map);
2807e65bed95SPyun YongHyeon
2808068d8643SJohn Baldwin if (sc->bge_ldata.bge_rx_return_ring)
2809f41ac2beSBill Paul bus_dmamem_free(sc->bge_cdata.bge_rx_return_ring_tag,
2810f41ac2beSBill Paul sc->bge_ldata.bge_rx_return_ring,
2811f41ac2beSBill Paul sc->bge_cdata.bge_rx_return_ring_map);
2812f41ac2beSBill Paul
2813f41ac2beSBill Paul if (sc->bge_cdata.bge_rx_return_ring_tag)
2814f41ac2beSBill Paul bus_dma_tag_destroy(sc->bge_cdata.bge_rx_return_ring_tag);
2815f41ac2beSBill Paul
28163f74909aSGleb Smirnoff /* Destroy TX ring. */
2817068d8643SJohn Baldwin if (sc->bge_ldata.bge_tx_ring_paddr)
2818e65bed95SPyun YongHyeon bus_dmamap_unload(sc->bge_cdata.bge_tx_ring_tag,
2819e65bed95SPyun YongHyeon sc->bge_cdata.bge_tx_ring_map);
2820e65bed95SPyun YongHyeon
2821068d8643SJohn Baldwin if (sc->bge_ldata.bge_tx_ring)
2822f41ac2beSBill Paul bus_dmamem_free(sc->bge_cdata.bge_tx_ring_tag,
2823f41ac2beSBill Paul sc->bge_ldata.bge_tx_ring,
2824f41ac2beSBill Paul sc->bge_cdata.bge_tx_ring_map);
2825f41ac2beSBill Paul
2826f41ac2beSBill Paul if (sc->bge_cdata.bge_tx_ring_tag)
2827f41ac2beSBill Paul bus_dma_tag_destroy(sc->bge_cdata.bge_tx_ring_tag);
2828f41ac2beSBill Paul
28293f74909aSGleb Smirnoff /* Destroy status block. */
2830068d8643SJohn Baldwin if (sc->bge_ldata.bge_status_block_paddr)
2831e65bed95SPyun YongHyeon bus_dmamap_unload(sc->bge_cdata.bge_status_tag,
2832e65bed95SPyun YongHyeon sc->bge_cdata.bge_status_map);
2833e65bed95SPyun YongHyeon
2834068d8643SJohn Baldwin if (sc->bge_ldata.bge_status_block)
2835f41ac2beSBill Paul bus_dmamem_free(sc->bge_cdata.bge_status_tag,
2836f41ac2beSBill Paul sc->bge_ldata.bge_status_block,
2837f41ac2beSBill Paul sc->bge_cdata.bge_status_map);
2838f41ac2beSBill Paul
2839f41ac2beSBill Paul if (sc->bge_cdata.bge_status_tag)
2840f41ac2beSBill Paul bus_dma_tag_destroy(sc->bge_cdata.bge_status_tag);
2841f41ac2beSBill Paul
28423f74909aSGleb Smirnoff /* Destroy statistics block. */
2843068d8643SJohn Baldwin if (sc->bge_ldata.bge_stats_paddr)
2844e65bed95SPyun YongHyeon bus_dmamap_unload(sc->bge_cdata.bge_stats_tag,
2845e65bed95SPyun YongHyeon sc->bge_cdata.bge_stats_map);
2846e65bed95SPyun YongHyeon
2847068d8643SJohn Baldwin if (sc->bge_ldata.bge_stats)
2848f41ac2beSBill Paul bus_dmamem_free(sc->bge_cdata.bge_stats_tag,
2849f41ac2beSBill Paul sc->bge_ldata.bge_stats,
2850f41ac2beSBill Paul sc->bge_cdata.bge_stats_map);
2851f41ac2beSBill Paul
2852f41ac2beSBill Paul if (sc->bge_cdata.bge_stats_tag)
2853f41ac2beSBill Paul bus_dma_tag_destroy(sc->bge_cdata.bge_stats_tag);
2854f41ac2beSBill Paul
28555b610048SPyun YongHyeon if (sc->bge_cdata.bge_buffer_tag)
28565b610048SPyun YongHyeon bus_dma_tag_destroy(sc->bge_cdata.bge_buffer_tag);
28575b610048SPyun YongHyeon
28583f74909aSGleb Smirnoff /* Destroy the parent tag. */
2859f41ac2beSBill Paul if (sc->bge_cdata.bge_parent_tag)
2860f41ac2beSBill Paul bus_dma_tag_destroy(sc->bge_cdata.bge_parent_tag);
2861f41ac2beSBill Paul }
2862f41ac2beSBill Paul
2863f41ac2beSBill Paul static int
bge_dma_ring_alloc(struct bge_softc * sc,bus_size_t alignment,bus_size_t maxsize,bus_dma_tag_t * tag,uint8_t ** ring,bus_dmamap_t * map,bus_addr_t * paddr,const char * msg)28645b610048SPyun YongHyeon bge_dma_ring_alloc(struct bge_softc *sc, bus_size_t alignment,
28655b610048SPyun YongHyeon bus_size_t maxsize, bus_dma_tag_t *tag, uint8_t **ring, bus_dmamap_t *map,
28665b610048SPyun YongHyeon bus_addr_t *paddr, const char *msg)
2867f41ac2beSBill Paul {
28683f74909aSGleb Smirnoff struct bge_dmamap_arg ctx;
2869e86fa024STycho Nightingale bus_addr_t lowaddr;
2870e86fa024STycho Nightingale bus_size_t ring_end;
28715b610048SPyun YongHyeon int error;
2872f41ac2beSBill Paul
2873e86fa024STycho Nightingale lowaddr = BUS_SPACE_MAXADDR;
2874e86fa024STycho Nightingale again:
28755b610048SPyun YongHyeon error = bus_dma_tag_create(sc->bge_cdata.bge_parent_tag,
2876e86fa024STycho Nightingale alignment, 0, lowaddr, BUS_SPACE_MAXADDR, NULL,
28775b610048SPyun YongHyeon NULL, maxsize, 1, maxsize, 0, NULL, NULL, tag);
28785b610048SPyun YongHyeon if (error != 0) {
28795b610048SPyun YongHyeon device_printf(sc->bge_dev,
28805b610048SPyun YongHyeon "could not create %s dma tag\n", msg);
28815b610048SPyun YongHyeon return (ENOMEM);
28825b610048SPyun YongHyeon }
28835b610048SPyun YongHyeon /* Allocate DMA'able memory for ring. */
28845b610048SPyun YongHyeon error = bus_dmamem_alloc(*tag, (void **)ring,
28855b610048SPyun YongHyeon BUS_DMA_NOWAIT | BUS_DMA_ZERO | BUS_DMA_COHERENT, map);
28865b610048SPyun YongHyeon if (error != 0) {
28875b610048SPyun YongHyeon device_printf(sc->bge_dev,
28885b610048SPyun YongHyeon "could not allocate DMA'able memory for %s\n", msg);
28895b610048SPyun YongHyeon return (ENOMEM);
28905b610048SPyun YongHyeon }
28915b610048SPyun YongHyeon /* Load the address of the ring. */
28925b610048SPyun YongHyeon ctx.bge_busaddr = 0;
28935b610048SPyun YongHyeon error = bus_dmamap_load(*tag, *map, *ring, maxsize, bge_dma_map_addr,
28945b610048SPyun YongHyeon &ctx, BUS_DMA_NOWAIT);
28955b610048SPyun YongHyeon if (error != 0) {
28965b610048SPyun YongHyeon device_printf(sc->bge_dev,
28975b610048SPyun YongHyeon "could not load DMA'able memory for %s\n", msg);
28985b610048SPyun YongHyeon return (ENOMEM);
28995b610048SPyun YongHyeon }
29005b610048SPyun YongHyeon *paddr = ctx.bge_busaddr;
2901e86fa024STycho Nightingale ring_end = *paddr + maxsize;
2902e86fa024STycho Nightingale if ((sc->bge_flags & BGE_FLAG_4G_BNDRY_BUG) != 0 &&
2903e86fa024STycho Nightingale BGE_ADDR_HI(*paddr) != BGE_ADDR_HI(ring_end)) {
2904e86fa024STycho Nightingale /*
2905e86fa024STycho Nightingale * 4GB boundary crossed. Limit maximum allowable DMA
2906e86fa024STycho Nightingale * address space to 32bit and try again.
2907e86fa024STycho Nightingale */
2908e86fa024STycho Nightingale bus_dmamap_unload(*tag, *map);
2909e86fa024STycho Nightingale bus_dmamem_free(*tag, *ring, *map);
2910e86fa024STycho Nightingale bus_dma_tag_destroy(*tag);
2911e86fa024STycho Nightingale if (bootverbose)
2912e86fa024STycho Nightingale device_printf(sc->bge_dev, "4GB boundary crossed, "
2913e86fa024STycho Nightingale "limit DMA address space to 32bit for %s\n", msg);
2914e86fa024STycho Nightingale *ring = NULL;
2915e86fa024STycho Nightingale *tag = NULL;
2916e86fa024STycho Nightingale *map = NULL;
2917e86fa024STycho Nightingale lowaddr = BUS_SPACE_MAXADDR_32BIT;
2918e86fa024STycho Nightingale goto again;
2919e86fa024STycho Nightingale }
29205b610048SPyun YongHyeon return (0);
29215b610048SPyun YongHyeon }
29225b610048SPyun YongHyeon
29235b610048SPyun YongHyeon static int
bge_dma_alloc(struct bge_softc * sc)29245b610048SPyun YongHyeon bge_dma_alloc(struct bge_softc *sc)
29255b610048SPyun YongHyeon {
29265b610048SPyun YongHyeon bus_addr_t lowaddr;
2927e86fa024STycho Nightingale bus_size_t boundary, sbsz, rxmaxsegsz, txsegsz, txmaxsegsz;
29285b610048SPyun YongHyeon int i, error;
2929f41ac2beSBill Paul
2930f681b29aSPyun YongHyeon lowaddr = BUS_SPACE_MAXADDR;
2931f681b29aSPyun YongHyeon if ((sc->bge_flags & BGE_FLAG_40BIT_BUG) != 0)
2932f681b29aSPyun YongHyeon lowaddr = BGE_DMA_MAXADDR;
2933f41ac2beSBill Paul /*
2934f41ac2beSBill Paul * Allocate the parent bus DMA tag appropriate for PCI.
2935f41ac2beSBill Paul */
29364eee14cbSMarius Strobl error = bus_dma_tag_create(bus_get_dma_tag(sc->bge_dev),
2937f681b29aSPyun YongHyeon 1, 0, lowaddr, BUS_SPACE_MAXADDR, NULL,
29384eee14cbSMarius Strobl NULL, BUS_SPACE_MAXSIZE_32BIT, 0, BUS_SPACE_MAXSIZE_32BIT,
29394eee14cbSMarius Strobl 0, NULL, NULL, &sc->bge_cdata.bge_parent_tag);
2940e65bed95SPyun YongHyeon if (error != 0) {
2941fe806fdaSPyun YongHyeon device_printf(sc->bge_dev,
2942fe806fdaSPyun YongHyeon "could not allocate parent dma tag\n");
2943e65bed95SPyun YongHyeon return (ENOMEM);
2944e65bed95SPyun YongHyeon }
2945e65bed95SPyun YongHyeon
29465b610048SPyun YongHyeon /* Create tag for standard RX ring. */
29475b610048SPyun YongHyeon error = bge_dma_ring_alloc(sc, PAGE_SIZE, BGE_STD_RX_RING_SZ,
29485b610048SPyun YongHyeon &sc->bge_cdata.bge_rx_std_ring_tag,
29495b610048SPyun YongHyeon (uint8_t **)&sc->bge_ldata.bge_rx_std_ring,
29505b610048SPyun YongHyeon &sc->bge_cdata.bge_rx_std_ring_map,
29515b610048SPyun YongHyeon &sc->bge_ldata.bge_rx_std_ring_paddr, "RX ring");
29525b610048SPyun YongHyeon if (error)
29535b610048SPyun YongHyeon return (error);
29545b610048SPyun YongHyeon
29555b610048SPyun YongHyeon /* Create tag for RX return ring. */
29565b610048SPyun YongHyeon error = bge_dma_ring_alloc(sc, PAGE_SIZE, BGE_RX_RTN_RING_SZ(sc),
29575b610048SPyun YongHyeon &sc->bge_cdata.bge_rx_return_ring_tag,
29585b610048SPyun YongHyeon (uint8_t **)&sc->bge_ldata.bge_rx_return_ring,
29595b610048SPyun YongHyeon &sc->bge_cdata.bge_rx_return_ring_map,
29605b610048SPyun YongHyeon &sc->bge_ldata.bge_rx_return_ring_paddr, "RX return ring");
29615b610048SPyun YongHyeon if (error)
29625b610048SPyun YongHyeon return (error);
29635b610048SPyun YongHyeon
29645b610048SPyun YongHyeon /* Create tag for TX ring. */
29655b610048SPyun YongHyeon error = bge_dma_ring_alloc(sc, PAGE_SIZE, BGE_TX_RING_SZ,
29665b610048SPyun YongHyeon &sc->bge_cdata.bge_tx_ring_tag,
29675b610048SPyun YongHyeon (uint8_t **)&sc->bge_ldata.bge_tx_ring,
29685b610048SPyun YongHyeon &sc->bge_cdata.bge_tx_ring_map,
29695b610048SPyun YongHyeon &sc->bge_ldata.bge_tx_ring_paddr, "TX ring");
29705b610048SPyun YongHyeon if (error)
29715b610048SPyun YongHyeon return (error);
29725b610048SPyun YongHyeon
2973f41ac2beSBill Paul /*
29745b610048SPyun YongHyeon * Create tag for status block.
29755b610048SPyun YongHyeon * Because we only use single Tx/Rx/Rx return ring, use
29765b610048SPyun YongHyeon * minimum status block size except BCM5700 AX/BX which
29775b610048SPyun YongHyeon * seems to want to see full status block size regardless
29785b610048SPyun YongHyeon * of configured number of ring.
2979f41ac2beSBill Paul */
29805b610048SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5700 &&
29815b610048SPyun YongHyeon sc->bge_chipid != BGE_CHIPID_BCM5700_C0)
29825b610048SPyun YongHyeon sbsz = BGE_STATUS_BLK_SZ;
29835b610048SPyun YongHyeon else
29845b610048SPyun YongHyeon sbsz = 32;
29855b610048SPyun YongHyeon error = bge_dma_ring_alloc(sc, PAGE_SIZE, sbsz,
29865b610048SPyun YongHyeon &sc->bge_cdata.bge_status_tag,
29875b610048SPyun YongHyeon (uint8_t **)&sc->bge_ldata.bge_status_block,
29885b610048SPyun YongHyeon &sc->bge_cdata.bge_status_map,
29895b610048SPyun YongHyeon &sc->bge_ldata.bge_status_block_paddr, "status block");
29905b610048SPyun YongHyeon if (error)
29915b610048SPyun YongHyeon return (error);
29925b610048SPyun YongHyeon
299312c65daeSPyun YongHyeon /* Create tag for statistics block. */
299412c65daeSPyun YongHyeon error = bge_dma_ring_alloc(sc, PAGE_SIZE, BGE_STATS_SZ,
299512c65daeSPyun YongHyeon &sc->bge_cdata.bge_stats_tag,
299612c65daeSPyun YongHyeon (uint8_t **)&sc->bge_ldata.bge_stats,
299712c65daeSPyun YongHyeon &sc->bge_cdata.bge_stats_map,
299812c65daeSPyun YongHyeon &sc->bge_ldata.bge_stats_paddr, "statistics block");
299912c65daeSPyun YongHyeon if (error)
300012c65daeSPyun YongHyeon return (error);
300112c65daeSPyun YongHyeon
30025b610048SPyun YongHyeon /* Create tag for jumbo RX ring. */
30035b610048SPyun YongHyeon if (BGE_IS_JUMBO_CAPABLE(sc)) {
30045b610048SPyun YongHyeon error = bge_dma_ring_alloc(sc, PAGE_SIZE, BGE_JUMBO_RX_RING_SZ,
30055b610048SPyun YongHyeon &sc->bge_cdata.bge_rx_jumbo_ring_tag,
30065b610048SPyun YongHyeon (uint8_t **)&sc->bge_ldata.bge_rx_jumbo_ring,
30075b610048SPyun YongHyeon &sc->bge_cdata.bge_rx_jumbo_ring_map,
30085b610048SPyun YongHyeon &sc->bge_ldata.bge_rx_jumbo_ring_paddr, "jumbo RX ring");
30095b610048SPyun YongHyeon if (error)
30105b610048SPyun YongHyeon return (error);
30115b610048SPyun YongHyeon }
30125b610048SPyun YongHyeon
30135b610048SPyun YongHyeon /* Create parent tag for buffers. */
3014e86fa024STycho Nightingale boundary = 0;
3015d2ffe15aSPyun YongHyeon if ((sc->bge_flags & BGE_FLAG_4G_BNDRY_BUG) != 0) {
3016e86fa024STycho Nightingale boundary = BGE_DMA_BNDRY;
3017d2ffe15aSPyun YongHyeon /*
3018d2ffe15aSPyun YongHyeon * XXX
3019d2ffe15aSPyun YongHyeon * watchdog timeout issue was observed on BCM5704 which
3020d2ffe15aSPyun YongHyeon * lives behind PCI-X bridge(e.g AMD 8131 PCI-X bridge).
3021062af0b0SPyun YongHyeon * Both limiting DMA address space to 32bits and flushing
3022062af0b0SPyun YongHyeon * mailbox write seem to address the issue.
3023d2ffe15aSPyun YongHyeon */
3024062af0b0SPyun YongHyeon if (sc->bge_pcixcap != 0)
3025d2ffe15aSPyun YongHyeon lowaddr = BUS_SPACE_MAXADDR_32BIT;
3026d2ffe15aSPyun YongHyeon }
3027e86fa024STycho Nightingale error = bus_dma_tag_create(bus_get_dma_tag(sc->bge_dev),
3028e86fa024STycho Nightingale 1, boundary, lowaddr, BUS_SPACE_MAXADDR, NULL,
3029e86fa024STycho Nightingale NULL, BUS_SPACE_MAXSIZE_32BIT, 0, BUS_SPACE_MAXSIZE_32BIT,
3030e86fa024STycho Nightingale 0, NULL, NULL, &sc->bge_cdata.bge_buffer_tag);
30315b610048SPyun YongHyeon if (error != 0) {
30325b610048SPyun YongHyeon device_printf(sc->bge_dev,
30335b610048SPyun YongHyeon "could not allocate buffer dma tag\n");
30345b610048SPyun YongHyeon return (ENOMEM);
30355b610048SPyun YongHyeon }
30365b610048SPyun YongHyeon /* Create tag for Tx mbufs. */
30371108273aSPyun YongHyeon if (sc->bge_flags & (BGE_FLAG_TSO | BGE_FLAG_TSO3)) {
3038ca3f1187SPyun YongHyeon txsegsz = BGE_TSOSEG_SZ;
3039ca3f1187SPyun YongHyeon txmaxsegsz = 65535 + sizeof(struct ether_vlan_header);
3040ca3f1187SPyun YongHyeon } else {
3041ca3f1187SPyun YongHyeon txsegsz = MCLBYTES;
3042ca3f1187SPyun YongHyeon txmaxsegsz = MCLBYTES * BGE_NSEG_NEW;
3043ca3f1187SPyun YongHyeon }
30445b610048SPyun YongHyeon error = bus_dma_tag_create(sc->bge_cdata.bge_buffer_tag, 1,
3045ca3f1187SPyun YongHyeon 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL, NULL,
3046ca3f1187SPyun YongHyeon txmaxsegsz, BGE_NSEG_NEW, txsegsz, 0, NULL, NULL,
3047ca3f1187SPyun YongHyeon &sc->bge_cdata.bge_tx_mtag);
3048f41ac2beSBill Paul
3049f41ac2beSBill Paul if (error) {
30500ac56796SPyun YongHyeon device_printf(sc->bge_dev, "could not allocate TX dma tag\n");
30510ac56796SPyun YongHyeon return (ENOMEM);
30520ac56796SPyun YongHyeon }
30530ac56796SPyun YongHyeon
30545b610048SPyun YongHyeon /* Create tag for Rx mbufs. */
3055f5459d4cSPyun YongHyeon if (sc->bge_flags & BGE_FLAG_JUMBO_STD)
3056f5459d4cSPyun YongHyeon rxmaxsegsz = MJUM9BYTES;
3057f5459d4cSPyun YongHyeon else
3058f5459d4cSPyun YongHyeon rxmaxsegsz = MCLBYTES;
30595b610048SPyun YongHyeon error = bus_dma_tag_create(sc->bge_cdata.bge_buffer_tag, 1, 0,
3060f5459d4cSPyun YongHyeon BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL, NULL, rxmaxsegsz, 1,
3061f5459d4cSPyun YongHyeon rxmaxsegsz, 0, NULL, NULL, &sc->bge_cdata.bge_rx_mtag);
30620ac56796SPyun YongHyeon
30630ac56796SPyun YongHyeon if (error) {
30640ac56796SPyun YongHyeon device_printf(sc->bge_dev, "could not allocate RX dma tag\n");
3065f41ac2beSBill Paul return (ENOMEM);
3066f41ac2beSBill Paul }
3067f41ac2beSBill Paul
30683f74909aSGleb Smirnoff /* Create DMA maps for RX buffers. */
3069943787f3SPyun YongHyeon error = bus_dmamap_create(sc->bge_cdata.bge_rx_mtag, 0,
3070943787f3SPyun YongHyeon &sc->bge_cdata.bge_rx_std_sparemap);
3071943787f3SPyun YongHyeon if (error) {
3072943787f3SPyun YongHyeon device_printf(sc->bge_dev,
3073943787f3SPyun YongHyeon "can't create spare DMA map for RX\n");
3074943787f3SPyun YongHyeon return (ENOMEM);
3075943787f3SPyun YongHyeon }
3076f41ac2beSBill Paul for (i = 0; i < BGE_STD_RX_RING_CNT; i++) {
30770ac56796SPyun YongHyeon error = bus_dmamap_create(sc->bge_cdata.bge_rx_mtag, 0,
3078f41ac2beSBill Paul &sc->bge_cdata.bge_rx_std_dmamap[i]);
3079f41ac2beSBill Paul if (error) {
3080fe806fdaSPyun YongHyeon device_printf(sc->bge_dev,
3081fe806fdaSPyun YongHyeon "can't create DMA map for RX\n");
3082f41ac2beSBill Paul return (ENOMEM);
3083f41ac2beSBill Paul }
3084f41ac2beSBill Paul }
3085f41ac2beSBill Paul
30863f74909aSGleb Smirnoff /* Create DMA maps for TX buffers. */
3087f41ac2beSBill Paul for (i = 0; i < BGE_TX_RING_CNT; i++) {
30880ac56796SPyun YongHyeon error = bus_dmamap_create(sc->bge_cdata.bge_tx_mtag, 0,
3089f41ac2beSBill Paul &sc->bge_cdata.bge_tx_dmamap[i]);
3090f41ac2beSBill Paul if (error) {
3091fe806fdaSPyun YongHyeon device_printf(sc->bge_dev,
30920ac56796SPyun YongHyeon "can't create DMA map for TX\n");
3093f41ac2beSBill Paul return (ENOMEM);
3094f41ac2beSBill Paul }
3095f41ac2beSBill Paul }
3096f41ac2beSBill Paul
30975b610048SPyun YongHyeon /* Create tags for jumbo RX buffers. */
30984c0da0ffSGleb Smirnoff if (BGE_IS_JUMBO_CAPABLE(sc)) {
30995b610048SPyun YongHyeon error = bus_dma_tag_create(sc->bge_cdata.bge_buffer_tag,
31008a2e22deSScott Long 1, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL,
31011be6acb7SGleb Smirnoff NULL, MJUM9BYTES, BGE_NSEG_JUMBO, PAGE_SIZE,
31021be6acb7SGleb Smirnoff 0, NULL, NULL, &sc->bge_cdata.bge_mtag_jumbo);
3103f41ac2beSBill Paul if (error) {
3104fe806fdaSPyun YongHyeon device_printf(sc->bge_dev,
31053f74909aSGleb Smirnoff "could not allocate jumbo dma tag\n");
3106f41ac2beSBill Paul return (ENOMEM);
3107f41ac2beSBill Paul }
31083f74909aSGleb Smirnoff /* Create DMA maps for jumbo RX buffers. */
3109943787f3SPyun YongHyeon error = bus_dmamap_create(sc->bge_cdata.bge_mtag_jumbo,
3110943787f3SPyun YongHyeon 0, &sc->bge_cdata.bge_rx_jumbo_sparemap);
3111943787f3SPyun YongHyeon if (error) {
3112943787f3SPyun YongHyeon device_printf(sc->bge_dev,
31131b90d0bdSPyun YongHyeon "can't create spare DMA map for jumbo RX\n");
3114943787f3SPyun YongHyeon return (ENOMEM);
3115943787f3SPyun YongHyeon }
3116f41ac2beSBill Paul for (i = 0; i < BGE_JUMBO_RX_RING_CNT; i++) {
3117f41ac2beSBill Paul error = bus_dmamap_create(sc->bge_cdata.bge_mtag_jumbo,
3118f41ac2beSBill Paul 0, &sc->bge_cdata.bge_rx_jumbo_dmamap[i]);
3119f41ac2beSBill Paul if (error) {
3120fe806fdaSPyun YongHyeon device_printf(sc->bge_dev,
31213f74909aSGleb Smirnoff "can't create DMA map for jumbo RX\n");
3122f41ac2beSBill Paul return (ENOMEM);
3123f41ac2beSBill Paul }
3124f41ac2beSBill Paul }
3125f41ac2beSBill Paul }
3126f41ac2beSBill Paul
3127f41ac2beSBill Paul return (0);
3128f41ac2beSBill Paul }
3129f41ac2beSBill Paul
3130bf6ef57aSJohn Polstra /*
3131bf6ef57aSJohn Polstra * Return true if this device has more than one port.
3132bf6ef57aSJohn Polstra */
3133bf6ef57aSJohn Polstra static int
bge_has_multiple_ports(struct bge_softc * sc)3134bf6ef57aSJohn Polstra bge_has_multiple_ports(struct bge_softc *sc)
3135bf6ef57aSJohn Polstra {
3136bf6ef57aSJohn Polstra device_t dev = sc->bge_dev;
313755aaf894SMarius Strobl u_int b, d, f, fscan, s;
3138bf6ef57aSJohn Polstra
313955aaf894SMarius Strobl d = pci_get_domain(dev);
3140bf6ef57aSJohn Polstra b = pci_get_bus(dev);
3141bf6ef57aSJohn Polstra s = pci_get_slot(dev);
3142bf6ef57aSJohn Polstra f = pci_get_function(dev);
3143bf6ef57aSJohn Polstra for (fscan = 0; fscan <= PCI_FUNCMAX; fscan++)
314455aaf894SMarius Strobl if (fscan != f && pci_find_dbsf(d, b, s, fscan) != NULL)
3145bf6ef57aSJohn Polstra return (1);
3146bf6ef57aSJohn Polstra return (0);
3147bf6ef57aSJohn Polstra }
3148bf6ef57aSJohn Polstra
3149bf6ef57aSJohn Polstra /*
3150bf6ef57aSJohn Polstra * Return true if MSI can be used with this device.
3151bf6ef57aSJohn Polstra */
3152bf6ef57aSJohn Polstra static int
bge_can_use_msi(struct bge_softc * sc)3153bf6ef57aSJohn Polstra bge_can_use_msi(struct bge_softc *sc)
3154bf6ef57aSJohn Polstra {
3155bf6ef57aSJohn Polstra int can_use_msi = 0;
3156bf6ef57aSJohn Polstra
3157d9fc28e4SPyun YongHyeon if (sc->bge_msi == 0)
31585c952e8dSPyun YongHyeon return (0);
31595c952e8dSPyun YongHyeon
31601108273aSPyun YongHyeon /* Disable MSI for polling(4). */
31611108273aSPyun YongHyeon #ifdef DEVICE_POLLING
31621108273aSPyun YongHyeon return (0);
31631108273aSPyun YongHyeon #endif
3164bf6ef57aSJohn Polstra switch (sc->bge_asicrev) {
3165a8376f70SMarius Strobl case BGE_ASICREV_BCM5714_A0:
3166bf6ef57aSJohn Polstra case BGE_ASICREV_BCM5714:
3167bf6ef57aSJohn Polstra /*
3168a8376f70SMarius Strobl * Apparently, MSI doesn't work when these chips are
3169a8376f70SMarius Strobl * configured in single-port mode.
3170bf6ef57aSJohn Polstra */
3171bf6ef57aSJohn Polstra if (bge_has_multiple_ports(sc))
3172bf6ef57aSJohn Polstra can_use_msi = 1;
3173bf6ef57aSJohn Polstra break;
3174bf6ef57aSJohn Polstra case BGE_ASICREV_BCM5750:
3175bf6ef57aSJohn Polstra if (sc->bge_chiprev != BGE_CHIPREV_5750_AX &&
3176bf6ef57aSJohn Polstra sc->bge_chiprev != BGE_CHIPREV_5750_BX)
3177bf6ef57aSJohn Polstra can_use_msi = 1;
3178bf6ef57aSJohn Polstra break;
317991c69b97SEugene Grosbein case BGE_ASICREV_BCM5784:
318091c69b97SEugene Grosbein /*
318191c69b97SEugene Grosbein * Prevent infinite "watchdog timeout" errors
318291c69b97SEugene Grosbein * in some MacBook Pro and make it work out-of-the-box.
318391c69b97SEugene Grosbein */
318491c69b97SEugene Grosbein if (sc->bge_chiprev == BGE_CHIPREV_5784_AX)
318591c69b97SEugene Grosbein break;
318691c69b97SEugene Grosbein /* FALLTHROUGH */
3187a8376f70SMarius Strobl default:
3188a8376f70SMarius Strobl if (BGE_IS_575X_PLUS(sc))
3189bf6ef57aSJohn Polstra can_use_msi = 1;
3190bf6ef57aSJohn Polstra }
3191bf6ef57aSJohn Polstra return (can_use_msi);
3192bf6ef57aSJohn Polstra }
3193bf6ef57aSJohn Polstra
319495d67482SBill Paul static int
bge_mbox_reorder(struct bge_softc * sc)3195062af0b0SPyun YongHyeon bge_mbox_reorder(struct bge_softc *sc)
3196062af0b0SPyun YongHyeon {
3197062af0b0SPyun YongHyeon /* Lists of PCI bridges that are known to reorder mailbox writes. */
3198062af0b0SPyun YongHyeon static const struct mbox_reorder {
3199062af0b0SPyun YongHyeon const uint16_t vendor;
3200062af0b0SPyun YongHyeon const uint16_t device;
3201062af0b0SPyun YongHyeon const char *desc;
320229658c96SDimitry Andric } mbox_reorder_lists[] = {
3203062af0b0SPyun YongHyeon { 0x1022, 0x7450, "AMD-8131 PCI-X Bridge" },
3204062af0b0SPyun YongHyeon };
3205062af0b0SPyun YongHyeon devclass_t pci, pcib;
3206062af0b0SPyun YongHyeon device_t bus, dev;
320747f4a4dcSMarius Strobl int i;
3208062af0b0SPyun YongHyeon
3209062af0b0SPyun YongHyeon pci = devclass_find("pci");
3210062af0b0SPyun YongHyeon pcib = devclass_find("pcib");
3211062af0b0SPyun YongHyeon dev = sc->bge_dev;
3212062af0b0SPyun YongHyeon bus = device_get_parent(dev);
3213062af0b0SPyun YongHyeon for (;;) {
3214062af0b0SPyun YongHyeon dev = device_get_parent(bus);
3215062af0b0SPyun YongHyeon bus = device_get_parent(dev);
3216062af0b0SPyun YongHyeon if (device_get_devclass(dev) != pcib)
3217062af0b0SPyun YongHyeon break;
3218a70e114dSAndriy Gapon if (device_get_devclass(bus) != pci)
3219a70e114dSAndriy Gapon break;
322047f4a4dcSMarius Strobl for (i = 0; i < nitems(mbox_reorder_lists); i++) {
3221062af0b0SPyun YongHyeon if (pci_get_vendor(dev) ==
3222062af0b0SPyun YongHyeon mbox_reorder_lists[i].vendor &&
3223062af0b0SPyun YongHyeon pci_get_device(dev) ==
3224062af0b0SPyun YongHyeon mbox_reorder_lists[i].device) {
3225062af0b0SPyun YongHyeon device_printf(sc->bge_dev,
3226062af0b0SPyun YongHyeon "enabling MBOX workaround for %s\n",
3227062af0b0SPyun YongHyeon mbox_reorder_lists[i].desc);
3228062af0b0SPyun YongHyeon return (1);
3229062af0b0SPyun YongHyeon }
3230062af0b0SPyun YongHyeon }
3231062af0b0SPyun YongHyeon }
3232062af0b0SPyun YongHyeon return (0);
3233062af0b0SPyun YongHyeon }
3234062af0b0SPyun YongHyeon
3235ea9c3a30SPyun YongHyeon static void
bge_devinfo(struct bge_softc * sc)3236ea9c3a30SPyun YongHyeon bge_devinfo(struct bge_softc *sc)
3237ea9c3a30SPyun YongHyeon {
3238ea9c3a30SPyun YongHyeon uint32_t cfg, clk;
3239ea9c3a30SPyun YongHyeon
3240ea9c3a30SPyun YongHyeon device_printf(sc->bge_dev,
3241ea9c3a30SPyun YongHyeon "CHIP ID 0x%08x; ASIC REV 0x%02x; CHIP REV 0x%02x; ",
3242ea9c3a30SPyun YongHyeon sc->bge_chipid, sc->bge_asicrev, sc->bge_chiprev);
3243ea9c3a30SPyun YongHyeon if (sc->bge_flags & BGE_FLAG_PCIE)
3244ea9c3a30SPyun YongHyeon printf("PCI-E\n");
3245ea9c3a30SPyun YongHyeon else if (sc->bge_flags & BGE_FLAG_PCIX) {
3246ea9c3a30SPyun YongHyeon printf("PCI-X ");
3247ea9c3a30SPyun YongHyeon cfg = CSR_READ_4(sc, BGE_MISC_CFG) & BGE_MISCCFG_BOARD_ID_MASK;
3248ea9c3a30SPyun YongHyeon if (cfg == BGE_MISCCFG_BOARD_ID_5704CIOBE)
3249ea9c3a30SPyun YongHyeon clk = 133;
3250ea9c3a30SPyun YongHyeon else {
3251ea9c3a30SPyun YongHyeon clk = CSR_READ_4(sc, BGE_PCI_CLKCTL) & 0x1F;
3252ea9c3a30SPyun YongHyeon switch (clk) {
3253ea9c3a30SPyun YongHyeon case 0:
3254ea9c3a30SPyun YongHyeon clk = 33;
3255ea9c3a30SPyun YongHyeon break;
3256ea9c3a30SPyun YongHyeon case 2:
3257ea9c3a30SPyun YongHyeon clk = 50;
3258ea9c3a30SPyun YongHyeon break;
3259ea9c3a30SPyun YongHyeon case 4:
3260ea9c3a30SPyun YongHyeon clk = 66;
3261ea9c3a30SPyun YongHyeon break;
3262ea9c3a30SPyun YongHyeon case 6:
3263ea9c3a30SPyun YongHyeon clk = 100;
3264ea9c3a30SPyun YongHyeon break;
3265ea9c3a30SPyun YongHyeon case 7:
3266ea9c3a30SPyun YongHyeon clk = 133;
3267ea9c3a30SPyun YongHyeon break;
3268ea9c3a30SPyun YongHyeon }
3269ea9c3a30SPyun YongHyeon }
3270ea9c3a30SPyun YongHyeon printf("%u MHz\n", clk);
3271ea9c3a30SPyun YongHyeon } else {
3272ea9c3a30SPyun YongHyeon if (sc->bge_pcixcap != 0)
3273ea9c3a30SPyun YongHyeon printf("PCI on PCI-X ");
3274ea9c3a30SPyun YongHyeon else
3275ea9c3a30SPyun YongHyeon printf("PCI ");
3276ea9c3a30SPyun YongHyeon cfg = pci_read_config(sc->bge_dev, BGE_PCI_PCISTATE, 4);
3277ea9c3a30SPyun YongHyeon if (cfg & BGE_PCISTATE_PCI_BUSSPEED)
3278ea9c3a30SPyun YongHyeon clk = 66;
3279ea9c3a30SPyun YongHyeon else
3280ea9c3a30SPyun YongHyeon clk = 33;
3281ea9c3a30SPyun YongHyeon if (cfg & BGE_PCISTATE_32BIT_BUS)
3282ea9c3a30SPyun YongHyeon printf("%u MHz; 32bit\n", clk);
3283ea9c3a30SPyun YongHyeon else
3284ea9c3a30SPyun YongHyeon printf("%u MHz; 64bit\n", clk);
3285ea9c3a30SPyun YongHyeon }
3286ea9c3a30SPyun YongHyeon }
3287ea9c3a30SPyun YongHyeon
3288062af0b0SPyun YongHyeon static int
bge_attach(device_t dev)32893f74909aSGleb Smirnoff bge_attach(device_t dev)
329095d67482SBill Paul {
3291fba8b109SMarcel Moolenaar if_t ifp;
329295d67482SBill Paul struct bge_softc *sc;
3293548c8f1aSPyun YongHyeon uint32_t hwcfg = 0, misccfg, pcistate;
329408013fd3SMarius Strobl u_char eaddr[ETHER_ADDR_LEN];
3295ad4328baSMarius Strobl int capmask, error, reg, rid, trys;
329695d67482SBill Paul
329795d67482SBill Paul sc = device_get_softc(dev);
329895d67482SBill Paul sc->bge_dev = dev;
329995d67482SBill Paul
3300e010b055SPyun YongHyeon BGE_LOCK_INIT(sc, device_get_nameunit(dev));
33016c3e93cbSGleb Smirnoff NET_TASK_INIT(&sc->bge_intr_task, 0, bge_intr_task, sc);
3302e010b055SPyun YongHyeon callout_init_mtx(&sc->bge_stat_ch, &sc->bge_mtx, 0);
3303dfe0df9aSPyun YongHyeon
330495d67482SBill Paul pci_enable_busmaster(dev);
330595d67482SBill Paul
3306ad4328baSMarius Strobl /*
3307ad4328baSMarius Strobl * Allocate control/status registers.
3308ad4328baSMarius Strobl */
3309736b9319SPyun YongHyeon rid = PCIR_BAR(0);
33105f96beb9SNate Lawson sc->bge_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
331144f8f2fcSMarius Strobl RF_ACTIVE);
331295d67482SBill Paul
331395d67482SBill Paul if (sc->bge_res == NULL) {
3314548c8f1aSPyun YongHyeon device_printf (sc->bge_dev, "couldn't map BAR0 memory\n");
331595d67482SBill Paul error = ENXIO;
331695d67482SBill Paul goto fail;
331795d67482SBill Paul }
331895d67482SBill Paul
33194f09c4c7SMarius Strobl /* Save various chip information. */
3320548c8f1aSPyun YongHyeon sc->bge_func_addr = pci_get_function(dev);
3321d7acafa1SMarius Strobl sc->bge_chipid = bge_chipid(dev);
3322e53d81eeSPaul Saab sc->bge_asicrev = BGE_ASICREV(sc->bge_chipid);
3323e53d81eeSPaul Saab sc->bge_chiprev = BGE_CHIPREV(sc->bge_chipid);
3324e53d81eeSPaul Saab
3325a813ed78SPyun YongHyeon /* Set default PHY address. */
3326daeeb75cSPyun YongHyeon sc->bge_phy_addr = 1;
33271108273aSPyun YongHyeon /*
33281108273aSPyun YongHyeon * PHY address mapping for various devices.
33291108273aSPyun YongHyeon *
33301108273aSPyun YongHyeon * | F0 Cu | F0 Sr | F1 Cu | F1 Sr |
33311108273aSPyun YongHyeon * ---------+-------+-------+-------+-------+
33321108273aSPyun YongHyeon * BCM57XX | 1 | X | X | X |
33331108273aSPyun YongHyeon * BCM5704 | 1 | X | 1 | X |
33341108273aSPyun YongHyeon * BCM5717 | 1 | 8 | 2 | 9 |
3335bbe2ca75SPyun YongHyeon * BCM5719 | 1 | 8 | 2 | 9 |
333650515680SPyun YongHyeon * BCM5720 | 1 | 8 | 2 | 9 |
33371108273aSPyun YongHyeon *
3338548c8f1aSPyun YongHyeon * | F2 Cu | F2 Sr | F3 Cu | F3 Sr |
3339548c8f1aSPyun YongHyeon * ---------+-------+-------+-------+-------+
3340548c8f1aSPyun YongHyeon * BCM57XX | X | X | X | X |
3341548c8f1aSPyun YongHyeon * BCM5704 | X | X | X | X |
3342548c8f1aSPyun YongHyeon * BCM5717 | X | X | X | X |
3343548c8f1aSPyun YongHyeon * BCM5719 | 3 | 10 | 4 | 11 |
3344548c8f1aSPyun YongHyeon * BCM5720 | X | X | X | X |
3345548c8f1aSPyun YongHyeon *
33461108273aSPyun YongHyeon * Other addresses may respond but they are not
33471108273aSPyun YongHyeon * IEEE compliant PHYs and should be ignored.
33481108273aSPyun YongHyeon */
3349bbe2ca75SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5717 ||
335050515680SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5719 ||
335150515680SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5720) {
3352548c8f1aSPyun YongHyeon if (sc->bge_chipid != BGE_CHIPID_BCM5717_A0) {
33531108273aSPyun YongHyeon if (CSR_READ_4(sc, BGE_SGDIG_STS) &
33541108273aSPyun YongHyeon BGE_SGDIGSTS_IS_SERDES)
3355daeeb75cSPyun YongHyeon sc->bge_phy_addr = sc->bge_func_addr + 8;
33561108273aSPyun YongHyeon else
3357daeeb75cSPyun YongHyeon sc->bge_phy_addr = sc->bge_func_addr + 1;
3358bbe2ca75SPyun YongHyeon } else {
33591108273aSPyun YongHyeon if (CSR_READ_4(sc, BGE_CPMU_PHY_STRAP) &
33601108273aSPyun YongHyeon BGE_CPMU_PHY_STRAP_IS_SERDES)
3361daeeb75cSPyun YongHyeon sc->bge_phy_addr = sc->bge_func_addr + 8;
33621108273aSPyun YongHyeon else
3363daeeb75cSPyun YongHyeon sc->bge_phy_addr = sc->bge_func_addr + 1;
33641108273aSPyun YongHyeon }
33651108273aSPyun YongHyeon }
3366a813ed78SPyun YongHyeon
33675fea260fSMarius Strobl if (bge_has_eaddr(sc))
33685fea260fSMarius Strobl sc->bge_flags |= BGE_FLAG_EADDR;
336908013fd3SMarius Strobl
33700dae9719SJung-uk Kim /* Save chipset family. */
33710dae9719SJung-uk Kim switch (sc->bge_asicrev) {
33722927f01fSPyun YongHyeon case BGE_ASICREV_BCM5762:
3373fe26ad88SPyun YongHyeon case BGE_ASICREV_BCM57765:
3374fe26ad88SPyun YongHyeon case BGE_ASICREV_BCM57766:
3375fe26ad88SPyun YongHyeon sc->bge_flags |= BGE_FLAG_57765_PLUS;
3376fe26ad88SPyun YongHyeon /* FALLTHROUGH */
33771108273aSPyun YongHyeon case BGE_ASICREV_BCM5717:
3378bbe2ca75SPyun YongHyeon case BGE_ASICREV_BCM5719:
337950515680SPyun YongHyeon case BGE_ASICREV_BCM5720:
33801108273aSPyun YongHyeon sc->bge_flags |= BGE_FLAG_5717_PLUS | BGE_FLAG_5755_PLUS |
33811108273aSPyun YongHyeon BGE_FLAG_575X_PLUS | BGE_FLAG_5705_PLUS | BGE_FLAG_JUMBO |
3382b4a256acSPyun YongHyeon BGE_FLAG_JUMBO_FRAME;
338329b44b09SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5719 ||
338429b44b09SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5720) {
338529b44b09SPyun YongHyeon /*
338629b44b09SPyun YongHyeon * Enable work around for DMA engine miscalculation
338729b44b09SPyun YongHyeon * of TXMBUF available space.
338829b44b09SPyun YongHyeon */
338929b44b09SPyun YongHyeon sc->bge_flags |= BGE_FLAG_RDMA_BUG;
3390bbe2ca75SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5719 &&
3391bbe2ca75SPyun YongHyeon sc->bge_chipid == BGE_CHIPID_BCM5719_A0) {
3392bbe2ca75SPyun YongHyeon /* Jumbo frame on BCM5719 A0 does not work. */
3393463a7e27SPyun YongHyeon sc->bge_flags &= ~BGE_FLAG_JUMBO;
3394bbe2ca75SPyun YongHyeon }
339529b44b09SPyun YongHyeon }
33961108273aSPyun YongHyeon break;
3397a5779553SStanislav Sedov case BGE_ASICREV_BCM5755:
3398a5779553SStanislav Sedov case BGE_ASICREV_BCM5761:
3399a5779553SStanislav Sedov case BGE_ASICREV_BCM5784:
3400a5779553SStanislav Sedov case BGE_ASICREV_BCM5785:
3401a5779553SStanislav Sedov case BGE_ASICREV_BCM5787:
3402a5779553SStanislav Sedov case BGE_ASICREV_BCM57780:
3403a5779553SStanislav Sedov sc->bge_flags |= BGE_FLAG_5755_PLUS | BGE_FLAG_575X_PLUS |
3404a5779553SStanislav Sedov BGE_FLAG_5705_PLUS;
3405a5779553SStanislav Sedov break;
34060dae9719SJung-uk Kim case BGE_ASICREV_BCM5700:
34070dae9719SJung-uk Kim case BGE_ASICREV_BCM5701:
34080dae9719SJung-uk Kim case BGE_ASICREV_BCM5703:
34090dae9719SJung-uk Kim case BGE_ASICREV_BCM5704:
34107ee00338SJung-uk Kim sc->bge_flags |= BGE_FLAG_5700_FAMILY | BGE_FLAG_JUMBO;
34110dae9719SJung-uk Kim break;
34120dae9719SJung-uk Kim case BGE_ASICREV_BCM5714_A0:
34130dae9719SJung-uk Kim case BGE_ASICREV_BCM5780:
34140dae9719SJung-uk Kim case BGE_ASICREV_BCM5714:
3415f5459d4cSPyun YongHyeon sc->bge_flags |= BGE_FLAG_5714_FAMILY | BGE_FLAG_JUMBO_STD;
34169fe569d8SXin LI /* FALLTHROUGH */
34170dae9719SJung-uk Kim case BGE_ASICREV_BCM5750:
34180dae9719SJung-uk Kim case BGE_ASICREV_BCM5752:
341938cc658fSJohn Baldwin case BGE_ASICREV_BCM5906:
34200dae9719SJung-uk Kim sc->bge_flags |= BGE_FLAG_575X_PLUS;
34219fe569d8SXin LI /* FALLTHROUGH */
34220dae9719SJung-uk Kim case BGE_ASICREV_BCM5705:
34230dae9719SJung-uk Kim sc->bge_flags |= BGE_FLAG_5705_PLUS;
34240dae9719SJung-uk Kim break;
34250dae9719SJung-uk Kim }
34260dae9719SJung-uk Kim
3427548c8f1aSPyun YongHyeon /* Identify chips with APE processor. */
3428548c8f1aSPyun YongHyeon switch (sc->bge_asicrev) {
3429548c8f1aSPyun YongHyeon case BGE_ASICREV_BCM5717:
3430548c8f1aSPyun YongHyeon case BGE_ASICREV_BCM5719:
3431548c8f1aSPyun YongHyeon case BGE_ASICREV_BCM5720:
3432548c8f1aSPyun YongHyeon case BGE_ASICREV_BCM5761:
34332927f01fSPyun YongHyeon case BGE_ASICREV_BCM5762:
3434548c8f1aSPyun YongHyeon sc->bge_flags |= BGE_FLAG_APE;
3435548c8f1aSPyun YongHyeon break;
3436548c8f1aSPyun YongHyeon }
3437548c8f1aSPyun YongHyeon
3438548c8f1aSPyun YongHyeon /* Chips with APE need BAR2 access for APE registers/memory. */
3439548c8f1aSPyun YongHyeon if ((sc->bge_flags & BGE_FLAG_APE) != 0) {
3440548c8f1aSPyun YongHyeon rid = PCIR_BAR(2);
3441548c8f1aSPyun YongHyeon sc->bge_res2 = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
3442548c8f1aSPyun YongHyeon RF_ACTIVE);
3443548c8f1aSPyun YongHyeon if (sc->bge_res2 == NULL) {
3444548c8f1aSPyun YongHyeon device_printf (sc->bge_dev,
3445548c8f1aSPyun YongHyeon "couldn't map BAR2 memory\n");
3446548c8f1aSPyun YongHyeon error = ENXIO;
3447548c8f1aSPyun YongHyeon goto fail;
3448548c8f1aSPyun YongHyeon }
3449548c8f1aSPyun YongHyeon
3450548c8f1aSPyun YongHyeon /* Enable APE register/memory access by host driver. */
3451548c8f1aSPyun YongHyeon pcistate = pci_read_config(dev, BGE_PCI_PCISTATE, 4);
3452548c8f1aSPyun YongHyeon pcistate |= BGE_PCISTATE_ALLOW_APE_CTLSPC_WR |
3453548c8f1aSPyun YongHyeon BGE_PCISTATE_ALLOW_APE_SHMEM_WR |
3454548c8f1aSPyun YongHyeon BGE_PCISTATE_ALLOW_APE_PSPACE_WR;
3455548c8f1aSPyun YongHyeon pci_write_config(dev, BGE_PCI_PCISTATE, pcistate, 4);
3456548c8f1aSPyun YongHyeon
3457548c8f1aSPyun YongHyeon bge_ape_lock_init(sc);
3458548c8f1aSPyun YongHyeon bge_ape_read_fw_ver(sc);
3459548c8f1aSPyun YongHyeon }
3460548c8f1aSPyun YongHyeon
3461749a5269SMarius Strobl /* Add SYSCTLs, requires the chipset family to be set. */
3462749a5269SMarius Strobl bge_add_sysctls(sc);
3463749a5269SMarius Strobl
3464a813ed78SPyun YongHyeon /* Identify the chips that use an CPMU. */
34651108273aSPyun YongHyeon if (BGE_IS_5717_PLUS(sc) ||
34661108273aSPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5784 ||
3467a813ed78SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5761 ||
3468a813ed78SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5785 ||
3469a813ed78SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM57780)
3470a813ed78SPyun YongHyeon sc->bge_flags |= BGE_FLAG_CPMU_PRESENT;
3471a813ed78SPyun YongHyeon if ((sc->bge_flags & BGE_FLAG_CPMU_PRESENT) != 0)
3472a813ed78SPyun YongHyeon sc->bge_mi_mode = BGE_MIMODE_500KHZ_CONST;
3473a813ed78SPyun YongHyeon else
3474a813ed78SPyun YongHyeon sc->bge_mi_mode = BGE_MIMODE_BASE;
34757ed3f0f0SPyun YongHyeon /* Enable auto polling for BCM570[0-5]. */
34767ed3f0f0SPyun YongHyeon if (BGE_IS_5700_FAMILY(sc) || sc->bge_asicrev == BGE_ASICREV_BCM5705)
34777ed3f0f0SPyun YongHyeon sc->bge_mi_mode |= BGE_MIMODE_AUTOPOLL;
3478a813ed78SPyun YongHyeon
3479f681b29aSPyun YongHyeon /*
3480d4622124SPyun YongHyeon * All Broadcom controllers have 4GB boundary DMA bug.
3481f681b29aSPyun YongHyeon * Whenever an address crosses a multiple of the 4GB boundary
3482f681b29aSPyun YongHyeon * (including 4GB, 8Gb, 12Gb, etc.) and makes the transition
3483f681b29aSPyun YongHyeon * from 0xX_FFFF_FFFF to 0x(X+1)_0000_0000 an internal DMA
3484f681b29aSPyun YongHyeon * state machine will lockup and cause the device to hang.
3485f681b29aSPyun YongHyeon */
3486f681b29aSPyun YongHyeon sc->bge_flags |= BGE_FLAG_4G_BNDRY_BUG;
34874f0794ffSBjoern A. Zeeb
3488d9820cd8SPyun YongHyeon /* BCM5755 or higher and BCM5906 have short DMA bug. */
3489d9820cd8SPyun YongHyeon if (BGE_IS_5755_PLUS(sc) || sc->bge_asicrev == BGE_ASICREV_BCM5906)
3490d9820cd8SPyun YongHyeon sc->bge_flags |= BGE_FLAG_SHORT_DMA_BUG;
3491d9820cd8SPyun YongHyeon
3492a7fcfcf3SPyun YongHyeon /*
3493a7fcfcf3SPyun YongHyeon * BCM5719 cannot handle DMA requests for DMA segments that
3494a7fcfcf3SPyun YongHyeon * have larger than 4KB in size. However the maximum DMA
3495a7fcfcf3SPyun YongHyeon * segment size created in DMA tag is 4KB for TSO, so we
3496a7fcfcf3SPyun YongHyeon * wouldn't encounter the issue here.
3497a7fcfcf3SPyun YongHyeon */
3498a7fcfcf3SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5719)
3499a7fcfcf3SPyun YongHyeon sc->bge_flags |= BGE_FLAG_4K_RDMA_BUG;
3500a7fcfcf3SPyun YongHyeon
3501ea9c3a30SPyun YongHyeon misccfg = CSR_READ_4(sc, BGE_MISC_CFG) & BGE_MISCCFG_BOARD_ID_MASK;
3502fb772a6cSMarius Strobl if (sc->bge_asicrev == BGE_ASICREV_BCM5705) {
35034f0794ffSBjoern A. Zeeb if (misccfg == BGE_MISCCFG_BOARD_ID_5788 ||
35044f0794ffSBjoern A. Zeeb misccfg == BGE_MISCCFG_BOARD_ID_5788M)
35054f0794ffSBjoern A. Zeeb sc->bge_flags |= BGE_FLAG_5788;
350684ac96f8SPyun YongHyeon }
35074f0794ffSBjoern A. Zeeb
3508fb772a6cSMarius Strobl capmask = BMSR_DEFCAPMASK;
3509fb772a6cSMarius Strobl if ((sc->bge_asicrev == BGE_ASICREV_BCM5703 &&
3510fb772a6cSMarius Strobl (misccfg == 0x4000 || misccfg == 0x8000)) ||
3511fb772a6cSMarius Strobl (sc->bge_asicrev == BGE_ASICREV_BCM5705 &&
3512fb772a6cSMarius Strobl pci_get_vendor(dev) == BCOM_VENDORID &&
3513fb772a6cSMarius Strobl (pci_get_device(dev) == BCOM_DEVICEID_BCM5901 ||
3514fb772a6cSMarius Strobl pci_get_device(dev) == BCOM_DEVICEID_BCM5901A2 ||
3515fb772a6cSMarius Strobl pci_get_device(dev) == BCOM_DEVICEID_BCM5705F)) ||
3516fb772a6cSMarius Strobl (pci_get_vendor(dev) == BCOM_VENDORID &&
3517fb772a6cSMarius Strobl (pci_get_device(dev) == BCOM_DEVICEID_BCM5751F ||
3518fb772a6cSMarius Strobl pci_get_device(dev) == BCOM_DEVICEID_BCM5753F ||
3519fb772a6cSMarius Strobl pci_get_device(dev) == BCOM_DEVICEID_BCM5787F)) ||
3520fb772a6cSMarius Strobl pci_get_device(dev) == BCOM_DEVICEID_BCM57790 ||
3521d7acafa1SMarius Strobl pci_get_device(dev) == BCOM_DEVICEID_BCM57791 ||
3522d7acafa1SMarius Strobl pci_get_device(dev) == BCOM_DEVICEID_BCM57795 ||
3523fb772a6cSMarius Strobl sc->bge_asicrev == BGE_ASICREV_BCM5906) {
3524fb772a6cSMarius Strobl /* These chips are 10/100 only. */
3525fb772a6cSMarius Strobl capmask &= ~BMSR_EXTSTAT;
3526d73ea7c6SPyun YongHyeon sc->bge_phy_flags |= BGE_PHY_NO_WIRESPEED;
3527fb772a6cSMarius Strobl }
3528fb772a6cSMarius Strobl
3529e53d81eeSPaul Saab /*
3530ca3f1187SPyun YongHyeon * Some controllers seem to require a special firmware to use
3531ca3f1187SPyun YongHyeon * TSO. But the firmware is not available to FreeBSD and Linux
3532ca3f1187SPyun YongHyeon * claims that the TSO performed by the firmware is slower than
3533ca3f1187SPyun YongHyeon * hardware based TSO. Moreover the firmware based TSO has one
3534d7acafa1SMarius Strobl * known bug which can't handle TSO if Ethernet header + IP/TCP
3535d7acafa1SMarius Strobl * header is greater than 80 bytes. A workaround for the TSO
3536ca3f1187SPyun YongHyeon * bug exist but it seems it's too expensive than not using
3537d646dca3SGordon Bergling * TSO at all. Some hardware also have the TSO bug so limit
3538ca3f1187SPyun YongHyeon * the TSO to the controllers that are not affected TSO issues
3539ca3f1187SPyun YongHyeon * (e.g. 5755 or higher).
3540ca3f1187SPyun YongHyeon */
35411108273aSPyun YongHyeon if (BGE_IS_5717_PLUS(sc)) {
35421108273aSPyun YongHyeon /* BCM5717 requires different TSO configuration. */
35431108273aSPyun YongHyeon sc->bge_flags |= BGE_FLAG_TSO3;
3544bbe2ca75SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5719 &&
3545bbe2ca75SPyun YongHyeon sc->bge_chipid == BGE_CHIPID_BCM5719_A0) {
3546bbe2ca75SPyun YongHyeon /* TSO on BCM5719 A0 does not work. */
3547bbe2ca75SPyun YongHyeon sc->bge_flags &= ~BGE_FLAG_TSO3;
3548bbe2ca75SPyun YongHyeon }
35491108273aSPyun YongHyeon } else if (BGE_IS_5755_PLUS(sc)) {
35504f4a16e1SPyun YongHyeon /*
35514f4a16e1SPyun YongHyeon * BCM5754 and BCM5787 shares the same ASIC id so
35524f4a16e1SPyun YongHyeon * explicit device id check is required.
3553be95548dSPyun YongHyeon * Due to unknown reason TSO does not work on BCM5755M.
35544f4a16e1SPyun YongHyeon */
35554f4a16e1SPyun YongHyeon if (pci_get_device(dev) != BCOM_DEVICEID_BCM5754 &&
3556be95548dSPyun YongHyeon pci_get_device(dev) != BCOM_DEVICEID_BCM5754M &&
3557be95548dSPyun YongHyeon pci_get_device(dev) != BCOM_DEVICEID_BCM5755M)
3558ca3f1187SPyun YongHyeon sc->bge_flags |= BGE_FLAG_TSO;
35594f4a16e1SPyun YongHyeon }
3560ca3f1187SPyun YongHyeon
3561ca3f1187SPyun YongHyeon /*
35626f8718a3SScott Long * Check if this is a PCI-X or PCI Express device.
3563e53d81eeSPaul Saab */
35643b0a4aefSJohn Baldwin if (pci_find_cap(dev, PCIY_EXPRESS, ®) == 0) {
35654c0da0ffSGleb Smirnoff /*
35666f8718a3SScott Long * Found a PCI Express capabilities register, this
35676f8718a3SScott Long * must be a PCI Express device.
35686f8718a3SScott Long */
35696f8718a3SScott Long sc->bge_flags |= BGE_FLAG_PCIE;
35700aaf1057SPyun YongHyeon sc->bge_expcap = reg;
357148630d79SPyun YongHyeon /* Extract supported maximum payload size. */
357248630d79SPyun YongHyeon sc->bge_mps = pci_read_config(dev, sc->bge_expcap +
357348630d79SPyun YongHyeon PCIER_DEVICE_CAP, 2);
357448630d79SPyun YongHyeon sc->bge_mps = 128 << (sc->bge_mps & PCIEM_CAP_MAX_PAYLOAD);
357550515680SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5719 ||
357650515680SPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5720)
357748630d79SPyun YongHyeon sc->bge_expmrq = 2048;
357848630d79SPyun YongHyeon else
357948630d79SPyun YongHyeon sc->bge_expmrq = 4096;
358048630d79SPyun YongHyeon pci_set_max_read_req(dev, sc->bge_expmrq);
35816f8718a3SScott Long } else {
35826f8718a3SScott Long /*
35836f8718a3SScott Long * Check if the device is in PCI-X Mode.
35846f8718a3SScott Long * (This bit is not valid on PCI Express controllers.)
35854c0da0ffSGleb Smirnoff */
35863b0a4aefSJohn Baldwin if (pci_find_cap(dev, PCIY_PCIX, ®) == 0)
35870aaf1057SPyun YongHyeon sc->bge_pcixcap = reg;
358890447aadSMarius Strobl if ((pci_read_config(dev, BGE_PCI_PCISTATE, 4) &
35894c0da0ffSGleb Smirnoff BGE_PCISTATE_PCI_BUSMODE) == 0)
3590652ae483SGleb Smirnoff sc->bge_flags |= BGE_FLAG_PCIX;
35916f8718a3SScott Long }
35924c0da0ffSGleb Smirnoff
3593bf6ef57aSJohn Polstra /*
3594fd4d32feSPyun YongHyeon * The 40bit DMA bug applies to the 5714/5715 controllers and is
3595fd4d32feSPyun YongHyeon * not actually a MAC controller bug but an issue with the embedded
3596fd4d32feSPyun YongHyeon * PCIe to PCI-X bridge in the device. Use 40bit DMA workaround.
3597fd4d32feSPyun YongHyeon */
3598fd4d32feSPyun YongHyeon if (BGE_IS_5714_FAMILY(sc) && (sc->bge_flags & BGE_FLAG_PCIX))
3599fd4d32feSPyun YongHyeon sc->bge_flags |= BGE_FLAG_40BIT_BUG;
3600fd4d32feSPyun YongHyeon /*
3601062af0b0SPyun YongHyeon * Some PCI-X bridges are known to trigger write reordering to
3602062af0b0SPyun YongHyeon * the mailbox registers. Typical phenomena is watchdog timeouts
3603062af0b0SPyun YongHyeon * caused by out-of-order TX completions. Enable workaround for
3604062af0b0SPyun YongHyeon * PCI-X devices that live behind these bridges.
3605062af0b0SPyun YongHyeon * Note, PCI-X controllers can run in PCI mode so we can't use
3606062af0b0SPyun YongHyeon * BGE_FLAG_PCIX flag to detect PCI-X controllers.
3607062af0b0SPyun YongHyeon */
3608062af0b0SPyun YongHyeon if (sc->bge_pcixcap != 0 && bge_mbox_reorder(sc) != 0)
3609062af0b0SPyun YongHyeon sc->bge_flags |= BGE_FLAG_MBOX_REORDER;
3610062af0b0SPyun YongHyeon /*
3611bf6ef57aSJohn Polstra * Allocate the interrupt, using MSI if possible. These devices
3612bf6ef57aSJohn Polstra * support 8 MSI messages, but only the first one is used in
3613bf6ef57aSJohn Polstra * normal operation.
3614bf6ef57aSJohn Polstra */
36150aaf1057SPyun YongHyeon rid = 0;
36163b0a4aefSJohn Baldwin if (pci_find_cap(sc->bge_dev, PCIY_MSI, ®) == 0) {
36170aaf1057SPyun YongHyeon sc->bge_msicap = reg;
3618ad4328baSMarius Strobl reg = 1;
3619ad4328baSMarius Strobl if (bge_can_use_msi(sc) && pci_alloc_msi(dev, ®) == 0) {
3620bf6ef57aSJohn Polstra rid = 1;
3621bf6ef57aSJohn Polstra sc->bge_flags |= BGE_FLAG_MSI;
36220aaf1057SPyun YongHyeon }
36230aaf1057SPyun YongHyeon }
3624bf6ef57aSJohn Polstra
36251108273aSPyun YongHyeon /*
36261108273aSPyun YongHyeon * All controllers except BCM5700 supports tagged status but
36271108273aSPyun YongHyeon * we use tagged status only for MSI case on BCM5717. Otherwise
36281108273aSPyun YongHyeon * MSI on BCM5717 does not work.
36291108273aSPyun YongHyeon */
36301108273aSPyun YongHyeon #ifndef DEVICE_POLLING
36311108273aSPyun YongHyeon if (sc->bge_flags & BGE_FLAG_MSI && BGE_IS_5717_PLUS(sc))
36321108273aSPyun YongHyeon sc->bge_flags |= BGE_FLAG_TAGGED_STATUS;
36331108273aSPyun YongHyeon #endif
36341108273aSPyun YongHyeon
3635bf6ef57aSJohn Polstra sc->bge_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
3636ad4328baSMarius Strobl RF_ACTIVE | (rid != 0 ? 0 : RF_SHAREABLE));
3637bf6ef57aSJohn Polstra
3638bf6ef57aSJohn Polstra if (sc->bge_irq == NULL) {
3639bf6ef57aSJohn Polstra device_printf(sc->bge_dev, "couldn't map interrupt\n");
3640bf6ef57aSJohn Polstra error = ENXIO;
3641bf6ef57aSJohn Polstra goto fail;
3642bf6ef57aSJohn Polstra }
3643bf6ef57aSJohn Polstra
3644ea9c3a30SPyun YongHyeon bge_devinfo(sc);
36454f09c4c7SMarius Strobl
36468cb1383cSDoug Ambrisko sc->bge_asf_mode = 0;
3647548c8f1aSPyun YongHyeon /* No ASF if APE present. */
3648548c8f1aSPyun YongHyeon if ((sc->bge_flags & BGE_FLAG_APE) == 0) {
3649888b47f0SPyun YongHyeon if (bge_allow_asf && (bge_readmem_ind(sc, BGE_SRAM_DATA_SIG) ==
3650888b47f0SPyun YongHyeon BGE_SRAM_DATA_SIG_MAGIC)) {
3651548c8f1aSPyun YongHyeon if (bge_readmem_ind(sc, BGE_SRAM_DATA_CFG) &
3652548c8f1aSPyun YongHyeon BGE_HWCFG_ASF) {
36538cb1383cSDoug Ambrisko sc->bge_asf_mode |= ASF_ENABLE;
36548cb1383cSDoug Ambrisko sc->bge_asf_mode |= ASF_STACKUP;
3655d67eba2fSPyun YongHyeon if (BGE_IS_575X_PLUS(sc))
36568cb1383cSDoug Ambrisko sc->bge_asf_mode |= ASF_NEW_HANDSHAKE;
36578cb1383cSDoug Ambrisko }
36588cb1383cSDoug Ambrisko }
3659548c8f1aSPyun YongHyeon }
36608cb1383cSDoug Ambrisko
36618cb1383cSDoug Ambrisko bge_stop_fw(sc);
36623dd76c98SPyun YongHyeon bge_sig_pre_reset(sc, BGE_RESET_SHUTDOWN);
36638cb1383cSDoug Ambrisko if (bge_reset(sc)) {
36648cb1383cSDoug Ambrisko device_printf(sc->bge_dev, "chip reset failed\n");
36658cb1383cSDoug Ambrisko error = ENXIO;
36668cb1383cSDoug Ambrisko goto fail;
36678cb1383cSDoug Ambrisko }
36688cb1383cSDoug Ambrisko
36693dd76c98SPyun YongHyeon bge_sig_legacy(sc, BGE_RESET_SHUTDOWN);
36703dd76c98SPyun YongHyeon bge_sig_post_reset(sc, BGE_RESET_SHUTDOWN);
367195d67482SBill Paul
367295d67482SBill Paul if (bge_chipinit(sc)) {
3673fe806fdaSPyun YongHyeon device_printf(sc->bge_dev, "chip initialization failed\n");
367495d67482SBill Paul error = ENXIO;
367595d67482SBill Paul goto fail;
367695d67482SBill Paul }
367795d67482SBill Paul
367838cc658fSJohn Baldwin error = bge_get_eaddr(sc, eaddr);
367938cc658fSJohn Baldwin if (error) {
368008013fd3SMarius Strobl device_printf(sc->bge_dev,
368108013fd3SMarius Strobl "failed to read station address\n");
368295d67482SBill Paul error = ENXIO;
368395d67482SBill Paul goto fail;
368495d67482SBill Paul }
368595d67482SBill Paul
3686f41ac2beSBill Paul /* 5705 limits RX return ring to 512 entries. */
36871108273aSPyun YongHyeon if (BGE_IS_5717_PLUS(sc))
36881108273aSPyun YongHyeon sc->bge_return_ring_cnt = BGE_RETURN_RING_CNT;
36891108273aSPyun YongHyeon else if (BGE_IS_5705_PLUS(sc))
3690f41ac2beSBill Paul sc->bge_return_ring_cnt = BGE_RETURN_RING_CNT_5705;
3691f41ac2beSBill Paul else
3692f41ac2beSBill Paul sc->bge_return_ring_cnt = BGE_RETURN_RING_CNT;
3693f41ac2beSBill Paul
36945b610048SPyun YongHyeon if (bge_dma_alloc(sc)) {
3695fe806fdaSPyun YongHyeon device_printf(sc->bge_dev,
3696fe806fdaSPyun YongHyeon "failed to allocate DMA resources\n");
3697f41ac2beSBill Paul error = ENXIO;
3698f41ac2beSBill Paul goto fail;
3699f41ac2beSBill Paul }
3700f41ac2beSBill Paul
370195d67482SBill Paul /* Set default tuneable values. */
370295d67482SBill Paul sc->bge_stat_ticks = BGE_TICKS_PER_SEC;
370395d67482SBill Paul sc->bge_rx_coal_ticks = 150;
370495d67482SBill Paul sc->bge_tx_coal_ticks = 150;
37056f8718a3SScott Long sc->bge_rx_max_coal_bds = 10;
37066f8718a3SScott Long sc->bge_tx_max_coal_bds = 10;
370795d67482SBill Paul
370835f945cdSPyun YongHyeon /* Initialize checksum features to use. */
370935f945cdSPyun YongHyeon sc->bge_csum_features = BGE_CSUM_FEATURES;
371035f945cdSPyun YongHyeon if (sc->bge_forced_udpcsum != 0)
371135f945cdSPyun YongHyeon sc->bge_csum_features |= CSUM_UDP;
371235f945cdSPyun YongHyeon
371395d67482SBill Paul /* Set up ifnet structure */
3714fc74a9f9SBrooks Davis ifp = sc->bge_ifp = if_alloc(IFT_ETHER);
3715fba8b109SMarcel Moolenaar if_setsoftc(ifp, sc);
37169bf40edeSBrooks Davis if_initname(ifp, device_get_name(dev), device_get_unit(dev));
3717fba8b109SMarcel Moolenaar if_setflags(ifp, IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST);
3718fba8b109SMarcel Moolenaar if_setioctlfn(ifp, bge_ioctl);
3719fba8b109SMarcel Moolenaar if_setstartfn(ifp, bge_start);
3720fba8b109SMarcel Moolenaar if_setinitfn(ifp, bge_init);
3721df360178SGleb Smirnoff if_setgetcounterfn(ifp, bge_get_counter);
37224a81240cSMarcel Moolenaar if_setsendqlen(ifp, BGE_TX_RING_CNT - 1);
3723fba8b109SMarcel Moolenaar if_setsendqready(ifp);
3724fba8b109SMarcel Moolenaar if_sethwassist(ifp, sc->bge_csum_features);
3725fba8b109SMarcel Moolenaar if_setcapabilities(ifp, IFCAP_HWCSUM | IFCAP_VLAN_HWTAGGING |
3726fba8b109SMarcel Moolenaar IFCAP_VLAN_MTU);
37271108273aSPyun YongHyeon if ((sc->bge_flags & (BGE_FLAG_TSO | BGE_FLAG_TSO3)) != 0) {
3728fba8b109SMarcel Moolenaar if_sethwassistbits(ifp, CSUM_TSO, 0);
3729fba8b109SMarcel Moolenaar if_setcapabilitiesbit(ifp, IFCAP_TSO4 | IFCAP_VLAN_HWTSO, 0);
3730ca3f1187SPyun YongHyeon }
37314e35d186SJung-uk Kim #ifdef IFCAP_VLAN_HWCSUM
3732fba8b109SMarcel Moolenaar if_setcapabilitiesbit(ifp, IFCAP_VLAN_HWCSUM, 0);
37334e35d186SJung-uk Kim #endif
3734fba8b109SMarcel Moolenaar if_setcapenable(ifp, if_getcapabilities(ifp));
373575719184SGleb Smirnoff #ifdef DEVICE_POLLING
3736fba8b109SMarcel Moolenaar if_setcapabilitiesbit(ifp, IFCAP_POLLING, 0);
373775719184SGleb Smirnoff #endif
373895d67482SBill Paul
3739a1d52896SBill Paul /*
3740d375e524SGleb Smirnoff * 5700 B0 chips do not support checksumming correctly due
3741d375e524SGleb Smirnoff * to hardware bugs.
3742d375e524SGleb Smirnoff */
3743d375e524SGleb Smirnoff if (sc->bge_chipid == BGE_CHIPID_BCM5700_B0) {
3744fba8b109SMarcel Moolenaar if_setcapabilitiesbit(ifp, 0, IFCAP_HWCSUM);
3745fba8b109SMarcel Moolenaar if_setcapenablebit(ifp, 0, IFCAP_HWCSUM);
3746fba8b109SMarcel Moolenaar if_sethwassist(ifp, 0);
3747d375e524SGleb Smirnoff }
3748d375e524SGleb Smirnoff
3749d375e524SGleb Smirnoff /*
3750a1d52896SBill Paul * Figure out what sort of media we have by checking the
375141abcc1bSPaul Saab * hardware config word in the first 32k of NIC internal memory,
375241abcc1bSPaul Saab * or fall back to examining the EEPROM if necessary.
375341abcc1bSPaul Saab * Note: on some BCM5700 cards, this value appears to be unset.
375441abcc1bSPaul Saab * If that's the case, we have to rely on identifying the NIC
375541abcc1bSPaul Saab * by its PCI subsystem ID, as we do below for the SysKonnect
375641abcc1bSPaul Saab * SK-9D41.
3757a1d52896SBill Paul */
3758888b47f0SPyun YongHyeon if (bge_readmem_ind(sc, BGE_SRAM_DATA_SIG) == BGE_SRAM_DATA_SIG_MAGIC)
3759888b47f0SPyun YongHyeon hwcfg = bge_readmem_ind(sc, BGE_SRAM_DATA_CFG);
37605fea260fSMarius Strobl else if ((sc->bge_flags & BGE_FLAG_EADDR) &&
37615fea260fSMarius Strobl (sc->bge_asicrev != BGE_ASICREV_BCM5906)) {
3762f6789fbaSPyun YongHyeon if (bge_read_eeprom(sc, (caddr_t)&hwcfg, BGE_EE_HWCFG_OFFSET,
3763f6789fbaSPyun YongHyeon sizeof(hwcfg))) {
3764fe806fdaSPyun YongHyeon device_printf(sc->bge_dev, "failed to read EEPROM\n");
3765f6789fbaSPyun YongHyeon error = ENXIO;
3766f6789fbaSPyun YongHyeon goto fail;
3767f6789fbaSPyun YongHyeon }
376841abcc1bSPaul Saab hwcfg = ntohl(hwcfg);
376941abcc1bSPaul Saab }
377041abcc1bSPaul Saab
377195d67482SBill Paul /* The SysKonnect SK-9D41 is a 1000baseSX card. */
3772ea3b4127SPyun YongHyeon if ((pci_read_config(dev, BGE_PCI_SUBSYS, 4) >> 16) ==
3773ea3b4127SPyun YongHyeon SK_SUBSYSID_9D41 || (hwcfg & BGE_HWCFG_MEDIA) == BGE_MEDIA_FIBER) {
377470c2071bSPyun YongHyeon if (BGE_IS_5705_PLUS(sc)) {
3775ea3b4127SPyun YongHyeon sc->bge_flags |= BGE_FLAG_MII_SERDES;
377670c2071bSPyun YongHyeon sc->bge_phy_flags |= BGE_PHY_NO_WIRESPEED;
377770c2071bSPyun YongHyeon } else
3778652ae483SGleb Smirnoff sc->bge_flags |= BGE_FLAG_TBI;
3779ea3b4127SPyun YongHyeon }
378095d67482SBill Paul
378170c2071bSPyun YongHyeon /* Set various PHY bug flags. */
378270c2071bSPyun YongHyeon if (sc->bge_chipid == BGE_CHIPID_BCM5701_A0 ||
378370c2071bSPyun YongHyeon sc->bge_chipid == BGE_CHIPID_BCM5701_B0)
378470c2071bSPyun YongHyeon sc->bge_phy_flags |= BGE_PHY_CRC_BUG;
378570c2071bSPyun YongHyeon if (sc->bge_chiprev == BGE_CHIPREV_5703_AX ||
378670c2071bSPyun YongHyeon sc->bge_chiprev == BGE_CHIPREV_5704_AX)
378770c2071bSPyun YongHyeon sc->bge_phy_flags |= BGE_PHY_ADC_BUG;
378870c2071bSPyun YongHyeon if (sc->bge_chipid == BGE_CHIPID_BCM5704_A0)
378970c2071bSPyun YongHyeon sc->bge_phy_flags |= BGE_PHY_5704_A0_BUG;
379070c2071bSPyun YongHyeon if (pci_get_subvendor(dev) == DELL_VENDORID)
379170c2071bSPyun YongHyeon sc->bge_phy_flags |= BGE_PHY_NO_3LED;
379270c2071bSPyun YongHyeon if ((BGE_IS_5705_PLUS(sc)) &&
379370c2071bSPyun YongHyeon sc->bge_asicrev != BGE_ASICREV_BCM5906 &&
379470c2071bSPyun YongHyeon sc->bge_asicrev != BGE_ASICREV_BCM5785 &&
3795fe26ad88SPyun YongHyeon sc->bge_asicrev != BGE_ASICREV_BCM57780 &&
3796fe26ad88SPyun YongHyeon !BGE_IS_5717_PLUS(sc)) {
379770c2071bSPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5755 ||
379870c2071bSPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5761 ||
379970c2071bSPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5784 ||
380070c2071bSPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5787) {
380170c2071bSPyun YongHyeon if (pci_get_device(dev) != BCOM_DEVICEID_BCM5722 &&
380270c2071bSPyun YongHyeon pci_get_device(dev) != BCOM_DEVICEID_BCM5756)
380370c2071bSPyun YongHyeon sc->bge_phy_flags |= BGE_PHY_JITTER_BUG;
380470c2071bSPyun YongHyeon if (pci_get_device(dev) == BCOM_DEVICEID_BCM5755M)
380570c2071bSPyun YongHyeon sc->bge_phy_flags |= BGE_PHY_ADJUST_TRIM;
380670c2071bSPyun YongHyeon } else
380770c2071bSPyun YongHyeon sc->bge_phy_flags |= BGE_PHY_BER_BUG;
380870c2071bSPyun YongHyeon }
380970c2071bSPyun YongHyeon
381070c2071bSPyun YongHyeon /*
3811d73ea7c6SPyun YongHyeon * Don't enable Ethernet@WireSpeed for the 5700 or the
381270c2071bSPyun YongHyeon * 5705 A0 and A1 chips.
381370c2071bSPyun YongHyeon */
381470c2071bSPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5700 ||
381570c2071bSPyun YongHyeon (sc->bge_asicrev == BGE_ASICREV_BCM5705 &&
381670c2071bSPyun YongHyeon (sc->bge_chipid != BGE_CHIPID_BCM5705_A0 &&
3817d73ea7c6SPyun YongHyeon sc->bge_chipid != BGE_CHIPID_BCM5705_A1)))
381870c2071bSPyun YongHyeon sc->bge_phy_flags |= BGE_PHY_NO_WIRESPEED;
381970c2071bSPyun YongHyeon
3820652ae483SGleb Smirnoff if (sc->bge_flags & BGE_FLAG_TBI) {
382109a8241fSGleb Smirnoff ifmedia_init(&sc->bge_ifmedia, IFM_IMASK, bge_ifmedia_upd,
38220c8aa4eaSJung-uk Kim bge_ifmedia_sts);
38230c8aa4eaSJung-uk Kim ifmedia_add(&sc->bge_ifmedia, IFM_ETHER | IFM_1000_SX, 0, NULL);
38246098821cSJung-uk Kim ifmedia_add(&sc->bge_ifmedia, IFM_ETHER | IFM_1000_SX | IFM_FDX,
38256098821cSJung-uk Kim 0, NULL);
382695d67482SBill Paul ifmedia_add(&sc->bge_ifmedia, IFM_ETHER | IFM_AUTO, 0, NULL);
382795d67482SBill Paul ifmedia_set(&sc->bge_ifmedia, IFM_ETHER | IFM_AUTO);
3828da3003f0SBill Paul sc->bge_ifmedia.ifm_media = sc->bge_ifmedia.ifm_cur->ifm_media;
382995d67482SBill Paul } else {
383095d67482SBill Paul /*
38318cb1383cSDoug Ambrisko * Do transceiver setup and tell the firmware the
38328cb1383cSDoug Ambrisko * driver is down so we can try to get access the
38338cb1383cSDoug Ambrisko * probe if ASF is running. Retry a couple of times
38348cb1383cSDoug Ambrisko * if we get a conflict with the ASF firmware accessing
38358cb1383cSDoug Ambrisko * the PHY.
383695d67482SBill Paul */
38374012d104SMarius Strobl trys = 0;
38388cb1383cSDoug Ambrisko BGE_CLRBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
38398cb1383cSDoug Ambrisko again:
38408cb1383cSDoug Ambrisko bge_asf_driver_up(sc);
38418cb1383cSDoug Ambrisko
3842fba8b109SMarcel Moolenaar error = mii_attach(dev, &sc->bge_miibus, ifp,
3843fba8b109SMarcel Moolenaar (ifm_change_cb_t)bge_ifmedia_upd,
3844fba8b109SMarcel Moolenaar (ifm_stat_cb_t)bge_ifmedia_sts, capmask, sc->bge_phy_addr,
3845fba8b109SMarcel Moolenaar MII_OFFSET_ANY, MIIF_DOPAUSE);
38468e5d93dbSMarius Strobl if (error != 0) {
38478cb1383cSDoug Ambrisko if (trys++ < 4) {
38488cb1383cSDoug Ambrisko device_printf(sc->bge_dev, "Try again\n");
3849daeeb75cSPyun YongHyeon bge_miibus_writereg(sc->bge_dev,
3850daeeb75cSPyun YongHyeon sc->bge_phy_addr, MII_BMCR, BMCR_RESET);
38518cb1383cSDoug Ambrisko goto again;
38528cb1383cSDoug Ambrisko }
38538e5d93dbSMarius Strobl device_printf(sc->bge_dev, "attaching PHYs failed\n");
385495d67482SBill Paul goto fail;
385595d67482SBill Paul }
38568cb1383cSDoug Ambrisko
38578cb1383cSDoug Ambrisko /*
38588cb1383cSDoug Ambrisko * Now tell the firmware we are going up after probing the PHY
38598cb1383cSDoug Ambrisko */
38608cb1383cSDoug Ambrisko if (sc->bge_asf_mode & ASF_STACKUP)
38618cb1383cSDoug Ambrisko BGE_SETBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
386295d67482SBill Paul }
386395d67482SBill Paul
386495d67482SBill Paul /*
3865e255b776SJohn Polstra * When using the BCM5701 in PCI-X mode, data corruption has
3866e255b776SJohn Polstra * been observed in the first few bytes of some received packets.
3867e255b776SJohn Polstra * Aligning the packet buffer in memory eliminates the corruption.
3868e255b776SJohn Polstra * Unfortunately, this misaligns the packet payloads. On platforms
3869e255b776SJohn Polstra * which do not support unaligned accesses, we will realign the
3870e255b776SJohn Polstra * payloads by copying the received packets.
3871e255b776SJohn Polstra */
3872652ae483SGleb Smirnoff if (sc->bge_asicrev == BGE_ASICREV_BCM5701 &&
3873652ae483SGleb Smirnoff sc->bge_flags & BGE_FLAG_PCIX)
3874652ae483SGleb Smirnoff sc->bge_flags |= BGE_FLAG_RX_ALIGNBUG;
3875e255b776SJohn Polstra
3876e255b776SJohn Polstra /*
387795d67482SBill Paul * Call MI attach routine.
387895d67482SBill Paul */
3879fc74a9f9SBrooks Davis ether_ifattach(ifp, eaddr);
38800f9bd73bSSam Leffler
388161ccb9daSPyun YongHyeon /* Tell upper layer we support long frames. */
3882fba8b109SMarcel Moolenaar if_setifheaderlen(ifp, sizeof(struct ether_vlan_header));
388361ccb9daSPyun YongHyeon
38840f9bd73bSSam Leffler /*
38850f9bd73bSSam Leffler * Hookup IRQ last.
38860f9bd73bSSam Leffler */
3887dfe0df9aSPyun YongHyeon if (BGE_IS_5755_PLUS(sc) && sc->bge_flags & BGE_FLAG_MSI) {
3888dfe0df9aSPyun YongHyeon /* Take advantage of single-shot MSI. */
38897e6acdf1SPyun YongHyeon CSR_WRITE_4(sc, BGE_MSI_MODE, CSR_READ_4(sc, BGE_MSI_MODE) &
38907e6acdf1SPyun YongHyeon ~BGE_MSIMODE_ONE_SHOT_DISABLE);
3891dfe0df9aSPyun YongHyeon sc->bge_tq = taskqueue_create_fast("bge_taskq", M_WAITOK,
3892dfe0df9aSPyun YongHyeon taskqueue_thread_enqueue, &sc->bge_tq);
3893d7acafa1SMarius Strobl error = taskqueue_start_threads(&sc->bge_tq, 1, PI_NET,
3894d7acafa1SMarius Strobl "%s taskq", device_get_nameunit(sc->bge_dev));
3895d7acafa1SMarius Strobl if (error != 0) {
3896d7acafa1SMarius Strobl device_printf(dev, "could not start threads.\n");
3897d7acafa1SMarius Strobl ether_ifdetach(ifp);
3898d7acafa1SMarius Strobl goto fail;
3899d7acafa1SMarius Strobl }
3900dfe0df9aSPyun YongHyeon error = bus_setup_intr(dev, sc->bge_irq,
3901dfe0df9aSPyun YongHyeon INTR_TYPE_NET | INTR_MPSAFE, bge_msi_intr, NULL, sc,
3902dfe0df9aSPyun YongHyeon &sc->bge_intrhand);
3903dfe0df9aSPyun YongHyeon } else
3904dfe0df9aSPyun YongHyeon error = bus_setup_intr(dev, sc->bge_irq,
3905dfe0df9aSPyun YongHyeon INTR_TYPE_NET | INTR_MPSAFE, NULL, bge_intr, sc,
3906dfe0df9aSPyun YongHyeon &sc->bge_intrhand);
39070f9bd73bSSam Leffler
39080f9bd73bSSam Leffler if (error) {
3909e010b055SPyun YongHyeon ether_ifdetach(ifp);
3910fe806fdaSPyun YongHyeon device_printf(sc->bge_dev, "couldn't set up irq\n");
3911ded66962SMark Johnston goto fail;
39120f9bd73bSSam Leffler }
391395d67482SBill Paul
39147790c8c1SConrad Meyer /* Attach driver debugnet methods. */
39157790c8c1SConrad Meyer DEBUGNET_SET(ifp, bge);
3916ded66962SMark Johnston
391795d67482SBill Paul fail:
3918e010b055SPyun YongHyeon if (error)
3919e010b055SPyun YongHyeon bge_detach(dev);
392095d67482SBill Paul return (error);
392195d67482SBill Paul }
392295d67482SBill Paul
392395d67482SBill Paul static int
bge_detach(device_t dev)39243f74909aSGleb Smirnoff bge_detach(device_t dev)
392595d67482SBill Paul {
392695d67482SBill Paul struct bge_softc *sc;
3927fba8b109SMarcel Moolenaar if_t ifp;
392895d67482SBill Paul
392995d67482SBill Paul sc = device_get_softc(dev);
3930fc74a9f9SBrooks Davis ifp = sc->bge_ifp;
393195d67482SBill Paul
393275719184SGleb Smirnoff #ifdef DEVICE_POLLING
3933fba8b109SMarcel Moolenaar if (if_getcapenable(ifp) & IFCAP_POLLING)
393475719184SGleb Smirnoff ether_poll_deregister(ifp);
393575719184SGleb Smirnoff #endif
393675719184SGleb Smirnoff
3937e010b055SPyun YongHyeon if (device_is_attached(dev)) {
3938e010b055SPyun YongHyeon ether_ifdetach(ifp);
39390f9bd73bSSam Leffler BGE_LOCK(sc);
394095d67482SBill Paul bge_stop(sc);
39410f9bd73bSSam Leffler BGE_UNLOCK(sc);
39425dda8085SOleg Bulyzhin callout_drain(&sc->bge_stat_ch);
3943e010b055SPyun YongHyeon }
39445dda8085SOleg Bulyzhin
3945dfe0df9aSPyun YongHyeon if (sc->bge_tq)
3946dfe0df9aSPyun YongHyeon taskqueue_drain(sc->bge_tq, &sc->bge_intr_task);
394795d67482SBill Paul
39480aba72ddSPyun YongHyeon if (sc->bge_flags & BGE_FLAG_TBI)
394995d67482SBill Paul ifmedia_removeall(&sc->bge_ifmedia);
39500aba72ddSPyun YongHyeon else if (sc->bge_miibus != NULL) {
395195d67482SBill Paul bus_generic_detach(dev);
395295d67482SBill Paul }
395395d67482SBill Paul
395495d67482SBill Paul bge_release_resources(sc);
395595d67482SBill Paul
395695d67482SBill Paul return (0);
395795d67482SBill Paul }
395895d67482SBill Paul
395995d67482SBill Paul static void
bge_release_resources(struct bge_softc * sc)39603f74909aSGleb Smirnoff bge_release_resources(struct bge_softc *sc)
396195d67482SBill Paul {
396295d67482SBill Paul device_t dev;
396395d67482SBill Paul
396495d67482SBill Paul dev = sc->bge_dev;
396595d67482SBill Paul
3966dfe0df9aSPyun YongHyeon if (sc->bge_tq != NULL)
3967dfe0df9aSPyun YongHyeon taskqueue_free(sc->bge_tq);
3968dfe0df9aSPyun YongHyeon
396995d67482SBill Paul if (sc->bge_intrhand != NULL)
397095d67482SBill Paul bus_teardown_intr(dev, sc->bge_irq, sc->bge_intrhand);
397195d67482SBill Paul
3972ad4328baSMarius Strobl if (sc->bge_irq != NULL) {
3973724bd939SJohn Polstra bus_release_resource(dev, SYS_RES_IRQ,
3974ad4328baSMarius Strobl rman_get_rid(sc->bge_irq), sc->bge_irq);
3975724bd939SJohn Polstra pci_release_msi(dev);
3976ad4328baSMarius Strobl }
397795d67482SBill Paul
397895d67482SBill Paul if (sc->bge_res != NULL)
397995d67482SBill Paul bus_release_resource(dev, SYS_RES_MEMORY,
3980ad4328baSMarius Strobl rman_get_rid(sc->bge_res), sc->bge_res);
398195d67482SBill Paul
3982548c8f1aSPyun YongHyeon if (sc->bge_res2 != NULL)
3983548c8f1aSPyun YongHyeon bus_release_resource(dev, SYS_RES_MEMORY,
3984ad4328baSMarius Strobl rman_get_rid(sc->bge_res2), sc->bge_res2);
3985548c8f1aSPyun YongHyeon
3986ad61f896SRuslan Ermilov if (sc->bge_ifp != NULL)
3987ad61f896SRuslan Ermilov if_free(sc->bge_ifp);
3988ad61f896SRuslan Ermilov
3989f41ac2beSBill Paul bge_dma_free(sc);
399095d67482SBill Paul
39910f9bd73bSSam Leffler if (mtx_initialized(&sc->bge_mtx)) /* XXX */
39920f9bd73bSSam Leffler BGE_LOCK_DESTROY(sc);
399395d67482SBill Paul }
399495d67482SBill Paul
39958cb1383cSDoug Ambrisko static int
bge_reset(struct bge_softc * sc)39963f74909aSGleb Smirnoff bge_reset(struct bge_softc *sc)
399795d67482SBill Paul {
399895d67482SBill Paul device_t dev;
3999cc085b36SPyun YongHyeon uint32_t cachesize, command, mac_mode, mac_mode_mask, reset, val;
40006f8718a3SScott Long void (*write_op)(struct bge_softc *, int, int);
40010aaf1057SPyun YongHyeon uint16_t devctl;
40025fea260fSMarius Strobl int i;
400395d67482SBill Paul
400495d67482SBill Paul dev = sc->bge_dev;
400595d67482SBill Paul
4006cc085b36SPyun YongHyeon mac_mode_mask = BGE_MACMODE_HALF_DUPLEX | BGE_MACMODE_PORTMODE;
4007548c8f1aSPyun YongHyeon if ((sc->bge_mfw_flags & BGE_MFW_ON_APE) != 0)
4008548c8f1aSPyun YongHyeon mac_mode_mask |= BGE_MACMODE_APE_RX_EN | BGE_MACMODE_APE_TX_EN;
4009cc085b36SPyun YongHyeon mac_mode = CSR_READ_4(sc, BGE_MAC_MODE) & mac_mode_mask;
4010cc085b36SPyun YongHyeon
401138cc658fSJohn Baldwin if (BGE_IS_575X_PLUS(sc) && !BGE_IS_5714_FAMILY(sc) &&
401238cc658fSJohn Baldwin (sc->bge_asicrev != BGE_ASICREV_BCM5906)) {
40136f8718a3SScott Long if (sc->bge_flags & BGE_FLAG_PCIE)
40146f8718a3SScott Long write_op = bge_writemem_direct;
40156f8718a3SScott Long else
40166f8718a3SScott Long write_op = bge_writemem_ind;
40179ba784dbSScott Long } else
40186f8718a3SScott Long write_op = bge_writereg_ind;
40196f8718a3SScott Long
40203dd76c98SPyun YongHyeon if (sc->bge_asicrev != BGE_ASICREV_BCM5700 &&
40213dd76c98SPyun YongHyeon sc->bge_asicrev != BGE_ASICREV_BCM5701) {
40223dd76c98SPyun YongHyeon CSR_WRITE_4(sc, BGE_NVRAM_SWARB, BGE_NVRAMSWARB_SET1);
40233dd76c98SPyun YongHyeon for (i = 0; i < 8000; i++) {
40243dd76c98SPyun YongHyeon if (CSR_READ_4(sc, BGE_NVRAM_SWARB) &
40253dd76c98SPyun YongHyeon BGE_NVRAMSWARB_GNT1)
40263dd76c98SPyun YongHyeon break;
40273dd76c98SPyun YongHyeon DELAY(20);
40283dd76c98SPyun YongHyeon }
40293dd76c98SPyun YongHyeon if (i == 8000) {
40303dd76c98SPyun YongHyeon if (bootverbose)
40313dd76c98SPyun YongHyeon device_printf(dev, "NVRAM lock timedout!\n");
40323dd76c98SPyun YongHyeon }
40333dd76c98SPyun YongHyeon }
4034548c8f1aSPyun YongHyeon /* Take APE lock when performing reset. */
4035548c8f1aSPyun YongHyeon bge_ape_lock(sc, BGE_APE_LOCK_GRC);
4036548c8f1aSPyun YongHyeon
403795d67482SBill Paul /* Save some important PCI state. */
403895d67482SBill Paul cachesize = pci_read_config(dev, BGE_PCI_CACHESZ, 4);
403995d67482SBill Paul command = pci_read_config(dev, BGE_PCI_CMD, 4);
404095d67482SBill Paul
404195d67482SBill Paul pci_write_config(dev, BGE_PCI_MISC_CTL,
404295d67482SBill Paul BGE_PCIMISCCTL_INDIRECT_ACCESS | BGE_PCIMISCCTL_MASK_PCI_INTR |
4043e907febfSPyun YongHyeon BGE_HIF_SWAP_OPTIONS | BGE_PCIMISCCTL_PCISTATE_RW, 4);
404495d67482SBill Paul
40456f8718a3SScott Long /* Disable fastboot on controllers that support it. */
40466f8718a3SScott Long if (sc->bge_asicrev == BGE_ASICREV_BCM5752 ||
4047a5779553SStanislav Sedov BGE_IS_5755_PLUS(sc)) {
40486f8718a3SScott Long if (bootverbose)
4049333704a3SPyun YongHyeon device_printf(dev, "Disabling fastboot\n");
40506f8718a3SScott Long CSR_WRITE_4(sc, BGE_FASTBOOT_PC, 0x0);
40516f8718a3SScott Long }
40526f8718a3SScott Long
40536f8718a3SScott Long /*
40546f8718a3SScott Long * Write the magic number to SRAM at offset 0xB50.
40556f8718a3SScott Long * When firmware finishes its initialization it will
4056888b47f0SPyun YongHyeon * write ~BGE_SRAM_FW_MB_MAGIC to the same location.
40576f8718a3SScott Long */
4058888b47f0SPyun YongHyeon bge_writemem_ind(sc, BGE_SRAM_FW_MB, BGE_SRAM_FW_MB_MAGIC);
40596f8718a3SScott Long
40600c8aa4eaSJung-uk Kim reset = BGE_MISCCFG_RESET_CORE_CLOCKS | BGE_32BITTIME_66MHZ;
4061e53d81eeSPaul Saab
4062e53d81eeSPaul Saab /* XXX: Broadcom Linux driver. */
4063652ae483SGleb Smirnoff if (sc->bge_flags & BGE_FLAG_PCIE) {
4064ad49eccfSPyun YongHyeon if (sc->bge_asicrev != BGE_ASICREV_BCM5785 &&
4065ad49eccfSPyun YongHyeon (sc->bge_flags & BGE_FLAG_5717_PLUS) == 0) {
40660c8aa4eaSJung-uk Kim if (CSR_READ_4(sc, 0x7E2C) == 0x60) /* PCIE 1.0 */
40670c8aa4eaSJung-uk Kim CSR_WRITE_4(sc, 0x7E2C, 0x20);
4068ad49eccfSPyun YongHyeon }
4069e53d81eeSPaul Saab if (sc->bge_chipid != BGE_CHIPID_BCM5750_A0) {
4070e53d81eeSPaul Saab /* Prevent PCIE link training during global reset */
40710c8aa4eaSJung-uk Kim CSR_WRITE_4(sc, BGE_MISC_CFG, 1 << 29);
40720c8aa4eaSJung-uk Kim reset |= 1 << 29;
4073e53d81eeSPaul Saab }
4074e53d81eeSPaul Saab }
4075e53d81eeSPaul Saab
4076df4db538SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5906) {
4077df4db538SPyun YongHyeon val = CSR_READ_4(sc, BGE_VCPU_STATUS);
4078df4db538SPyun YongHyeon CSR_WRITE_4(sc, BGE_VCPU_STATUS,
4079df4db538SPyun YongHyeon val | BGE_VCPU_STATUS_DRV_RESET);
4080df4db538SPyun YongHyeon val = CSR_READ_4(sc, BGE_VCPU_EXT_CTRL);
4081df4db538SPyun YongHyeon CSR_WRITE_4(sc, BGE_VCPU_EXT_CTRL,
4082df4db538SPyun YongHyeon val & ~BGE_VCPU_EXT_CTRL_HALT_CPU);
4083df4db538SPyun YongHyeon }
4084df4db538SPyun YongHyeon
408521c9e407SDavid Christensen /*
40866f8718a3SScott Long * Set GPHY Power Down Override to leave GPHY
40876f8718a3SScott Long * powered up in D0 uninitialized.
40886f8718a3SScott Long */
40895512ca01SPyun YongHyeon if (BGE_IS_5705_PLUS(sc) &&
40905512ca01SPyun YongHyeon (sc->bge_flags & BGE_FLAG_CPMU_PRESENT) == 0)
4091caf088fcSPyun YongHyeon reset |= BGE_MISCCFG_GPHY_PD_OVERRIDE;
40926f8718a3SScott Long
409395d67482SBill Paul /* Issue global reset */
40946f8718a3SScott Long write_op(sc, BGE_MISC_CFG, reset);
409595d67482SBill Paul
4096cc085b36SPyun YongHyeon if (sc->bge_flags & BGE_FLAG_PCIE)
4097cc085b36SPyun YongHyeon DELAY(100 * 1000);
4098cc085b36SPyun YongHyeon else
409995d67482SBill Paul DELAY(1000);
410095d67482SBill Paul
4101e53d81eeSPaul Saab /* XXX: Broadcom Linux driver. */
4102652ae483SGleb Smirnoff if (sc->bge_flags & BGE_FLAG_PCIE) {
4103e53d81eeSPaul Saab if (sc->bge_chipid == BGE_CHIPID_BCM5750_A0) {
4104e53d81eeSPaul Saab DELAY(500000); /* wait for link training to complete */
41055fea260fSMarius Strobl val = pci_read_config(dev, 0xC4, 4);
41065fea260fSMarius Strobl pci_write_config(dev, 0xC4, val | (1 << 15), 4);
4107e53d81eeSPaul Saab }
41080aaf1057SPyun YongHyeon devctl = pci_read_config(dev,
4109389c8bd5SGavin Atkinson sc->bge_expcap + PCIER_DEVICE_CTL, 2);
41100aaf1057SPyun YongHyeon /* Clear enable no snoop and disable relaxed ordering. */
4111389c8bd5SGavin Atkinson devctl &= ~(PCIEM_CTL_RELAXED_ORD_ENABLE |
4112389c8bd5SGavin Atkinson PCIEM_CTL_NOSNOOP_ENABLE);
4113389c8bd5SGavin Atkinson pci_write_config(dev, sc->bge_expcap + PCIER_DEVICE_CTL,
41140aaf1057SPyun YongHyeon devctl, 2);
411548630d79SPyun YongHyeon pci_set_max_read_req(dev, sc->bge_expmrq);
41160aaf1057SPyun YongHyeon /* Clear error status. */
4117389c8bd5SGavin Atkinson pci_write_config(dev, sc->bge_expcap + PCIER_DEVICE_STA,
4118389c8bd5SGavin Atkinson PCIEM_STA_CORRECTABLE_ERROR |
4119389c8bd5SGavin Atkinson PCIEM_STA_NON_FATAL_ERROR | PCIEM_STA_FATAL_ERROR |
4120389c8bd5SGavin Atkinson PCIEM_STA_UNSUPPORTED_REQ, 2);
4121e53d81eeSPaul Saab }
4122e53d81eeSPaul Saab
41233f74909aSGleb Smirnoff /* Reset some of the PCI state that got zapped by reset. */
412495d67482SBill Paul pci_write_config(dev, BGE_PCI_MISC_CTL,
412595d67482SBill Paul BGE_PCIMISCCTL_INDIRECT_ACCESS | BGE_PCIMISCCTL_MASK_PCI_INTR |
4126e907febfSPyun YongHyeon BGE_HIF_SWAP_OPTIONS | BGE_PCIMISCCTL_PCISTATE_RW, 4);
4127cc085b36SPyun YongHyeon val = BGE_PCISTATE_ROM_ENABLE | BGE_PCISTATE_ROM_RETRY_ENABLE;
4128cc085b36SPyun YongHyeon if (sc->bge_chipid == BGE_CHIPID_BCM5704_A0 &&
4129cc085b36SPyun YongHyeon (sc->bge_flags & BGE_FLAG_PCIX) != 0)
4130cc085b36SPyun YongHyeon val |= BGE_PCISTATE_RETRY_SAME_DMA;
4131548c8f1aSPyun YongHyeon if ((sc->bge_mfw_flags & BGE_MFW_ON_APE) != 0)
4132548c8f1aSPyun YongHyeon val |= BGE_PCISTATE_ALLOW_APE_CTLSPC_WR |
4133548c8f1aSPyun YongHyeon BGE_PCISTATE_ALLOW_APE_SHMEM_WR |
4134548c8f1aSPyun YongHyeon BGE_PCISTATE_ALLOW_APE_PSPACE_WR;
4135cc085b36SPyun YongHyeon pci_write_config(dev, BGE_PCI_PCISTATE, val, 4);
413695d67482SBill Paul pci_write_config(dev, BGE_PCI_CACHESZ, cachesize, 4);
413795d67482SBill Paul pci_write_config(dev, BGE_PCI_CMD, command, 4);
4138cbb2b2feSPyun YongHyeon /*
4139cbb2b2feSPyun YongHyeon * Disable PCI-X relaxed ordering to ensure status block update
4140fa8b4d63SPyun YongHyeon * comes first then packet buffer DMA. Otherwise driver may
4141cbb2b2feSPyun YongHyeon * read stale status block.
4142cbb2b2feSPyun YongHyeon */
4143cbb2b2feSPyun YongHyeon if (sc->bge_flags & BGE_FLAG_PCIX) {
4144cbb2b2feSPyun YongHyeon devctl = pci_read_config(dev,
4145cbb2b2feSPyun YongHyeon sc->bge_pcixcap + PCIXR_COMMAND, 2);
4146cbb2b2feSPyun YongHyeon devctl &= ~PCIXM_COMMAND_ERO;
4147cbb2b2feSPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5703) {
4148cbb2b2feSPyun YongHyeon devctl &= ~PCIXM_COMMAND_MAX_READ;
4149cbb2b2feSPyun YongHyeon devctl |= PCIXM_COMMAND_MAX_READ_2048;
4150cbb2b2feSPyun YongHyeon } else if (sc->bge_asicrev == BGE_ASICREV_BCM5704) {
4151cbb2b2feSPyun YongHyeon devctl &= ~(PCIXM_COMMAND_MAX_SPLITS |
4152cbb2b2feSPyun YongHyeon PCIXM_COMMAND_MAX_READ);
4153cbb2b2feSPyun YongHyeon devctl |= PCIXM_COMMAND_MAX_READ_2048;
4154cbb2b2feSPyun YongHyeon }
4155cbb2b2feSPyun YongHyeon pci_write_config(dev, sc->bge_pcixcap + PCIXR_COMMAND,
4156cbb2b2feSPyun YongHyeon devctl, 2);
4157cbb2b2feSPyun YongHyeon }
415822a4ecedSMarius Strobl /* Re-enable MSI, if necessary, and enable the memory arbiter. */
41594c0da0ffSGleb Smirnoff if (BGE_IS_5714_FAMILY(sc)) {
4160bf6ef57aSJohn Polstra /* This chip disables MSI on reset. */
4161bf6ef57aSJohn Polstra if (sc->bge_flags & BGE_FLAG_MSI) {
41620aaf1057SPyun YongHyeon val = pci_read_config(dev,
41630aaf1057SPyun YongHyeon sc->bge_msicap + PCIR_MSI_CTRL, 2);
41640aaf1057SPyun YongHyeon pci_write_config(dev,
41650aaf1057SPyun YongHyeon sc->bge_msicap + PCIR_MSI_CTRL,
4166bf6ef57aSJohn Polstra val | PCIM_MSICTRL_MSI_ENABLE, 2);
4167bf6ef57aSJohn Polstra val = CSR_READ_4(sc, BGE_MSI_MODE);
4168bf6ef57aSJohn Polstra CSR_WRITE_4(sc, BGE_MSI_MODE,
4169bf6ef57aSJohn Polstra val | BGE_MSIMODE_ENABLE);
4170bf6ef57aSJohn Polstra }
41714c0da0ffSGleb Smirnoff val = CSR_READ_4(sc, BGE_MARB_MODE);
41724c0da0ffSGleb Smirnoff CSR_WRITE_4(sc, BGE_MARB_MODE, BGE_MARBMODE_ENABLE | val);
41734c0da0ffSGleb Smirnoff } else
4174a7b0c314SPaul Saab CSR_WRITE_4(sc, BGE_MARB_MODE, BGE_MARBMODE_ENABLE);
4175a7b0c314SPaul Saab
4176cc085b36SPyun YongHyeon /* Fix up byte swapping. */
4177cc085b36SPyun YongHyeon CSR_WRITE_4(sc, BGE_MODE_CTL, bge_dma_swap_options(sc));
4178cc085b36SPyun YongHyeon
4179cc085b36SPyun YongHyeon val = CSR_READ_4(sc, BGE_MAC_MODE);
4180cc085b36SPyun YongHyeon val = (val & ~mac_mode_mask) | mac_mode;
4181cc085b36SPyun YongHyeon CSR_WRITE_4(sc, BGE_MAC_MODE, val);
4182cc085b36SPyun YongHyeon DELAY(40);
4183cc085b36SPyun YongHyeon
4184548c8f1aSPyun YongHyeon bge_ape_unlock(sc, BGE_APE_LOCK_GRC);
4185548c8f1aSPyun YongHyeon
418638cc658fSJohn Baldwin if (sc->bge_asicrev == BGE_ASICREV_BCM5906) {
418738cc658fSJohn Baldwin for (i = 0; i < BGE_TIMEOUT; i++) {
418838cc658fSJohn Baldwin val = CSR_READ_4(sc, BGE_VCPU_STATUS);
418938cc658fSJohn Baldwin if (val & BGE_VCPU_STATUS_INIT_DONE)
419038cc658fSJohn Baldwin break;
419138cc658fSJohn Baldwin DELAY(100);
419238cc658fSJohn Baldwin }
419338cc658fSJohn Baldwin if (i == BGE_TIMEOUT) {
4194333704a3SPyun YongHyeon device_printf(dev, "reset timed out\n");
419538cc658fSJohn Baldwin return (1);
419638cc658fSJohn Baldwin }
419738cc658fSJohn Baldwin } else {
419895d67482SBill Paul /*
41996f8718a3SScott Long * Poll until we see the 1's complement of the magic number.
420008013fd3SMarius Strobl * This indicates that the firmware initialization is complete.
42015fea260fSMarius Strobl * We expect this to fail if no chip containing the Ethernet
42025fea260fSMarius Strobl * address is fitted though.
420395d67482SBill Paul */
420495d67482SBill Paul for (i = 0; i < BGE_TIMEOUT; i++) {
4205d5d23857SJung-uk Kim DELAY(10);
4206888b47f0SPyun YongHyeon val = bge_readmem_ind(sc, BGE_SRAM_FW_MB);
4207888b47f0SPyun YongHyeon if (val == ~BGE_SRAM_FW_MB_MAGIC)
420895d67482SBill Paul break;
420995d67482SBill Paul }
421095d67482SBill Paul
42115fea260fSMarius Strobl if ((sc->bge_flags & BGE_FLAG_EADDR) && i == BGE_TIMEOUT)
4212333704a3SPyun YongHyeon device_printf(dev,
4213333704a3SPyun YongHyeon "firmware handshake timed out, found 0x%08x\n",
4214333704a3SPyun YongHyeon val);
4215b4a256acSPyun YongHyeon /* BCM57765 A0 needs additional time before accessing. */
4216b4a256acSPyun YongHyeon if (sc->bge_chipid == BGE_CHIPID_BCM57765_A0)
4217b4a256acSPyun YongHyeon DELAY(10 * 1000); /* XXX */
421838cc658fSJohn Baldwin }
421995d67482SBill Paul
422095d67482SBill Paul /*
4221da3003f0SBill Paul * The 5704 in TBI mode apparently needs some special
4222da3003f0SBill Paul * adjustment to insure the SERDES drive level is set
4223da3003f0SBill Paul * to 1.2V.
4224da3003f0SBill Paul */
4225652ae483SGleb Smirnoff if (sc->bge_asicrev == BGE_ASICREV_BCM5704 &&
4226652ae483SGleb Smirnoff sc->bge_flags & BGE_FLAG_TBI) {
42275fea260fSMarius Strobl val = CSR_READ_4(sc, BGE_SERDES_CFG);
42285fea260fSMarius Strobl val = (val & ~0xFFF) | 0x880;
42295fea260fSMarius Strobl CSR_WRITE_4(sc, BGE_SERDES_CFG, val);
4230da3003f0SBill Paul }
4231da3003f0SBill Paul
4232e53d81eeSPaul Saab /* XXX: Broadcom Linux driver. */
4233652ae483SGleb Smirnoff if (sc->bge_flags & BGE_FLAG_PCIE &&
4234b4a256acSPyun YongHyeon !BGE_IS_5717_PLUS(sc) &&
4235a5ad2f15SPyun YongHyeon sc->bge_chipid != BGE_CHIPID_BCM5750_A0 &&
4236a5ad2f15SPyun YongHyeon sc->bge_asicrev != BGE_ASICREV_BCM5785) {
4237a5ad2f15SPyun YongHyeon /* Enable Data FIFO protection. */
42385fea260fSMarius Strobl val = CSR_READ_4(sc, 0x7C00);
42395fea260fSMarius Strobl CSR_WRITE_4(sc, 0x7C00, val | (1 << 25));
4240e53d81eeSPaul Saab }
42418cb1383cSDoug Ambrisko
424250515680SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5720)
424350515680SPyun YongHyeon BGE_CLRBIT(sc, BGE_CPMU_CLCK_ORIDE,
424450515680SPyun YongHyeon CPMU_CLCK_ORIDE_MAC_ORIDE_EN);
424550515680SPyun YongHyeon
42468cb1383cSDoug Ambrisko return (0);
424795d67482SBill Paul }
424895d67482SBill Paul
4249e0b7b101SPyun YongHyeon static __inline void
bge_rxreuse_std(struct bge_softc * sc,int i)4250e0b7b101SPyun YongHyeon bge_rxreuse_std(struct bge_softc *sc, int i)
4251e0b7b101SPyun YongHyeon {
4252e0b7b101SPyun YongHyeon struct bge_rx_bd *r;
4253e0b7b101SPyun YongHyeon
4254e0b7b101SPyun YongHyeon r = &sc->bge_ldata.bge_rx_std_ring[sc->bge_std];
4255e0b7b101SPyun YongHyeon r->bge_flags = BGE_RXBDFLAG_END;
4256e0b7b101SPyun YongHyeon r->bge_len = sc->bge_cdata.bge_rx_std_seglen[i];
4257e0b7b101SPyun YongHyeon r->bge_idx = i;
4258e0b7b101SPyun YongHyeon BGE_INC(sc->bge_std, BGE_STD_RX_RING_CNT);
4259e0b7b101SPyun YongHyeon }
4260e0b7b101SPyun YongHyeon
4261e0b7b101SPyun YongHyeon static __inline void
bge_rxreuse_jumbo(struct bge_softc * sc,int i)4262e0b7b101SPyun YongHyeon bge_rxreuse_jumbo(struct bge_softc *sc, int i)
4263e0b7b101SPyun YongHyeon {
4264e0b7b101SPyun YongHyeon struct bge_extrx_bd *r;
4265e0b7b101SPyun YongHyeon
4266e0b7b101SPyun YongHyeon r = &sc->bge_ldata.bge_rx_jumbo_ring[sc->bge_jumbo];
4267e0b7b101SPyun YongHyeon r->bge_flags = BGE_RXBDFLAG_JUMBO_RING | BGE_RXBDFLAG_END;
4268e0b7b101SPyun YongHyeon r->bge_len0 = sc->bge_cdata.bge_rx_jumbo_seglen[i][0];
4269e0b7b101SPyun YongHyeon r->bge_len1 = sc->bge_cdata.bge_rx_jumbo_seglen[i][1];
4270e0b7b101SPyun YongHyeon r->bge_len2 = sc->bge_cdata.bge_rx_jumbo_seglen[i][2];
4271e0b7b101SPyun YongHyeon r->bge_len3 = sc->bge_cdata.bge_rx_jumbo_seglen[i][3];
4272e0b7b101SPyun YongHyeon r->bge_idx = i;
4273e0b7b101SPyun YongHyeon BGE_INC(sc->bge_jumbo, BGE_JUMBO_RX_RING_CNT);
4274e0b7b101SPyun YongHyeon }
4275e0b7b101SPyun YongHyeon
427695d67482SBill Paul /*
427795d67482SBill Paul * Frame reception handling. This is called if there's a frame
427895d67482SBill Paul * on the receive return list.
427995d67482SBill Paul *
428095d67482SBill Paul * Note: we have to be able to handle two possibilities here:
42811be6acb7SGleb Smirnoff * 1) the frame is from the jumbo receive ring
428295d67482SBill Paul * 2) the frame is from the standard receive ring
428395d67482SBill Paul */
428495d67482SBill Paul
42851abcdbd1SAttilio Rao static int
bge_rxeof(struct bge_softc * sc,uint16_t rx_prod,int holdlck)4286dfe0df9aSPyun YongHyeon bge_rxeof(struct bge_softc *sc, uint16_t rx_prod, int holdlck)
428795d67482SBill Paul {
4288fba8b109SMarcel Moolenaar if_t ifp;
42891abcdbd1SAttilio Rao int rx_npkts = 0, stdcnt = 0, jumbocnt = 0;
4290b9c05fa5SPyun YongHyeon uint16_t rx_cons;
429195d67482SBill Paul
42927f21e273SStanislav Sedov rx_cons = sc->bge_rx_saved_considx;
42930f9bd73bSSam Leffler
42943f74909aSGleb Smirnoff /* Nothing to do. */
42957f21e273SStanislav Sedov if (rx_cons == rx_prod)
42961abcdbd1SAttilio Rao return (rx_npkts);
4297cfcb5025SOleg Bulyzhin
4298fc74a9f9SBrooks Davis ifp = sc->bge_ifp;
429995d67482SBill Paul
4300f41ac2beSBill Paul bus_dmamap_sync(sc->bge_cdata.bge_rx_return_ring_tag,
4301e65bed95SPyun YongHyeon sc->bge_cdata.bge_rx_return_ring_map, BUS_DMASYNC_POSTREAD);
4302f41ac2beSBill Paul bus_dmamap_sync(sc->bge_cdata.bge_rx_std_ring_tag,
430315eda801SStanislav Sedov sc->bge_cdata.bge_rx_std_ring_map, BUS_DMASYNC_POSTWRITE);
4304f5459d4cSPyun YongHyeon if (BGE_IS_JUMBO_CAPABLE(sc) &&
4305fba8b109SMarcel Moolenaar if_getmtu(ifp) + ETHER_HDR_LEN + ETHER_CRC_LEN +
4306fba8b109SMarcel Moolenaar ETHER_VLAN_ENCAP_LEN > (MCLBYTES - ETHER_ALIGN))
4307f41ac2beSBill Paul bus_dmamap_sync(sc->bge_cdata.bge_rx_jumbo_ring_tag,
430815eda801SStanislav Sedov sc->bge_cdata.bge_rx_jumbo_ring_map, BUS_DMASYNC_POSTWRITE);
4309f41ac2beSBill Paul
43107f21e273SStanislav Sedov while (rx_cons != rx_prod) {
431195d67482SBill Paul struct bge_rx_bd *cur_rx;
43123f74909aSGleb Smirnoff uint32_t rxidx;
431395d67482SBill Paul struct mbuf *m = NULL;
43143f74909aSGleb Smirnoff uint16_t vlan_tag = 0;
431595d67482SBill Paul int have_tag = 0;
431695d67482SBill Paul
431775719184SGleb Smirnoff #ifdef DEVICE_POLLING
4318fba8b109SMarcel Moolenaar if (if_getcapenable(ifp) & IFCAP_POLLING) {
431975719184SGleb Smirnoff if (sc->rxcycles <= 0)
432075719184SGleb Smirnoff break;
432175719184SGleb Smirnoff sc->rxcycles--;
432275719184SGleb Smirnoff }
432375719184SGleb Smirnoff #endif
432475719184SGleb Smirnoff
43257f21e273SStanislav Sedov cur_rx = &sc->bge_ldata.bge_rx_return_ring[rx_cons];
432695d67482SBill Paul
432795d67482SBill Paul rxidx = cur_rx->bge_idx;
43287f21e273SStanislav Sedov BGE_INC(rx_cons, sc->bge_return_ring_cnt);
432995d67482SBill Paul
4330fba8b109SMarcel Moolenaar if (if_getcapenable(ifp) & IFCAP_VLAN_HWTAGGING &&
4331cb2eacc7SYaroslav Tykhiy cur_rx->bge_flags & BGE_RXBDFLAG_VLAN_TAG) {
433295d67482SBill Paul have_tag = 1;
433395d67482SBill Paul vlan_tag = cur_rx->bge_vlan_tag;
433495d67482SBill Paul }
433595d67482SBill Paul
433695d67482SBill Paul if (cur_rx->bge_flags & BGE_RXBDFLAG_JUMBO_RING) {
433795d67482SBill Paul jumbocnt++;
4338943787f3SPyun YongHyeon m = sc->bge_cdata.bge_rx_jumbo_chain[rxidx];
433995d67482SBill Paul if (cur_rx->bge_flags & BGE_RXBDFLAG_ERROR) {
4340e0b7b101SPyun YongHyeon bge_rxreuse_jumbo(sc, rxidx);
434195d67482SBill Paul continue;
434295d67482SBill Paul }
4343943787f3SPyun YongHyeon if (bge_newbuf_jumbo(sc, rxidx) != 0) {
4344e0b7b101SPyun YongHyeon bge_rxreuse_jumbo(sc, rxidx);
4345df360178SGleb Smirnoff if_inc_counter(ifp, IFCOUNTER_IQDROPS, 1);
434695d67482SBill Paul continue;
434795d67482SBill Paul }
434803e78bd0SPyun YongHyeon BGE_INC(sc->bge_jumbo, BGE_JUMBO_RX_RING_CNT);
434995d67482SBill Paul } else {
435095d67482SBill Paul stdcnt++;
4351e0b7b101SPyun YongHyeon m = sc->bge_cdata.bge_rx_std_chain[rxidx];
435295d67482SBill Paul if (cur_rx->bge_flags & BGE_RXBDFLAG_ERROR) {
4353e0b7b101SPyun YongHyeon bge_rxreuse_std(sc, rxidx);
435495d67482SBill Paul continue;
435595d67482SBill Paul }
4356943787f3SPyun YongHyeon if (bge_newbuf_std(sc, rxidx) != 0) {
4357e0b7b101SPyun YongHyeon bge_rxreuse_std(sc, rxidx);
4358df360178SGleb Smirnoff if_inc_counter(ifp, IFCOUNTER_IQDROPS, 1);
435995d67482SBill Paul continue;
436095d67482SBill Paul }
436103e78bd0SPyun YongHyeon BGE_INC(sc->bge_std, BGE_STD_RX_RING_CNT);
436295d67482SBill Paul }
436395d67482SBill Paul
4364df360178SGleb Smirnoff if_inc_counter(ifp, IFCOUNTER_IPACKETS, 1);
4365e65bed95SPyun YongHyeon #ifndef __NO_STRICT_ALIGNMENT
4366e255b776SJohn Polstra /*
4367e65bed95SPyun YongHyeon * For architectures with strict alignment we must make sure
4368e65bed95SPyun YongHyeon * the payload is aligned.
4369e255b776SJohn Polstra */
4370652ae483SGleb Smirnoff if (sc->bge_flags & BGE_FLAG_RX_ALIGNBUG) {
4371e255b776SJohn Polstra bcopy(m->m_data, m->m_data + ETHER_ALIGN,
4372e255b776SJohn Polstra cur_rx->bge_len);
4373e255b776SJohn Polstra m->m_data += ETHER_ALIGN;
4374e255b776SJohn Polstra }
4375e255b776SJohn Polstra #endif
4376473851baSPaul Saab m->m_pkthdr.len = m->m_len = cur_rx->bge_len - ETHER_CRC_LEN;
437795d67482SBill Paul m->m_pkthdr.rcvif = ifp;
437895d67482SBill Paul
4379fba8b109SMarcel Moolenaar if (if_getcapenable(ifp) & IFCAP_RXCSUM)
43801108273aSPyun YongHyeon bge_rxcsum(sc, cur_rx, m);
438195d67482SBill Paul
438295d67482SBill Paul /*
4383673d9191SSam Leffler * If we received a packet with a vlan tag,
4384673d9191SSam Leffler * attach that information to the packet.
438595d67482SBill Paul */
4386d147662cSGleb Smirnoff if (have_tag) {
438778ba57b9SAndre Oppermann m->m_pkthdr.ether_vtag = vlan_tag;
438878ba57b9SAndre Oppermann m->m_flags |= M_VLANTAG;
4389d147662cSGleb Smirnoff }
439095d67482SBill Paul
4391dfe0df9aSPyun YongHyeon if (holdlck != 0) {
43920f9bd73bSSam Leffler BGE_UNLOCK(sc);
4393fba8b109SMarcel Moolenaar if_input(ifp, m);
43940f9bd73bSSam Leffler BGE_LOCK(sc);
4395dfe0df9aSPyun YongHyeon } else
4396fba8b109SMarcel Moolenaar if_input(ifp, m);
4397d4da719cSAttilio Rao rx_npkts++;
439825e13e68SXin LI
4399fba8b109SMarcel Moolenaar if (!(if_getdrvflags(ifp) & IFF_DRV_RUNNING))
44008cf7d13dSAttilio Rao return (rx_npkts);
440195d67482SBill Paul }
440295d67482SBill Paul
440315eda801SStanislav Sedov bus_dmamap_sync(sc->bge_cdata.bge_rx_return_ring_tag,
440415eda801SStanislav Sedov sc->bge_cdata.bge_rx_return_ring_map, BUS_DMASYNC_PREREAD);
4405e65bed95SPyun YongHyeon if (stdcnt > 0)
4406f41ac2beSBill Paul bus_dmamap_sync(sc->bge_cdata.bge_rx_std_ring_tag,
4407e65bed95SPyun YongHyeon sc->bge_cdata.bge_rx_std_ring_map, BUS_DMASYNC_PREWRITE);
44084c0da0ffSGleb Smirnoff
4409c215fd77SPyun YongHyeon if (jumbocnt > 0)
4410f41ac2beSBill Paul bus_dmamap_sync(sc->bge_cdata.bge_rx_jumbo_ring_tag,
44114c0da0ffSGleb Smirnoff sc->bge_cdata.bge_rx_jumbo_ring_map, BUS_DMASYNC_PREWRITE);
4412f41ac2beSBill Paul
44137f21e273SStanislav Sedov sc->bge_rx_saved_considx = rx_cons;
441438cc658fSJohn Baldwin bge_writembx(sc, BGE_MBX_RX_CONS0_LO, sc->bge_rx_saved_considx);
441595d67482SBill Paul if (stdcnt)
4416767c3593SPyun YongHyeon bge_writembx(sc, BGE_MBX_RX_STD_PROD_LO, (sc->bge_std +
4417767c3593SPyun YongHyeon BGE_STD_RX_RING_CNT - 1) % BGE_STD_RX_RING_CNT);
441895d67482SBill Paul if (jumbocnt)
4419767c3593SPyun YongHyeon bge_writembx(sc, BGE_MBX_RX_JUMBO_PROD_LO, (sc->bge_jumbo +
4420767c3593SPyun YongHyeon BGE_JUMBO_RX_RING_CNT - 1) % BGE_JUMBO_RX_RING_CNT);
4421f5a034f9SPyun YongHyeon #ifdef notyet
4422f5a034f9SPyun YongHyeon /*
4423f5a034f9SPyun YongHyeon * This register wraps very quickly under heavy packet drops.
4424f5a034f9SPyun YongHyeon * If you need correct statistics, you can enable this check.
4425f5a034f9SPyun YongHyeon */
4426f5a034f9SPyun YongHyeon if (BGE_IS_5705_PLUS(sc))
4427fba8b109SMarcel Moolenaar if_incierrors(ifp, CSR_READ_4(sc, BGE_RXLP_LOCSTAT_IFIN_DROPS));
4428f5a034f9SPyun YongHyeon #endif
44291abcdbd1SAttilio Rao return (rx_npkts);
443095d67482SBill Paul }
443195d67482SBill Paul
443295d67482SBill Paul static void
bge_rxcsum(struct bge_softc * sc,struct bge_rx_bd * cur_rx,struct mbuf * m)44331108273aSPyun YongHyeon bge_rxcsum(struct bge_softc *sc, struct bge_rx_bd *cur_rx, struct mbuf *m)
44341108273aSPyun YongHyeon {
44351108273aSPyun YongHyeon
44361108273aSPyun YongHyeon if (BGE_IS_5717_PLUS(sc)) {
44371108273aSPyun YongHyeon if ((cur_rx->bge_flags & BGE_RXBDFLAG_IPV6) == 0) {
44381108273aSPyun YongHyeon if (cur_rx->bge_flags & BGE_RXBDFLAG_IP_CSUM) {
44391108273aSPyun YongHyeon m->m_pkthdr.csum_flags |= CSUM_IP_CHECKED;
44401108273aSPyun YongHyeon if ((cur_rx->bge_error_flag &
44411108273aSPyun YongHyeon BGE_RXERRFLAG_IP_CSUM_NOK) == 0)
44421108273aSPyun YongHyeon m->m_pkthdr.csum_flags |= CSUM_IP_VALID;
44431108273aSPyun YongHyeon }
44441108273aSPyun YongHyeon if (cur_rx->bge_flags & BGE_RXBDFLAG_TCP_UDP_CSUM) {
44451108273aSPyun YongHyeon m->m_pkthdr.csum_data =
44461108273aSPyun YongHyeon cur_rx->bge_tcp_udp_csum;
44471108273aSPyun YongHyeon m->m_pkthdr.csum_flags |= CSUM_DATA_VALID |
44481108273aSPyun YongHyeon CSUM_PSEUDO_HDR;
44491108273aSPyun YongHyeon }
44501108273aSPyun YongHyeon }
44511108273aSPyun YongHyeon } else {
44521108273aSPyun YongHyeon if (cur_rx->bge_flags & BGE_RXBDFLAG_IP_CSUM) {
44531108273aSPyun YongHyeon m->m_pkthdr.csum_flags |= CSUM_IP_CHECKED;
44541108273aSPyun YongHyeon if ((cur_rx->bge_ip_csum ^ 0xFFFF) == 0)
44551108273aSPyun YongHyeon m->m_pkthdr.csum_flags |= CSUM_IP_VALID;
44561108273aSPyun YongHyeon }
44571108273aSPyun YongHyeon if (cur_rx->bge_flags & BGE_RXBDFLAG_TCP_UDP_CSUM &&
44581108273aSPyun YongHyeon m->m_pkthdr.len >= ETHER_MIN_NOPAD) {
44591108273aSPyun YongHyeon m->m_pkthdr.csum_data =
44601108273aSPyun YongHyeon cur_rx->bge_tcp_udp_csum;
44611108273aSPyun YongHyeon m->m_pkthdr.csum_flags |= CSUM_DATA_VALID |
44621108273aSPyun YongHyeon CSUM_PSEUDO_HDR;
44631108273aSPyun YongHyeon }
44641108273aSPyun YongHyeon }
44651108273aSPyun YongHyeon }
44661108273aSPyun YongHyeon
44671108273aSPyun YongHyeon static void
bge_txeof(struct bge_softc * sc,uint16_t tx_cons)4468b9c05fa5SPyun YongHyeon bge_txeof(struct bge_softc *sc, uint16_t tx_cons)
446995d67482SBill Paul {
447095a0a340SPyun YongHyeon struct bge_tx_bd *cur_tx;
4471fba8b109SMarcel Moolenaar if_t ifp;
447295d67482SBill Paul
44730f9bd73bSSam Leffler BGE_LOCK_ASSERT(sc);
44740f9bd73bSSam Leffler
44753f74909aSGleb Smirnoff /* Nothing to do. */
4476b9c05fa5SPyun YongHyeon if (sc->bge_tx_saved_considx == tx_cons)
4477cfcb5025SOleg Bulyzhin return;
4478cfcb5025SOleg Bulyzhin
4479fc74a9f9SBrooks Davis ifp = sc->bge_ifp;
448095d67482SBill Paul
4481e65bed95SPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_tx_ring_tag,
44825c1da2faSPyun YongHyeon sc->bge_cdata.bge_tx_ring_map, BUS_DMASYNC_POSTWRITE);
448395d67482SBill Paul /*
448495d67482SBill Paul * Go through our tx ring and free mbufs for those
448595d67482SBill Paul * frames that have been sent.
448695d67482SBill Paul */
4487b9c05fa5SPyun YongHyeon while (sc->bge_tx_saved_considx != tx_cons) {
448895a0a340SPyun YongHyeon uint32_t idx;
448995d67482SBill Paul
449095d67482SBill Paul idx = sc->bge_tx_saved_considx;
4491f41ac2beSBill Paul cur_tx = &sc->bge_ldata.bge_tx_ring[idx];
449295d67482SBill Paul if (cur_tx->bge_flags & BGE_TXBDFLAG_END)
4493df360178SGleb Smirnoff if_inc_counter(ifp, IFCOUNTER_OPACKETS, 1);
449495d67482SBill Paul if (sc->bge_cdata.bge_tx_chain[idx] != NULL) {
44950ac56796SPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_tx_mtag,
4496e65bed95SPyun YongHyeon sc->bge_cdata.bge_tx_dmamap[idx],
4497e65bed95SPyun YongHyeon BUS_DMASYNC_POSTWRITE);
44980ac56796SPyun YongHyeon bus_dmamap_unload(sc->bge_cdata.bge_tx_mtag,
4499f41ac2beSBill Paul sc->bge_cdata.bge_tx_dmamap[idx]);
4500e65bed95SPyun YongHyeon m_freem(sc->bge_cdata.bge_tx_chain[idx]);
4501e65bed95SPyun YongHyeon sc->bge_cdata.bge_tx_chain[idx] = NULL;
450295d67482SBill Paul }
450395d67482SBill Paul sc->bge_txcnt--;
450495d67482SBill Paul BGE_INC(sc->bge_tx_saved_considx, BGE_TX_RING_CNT);
450595d67482SBill Paul }
450695d67482SBill Paul
4507fba8b109SMarcel Moolenaar if_setdrvflagbits(ifp, 0, IFF_DRV_OACTIVE);
45085b01e77cSBruce Evans if (sc->bge_txcnt == 0)
45095b01e77cSBruce Evans sc->bge_timer = 0;
451095d67482SBill Paul }
451195d67482SBill Paul
451275719184SGleb Smirnoff #ifdef DEVICE_POLLING
45131abcdbd1SAttilio Rao static int
bge_poll(if_t ifp,enum poll_cmd cmd,int count)4514fba8b109SMarcel Moolenaar bge_poll(if_t ifp, enum poll_cmd cmd, int count)
451575719184SGleb Smirnoff {
4516fba8b109SMarcel Moolenaar struct bge_softc *sc = if_getsoftc(ifp);
4517b9c05fa5SPyun YongHyeon uint16_t rx_prod, tx_cons;
4518366454f2SOleg Bulyzhin uint32_t statusword;
45191abcdbd1SAttilio Rao int rx_npkts = 0;
452075719184SGleb Smirnoff
45213f74909aSGleb Smirnoff BGE_LOCK(sc);
4522fba8b109SMarcel Moolenaar if (!(if_getdrvflags(ifp) & IFF_DRV_RUNNING)) {
45233f74909aSGleb Smirnoff BGE_UNLOCK(sc);
45241abcdbd1SAttilio Rao return (rx_npkts);
45253f74909aSGleb Smirnoff }
452675719184SGleb Smirnoff
4527dab5cd05SOleg Bulyzhin bus_dmamap_sync(sc->bge_cdata.bge_status_tag,
4528b9c05fa5SPyun YongHyeon sc->bge_cdata.bge_status_map,
4529b9c05fa5SPyun YongHyeon BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
45302246e8c6SPyun YongHyeon /* Fetch updates from the status block. */
4531b9c05fa5SPyun YongHyeon rx_prod = sc->bge_ldata.bge_status_block->bge_idx[0].bge_rx_prod_idx;
4532b9c05fa5SPyun YongHyeon tx_cons = sc->bge_ldata.bge_status_block->bge_idx[0].bge_tx_cons_idx;
4533dab5cd05SOleg Bulyzhin
4534175f8742SPyun YongHyeon statusword = sc->bge_ldata.bge_status_block->bge_status;
45352246e8c6SPyun YongHyeon /* Clear the status so the next pass only sees the changes. */
4536175f8742SPyun YongHyeon sc->bge_ldata.bge_status_block->bge_status = 0;
4537dab5cd05SOleg Bulyzhin
4538dab5cd05SOleg Bulyzhin bus_dmamap_sync(sc->bge_cdata.bge_status_tag,
4539b9c05fa5SPyun YongHyeon sc->bge_cdata.bge_status_map,
4540b9c05fa5SPyun YongHyeon BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
4541366454f2SOleg Bulyzhin
45420c8aa4eaSJung-uk Kim /* Note link event. It will be processed by POLL_AND_CHECK_STATUS. */
4543366454f2SOleg Bulyzhin if (statusword & BGE_STATFLAG_LINKSTATE_CHANGED)
4544366454f2SOleg Bulyzhin sc->bge_link_evt++;
4545366454f2SOleg Bulyzhin
4546366454f2SOleg Bulyzhin if (cmd == POLL_AND_CHECK_STATUS)
4547366454f2SOleg Bulyzhin if ((sc->bge_asicrev == BGE_ASICREV_BCM5700 &&
45484c0da0ffSGleb Smirnoff sc->bge_chipid != BGE_CHIPID_BCM5700_B2) ||
4549652ae483SGleb Smirnoff sc->bge_link_evt || (sc->bge_flags & BGE_FLAG_TBI))
4550366454f2SOleg Bulyzhin bge_link_upd(sc);
4551366454f2SOleg Bulyzhin
4552366454f2SOleg Bulyzhin sc->rxcycles = count;
4553dfe0df9aSPyun YongHyeon rx_npkts = bge_rxeof(sc, rx_prod, 1);
4554fba8b109SMarcel Moolenaar if (!(if_getdrvflags(ifp) & IFF_DRV_RUNNING)) {
455525e13e68SXin LI BGE_UNLOCK(sc);
45568cf7d13dSAttilio Rao return (rx_npkts);
455725e13e68SXin LI }
4558b9c05fa5SPyun YongHyeon bge_txeof(sc, tx_cons);
4559fba8b109SMarcel Moolenaar if (!if_sendq_empty(ifp))
4560366454f2SOleg Bulyzhin bge_start_locked(ifp);
45613f74909aSGleb Smirnoff
45623f74909aSGleb Smirnoff BGE_UNLOCK(sc);
45631abcdbd1SAttilio Rao return (rx_npkts);
456475719184SGleb Smirnoff }
456575719184SGleb Smirnoff #endif /* DEVICE_POLLING */
456675719184SGleb Smirnoff
4567dfe0df9aSPyun YongHyeon static int
bge_msi_intr(void * arg)4568dfe0df9aSPyun YongHyeon bge_msi_intr(void *arg)
4569dfe0df9aSPyun YongHyeon {
4570dfe0df9aSPyun YongHyeon struct bge_softc *sc;
4571dfe0df9aSPyun YongHyeon
4572dfe0df9aSPyun YongHyeon sc = (struct bge_softc *)arg;
4573dfe0df9aSPyun YongHyeon /*
4574dfe0df9aSPyun YongHyeon * This interrupt is not shared and controller already
4575dfe0df9aSPyun YongHyeon * disabled further interrupt.
4576dfe0df9aSPyun YongHyeon */
4577dfe0df9aSPyun YongHyeon taskqueue_enqueue(sc->bge_tq, &sc->bge_intr_task);
4578dfe0df9aSPyun YongHyeon return (FILTER_HANDLED);
4579dfe0df9aSPyun YongHyeon }
4580dfe0df9aSPyun YongHyeon
4581dfe0df9aSPyun YongHyeon static void
bge_intr_task(void * arg,int pending)4582dfe0df9aSPyun YongHyeon bge_intr_task(void *arg, int pending)
4583dfe0df9aSPyun YongHyeon {
4584dfe0df9aSPyun YongHyeon struct bge_softc *sc;
4585fba8b109SMarcel Moolenaar if_t ifp;
45861108273aSPyun YongHyeon uint32_t status, status_tag;
4587dfe0df9aSPyun YongHyeon uint16_t rx_prod, tx_cons;
4588dfe0df9aSPyun YongHyeon
4589dfe0df9aSPyun YongHyeon sc = (struct bge_softc *)arg;
4590dfe0df9aSPyun YongHyeon ifp = sc->bge_ifp;
4591dfe0df9aSPyun YongHyeon
459266151edfSPyun YongHyeon BGE_LOCK(sc);
4593fba8b109SMarcel Moolenaar if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) == 0) {
459466151edfSPyun YongHyeon BGE_UNLOCK(sc);
4595dfe0df9aSPyun YongHyeon return;
459666151edfSPyun YongHyeon }
4597dfe0df9aSPyun YongHyeon
4598dfe0df9aSPyun YongHyeon /* Get updated status block. */
4599dfe0df9aSPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_status_tag,
4600dfe0df9aSPyun YongHyeon sc->bge_cdata.bge_status_map,
4601dfe0df9aSPyun YongHyeon BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
4602dfe0df9aSPyun YongHyeon
46032246e8c6SPyun YongHyeon /* Save producer/consumer indices. */
4604dfe0df9aSPyun YongHyeon rx_prod = sc->bge_ldata.bge_status_block->bge_idx[0].bge_rx_prod_idx;
4605dfe0df9aSPyun YongHyeon tx_cons = sc->bge_ldata.bge_status_block->bge_idx[0].bge_tx_cons_idx;
4606dfe0df9aSPyun YongHyeon status = sc->bge_ldata.bge_status_block->bge_status;
46071108273aSPyun YongHyeon status_tag = sc->bge_ldata.bge_status_block->bge_status_tag << 24;
46082246e8c6SPyun YongHyeon /* Dirty the status flag. */
4609dfe0df9aSPyun YongHyeon sc->bge_ldata.bge_status_block->bge_status = 0;
4610dfe0df9aSPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_status_tag,
4611dfe0df9aSPyun YongHyeon sc->bge_cdata.bge_status_map,
4612dfe0df9aSPyun YongHyeon BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
46131108273aSPyun YongHyeon if ((sc->bge_flags & BGE_FLAG_TAGGED_STATUS) == 0)
46141108273aSPyun YongHyeon status_tag = 0;
461566151edfSPyun YongHyeon
461666151edfSPyun YongHyeon if ((status & BGE_STATFLAG_LINKSTATE_CHANGED) != 0)
461766151edfSPyun YongHyeon bge_link_upd(sc);
461866151edfSPyun YongHyeon
4619dfe0df9aSPyun YongHyeon /* Let controller work. */
46201108273aSPyun YongHyeon bge_writembx(sc, BGE_MBX_IRQ0_LO, status_tag);
4621dfe0df9aSPyun YongHyeon
4622fba8b109SMarcel Moolenaar if (if_getdrvflags(ifp) & IFF_DRV_RUNNING &&
462366151edfSPyun YongHyeon sc->bge_rx_saved_considx != rx_prod) {
4624dfe0df9aSPyun YongHyeon /* Check RX return ring producer/consumer. */
462566151edfSPyun YongHyeon BGE_UNLOCK(sc);
4626dfe0df9aSPyun YongHyeon bge_rxeof(sc, rx_prod, 0);
462766151edfSPyun YongHyeon BGE_LOCK(sc);
4628dfe0df9aSPyun YongHyeon }
4629fba8b109SMarcel Moolenaar if (if_getdrvflags(ifp) & IFF_DRV_RUNNING) {
4630dfe0df9aSPyun YongHyeon /* Check TX ring producer/consumer. */
4631dfe0df9aSPyun YongHyeon bge_txeof(sc, tx_cons);
4632fba8b109SMarcel Moolenaar if (!if_sendq_empty(ifp))
4633dfe0df9aSPyun YongHyeon bge_start_locked(ifp);
4634dfe0df9aSPyun YongHyeon }
463566151edfSPyun YongHyeon BGE_UNLOCK(sc);
4636dfe0df9aSPyun YongHyeon }
4637dfe0df9aSPyun YongHyeon
463895d67482SBill Paul static void
bge_intr(void * xsc)46393f74909aSGleb Smirnoff bge_intr(void *xsc)
464095d67482SBill Paul {
464195d67482SBill Paul struct bge_softc *sc;
4642fba8b109SMarcel Moolenaar if_t ifp;
4643dab5cd05SOleg Bulyzhin uint32_t statusword;
4644b9c05fa5SPyun YongHyeon uint16_t rx_prod, tx_cons;
464595d67482SBill Paul
464695d67482SBill Paul sc = xsc;
4647f41ac2beSBill Paul
46480f9bd73bSSam Leffler BGE_LOCK(sc);
46490f9bd73bSSam Leffler
4650dab5cd05SOleg Bulyzhin ifp = sc->bge_ifp;
4651dab5cd05SOleg Bulyzhin
465275719184SGleb Smirnoff #ifdef DEVICE_POLLING
4653fba8b109SMarcel Moolenaar if (if_getcapenable(ifp) & IFCAP_POLLING) {
465475719184SGleb Smirnoff BGE_UNLOCK(sc);
465575719184SGleb Smirnoff return;
465675719184SGleb Smirnoff }
465775719184SGleb Smirnoff #endif
465875719184SGleb Smirnoff
4659f30cbfc6SScott Long /*
4660b848e032SBruce Evans * Ack the interrupt by writing something to BGE_MBX_IRQ0_LO. Don't
4661b848e032SBruce Evans * disable interrupts by writing nonzero like we used to, since with
4662b848e032SBruce Evans * our current organization this just gives complications and
4663b848e032SBruce Evans * pessimizations for re-enabling interrupts. We used to have races
4664b848e032SBruce Evans * instead of the necessary complications. Disabling interrupts
4665b848e032SBruce Evans * would just reduce the chance of a status update while we are
4666b848e032SBruce Evans * running (by switching to the interrupt-mode coalescence
4667b848e032SBruce Evans * parameters), but this chance is already very low so it is more
4668b848e032SBruce Evans * efficient to get another interrupt than prevent it.
4669b848e032SBruce Evans *
4670b848e032SBruce Evans * We do the ack first to ensure another interrupt if there is a
4671b848e032SBruce Evans * status update after the ack. We don't check for the status
4672b848e032SBruce Evans * changing later because it is more efficient to get another
4673b848e032SBruce Evans * interrupt than prevent it, not quite as above (not checking is
4674b848e032SBruce Evans * a smaller optimization than not toggling the interrupt enable,
4675b848e032SBruce Evans * since checking doesn't involve PCI accesses and toggling require
4676b848e032SBruce Evans * the status check). So toggling would probably be a pessimization
4677b848e032SBruce Evans * even with MSI. It would only be needed for using a task queue.
4678b848e032SBruce Evans */
467938cc658fSJohn Baldwin bge_writembx(sc, BGE_MBX_IRQ0_LO, 0);
4680b848e032SBruce Evans
4681f584dfd1SPyun YongHyeon /*
4682f584dfd1SPyun YongHyeon * Do the mandatory PCI flush as well as get the link status.
4683f584dfd1SPyun YongHyeon */
4684f584dfd1SPyun YongHyeon statusword = CSR_READ_4(sc, BGE_MAC_STS) & BGE_MACSTAT_LINK_CHANGED;
4685f584dfd1SPyun YongHyeon
4686f584dfd1SPyun YongHyeon /* Make sure the descriptor ring indexes are coherent. */
4687f584dfd1SPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_status_tag,
4688f584dfd1SPyun YongHyeon sc->bge_cdata.bge_status_map,
4689f584dfd1SPyun YongHyeon BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
4690f584dfd1SPyun YongHyeon rx_prod = sc->bge_ldata.bge_status_block->bge_idx[0].bge_rx_prod_idx;
4691f584dfd1SPyun YongHyeon tx_cons = sc->bge_ldata.bge_status_block->bge_idx[0].bge_tx_cons_idx;
4692f584dfd1SPyun YongHyeon sc->bge_ldata.bge_status_block->bge_status = 0;
4693f584dfd1SPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_status_tag,
4694f584dfd1SPyun YongHyeon sc->bge_cdata.bge_status_map,
4695f584dfd1SPyun YongHyeon BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
4696f584dfd1SPyun YongHyeon
46971f313773SOleg Bulyzhin if ((sc->bge_asicrev == BGE_ASICREV_BCM5700 &&
46984c0da0ffSGleb Smirnoff sc->bge_chipid != BGE_CHIPID_BCM5700_B2) ||
4699f30cbfc6SScott Long statusword || sc->bge_link_evt)
4700dab5cd05SOleg Bulyzhin bge_link_upd(sc);
470195d67482SBill Paul
4702fba8b109SMarcel Moolenaar if (if_getdrvflags(ifp) & IFF_DRV_RUNNING) {
47033f74909aSGleb Smirnoff /* Check RX return ring producer/consumer. */
4704dfe0df9aSPyun YongHyeon bge_rxeof(sc, rx_prod, 1);
470525e13e68SXin LI }
470695d67482SBill Paul
4707fba8b109SMarcel Moolenaar if (if_getdrvflags(ifp) & IFF_DRV_RUNNING) {
47083f74909aSGleb Smirnoff /* Check TX ring producer/consumer. */
4709b9c05fa5SPyun YongHyeon bge_txeof(sc, tx_cons);
471095d67482SBill Paul }
471195d67482SBill Paul
4712fba8b109SMarcel Moolenaar if (if_getdrvflags(ifp) & IFF_DRV_RUNNING &&
4713fba8b109SMarcel Moolenaar !if_sendq_empty(ifp))
47140f9bd73bSSam Leffler bge_start_locked(ifp);
47150f9bd73bSSam Leffler
47160f9bd73bSSam Leffler BGE_UNLOCK(sc);
471795d67482SBill Paul }
471895d67482SBill Paul
471995d67482SBill Paul static void
bge_asf_driver_up(struct bge_softc * sc)47208cb1383cSDoug Ambrisko bge_asf_driver_up(struct bge_softc *sc)
47218cb1383cSDoug Ambrisko {
47228cb1383cSDoug Ambrisko if (sc->bge_asf_mode & ASF_STACKUP) {
47238cb1383cSDoug Ambrisko /* Send ASF heartbeat aprox. every 2s */
47248cb1383cSDoug Ambrisko if (sc->bge_asf_count)
47258cb1383cSDoug Ambrisko sc->bge_asf_count --;
47268cb1383cSDoug Ambrisko else {
4727899d6846SPyun YongHyeon sc->bge_asf_count = 2;
4728888b47f0SPyun YongHyeon bge_writemem_ind(sc, BGE_SRAM_FW_CMD_MB,
47293c201200SPyun YongHyeon BGE_FW_CMD_DRV_ALIVE);
4730888b47f0SPyun YongHyeon bge_writemem_ind(sc, BGE_SRAM_FW_CMD_LEN_MB, 4);
4731941a6e13SPyun YongHyeon bge_writemem_ind(sc, BGE_SRAM_FW_CMD_DATA_MB,
4732941a6e13SPyun YongHyeon BGE_FW_HB_TIMEOUT_SEC);
47333fed2d5dSPyun YongHyeon CSR_WRITE_4(sc, BGE_RX_CPU_EVENT,
47349931ba85SPyun YongHyeon CSR_READ_4(sc, BGE_RX_CPU_EVENT) |
47359931ba85SPyun YongHyeon BGE_RX_CPU_DRV_EVENT);
47368cb1383cSDoug Ambrisko }
47378cb1383cSDoug Ambrisko }
47388cb1383cSDoug Ambrisko }
47398cb1383cSDoug Ambrisko
47408cb1383cSDoug Ambrisko static void
bge_tick(void * xsc)4741b74e67fbSGleb Smirnoff bge_tick(void *xsc)
47420f9bd73bSSam Leffler {
4743b74e67fbSGleb Smirnoff struct bge_softc *sc = xsc;
474495d67482SBill Paul struct mii_data *mii = NULL;
474595d67482SBill Paul
47460f9bd73bSSam Leffler BGE_LOCK_ASSERT(sc);
474795d67482SBill Paul
47485dda8085SOleg Bulyzhin /* Synchronize with possible callout reset/stop. */
47495dda8085SOleg Bulyzhin if (callout_pending(&sc->bge_stat_ch) ||
47505dda8085SOleg Bulyzhin !callout_active(&sc->bge_stat_ch))
47515dda8085SOleg Bulyzhin return;
47525dda8085SOleg Bulyzhin
47537ee00338SJung-uk Kim if (BGE_IS_5705_PLUS(sc))
47540434d1b8SBill Paul bge_stats_update_regs(sc);
47550434d1b8SBill Paul else
475695d67482SBill Paul bge_stats_update(sc);
475795d67482SBill Paul
4758548c8f1aSPyun YongHyeon /* XXX Add APE heartbeat check here? */
4759548c8f1aSPyun YongHyeon
4760652ae483SGleb Smirnoff if ((sc->bge_flags & BGE_FLAG_TBI) == 0) {
476195d67482SBill Paul mii = device_get_softc(sc->bge_miibus);
476282b67c01SOleg Bulyzhin /*
476382b67c01SOleg Bulyzhin * Do not touch PHY if we have link up. This could break
476482b67c01SOleg Bulyzhin * IPMI/ASF mode or produce extra input errors
476582b67c01SOleg Bulyzhin * (extra errors was reported for bcm5701 & bcm5704).
476682b67c01SOleg Bulyzhin */
476782b67c01SOleg Bulyzhin if (!sc->bge_link)
476895d67482SBill Paul mii_tick(mii);
47697b97099dSOleg Bulyzhin } else {
47707b97099dSOleg Bulyzhin /*
47717b97099dSOleg Bulyzhin * Since in TBI mode auto-polling can't be used we should poll
47727b97099dSOleg Bulyzhin * link status manually. Here we register pending link event
47737b97099dSOleg Bulyzhin * and trigger interrupt.
47747b97099dSOleg Bulyzhin */
47757b97099dSOleg Bulyzhin #ifdef DEVICE_POLLING
47763f74909aSGleb Smirnoff /* In polling mode we poll link state in bge_poll(). */
477759578ee0SSergey Kandaurov if (!(if_getcapenable(sc->bge_ifp) & IFCAP_POLLING))
47787b97099dSOleg Bulyzhin #endif
47797b97099dSOleg Bulyzhin {
47807b97099dSOleg Bulyzhin sc->bge_link_evt++;
47814f0794ffSBjoern A. Zeeb if (sc->bge_asicrev == BGE_ASICREV_BCM5700 ||
47824f0794ffSBjoern A. Zeeb sc->bge_flags & BGE_FLAG_5788)
47837b97099dSOleg Bulyzhin BGE_SETBIT(sc, BGE_MISC_LOCAL_CTL, BGE_MLC_INTR_SET);
47844f0794ffSBjoern A. Zeeb else
47854f0794ffSBjoern A. Zeeb BGE_SETBIT(sc, BGE_HCC_MODE, BGE_HCCMODE_COAL_NOW);
47867b97099dSOleg Bulyzhin }
4787dab5cd05SOleg Bulyzhin }
478895d67482SBill Paul
47898cb1383cSDoug Ambrisko bge_asf_driver_up(sc);
4790b74e67fbSGleb Smirnoff bge_watchdog(sc);
47918cb1383cSDoug Ambrisko
4792dab5cd05SOleg Bulyzhin callout_reset(&sc->bge_stat_ch, hz, bge_tick, sc);
479395d67482SBill Paul }
479495d67482SBill Paul
479595d67482SBill Paul static void
bge_stats_update_regs(struct bge_softc * sc)47963f74909aSGleb Smirnoff bge_stats_update_regs(struct bge_softc *sc)
47970434d1b8SBill Paul {
47982280c16bSPyun YongHyeon struct bge_mac_stats *stats;
479929b44b09SPyun YongHyeon uint32_t val;
48000434d1b8SBill Paul
48012280c16bSPyun YongHyeon stats = &sc->bge_mac_stats;
48020434d1b8SBill Paul
48032280c16bSPyun YongHyeon stats->ifHCOutOctets +=
48042280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_OCTETS);
48052280c16bSPyun YongHyeon stats->etherStatsCollisions +=
48062280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_COLLS);
48072280c16bSPyun YongHyeon stats->outXonSent +=
48082280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_XON_SENT);
48092280c16bSPyun YongHyeon stats->outXoffSent +=
48102280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_XOFF_SENT);
48112280c16bSPyun YongHyeon stats->dot3StatsInternalMacTransmitErrors +=
48122280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_ERRORS);
48132280c16bSPyun YongHyeon stats->dot3StatsSingleCollisionFrames +=
48142280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_SINGLE_COLL);
48152280c16bSPyun YongHyeon stats->dot3StatsMultipleCollisionFrames +=
48162280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_MULTI_COLL);
48172280c16bSPyun YongHyeon stats->dot3StatsDeferredTransmissions +=
48182280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_DEFERRED);
48192280c16bSPyun YongHyeon stats->dot3StatsExcessiveCollisions +=
48202280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_EXCESS_COLL);
48212280c16bSPyun YongHyeon stats->dot3StatsLateCollisions +=
48222280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_LATE_COLL);
48232280c16bSPyun YongHyeon stats->ifHCOutUcastPkts +=
48242280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_UCAST);
48252280c16bSPyun YongHyeon stats->ifHCOutMulticastPkts +=
48262280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_MCAST);
48272280c16bSPyun YongHyeon stats->ifHCOutBroadcastPkts +=
48282280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_BCAST);
48297e6e2507SJung-uk Kim
48302280c16bSPyun YongHyeon stats->ifHCInOctets +=
48312280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_OCTESTS);
48322280c16bSPyun YongHyeon stats->etherStatsFragments +=
48332280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_FRAGMENTS);
48342280c16bSPyun YongHyeon stats->ifHCInUcastPkts +=
48352280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_UCAST);
48362280c16bSPyun YongHyeon stats->ifHCInMulticastPkts +=
48372280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_MCAST);
48382280c16bSPyun YongHyeon stats->ifHCInBroadcastPkts +=
48392280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_BCAST);
48402280c16bSPyun YongHyeon stats->dot3StatsFCSErrors +=
48412280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_FCS_ERRORS);
48422280c16bSPyun YongHyeon stats->dot3StatsAlignmentErrors +=
48432280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_ALGIN_ERRORS);
48442280c16bSPyun YongHyeon stats->xonPauseFramesReceived +=
48452280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_XON_RCVD);
48462280c16bSPyun YongHyeon stats->xoffPauseFramesReceived +=
48472280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_XOFF_RCVD);
48482280c16bSPyun YongHyeon stats->macControlFramesReceived +=
48492280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_CTRL_RCVD);
48502280c16bSPyun YongHyeon stats->xoffStateEntered +=
48512280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_XOFF_ENTERED);
48522280c16bSPyun YongHyeon stats->dot3StatsFramesTooLong +=
48532280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_FRAME_TOO_LONG);
48542280c16bSPyun YongHyeon stats->etherStatsJabbers +=
48552280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_JABBERS);
48562280c16bSPyun YongHyeon stats->etherStatsUndersizePkts +=
48572280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_UNDERSIZE);
48582280c16bSPyun YongHyeon
48592280c16bSPyun YongHyeon stats->FramesDroppedDueToFilters +=
48602280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RXLP_LOCSTAT_FILTDROP);
48612280c16bSPyun YongHyeon stats->DmaWriteQueueFull +=
48622280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RXLP_LOCSTAT_DMA_WRQ_FULL);
48632280c16bSPyun YongHyeon stats->DmaWriteHighPriQueueFull +=
48642280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RXLP_LOCSTAT_DMA_HPWRQ_FULL);
48652280c16bSPyun YongHyeon stats->NoMoreRxBDs +=
48662280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RXLP_LOCSTAT_OUT_OF_BDS);
4867f78094a5SPyun YongHyeon /*
4868f78094a5SPyun YongHyeon * XXX
4869f78094a5SPyun YongHyeon * Unlike other controllers, BGE_RXLP_LOCSTAT_IFIN_DROPS
4870f78094a5SPyun YongHyeon * counter of BCM5717, BCM5718, BCM5719 A0 and BCM5720 A0
4871f78094a5SPyun YongHyeon * includes number of unwanted multicast frames. This comes
4872f78094a5SPyun YongHyeon * from silicon bug and known workaround to get rough(not
4873f78094a5SPyun YongHyeon * exact) counter is to enable interrupt on MBUF low water
4874f78094a5SPyun YongHyeon * attention. This can be accomplished by setting
4875f78094a5SPyun YongHyeon * BGE_HCCMODE_ATTN bit of BGE_HCC_MODE,
4876f78094a5SPyun YongHyeon * BGE_BMANMODE_LOMBUF_ATTN bit of BGE_BMAN_MODE and
4877f78094a5SPyun YongHyeon * BGE_MODECTL_FLOWCTL_ATTN_INTR bit of BGE_MODE_CTL.
4878f78094a5SPyun YongHyeon * However that change would generate more interrupts and
4879f78094a5SPyun YongHyeon * there are still possibilities of losing multiple frames
4880f78094a5SPyun YongHyeon * during BGE_MODECTL_FLOWCTL_ATTN_INTR interrupt handling.
4881f78094a5SPyun YongHyeon * Given that the workaround still would not get correct
4882f78094a5SPyun YongHyeon * counter I don't think it's worth to implement it. So
4883f78094a5SPyun YongHyeon * ignore reading the counter on controllers that have the
4884f78094a5SPyun YongHyeon * silicon bug.
4885f78094a5SPyun YongHyeon */
4886f78094a5SPyun YongHyeon if (sc->bge_asicrev != BGE_ASICREV_BCM5717 &&
4887f78094a5SPyun YongHyeon sc->bge_chipid != BGE_CHIPID_BCM5719_A0 &&
4888f78094a5SPyun YongHyeon sc->bge_chipid != BGE_CHIPID_BCM5720_A0)
48892280c16bSPyun YongHyeon stats->InputDiscards +=
48902280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RXLP_LOCSTAT_IFIN_DROPS);
48912280c16bSPyun YongHyeon stats->InputErrors +=
48922280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RXLP_LOCSTAT_IFIN_ERRORS);
48932280c16bSPyun YongHyeon stats->RecvThresholdHit +=
48942280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RXLP_LOCSTAT_RXTHRESH_HIT);
48952280c16bSPyun YongHyeon
489629b44b09SPyun YongHyeon if (sc->bge_flags & BGE_FLAG_RDMA_BUG) {
489729b44b09SPyun YongHyeon /*
489829b44b09SPyun YongHyeon * If controller transmitted more than BGE_NUM_RDMA_CHANNELS
489929b44b09SPyun YongHyeon * frames, it's safe to disable workaround for DMA engine's
490029b44b09SPyun YongHyeon * miscalculation of TXMBUF space.
490129b44b09SPyun YongHyeon */
490229b44b09SPyun YongHyeon if (stats->ifHCOutUcastPkts + stats->ifHCOutMulticastPkts +
490329b44b09SPyun YongHyeon stats->ifHCOutBroadcastPkts > BGE_NUM_RDMA_CHANNELS) {
490429b44b09SPyun YongHyeon val = CSR_READ_4(sc, BGE_RDMA_LSO_CRPTEN_CTRL);
490529b44b09SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5719)
490629b44b09SPyun YongHyeon val &= ~BGE_RDMA_TX_LENGTH_WA_5719;
490729b44b09SPyun YongHyeon else
490829b44b09SPyun YongHyeon val &= ~BGE_RDMA_TX_LENGTH_WA_5720;
490929b44b09SPyun YongHyeon CSR_WRITE_4(sc, BGE_RDMA_LSO_CRPTEN_CTRL, val);
491029b44b09SPyun YongHyeon sc->bge_flags &= ~BGE_FLAG_RDMA_BUG;
491129b44b09SPyun YongHyeon }
491229b44b09SPyun YongHyeon }
49132280c16bSPyun YongHyeon }
49142280c16bSPyun YongHyeon
49152280c16bSPyun YongHyeon static void
bge_stats_clear_regs(struct bge_softc * sc)49162280c16bSPyun YongHyeon bge_stats_clear_regs(struct bge_softc *sc)
49172280c16bSPyun YongHyeon {
49182280c16bSPyun YongHyeon
49192280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_OCTETS);
49202280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_COLLS);
49212280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_XON_SENT);
49222280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_XOFF_SENT);
49232280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_ERRORS);
49242280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_SINGLE_COLL);
49252280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_MULTI_COLL);
49262280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_DEFERRED);
49272280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_EXCESS_COLL);
49282280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_LATE_COLL);
49292280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_UCAST);
49302280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_MCAST);
49312280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_TX_MAC_STATS_BCAST);
49322280c16bSPyun YongHyeon
49332280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_OCTESTS);
49342280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_FRAGMENTS);
49352280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_UCAST);
49362280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_MCAST);
49372280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_BCAST);
49382280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_FCS_ERRORS);
49392280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_ALGIN_ERRORS);
49402280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_XON_RCVD);
49412280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_XOFF_RCVD);
49422280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_CTRL_RCVD);
49432280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_XOFF_ENTERED);
49442280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_FRAME_TOO_LONG);
49452280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_JABBERS);
49462280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RX_MAC_STATS_UNDERSIZE);
49472280c16bSPyun YongHyeon
49482280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RXLP_LOCSTAT_FILTDROP);
49492280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RXLP_LOCSTAT_DMA_WRQ_FULL);
49502280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RXLP_LOCSTAT_DMA_HPWRQ_FULL);
49512280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RXLP_LOCSTAT_OUT_OF_BDS);
49522280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RXLP_LOCSTAT_IFIN_DROPS);
49532280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RXLP_LOCSTAT_IFIN_ERRORS);
49542280c16bSPyun YongHyeon CSR_READ_4(sc, BGE_RXLP_LOCSTAT_RXTHRESH_HIT);
49550434d1b8SBill Paul }
49560434d1b8SBill Paul
49570434d1b8SBill Paul static void
bge_stats_update(struct bge_softc * sc)49583f74909aSGleb Smirnoff bge_stats_update(struct bge_softc *sc)
495995d67482SBill Paul {
4960fba8b109SMarcel Moolenaar if_t ifp;
4961e907febfSPyun YongHyeon bus_size_t stats;
49627e6e2507SJung-uk Kim uint32_t cnt; /* current register value */
496395d67482SBill Paul
4964fc74a9f9SBrooks Davis ifp = sc->bge_ifp;
496595d67482SBill Paul
4966e907febfSPyun YongHyeon stats = BGE_MEMWIN_START + BGE_STATS_BLOCK;
4967e907febfSPyun YongHyeon
4968e907febfSPyun YongHyeon #define READ_STAT(sc, stats, stat) \
4969e907febfSPyun YongHyeon CSR_READ_4(sc, stats + offsetof(struct bge_stats, stat))
497095d67482SBill Paul
49718634dfffSJung-uk Kim cnt = READ_STAT(sc, stats, txstats.etherStatsCollisions.bge_addr_lo);
4972df360178SGleb Smirnoff if_inc_counter(ifp, IFCOUNTER_COLLISIONS, cnt - sc->bge_tx_collisions);
49736fb34dd2SOleg Bulyzhin sc->bge_tx_collisions = cnt;
49746fb34dd2SOleg Bulyzhin
497537ee7cc7SPyun YongHyeon cnt = READ_STAT(sc, stats, nicNoMoreRxBDs.bge_addr_lo);
4976df360178SGleb Smirnoff if_inc_counter(ifp, IFCOUNTER_IERRORS, cnt - sc->bge_rx_nobds);
497737ee7cc7SPyun YongHyeon sc->bge_rx_nobds = cnt;
497837ee7cc7SPyun YongHyeon cnt = READ_STAT(sc, stats, ifInErrors.bge_addr_lo);
4979df360178SGleb Smirnoff if_inc_counter(ifp, IFCOUNTER_IERRORS, cnt - sc->bge_rx_inerrs);
498037ee7cc7SPyun YongHyeon sc->bge_rx_inerrs = cnt;
49816fb34dd2SOleg Bulyzhin cnt = READ_STAT(sc, stats, ifInDiscards.bge_addr_lo);
4982df360178SGleb Smirnoff if_inc_counter(ifp, IFCOUNTER_IERRORS, cnt - sc->bge_rx_discards);
49836fb34dd2SOleg Bulyzhin sc->bge_rx_discards = cnt;
49846fb34dd2SOleg Bulyzhin
49856fb34dd2SOleg Bulyzhin cnt = READ_STAT(sc, stats, txstats.ifOutDiscards.bge_addr_lo);
4986df360178SGleb Smirnoff if_inc_counter(ifp, IFCOUNTER_OERRORS, cnt - sc->bge_tx_discards);
49876fb34dd2SOleg Bulyzhin sc->bge_tx_discards = cnt;
498895d67482SBill Paul
4989e907febfSPyun YongHyeon #undef READ_STAT
499095d67482SBill Paul }
499195d67482SBill Paul
499295d67482SBill Paul /*
4993d375e524SGleb Smirnoff * Pad outbound frame to ETHER_MIN_NOPAD for an unusual reason.
4994d375e524SGleb Smirnoff * The bge hardware will pad out Tx runts to ETHER_MIN_NOPAD,
4995d375e524SGleb Smirnoff * but when such padded frames employ the bge IP/TCP checksum offload,
4996d375e524SGleb Smirnoff * the hardware checksum assist gives incorrect results (possibly
4997d375e524SGleb Smirnoff * from incorporating its own padding into the UDP/TCP checksum; who knows).
4998d375e524SGleb Smirnoff * If we pad such runts with zeros, the onboard checksum comes out correct.
4999d375e524SGleb Smirnoff */
5000d375e524SGleb Smirnoff static __inline int
bge_cksum_pad(struct mbuf * m)5001d375e524SGleb Smirnoff bge_cksum_pad(struct mbuf *m)
5002d375e524SGleb Smirnoff {
5003d375e524SGleb Smirnoff int padlen = ETHER_MIN_NOPAD - m->m_pkthdr.len;
5004d375e524SGleb Smirnoff struct mbuf *last;
5005d375e524SGleb Smirnoff
5006d375e524SGleb Smirnoff /* If there's only the packet-header and we can pad there, use it. */
5007d375e524SGleb Smirnoff if (m->m_pkthdr.len == m->m_len && M_WRITABLE(m) &&
5008d375e524SGleb Smirnoff M_TRAILINGSPACE(m) >= padlen) {
5009d375e524SGleb Smirnoff last = m;
5010d375e524SGleb Smirnoff } else {
5011d375e524SGleb Smirnoff /*
5012d375e524SGleb Smirnoff * Walk packet chain to find last mbuf. We will either
5013d375e524SGleb Smirnoff * pad there, or append a new mbuf and pad it.
5014d375e524SGleb Smirnoff */
5015d375e524SGleb Smirnoff for (last = m; last->m_next != NULL; last = last->m_next);
5016d375e524SGleb Smirnoff if (!(M_WRITABLE(last) && M_TRAILINGSPACE(last) >= padlen)) {
5017d375e524SGleb Smirnoff /* Allocate new empty mbuf, pad it. Compact later. */
5018d375e524SGleb Smirnoff struct mbuf *n;
5019d375e524SGleb Smirnoff
5020c6499eccSGleb Smirnoff MGET(n, M_NOWAIT, MT_DATA);
5021d375e524SGleb Smirnoff if (n == NULL)
5022d375e524SGleb Smirnoff return (ENOBUFS);
5023d375e524SGleb Smirnoff n->m_len = 0;
5024d375e524SGleb Smirnoff last->m_next = n;
5025d375e524SGleb Smirnoff last = n;
5026d375e524SGleb Smirnoff }
5027d375e524SGleb Smirnoff }
5028d375e524SGleb Smirnoff
5029d375e524SGleb Smirnoff /* Now zero the pad area, to avoid the bge cksum-assist bug. */
5030d375e524SGleb Smirnoff memset(mtod(last, caddr_t) + last->m_len, 0, padlen);
5031d375e524SGleb Smirnoff last->m_len += padlen;
5032d375e524SGleb Smirnoff m->m_pkthdr.len += padlen;
5033d375e524SGleb Smirnoff
5034d375e524SGleb Smirnoff return (0);
5035d375e524SGleb Smirnoff }
5036d375e524SGleb Smirnoff
5037ca3f1187SPyun YongHyeon static struct mbuf *
bge_check_short_dma(struct mbuf * m)5038d598b626SPyun YongHyeon bge_check_short_dma(struct mbuf *m)
5039d598b626SPyun YongHyeon {
5040d598b626SPyun YongHyeon struct mbuf *n;
5041d598b626SPyun YongHyeon int found;
5042d598b626SPyun YongHyeon
5043d598b626SPyun YongHyeon /*
5044d598b626SPyun YongHyeon * If device receive two back-to-back send BDs with less than
5045d598b626SPyun YongHyeon * or equal to 8 total bytes then the device may hang. The two
5046d598b626SPyun YongHyeon * back-to-back send BDs must in the same frame for this failure
5047d598b626SPyun YongHyeon * to occur. Scan mbuf chains and see whether two back-to-back
5048d598b626SPyun YongHyeon * send BDs are there. If this is the case, allocate new mbuf
5049d598b626SPyun YongHyeon * and copy the frame to workaround the silicon bug.
5050d598b626SPyun YongHyeon */
5051d598b626SPyun YongHyeon for (n = m, found = 0; n != NULL; n = n->m_next) {
5052d598b626SPyun YongHyeon if (n->m_len < 8) {
5053d598b626SPyun YongHyeon found++;
5054d598b626SPyun YongHyeon if (found > 1)
5055d598b626SPyun YongHyeon break;
5056d598b626SPyun YongHyeon continue;
5057d598b626SPyun YongHyeon }
5058d598b626SPyun YongHyeon found = 0;
5059d598b626SPyun YongHyeon }
5060d598b626SPyun YongHyeon
5061d598b626SPyun YongHyeon if (found > 1) {
5062c6499eccSGleb Smirnoff n = m_defrag(m, M_NOWAIT);
5063d598b626SPyun YongHyeon if (n == NULL)
5064d598b626SPyun YongHyeon m_freem(m);
5065d598b626SPyun YongHyeon } else
5066d598b626SPyun YongHyeon n = m;
5067d598b626SPyun YongHyeon return (n);
5068d598b626SPyun YongHyeon }
5069d598b626SPyun YongHyeon
5070d598b626SPyun YongHyeon static struct mbuf *
bge_setup_tso(struct bge_softc * sc,struct mbuf * m,uint16_t * mss,uint16_t * flags)50711108273aSPyun YongHyeon bge_setup_tso(struct bge_softc *sc, struct mbuf *m, uint16_t *mss,
50721108273aSPyun YongHyeon uint16_t *flags)
5073ca3f1187SPyun YongHyeon {
5074ca3f1187SPyun YongHyeon struct ip *ip;
5075ca3f1187SPyun YongHyeon struct tcphdr *tcp;
5076ca3f1187SPyun YongHyeon struct mbuf *n;
5077ca3f1187SPyun YongHyeon uint16_t hlen;
50785b355c4fSPyun YongHyeon uint32_t poff;
5079ca3f1187SPyun YongHyeon
5080ca3f1187SPyun YongHyeon if (M_WRITABLE(m) == 0) {
5081ca3f1187SPyun YongHyeon /* Get a writable copy. */
5082c6499eccSGleb Smirnoff n = m_dup(m, M_NOWAIT);
5083ca3f1187SPyun YongHyeon m_freem(m);
5084ca3f1187SPyun YongHyeon if (n == NULL)
5085ca3f1187SPyun YongHyeon return (NULL);
5086ca3f1187SPyun YongHyeon m = n;
5087ca3f1187SPyun YongHyeon }
50885b355c4fSPyun YongHyeon m = m_pullup(m, sizeof(struct ether_header) + sizeof(struct ip));
5089ca3f1187SPyun YongHyeon if (m == NULL)
5090ca3f1187SPyun YongHyeon return (NULL);
50915b355c4fSPyun YongHyeon ip = (struct ip *)(mtod(m, char *) + sizeof(struct ether_header));
50925b355c4fSPyun YongHyeon poff = sizeof(struct ether_header) + (ip->ip_hl << 2);
5093ca3f1187SPyun YongHyeon m = m_pullup(m, poff + sizeof(struct tcphdr));
5094ca3f1187SPyun YongHyeon if (m == NULL)
5095ca3f1187SPyun YongHyeon return (NULL);
5096ca3f1187SPyun YongHyeon tcp = (struct tcphdr *)(mtod(m, char *) + poff);
50975b355c4fSPyun YongHyeon m = m_pullup(m, poff + (tcp->th_off << 2));
5098ca3f1187SPyun YongHyeon if (m == NULL)
5099ca3f1187SPyun YongHyeon return (NULL);
5100ca3f1187SPyun YongHyeon /*
5101ca3f1187SPyun YongHyeon * It seems controller doesn't modify IP length and TCP pseudo
5102ca3f1187SPyun YongHyeon * checksum. These checksum computed by upper stack should be 0.
5103ca3f1187SPyun YongHyeon */
5104ca3f1187SPyun YongHyeon *mss = m->m_pkthdr.tso_segsz;
510596486faaSPyun YongHyeon ip = (struct ip *)(mtod(m, char *) + sizeof(struct ether_header));
5106ca3f1187SPyun YongHyeon ip->ip_sum = 0;
5107ca3f1187SPyun YongHyeon ip->ip_len = htons(*mss + (ip->ip_hl << 2) + (tcp->th_off << 2));
5108ca3f1187SPyun YongHyeon /* Clear pseudo checksum computed by TCP stack. */
510996486faaSPyun YongHyeon tcp = (struct tcphdr *)(mtod(m, char *) + poff);
5110ca3f1187SPyun YongHyeon tcp->th_sum = 0;
5111ca3f1187SPyun YongHyeon /*
5112ca3f1187SPyun YongHyeon * Broadcom controllers uses different descriptor format for
5113ca3f1187SPyun YongHyeon * TSO depending on ASIC revision. Due to TSO-capable firmware
5114ca3f1187SPyun YongHyeon * license issue and lower performance of firmware based TSO
51151108273aSPyun YongHyeon * we only support hardware based TSO.
5116ca3f1187SPyun YongHyeon */
51171108273aSPyun YongHyeon /* Calculate header length, incl. TCP/IP options, in 32 bit units. */
5118ca3f1187SPyun YongHyeon hlen = ((ip->ip_hl << 2) + (tcp->th_off << 2)) >> 2;
51191108273aSPyun YongHyeon if (sc->bge_flags & BGE_FLAG_TSO3) {
51201108273aSPyun YongHyeon /*
51211108273aSPyun YongHyeon * For BCM5717 and newer controllers, hardware based TSO
51221108273aSPyun YongHyeon * uses the 14 lower bits of the bge_mss field to store the
51231108273aSPyun YongHyeon * MSS and the upper 2 bits to store the lowest 2 bits of
51241108273aSPyun YongHyeon * the IP/TCP header length. The upper 6 bits of the header
51251108273aSPyun YongHyeon * length are stored in the bge_flags[14:10,4] field. Jumbo
51261108273aSPyun YongHyeon * frames are supported.
51271108273aSPyun YongHyeon */
51281108273aSPyun YongHyeon *mss |= ((hlen & 0x3) << 14);
51291108273aSPyun YongHyeon *flags |= ((hlen & 0xF8) << 7) | ((hlen & 0x4) << 2);
51301108273aSPyun YongHyeon } else {
51311108273aSPyun YongHyeon /*
51321108273aSPyun YongHyeon * For BCM5755 and newer controllers, hardware based TSO uses
51331108273aSPyun YongHyeon * the lower 11 bits to store the MSS and the upper 5 bits to
51341108273aSPyun YongHyeon * store the IP/TCP header length. Jumbo frames are not
51351108273aSPyun YongHyeon * supported.
51361108273aSPyun YongHyeon */
5137ca3f1187SPyun YongHyeon *mss |= (hlen << 11);
51381108273aSPyun YongHyeon }
5139ca3f1187SPyun YongHyeon return (m);
5140ca3f1187SPyun YongHyeon }
5141ca3f1187SPyun YongHyeon
5142d375e524SGleb Smirnoff /*
514395d67482SBill Paul * Encapsulate an mbuf chain in the tx ring by coupling the mbuf data
514495d67482SBill Paul * pointers to descriptors.
514595d67482SBill Paul */
514695d67482SBill Paul static int
bge_encap(struct bge_softc * sc,struct mbuf ** m_head,uint32_t * txidx)5147676ad2c9SGleb Smirnoff bge_encap(struct bge_softc *sc, struct mbuf **m_head, uint32_t *txidx)
514895d67482SBill Paul {
51497e27542aSGleb Smirnoff bus_dma_segment_t segs[BGE_NSEG_NEW];
5150f41ac2beSBill Paul bus_dmamap_t map;
5151676ad2c9SGleb Smirnoff struct bge_tx_bd *d;
5152676ad2c9SGleb Smirnoff struct mbuf *m = *m_head;
51537e27542aSGleb Smirnoff uint32_t idx = *txidx;
5154ca3f1187SPyun YongHyeon uint16_t csum_flags, mss, vlan_tag;
51557e27542aSGleb Smirnoff int nsegs, i, error;
515695d67482SBill Paul
51576909dc43SGleb Smirnoff csum_flags = 0;
5158ca3f1187SPyun YongHyeon mss = 0;
5159ca3f1187SPyun YongHyeon vlan_tag = 0;
5160d598b626SPyun YongHyeon if ((sc->bge_flags & BGE_FLAG_SHORT_DMA_BUG) != 0 &&
5161d598b626SPyun YongHyeon m->m_next != NULL) {
5162d598b626SPyun YongHyeon *m_head = bge_check_short_dma(m);
5163d598b626SPyun YongHyeon if (*m_head == NULL)
5164d598b626SPyun YongHyeon return (ENOBUFS);
5165d598b626SPyun YongHyeon m = *m_head;
5166d598b626SPyun YongHyeon }
5167ca3f1187SPyun YongHyeon if ((m->m_pkthdr.csum_flags & CSUM_TSO) != 0) {
51681108273aSPyun YongHyeon *m_head = m = bge_setup_tso(sc, m, &mss, &csum_flags);
5169ca3f1187SPyun YongHyeon if (*m_head == NULL)
5170ca3f1187SPyun YongHyeon return (ENOBUFS);
5171ca3f1187SPyun YongHyeon csum_flags |= BGE_TXBDFLAG_CPU_PRE_DMA |
5172ca3f1187SPyun YongHyeon BGE_TXBDFLAG_CPU_POST_DMA;
517335f945cdSPyun YongHyeon } else if ((m->m_pkthdr.csum_flags & sc->bge_csum_features) != 0) {
51746909dc43SGleb Smirnoff if (m->m_pkthdr.csum_flags & CSUM_IP)
51756909dc43SGleb Smirnoff csum_flags |= BGE_TXBDFLAG_IP_CSUM;
51766909dc43SGleb Smirnoff if (m->m_pkthdr.csum_flags & (CSUM_TCP | CSUM_UDP)) {
51776909dc43SGleb Smirnoff csum_flags |= BGE_TXBDFLAG_TCP_UDP_CSUM;
51786909dc43SGleb Smirnoff if (m->m_pkthdr.len < ETHER_MIN_NOPAD &&
51796909dc43SGleb Smirnoff (error = bge_cksum_pad(m)) != 0) {
51806909dc43SGleb Smirnoff m_freem(m);
51816909dc43SGleb Smirnoff *m_head = NULL;
51826909dc43SGleb Smirnoff return (error);
51836909dc43SGleb Smirnoff }
51846909dc43SGleb Smirnoff }
51856909dc43SGleb Smirnoff }
51866909dc43SGleb Smirnoff
51871108273aSPyun YongHyeon if ((m->m_pkthdr.csum_flags & CSUM_TSO) == 0) {
51881108273aSPyun YongHyeon if (sc->bge_flags & BGE_FLAG_JUMBO_FRAME &&
51891108273aSPyun YongHyeon m->m_pkthdr.len > ETHER_MAX_LEN)
51901108273aSPyun YongHyeon csum_flags |= BGE_TXBDFLAG_JUMBO_FRAME;
51911108273aSPyun YongHyeon if (sc->bge_forced_collapse > 0 &&
5192beaa2ae1SPyun YongHyeon (sc->bge_flags & BGE_FLAG_PCIE) != 0 && m->m_next != NULL) {
5193d94f2b85SPyun YongHyeon /*
5194d94f2b85SPyun YongHyeon * Forcedly collapse mbuf chains to overcome hardware
5195d94f2b85SPyun YongHyeon * limitation which only support a single outstanding
5196d94f2b85SPyun YongHyeon * DMA read operation.
5197d94f2b85SPyun YongHyeon */
5198beaa2ae1SPyun YongHyeon if (sc->bge_forced_collapse == 1)
5199c6499eccSGleb Smirnoff m = m_defrag(m, M_NOWAIT);
5200d94f2b85SPyun YongHyeon else
5201c6499eccSGleb Smirnoff m = m_collapse(m, M_NOWAIT,
52021108273aSPyun YongHyeon sc->bge_forced_collapse);
5203261f04d6SPyun YongHyeon if (m == NULL)
5204261f04d6SPyun YongHyeon m = *m_head;
5205d94f2b85SPyun YongHyeon *m_head = m;
5206d94f2b85SPyun YongHyeon }
52071108273aSPyun YongHyeon }
5208d94f2b85SPyun YongHyeon
52097e27542aSGleb Smirnoff map = sc->bge_cdata.bge_tx_dmamap[idx];
52100ac56796SPyun YongHyeon error = bus_dmamap_load_mbuf_sg(sc->bge_cdata.bge_tx_mtag, map, m, segs,
5211676ad2c9SGleb Smirnoff &nsegs, BUS_DMA_NOWAIT);
52127e27542aSGleb Smirnoff if (error == EFBIG) {
5213c6499eccSGleb Smirnoff m = m_collapse(m, M_NOWAIT, BGE_NSEG_NEW);
5214676ad2c9SGleb Smirnoff if (m == NULL) {
5215676ad2c9SGleb Smirnoff m_freem(*m_head);
5216676ad2c9SGleb Smirnoff *m_head = NULL;
52177e27542aSGleb Smirnoff return (ENOBUFS);
52187e27542aSGleb Smirnoff }
5219676ad2c9SGleb Smirnoff *m_head = m;
52200ac56796SPyun YongHyeon error = bus_dmamap_load_mbuf_sg(sc->bge_cdata.bge_tx_mtag, map,
52210ac56796SPyun YongHyeon m, segs, &nsegs, BUS_DMA_NOWAIT);
5222676ad2c9SGleb Smirnoff if (error) {
5223676ad2c9SGleb Smirnoff m_freem(m);
5224676ad2c9SGleb Smirnoff *m_head = NULL;
52257e27542aSGleb Smirnoff return (error);
52267e27542aSGleb Smirnoff }
5227676ad2c9SGleb Smirnoff } else if (error != 0)
5228676ad2c9SGleb Smirnoff return (error);
52297e27542aSGleb Smirnoff
5230167fdb62SPyun YongHyeon /* Check if we have enough free send BDs. */
5231167fdb62SPyun YongHyeon if (sc->bge_txcnt + nsegs >= BGE_TX_RING_CNT) {
52320ac56796SPyun YongHyeon bus_dmamap_unload(sc->bge_cdata.bge_tx_mtag, map);
523395d67482SBill Paul return (ENOBUFS);
52347e27542aSGleb Smirnoff }
52357e27542aSGleb Smirnoff
52360ac56796SPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_tx_mtag, map, BUS_DMASYNC_PREWRITE);
5237e65bed95SPyun YongHyeon
5238ca3f1187SPyun YongHyeon if (m->m_flags & M_VLANTAG) {
5239ca3f1187SPyun YongHyeon csum_flags |= BGE_TXBDFLAG_VLAN_TAG;
5240ca3f1187SPyun YongHyeon vlan_tag = m->m_pkthdr.ether_vtag;
5241ca3f1187SPyun YongHyeon }
5242b77d3a3bSPyun YongHyeon
5243b77d3a3bSPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5762 &&
5244b77d3a3bSPyun YongHyeon (m->m_pkthdr.csum_flags & CSUM_TSO) != 0) {
5245b77d3a3bSPyun YongHyeon /*
5246b77d3a3bSPyun YongHyeon * 5725 family of devices corrupts TSO packets when TSO DMA
5247b77d3a3bSPyun YongHyeon * buffers cross into regions which are within MSS bytes of
5248b77d3a3bSPyun YongHyeon * a 4GB boundary. If we encounter the condition, drop the
5249b77d3a3bSPyun YongHyeon * packet.
5250b77d3a3bSPyun YongHyeon */
5251b77d3a3bSPyun YongHyeon for (i = 0; ; i++) {
5252b77d3a3bSPyun YongHyeon d = &sc->bge_ldata.bge_tx_ring[idx];
5253b77d3a3bSPyun YongHyeon d->bge_addr.bge_addr_lo = BGE_ADDR_LO(segs[i].ds_addr);
5254b77d3a3bSPyun YongHyeon d->bge_addr.bge_addr_hi = BGE_ADDR_HI(segs[i].ds_addr);
5255b77d3a3bSPyun YongHyeon d->bge_len = segs[i].ds_len;
5256b77d3a3bSPyun YongHyeon if (d->bge_addr.bge_addr_lo + segs[i].ds_len + mss <
5257b77d3a3bSPyun YongHyeon d->bge_addr.bge_addr_lo)
5258b77d3a3bSPyun YongHyeon break;
5259b77d3a3bSPyun YongHyeon d->bge_flags = csum_flags;
5260b77d3a3bSPyun YongHyeon d->bge_vlan_tag = vlan_tag;
5261b77d3a3bSPyun YongHyeon d->bge_mss = mss;
5262b77d3a3bSPyun YongHyeon if (i == nsegs - 1)
5263b77d3a3bSPyun YongHyeon break;
5264b77d3a3bSPyun YongHyeon BGE_INC(idx, BGE_TX_RING_CNT);
5265b77d3a3bSPyun YongHyeon }
5266b77d3a3bSPyun YongHyeon if (i != nsegs - 1) {
5267b77d3a3bSPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_tx_mtag, map,
5268b77d3a3bSPyun YongHyeon BUS_DMASYNC_POSTWRITE);
5269b77d3a3bSPyun YongHyeon bus_dmamap_unload(sc->bge_cdata.bge_tx_mtag, map);
5270b77d3a3bSPyun YongHyeon m_freem(*m_head);
5271b77d3a3bSPyun YongHyeon *m_head = NULL;
5272b77d3a3bSPyun YongHyeon return (EIO);
5273b77d3a3bSPyun YongHyeon }
5274b77d3a3bSPyun YongHyeon } else {
52757e27542aSGleb Smirnoff for (i = 0; ; i++) {
52767e27542aSGleb Smirnoff d = &sc->bge_ldata.bge_tx_ring[idx];
52777e27542aSGleb Smirnoff d->bge_addr.bge_addr_lo = BGE_ADDR_LO(segs[i].ds_addr);
52787e27542aSGleb Smirnoff d->bge_addr.bge_addr_hi = BGE_ADDR_HI(segs[i].ds_addr);
52797e27542aSGleb Smirnoff d->bge_len = segs[i].ds_len;
52807e27542aSGleb Smirnoff d->bge_flags = csum_flags;
5281ca3f1187SPyun YongHyeon d->bge_vlan_tag = vlan_tag;
5282ca3f1187SPyun YongHyeon d->bge_mss = mss;
52837e27542aSGleb Smirnoff if (i == nsegs - 1)
52847e27542aSGleb Smirnoff break;
52857e27542aSGleb Smirnoff BGE_INC(idx, BGE_TX_RING_CNT);
52867e27542aSGleb Smirnoff }
5287b77d3a3bSPyun YongHyeon }
52887e27542aSGleb Smirnoff
52897e27542aSGleb Smirnoff /* Mark the last segment as end of packet... */
52907e27542aSGleb Smirnoff d->bge_flags |= BGE_TXBDFLAG_END;
5291676ad2c9SGleb Smirnoff
5292f41ac2beSBill Paul /*
5293f41ac2beSBill Paul * Insure that the map for this transmission
5294f41ac2beSBill Paul * is placed at the array index of the last descriptor
5295f41ac2beSBill Paul * in this chain.
5296f41ac2beSBill Paul */
52977e27542aSGleb Smirnoff sc->bge_cdata.bge_tx_dmamap[*txidx] = sc->bge_cdata.bge_tx_dmamap[idx];
52987e27542aSGleb Smirnoff sc->bge_cdata.bge_tx_dmamap[idx] = map;
5299676ad2c9SGleb Smirnoff sc->bge_cdata.bge_tx_chain[idx] = m;
53007e27542aSGleb Smirnoff sc->bge_txcnt += nsegs;
530195d67482SBill Paul
53027e27542aSGleb Smirnoff BGE_INC(idx, BGE_TX_RING_CNT);
53037e27542aSGleb Smirnoff *txidx = idx;
530495d67482SBill Paul
530595d67482SBill Paul return (0);
530695d67482SBill Paul }
530795d67482SBill Paul
530895d67482SBill Paul /*
530995d67482SBill Paul * Main transmit routine. To avoid having to do mbuf copies, we put pointers
531095d67482SBill Paul * to the mbuf data regions directly in the transmit descriptors.
531195d67482SBill Paul */
531295d67482SBill Paul static void
bge_start_locked(if_t ifp)5313fba8b109SMarcel Moolenaar bge_start_locked(if_t ifp)
531495d67482SBill Paul {
531595d67482SBill Paul struct bge_softc *sc;
5316167fdb62SPyun YongHyeon struct mbuf *m_head;
531714bbd30fSGleb Smirnoff uint32_t prodidx;
5318167fdb62SPyun YongHyeon int count;
531995d67482SBill Paul
5320fba8b109SMarcel Moolenaar sc = if_getsoftc(ifp);
5321167fdb62SPyun YongHyeon BGE_LOCK_ASSERT(sc);
532295d67482SBill Paul
5323167fdb62SPyun YongHyeon if (!sc->bge_link ||
5324fba8b109SMarcel Moolenaar (if_getdrvflags(ifp) & (IFF_DRV_RUNNING | IFF_DRV_OACTIVE)) !=
5325167fdb62SPyun YongHyeon IFF_DRV_RUNNING)
532695d67482SBill Paul return;
532795d67482SBill Paul
532814bbd30fSGleb Smirnoff prodidx = sc->bge_tx_prodidx;
532995d67482SBill Paul
5330fba8b109SMarcel Moolenaar for (count = 0; !if_sendq_empty(ifp);) {
5331167fdb62SPyun YongHyeon if (sc->bge_txcnt > BGE_TX_RING_CNT - 16) {
5332fba8b109SMarcel Moolenaar if_setdrvflagbits(ifp, IFF_DRV_OACTIVE, 0);
5333167fdb62SPyun YongHyeon break;
5334167fdb62SPyun YongHyeon }
5335fba8b109SMarcel Moolenaar m_head = if_dequeue(ifp);
533695d67482SBill Paul if (m_head == NULL)
533795d67482SBill Paul break;
533895d67482SBill Paul
533995d67482SBill Paul /*
534095d67482SBill Paul * Pack the data into the transmit ring. If we
534195d67482SBill Paul * don't have room, set the OACTIVE flag and wait
534295d67482SBill Paul * for the NIC to drain the ring.
534395d67482SBill Paul */
5344676ad2c9SGleb Smirnoff if (bge_encap(sc, &m_head, &prodidx)) {
5345676ad2c9SGleb Smirnoff if (m_head == NULL)
5346676ad2c9SGleb Smirnoff break;
5347fba8b109SMarcel Moolenaar if_sendq_prepend(ifp, m_head);
5348fba8b109SMarcel Moolenaar if_setdrvflagbits(ifp, IFF_DRV_OACTIVE, 0);
534995d67482SBill Paul break;
535095d67482SBill Paul }
5351303a718cSDag-Erling Smørgrav ++count;
535295d67482SBill Paul
535395d67482SBill Paul /*
535495d67482SBill Paul * If there's a BPF listener, bounce a copy of this frame
535595d67482SBill Paul * to him.
535695d67482SBill Paul */
53572a371643SJustin Hibbits bpf_mtap_if(ifp, m_head);
535895d67482SBill Paul }
535995d67482SBill Paul
5360ded66962SMark Johnston if (count > 0)
5361ded66962SMark Johnston bge_start_tx(sc, prodidx);
5362ded66962SMark Johnston }
5363ded66962SMark Johnston
5364ded66962SMark Johnston static void
bge_start_tx(struct bge_softc * sc,uint32_t prodidx)5365ded66962SMark Johnston bge_start_tx(struct bge_softc *sc, uint32_t prodidx)
5366ded66962SMark Johnston {
5367ded66962SMark Johnston
5368aa94f333SPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_tx_ring_tag,
53695c1da2faSPyun YongHyeon sc->bge_cdata.bge_tx_ring_map, BUS_DMASYNC_PREWRITE);
53703f74909aSGleb Smirnoff /* Transmit. */
537138cc658fSJohn Baldwin bge_writembx(sc, BGE_MBX_TX_HOST_PROD0_LO, prodidx);
53723927098fSPaul Saab /* 5700 b2 errata */
5373e0ced696SPaul Saab if (sc->bge_chiprev == BGE_CHIPREV_5700_BX)
537438cc658fSJohn Baldwin bge_writembx(sc, BGE_MBX_TX_HOST_PROD0_LO, prodidx);
537595d67482SBill Paul
537614bbd30fSGleb Smirnoff sc->bge_tx_prodidx = prodidx;
537714bbd30fSGleb Smirnoff
5378ded66962SMark Johnston /* Set a timeout in case the chip goes out to lunch. */
5379b584d2b3SPyun YongHyeon sc->bge_timer = BGE_TX_TIMEOUT;
538095d67482SBill Paul }
538195d67482SBill Paul
53820f9bd73bSSam Leffler /*
53830f9bd73bSSam Leffler * Main transmit routine. To avoid having to do mbuf copies, we put pointers
53840f9bd73bSSam Leffler * to the mbuf data regions directly in the transmit descriptors.
53850f9bd73bSSam Leffler */
538695d67482SBill Paul static void
bge_start(if_t ifp)5387fba8b109SMarcel Moolenaar bge_start(if_t ifp)
538895d67482SBill Paul {
53890f9bd73bSSam Leffler struct bge_softc *sc;
53900f9bd73bSSam Leffler
5391fba8b109SMarcel Moolenaar sc = if_getsoftc(ifp);
53920f9bd73bSSam Leffler BGE_LOCK(sc);
53930f9bd73bSSam Leffler bge_start_locked(ifp);
53940f9bd73bSSam Leffler BGE_UNLOCK(sc);
53950f9bd73bSSam Leffler }
53960f9bd73bSSam Leffler
53970f9bd73bSSam Leffler static void
bge_init_locked(struct bge_softc * sc)53983f74909aSGleb Smirnoff bge_init_locked(struct bge_softc *sc)
53990f9bd73bSSam Leffler {
5400fba8b109SMarcel Moolenaar if_t ifp;
54013f74909aSGleb Smirnoff uint16_t *m;
5402f6a65488SPyun YongHyeon uint32_t mode;
540395d67482SBill Paul
54040f9bd73bSSam Leffler BGE_LOCK_ASSERT(sc);
540595d67482SBill Paul
5406fc74a9f9SBrooks Davis ifp = sc->bge_ifp;
540795d67482SBill Paul
5408fba8b109SMarcel Moolenaar if (if_getdrvflags(ifp) & IFF_DRV_RUNNING)
540995d67482SBill Paul return;
541095d67482SBill Paul
541195d67482SBill Paul /* Cancel pending I/O and flush buffers. */
541295d67482SBill Paul bge_stop(sc);
54138cb1383cSDoug Ambrisko
54148cb1383cSDoug Ambrisko bge_stop_fw(sc);
54158cb1383cSDoug Ambrisko bge_sig_pre_reset(sc, BGE_RESET_START);
541695d67482SBill Paul bge_reset(sc);
54178cb1383cSDoug Ambrisko bge_sig_legacy(sc, BGE_RESET_START);
54188cb1383cSDoug Ambrisko bge_sig_post_reset(sc, BGE_RESET_START);
54198cb1383cSDoug Ambrisko
542095d67482SBill Paul bge_chipinit(sc);
542195d67482SBill Paul
542295d67482SBill Paul /*
542395d67482SBill Paul * Init the various state machines, ring
542495d67482SBill Paul * control blocks and firmware.
542595d67482SBill Paul */
542695d67482SBill Paul if (bge_blockinit(sc)) {
5427fe806fdaSPyun YongHyeon device_printf(sc->bge_dev, "initialization failure\n");
542895d67482SBill Paul return;
542995d67482SBill Paul }
543095d67482SBill Paul
5431fc74a9f9SBrooks Davis ifp = sc->bge_ifp;
543295d67482SBill Paul
543395d67482SBill Paul /* Specify MTU. */
5434fba8b109SMarcel Moolenaar CSR_WRITE_4(sc, BGE_RX_MTU, if_getmtu(ifp) +
5435cb2eacc7SYaroslav Tykhiy ETHER_HDR_LEN + ETHER_CRC_LEN +
5436fba8b109SMarcel Moolenaar (if_getcapenable(ifp) & IFCAP_VLAN_MTU ? ETHER_VLAN_ENCAP_LEN : 0));
543795d67482SBill Paul
543895d67482SBill Paul /* Load our MAC address. */
5439087f0d35SJustin Hibbits m = (uint16_t *)if_getlladdr(sc->bge_ifp);
544095d67482SBill Paul CSR_WRITE_4(sc, BGE_MAC_ADDR1_LO, htons(m[0]));
544195d67482SBill Paul CSR_WRITE_4(sc, BGE_MAC_ADDR1_HI, (htons(m[1]) << 16) | htons(m[2]));
544295d67482SBill Paul
54433e9b1bcaSJung-uk Kim /* Program promiscuous mode. */
54443e9b1bcaSJung-uk Kim bge_setpromisc(sc);
544595d67482SBill Paul
544695d67482SBill Paul /* Program multicast filter. */
544795d67482SBill Paul bge_setmulti(sc);
544895d67482SBill Paul
5449cb2eacc7SYaroslav Tykhiy /* Program VLAN tag stripping. */
5450cb2eacc7SYaroslav Tykhiy bge_setvlan(sc);
5451cb2eacc7SYaroslav Tykhiy
545235f945cdSPyun YongHyeon /* Override UDP checksum offloading. */
545335f945cdSPyun YongHyeon if (sc->bge_forced_udpcsum == 0)
545435f945cdSPyun YongHyeon sc->bge_csum_features &= ~CSUM_UDP;
545535f945cdSPyun YongHyeon else
545635f945cdSPyun YongHyeon sc->bge_csum_features |= CSUM_UDP;
5457fba8b109SMarcel Moolenaar if (if_getcapabilities(ifp) & IFCAP_TXCSUM &&
5458fba8b109SMarcel Moolenaar if_getcapenable(ifp) & IFCAP_TXCSUM) {
5459fba8b109SMarcel Moolenaar if_sethwassistbits(ifp, 0, (BGE_CSUM_FEATURES | CSUM_UDP));
5460fba8b109SMarcel Moolenaar if_sethwassistbits(ifp, sc->bge_csum_features, 0);
546135f945cdSPyun YongHyeon }
546235f945cdSPyun YongHyeon
546395d67482SBill Paul /* Init RX ring. */
54643ee5d7daSPyun YongHyeon if (bge_init_rx_ring_std(sc) != 0) {
54653ee5d7daSPyun YongHyeon device_printf(sc->bge_dev, "no memory for std Rx buffers.\n");
54663ee5d7daSPyun YongHyeon bge_stop(sc);
54673ee5d7daSPyun YongHyeon return;
54683ee5d7daSPyun YongHyeon }
546995d67482SBill Paul
54700434d1b8SBill Paul /*
54710434d1b8SBill Paul * Workaround for a bug in 5705 ASIC rev A0. Poll the NIC's
54720434d1b8SBill Paul * memory to insure that the chip has in fact read the first
54730434d1b8SBill Paul * entry of the ring.
54740434d1b8SBill Paul */
54750434d1b8SBill Paul if (sc->bge_chipid == BGE_CHIPID_BCM5705_A0) {
54763f74909aSGleb Smirnoff uint32_t v, i;
54770434d1b8SBill Paul for (i = 0; i < 10; i++) {
54780434d1b8SBill Paul DELAY(20);
54790434d1b8SBill Paul v = bge_readmem_ind(sc, BGE_STD_RX_RINGS + 8);
54800434d1b8SBill Paul if (v == (MCLBYTES - ETHER_ALIGN))
54810434d1b8SBill Paul break;
54820434d1b8SBill Paul }
54830434d1b8SBill Paul if (i == 10)
5484fe806fdaSPyun YongHyeon device_printf (sc->bge_dev,
5485fe806fdaSPyun YongHyeon "5705 A0 chip failed to load RX ring\n");
54860434d1b8SBill Paul }
54870434d1b8SBill Paul
548895d67482SBill Paul /* Init jumbo RX ring. */
5489f5459d4cSPyun YongHyeon if (BGE_IS_JUMBO_CAPABLE(sc) &&
5490fba8b109SMarcel Moolenaar if_getmtu(ifp) + ETHER_HDR_LEN + ETHER_CRC_LEN +
5491fba8b109SMarcel Moolenaar ETHER_VLAN_ENCAP_LEN > (MCLBYTES - ETHER_ALIGN)) {
54923ee5d7daSPyun YongHyeon if (bge_init_rx_ring_jumbo(sc) != 0) {
5493333704a3SPyun YongHyeon device_printf(sc->bge_dev,
5494b65256d7SPyun YongHyeon "no memory for jumbo Rx buffers.\n");
54953ee5d7daSPyun YongHyeon bge_stop(sc);
54963ee5d7daSPyun YongHyeon return;
54973ee5d7daSPyun YongHyeon }
54983ee5d7daSPyun YongHyeon }
549995d67482SBill Paul
55003f74909aSGleb Smirnoff /* Init our RX return ring index. */
550195d67482SBill Paul sc->bge_rx_saved_considx = 0;
550295d67482SBill Paul
55037e6e2507SJung-uk Kim /* Init our RX/TX stat counters. */
55047e6e2507SJung-uk Kim sc->bge_rx_discards = sc->bge_tx_discards = sc->bge_tx_collisions = 0;
55057e6e2507SJung-uk Kim
550695d67482SBill Paul /* Init TX ring. */
550795d67482SBill Paul bge_init_tx_ring(sc);
550895d67482SBill Paul
5509f6a65488SPyun YongHyeon /* Enable TX MAC state machine lockup fix. */
5510f6a65488SPyun YongHyeon mode = CSR_READ_4(sc, BGE_TX_MODE);
5511f6a65488SPyun YongHyeon if (BGE_IS_5755_PLUS(sc) || sc->bge_asicrev == BGE_ASICREV_BCM5906)
5512f6a65488SPyun YongHyeon mode |= BGE_TXMODE_MBUF_LOCKUP_FIX;
55132927f01fSPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5720 ||
55142927f01fSPyun YongHyeon sc->bge_asicrev == BGE_ASICREV_BCM5762) {
551550515680SPyun YongHyeon mode &= ~(BGE_TXMODE_JMB_FRM_LEN | BGE_TXMODE_CNT_DN_MODE);
551650515680SPyun YongHyeon mode |= CSR_READ_4(sc, BGE_TX_MODE) &
551750515680SPyun YongHyeon (BGE_TXMODE_JMB_FRM_LEN | BGE_TXMODE_CNT_DN_MODE);
551850515680SPyun YongHyeon }
55193f74909aSGleb Smirnoff /* Turn on transmitter. */
5520f6a65488SPyun YongHyeon CSR_WRITE_4(sc, BGE_TX_MODE, mode | BGE_TXMODE_ENABLE);
5521a6e66cd2SPyun YongHyeon DELAY(100);
552295d67482SBill Paul
55233f74909aSGleb Smirnoff /* Turn on receiver. */
5524548c8f1aSPyun YongHyeon mode = CSR_READ_4(sc, BGE_RX_MODE);
5525548c8f1aSPyun YongHyeon if (BGE_IS_5755_PLUS(sc))
5526548c8f1aSPyun YongHyeon mode |= BGE_RXMODE_IPV6_ENABLE;
552769b1f509SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5762)
552869b1f509SPyun YongHyeon mode |= BGE_RXMODE_IPV4_FRAG_FIX;
5529548c8f1aSPyun YongHyeon CSR_WRITE_4(sc,BGE_RX_MODE, mode | BGE_RXMODE_ENABLE);
5530a6e66cd2SPyun YongHyeon DELAY(10);
553195d67482SBill Paul
5532dedcdf57SPyun YongHyeon /*
5533dedcdf57SPyun YongHyeon * Set the number of good frames to receive after RX MBUF
5534dedcdf57SPyun YongHyeon * Low Watermark has been reached. After the RX MAC receives
5535dedcdf57SPyun YongHyeon * this number of frames, it will drop subsequent incoming
5536dedcdf57SPyun YongHyeon * frames until the MBUF High Watermark is reached.
5537dedcdf57SPyun YongHyeon */
55383fc5fbfbSPyun YongHyeon if (BGE_IS_57765_PLUS(sc))
5539b4a256acSPyun YongHyeon CSR_WRITE_4(sc, BGE_MAX_RX_FRAME_LOWAT, 1);
5540b4a256acSPyun YongHyeon else
5541dedcdf57SPyun YongHyeon CSR_WRITE_4(sc, BGE_MAX_RX_FRAME_LOWAT, 2);
5542dedcdf57SPyun YongHyeon
55432280c16bSPyun YongHyeon /* Clear MAC statistics. */
55442280c16bSPyun YongHyeon if (BGE_IS_5705_PLUS(sc))
55452280c16bSPyun YongHyeon bge_stats_clear_regs(sc);
55462280c16bSPyun YongHyeon
554795d67482SBill Paul /* Tell firmware we're alive. */
554895d67482SBill Paul BGE_SETBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
554995d67482SBill Paul
555075719184SGleb Smirnoff #ifdef DEVICE_POLLING
555175719184SGleb Smirnoff /* Disable interrupts if we are polling. */
5552fba8b109SMarcel Moolenaar if (if_getcapenable(ifp) & IFCAP_POLLING) {
555375719184SGleb Smirnoff BGE_SETBIT(sc, BGE_PCI_MISC_CTL,
555475719184SGleb Smirnoff BGE_PCIMISCCTL_MASK_PCI_INTR);
555538cc658fSJohn Baldwin bge_writembx(sc, BGE_MBX_IRQ0_LO, 1);
555675719184SGleb Smirnoff } else
555775719184SGleb Smirnoff #endif
555875719184SGleb Smirnoff
555995d67482SBill Paul /* Enable host interrupts. */
556075719184SGleb Smirnoff {
556195d67482SBill Paul BGE_SETBIT(sc, BGE_PCI_MISC_CTL, BGE_PCIMISCCTL_CLEAR_INTA);
556295d67482SBill Paul BGE_CLRBIT(sc, BGE_PCI_MISC_CTL, BGE_PCIMISCCTL_MASK_PCI_INTR);
556338cc658fSJohn Baldwin bge_writembx(sc, BGE_MBX_IRQ0_LO, 0);
556475719184SGleb Smirnoff }
556595d67482SBill Paul
5566fba8b109SMarcel Moolenaar if_setdrvflagbits(ifp, IFF_DRV_RUNNING, 0);
5567fba8b109SMarcel Moolenaar if_setdrvflagbits(ifp, 0, IFF_DRV_OACTIVE);
556895d67482SBill Paul
5569e4146b95SPyun YongHyeon bge_ifmedia_upd_locked(ifp);
5570e4146b95SPyun YongHyeon
55710f9bd73bSSam Leffler callout_reset(&sc->bge_stat_ch, hz, bge_tick, sc);
55720f9bd73bSSam Leffler }
55730f9bd73bSSam Leffler
55740f9bd73bSSam Leffler static void
bge_init(void * xsc)55753f74909aSGleb Smirnoff bge_init(void *xsc)
55760f9bd73bSSam Leffler {
55770f9bd73bSSam Leffler struct bge_softc *sc = xsc;
55780f9bd73bSSam Leffler
55790f9bd73bSSam Leffler BGE_LOCK(sc);
55800f9bd73bSSam Leffler bge_init_locked(sc);
55810f9bd73bSSam Leffler BGE_UNLOCK(sc);
558295d67482SBill Paul }
558395d67482SBill Paul
558495d67482SBill Paul /*
558595d67482SBill Paul * Set media options.
558695d67482SBill Paul */
558795d67482SBill Paul static int
bge_ifmedia_upd(if_t ifp)5588fba8b109SMarcel Moolenaar bge_ifmedia_upd(if_t ifp)
558995d67482SBill Paul {
5590fba8b109SMarcel Moolenaar struct bge_softc *sc = if_getsoftc(ifp);
559167d5e043SOleg Bulyzhin int res;
559267d5e043SOleg Bulyzhin
559367d5e043SOleg Bulyzhin BGE_LOCK(sc);
559467d5e043SOleg Bulyzhin res = bge_ifmedia_upd_locked(ifp);
559567d5e043SOleg Bulyzhin BGE_UNLOCK(sc);
559667d5e043SOleg Bulyzhin
559767d5e043SOleg Bulyzhin return (res);
559867d5e043SOleg Bulyzhin }
559967d5e043SOleg Bulyzhin
560067d5e043SOleg Bulyzhin static int
bge_ifmedia_upd_locked(if_t ifp)5601fba8b109SMarcel Moolenaar bge_ifmedia_upd_locked(if_t ifp)
560267d5e043SOleg Bulyzhin {
5603fba8b109SMarcel Moolenaar struct bge_softc *sc = if_getsoftc(ifp);
560495d67482SBill Paul struct mii_data *mii;
56054f09c4c7SMarius Strobl struct mii_softc *miisc;
560695d67482SBill Paul struct ifmedia *ifm;
560795d67482SBill Paul
560867d5e043SOleg Bulyzhin BGE_LOCK_ASSERT(sc);
560967d5e043SOleg Bulyzhin
561095d67482SBill Paul ifm = &sc->bge_ifmedia;
561195d67482SBill Paul
561295d67482SBill Paul /* If this is a 1000baseX NIC, enable the TBI port. */
5613652ae483SGleb Smirnoff if (sc->bge_flags & BGE_FLAG_TBI) {
561495d67482SBill Paul if (IFM_TYPE(ifm->ifm_media) != IFM_ETHER)
561595d67482SBill Paul return (EINVAL);
561695d67482SBill Paul switch(IFM_SUBTYPE(ifm->ifm_media)) {
561795d67482SBill Paul case IFM_AUTO:
5618ff50922bSDoug White /*
5619ff50922bSDoug White * The BCM5704 ASIC appears to have a special
5620ff50922bSDoug White * mechanism for programming the autoneg
5621ff50922bSDoug White * advertisement registers in TBI mode.
5622ff50922bSDoug White */
56230f89fde2SJung-uk Kim if (sc->bge_asicrev == BGE_ASICREV_BCM5704) {
5624ff50922bSDoug White uint32_t sgdig;
56250f89fde2SJung-uk Kim sgdig = CSR_READ_4(sc, BGE_SGDIG_STS);
56260f89fde2SJung-uk Kim if (sgdig & BGE_SGDIGSTS_DONE) {
5627ff50922bSDoug White CSR_WRITE_4(sc, BGE_TX_TBI_AUTONEG, 0);
5628ff50922bSDoug White sgdig = CSR_READ_4(sc, BGE_SGDIG_CFG);
5629ff50922bSDoug White sgdig |= BGE_SGDIGCFG_AUTO |
5630ff50922bSDoug White BGE_SGDIGCFG_PAUSE_CAP |
5631ff50922bSDoug White BGE_SGDIGCFG_ASYM_PAUSE;
5632ff50922bSDoug White CSR_WRITE_4(sc, BGE_SGDIG_CFG,
5633ff50922bSDoug White sgdig | BGE_SGDIGCFG_SEND);
5634ff50922bSDoug White DELAY(5);
5635ff50922bSDoug White CSR_WRITE_4(sc, BGE_SGDIG_CFG, sgdig);
5636ff50922bSDoug White }
56370f89fde2SJung-uk Kim }
563895d67482SBill Paul break;
563995d67482SBill Paul case IFM_1000_SX:
564095d67482SBill Paul if ((ifm->ifm_media & IFM_GMASK) == IFM_FDX) {
564195d67482SBill Paul BGE_CLRBIT(sc, BGE_MAC_MODE,
564295d67482SBill Paul BGE_MACMODE_HALF_DUPLEX);
564395d67482SBill Paul } else {
564495d67482SBill Paul BGE_SETBIT(sc, BGE_MAC_MODE,
564595d67482SBill Paul BGE_MACMODE_HALF_DUPLEX);
564695d67482SBill Paul }
56479b80ffe7SPyun YongHyeon DELAY(40);
564895d67482SBill Paul break;
564995d67482SBill Paul default:
565095d67482SBill Paul return (EINVAL);
565195d67482SBill Paul }
565295d67482SBill Paul return (0);
565395d67482SBill Paul }
565495d67482SBill Paul
56551493e883SOleg Bulyzhin sc->bge_link_evt++;
565695d67482SBill Paul mii = device_get_softc(sc->bge_miibus);
56574f09c4c7SMarius Strobl LIST_FOREACH(miisc, &mii->mii_phys, mii_list)
56583fcb7a53SMarius Strobl PHY_RESET(miisc);
565995d67482SBill Paul mii_mediachg(mii);
566095d67482SBill Paul
5661902827f6SBjoern A. Zeeb /*
5662902827f6SBjoern A. Zeeb * Force an interrupt so that we will call bge_link_upd
5663902827f6SBjoern A. Zeeb * if needed and clear any pending link state attention.
5664902827f6SBjoern A. Zeeb * Without this we are not getting any further interrupts
5665902827f6SBjoern A. Zeeb * for link state changes and thus will not UP the link and
5666902827f6SBjoern A. Zeeb * not be able to send in bge_start_locked. The only
5667902827f6SBjoern A. Zeeb * way to get things working was to receive a packet and
5668902827f6SBjoern A. Zeeb * get an RX intr.
5669902827f6SBjoern A. Zeeb * bge_tick should help for fiber cards and we might not
5670902827f6SBjoern A. Zeeb * need to do this here if BGE_FLAG_TBI is set but as
5671902827f6SBjoern A. Zeeb * we poll for fiber anyway it should not harm.
5672902827f6SBjoern A. Zeeb */
56734f0794ffSBjoern A. Zeeb if (sc->bge_asicrev == BGE_ASICREV_BCM5700 ||
56744f0794ffSBjoern A. Zeeb sc->bge_flags & BGE_FLAG_5788)
5675902827f6SBjoern A. Zeeb BGE_SETBIT(sc, BGE_MISC_LOCAL_CTL, BGE_MLC_INTR_SET);
56764f0794ffSBjoern A. Zeeb else
567763ccfe30SBjoern A. Zeeb BGE_SETBIT(sc, BGE_HCC_MODE, BGE_HCCMODE_COAL_NOW);
5678902827f6SBjoern A. Zeeb
567995d67482SBill Paul return (0);
568095d67482SBill Paul }
568195d67482SBill Paul
568295d67482SBill Paul /*
568395d67482SBill Paul * Report current media status.
568495d67482SBill Paul */
568595d67482SBill Paul static void
bge_ifmedia_sts(if_t ifp,struct ifmediareq * ifmr)5686fba8b109SMarcel Moolenaar bge_ifmedia_sts(if_t ifp, struct ifmediareq *ifmr)
568795d67482SBill Paul {
5688fba8b109SMarcel Moolenaar struct bge_softc *sc = if_getsoftc(ifp);
568995d67482SBill Paul struct mii_data *mii;
569095d67482SBill Paul
569167d5e043SOleg Bulyzhin BGE_LOCK(sc);
569295d67482SBill Paul
5693fba8b109SMarcel Moolenaar if ((if_getflags(ifp) & IFF_UP) == 0) {
5694b9d2edd7SPyun YongHyeon BGE_UNLOCK(sc);
5695b9d2edd7SPyun YongHyeon return;
5696b9d2edd7SPyun YongHyeon }
5697652ae483SGleb Smirnoff if (sc->bge_flags & BGE_FLAG_TBI) {
569895d67482SBill Paul ifmr->ifm_status = IFM_AVALID;
569995d67482SBill Paul ifmr->ifm_active = IFM_ETHER;
570095d67482SBill Paul if (CSR_READ_4(sc, BGE_MAC_STS) &
570195d67482SBill Paul BGE_MACSTAT_TBI_PCS_SYNCHED)
570295d67482SBill Paul ifmr->ifm_status |= IFM_ACTIVE;
57034c0da0ffSGleb Smirnoff else {
57044c0da0ffSGleb Smirnoff ifmr->ifm_active |= IFM_NONE;
570567d5e043SOleg Bulyzhin BGE_UNLOCK(sc);
57064c0da0ffSGleb Smirnoff return;
57074c0da0ffSGleb Smirnoff }
570895d67482SBill Paul ifmr->ifm_active |= IFM_1000_SX;
570995d67482SBill Paul if (CSR_READ_4(sc, BGE_MAC_MODE) & BGE_MACMODE_HALF_DUPLEX)
571095d67482SBill Paul ifmr->ifm_active |= IFM_HDX;
571195d67482SBill Paul else
571295d67482SBill Paul ifmr->ifm_active |= IFM_FDX;
571367d5e043SOleg Bulyzhin BGE_UNLOCK(sc);
571495d67482SBill Paul return;
571595d67482SBill Paul }
571695d67482SBill Paul
571795d67482SBill Paul mii = device_get_softc(sc->bge_miibus);
571895d67482SBill Paul mii_pollstat(mii);
571995d67482SBill Paul ifmr->ifm_active = mii->mii_media_active;
572095d67482SBill Paul ifmr->ifm_status = mii->mii_media_status;
572167d5e043SOleg Bulyzhin
572267d5e043SOleg Bulyzhin BGE_UNLOCK(sc);
572395d67482SBill Paul }
572495d67482SBill Paul
572595d67482SBill Paul static int
bge_ioctl(if_t ifp,u_long command,caddr_t data)5726fba8b109SMarcel Moolenaar bge_ioctl(if_t ifp, u_long command, caddr_t data)
572795d67482SBill Paul {
5728fba8b109SMarcel Moolenaar struct bge_softc *sc = if_getsoftc(ifp);
572995d67482SBill Paul struct ifreq *ifr = (struct ifreq *) data;
573095d67482SBill Paul struct mii_data *mii;
5731f9004b6dSJung-uk Kim int flags, mask, error = 0;
573295d67482SBill Paul
573395d67482SBill Paul switch (command) {
573495d67482SBill Paul case SIOCSIFMTU:
5735f5459d4cSPyun YongHyeon if (BGE_IS_JUMBO_CAPABLE(sc) ||
5736f5459d4cSPyun YongHyeon (sc->bge_flags & BGE_FLAG_JUMBO_STD)) {
57374c0da0ffSGleb Smirnoff if (ifr->ifr_mtu < ETHERMIN ||
5738f5459d4cSPyun YongHyeon ifr->ifr_mtu > BGE_JUMBO_MTU) {
573995d67482SBill Paul error = EINVAL;
5740f5459d4cSPyun YongHyeon break;
5741f5459d4cSPyun YongHyeon }
5742f5459d4cSPyun YongHyeon } else if (ifr->ifr_mtu < ETHERMIN || ifr->ifr_mtu > ETHERMTU) {
5743f5459d4cSPyun YongHyeon error = EINVAL;
5744f5459d4cSPyun YongHyeon break;
5745f5459d4cSPyun YongHyeon }
5746f5459d4cSPyun YongHyeon BGE_LOCK(sc);
5747fba8b109SMarcel Moolenaar if (if_getmtu(ifp) != ifr->ifr_mtu) {
5748fba8b109SMarcel Moolenaar if_setmtu(ifp, ifr->ifr_mtu);
5749fba8b109SMarcel Moolenaar if (if_getdrvflags(ifp) & IFF_DRV_RUNNING) {
5750fba8b109SMarcel Moolenaar if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
57513a429c8fSPyun YongHyeon bge_init_locked(sc);
575295d67482SBill Paul }
57533a429c8fSPyun YongHyeon }
57543a429c8fSPyun YongHyeon BGE_UNLOCK(sc);
575595d67482SBill Paul break;
575695d67482SBill Paul case SIOCSIFFLAGS:
57570f9bd73bSSam Leffler BGE_LOCK(sc);
5758fba8b109SMarcel Moolenaar if (if_getflags(ifp) & IFF_UP) {
575995d67482SBill Paul /*
576095d67482SBill Paul * If only the state of the PROMISC flag changed,
576195d67482SBill Paul * then just use the 'set promisc mode' command
576295d67482SBill Paul * instead of reinitializing the entire NIC. Doing
576395d67482SBill Paul * a full re-init means reloading the firmware and
576495d67482SBill Paul * waiting for it to start up, which may take a
5765d183af7fSRuslan Ermilov * second or two. Similarly for ALLMULTI.
576695d67482SBill Paul */
5767fba8b109SMarcel Moolenaar if (if_getdrvflags(ifp) & IFF_DRV_RUNNING) {
5768fba8b109SMarcel Moolenaar flags = if_getflags(ifp) ^ sc->bge_if_flags;
57693e9b1bcaSJung-uk Kim if (flags & IFF_PROMISC)
57703e9b1bcaSJung-uk Kim bge_setpromisc(sc);
5771f9004b6dSJung-uk Kim if (flags & IFF_ALLMULTI)
5772d183af7fSRuslan Ermilov bge_setmulti(sc);
577395d67482SBill Paul } else
57740f9bd73bSSam Leffler bge_init_locked(sc);
577595d67482SBill Paul } else {
5776fba8b109SMarcel Moolenaar if (if_getdrvflags(ifp) & IFF_DRV_RUNNING) {
577795d67482SBill Paul bge_stop(sc);
577895d67482SBill Paul }
577995d67482SBill Paul }
5780fba8b109SMarcel Moolenaar sc->bge_if_flags = if_getflags(ifp);
57810f9bd73bSSam Leffler BGE_UNLOCK(sc);
578295d67482SBill Paul error = 0;
578395d67482SBill Paul break;
578495d67482SBill Paul case SIOCADDMULTI:
578595d67482SBill Paul case SIOCDELMULTI:
5786fba8b109SMarcel Moolenaar if (if_getdrvflags(ifp) & IFF_DRV_RUNNING) {
57870f9bd73bSSam Leffler BGE_LOCK(sc);
578895d67482SBill Paul bge_setmulti(sc);
57890f9bd73bSSam Leffler BGE_UNLOCK(sc);
579095d67482SBill Paul error = 0;
579195d67482SBill Paul }
579295d67482SBill Paul break;
579395d67482SBill Paul case SIOCSIFMEDIA:
579495d67482SBill Paul case SIOCGIFMEDIA:
5795652ae483SGleb Smirnoff if (sc->bge_flags & BGE_FLAG_TBI) {
579695d67482SBill Paul error = ifmedia_ioctl(ifp, ifr,
579795d67482SBill Paul &sc->bge_ifmedia, command);
579895d67482SBill Paul } else {
579995d67482SBill Paul mii = device_get_softc(sc->bge_miibus);
580095d67482SBill Paul error = ifmedia_ioctl(ifp, ifr,
580195d67482SBill Paul &mii->mii_media, command);
580295d67482SBill Paul }
580395d67482SBill Paul break;
580495d67482SBill Paul case SIOCSIFCAP:
5805fba8b109SMarcel Moolenaar mask = ifr->ifr_reqcap ^ if_getcapenable(ifp);
580675719184SGleb Smirnoff #ifdef DEVICE_POLLING
580775719184SGleb Smirnoff if (mask & IFCAP_POLLING) {
580875719184SGleb Smirnoff if (ifr->ifr_reqcap & IFCAP_POLLING) {
5809bd071d4dSGleb Smirnoff error = ether_poll_register(bge_poll, ifp);
581075719184SGleb Smirnoff if (error)
581175719184SGleb Smirnoff return (error);
581275719184SGleb Smirnoff BGE_LOCK(sc);
581375719184SGleb Smirnoff BGE_SETBIT(sc, BGE_PCI_MISC_CTL,
581475719184SGleb Smirnoff BGE_PCIMISCCTL_MASK_PCI_INTR);
581538cc658fSJohn Baldwin bge_writembx(sc, BGE_MBX_IRQ0_LO, 1);
5816fba8b109SMarcel Moolenaar if_setcapenablebit(ifp, IFCAP_POLLING, 0);
581775719184SGleb Smirnoff BGE_UNLOCK(sc);
581875719184SGleb Smirnoff } else {
581975719184SGleb Smirnoff error = ether_poll_deregister(ifp);
582075719184SGleb Smirnoff /* Enable interrupt even in error case */
582175719184SGleb Smirnoff BGE_LOCK(sc);
582275719184SGleb Smirnoff BGE_CLRBIT(sc, BGE_PCI_MISC_CTL,
582375719184SGleb Smirnoff BGE_PCIMISCCTL_MASK_PCI_INTR);
582438cc658fSJohn Baldwin bge_writembx(sc, BGE_MBX_IRQ0_LO, 0);
5825fba8b109SMarcel Moolenaar if_setcapenablebit(ifp, 0, IFCAP_POLLING);
582675719184SGleb Smirnoff BGE_UNLOCK(sc);
582775719184SGleb Smirnoff }
582875719184SGleb Smirnoff }
582975719184SGleb Smirnoff #endif
5830d8b57f98SPyun YongHyeon if ((mask & IFCAP_TXCSUM) != 0 &&
5831fba8b109SMarcel Moolenaar (if_getcapabilities(ifp) & IFCAP_TXCSUM) != 0) {
5832fba8b109SMarcel Moolenaar if_togglecapenable(ifp, IFCAP_TXCSUM);
5833fba8b109SMarcel Moolenaar if ((if_getcapenable(ifp) & IFCAP_TXCSUM) != 0)
5834fba8b109SMarcel Moolenaar if_sethwassistbits(ifp,
5835fba8b109SMarcel Moolenaar sc->bge_csum_features, 0);
583695d67482SBill Paul else
5837fba8b109SMarcel Moolenaar if_sethwassistbits(ifp, 0,
5838fba8b109SMarcel Moolenaar sc->bge_csum_features);
583995d67482SBill Paul }
5840cb2eacc7SYaroslav Tykhiy
5841d8b57f98SPyun YongHyeon if ((mask & IFCAP_RXCSUM) != 0 &&
5842fba8b109SMarcel Moolenaar (if_getcapabilities(ifp) & IFCAP_RXCSUM) != 0)
5843fba8b109SMarcel Moolenaar if_togglecapenable(ifp, IFCAP_RXCSUM);
5844d8b57f98SPyun YongHyeon
5845ca3f1187SPyun YongHyeon if ((mask & IFCAP_TSO4) != 0 &&
5846fba8b109SMarcel Moolenaar (if_getcapabilities(ifp) & IFCAP_TSO4) != 0) {
5847fba8b109SMarcel Moolenaar if_togglecapenable(ifp, IFCAP_TSO4);
5848fba8b109SMarcel Moolenaar if ((if_getcapenable(ifp) & IFCAP_TSO4) != 0)
5849fba8b109SMarcel Moolenaar if_sethwassistbits(ifp, CSUM_TSO, 0);
5850ca3f1187SPyun YongHyeon else
5851fba8b109SMarcel Moolenaar if_sethwassistbits(ifp, 0, CSUM_TSO);
5852ca3f1187SPyun YongHyeon }
5853ca3f1187SPyun YongHyeon
5854cb2eacc7SYaroslav Tykhiy if (mask & IFCAP_VLAN_MTU) {
5855fba8b109SMarcel Moolenaar if_togglecapenable(ifp, IFCAP_VLAN_MTU);
5856fba8b109SMarcel Moolenaar if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
5857cb2eacc7SYaroslav Tykhiy bge_init(sc);
5858cb2eacc7SYaroslav Tykhiy }
5859cb2eacc7SYaroslav Tykhiy
586004bde852SPyun YongHyeon if ((mask & IFCAP_VLAN_HWTSO) != 0 &&
5861fba8b109SMarcel Moolenaar (if_getcapabilities(ifp) & IFCAP_VLAN_HWTSO) != 0)
5862fba8b109SMarcel Moolenaar if_togglecapenable(ifp, IFCAP_VLAN_HWTSO);
586304bde852SPyun YongHyeon if ((mask & IFCAP_VLAN_HWTAGGING) != 0 &&
5864fba8b109SMarcel Moolenaar (if_getcapabilities(ifp) & IFCAP_VLAN_HWTAGGING) != 0) {
5865fba8b109SMarcel Moolenaar if_togglecapenable(ifp, IFCAP_VLAN_HWTAGGING);
5866fba8b109SMarcel Moolenaar if ((if_getcapenable(ifp) & IFCAP_VLAN_HWTAGGING) == 0)
5867fba8b109SMarcel Moolenaar if_setcapenablebit(ifp, 0, IFCAP_VLAN_HWTSO);
5868cb2eacc7SYaroslav Tykhiy BGE_LOCK(sc);
5869cb2eacc7SYaroslav Tykhiy bge_setvlan(sc);
5870cb2eacc7SYaroslav Tykhiy BGE_UNLOCK(sc);
587104bde852SPyun YongHyeon }
5872cb2eacc7SYaroslav Tykhiy #ifdef VLAN_CAPABILITIES
5873fba8b109SMarcel Moolenaar if_vlancap(ifp);
5874cb2eacc7SYaroslav Tykhiy #endif
587595d67482SBill Paul break;
587695d67482SBill Paul default:
5877673d9191SSam Leffler error = ether_ioctl(ifp, command, data);
587895d67482SBill Paul break;
587995d67482SBill Paul }
588095d67482SBill Paul
588195d67482SBill Paul return (error);
588295d67482SBill Paul }
588395d67482SBill Paul
588495d67482SBill Paul static void
bge_watchdog(struct bge_softc * sc)5885b74e67fbSGleb Smirnoff bge_watchdog(struct bge_softc *sc)
588695d67482SBill Paul {
5887fba8b109SMarcel Moolenaar if_t ifp;
5888b584d2b3SPyun YongHyeon uint32_t status;
588995d67482SBill Paul
5890b74e67fbSGleb Smirnoff BGE_LOCK_ASSERT(sc);
5891b74e67fbSGleb Smirnoff
5892b74e67fbSGleb Smirnoff if (sc->bge_timer == 0 || --sc->bge_timer)
5893b74e67fbSGleb Smirnoff return;
5894b74e67fbSGleb Smirnoff
5895b584d2b3SPyun YongHyeon /* If pause frames are active then don't reset the hardware. */
5896b584d2b3SPyun YongHyeon if ((CSR_READ_4(sc, BGE_RX_MODE) & BGE_RXMODE_FLOWCTL_ENABLE) != 0) {
5897b584d2b3SPyun YongHyeon status = CSR_READ_4(sc, BGE_RX_STS);
5898b584d2b3SPyun YongHyeon if ((status & BGE_RXSTAT_REMOTE_XOFFED) != 0) {
5899b584d2b3SPyun YongHyeon /*
5900b584d2b3SPyun YongHyeon * If link partner has us in XOFF state then wait for
5901b584d2b3SPyun YongHyeon * the condition to clear.
5902b584d2b3SPyun YongHyeon */
5903b584d2b3SPyun YongHyeon CSR_WRITE_4(sc, BGE_RX_STS, status);
5904b584d2b3SPyun YongHyeon sc->bge_timer = BGE_TX_TIMEOUT;
5905b584d2b3SPyun YongHyeon return;
5906b584d2b3SPyun YongHyeon } else if ((status & BGE_RXSTAT_RCVD_XOFF) != 0 &&
5907b584d2b3SPyun YongHyeon (status & BGE_RXSTAT_RCVD_XON) != 0) {
5908b584d2b3SPyun YongHyeon /*
5909b584d2b3SPyun YongHyeon * If link partner has us in XOFF state then wait for
5910b584d2b3SPyun YongHyeon * the condition to clear.
5911b584d2b3SPyun YongHyeon */
5912b584d2b3SPyun YongHyeon CSR_WRITE_4(sc, BGE_RX_STS, status);
5913b584d2b3SPyun YongHyeon sc->bge_timer = BGE_TX_TIMEOUT;
5914b584d2b3SPyun YongHyeon return;
5915b584d2b3SPyun YongHyeon }
5916b584d2b3SPyun YongHyeon /*
5917b584d2b3SPyun YongHyeon * Any other condition is unexpected and the controller
5918b584d2b3SPyun YongHyeon * should be reset.
5919b584d2b3SPyun YongHyeon */
5920b584d2b3SPyun YongHyeon }
5921b584d2b3SPyun YongHyeon
5922b74e67fbSGleb Smirnoff ifp = sc->bge_ifp;
592395d67482SBill Paul
5924fe806fdaSPyun YongHyeon if_printf(ifp, "watchdog timeout -- resetting\n");
592595d67482SBill Paul
5926fba8b109SMarcel Moolenaar if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
5927426742bfSGleb Smirnoff bge_init_locked(sc);
592895d67482SBill Paul
5929df360178SGleb Smirnoff if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
593095d67482SBill Paul }
593195d67482SBill Paul
59325a147ba6SPyun YongHyeon static void
bge_stop_block(struct bge_softc * sc,bus_size_t reg,uint32_t bit)59335a147ba6SPyun YongHyeon bge_stop_block(struct bge_softc *sc, bus_size_t reg, uint32_t bit)
59345a147ba6SPyun YongHyeon {
59355a147ba6SPyun YongHyeon int i;
59365a147ba6SPyun YongHyeon
59375a147ba6SPyun YongHyeon BGE_CLRBIT(sc, reg, bit);
59385a147ba6SPyun YongHyeon
59395a147ba6SPyun YongHyeon for (i = 0; i < BGE_TIMEOUT; i++) {
59405a147ba6SPyun YongHyeon if ((CSR_READ_4(sc, reg) & bit) == 0)
59415a147ba6SPyun YongHyeon return;
59425a147ba6SPyun YongHyeon DELAY(100);
59435a147ba6SPyun YongHyeon }
59445a147ba6SPyun YongHyeon }
59455a147ba6SPyun YongHyeon
594695d67482SBill Paul /*
594795d67482SBill Paul * Stop the adapter and free any mbufs allocated to the
594895d67482SBill Paul * RX and TX lists.
594995d67482SBill Paul */
595095d67482SBill Paul static void
bge_stop(struct bge_softc * sc)59513f74909aSGleb Smirnoff bge_stop(struct bge_softc *sc)
595295d67482SBill Paul {
5953fba8b109SMarcel Moolenaar if_t ifp;
595495d67482SBill Paul
59550f9bd73bSSam Leffler BGE_LOCK_ASSERT(sc);
59560f9bd73bSSam Leffler
5957fc74a9f9SBrooks Davis ifp = sc->bge_ifp;
595895d67482SBill Paul
59590f9bd73bSSam Leffler callout_stop(&sc->bge_stat_ch);
596095d67482SBill Paul
596144b63691SBjoern A. Zeeb /* Disable host interrupts. */
596244b63691SBjoern A. Zeeb BGE_SETBIT(sc, BGE_PCI_MISC_CTL, BGE_PCIMISCCTL_MASK_PCI_INTR);
596344b63691SBjoern A. Zeeb bge_writembx(sc, BGE_MBX_IRQ0_LO, 1);
596444b63691SBjoern A. Zeeb
596544b63691SBjoern A. Zeeb /*
596644b63691SBjoern A. Zeeb * Tell firmware we're shutting down.
596744b63691SBjoern A. Zeeb */
596844b63691SBjoern A. Zeeb bge_stop_fw(sc);
5969548c8f1aSPyun YongHyeon bge_sig_pre_reset(sc, BGE_RESET_SHUTDOWN);
597044b63691SBjoern A. Zeeb
597195d67482SBill Paul /*
59723f74909aSGleb Smirnoff * Disable all of the receiver blocks.
597395d67482SBill Paul */
59745a147ba6SPyun YongHyeon bge_stop_block(sc, BGE_RX_MODE, BGE_RXMODE_ENABLE);
59755a147ba6SPyun YongHyeon bge_stop_block(sc, BGE_RBDI_MODE, BGE_RBDIMODE_ENABLE);
59765a147ba6SPyun YongHyeon bge_stop_block(sc, BGE_RXLP_MODE, BGE_RXLPMODE_ENABLE);
59775a147ba6SPyun YongHyeon if (BGE_IS_5700_FAMILY(sc))
59785a147ba6SPyun YongHyeon bge_stop_block(sc, BGE_RXLS_MODE, BGE_RXLSMODE_ENABLE);
59795a147ba6SPyun YongHyeon bge_stop_block(sc, BGE_RDBDI_MODE, BGE_RBDIMODE_ENABLE);
59805a147ba6SPyun YongHyeon bge_stop_block(sc, BGE_RDC_MODE, BGE_RDCMODE_ENABLE);
59815a147ba6SPyun YongHyeon bge_stop_block(sc, BGE_RBDC_MODE, BGE_RBDCMODE_ENABLE);
598295d67482SBill Paul
598395d67482SBill Paul /*
59843f74909aSGleb Smirnoff * Disable all of the transmit blocks.
598595d67482SBill Paul */
59865a147ba6SPyun YongHyeon bge_stop_block(sc, BGE_SRS_MODE, BGE_SRSMODE_ENABLE);
59875a147ba6SPyun YongHyeon bge_stop_block(sc, BGE_SBDI_MODE, BGE_SBDIMODE_ENABLE);
59885a147ba6SPyun YongHyeon bge_stop_block(sc, BGE_SDI_MODE, BGE_SDIMODE_ENABLE);
59895a147ba6SPyun YongHyeon bge_stop_block(sc, BGE_RDMA_MODE, BGE_RDMAMODE_ENABLE);
59905a147ba6SPyun YongHyeon bge_stop_block(sc, BGE_SDC_MODE, BGE_SDCMODE_ENABLE);
59915a147ba6SPyun YongHyeon if (BGE_IS_5700_FAMILY(sc))
59925a147ba6SPyun YongHyeon bge_stop_block(sc, BGE_DMAC_MODE, BGE_DMACMODE_ENABLE);
59935a147ba6SPyun YongHyeon bge_stop_block(sc, BGE_SBDC_MODE, BGE_SBDCMODE_ENABLE);
599495d67482SBill Paul
599595d67482SBill Paul /*
599695d67482SBill Paul * Shut down all of the memory managers and related
599795d67482SBill Paul * state machines.
599895d67482SBill Paul */
59995a147ba6SPyun YongHyeon bge_stop_block(sc, BGE_HCC_MODE, BGE_HCCMODE_ENABLE);
60005a147ba6SPyun YongHyeon bge_stop_block(sc, BGE_WDMA_MODE, BGE_WDMAMODE_ENABLE);
60015a147ba6SPyun YongHyeon if (BGE_IS_5700_FAMILY(sc))
60025a147ba6SPyun YongHyeon bge_stop_block(sc, BGE_MBCF_MODE, BGE_MBCFMODE_ENABLE);
60035a147ba6SPyun YongHyeon
60040c8aa4eaSJung-uk Kim CSR_WRITE_4(sc, BGE_FTQ_RESET, 0xFFFFFFFF);
600595d67482SBill Paul CSR_WRITE_4(sc, BGE_FTQ_RESET, 0);
60067ee00338SJung-uk Kim if (!(BGE_IS_5705_PLUS(sc))) {
600795d67482SBill Paul BGE_CLRBIT(sc, BGE_BMAN_MODE, BGE_BMANMODE_ENABLE);
600895d67482SBill Paul BGE_CLRBIT(sc, BGE_MARB_MODE, BGE_MARBMODE_ENABLE);
60090434d1b8SBill Paul }
60102280c16bSPyun YongHyeon /* Update MAC statistics. */
60112280c16bSPyun YongHyeon if (BGE_IS_5705_PLUS(sc))
60122280c16bSPyun YongHyeon bge_stats_update_regs(sc);
601395d67482SBill Paul
60148cb1383cSDoug Ambrisko bge_reset(sc);
6015548c8f1aSPyun YongHyeon bge_sig_legacy(sc, BGE_RESET_SHUTDOWN);
6016548c8f1aSPyun YongHyeon bge_sig_post_reset(sc, BGE_RESET_SHUTDOWN);
60178cb1383cSDoug Ambrisko
60188cb1383cSDoug Ambrisko /*
60198cb1383cSDoug Ambrisko * Keep the ASF firmware running if up.
60208cb1383cSDoug Ambrisko */
60218cb1383cSDoug Ambrisko if (sc->bge_asf_mode & ASF_STACKUP)
60228cb1383cSDoug Ambrisko BGE_SETBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
60238cb1383cSDoug Ambrisko else
602495d67482SBill Paul BGE_CLRBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP);
602595d67482SBill Paul
602695d67482SBill Paul /* Free the RX lists. */
602795d67482SBill Paul bge_free_rx_ring_std(sc);
602895d67482SBill Paul
602995d67482SBill Paul /* Free jumbo RX list. */
60304c0da0ffSGleb Smirnoff if (BGE_IS_JUMBO_CAPABLE(sc))
603195d67482SBill Paul bge_free_rx_ring_jumbo(sc);
603295d67482SBill Paul
603395d67482SBill Paul /* Free TX buffers. */
603495d67482SBill Paul bge_free_tx_ring(sc);
603595d67482SBill Paul
603695d67482SBill Paul sc->bge_tx_saved_considx = BGE_TXCONS_UNSET;
603795d67482SBill Paul
60385dda8085SOleg Bulyzhin /* Clear MAC's link state (PHY may still have link UP). */
60391493e883SOleg Bulyzhin if (bootverbose && sc->bge_link)
60401493e883SOleg Bulyzhin if_printf(sc->bge_ifp, "link DOWN\n");
60411493e883SOleg Bulyzhin sc->bge_link = 0;
604295d67482SBill Paul
6043fba8b109SMarcel Moolenaar if_setdrvflagbits(ifp, 0, (IFF_DRV_RUNNING | IFF_DRV_OACTIVE));
604495d67482SBill Paul }
604595d67482SBill Paul
604695d67482SBill Paul /*
604795d67482SBill Paul * Stop all chip I/O so that the kernel's probe routines don't
604895d67482SBill Paul * get confused by errant DMAs when rebooting.
604995d67482SBill Paul */
6050b6c974e8SWarner Losh static int
bge_shutdown(device_t dev)60513f74909aSGleb Smirnoff bge_shutdown(device_t dev)
605295d67482SBill Paul {
605395d67482SBill Paul struct bge_softc *sc;
605495d67482SBill Paul
605595d67482SBill Paul sc = device_get_softc(dev);
60560f9bd73bSSam Leffler BGE_LOCK(sc);
605795d67482SBill Paul bge_stop(sc);
60580f9bd73bSSam Leffler BGE_UNLOCK(sc);
6059b6c974e8SWarner Losh
6060b6c974e8SWarner Losh return (0);
606195d67482SBill Paul }
606214afefa3SPawel Jakub Dawidek
606314afefa3SPawel Jakub Dawidek static int
bge_suspend(device_t dev)606414afefa3SPawel Jakub Dawidek bge_suspend(device_t dev)
606514afefa3SPawel Jakub Dawidek {
606614afefa3SPawel Jakub Dawidek struct bge_softc *sc;
606714afefa3SPawel Jakub Dawidek
606814afefa3SPawel Jakub Dawidek sc = device_get_softc(dev);
606914afefa3SPawel Jakub Dawidek BGE_LOCK(sc);
607014afefa3SPawel Jakub Dawidek bge_stop(sc);
607114afefa3SPawel Jakub Dawidek BGE_UNLOCK(sc);
607214afefa3SPawel Jakub Dawidek
607314afefa3SPawel Jakub Dawidek return (0);
607414afefa3SPawel Jakub Dawidek }
607514afefa3SPawel Jakub Dawidek
607614afefa3SPawel Jakub Dawidek static int
bge_resume(device_t dev)607714afefa3SPawel Jakub Dawidek bge_resume(device_t dev)
607814afefa3SPawel Jakub Dawidek {
607914afefa3SPawel Jakub Dawidek struct bge_softc *sc;
6080fba8b109SMarcel Moolenaar if_t ifp;
608114afefa3SPawel Jakub Dawidek
608214afefa3SPawel Jakub Dawidek sc = device_get_softc(dev);
608314afefa3SPawel Jakub Dawidek BGE_LOCK(sc);
608414afefa3SPawel Jakub Dawidek ifp = sc->bge_ifp;
6085fba8b109SMarcel Moolenaar if (if_getflags(ifp) & IFF_UP) {
608614afefa3SPawel Jakub Dawidek bge_init_locked(sc);
6087fba8b109SMarcel Moolenaar if (if_getdrvflags(ifp) & IFF_DRV_RUNNING)
608814afefa3SPawel Jakub Dawidek bge_start_locked(ifp);
608914afefa3SPawel Jakub Dawidek }
609014afefa3SPawel Jakub Dawidek BGE_UNLOCK(sc);
609114afefa3SPawel Jakub Dawidek
609214afefa3SPawel Jakub Dawidek return (0);
609314afefa3SPawel Jakub Dawidek }
6094dab5cd05SOleg Bulyzhin
6095dab5cd05SOleg Bulyzhin static void
bge_link_upd(struct bge_softc * sc)60963f74909aSGleb Smirnoff bge_link_upd(struct bge_softc *sc)
6097dab5cd05SOleg Bulyzhin {
60981f313773SOleg Bulyzhin struct mii_data *mii;
60991f313773SOleg Bulyzhin uint32_t link, status;
6100dab5cd05SOleg Bulyzhin
6101dab5cd05SOleg Bulyzhin BGE_LOCK_ASSERT(sc);
61021f313773SOleg Bulyzhin
61033f74909aSGleb Smirnoff /* Clear 'pending link event' flag. */
61047b97099dSOleg Bulyzhin sc->bge_link_evt = 0;
61057b97099dSOleg Bulyzhin
6106dab5cd05SOleg Bulyzhin /*
6107dab5cd05SOleg Bulyzhin * Process link state changes.
6108dab5cd05SOleg Bulyzhin * Grrr. The link status word in the status block does
6109dab5cd05SOleg Bulyzhin * not work correctly on the BCM5700 rev AX and BX chips,
6110dab5cd05SOleg Bulyzhin * according to all available information. Hence, we have
6111dab5cd05SOleg Bulyzhin * to enable MII interrupts in order to properly obtain
6112dab5cd05SOleg Bulyzhin * async link changes. Unfortunately, this also means that
6113dab5cd05SOleg Bulyzhin * we have to read the MAC status register to detect link
6114dab5cd05SOleg Bulyzhin * changes, thereby adding an additional register access to
6115dab5cd05SOleg Bulyzhin * the interrupt handler.
61161f313773SOleg Bulyzhin *
61171f313773SOleg Bulyzhin * XXX: perhaps link state detection procedure used for
61184c0da0ffSGleb Smirnoff * BGE_CHIPID_BCM5700_B2 can be used for others BCM5700 revisions.
6119dab5cd05SOleg Bulyzhin */
6120dab5cd05SOleg Bulyzhin
61211f313773SOleg Bulyzhin if (sc->bge_asicrev == BGE_ASICREV_BCM5700 &&
61224c0da0ffSGleb Smirnoff sc->bge_chipid != BGE_CHIPID_BCM5700_B2) {
6123dab5cd05SOleg Bulyzhin status = CSR_READ_4(sc, BGE_MAC_STS);
6124dab5cd05SOleg Bulyzhin if (status & BGE_MACSTAT_MI_INTERRUPT) {
61251f313773SOleg Bulyzhin mii = device_get_softc(sc->bge_miibus);
61265dda8085SOleg Bulyzhin mii_pollstat(mii);
61271f313773SOleg Bulyzhin if (!sc->bge_link &&
61281f313773SOleg Bulyzhin mii->mii_media_status & IFM_ACTIVE &&
61291f313773SOleg Bulyzhin IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
61301f313773SOleg Bulyzhin sc->bge_link++;
61311f313773SOleg Bulyzhin if (bootverbose)
61321f313773SOleg Bulyzhin if_printf(sc->bge_ifp, "link UP\n");
61331f313773SOleg Bulyzhin } else if (sc->bge_link &&
61341f313773SOleg Bulyzhin (!(mii->mii_media_status & IFM_ACTIVE) ||
61351f313773SOleg Bulyzhin IFM_SUBTYPE(mii->mii_media_active) == IFM_NONE)) {
61361f313773SOleg Bulyzhin sc->bge_link = 0;
61371f313773SOleg Bulyzhin if (bootverbose)
61381f313773SOleg Bulyzhin if_printf(sc->bge_ifp, "link DOWN\n");
61391f313773SOleg Bulyzhin }
61401f313773SOleg Bulyzhin
61413f74909aSGleb Smirnoff /* Clear the interrupt. */
6142dab5cd05SOleg Bulyzhin CSR_WRITE_4(sc, BGE_MAC_EVT_ENB,
6143dab5cd05SOleg Bulyzhin BGE_EVTENB_MI_INTERRUPT);
6144daeeb75cSPyun YongHyeon bge_miibus_readreg(sc->bge_dev, sc->bge_phy_addr,
6145daeeb75cSPyun YongHyeon BRGPHY_MII_ISR);
6146daeeb75cSPyun YongHyeon bge_miibus_writereg(sc->bge_dev, sc->bge_phy_addr,
6147daeeb75cSPyun YongHyeon BRGPHY_MII_IMR, BRGPHY_INTRS);
6148dab5cd05SOleg Bulyzhin }
6149dab5cd05SOleg Bulyzhin return;
6150dab5cd05SOleg Bulyzhin }
6151dab5cd05SOleg Bulyzhin
6152652ae483SGleb Smirnoff if (sc->bge_flags & BGE_FLAG_TBI) {
61531f313773SOleg Bulyzhin status = CSR_READ_4(sc, BGE_MAC_STS);
61547b97099dSOleg Bulyzhin if (status & BGE_MACSTAT_TBI_PCS_SYNCHED) {
61557b97099dSOleg Bulyzhin if (!sc->bge_link) {
61561f313773SOleg Bulyzhin sc->bge_link++;
61579b80ffe7SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5704) {
61581f313773SOleg Bulyzhin BGE_CLRBIT(sc, BGE_MAC_MODE,
61591f313773SOleg Bulyzhin BGE_MACMODE_TBI_SEND_CFGS);
61609b80ffe7SPyun YongHyeon DELAY(40);
61619b80ffe7SPyun YongHyeon }
61620c8aa4eaSJung-uk Kim CSR_WRITE_4(sc, BGE_MAC_STS, 0xFFFFFFFF);
61631f313773SOleg Bulyzhin if (bootverbose)
61641f313773SOleg Bulyzhin if_printf(sc->bge_ifp, "link UP\n");
61653f74909aSGleb Smirnoff if_link_state_change(sc->bge_ifp,
61663f74909aSGleb Smirnoff LINK_STATE_UP);
61677b97099dSOleg Bulyzhin }
61681f313773SOleg Bulyzhin } else if (sc->bge_link) {
6169dab5cd05SOleg Bulyzhin sc->bge_link = 0;
61701f313773SOleg Bulyzhin if (bootverbose)
61711f313773SOleg Bulyzhin if_printf(sc->bge_ifp, "link DOWN\n");
61727b97099dSOleg Bulyzhin if_link_state_change(sc->bge_ifp, LINK_STATE_DOWN);
61731f313773SOleg Bulyzhin }
61746ede2cfaSPyun YongHyeon } else if ((sc->bge_mi_mode & BGE_MIMODE_AUTOPOLL) != 0) {
61751f313773SOleg Bulyzhin /*
61760c8aa4eaSJung-uk Kim * Some broken BCM chips have BGE_STATFLAG_LINKSTATE_CHANGED bit
61770c8aa4eaSJung-uk Kim * in status word always set. Workaround this bug by reading
61780c8aa4eaSJung-uk Kim * PHY link status directly.
61791f313773SOleg Bulyzhin */
61801f313773SOleg Bulyzhin link = (CSR_READ_4(sc, BGE_MI_STS) & BGE_MISTS_LINK) ? 1 : 0;
61811f313773SOleg Bulyzhin
61821f313773SOleg Bulyzhin if (link != sc->bge_link ||
61831f313773SOleg Bulyzhin sc->bge_asicrev == BGE_ASICREV_BCM5700) {
61841f313773SOleg Bulyzhin mii = device_get_softc(sc->bge_miibus);
61855dda8085SOleg Bulyzhin mii_pollstat(mii);
61861f313773SOleg Bulyzhin if (!sc->bge_link &&
61871f313773SOleg Bulyzhin mii->mii_media_status & IFM_ACTIVE &&
61881f313773SOleg Bulyzhin IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
61891f313773SOleg Bulyzhin sc->bge_link++;
61901f313773SOleg Bulyzhin if (bootverbose)
61911f313773SOleg Bulyzhin if_printf(sc->bge_ifp, "link UP\n");
61921f313773SOleg Bulyzhin } else if (sc->bge_link &&
61931f313773SOleg Bulyzhin (!(mii->mii_media_status & IFM_ACTIVE) ||
61941f313773SOleg Bulyzhin IFM_SUBTYPE(mii->mii_media_active) == IFM_NONE)) {
61951f313773SOleg Bulyzhin sc->bge_link = 0;
61961f313773SOleg Bulyzhin if (bootverbose)
61971f313773SOleg Bulyzhin if_printf(sc->bge_ifp, "link DOWN\n");
61981f313773SOleg Bulyzhin }
61991f313773SOleg Bulyzhin }
62000c8aa4eaSJung-uk Kim } else {
62010c8aa4eaSJung-uk Kim /*
62026ede2cfaSPyun YongHyeon * For controllers that call mii_tick, we have to poll
62036ede2cfaSPyun YongHyeon * link status.
62040c8aa4eaSJung-uk Kim */
62056ede2cfaSPyun YongHyeon mii = device_get_softc(sc->bge_miibus);
62066ede2cfaSPyun YongHyeon mii_pollstat(mii);
62076ede2cfaSPyun YongHyeon bge_miibus_statchg(sc->bge_dev);
6208dab5cd05SOleg Bulyzhin }
6209dab5cd05SOleg Bulyzhin
62102246e8c6SPyun YongHyeon /* Disable MAC attention when link is up. */
6211dab5cd05SOleg Bulyzhin CSR_WRITE_4(sc, BGE_MAC_STS, BGE_MACSTAT_SYNC_CHANGED |
6212dab5cd05SOleg Bulyzhin BGE_MACSTAT_CFG_CHANGED | BGE_MACSTAT_MI_COMPLETE |
6213dab5cd05SOleg Bulyzhin BGE_MACSTAT_LINK_CHANGED);
6214dab5cd05SOleg Bulyzhin }
62156f8718a3SScott Long
62166f8718a3SScott Long static void
bge_add_sysctls(struct bge_softc * sc)62176f8718a3SScott Long bge_add_sysctls(struct bge_softc *sc)
62186f8718a3SScott Long {
62196f8718a3SScott Long struct sysctl_ctx_list *ctx;
62202280c16bSPyun YongHyeon struct sysctl_oid_list *children;
62216f8718a3SScott Long
62226f8718a3SScott Long ctx = device_get_sysctl_ctx(sc->bge_dev);
62236f8718a3SScott Long children = SYSCTL_CHILDREN(device_get_sysctl_tree(sc->bge_dev));
62246f8718a3SScott Long
62256f8718a3SScott Long #ifdef BGE_REGISTER_DEBUG
62266f8718a3SScott Long SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "debug_info",
62277029da5cSPawel Biernacki CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT, sc, 0,
62287029da5cSPawel Biernacki bge_sysctl_debug_info, "I", "Debug Information");
62296f8718a3SScott Long
62306f8718a3SScott Long SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "reg_read",
62317029da5cSPawel Biernacki CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT, sc, 0,
62327029da5cSPawel Biernacki bge_sysctl_reg_read, "I", "MAC Register Read");
6233548c8f1aSPyun YongHyeon
6234548c8f1aSPyun YongHyeon SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "ape_read",
62357029da5cSPawel Biernacki CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT, sc, 0,
62367029da5cSPawel Biernacki bge_sysctl_ape_read, "I", "APE Register Read");
62376f8718a3SScott Long
62386f8718a3SScott Long SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "mem_read",
62397029da5cSPawel Biernacki CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT, sc, 0,
62407029da5cSPawel Biernacki bge_sysctl_mem_read, "I", "Memory Read");
62416f8718a3SScott Long
62426f8718a3SScott Long #endif
6243763757b2SScott Long
6244beaa2ae1SPyun YongHyeon /*
6245beaa2ae1SPyun YongHyeon * A common design characteristic for many Broadcom client controllers
6246beaa2ae1SPyun YongHyeon * is that they only support a single outstanding DMA read operation
6247beaa2ae1SPyun YongHyeon * on the PCIe bus. This means that it will take twice as long to fetch
6248beaa2ae1SPyun YongHyeon * a TX frame that is split into header and payload buffers as it does
6249beaa2ae1SPyun YongHyeon * to fetch a single, contiguous TX frame (2 reads vs. 1 read). For
6250beaa2ae1SPyun YongHyeon * these controllers, coalescing buffers to reduce the number of memory
6251beaa2ae1SPyun YongHyeon * reads is effective way to get maximum performance(about 940Mbps).
6252beaa2ae1SPyun YongHyeon * Without collapsing TX buffers the maximum TCP bulk transfer
6253beaa2ae1SPyun YongHyeon * performance is about 850Mbps. However forcing coalescing mbufs
6254beaa2ae1SPyun YongHyeon * consumes a lot of CPU cycles, so leave it off by default.
6255beaa2ae1SPyun YongHyeon */
62567e32f79aSPyun YongHyeon sc->bge_forced_collapse = 0;
6257beaa2ae1SPyun YongHyeon SYSCTL_ADD_INT(ctx, children, OID_AUTO, "forced_collapse",
6258af3b2549SHans Petter Selasky CTLFLAG_RWTUN, &sc->bge_forced_collapse, 0,
6259beaa2ae1SPyun YongHyeon "Number of fragmented TX buffers of a frame allowed before "
6260beaa2ae1SPyun YongHyeon "forced collapsing");
6261beaa2ae1SPyun YongHyeon
62622ae7f64bSPyun YongHyeon sc->bge_msi = 1;
62632ae7f64bSPyun YongHyeon SYSCTL_ADD_INT(ctx, children, OID_AUTO, "msi",
6264af3b2549SHans Petter Selasky CTLFLAG_RDTUN, &sc->bge_msi, 0, "Enable MSI");
62655c952e8dSPyun YongHyeon
626635f945cdSPyun YongHyeon /*
626735f945cdSPyun YongHyeon * It seems all Broadcom controllers have a bug that can generate UDP
626835f945cdSPyun YongHyeon * datagrams with checksum value 0 when TX UDP checksum offloading is
626935f945cdSPyun YongHyeon * enabled. Generating UDP checksum value 0 is RFC 768 violation.
627035f945cdSPyun YongHyeon * Even though the probability of generating such UDP datagrams is
627135f945cdSPyun YongHyeon * low, I don't want to see FreeBSD boxes to inject such datagrams
627235f945cdSPyun YongHyeon * into network so disable UDP checksum offloading by default. Users
627335f945cdSPyun YongHyeon * still override this behavior by setting a sysctl variable,
627435f945cdSPyun YongHyeon * dev.bge.0.forced_udpcsum.
627535f945cdSPyun YongHyeon */
627635f945cdSPyun YongHyeon sc->bge_forced_udpcsum = 0;
627735f945cdSPyun YongHyeon SYSCTL_ADD_INT(ctx, children, OID_AUTO, "forced_udpcsum",
6278af3b2549SHans Petter Selasky CTLFLAG_RWTUN, &sc->bge_forced_udpcsum, 0,
627935f945cdSPyun YongHyeon "Enable UDP checksum offloading even if controller can "
628035f945cdSPyun YongHyeon "generate UDP checksum value 0");
628135f945cdSPyun YongHyeon
6282d949071dSJung-uk Kim if (BGE_IS_5705_PLUS(sc))
62832280c16bSPyun YongHyeon bge_add_sysctl_stats_regs(sc, ctx, children);
62842280c16bSPyun YongHyeon else
62852280c16bSPyun YongHyeon bge_add_sysctl_stats(sc, ctx, children);
62862280c16bSPyun YongHyeon }
6287d949071dSJung-uk Kim
62882280c16bSPyun YongHyeon #define BGE_SYSCTL_STAT(sc, ctx, desc, parent, node, oid) \
62897029da5cSPawel Biernacki SYSCTL_ADD_PROC(ctx, parent, OID_AUTO, oid, \
62907029da5cSPawel Biernacki CTLTYPE_UINT | CTLFLAG_RD | CTLFLAG_NEEDGIANT, sc, \
62917029da5cSPawel Biernacki offsetof(struct bge_stats, node), bge_sysctl_stats, "IU", desc)
62922280c16bSPyun YongHyeon
62932280c16bSPyun YongHyeon static void
bge_add_sysctl_stats(struct bge_softc * sc,struct sysctl_ctx_list * ctx,struct sysctl_oid_list * parent)62942280c16bSPyun YongHyeon bge_add_sysctl_stats(struct bge_softc *sc, struct sysctl_ctx_list *ctx,
62952280c16bSPyun YongHyeon struct sysctl_oid_list *parent)
62962280c16bSPyun YongHyeon {
62972280c16bSPyun YongHyeon struct sysctl_oid *tree;
62982280c16bSPyun YongHyeon struct sysctl_oid_list *children, *schildren;
62992280c16bSPyun YongHyeon
63007029da5cSPawel Biernacki tree = SYSCTL_ADD_NODE(ctx, parent, OID_AUTO, "stats",
63017029da5cSPawel Biernacki CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, "BGE Statistics");
6302763757b2SScott Long schildren = children = SYSCTL_CHILDREN(tree);
6303763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Frames Dropped Due To Filters",
6304763757b2SScott Long children, COSFramesDroppedDueToFilters,
6305763757b2SScott Long "FramesDroppedDueToFilters");
6306763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "NIC DMA Write Queue Full",
6307763757b2SScott Long children, nicDmaWriteQueueFull, "DmaWriteQueueFull");
6308763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "NIC DMA Write High Priority Queue Full",
6309763757b2SScott Long children, nicDmaWriteHighPriQueueFull, "DmaWriteHighPriQueueFull");
6310763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "NIC No More RX Buffer Descriptors",
6311763757b2SScott Long children, nicNoMoreRxBDs, "NoMoreRxBDs");
631206e83c7eSScott Long BGE_SYSCTL_STAT(sc, ctx, "Discarded Input Frames",
631306e83c7eSScott Long children, ifInDiscards, "InputDiscards");
631406e83c7eSScott Long BGE_SYSCTL_STAT(sc, ctx, "Input Errors",
631506e83c7eSScott Long children, ifInErrors, "InputErrors");
6316763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "NIC Recv Threshold Hit",
6317763757b2SScott Long children, nicRecvThresholdHit, "RecvThresholdHit");
6318763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "NIC DMA Read Queue Full",
6319763757b2SScott Long children, nicDmaReadQueueFull, "DmaReadQueueFull");
6320763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "NIC DMA Read High Priority Queue Full",
6321763757b2SScott Long children, nicDmaReadHighPriQueueFull, "DmaReadHighPriQueueFull");
6322763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "NIC Send Data Complete Queue Full",
6323763757b2SScott Long children, nicSendDataCompQueueFull, "SendDataCompQueueFull");
6324763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "NIC Ring Set Send Producer Index",
6325763757b2SScott Long children, nicRingSetSendProdIndex, "RingSetSendProdIndex");
6326763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "NIC Ring Status Update",
6327763757b2SScott Long children, nicRingStatusUpdate, "RingStatusUpdate");
6328763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "NIC Interrupts",
6329763757b2SScott Long children, nicInterrupts, "Interrupts");
6330763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "NIC Avoided Interrupts",
6331763757b2SScott Long children, nicAvoidedInterrupts, "AvoidedInterrupts");
6332763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "NIC Send Threshold Hit",
6333763757b2SScott Long children, nicSendThresholdHit, "SendThresholdHit");
6334763757b2SScott Long
63357029da5cSPawel Biernacki tree = SYSCTL_ADD_NODE(ctx, schildren, OID_AUTO, "rx",
63367029da5cSPawel Biernacki CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, "BGE RX Statistics");
6337763757b2SScott Long children = SYSCTL_CHILDREN(tree);
6338763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Inbound Octets",
63391cd4773bSPyun YongHyeon children, rxstats.ifHCInOctets, "ifHCInOctets");
6340763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Fragments",
6341763757b2SScott Long children, rxstats.etherStatsFragments, "Fragments");
6342763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Inbound Unicast Packets",
63431cd4773bSPyun YongHyeon children, rxstats.ifHCInUcastPkts, "UnicastPkts");
6344763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Inbound Multicast Packets",
6345763757b2SScott Long children, rxstats.ifHCInMulticastPkts, "MulticastPkts");
6346763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "FCS Errors",
6347763757b2SScott Long children, rxstats.dot3StatsFCSErrors, "FCSErrors");
6348763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Alignment Errors",
6349763757b2SScott Long children, rxstats.dot3StatsAlignmentErrors, "AlignmentErrors");
6350763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "XON Pause Frames Received",
6351763757b2SScott Long children, rxstats.xonPauseFramesReceived, "xonPauseFramesReceived");
6352763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "XOFF Pause Frames Received",
6353763757b2SScott Long children, rxstats.xoffPauseFramesReceived,
6354763757b2SScott Long "xoffPauseFramesReceived");
6355763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "MAC Control Frames Received",
6356763757b2SScott Long children, rxstats.macControlFramesReceived,
6357763757b2SScott Long "ControlFramesReceived");
6358763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "XOFF State Entered",
6359763757b2SScott Long children, rxstats.xoffStateEntered, "xoffStateEntered");
6360763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Frames Too Long",
6361763757b2SScott Long children, rxstats.dot3StatsFramesTooLong, "FramesTooLong");
6362763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Jabbers",
6363763757b2SScott Long children, rxstats.etherStatsJabbers, "Jabbers");
6364763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Undersized Packets",
6365763757b2SScott Long children, rxstats.etherStatsUndersizePkts, "UndersizePkts");
6366763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Inbound Range Length Errors",
636706e83c7eSScott Long children, rxstats.inRangeLengthError, "inRangeLengthError");
6368763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Outbound Range Length Errors",
636906e83c7eSScott Long children, rxstats.outRangeLengthError, "outRangeLengthError");
6370763757b2SScott Long
63717029da5cSPawel Biernacki tree = SYSCTL_ADD_NODE(ctx, schildren, OID_AUTO, "tx",
63727029da5cSPawel Biernacki CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, "BGE TX Statistics");
6373763757b2SScott Long children = SYSCTL_CHILDREN(tree);
6374763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Outbound Octets",
63751cd4773bSPyun YongHyeon children, txstats.ifHCOutOctets, "ifHCOutOctets");
6376763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "TX Collisions",
6377763757b2SScott Long children, txstats.etherStatsCollisions, "Collisions");
6378763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "XON Sent",
6379763757b2SScott Long children, txstats.outXonSent, "XonSent");
6380763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "XOFF Sent",
6381763757b2SScott Long children, txstats.outXoffSent, "XoffSent");
6382763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Flow Control Done",
6383763757b2SScott Long children, txstats.flowControlDone, "flowControlDone");
6384763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Internal MAC TX errors",
6385763757b2SScott Long children, txstats.dot3StatsInternalMacTransmitErrors,
6386763757b2SScott Long "InternalMacTransmitErrors");
6387763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Single Collision Frames",
6388763757b2SScott Long children, txstats.dot3StatsSingleCollisionFrames,
6389763757b2SScott Long "SingleCollisionFrames");
6390763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Multiple Collision Frames",
6391763757b2SScott Long children, txstats.dot3StatsMultipleCollisionFrames,
6392763757b2SScott Long "MultipleCollisionFrames");
6393763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Deferred Transmissions",
6394763757b2SScott Long children, txstats.dot3StatsDeferredTransmissions,
6395763757b2SScott Long "DeferredTransmissions");
6396763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Excessive Collisions",
6397763757b2SScott Long children, txstats.dot3StatsExcessiveCollisions,
6398763757b2SScott Long "ExcessiveCollisions");
6399763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Late Collisions",
640006e83c7eSScott Long children, txstats.dot3StatsLateCollisions,
640106e83c7eSScott Long "LateCollisions");
6402763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Outbound Unicast Packets",
64031cd4773bSPyun YongHyeon children, txstats.ifHCOutUcastPkts, "UnicastPkts");
6404763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Outbound Multicast Packets",
6405763757b2SScott Long children, txstats.ifHCOutMulticastPkts, "MulticastPkts");
6406763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Outbound Broadcast Packets",
6407763757b2SScott Long children, txstats.ifHCOutBroadcastPkts, "BroadcastPkts");
6408763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Carrier Sense Errors",
6409763757b2SScott Long children, txstats.dot3StatsCarrierSenseErrors,
6410763757b2SScott Long "CarrierSenseErrors");
6411763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Outbound Discards",
6412763757b2SScott Long children, txstats.ifOutDiscards, "Discards");
6413763757b2SScott Long BGE_SYSCTL_STAT(sc, ctx, "Outbound Errors",
6414763757b2SScott Long children, txstats.ifOutErrors, "Errors");
6415763757b2SScott Long }
6416763757b2SScott Long
64172280c16bSPyun YongHyeon #undef BGE_SYSCTL_STAT
64182280c16bSPyun YongHyeon
64192280c16bSPyun YongHyeon #define BGE_SYSCTL_STAT_ADD64(c, h, n, p, d) \
64206dc7dc9aSMatthew D Fleming SYSCTL_ADD_UQUAD(c, h, OID_AUTO, n, CTLFLAG_RD, p, d)
64212280c16bSPyun YongHyeon
64222280c16bSPyun YongHyeon static void
bge_add_sysctl_stats_regs(struct bge_softc * sc,struct sysctl_ctx_list * ctx,struct sysctl_oid_list * parent)64232280c16bSPyun YongHyeon bge_add_sysctl_stats_regs(struct bge_softc *sc, struct sysctl_ctx_list *ctx,
64242280c16bSPyun YongHyeon struct sysctl_oid_list *parent)
64252280c16bSPyun YongHyeon {
64262280c16bSPyun YongHyeon struct sysctl_oid *tree;
64272280c16bSPyun YongHyeon struct sysctl_oid_list *child, *schild;
64282280c16bSPyun YongHyeon struct bge_mac_stats *stats;
64292280c16bSPyun YongHyeon
64302280c16bSPyun YongHyeon stats = &sc->bge_mac_stats;
64317029da5cSPawel Biernacki tree = SYSCTL_ADD_NODE(ctx, parent, OID_AUTO, "stats",
64327029da5cSPawel Biernacki CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, "BGE Statistics");
64332280c16bSPyun YongHyeon schild = child = SYSCTL_CHILDREN(tree);
64342280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "FramesDroppedDueToFilters",
64352280c16bSPyun YongHyeon &stats->FramesDroppedDueToFilters, "Frames Dropped Due to Filters");
64362280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "DmaWriteQueueFull",
64372280c16bSPyun YongHyeon &stats->DmaWriteQueueFull, "NIC DMA Write Queue Full");
64382280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "DmaWriteHighPriQueueFull",
64392280c16bSPyun YongHyeon &stats->DmaWriteHighPriQueueFull,
64402280c16bSPyun YongHyeon "NIC DMA Write High Priority Queue Full");
64412280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "NoMoreRxBDs",
64422280c16bSPyun YongHyeon &stats->NoMoreRxBDs, "NIC No More RX Buffer Descriptors");
64432280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "InputDiscards",
64442280c16bSPyun YongHyeon &stats->InputDiscards, "Discarded Input Frames");
64452280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "InputErrors",
64462280c16bSPyun YongHyeon &stats->InputErrors, "Input Errors");
64472280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "RecvThresholdHit",
64482280c16bSPyun YongHyeon &stats->RecvThresholdHit, "NIC Recv Threshold Hit");
64492280c16bSPyun YongHyeon
64507029da5cSPawel Biernacki tree = SYSCTL_ADD_NODE(ctx, schild, OID_AUTO, "rx",
64517029da5cSPawel Biernacki CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, "BGE RX Statistics");
64522280c16bSPyun YongHyeon child = SYSCTL_CHILDREN(tree);
64532280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "ifHCInOctets",
64542280c16bSPyun YongHyeon &stats->ifHCInOctets, "Inbound Octets");
64552280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "Fragments",
64562280c16bSPyun YongHyeon &stats->etherStatsFragments, "Fragments");
64571cd4773bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "UnicastPkts",
64582280c16bSPyun YongHyeon &stats->ifHCInUcastPkts, "Inbound Unicast Packets");
64592280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "MulticastPkts",
64602280c16bSPyun YongHyeon &stats->ifHCInMulticastPkts, "Inbound Multicast Packets");
64612280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "BroadcastPkts",
64622280c16bSPyun YongHyeon &stats->ifHCInBroadcastPkts, "Inbound Broadcast Packets");
64632280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "FCSErrors",
64642280c16bSPyun YongHyeon &stats->dot3StatsFCSErrors, "FCS Errors");
64652280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "AlignmentErrors",
64662280c16bSPyun YongHyeon &stats->dot3StatsAlignmentErrors, "Alignment Errors");
64672280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "xonPauseFramesReceived",
64682280c16bSPyun YongHyeon &stats->xonPauseFramesReceived, "XON Pause Frames Received");
64692280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "xoffPauseFramesReceived",
64702280c16bSPyun YongHyeon &stats->xoffPauseFramesReceived, "XOFF Pause Frames Received");
64712280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "ControlFramesReceived",
64722280c16bSPyun YongHyeon &stats->macControlFramesReceived, "MAC Control Frames Received");
64732280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "xoffStateEntered",
64742280c16bSPyun YongHyeon &stats->xoffStateEntered, "XOFF State Entered");
64752280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "FramesTooLong",
64762280c16bSPyun YongHyeon &stats->dot3StatsFramesTooLong, "Frames Too Long");
64772280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "Jabbers",
64782280c16bSPyun YongHyeon &stats->etherStatsJabbers, "Jabbers");
64792280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "UndersizePkts",
64802280c16bSPyun YongHyeon &stats->etherStatsUndersizePkts, "Undersized Packets");
64812280c16bSPyun YongHyeon
64827029da5cSPawel Biernacki tree = SYSCTL_ADD_NODE(ctx, schild, OID_AUTO, "tx",
64837029da5cSPawel Biernacki CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, "BGE TX Statistics");
64842280c16bSPyun YongHyeon child = SYSCTL_CHILDREN(tree);
64851cd4773bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "ifHCOutOctets",
64862280c16bSPyun YongHyeon &stats->ifHCOutOctets, "Outbound Octets");
64872280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "Collisions",
64882280c16bSPyun YongHyeon &stats->etherStatsCollisions, "TX Collisions");
64892280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "XonSent",
64902280c16bSPyun YongHyeon &stats->outXonSent, "XON Sent");
64912280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "XoffSent",
64922280c16bSPyun YongHyeon &stats->outXoffSent, "XOFF Sent");
64932280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "InternalMacTransmitErrors",
64942280c16bSPyun YongHyeon &stats->dot3StatsInternalMacTransmitErrors,
64952280c16bSPyun YongHyeon "Internal MAC TX Errors");
64962280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "SingleCollisionFrames",
64972280c16bSPyun YongHyeon &stats->dot3StatsSingleCollisionFrames, "Single Collision Frames");
64982280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "MultipleCollisionFrames",
64992280c16bSPyun YongHyeon &stats->dot3StatsMultipleCollisionFrames,
65002280c16bSPyun YongHyeon "Multiple Collision Frames");
65012280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "DeferredTransmissions",
65022280c16bSPyun YongHyeon &stats->dot3StatsDeferredTransmissions, "Deferred Transmissions");
65032280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "ExcessiveCollisions",
65042280c16bSPyun YongHyeon &stats->dot3StatsExcessiveCollisions, "Excessive Collisions");
65052280c16bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "LateCollisions",
65062280c16bSPyun YongHyeon &stats->dot3StatsLateCollisions, "Late Collisions");
65071cd4773bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "UnicastPkts",
65082280c16bSPyun YongHyeon &stats->ifHCOutUcastPkts, "Outbound Unicast Packets");
65091cd4773bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "MulticastPkts",
65102280c16bSPyun YongHyeon &stats->ifHCOutMulticastPkts, "Outbound Multicast Packets");
65111cd4773bSPyun YongHyeon BGE_SYSCTL_STAT_ADD64(ctx, child, "BroadcastPkts",
65122280c16bSPyun YongHyeon &stats->ifHCOutBroadcastPkts, "Outbound Broadcast Packets");
65132280c16bSPyun YongHyeon }
65142280c16bSPyun YongHyeon
65152280c16bSPyun YongHyeon #undef BGE_SYSCTL_STAT_ADD64
65162280c16bSPyun YongHyeon
6517763757b2SScott Long static int
bge_sysctl_stats(SYSCTL_HANDLER_ARGS)6518763757b2SScott Long bge_sysctl_stats(SYSCTL_HANDLER_ARGS)
6519763757b2SScott Long {
6520763757b2SScott Long struct bge_softc *sc;
652106e83c7eSScott Long uint32_t result;
6522d949071dSJung-uk Kim int offset;
6523763757b2SScott Long
6524763757b2SScott Long sc = (struct bge_softc *)arg1;
6525763757b2SScott Long offset = arg2;
6526d949071dSJung-uk Kim result = CSR_READ_4(sc, BGE_MEMWIN_START + BGE_STATS_BLOCK + offset +
6527d949071dSJung-uk Kim offsetof(bge_hostaddr, bge_addr_lo));
6528041b706bSDavid Malone return (sysctl_handle_int(oidp, &result, 0, req));
65296f8718a3SScott Long }
65306f8718a3SScott Long
65316f8718a3SScott Long #ifdef BGE_REGISTER_DEBUG
65326f8718a3SScott Long static int
bge_sysctl_debug_info(SYSCTL_HANDLER_ARGS)65336f8718a3SScott Long bge_sysctl_debug_info(SYSCTL_HANDLER_ARGS)
65346f8718a3SScott Long {
65356f8718a3SScott Long struct bge_softc *sc;
65366f8718a3SScott Long uint16_t *sbdata;
653728276ad6SPyun YongHyeon int error, result, sbsz;
65386f8718a3SScott Long int i, j;
65396f8718a3SScott Long
65406f8718a3SScott Long result = -1;
65416f8718a3SScott Long error = sysctl_handle_int(oidp, &result, 0, req);
65426f8718a3SScott Long if (error || (req->newptr == NULL))
65436f8718a3SScott Long return (error);
65446f8718a3SScott Long
65456f8718a3SScott Long if (result == 1) {
65466f8718a3SScott Long sc = (struct bge_softc *)arg1;
65476f8718a3SScott Long
654828276ad6SPyun YongHyeon if (sc->bge_asicrev == BGE_ASICREV_BCM5700 &&
654928276ad6SPyun YongHyeon sc->bge_chipid != BGE_CHIPID_BCM5700_C0)
655028276ad6SPyun YongHyeon sbsz = BGE_STATUS_BLK_SZ;
655128276ad6SPyun YongHyeon else
655228276ad6SPyun YongHyeon sbsz = 32;
65536f8718a3SScott Long sbdata = (uint16_t *)sc->bge_ldata.bge_status_block;
65546f8718a3SScott Long printf("Status Block:\n");
655528276ad6SPyun YongHyeon BGE_LOCK(sc);
655628276ad6SPyun YongHyeon bus_dmamap_sync(sc->bge_cdata.bge_status_tag,
655728276ad6SPyun YongHyeon sc->bge_cdata.bge_status_map,
655828276ad6SPyun YongHyeon BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
655928276ad6SPyun YongHyeon for (i = 0x0; i < sbsz / sizeof(uint16_t); ) {
65606f8718a3SScott Long printf("%06x:", i);
656128276ad6SPyun YongHyeon for (j = 0; j < 8; j++)
656228276ad6SPyun YongHyeon printf(" %04x", sbdata[i++]);
65636f8718a3SScott Long printf("\n");
65646f8718a3SScott Long }
65656f8718a3SScott Long
65666f8718a3SScott Long printf("Registers:\n");
65670c8aa4eaSJung-uk Kim for (i = 0x800; i < 0xA00; ) {
65686f8718a3SScott Long printf("%06x:", i);
65696f8718a3SScott Long for (j = 0; j < 8; j++) {
65706f8718a3SScott Long printf(" %08x", CSR_READ_4(sc, i));
65716f8718a3SScott Long i += 4;
65726f8718a3SScott Long }
65736f8718a3SScott Long printf("\n");
65746f8718a3SScott Long }
657528276ad6SPyun YongHyeon BGE_UNLOCK(sc);
65766f8718a3SScott Long
65776f8718a3SScott Long printf("Hardware Flags:\n");
657828276ad6SPyun YongHyeon if (BGE_IS_5717_PLUS(sc))
657928276ad6SPyun YongHyeon printf(" - 5717 Plus\n");
6580a5779553SStanislav Sedov if (BGE_IS_5755_PLUS(sc))
6581a5779553SStanislav Sedov printf(" - 5755 Plus\n");
65825345bad0SScott Long if (BGE_IS_575X_PLUS(sc))
65836f8718a3SScott Long printf(" - 575X Plus\n");
65845345bad0SScott Long if (BGE_IS_5705_PLUS(sc))
65856f8718a3SScott Long printf(" - 5705 Plus\n");
65865345bad0SScott Long if (BGE_IS_5714_FAMILY(sc))
65875345bad0SScott Long printf(" - 5714 Family\n");
65885345bad0SScott Long if (BGE_IS_5700_FAMILY(sc))
65895345bad0SScott Long printf(" - 5700 Family\n");
65906f8718a3SScott Long if (sc->bge_flags & BGE_FLAG_JUMBO)
65916f8718a3SScott Long printf(" - Supports Jumbo Frames\n");
65926f8718a3SScott Long if (sc->bge_flags & BGE_FLAG_PCIX)
65936f8718a3SScott Long printf(" - PCI-X Bus\n");
65946f8718a3SScott Long if (sc->bge_flags & BGE_FLAG_PCIE)
65956f8718a3SScott Long printf(" - PCI Express Bus\n");
65967d3d9608SPyun YongHyeon if (sc->bge_phy_flags & BGE_PHY_NO_3LED)
65976f8718a3SScott Long printf(" - No 3 LEDs\n");
65986f8718a3SScott Long if (sc->bge_flags & BGE_FLAG_RX_ALIGNBUG)
65996f8718a3SScott Long printf(" - RX Alignment Bug\n");
66006f8718a3SScott Long }
66016f8718a3SScott Long
66026f8718a3SScott Long return (error);
66036f8718a3SScott Long }
66046f8718a3SScott Long
66056f8718a3SScott Long static int
bge_sysctl_reg_read(SYSCTL_HANDLER_ARGS)66066f8718a3SScott Long bge_sysctl_reg_read(SYSCTL_HANDLER_ARGS)
66076f8718a3SScott Long {
66086f8718a3SScott Long struct bge_softc *sc;
66096f8718a3SScott Long int error;
66106f8718a3SScott Long uint16_t result;
66116f8718a3SScott Long uint32_t val;
66126f8718a3SScott Long
66136f8718a3SScott Long result = -1;
66146f8718a3SScott Long error = sysctl_handle_int(oidp, &result, 0, req);
66156f8718a3SScott Long if (error || (req->newptr == NULL))
66166f8718a3SScott Long return (error);
66176f8718a3SScott Long
66186f8718a3SScott Long if (result < 0x8000) {
66196f8718a3SScott Long sc = (struct bge_softc *)arg1;
66206f8718a3SScott Long val = CSR_READ_4(sc, result);
66216f8718a3SScott Long printf("reg 0x%06X = 0x%08X\n", result, val);
66226f8718a3SScott Long }
66236f8718a3SScott Long
66246f8718a3SScott Long return (error);
66256f8718a3SScott Long }
66266f8718a3SScott Long
66276f8718a3SScott Long static int
bge_sysctl_ape_read(SYSCTL_HANDLER_ARGS)6628548c8f1aSPyun YongHyeon bge_sysctl_ape_read(SYSCTL_HANDLER_ARGS)
6629548c8f1aSPyun YongHyeon {
6630548c8f1aSPyun YongHyeon struct bge_softc *sc;
6631548c8f1aSPyun YongHyeon int error;
6632548c8f1aSPyun YongHyeon uint16_t result;
6633548c8f1aSPyun YongHyeon uint32_t val;
6634548c8f1aSPyun YongHyeon
6635548c8f1aSPyun YongHyeon result = -1;
6636548c8f1aSPyun YongHyeon error = sysctl_handle_int(oidp, &result, 0, req);
6637548c8f1aSPyun YongHyeon if (error || (req->newptr == NULL))
6638548c8f1aSPyun YongHyeon return (error);
6639548c8f1aSPyun YongHyeon
6640548c8f1aSPyun YongHyeon if (result < 0x8000) {
6641548c8f1aSPyun YongHyeon sc = (struct bge_softc *)arg1;
6642548c8f1aSPyun YongHyeon val = APE_READ_4(sc, result);
6643548c8f1aSPyun YongHyeon printf("reg 0x%06X = 0x%08X\n", result, val);
6644548c8f1aSPyun YongHyeon }
6645548c8f1aSPyun YongHyeon
6646548c8f1aSPyun YongHyeon return (error);
6647548c8f1aSPyun YongHyeon }
6648548c8f1aSPyun YongHyeon
6649548c8f1aSPyun YongHyeon static int
bge_sysctl_mem_read(SYSCTL_HANDLER_ARGS)66506f8718a3SScott Long bge_sysctl_mem_read(SYSCTL_HANDLER_ARGS)
66516f8718a3SScott Long {
66526f8718a3SScott Long struct bge_softc *sc;
66536f8718a3SScott Long int error;
66546f8718a3SScott Long uint16_t result;
66556f8718a3SScott Long uint32_t val;
66566f8718a3SScott Long
66576f8718a3SScott Long result = -1;
66586f8718a3SScott Long error = sysctl_handle_int(oidp, &result, 0, req);
66596f8718a3SScott Long if (error || (req->newptr == NULL))
66606f8718a3SScott Long return (error);
66616f8718a3SScott Long
66626f8718a3SScott Long if (result < 0x8000) {
66636f8718a3SScott Long sc = (struct bge_softc *)arg1;
66646f8718a3SScott Long val = bge_readmem_ind(sc, result);
66656f8718a3SScott Long printf("mem 0x%06X = 0x%08X\n", result, val);
66666f8718a3SScott Long }
66676f8718a3SScott Long
66686f8718a3SScott Long return (error);
66696f8718a3SScott Long }
66706f8718a3SScott Long #endif
667138cc658fSJohn Baldwin
667238cc658fSJohn Baldwin static int
bge_get_eaddr_fw(struct bge_softc * sc,uint8_t ether_addr[])66735fea260fSMarius Strobl bge_get_eaddr_fw(struct bge_softc *sc, uint8_t ether_addr[])
66745fea260fSMarius Strobl {
66755fea260fSMarius Strobl return (1);
66765fea260fSMarius Strobl }
66775fea260fSMarius Strobl
66785fea260fSMarius Strobl static int
bge_get_eaddr_mem(struct bge_softc * sc,uint8_t ether_addr[])667938cc658fSJohn Baldwin bge_get_eaddr_mem(struct bge_softc *sc, uint8_t ether_addr[])
668038cc658fSJohn Baldwin {
668138cc658fSJohn Baldwin uint32_t mac_addr;
668238cc658fSJohn Baldwin
668373635418SPyun YongHyeon mac_addr = bge_readmem_ind(sc, BGE_SRAM_MAC_ADDR_HIGH_MB);
668438cc658fSJohn Baldwin if ((mac_addr >> 16) == 0x484b) {
668538cc658fSJohn Baldwin ether_addr[0] = (uint8_t)(mac_addr >> 8);
668638cc658fSJohn Baldwin ether_addr[1] = (uint8_t)mac_addr;
668773635418SPyun YongHyeon mac_addr = bge_readmem_ind(sc, BGE_SRAM_MAC_ADDR_LOW_MB);
668838cc658fSJohn Baldwin ether_addr[2] = (uint8_t)(mac_addr >> 24);
668938cc658fSJohn Baldwin ether_addr[3] = (uint8_t)(mac_addr >> 16);
669038cc658fSJohn Baldwin ether_addr[4] = (uint8_t)(mac_addr >> 8);
669138cc658fSJohn Baldwin ether_addr[5] = (uint8_t)mac_addr;
66925fea260fSMarius Strobl return (0);
669338cc658fSJohn Baldwin }
66945fea260fSMarius Strobl return (1);
669538cc658fSJohn Baldwin }
669638cc658fSJohn Baldwin
669738cc658fSJohn Baldwin static int
bge_get_eaddr_nvram(struct bge_softc * sc,uint8_t ether_addr[])669838cc658fSJohn Baldwin bge_get_eaddr_nvram(struct bge_softc *sc, uint8_t ether_addr[])
669938cc658fSJohn Baldwin {
670038cc658fSJohn Baldwin int mac_offset = BGE_EE_MAC_OFFSET;
670138cc658fSJohn Baldwin
670238cc658fSJohn Baldwin if (sc->bge_asicrev == BGE_ASICREV_BCM5906)
670338cc658fSJohn Baldwin mac_offset = BGE_EE_MAC_OFFSET_5906;
670438cc658fSJohn Baldwin
67055fea260fSMarius Strobl return (bge_read_nvram(sc, ether_addr, mac_offset + 2,
67065fea260fSMarius Strobl ETHER_ADDR_LEN));
670738cc658fSJohn Baldwin }
670838cc658fSJohn Baldwin
670938cc658fSJohn Baldwin static int
bge_get_eaddr_eeprom(struct bge_softc * sc,uint8_t ether_addr[])671038cc658fSJohn Baldwin bge_get_eaddr_eeprom(struct bge_softc *sc, uint8_t ether_addr[])
671138cc658fSJohn Baldwin {
671238cc658fSJohn Baldwin
67135fea260fSMarius Strobl if (sc->bge_asicrev == BGE_ASICREV_BCM5906)
67145fea260fSMarius Strobl return (1);
67155fea260fSMarius Strobl
67165fea260fSMarius Strobl return (bge_read_eeprom(sc, ether_addr, BGE_EE_MAC_OFFSET + 2,
67175fea260fSMarius Strobl ETHER_ADDR_LEN));
671838cc658fSJohn Baldwin }
671938cc658fSJohn Baldwin
672038cc658fSJohn Baldwin static int
bge_get_eaddr(struct bge_softc * sc,uint8_t eaddr[])672138cc658fSJohn Baldwin bge_get_eaddr(struct bge_softc *sc, uint8_t eaddr[])
672238cc658fSJohn Baldwin {
672338cc658fSJohn Baldwin static const bge_eaddr_fcn_t bge_eaddr_funcs[] = {
672438cc658fSJohn Baldwin /* NOTE: Order is critical */
67255fea260fSMarius Strobl bge_get_eaddr_fw,
672638cc658fSJohn Baldwin bge_get_eaddr_mem,
672738cc658fSJohn Baldwin bge_get_eaddr_nvram,
672838cc658fSJohn Baldwin bge_get_eaddr_eeprom,
672938cc658fSJohn Baldwin NULL
673038cc658fSJohn Baldwin };
673138cc658fSJohn Baldwin const bge_eaddr_fcn_t *func;
673238cc658fSJohn Baldwin
673338cc658fSJohn Baldwin for (func = bge_eaddr_funcs; *func != NULL; ++func) {
673438cc658fSJohn Baldwin if ((*func)(sc, eaddr) == 0)
673538cc658fSJohn Baldwin break;
673638cc658fSJohn Baldwin }
673738cc658fSJohn Baldwin return (*func == NULL ? ENXIO : 0);
673838cc658fSJohn Baldwin }
6739df360178SGleb Smirnoff
6740df360178SGleb Smirnoff static uint64_t
bge_get_counter(if_t ifp,ift_counter cnt)6741df360178SGleb Smirnoff bge_get_counter(if_t ifp, ift_counter cnt)
6742df360178SGleb Smirnoff {
6743df360178SGleb Smirnoff struct bge_softc *sc;
6744df360178SGleb Smirnoff struct bge_mac_stats *stats;
6745df360178SGleb Smirnoff
6746df360178SGleb Smirnoff sc = if_getsoftc(ifp);
6747df360178SGleb Smirnoff if (!BGE_IS_5705_PLUS(sc))
6748df360178SGleb Smirnoff return (if_get_counter_default(ifp, cnt));
6749df360178SGleb Smirnoff stats = &sc->bge_mac_stats;
6750df360178SGleb Smirnoff
6751df360178SGleb Smirnoff switch (cnt) {
6752df360178SGleb Smirnoff case IFCOUNTER_IERRORS:
6753df360178SGleb Smirnoff return (stats->NoMoreRxBDs + stats->InputDiscards +
6754df360178SGleb Smirnoff stats->InputErrors);
6755df360178SGleb Smirnoff case IFCOUNTER_COLLISIONS:
6756df360178SGleb Smirnoff return (stats->etherStatsCollisions);
6757df360178SGleb Smirnoff default:
6758df360178SGleb Smirnoff return (if_get_counter_default(ifp, cnt));
6759df360178SGleb Smirnoff }
6760df360178SGleb Smirnoff }
6761ded66962SMark Johnston
67627790c8c1SConrad Meyer #ifdef DEBUGNET
6763ded66962SMark Johnston static void
bge_debugnet_init(if_t ifp,int * nrxr,int * ncl,int * clsize)67647790c8c1SConrad Meyer bge_debugnet_init(if_t ifp, int *nrxr, int *ncl, int *clsize)
6765ded66962SMark Johnston {
6766ded66962SMark Johnston struct bge_softc *sc;
6767ded66962SMark Johnston
6768ded66962SMark Johnston sc = if_getsoftc(ifp);
6769ded66962SMark Johnston BGE_LOCK(sc);
67703ca4a339SEric van Gyzen /*
67713ca4a339SEric van Gyzen * There is only one logical receive ring, but it is backed
67723ca4a339SEric van Gyzen * by two actual rings, for cluster- and jumbo-sized mbufs.
67733ca4a339SEric van Gyzen * Debugnet expects only one size, so if jumbo is in use,
67743ca4a339SEric van Gyzen * this says we have two rings of jumbo mbufs, but that's
67753ca4a339SEric van Gyzen * only a little wasteful.
67763ca4a339SEric van Gyzen */
67773ca4a339SEric van Gyzen *nrxr = 2;
67787790c8c1SConrad Meyer *ncl = DEBUGNET_MAX_IN_FLIGHT;
6779ded66962SMark Johnston if ((sc->bge_flags & BGE_FLAG_JUMBO_STD) != 0 &&
6780ded66962SMark Johnston (if_getmtu(sc->bge_ifp) + ETHER_HDR_LEN + ETHER_CRC_LEN +
6781ded66962SMark Johnston ETHER_VLAN_ENCAP_LEN > (MCLBYTES - ETHER_ALIGN)))
6782ded66962SMark Johnston *clsize = MJUM9BYTES;
6783ded66962SMark Johnston else
6784ded66962SMark Johnston *clsize = MCLBYTES;
6785ded66962SMark Johnston BGE_UNLOCK(sc);
6786ded66962SMark Johnston }
6787ded66962SMark Johnston
6788ded66962SMark Johnston static void
bge_debugnet_event(if_t ifp __unused,enum debugnet_ev event __unused)67897790c8c1SConrad Meyer bge_debugnet_event(if_t ifp __unused, enum debugnet_ev event __unused)
6790ded66962SMark Johnston {
6791ded66962SMark Johnston }
6792ded66962SMark Johnston
6793ded66962SMark Johnston static int
bge_debugnet_transmit(if_t ifp,struct mbuf * m)67947790c8c1SConrad Meyer bge_debugnet_transmit(if_t ifp, struct mbuf *m)
6795ded66962SMark Johnston {
6796ded66962SMark Johnston struct bge_softc *sc;
6797ded66962SMark Johnston uint32_t prodidx;
6798ded66962SMark Johnston int error;
6799ded66962SMark Johnston
6800ded66962SMark Johnston sc = if_getsoftc(ifp);
6801ded66962SMark Johnston if ((if_getdrvflags(ifp) & (IFF_DRV_RUNNING | IFF_DRV_OACTIVE)) !=
6802ded66962SMark Johnston IFF_DRV_RUNNING)
6803ded66962SMark Johnston return (1);
6804ded66962SMark Johnston
6805ded66962SMark Johnston prodidx = sc->bge_tx_prodidx;
6806ded66962SMark Johnston error = bge_encap(sc, &m, &prodidx);
6807ded66962SMark Johnston if (error == 0)
6808ded66962SMark Johnston bge_start_tx(sc, prodidx);
6809ded66962SMark Johnston return (error);
6810ded66962SMark Johnston }
6811ded66962SMark Johnston
6812ded66962SMark Johnston static int
bge_debugnet_poll(if_t ifp,int count)68137790c8c1SConrad Meyer bge_debugnet_poll(if_t ifp, int count)
6814ded66962SMark Johnston {
6815ded66962SMark Johnston struct bge_softc *sc;
6816ded66962SMark Johnston uint32_t rx_prod, tx_cons;
6817ded66962SMark Johnston
6818ded66962SMark Johnston sc = if_getsoftc(ifp);
6819ded66962SMark Johnston if ((if_getdrvflags(ifp) & (IFF_DRV_RUNNING | IFF_DRV_OACTIVE)) !=
6820ded66962SMark Johnston IFF_DRV_RUNNING)
6821ded66962SMark Johnston return (1);
6822ded66962SMark Johnston
6823ded66962SMark Johnston bus_dmamap_sync(sc->bge_cdata.bge_status_tag,
6824ded66962SMark Johnston sc->bge_cdata.bge_status_map,
6825ded66962SMark Johnston BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
6826ded66962SMark Johnston
6827ded66962SMark Johnston rx_prod = sc->bge_ldata.bge_status_block->bge_idx[0].bge_rx_prod_idx;
6828ded66962SMark Johnston tx_cons = sc->bge_ldata.bge_status_block->bge_idx[0].bge_tx_cons_idx;
6829ded66962SMark Johnston
6830ded66962SMark Johnston bus_dmamap_sync(sc->bge_cdata.bge_status_tag,
6831ded66962SMark Johnston sc->bge_cdata.bge_status_map,
6832ded66962SMark Johnston BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
6833ded66962SMark Johnston
6834ded66962SMark Johnston (void)bge_rxeof(sc, rx_prod, 0);
6835ded66962SMark Johnston bge_txeof(sc, tx_cons);
6836ded66962SMark Johnston return (0);
6837ded66962SMark Johnston }
68387790c8c1SConrad Meyer #endif /* DEBUGNET */
6839