xref: /freebsd/sys/dev/fxp/if_fxp.c (revision ddaf6524682b3ab9e50f7575db319814dbbd053a)
1f7788e8eSJonathan Lemon /*-
2b61a5730SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
3718cf2ccSPedro F. Giffuni  *
4a17c678eSDavid Greenman  * Copyright (c) 1995, David Greenman
53bd07cfdSJonathan Lemon  * Copyright (c) 2001 Jonathan Lemon <jlemon@freebsd.org>
6a17c678eSDavid Greenman  * All rights reserved.
7a17c678eSDavid Greenman  *
8a17c678eSDavid Greenman  * Redistribution and use in source and binary forms, with or without
9a17c678eSDavid Greenman  * modification, are permitted provided that the following conditions
10a17c678eSDavid Greenman  * are met:
11a17c678eSDavid Greenman  * 1. Redistributions of source code must retain the above copyright
12a17c678eSDavid Greenman  *    notice unmodified, this list of conditions, and the following
13a17c678eSDavid Greenman  *    disclaimer.
14a17c678eSDavid Greenman  * 2. Redistributions in binary form must reproduce the above copyright
15a17c678eSDavid Greenman  *    notice, this list of conditions and the following disclaimer in the
16a17c678eSDavid Greenman  *    documentation and/or other materials provided with the distribution.
17a17c678eSDavid Greenman  *
18a17c678eSDavid Greenman  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19a17c678eSDavid Greenman  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20a17c678eSDavid Greenman  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21a17c678eSDavid Greenman  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22a17c678eSDavid Greenman  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23a17c678eSDavid Greenman  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24a17c678eSDavid Greenman  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25a17c678eSDavid Greenman  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26a17c678eSDavid Greenman  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27a17c678eSDavid Greenman  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28a17c678eSDavid Greenman  * SUCH DAMAGE.
29a17c678eSDavid Greenman  *
30a17c678eSDavid Greenman  */
31a17c678eSDavid Greenman 
32aad970f1SDavid E. O'Brien #include <sys/cdefs.h>
33a17c678eSDavid Greenman /*
34ae12cddaSDavid Greenman  * Intel EtherExpress Pro/100B PCI Fast Ethernet driver
35a17c678eSDavid Greenman  */
36a17c678eSDavid Greenman 
37f0796cd2SGleb Smirnoff #ifdef HAVE_KERNEL_OPTION_HEADERS
38f0796cd2SGleb Smirnoff #include "opt_device_polling.h"
39f0796cd2SGleb Smirnoff #endif
40f0796cd2SGleb Smirnoff 
41a17c678eSDavid Greenman #include <sys/param.h>
42a17c678eSDavid Greenman #include <sys/systm.h>
438fae3bd4SPyun YongHyeon #include <sys/bus.h>
4483e6547dSMaxime Henrion #include <sys/endian.h>
45a17c678eSDavid Greenman #include <sys/kernel.h>
468fae3bd4SPyun YongHyeon #include <sys/mbuf.h>
476d7e1582SPyun YongHyeon #include <sys/lock.h>
488ec07310SGleb Smirnoff #include <sys/malloc.h>
49fe12f24bSPoul-Henning Kamp #include <sys/module.h>
506d7e1582SPyun YongHyeon #include <sys/mutex.h>
518fae3bd4SPyun YongHyeon #include <sys/rman.h>
524458ac71SBruce Evans #include <sys/socket.h>
538fae3bd4SPyun YongHyeon #include <sys/sockio.h>
5472a32a26SJonathan Lemon #include <sys/sysctl.h>
55a17c678eSDavid Greenman 
568fae3bd4SPyun YongHyeon #include <net/bpf.h>
578fae3bd4SPyun YongHyeon #include <net/ethernet.h>
58a17c678eSDavid Greenman #include <net/if.h>
5976039bc8SGleb Smirnoff #include <net/if_var.h>
608fae3bd4SPyun YongHyeon #include <net/if_arp.h>
61397f9dfeSDavid Greenman #include <net/if_dl.h>
62ba8c6fd5SDavid Greenman #include <net/if_media.h>
63e8c8b728SJonathan Lemon #include <net/if_types.h>
64e8c8b728SJonathan Lemon #include <net/if_vlan_var.h>
65e8c8b728SJonathan Lemon 
66c8bca6dcSBill Paul #include <netinet/in.h>
67c8bca6dcSBill Paul #include <netinet/in_systm.h>
68c8bca6dcSBill Paul #include <netinet/ip.h>
69f13075afSPyun YongHyeon #include <netinet/tcp.h>
70f13075afSPyun YongHyeon #include <netinet/udp.h>
71f13075afSPyun YongHyeon 
72f13075afSPyun YongHyeon #include <machine/bus.h>
73c8bca6dcSBill Paul #include <machine/in_cksum.h>
74f13075afSPyun YongHyeon #include <machine/resource.h>
75c8bca6dcSBill Paul 
764fbd232cSWarner Losh #include <dev/pci/pcivar.h>
774fbd232cSWarner Losh #include <dev/pci/pcireg.h>		/* for PCIM_CMD_xxx */
78a17c678eSDavid Greenman 
79f7788e8eSJonathan Lemon #include <dev/mii/mii.h>
80f7788e8eSJonathan Lemon #include <dev/mii/miivar.h>
81f7788e8eSJonathan Lemon 
82f7788e8eSJonathan Lemon #include <dev/fxp/if_fxpreg.h>
83f7788e8eSJonathan Lemon #include <dev/fxp/if_fxpvar.h>
8472a32a26SJonathan Lemon #include <dev/fxp/rcvbundl.h>
85f7788e8eSJonathan Lemon 
86f246e4a1SMatthew N. Dodd MODULE_DEPEND(fxp, pci, 1, 1, 1);
87f246e4a1SMatthew N. Dodd MODULE_DEPEND(fxp, ether, 1, 1, 1);
88f7788e8eSJonathan Lemon MODULE_DEPEND(fxp, miibus, 1, 1, 1);
89f7788e8eSJonathan Lemon #include "miibus_if.h"
904fc1dda9SAndrew Gallatin 
91ba8c6fd5SDavid Greenman /*
92658c8398SMarius Strobl  * NOTE!  On !x86 we typically have an alignment constraint.  The
93ba8c6fd5SDavid Greenman  * card DMAs the packet immediately following the RFA.  However,
94ba8c6fd5SDavid Greenman  * the first thing in the packet is a 14-byte Ethernet header.
95ba8c6fd5SDavid Greenman  * This means that the packet is misaligned.  To compensate,
96ba8c6fd5SDavid Greenman  * we actually offset the RFA 2 bytes into the cluster.  This
97ba8c6fd5SDavid Greenman  * alignes the packet after the Ethernet header at a 32-bit
98ba8c6fd5SDavid Greenman  * boundary.  HOWEVER!  This means that the RFA is misaligned!
99ba8c6fd5SDavid Greenman  */
100ba8c6fd5SDavid Greenman #define	RFA_ALIGNMENT_FUDGE	2
101ba8c6fd5SDavid Greenman 
102ba8c6fd5SDavid Greenman /*
103f7788e8eSJonathan Lemon  * Set initial transmit threshold at 64 (512 bytes). This is
104f7788e8eSJonathan Lemon  * increased by 64 (512 bytes) at a time, to maximum of 192
105f7788e8eSJonathan Lemon  * (1536 bytes), if an underrun occurs.
106f7788e8eSJonathan Lemon  */
107f7788e8eSJonathan Lemon static int tx_threshold = 64;
108f7788e8eSJonathan Lemon 
109f7788e8eSJonathan Lemon /*
110f7788e8eSJonathan Lemon  * The configuration byte map has several undefined fields which
11172517829SPyun YongHyeon  * must be one or must be zero.  Set up a template for these bits.
112e0fe5c6dSMarius Strobl  * The actual configuration is performed in fxp_init_body.
113f7788e8eSJonathan Lemon  *
114f7788e8eSJonathan Lemon  * See struct fxp_cb_config for the bit definitions.
115f7788e8eSJonathan Lemon  */
11629658c96SDimitry Andric static const u_char fxp_cb_config_template[] = {
117f7788e8eSJonathan Lemon 	0x0, 0x0,		/* cb_status */
118f7788e8eSJonathan Lemon 	0x0, 0x0,		/* cb_command */
119f7788e8eSJonathan Lemon 	0x0, 0x0, 0x0, 0x0,	/* link_addr */
120f7788e8eSJonathan Lemon 	0x0,	/*  0 */
121f7788e8eSJonathan Lemon 	0x0,	/*  1 */
122f7788e8eSJonathan Lemon 	0x0,	/*  2 */
123f7788e8eSJonathan Lemon 	0x0,	/*  3 */
124f7788e8eSJonathan Lemon 	0x0,	/*  4 */
125f7788e8eSJonathan Lemon 	0x0,	/*  5 */
126f7788e8eSJonathan Lemon 	0x32,	/*  6 */
127f7788e8eSJonathan Lemon 	0x0,	/*  7 */
128f7788e8eSJonathan Lemon 	0x0,	/*  8 */
129f7788e8eSJonathan Lemon 	0x0,	/*  9 */
130f7788e8eSJonathan Lemon 	0x6,	/* 10 */
131f7788e8eSJonathan Lemon 	0x0,	/* 11 */
132f7788e8eSJonathan Lemon 	0x0,	/* 12 */
133f7788e8eSJonathan Lemon 	0x0,	/* 13 */
134f7788e8eSJonathan Lemon 	0xf2,	/* 14 */
135f7788e8eSJonathan Lemon 	0x48,	/* 15 */
136f7788e8eSJonathan Lemon 	0x0,	/* 16 */
137f7788e8eSJonathan Lemon 	0x40,	/* 17 */
138f7788e8eSJonathan Lemon 	0xf0,	/* 18 */
139f7788e8eSJonathan Lemon 	0x0,	/* 19 */
140f7788e8eSJonathan Lemon 	0x3f,	/* 20 */
14172517829SPyun YongHyeon 	0x5,	/* 21 */
14272517829SPyun YongHyeon 	0x0,	/* 22 */
14372517829SPyun YongHyeon 	0x0,	/* 23 */
14472517829SPyun YongHyeon 	0x0,	/* 24 */
14572517829SPyun YongHyeon 	0x0,	/* 25 */
14672517829SPyun YongHyeon 	0x0,	/* 26 */
14772517829SPyun YongHyeon 	0x0,	/* 27 */
14872517829SPyun YongHyeon 	0x0,	/* 28 */
14972517829SPyun YongHyeon 	0x0,	/* 29 */
15072517829SPyun YongHyeon 	0x0,	/* 30 */
15172517829SPyun YongHyeon 	0x0	/* 31 */
152f7788e8eSJonathan Lemon };
153f7788e8eSJonathan Lemon 
154f7788e8eSJonathan Lemon /*
155f7788e8eSJonathan Lemon  * Claim various Intel PCI device identifiers for this driver.  The
156f7788e8eSJonathan Lemon  * sub-vendor and sub-device field are extensively used to identify
157f7788e8eSJonathan Lemon  * particular variants, but we don't currently differentiate between
158f7788e8eSJonathan Lemon  * them.
159f7788e8eSJonathan Lemon  */
16029658c96SDimitry Andric static const struct fxp_ident fxp_ident_table[] = {
161aa6b24dcSWarner Losh     { 0x8086, 0x1029,	-1,	0, "Intel 82559 PCI/CardBus Pro/100" },
162aa6b24dcSWarner Losh     { 0x8086, 0x1030,	-1,	0, "Intel 82559 Pro/100 Ethernet" },
163aa6b24dcSWarner Losh     { 0x8086, 0x1031,	-1,	3, "Intel 82801CAM (ICH3) Pro/100 VE Ethernet" },
164aa6b24dcSWarner Losh     { 0x8086, 0x1032,	-1,	3, "Intel 82801CAM (ICH3) Pro/100 VE Ethernet" },
165aa6b24dcSWarner Losh     { 0x8086, 0x1033,	-1,	3, "Intel 82801CAM (ICH3) Pro/100 VM Ethernet" },
166aa6b24dcSWarner Losh     { 0x8086, 0x1034,	-1,	3, "Intel 82801CAM (ICH3) Pro/100 VM Ethernet" },
167aa6b24dcSWarner Losh     { 0x8086, 0x1035,	-1,	3, "Intel 82801CAM (ICH3) Pro/100 Ethernet" },
168aa6b24dcSWarner Losh     { 0x8086, 0x1036,	-1,	3, "Intel 82801CAM (ICH3) Pro/100 Ethernet" },
169aa6b24dcSWarner Losh     { 0x8086, 0x1037,	-1,	3, "Intel 82801CAM (ICH3) Pro/100 Ethernet" },
170aa6b24dcSWarner Losh     { 0x8086, 0x1038,	-1,	3, "Intel 82801CAM (ICH3) Pro/100 VM Ethernet" },
171aa6b24dcSWarner Losh     { 0x8086, 0x1039,	-1,	4, "Intel 82801DB (ICH4) Pro/100 VE Ethernet" },
172aa6b24dcSWarner Losh     { 0x8086, 0x103A,	-1,	4, "Intel 82801DB (ICH4) Pro/100 Ethernet" },
173aa6b24dcSWarner Losh     { 0x8086, 0x103B,	-1,	4, "Intel 82801DB (ICH4) Pro/100 VM Ethernet" },
174aa6b24dcSWarner Losh     { 0x8086, 0x103C,	-1,	4, "Intel 82801DB (ICH4) Pro/100 Ethernet" },
175aa6b24dcSWarner Losh     { 0x8086, 0x103D,	-1,	4, "Intel 82801DB (ICH4) Pro/100 VE Ethernet" },
176aa6b24dcSWarner Losh     { 0x8086, 0x103E,	-1,	4, "Intel 82801DB (ICH4) Pro/100 VM Ethernet" },
177aa6b24dcSWarner Losh     { 0x8086, 0x1050,	-1,	5, "Intel 82801BA (D865) Pro/100 VE Ethernet" },
178aa6b24dcSWarner Losh     { 0x8086, 0x1051,	-1,	5, "Intel 82562ET (ICH5/ICH5R) Pro/100 VE Ethernet" },
179aa6b24dcSWarner Losh     { 0x8086, 0x1059,	-1,	0, "Intel 82551QM Pro/100 M Mobile Connection" },
180aa6b24dcSWarner Losh     { 0x8086, 0x1064,	-1,	6, "Intel 82562EZ (ICH6)" },
181aa6b24dcSWarner Losh     { 0x8086, 0x1065,	-1,	6, "Intel 82562ET/EZ/GT/GZ PRO/100 VE Ethernet" },
182aa6b24dcSWarner Losh     { 0x8086, 0x1068,	-1,	6, "Intel 82801FBM (ICH6-M) Pro/100 VE Ethernet" },
183aa6b24dcSWarner Losh     { 0x8086, 0x1069,	-1,	6, "Intel 82562EM/EX/GX Pro/100 Ethernet" },
184aa6b24dcSWarner Losh     { 0x8086, 0x1091,	-1,	7, "Intel 82562GX Pro/100 Ethernet" },
185aa6b24dcSWarner Losh     { 0x8086, 0x1092,	-1,	7, "Intel Pro/100 VE Network Connection" },
186aa6b24dcSWarner Losh     { 0x8086, 0x1093,	-1,	7, "Intel Pro/100 VM Network Connection" },
187aa6b24dcSWarner Losh     { 0x8086, 0x1094,	-1,	7, "Intel Pro/100 946GZ (ICH7) Network Connection" },
188aa6b24dcSWarner Losh     { 0x8086, 0x1209,	-1,	0, "Intel 82559ER Embedded 10/100 Ethernet" },
189aa6b24dcSWarner Losh     { 0x8086, 0x1229,	0x01,	0, "Intel 82557 Pro/100 Ethernet" },
190aa6b24dcSWarner Losh     { 0x8086, 0x1229,	0x02,	0, "Intel 82557 Pro/100 Ethernet" },
191aa6b24dcSWarner Losh     { 0x8086, 0x1229,	0x03,	0, "Intel 82557 Pro/100 Ethernet" },
192aa6b24dcSWarner Losh     { 0x8086, 0x1229,	0x04,	0, "Intel 82558 Pro/100 Ethernet" },
193aa6b24dcSWarner Losh     { 0x8086, 0x1229,	0x05,	0, "Intel 82558 Pro/100 Ethernet" },
194aa6b24dcSWarner Losh     { 0x8086, 0x1229,	0x06,	0, "Intel 82559 Pro/100 Ethernet" },
195aa6b24dcSWarner Losh     { 0x8086, 0x1229,	0x07,	0, "Intel 82559 Pro/100 Ethernet" },
196aa6b24dcSWarner Losh     { 0x8086, 0x1229,	0x08,	0, "Intel 82559 Pro/100 Ethernet" },
197aa6b24dcSWarner Losh     { 0x8086, 0x1229,	0x09,	0, "Intel 82559ER Pro/100 Ethernet" },
198aa6b24dcSWarner Losh     { 0x8086, 0x1229,	0x0c,	0, "Intel 82550 Pro/100 Ethernet" },
199aa6b24dcSWarner Losh     { 0x8086, 0x1229,	0x0d,	0, "Intel 82550C Pro/100 Ethernet" },
200aa6b24dcSWarner Losh     { 0x8086, 0x1229,	0x0e,	0, "Intel 82550 Pro/100 Ethernet" },
201aa6b24dcSWarner Losh     { 0x8086, 0x1229,	0x0f,	0, "Intel 82551 Pro/100 Ethernet" },
202aa6b24dcSWarner Losh     { 0x8086, 0x1229,	0x10,	0, "Intel 82551 Pro/100 Ethernet" },
203aa6b24dcSWarner Losh     { 0x8086, 0x1229,	-1,	0, "Intel 82557/8/9 Pro/100 Ethernet" },
204aa6b24dcSWarner Losh     { 0x8086, 0x2449,	-1,	2, "Intel 82801BA/CAM (ICH2/3) Pro/100 Ethernet" },
205aa6b24dcSWarner Losh     { 0x8086, 0x27dc,	-1,	7, "Intel 82801GB (ICH7) 10/100 Ethernet" },
206aa6b24dcSWarner Losh     { 0,      0,	-1,	0, NULL },
207f7788e8eSJonathan Lemon };
208f7788e8eSJonathan Lemon 
209c8bca6dcSBill Paul #ifdef FXP_IP_CSUM_WAR
210c8bca6dcSBill Paul #define FXP_CSUM_FEATURES    (CSUM_IP | CSUM_TCP | CSUM_UDP)
211c8bca6dcSBill Paul #else
212c8bca6dcSBill Paul #define FXP_CSUM_FEATURES    (CSUM_TCP | CSUM_UDP)
213c8bca6dcSBill Paul #endif
214c8bca6dcSBill Paul 
215f7788e8eSJonathan Lemon static int		fxp_probe(device_t dev);
216f7788e8eSJonathan Lemon static int		fxp_attach(device_t dev);
217f7788e8eSJonathan Lemon static int		fxp_detach(device_t dev);
218f7788e8eSJonathan Lemon static int		fxp_shutdown(device_t dev);
219f7788e8eSJonathan Lemon static int		fxp_suspend(device_t dev);
220f7788e8eSJonathan Lemon static int		fxp_resume(device_t dev);
221f7788e8eSJonathan Lemon 
222e0fe5c6dSMarius Strobl static const struct fxp_ident *fxp_find_ident(device_t dev);
223f7788e8eSJonathan Lemon static void		fxp_intr(void *xsc);
22441eb5ac3SMarcel Moolenaar static void		fxp_rxcsum(struct fxp_softc *sc, if_t ifp,
225f13075afSPyun YongHyeon 			    struct mbuf *m, uint16_t status, int pos);
22641eb5ac3SMarcel Moolenaar static int		fxp_intr_body(struct fxp_softc *sc, if_t ifp,
22774d1ed23SMaxime Henrion 			    uint8_t statack, int count);
228f7788e8eSJonathan Lemon static void 		fxp_init(void *xsc);
2291845b5c3SMarius Strobl static void 		fxp_init_body(struct fxp_softc *sc, int);
230f7788e8eSJonathan Lemon static void 		fxp_tick(void *xsc);
23141eb5ac3SMarcel Moolenaar static void 		fxp_start(if_t ifp);
23241eb5ac3SMarcel Moolenaar static void 		fxp_start_body(if_t ifp);
2334e53f837SPyun YongHyeon static int		fxp_encap(struct fxp_softc *sc, struct mbuf **m_head);
2344e53f837SPyun YongHyeon static void		fxp_txeof(struct fxp_softc *sc);
235f7788e8eSJonathan Lemon static void		fxp_stop(struct fxp_softc *sc);
236f7788e8eSJonathan Lemon static void 		fxp_release(struct fxp_softc *sc);
23741eb5ac3SMarcel Moolenaar static int		fxp_ioctl(if_t ifp, u_long command,
238f7788e8eSJonathan Lemon 			    caddr_t data);
239df79d527SGleb Smirnoff static void 		fxp_watchdog(struct fxp_softc *sc);
24085050421SPyun YongHyeon static void		fxp_add_rfabuf(struct fxp_softc *sc,
24185050421SPyun YongHyeon 			    struct fxp_rx *rxp);
24285050421SPyun YongHyeon static void		fxp_discard_rfabuf(struct fxp_softc *sc,
24385050421SPyun YongHyeon 			    struct fxp_rx *rxp);
24485050421SPyun YongHyeon static int		fxp_new_rfabuf(struct fxp_softc *sc,
24585050421SPyun YongHyeon 			    struct fxp_rx *rxp);
2461d15d9f0SGleb Smirnoff static void		fxp_mc_addrs(struct fxp_softc *sc);
247f7788e8eSJonathan Lemon static void		fxp_mc_setup(struct fxp_softc *sc);
24874d1ed23SMaxime Henrion static uint16_t		fxp_eeprom_getword(struct fxp_softc *sc, int offset,
249f7788e8eSJonathan Lemon 			    int autosize);
25000c4116bSJonathan Lemon static void 		fxp_eeprom_putword(struct fxp_softc *sc, int offset,
25174d1ed23SMaxime Henrion 			    uint16_t data);
252f7788e8eSJonathan Lemon static void		fxp_autosize_eeprom(struct fxp_softc *sc);
2538262183eSPyun YongHyeon static void		fxp_load_eeprom(struct fxp_softc *sc);
254f7788e8eSJonathan Lemon static void		fxp_read_eeprom(struct fxp_softc *sc, u_short *data,
255f7788e8eSJonathan Lemon 			    int offset, int words);
25600c4116bSJonathan Lemon static void		fxp_write_eeprom(struct fxp_softc *sc, u_short *data,
25700c4116bSJonathan Lemon 			    int offset, int words);
25841eb5ac3SMarcel Moolenaar static int		fxp_ifmedia_upd(if_t ifp);
25941eb5ac3SMarcel Moolenaar static void		fxp_ifmedia_sts(if_t ifp,
260f7788e8eSJonathan Lemon 			    struct ifmediareq *ifmr);
26141eb5ac3SMarcel Moolenaar static int		fxp_serial_ifmedia_upd(if_t ifp);
26241eb5ac3SMarcel Moolenaar static void		fxp_serial_ifmedia_sts(if_t ifp,
263f7788e8eSJonathan Lemon 			    struct ifmediareq *ifmr);
264f1928b0cSKevin Lo static int		fxp_miibus_readreg(device_t dev, int phy, int reg);
26516ec4b00SWarner Losh static int		fxp_miibus_writereg(device_t dev, int phy, int reg,
266f7788e8eSJonathan Lemon 			    int value);
2671845b5c3SMarius Strobl static void		fxp_miibus_statchg(device_t dev);
26872a32a26SJonathan Lemon static void		fxp_load_ucode(struct fxp_softc *sc);
2698da9c507SPyun YongHyeon static void		fxp_update_stats(struct fxp_softc *sc);
2708da9c507SPyun YongHyeon static void		fxp_sysctl_node(struct fxp_softc *sc);
27172a32a26SJonathan Lemon static int		sysctl_int_range(SYSCTL_HANDLER_ARGS,
27272a32a26SJonathan Lemon 			    int low, int high);
27372a32a26SJonathan Lemon static int		sysctl_hw_fxp_bundle_max(SYSCTL_HANDLER_ARGS);
27472a32a26SJonathan Lemon static int		sysctl_hw_fxp_int_delay(SYSCTL_HANDLER_ARGS);
27528935f27SMaxime Henrion static void 		fxp_scb_wait(struct fxp_softc *sc);
27628935f27SMaxime Henrion static void		fxp_scb_cmd(struct fxp_softc *sc, int cmd);
27728935f27SMaxime Henrion static void		fxp_dma_wait(struct fxp_softc *sc,
27874d1ed23SMaxime Henrion 			    volatile uint16_t *status, bus_dma_tag_t dmat,
279209b07bcSMaxime Henrion 			    bus_dmamap_t map);
280f7788e8eSJonathan Lemon 
281f7788e8eSJonathan Lemon static device_method_t fxp_methods[] = {
282f7788e8eSJonathan Lemon 	/* Device interface */
283f7788e8eSJonathan Lemon 	DEVMETHOD(device_probe,		fxp_probe),
284f7788e8eSJonathan Lemon 	DEVMETHOD(device_attach,	fxp_attach),
285f7788e8eSJonathan Lemon 	DEVMETHOD(device_detach,	fxp_detach),
286f7788e8eSJonathan Lemon 	DEVMETHOD(device_shutdown,	fxp_shutdown),
287f7788e8eSJonathan Lemon 	DEVMETHOD(device_suspend,	fxp_suspend),
288f7788e8eSJonathan Lemon 	DEVMETHOD(device_resume,	fxp_resume),
289f7788e8eSJonathan Lemon 
290f7788e8eSJonathan Lemon 	/* MII interface */
291f7788e8eSJonathan Lemon 	DEVMETHOD(miibus_readreg,	fxp_miibus_readreg),
292f7788e8eSJonathan Lemon 	DEVMETHOD(miibus_writereg,	fxp_miibus_writereg),
2931845b5c3SMarius Strobl 	DEVMETHOD(miibus_statchg,	fxp_miibus_statchg),
294f7788e8eSJonathan Lemon 
295e4029d4cSMarius Strobl 	DEVMETHOD_END
296f7788e8eSJonathan Lemon };
297f7788e8eSJonathan Lemon 
298f7788e8eSJonathan Lemon static driver_t fxp_driver = {
299f7788e8eSJonathan Lemon 	"fxp",
300f7788e8eSJonathan Lemon 	fxp_methods,
301f7788e8eSJonathan Lemon 	sizeof(struct fxp_softc),
302f7788e8eSJonathan Lemon };
303f7788e8eSJonathan Lemon 
304a11ab694SJohn Baldwin DRIVER_MODULE_ORDERED(fxp, pci, fxp_driver, NULL, NULL, SI_ORDER_ANY);
30520dd1e71SWarner Losh MODULE_PNP_INFO("U16:vendor;U16:device", pci, fxp, fxp_ident_table,
306329e817fSWarner Losh     nitems(fxp_ident_table) - 1);
3073e38757dSJohn Baldwin DRIVER_MODULE(miibus, fxp, miibus_driver, NULL, NULL);
308f7788e8eSJonathan Lemon 
30905bd8c22SMaxime Henrion static struct resource_spec fxp_res_spec_mem[] = {
31005bd8c22SMaxime Henrion 	{ SYS_RES_MEMORY,	FXP_PCI_MMBA,	RF_ACTIVE },
31105bd8c22SMaxime Henrion 	{ SYS_RES_IRQ,		0,		RF_ACTIVE | RF_SHAREABLE },
31205bd8c22SMaxime Henrion 	{ -1, 0 }
31305bd8c22SMaxime Henrion };
31405bd8c22SMaxime Henrion 
31505bd8c22SMaxime Henrion static struct resource_spec fxp_res_spec_io[] = {
31605bd8c22SMaxime Henrion 	{ SYS_RES_IOPORT,	FXP_PCI_IOBA,	RF_ACTIVE },
31705bd8c22SMaxime Henrion 	{ SYS_RES_IRQ,		0,		RF_ACTIVE | RF_SHAREABLE },
31805bd8c22SMaxime Henrion 	{ -1, 0 }
31905bd8c22SMaxime Henrion };
32005bd8c22SMaxime Henrion 
321f7788e8eSJonathan Lemon /*
322dfe61cf1SDavid Greenman  * Wait for the previous command to be accepted (but not necessarily
323dfe61cf1SDavid Greenman  * completed).
324dfe61cf1SDavid Greenman  */
32528935f27SMaxime Henrion static void
fxp_scb_wait(struct fxp_softc * sc)326f7788e8eSJonathan Lemon fxp_scb_wait(struct fxp_softc *sc)
327a17c678eSDavid Greenman {
3283cf09dd1SMarcel Moolenaar 	union {
3293cf09dd1SMarcel Moolenaar 		uint16_t w;
3303cf09dd1SMarcel Moolenaar 		uint8_t b[2];
3313cf09dd1SMarcel Moolenaar 	} flowctl;
332a17c678eSDavid Greenman 	int i = 10000;
333a17c678eSDavid Greenman 
3347dced78aSDavid Greenman 	while (CSR_READ_1(sc, FXP_CSR_SCB_COMMAND) && --i)
3357dced78aSDavid Greenman 		DELAY(2);
3363cf09dd1SMarcel Moolenaar 	if (i == 0) {
3371845b5c3SMarius Strobl 		flowctl.b[0] = CSR_READ_1(sc, FXP_CSR_FC_THRESH);
3381845b5c3SMarius Strobl 		flowctl.b[1] = CSR_READ_1(sc, FXP_CSR_FC_STATUS);
33900c4116bSJonathan Lemon 		device_printf(sc->dev, "SCB timeout: 0x%x 0x%x 0x%x 0x%x\n",
340e8c8b728SJonathan Lemon 		    CSR_READ_1(sc, FXP_CSR_SCB_COMMAND),
341e8c8b728SJonathan Lemon 		    CSR_READ_1(sc, FXP_CSR_SCB_STATACK),
3423cf09dd1SMarcel Moolenaar 		    CSR_READ_1(sc, FXP_CSR_SCB_RUSCUS), flowctl.w);
3433cf09dd1SMarcel Moolenaar 	}
3447dced78aSDavid Greenman }
3457dced78aSDavid Greenman 
34628935f27SMaxime Henrion static void
fxp_scb_cmd(struct fxp_softc * sc,int cmd)3472e2b8238SJonathan Lemon fxp_scb_cmd(struct fxp_softc *sc, int cmd)
3482e2b8238SJonathan Lemon {
3492e2b8238SJonathan Lemon 
3502e2b8238SJonathan Lemon 	if (cmd == FXP_SCB_COMMAND_CU_RESUME && sc->cu_resume_bug) {
3512e2b8238SJonathan Lemon 		CSR_WRITE_1(sc, FXP_CSR_SCB_COMMAND, FXP_CB_COMMAND_NOP);
3522e2b8238SJonathan Lemon 		fxp_scb_wait(sc);
3532e2b8238SJonathan Lemon 	}
3542e2b8238SJonathan Lemon 	CSR_WRITE_1(sc, FXP_CSR_SCB_COMMAND, cmd);
3552e2b8238SJonathan Lemon }
3562e2b8238SJonathan Lemon 
35728935f27SMaxime Henrion static void
fxp_dma_wait(struct fxp_softc * sc,volatile uint16_t * status,bus_dma_tag_t dmat,bus_dmamap_t map)35874d1ed23SMaxime Henrion fxp_dma_wait(struct fxp_softc *sc, volatile uint16_t *status,
359209b07bcSMaxime Henrion     bus_dma_tag_t dmat, bus_dmamap_t map)
3607dced78aSDavid Greenman {
3615986d0d2SPyun YongHyeon 	int i;
3627dced78aSDavid Greenman 
3635986d0d2SPyun YongHyeon 	for (i = 10000; i > 0; i--) {
3647dced78aSDavid Greenman 		DELAY(2);
3655986d0d2SPyun YongHyeon 		bus_dmamap_sync(dmat, map,
3665986d0d2SPyun YongHyeon 		    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
3675986d0d2SPyun YongHyeon 		if ((le16toh(*status) & FXP_CB_STATUS_C) != 0)
3685986d0d2SPyun YongHyeon 			break;
369209b07bcSMaxime Henrion 	}
3707dced78aSDavid Greenman 	if (i == 0)
371f7788e8eSJonathan Lemon 		device_printf(sc->dev, "DMA timeout\n");
372a17c678eSDavid Greenman }
373a17c678eSDavid Greenman 
374e0fe5c6dSMarius Strobl static const struct fxp_ident *
fxp_find_ident(device_t dev)375b96ad4b2SPyun YongHyeon fxp_find_ident(device_t dev)
376a17c678eSDavid Greenman {
377aa6b24dcSWarner Losh 	uint16_t vendor;
378aa6b24dcSWarner Losh 	uint16_t device;
37974d1ed23SMaxime Henrion 	uint8_t revid;
380e0fe5c6dSMarius Strobl 	const struct fxp_ident *ident;
381f7788e8eSJonathan Lemon 
382aa6b24dcSWarner Losh 	vendor = pci_get_vendor(dev);
383aa6b24dcSWarner Losh 	device = pci_get_device(dev);
384f19fc5d8SJohn Polstra 	revid = pci_get_revid(dev);
385f7788e8eSJonathan Lemon 	for (ident = fxp_ident_table; ident->name != NULL; ident++) {
386aa6b24dcSWarner Losh 		if (ident->vendor == vendor && ident->device == device &&
387f19fc5d8SJohn Polstra 		    (ident->revid == revid || ident->revid == -1)) {
388b96ad4b2SPyun YongHyeon 			return (ident);
389b96ad4b2SPyun YongHyeon 		}
390b96ad4b2SPyun YongHyeon 	}
391b96ad4b2SPyun YongHyeon 	return (NULL);
392b96ad4b2SPyun YongHyeon }
393b96ad4b2SPyun YongHyeon 
394b96ad4b2SPyun YongHyeon /*
395b96ad4b2SPyun YongHyeon  * Return identification string if this device is ours.
396b96ad4b2SPyun YongHyeon  */
397b96ad4b2SPyun YongHyeon static int
fxp_probe(device_t dev)398b96ad4b2SPyun YongHyeon fxp_probe(device_t dev)
399b96ad4b2SPyun YongHyeon {
400e0fe5c6dSMarius Strobl 	const struct fxp_ident *ident;
401b96ad4b2SPyun YongHyeon 
402b96ad4b2SPyun YongHyeon 	ident = fxp_find_ident(dev);
403b96ad4b2SPyun YongHyeon 	if (ident != NULL) {
404f7788e8eSJonathan Lemon 		device_set_desc(dev, ident->name);
405538565c4SWarner Losh 		return (BUS_PROBE_DEFAULT);
40655ce7b51SDavid Greenman 	}
407f7788e8eSJonathan Lemon 	return (ENXIO);
4086182fdbdSPeter Wemm }
4096182fdbdSPeter Wemm 
410b2badf02SMaxime Henrion static void
fxp_dma_map_addr(void * arg,bus_dma_segment_t * segs,int nseg,int error)411b2badf02SMaxime Henrion fxp_dma_map_addr(void *arg, bus_dma_segment_t *segs, int nseg, int error)
412b2badf02SMaxime Henrion {
41374d1ed23SMaxime Henrion 	uint32_t *addr;
414b2badf02SMaxime Henrion 
415b2badf02SMaxime Henrion 	if (error)
416b2badf02SMaxime Henrion 		return;
417b2badf02SMaxime Henrion 
418b2badf02SMaxime Henrion 	KASSERT(nseg == 1, ("too many DMA segments, %d should be 1", nseg));
419b2badf02SMaxime Henrion 	addr = arg;
420b2badf02SMaxime Henrion 	*addr = segs->ds_addr;
421b2badf02SMaxime Henrion }
422b2badf02SMaxime Henrion 
4236182fdbdSPeter Wemm static int
fxp_attach(device_t dev)4246182fdbdSPeter Wemm fxp_attach(device_t dev)
425a17c678eSDavid Greenman {
4266720ebccSMaxime Henrion 	struct fxp_softc *sc;
4276720ebccSMaxime Henrion 	struct fxp_cb_tx *tcbp;
4286720ebccSMaxime Henrion 	struct fxp_tx *txp;
429b2badf02SMaxime Henrion 	struct fxp_rx *rxp;
43041eb5ac3SMarcel Moolenaar 	if_t ifp;
43174d1ed23SMaxime Henrion 	uint32_t val;
4328262183eSPyun YongHyeon 	uint16_t data;
433fc74a9f9SBrooks Davis 	u_char eaddr[ETHER_ADDR_LEN];
434*ddaf6524SJohn Baldwin 	int error, flags, i, prefer_iomap;
435a17c678eSDavid Greenman 
4366720ebccSMaxime Henrion 	error = 0;
4376720ebccSMaxime Henrion 	sc = device_get_softc(dev);
438f7788e8eSJonathan Lemon 	sc->dev = dev;
4396008862bSJohn Baldwin 	mtx_init(&sc->sc_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
4404953bccaSNate Lawson 	    MTX_DEF);
4413212724cSJohn Baldwin 	callout_init_mtx(&sc->stat_ch, &sc->sc_mtx, 0);
44209a8241fSGleb Smirnoff 	ifmedia_init(&sc->sc_media, 0, fxp_serial_ifmedia_upd,
4434953bccaSNate Lawson 	    fxp_serial_ifmedia_sts);
444a17c678eSDavid Greenman 
44541eb5ac3SMarcel Moolenaar 	ifp = sc->ifp = if_gethandle(IFT_ETHER);
4467ba33d82SBrooks Davis 
447dfe61cf1SDavid Greenman 	/*
4482bce79a2SMaxim Sobolev 	 * Enable bus mastering.
449df373873SWes Peters 	 */
450cf0d8a1eSMaxim Sobolev 	pci_enable_busmaster(dev);
45179495006SWarner Losh 
452df373873SWes Peters 	/*
4539fa6ccfbSMatt Jacob 	 * Figure out which we should try first - memory mapping or i/o mapping?
4549fa6ccfbSMatt Jacob 	 * We default to memory mapping. Then we accept an override from the
4559fa6ccfbSMatt Jacob 	 * command line. Then we check to see which one is enabled.
456dfe61cf1SDavid Greenman 	 */
4572a05a4ebSMatt Jacob 	prefer_iomap = 0;
45805bd8c22SMaxime Henrion 	resource_int_value(device_get_name(dev), device_get_unit(dev),
45905bd8c22SMaxime Henrion 	    "prefer_iomap", &prefer_iomap);
46005bd8c22SMaxime Henrion 	if (prefer_iomap)
46105bd8c22SMaxime Henrion 		sc->fxp_spec = fxp_res_spec_io;
46205bd8c22SMaxime Henrion 	else
46305bd8c22SMaxime Henrion 		sc->fxp_spec = fxp_res_spec_mem;
4649fa6ccfbSMatt Jacob 
46505bd8c22SMaxime Henrion 	error = bus_alloc_resources(dev, sc->fxp_spec, sc->fxp_res);
46605bd8c22SMaxime Henrion 	if (error) {
46705bd8c22SMaxime Henrion 		if (sc->fxp_spec == fxp_res_spec_mem)
46805bd8c22SMaxime Henrion 			sc->fxp_spec = fxp_res_spec_io;
46905bd8c22SMaxime Henrion 		else
47005bd8c22SMaxime Henrion 			sc->fxp_spec = fxp_res_spec_mem;
47105bd8c22SMaxime Henrion 		error = bus_alloc_resources(dev, sc->fxp_spec, sc->fxp_res);
4729fa6ccfbSMatt Jacob 	}
47305bd8c22SMaxime Henrion 	if (error) {
47405bd8c22SMaxime Henrion 		device_printf(dev, "could not allocate resources\n");
4756182fdbdSPeter Wemm 		error = ENXIO;
476a17c678eSDavid Greenman 		goto fail;
477a17c678eSDavid Greenman 	}
47805bd8c22SMaxime Henrion 
4799fa6ccfbSMatt Jacob 	if (bootverbose) {
4809fa6ccfbSMatt Jacob 		device_printf(dev, "using %s space register mapping\n",
48105bd8c22SMaxime Henrion 		   sc->fxp_spec == fxp_res_spec_mem ? "memory" : "I/O");
4826182fdbdSPeter Wemm 	}
4836182fdbdSPeter Wemm 
484f7788e8eSJonathan Lemon 	/*
485a996f023SPyun YongHyeon 	 * Put CU/RU idle state and prepare full reset.
486f7788e8eSJonathan Lemon 	 */
487f7788e8eSJonathan Lemon 	CSR_WRITE_4(sc, FXP_CSR_PORT, FXP_PORT_SELECTIVE_RESET);
488f7788e8eSJonathan Lemon 	DELAY(10);
489a996f023SPyun YongHyeon 	/* Full reset and disable interrupts. */
490a996f023SPyun YongHyeon 	CSR_WRITE_4(sc, FXP_CSR_PORT, FXP_PORT_SOFTWARE_RESET);
491a996f023SPyun YongHyeon 	DELAY(10);
492a996f023SPyun YongHyeon 	CSR_WRITE_1(sc, FXP_CSR_SCB_INTRCNTL, FXP_SCB_INTR_DISABLE);
493f7788e8eSJonathan Lemon 
494f7788e8eSJonathan Lemon 	/*
495f7788e8eSJonathan Lemon 	 * Find out how large of an SEEPROM we have.
496f7788e8eSJonathan Lemon 	 */
497f7788e8eSJonathan Lemon 	fxp_autosize_eeprom(sc);
4988262183eSPyun YongHyeon 	fxp_load_eeprom(sc);
499f7788e8eSJonathan Lemon 
500f7788e8eSJonathan Lemon 	/*
50193b6e2e6SMaxime Henrion 	 * Find out the chip revision; lump all 82557 revs together.
50293b6e2e6SMaxime Henrion 	 */
503b96ad4b2SPyun YongHyeon 	sc->ident = fxp_find_ident(dev);
504b96ad4b2SPyun YongHyeon 	if (sc->ident->ich > 0) {
505b96ad4b2SPyun YongHyeon 		/* Assume ICH controllers are 82559. */
506b96ad4b2SPyun YongHyeon 		sc->revision = FXP_REV_82559_A0;
507b96ad4b2SPyun YongHyeon 	} else {
5088262183eSPyun YongHyeon 		data = sc->eeprom[FXP_EEPROM_MAP_CNTR];
50993b6e2e6SMaxime Henrion 		if ((data >> 8) == 1)
51093b6e2e6SMaxime Henrion 			sc->revision = FXP_REV_82557;
51193b6e2e6SMaxime Henrion 		else
51293b6e2e6SMaxime Henrion 			sc->revision = pci_get_revid(dev);
513b96ad4b2SPyun YongHyeon 	}
51493b6e2e6SMaxime Henrion 
51593b6e2e6SMaxime Henrion 	/*
5167137cea0SPyun YongHyeon 	 * Check availability of WOL. 82559ER does not support WOL.
5177137cea0SPyun YongHyeon 	 */
5187137cea0SPyun YongHyeon 	if (sc->revision >= FXP_REV_82558_A4 &&
5197137cea0SPyun YongHyeon 	    sc->revision != FXP_REV_82559S_A) {
5208262183eSPyun YongHyeon 		data = sc->eeprom[FXP_EEPROM_MAP_ID];
521*ddaf6524SJohn Baldwin 		if ((data & 0x20) != 0 && pci_has_pm(sc->dev))
5227137cea0SPyun YongHyeon 			sc->flags |= FXP_FLAG_WOLCAP;
5237137cea0SPyun YongHyeon 	}
5247137cea0SPyun YongHyeon 
5251343a72fSPyun YongHyeon 	if (sc->revision == FXP_REV_82550_C) {
5261343a72fSPyun YongHyeon 		/*
5271343a72fSPyun YongHyeon 		 * 82550C with server extension requires microcode to
5281343a72fSPyun YongHyeon 		 * receive fragmented UDP datagrams.  However if the
5291343a72fSPyun YongHyeon 		 * microcode is used for client-only featured 82550C
5301343a72fSPyun YongHyeon 		 * it locks up controller.
5311343a72fSPyun YongHyeon 		 */
5328262183eSPyun YongHyeon 		data = sc->eeprom[FXP_EEPROM_MAP_COMPAT];
5331343a72fSPyun YongHyeon 		if ((data & 0x0400) == 0)
5341343a72fSPyun YongHyeon 			sc->flags |= FXP_FLAG_NO_UCODE;
5351343a72fSPyun YongHyeon 	}
5361343a72fSPyun YongHyeon 
53743d8b117SPyun YongHyeon 	/* Receiver lock-up workaround detection. */
5386e854927SPyun YongHyeon 	if (sc->revision < FXP_REV_82558_A4) {
5398262183eSPyun YongHyeon 		data = sc->eeprom[FXP_EEPROM_MAP_COMPAT];
54043d8b117SPyun YongHyeon 		if ((data & 0x03) != 0x03) {
54143d8b117SPyun YongHyeon 			sc->flags |= FXP_FLAG_RXBUG;
54243d8b117SPyun YongHyeon 			device_printf(dev, "Enabling Rx lock-up workaround\n");
54343d8b117SPyun YongHyeon 		}
5446e854927SPyun YongHyeon 	}
54543d8b117SPyun YongHyeon 
5467137cea0SPyun YongHyeon 	/*
5473bd07cfdSJonathan Lemon 	 * Determine whether we must use the 503 serial interface.
548f7788e8eSJonathan Lemon 	 */
5498262183eSPyun YongHyeon 	data = sc->eeprom[FXP_EEPROM_MAP_PRI_PHY];
55093b6e2e6SMaxime Henrion 	if (sc->revision == FXP_REV_82557 && (data & FXP_PHY_DEVICE_MASK) != 0
5514ed53076SMaxime Henrion 	    && (data & FXP_PHY_SERIAL_ONLY))
552dedabebfSJonathan Lemon 		sc->flags |= FXP_FLAG_SERIAL_MEDIA;
553f7788e8eSJonathan Lemon 
5548da9c507SPyun YongHyeon 	fxp_sysctl_node(sc);
55572a32a26SJonathan Lemon 	/*
5562e2b8238SJonathan Lemon 	 * Enable workarounds for certain chip revision deficiencies.
55700c4116bSJonathan Lemon 	 *
55872a32a26SJonathan Lemon 	 * Systems based on the ICH2/ICH2-M chip from Intel, and possibly
55972a32a26SJonathan Lemon 	 * some systems based a normal 82559 design, have a defect where
56072a32a26SJonathan Lemon 	 * the chip can cause a PCI protocol violation if it receives
56100c4116bSJonathan Lemon 	 * a CU_RESUME command when it is entering the IDLE state.  The
56200c4116bSJonathan Lemon 	 * workaround is to disable Dynamic Standby Mode, so the chip never
56300c4116bSJonathan Lemon 	 * deasserts CLKRUN#, and always remains in an active state.
56400c4116bSJonathan Lemon 	 *
56500c4116bSJonathan Lemon 	 * See Intel 82801BA/82801BAM Specification Update, Errata #30.
5662e2b8238SJonathan Lemon 	 */
567b96ad4b2SPyun YongHyeon 	if ((sc->ident->ich >= 2 && sc->ident->ich <= 3) ||
568b96ad4b2SPyun YongHyeon 	    (sc->ident->ich == 0 && sc->revision >= FXP_REV_82559_A0)) {
5698262183eSPyun YongHyeon 		data = sc->eeprom[FXP_EEPROM_MAP_ID];
57000c4116bSJonathan Lemon 		if (data & 0x02) {			/* STB enable */
57174d1ed23SMaxime Henrion 			uint16_t cksum;
57200c4116bSJonathan Lemon 			int i;
57300c4116bSJonathan Lemon 
57400c4116bSJonathan Lemon 			device_printf(dev,
575001cfa92SJonathan Lemon 			    "Disabling dynamic standby mode in EEPROM\n");
57600c4116bSJonathan Lemon 			data &= ~0x02;
5778262183eSPyun YongHyeon 			sc->eeprom[FXP_EEPROM_MAP_ID] = data;
5788262183eSPyun YongHyeon 			fxp_write_eeprom(sc, &data, FXP_EEPROM_MAP_ID, 1);
57900c4116bSJonathan Lemon 			device_printf(dev, "New EEPROM ID: 0x%x\n", data);
58000c4116bSJonathan Lemon 			cksum = 0;
5818262183eSPyun YongHyeon 			for (i = 0; i < (1 << sc->eeprom_size) - 1; i++)
5828262183eSPyun YongHyeon 				cksum += sc->eeprom[i];
58300c4116bSJonathan Lemon 			i = (1 << sc->eeprom_size) - 1;
58400c4116bSJonathan Lemon 			cksum = 0xBABA - cksum;
58500c4116bSJonathan Lemon 			fxp_write_eeprom(sc, &cksum, i, 1);
58600c4116bSJonathan Lemon 			device_printf(dev,
58700c4116bSJonathan Lemon 			    "EEPROM checksum @ 0x%x: 0x%x -> 0x%x\n",
5888262183eSPyun YongHyeon 			    i, sc->eeprom[i], cksum);
5898262183eSPyun YongHyeon 			sc->eeprom[i] = cksum;
59000c4116bSJonathan Lemon 			/*
59100c4116bSJonathan Lemon 			 * If the user elects to continue, try the software
59200c4116bSJonathan Lemon 			 * workaround, as it is better than nothing.
59300c4116bSJonathan Lemon 			 */
5942e2b8238SJonathan Lemon 			sc->flags |= FXP_FLAG_CU_RESUME_BUG;
59500c4116bSJonathan Lemon 		}
59600c4116bSJonathan Lemon 	}
5972e2b8238SJonathan Lemon 
5982e2b8238SJonathan Lemon 	/*
5993bd07cfdSJonathan Lemon 	 * If we are not a 82557 chip, we can enable extended features.
6003bd07cfdSJonathan Lemon 	 */
60172a32a26SJonathan Lemon 	if (sc->revision != FXP_REV_82557) {
6023bd07cfdSJonathan Lemon 		/*
60374396a0aSJonathan Lemon 		 * If MWI is enabled in the PCI configuration, and there
60474396a0aSJonathan Lemon 		 * is a valid cacheline size (8 or 16 dwords), then tell
60574396a0aSJonathan Lemon 		 * the board to turn on MWI.
6063bd07cfdSJonathan Lemon 		 */
607c68534f1SScott Long 		val = pci_read_config(dev, PCIR_COMMAND, 2);
60874396a0aSJonathan Lemon 		if (val & PCIM_CMD_MWRICEN &&
60974396a0aSJonathan Lemon 		    pci_read_config(dev, PCIR_CACHELNSZ, 1) != 0)
6103bd07cfdSJonathan Lemon 			sc->flags |= FXP_FLAG_MWI_ENABLE;
6113bd07cfdSJonathan Lemon 
6123bd07cfdSJonathan Lemon 		/* turn on the extended TxCB feature */
6133bd07cfdSJonathan Lemon 		sc->flags |= FXP_FLAG_EXT_TXCB;
61444e0bc11SYaroslav Tykhiy 
61544e0bc11SYaroslav Tykhiy 		/* enable reception of long frames for VLAN */
61644e0bc11SYaroslav Tykhiy 		sc->flags |= FXP_FLAG_LONG_PKT_EN;
61744e0bc11SYaroslav Tykhiy 	} else {
61844e0bc11SYaroslav Tykhiy 		/* a hack to get long VLAN frames on a 82557 */
61944e0bc11SYaroslav Tykhiy 		sc->flags |= FXP_FLAG_SAVE_BAD;
6203bd07cfdSJonathan Lemon 	}
6213bd07cfdSJonathan Lemon 
622f13075afSPyun YongHyeon 	/* For 82559 or later chips, Rx checksum offload is supported. */
623829b278eSPyun YongHyeon 	if (sc->revision >= FXP_REV_82559_A0) {
624829b278eSPyun YongHyeon 		/* 82559ER does not support Rx checksum offloading. */
625aa6b24dcSWarner Losh 		if (sc->ident->device != 0x1209)
626f13075afSPyun YongHyeon 			sc->flags |= FXP_FLAG_82559_RXCSUM;
627829b278eSPyun YongHyeon 	}
6283bd07cfdSJonathan Lemon 	/*
629c8bca6dcSBill Paul 	 * Enable use of extended RFDs and TCBs for 82550
630c8bca6dcSBill Paul 	 * and later chips. Note: we need extended TXCB support
631c8bca6dcSBill Paul 	 * too, but that's already enabled by the code above.
632c8bca6dcSBill Paul 	 * Be careful to do this only on the right devices.
633c8bca6dcSBill Paul 	 */
634507feeafSMaxime Henrion 	if (sc->revision == FXP_REV_82550 || sc->revision == FXP_REV_82550_C ||
635507feeafSMaxime Henrion 	    sc->revision == FXP_REV_82551_E || sc->revision == FXP_REV_82551_F
636507feeafSMaxime Henrion 	    || sc->revision == FXP_REV_82551_10) {
637c8bca6dcSBill Paul 		sc->rfa_size = sizeof (struct fxp_rfa);
638c8bca6dcSBill Paul 		sc->tx_cmd = FXP_CB_COMMAND_IPCBXMIT;
639c8bca6dcSBill Paul 		sc->flags |= FXP_FLAG_EXT_RFA;
640f13075afSPyun YongHyeon 		/* Use extended RFA instead of 82559 checksum mode. */
641f13075afSPyun YongHyeon 		sc->flags &= ~FXP_FLAG_82559_RXCSUM;
642c8bca6dcSBill Paul 	} else {
643c8bca6dcSBill Paul 		sc->rfa_size = sizeof (struct fxp_rfa) - FXP_RFAX_LEN;
644c8bca6dcSBill Paul 		sc->tx_cmd = FXP_CB_COMMAND_XMIT;
645c8bca6dcSBill Paul 	}
646c8bca6dcSBill Paul 
647c8bca6dcSBill Paul 	/*
648b2badf02SMaxime Henrion 	 * Allocate DMA tags and DMA safe memory.
649b2badf02SMaxime Henrion 	 */
65040c20505SMaxime Henrion 	sc->maxtxseg = FXP_NTXSEG;
651c21e84e4SPyun YongHyeon 	sc->maxsegsize = MCLBYTES;
652c21e84e4SPyun YongHyeon 	if (sc->flags & FXP_FLAG_EXT_RFA) {
65340c20505SMaxime Henrion 		sc->maxtxseg--;
654c21e84e4SPyun YongHyeon 		sc->maxsegsize = FXP_TSO_SEGSIZE;
655c21e84e4SPyun YongHyeon 	}
656c2175ff5SMarius Strobl 	error = bus_dma_tag_create(bus_get_dma_tag(dev), 2, 0,
657c2175ff5SMarius Strobl 	    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
658c21e84e4SPyun YongHyeon 	    sc->maxsegsize * sc->maxtxseg + sizeof(struct ether_vlan_header),
6595ae7518bSAlexander Motin 	    sc->maxtxseg, sc->maxsegsize, 0, NULL, NULL, &sc->fxp_txmtag);
660b2badf02SMaxime Henrion 	if (error) {
661a2057a72SPyun YongHyeon 		device_printf(dev, "could not create TX DMA tag\n");
662a2057a72SPyun YongHyeon 		goto fail;
663a2057a72SPyun YongHyeon 	}
664a2057a72SPyun YongHyeon 
665a2057a72SPyun YongHyeon 	error = bus_dma_tag_create(bus_get_dma_tag(dev), 2, 0,
666a2057a72SPyun YongHyeon 	    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
6675ae7518bSAlexander Motin 	    MCLBYTES, 1, MCLBYTES, 0, NULL, NULL, &sc->fxp_rxmtag);
668a2057a72SPyun YongHyeon 	if (error) {
669a2057a72SPyun YongHyeon 		device_printf(dev, "could not create RX DMA tag\n");
670b2badf02SMaxime Henrion 		goto fail;
671b2badf02SMaxime Henrion 	}
672b2badf02SMaxime Henrion 
673c2175ff5SMarius Strobl 	error = bus_dma_tag_create(bus_get_dma_tag(dev), 4, 0,
674c2175ff5SMarius Strobl 	    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
675c2175ff5SMarius Strobl 	    sizeof(struct fxp_stats), 1, sizeof(struct fxp_stats), 0,
6765ae7518bSAlexander Motin 	    NULL, NULL, &sc->fxp_stag);
677b2badf02SMaxime Henrion 	if (error) {
678a2057a72SPyun YongHyeon 		device_printf(dev, "could not create stats DMA tag\n");
679b2badf02SMaxime Henrion 		goto fail;
680b2badf02SMaxime Henrion 	}
681b2badf02SMaxime Henrion 
682b2badf02SMaxime Henrion 	error = bus_dmamem_alloc(sc->fxp_stag, (void **)&sc->fxp_stats,
683658c8398SMarius Strobl 	    BUS_DMA_NOWAIT | BUS_DMA_COHERENT | BUS_DMA_ZERO, &sc->fxp_smap);
684a2057a72SPyun YongHyeon 	if (error) {
685a2057a72SPyun YongHyeon 		device_printf(dev, "could not allocate stats DMA memory\n");
6864953bccaSNate Lawson 		goto fail;
687a2057a72SPyun YongHyeon 	}
688b2badf02SMaxime Henrion 	error = bus_dmamap_load(sc->fxp_stag, sc->fxp_smap, sc->fxp_stats,
689f9d050a8SPyun YongHyeon 	    sizeof(struct fxp_stats), fxp_dma_map_addr, &sc->stats_addr,
690f9d050a8SPyun YongHyeon 	    BUS_DMA_NOWAIT);
691b2badf02SMaxime Henrion 	if (error) {
692a2057a72SPyun YongHyeon 		device_printf(dev, "could not load the stats DMA buffer\n");
693b2badf02SMaxime Henrion 		goto fail;
694b2badf02SMaxime Henrion 	}
695b2badf02SMaxime Henrion 
696c2175ff5SMarius Strobl 	error = bus_dma_tag_create(bus_get_dma_tag(dev), 4, 0,
697c2175ff5SMarius Strobl 	    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
6985ae7518bSAlexander Motin 	    FXP_TXCB_SZ, 1, FXP_TXCB_SZ, 0, NULL, NULL, &sc->cbl_tag);
699b2badf02SMaxime Henrion 	if (error) {
700a2057a72SPyun YongHyeon 		device_printf(dev, "could not create TxCB DMA tag\n");
701b2badf02SMaxime Henrion 		goto fail;
702b2badf02SMaxime Henrion 	}
703b2badf02SMaxime Henrion 
704b2badf02SMaxime Henrion 	error = bus_dmamem_alloc(sc->cbl_tag, (void **)&sc->fxp_desc.cbl_list,
705658c8398SMarius Strobl 	    BUS_DMA_NOWAIT | BUS_DMA_COHERENT | BUS_DMA_ZERO, &sc->cbl_map);
706a2057a72SPyun YongHyeon 	if (error) {
707a2057a72SPyun YongHyeon 		device_printf(dev, "could not allocate TxCB DMA memory\n");
7084953bccaSNate Lawson 		goto fail;
709a2057a72SPyun YongHyeon 	}
710b2badf02SMaxime Henrion 
711b2badf02SMaxime Henrion 	error = bus_dmamap_load(sc->cbl_tag, sc->cbl_map,
712b2badf02SMaxime Henrion 	    sc->fxp_desc.cbl_list, FXP_TXCB_SZ, fxp_dma_map_addr,
713f9d050a8SPyun YongHyeon 	    &sc->fxp_desc.cbl_addr, BUS_DMA_NOWAIT);
714b2badf02SMaxime Henrion 	if (error) {
715a2057a72SPyun YongHyeon 		device_printf(dev, "could not load TxCB DMA buffer\n");
716b2badf02SMaxime Henrion 		goto fail;
717b2badf02SMaxime Henrion 	}
718b2badf02SMaxime Henrion 
719c2175ff5SMarius Strobl 	error = bus_dma_tag_create(bus_get_dma_tag(dev), 4, 0,
720c2175ff5SMarius Strobl 	    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
721c2175ff5SMarius Strobl 	    sizeof(struct fxp_cb_mcs), 1, sizeof(struct fxp_cb_mcs), 0,
7225ae7518bSAlexander Motin 	    NULL, NULL, &sc->mcs_tag);
723b2badf02SMaxime Henrion 	if (error) {
724a2057a72SPyun YongHyeon 		device_printf(dev,
725a2057a72SPyun YongHyeon 		    "could not create multicast setup DMA tag\n");
726b2badf02SMaxime Henrion 		goto fail;
727b2badf02SMaxime Henrion 	}
728b2badf02SMaxime Henrion 
729b2badf02SMaxime Henrion 	error = bus_dmamem_alloc(sc->mcs_tag, (void **)&sc->mcsp,
730658c8398SMarius Strobl 	    BUS_DMA_NOWAIT | BUS_DMA_COHERENT | BUS_DMA_ZERO, &sc->mcs_map);
731a2057a72SPyun YongHyeon 	if (error) {
732a2057a72SPyun YongHyeon 		device_printf(dev,
733a2057a72SPyun YongHyeon 		    "could not allocate multicast setup DMA memory\n");
7344953bccaSNate Lawson 		goto fail;
735a2057a72SPyun YongHyeon 	}
736b2badf02SMaxime Henrion 	error = bus_dmamap_load(sc->mcs_tag, sc->mcs_map, sc->mcsp,
737f9d050a8SPyun YongHyeon 	    sizeof(struct fxp_cb_mcs), fxp_dma_map_addr, &sc->mcs_addr,
738f9d050a8SPyun YongHyeon 	    BUS_DMA_NOWAIT);
739b2badf02SMaxime Henrion 	if (error) {
740a2057a72SPyun YongHyeon 		device_printf(dev,
741a2057a72SPyun YongHyeon 		    "can't load the multicast setup DMA buffer\n");
742b2badf02SMaxime Henrion 		goto fail;
743b2badf02SMaxime Henrion 	}
744b2badf02SMaxime Henrion 
745b2badf02SMaxime Henrion 	/*
7466720ebccSMaxime Henrion 	 * Pre-allocate the TX DMA maps and setup the pointers to
7476720ebccSMaxime Henrion 	 * the TX command blocks.
748b2badf02SMaxime Henrion 	 */
7496720ebccSMaxime Henrion 	txp = sc->fxp_desc.tx_list;
7506720ebccSMaxime Henrion 	tcbp = sc->fxp_desc.cbl_list;
7514cec1653SMaxime Henrion 	for (i = 0; i < FXP_NTXCB; i++) {
7526720ebccSMaxime Henrion 		txp[i].tx_cb = tcbp + i;
753a2057a72SPyun YongHyeon 		error = bus_dmamap_create(sc->fxp_txmtag, 0, &txp[i].tx_map);
754b2badf02SMaxime Henrion 		if (error) {
755b2badf02SMaxime Henrion 			device_printf(dev, "can't create DMA map for TX\n");
756b2badf02SMaxime Henrion 			goto fail;
757b2badf02SMaxime Henrion 		}
758b2badf02SMaxime Henrion 	}
759a2057a72SPyun YongHyeon 	error = bus_dmamap_create(sc->fxp_rxmtag, 0, &sc->spare_map);
760b2badf02SMaxime Henrion 	if (error) {
761b2badf02SMaxime Henrion 		device_printf(dev, "can't create spare DMA map\n");
762b2badf02SMaxime Henrion 		goto fail;
763b2badf02SMaxime Henrion 	}
764b2badf02SMaxime Henrion 
765b2badf02SMaxime Henrion 	/*
766b2badf02SMaxime Henrion 	 * Pre-allocate our receive buffers.
767b2badf02SMaxime Henrion 	 */
768b2badf02SMaxime Henrion 	sc->fxp_desc.rx_head = sc->fxp_desc.rx_tail = NULL;
769b2badf02SMaxime Henrion 	for (i = 0; i < FXP_NRFABUFS; i++) {
770b2badf02SMaxime Henrion 		rxp = &sc->fxp_desc.rx_list[i];
771a2057a72SPyun YongHyeon 		error = bus_dmamap_create(sc->fxp_rxmtag, 0, &rxp->rx_map);
772b2badf02SMaxime Henrion 		if (error) {
773b2badf02SMaxime Henrion 			device_printf(dev, "can't create DMA map for RX\n");
774b2badf02SMaxime Henrion 			goto fail;
775b2badf02SMaxime Henrion 		}
77685050421SPyun YongHyeon 		if (fxp_new_rfabuf(sc, rxp) != 0) {
7774953bccaSNate Lawson 			error = ENOMEM;
7784953bccaSNate Lawson 			goto fail;
7794953bccaSNate Lawson 		}
78085050421SPyun YongHyeon 		fxp_add_rfabuf(sc, rxp);
781b2badf02SMaxime Henrion 	}
782b2badf02SMaxime Henrion 
783b2badf02SMaxime Henrion 	/*
784f7788e8eSJonathan Lemon 	 * Read MAC address.
785f7788e8eSJonathan Lemon 	 */
7868262183eSPyun YongHyeon 	eaddr[0] = sc->eeprom[FXP_EEPROM_MAP_IA0] & 0xff;
7878262183eSPyun YongHyeon 	eaddr[1] = sc->eeprom[FXP_EEPROM_MAP_IA0] >> 8;
7888262183eSPyun YongHyeon 	eaddr[2] = sc->eeprom[FXP_EEPROM_MAP_IA1] & 0xff;
7898262183eSPyun YongHyeon 	eaddr[3] = sc->eeprom[FXP_EEPROM_MAP_IA1] >> 8;
7908262183eSPyun YongHyeon 	eaddr[4] = sc->eeprom[FXP_EEPROM_MAP_IA2] & 0xff;
7918262183eSPyun YongHyeon 	eaddr[5] = sc->eeprom[FXP_EEPROM_MAP_IA2] >> 8;
792f7788e8eSJonathan Lemon 	if (bootverbose) {
7932e2b8238SJonathan Lemon 		device_printf(dev, "PCI IDs: %04x %04x %04x %04x %04x\n",
794f7788e8eSJonathan Lemon 		    pci_get_vendor(dev), pci_get_device(dev),
7952e2b8238SJonathan Lemon 		    pci_get_subvendor(dev), pci_get_subdevice(dev),
7962e2b8238SJonathan Lemon 		    pci_get_revid(dev));
79772a32a26SJonathan Lemon 		device_printf(dev, "Dynamic Standby mode is %s\n",
7988262183eSPyun YongHyeon 		    sc->eeprom[FXP_EEPROM_MAP_ID] & 0x02 ? "enabled" :
7998262183eSPyun YongHyeon 		    "disabled");
800f7788e8eSJonathan Lemon 	}
801f7788e8eSJonathan Lemon 
802f7788e8eSJonathan Lemon 	/*
803f7788e8eSJonathan Lemon 	 * If this is only a 10Mbps device, then there is no MII, and
804f7788e8eSJonathan Lemon 	 * the PHY will use a serial interface instead.
805f7788e8eSJonathan Lemon 	 *
806f7788e8eSJonathan Lemon 	 * The Seeq 80c24 AutoDUPLEX(tm) Ethernet Interface Adapter
807f7788e8eSJonathan Lemon 	 * doesn't have a programming interface of any sort.  The
808f7788e8eSJonathan Lemon 	 * media is sensed automatically based on how the link partner
809f7788e8eSJonathan Lemon 	 * is configured.  This is, in essence, manual configuration.
810f7788e8eSJonathan Lemon 	 */
811f7788e8eSJonathan Lemon 	if (sc->flags & FXP_FLAG_SERIAL_MEDIA) {
812f7788e8eSJonathan Lemon 		ifmedia_add(&sc->sc_media, IFM_ETHER|IFM_MANUAL, 0, NULL);
813f7788e8eSJonathan Lemon 		ifmedia_set(&sc->sc_media, IFM_ETHER|IFM_MANUAL);
814f7788e8eSJonathan Lemon 	} else {
8158e5d93dbSMarius Strobl 		/*
8168e5d93dbSMarius Strobl 		 * i82557 wedge when isolating all of their PHYs.
8178e5d93dbSMarius Strobl 		 */
8181845b5c3SMarius Strobl 		flags = MIIF_NOISOLATE;
8191845b5c3SMarius Strobl 		if (sc->revision >= FXP_REV_82558_A4)
8201845b5c3SMarius Strobl 			flags |= MIIF_DOPAUSE;
82141eb5ac3SMarcel Moolenaar 		error = mii_attach(dev, &sc->miibus, ifp,
82241eb5ac3SMarcel Moolenaar 		    (ifm_change_cb_t)fxp_ifmedia_upd,
82341eb5ac3SMarcel Moolenaar 		    (ifm_stat_cb_t)fxp_ifmedia_sts, BMSR_DEFCAPMASK,
82441eb5ac3SMarcel Moolenaar 		    MII_PHY_ANY, MII_OFFSET_ANY, flags);
8258e5d93dbSMarius Strobl 		if (error != 0) {
8268e5d93dbSMarius Strobl 			device_printf(dev, "attaching PHYs failed\n");
827ba8c6fd5SDavid Greenman 			goto fail;
828a17c678eSDavid Greenman 		}
829f7788e8eSJonathan Lemon 	}
830dccee1a1SDavid Greenman 
83109a8241fSGleb Smirnoff 	if_initname(ifp, device_get_name(dev), device_get_unit(dev));
83241eb5ac3SMarcel Moolenaar 	if_setdev(ifp, dev);
83341eb5ac3SMarcel Moolenaar 	if_setinitfn(ifp, fxp_init);
83441eb5ac3SMarcel Moolenaar 	if_setsoftc(ifp, sc);
83541eb5ac3SMarcel Moolenaar 	if_setflags(ifp, IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST);
83641eb5ac3SMarcel Moolenaar 	if_setioctlfn(ifp, fxp_ioctl);
83741eb5ac3SMarcel Moolenaar 	if_setstartfn(ifp, fxp_start);
838a17c678eSDavid Greenman 
83941eb5ac3SMarcel Moolenaar 	if_setcapabilities(ifp, 0);
84041eb5ac3SMarcel Moolenaar 	if_setcapenable(ifp, 0);
8415fe9116bSYaroslav Tykhiy 
842c21e84e4SPyun YongHyeon 	/* Enable checksum offload/TSO for 82550 or better chips */
843c8bca6dcSBill Paul 	if (sc->flags & FXP_FLAG_EXT_RFA) {
84441eb5ac3SMarcel Moolenaar 		if_sethwassist(ifp, FXP_CSUM_FEATURES | CSUM_TSO);
84541eb5ac3SMarcel Moolenaar 		if_setcapabilitiesbit(ifp, IFCAP_HWCSUM | IFCAP_TSO4, 0);
84641eb5ac3SMarcel Moolenaar 		if_setcapenablebit(ifp, IFCAP_HWCSUM | IFCAP_TSO4, 0);
847c8bca6dcSBill Paul 	}
848c8bca6dcSBill Paul 
849f13075afSPyun YongHyeon 	if (sc->flags & FXP_FLAG_82559_RXCSUM) {
85041eb5ac3SMarcel Moolenaar 		if_setcapabilitiesbit(ifp, IFCAP_RXCSUM, 0);
85141eb5ac3SMarcel Moolenaar 		if_setcapenablebit(ifp, IFCAP_RXCSUM, 0);
852f13075afSPyun YongHyeon 	}
853f13075afSPyun YongHyeon 
8547137cea0SPyun YongHyeon 	if (sc->flags & FXP_FLAG_WOLCAP) {
85541eb5ac3SMarcel Moolenaar 		if_setcapabilitiesbit(ifp, IFCAP_WOL_MAGIC, 0);
85641eb5ac3SMarcel Moolenaar 		if_setcapenablebit(ifp, IFCAP_WOL_MAGIC, 0);
8577137cea0SPyun YongHyeon 	}
8587137cea0SPyun YongHyeon 
859fb917226SRuslan Ermilov #ifdef DEVICE_POLLING
860fb917226SRuslan Ermilov 	/* Inform the world we support polling. */
86141eb5ac3SMarcel Moolenaar 	if_setcapabilitiesbit(ifp, IFCAP_POLLING, 0);
862fb917226SRuslan Ermilov #endif
863fb917226SRuslan Ermilov 
864dfe61cf1SDavid Greenman 	/*
8654953bccaSNate Lawson 	 * Attach the interface.
8664953bccaSNate Lawson 	 */
86709a8241fSGleb Smirnoff 	ether_ifattach(ifp, eaddr);
8684953bccaSNate Lawson 
8694953bccaSNate Lawson 	/*
870e8c8b728SJonathan Lemon 	 * Tell the upper layer(s) we support long frames.
8715fe9116bSYaroslav Tykhiy 	 * Must appear after the call to ether_ifattach() because
8725fe9116bSYaroslav Tykhiy 	 * ether_ifattach() sets ifi_hdrlen to the default value.
873e8c8b728SJonathan Lemon 	 */
87441eb5ac3SMarcel Moolenaar 	if_setifheaderlen(ifp, sizeof(struct ether_vlan_header));
87541eb5ac3SMarcel Moolenaar 	if_setcapabilitiesbit(ifp, IFCAP_VLAN_MTU, 0);
87641eb5ac3SMarcel Moolenaar 	if_setcapenablebit(ifp, IFCAP_VLAN_MTU, 0);
877bd4fa9d9SPyun YongHyeon 	if ((sc->flags & FXP_FLAG_EXT_RFA) != 0) {
87841eb5ac3SMarcel Moolenaar 		if_setcapabilitiesbit(ifp, IFCAP_VLAN_HWTAGGING |
87941eb5ac3SMarcel Moolenaar 		    IFCAP_VLAN_HWCSUM | IFCAP_VLAN_HWTSO, 0);
88041eb5ac3SMarcel Moolenaar 		if_setcapenablebit(ifp, IFCAP_VLAN_HWTAGGING |
88141eb5ac3SMarcel Moolenaar 		    IFCAP_VLAN_HWCSUM | IFCAP_VLAN_HWTSO, 0);
882bd4fa9d9SPyun YongHyeon 	}
883e8c8b728SJonathan Lemon 
884483b9871SDavid Greenman 	/*
8853114fdb4SDavid Greenman 	 * Let the system queue as many packets as we have available
8863114fdb4SDavid Greenman 	 * TX descriptors.
887483b9871SDavid Greenman 	 */
88841eb5ac3SMarcel Moolenaar 	if_setsendqlen(ifp, FXP_NTXCB - 1);
88941eb5ac3SMarcel Moolenaar 	if_setsendqready(ifp);
8904a684684SDavid Greenman 
891201afb0eSMaxime Henrion 	/*
8924953bccaSNate Lawson 	 * Hook our interrupt after all initialization is complete.
893201afb0eSMaxime Henrion 	 */
89405bd8c22SMaxime Henrion 	error = bus_setup_intr(dev, sc->fxp_res[1], INTR_TYPE_NET | INTR_MPSAFE,
895ef544f63SPaolo Pisati 			       NULL, fxp_intr, sc, &sc->ih);
896201afb0eSMaxime Henrion 	if (error) {
897201afb0eSMaxime Henrion 		device_printf(dev, "could not setup irq\n");
89809a8241fSGleb Smirnoff 		ether_ifdetach(sc->ifp);
899201afb0eSMaxime Henrion 		goto fail;
900201afb0eSMaxime Henrion 	}
901201afb0eSMaxime Henrion 
9027137cea0SPyun YongHyeon 	/*
9037137cea0SPyun YongHyeon 	 * Configure hardware to reject magic frames otherwise
9047137cea0SPyun YongHyeon 	 * system will hang on recipt of magic frames.
9057137cea0SPyun YongHyeon 	 */
9067137cea0SPyun YongHyeon 	if ((sc->flags & FXP_FLAG_WOLCAP) != 0) {
9077137cea0SPyun YongHyeon 		FXP_LOCK(sc);
9087137cea0SPyun YongHyeon 		/* Clear wakeup events. */
909af75b654SPyun YongHyeon 		CSR_WRITE_1(sc, FXP_CSR_PMDR, CSR_READ_1(sc, FXP_CSR_PMDR));
910a461b201SPyun YongHyeon 		fxp_init_body(sc, 0);
9117137cea0SPyun YongHyeon 		fxp_stop(sc);
9127137cea0SPyun YongHyeon 		FXP_UNLOCK(sc);
9137137cea0SPyun YongHyeon 	}
9147137cea0SPyun YongHyeon 
915a17c678eSDavid Greenman fail:
9161b5a39d3SBrooks Davis 	if (error)
917f7788e8eSJonathan Lemon 		fxp_release(sc);
918f7788e8eSJonathan Lemon 	return (error);
919f7788e8eSJonathan Lemon }
920f7788e8eSJonathan Lemon 
921f7788e8eSJonathan Lemon /*
9224953bccaSNate Lawson  * Release all resources.  The softc lock should not be held and the
9234953bccaSNate Lawson  * interrupt should already be torn down.
924f7788e8eSJonathan Lemon  */
925f7788e8eSJonathan Lemon static void
fxp_release(struct fxp_softc * sc)926f7788e8eSJonathan Lemon fxp_release(struct fxp_softc *sc)
927f7788e8eSJonathan Lemon {
928b2badf02SMaxime Henrion 	struct fxp_rx *rxp;
929b2badf02SMaxime Henrion 	struct fxp_tx *txp;
930b2badf02SMaxime Henrion 	int i;
931b2badf02SMaxime Henrion 
93267fc050fSMaxime Henrion 	FXP_LOCK_ASSERT(sc, MA_NOTOWNED);
933670f5d73SMaxime Henrion 	KASSERT(sc->ih == NULL,
934670f5d73SMaxime Henrion 	    ("fxp_release() called with intr handle still active"));
9354953bccaSNate Lawson 	bus_generic_detach(sc->dev);
9364953bccaSNate Lawson 	ifmedia_removeall(&sc->sc_media);
937b2badf02SMaxime Henrion 	if (sc->fxp_desc.cbl_list) {
938b2badf02SMaxime Henrion 		bus_dmamap_unload(sc->cbl_tag, sc->cbl_map);
939b2badf02SMaxime Henrion 		bus_dmamem_free(sc->cbl_tag, sc->fxp_desc.cbl_list,
940b2badf02SMaxime Henrion 		    sc->cbl_map);
941b2badf02SMaxime Henrion 	}
942b2badf02SMaxime Henrion 	if (sc->fxp_stats) {
943b2badf02SMaxime Henrion 		bus_dmamap_unload(sc->fxp_stag, sc->fxp_smap);
944b2badf02SMaxime Henrion 		bus_dmamem_free(sc->fxp_stag, sc->fxp_stats, sc->fxp_smap);
945b2badf02SMaxime Henrion 	}
946b2badf02SMaxime Henrion 	if (sc->mcsp) {
947b2badf02SMaxime Henrion 		bus_dmamap_unload(sc->mcs_tag, sc->mcs_map);
948b2badf02SMaxime Henrion 		bus_dmamem_free(sc->mcs_tag, sc->mcsp, sc->mcs_map);
949b2badf02SMaxime Henrion 	}
95005bd8c22SMaxime Henrion 	bus_release_resources(sc->dev, sc->fxp_spec, sc->fxp_res);
951a2057a72SPyun YongHyeon 	if (sc->fxp_rxmtag) {
952b983c7b3SMaxime Henrion 		for (i = 0; i < FXP_NRFABUFS; i++) {
953b983c7b3SMaxime Henrion 			rxp = &sc->fxp_desc.rx_list[i];
954b983c7b3SMaxime Henrion 			if (rxp->rx_mbuf != NULL) {
955a2057a72SPyun YongHyeon 				bus_dmamap_sync(sc->fxp_rxmtag, rxp->rx_map,
956b983c7b3SMaxime Henrion 				    BUS_DMASYNC_POSTREAD);
957a2057a72SPyun YongHyeon 				bus_dmamap_unload(sc->fxp_rxmtag, rxp->rx_map);
958b983c7b3SMaxime Henrion 				m_freem(rxp->rx_mbuf);
959b983c7b3SMaxime Henrion 			}
960a2057a72SPyun YongHyeon 			bus_dmamap_destroy(sc->fxp_rxmtag, rxp->rx_map);
961b983c7b3SMaxime Henrion 		}
962a2057a72SPyun YongHyeon 		bus_dmamap_destroy(sc->fxp_rxmtag, sc->spare_map);
963a2057a72SPyun YongHyeon 		bus_dma_tag_destroy(sc->fxp_rxmtag);
964a2057a72SPyun YongHyeon 	}
965a2057a72SPyun YongHyeon 	if (sc->fxp_txmtag) {
966b983c7b3SMaxime Henrion 		for (i = 0; i < FXP_NTXCB; i++) {
967b983c7b3SMaxime Henrion 			txp = &sc->fxp_desc.tx_list[i];
968b983c7b3SMaxime Henrion 			if (txp->tx_mbuf != NULL) {
969a2057a72SPyun YongHyeon 				bus_dmamap_sync(sc->fxp_txmtag, txp->tx_map,
970b983c7b3SMaxime Henrion 				    BUS_DMASYNC_POSTWRITE);
971a2057a72SPyun YongHyeon 				bus_dmamap_unload(sc->fxp_txmtag, txp->tx_map);
972b983c7b3SMaxime Henrion 				m_freem(txp->tx_mbuf);
973b983c7b3SMaxime Henrion 			}
974a2057a72SPyun YongHyeon 			bus_dmamap_destroy(sc->fxp_txmtag, txp->tx_map);
975b983c7b3SMaxime Henrion 		}
976a2057a72SPyun YongHyeon 		bus_dma_tag_destroy(sc->fxp_txmtag);
977b983c7b3SMaxime Henrion 	}
978c4bf1e90SMaxime Henrion 	if (sc->fxp_stag)
979c4bf1e90SMaxime Henrion 		bus_dma_tag_destroy(sc->fxp_stag);
980b2badf02SMaxime Henrion 	if (sc->cbl_tag)
981b2badf02SMaxime Henrion 		bus_dma_tag_destroy(sc->cbl_tag);
982b2badf02SMaxime Henrion 	if (sc->mcs_tag)
983b2badf02SMaxime Henrion 		bus_dma_tag_destroy(sc->mcs_tag);
984fc74a9f9SBrooks Davis 	if (sc->ifp)
98509a8241fSGleb Smirnoff 		if_free(sc->ifp);
98672a32a26SJonathan Lemon 
9870f4dc94cSChuck Paterson 	mtx_destroy(&sc->sc_mtx);
9886182fdbdSPeter Wemm }
9896182fdbdSPeter Wemm 
9906182fdbdSPeter Wemm /*
9916182fdbdSPeter Wemm  * Detach interface.
9926182fdbdSPeter Wemm  */
9936182fdbdSPeter Wemm static int
fxp_detach(device_t dev)9946182fdbdSPeter Wemm fxp_detach(device_t dev)
9956182fdbdSPeter Wemm {
9966182fdbdSPeter Wemm 	struct fxp_softc *sc = device_get_softc(dev);
9976182fdbdSPeter Wemm 
99840929967SGleb Smirnoff #ifdef DEVICE_POLLING
99941eb5ac3SMarcel Moolenaar 	if (if_getcapenable(sc->ifp) & IFCAP_POLLING)
1000bd071d4dSGleb Smirnoff 		ether_poll_deregister(sc->ifp);
100140929967SGleb Smirnoff #endif
100240929967SGleb Smirnoff 
10034953bccaSNate Lawson 	FXP_LOCK(sc);
10046182fdbdSPeter Wemm 	/*
100532cd7a9cSWarner Losh 	 * Stop DMA and drop transmit queue, but disable interrupts first.
100620f0c80fSMaxime Henrion 	 */
100720f0c80fSMaxime Henrion 	CSR_WRITE_1(sc, FXP_CSR_SCB_INTRCNTL, FXP_SCB_INTR_DISABLE);
100820f0c80fSMaxime Henrion 	fxp_stop(sc);
100932cd7a9cSWarner Losh 	FXP_UNLOCK(sc);
10109eda9d7aSJohn Baldwin 	callout_drain(&sc->stat_ch);
101120f0c80fSMaxime Henrion 
10126182fdbdSPeter Wemm 	/*
10133212724cSJohn Baldwin 	 * Close down routes etc.
10143212724cSJohn Baldwin 	 */
101509a8241fSGleb Smirnoff 	ether_ifdetach(sc->ifp);
10163212724cSJohn Baldwin 
10173212724cSJohn Baldwin 	/*
10184953bccaSNate Lawson 	 * Unhook interrupt before dropping lock. This is to prevent
10194953bccaSNate Lawson 	 * races with fxp_intr().
10206182fdbdSPeter Wemm 	 */
102105bd8c22SMaxime Henrion 	bus_teardown_intr(sc->dev, sc->fxp_res[1], sc->ih);
10224953bccaSNate Lawson 	sc->ih = NULL;
10236182fdbdSPeter Wemm 
1024f7788e8eSJonathan Lemon 	/* Release our allocated resources. */
1025f7788e8eSJonathan Lemon 	fxp_release(sc);
1026f7788e8eSJonathan Lemon 	return (0);
1027a17c678eSDavid Greenman }
1028a17c678eSDavid Greenman 
1029a17c678eSDavid Greenman /*
10304a684684SDavid Greenman  * Device shutdown routine. Called at system shutdown after sync. The
1031a17c678eSDavid Greenman  * main purpose of this routine is to shut off receiver DMA so that
1032a17c678eSDavid Greenman  * kernel memory doesn't get clobbered during warmboot.
1033a17c678eSDavid Greenman  */
10346182fdbdSPeter Wemm static int
fxp_shutdown(device_t dev)10356182fdbdSPeter Wemm fxp_shutdown(device_t dev)
1036a17c678eSDavid Greenman {
10373212724cSJohn Baldwin 
10386182fdbdSPeter Wemm 	/*
10396182fdbdSPeter Wemm 	 * Make sure that DMA is disabled prior to reboot. Not doing
10406182fdbdSPeter Wemm 	 * do could allow DMA to corrupt kernel memory during the
10416182fdbdSPeter Wemm 	 * reboot before the driver initializes.
10426182fdbdSPeter Wemm 	 */
10437137cea0SPyun YongHyeon 	return (fxp_suspend(dev));
1044a17c678eSDavid Greenman }
1045a17c678eSDavid Greenman 
10467dced78aSDavid Greenman /*
10477dced78aSDavid Greenman  * Device suspend routine.  Stop the interface and save some PCI
10487dced78aSDavid Greenman  * settings in case the BIOS doesn't restore them properly on
10497dced78aSDavid Greenman  * resume.
10507dced78aSDavid Greenman  */
10517dced78aSDavid Greenman static int
fxp_suspend(device_t dev)10527dced78aSDavid Greenman fxp_suspend(device_t dev)
10537dced78aSDavid Greenman {
10547dced78aSDavid Greenman 	struct fxp_softc *sc = device_get_softc(dev);
105541eb5ac3SMarcel Moolenaar 	if_t ifp;
10567dced78aSDavid Greenman 
10574953bccaSNate Lawson 	FXP_LOCK(sc);
10587dced78aSDavid Greenman 
10597137cea0SPyun YongHyeon 	ifp = sc->ifp;
106041eb5ac3SMarcel Moolenaar 	if ((if_getcapenable(ifp) & IFCAP_WOL_MAGIC) != 0) {
10617137cea0SPyun YongHyeon 		/* Request PME. */
1062*ddaf6524SJohn Baldwin 		pci_enable_pme(sc->dev);
10637137cea0SPyun YongHyeon 		sc->flags |= FXP_FLAG_WOL;
10647137cea0SPyun YongHyeon 		/* Reconfigure hardware to accept magic frames. */
106541eb5ac3SMarcel Moolenaar 		if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
10665506afefSPyun YongHyeon 		fxp_init_body(sc, 0);
10677137cea0SPyun YongHyeon 	}
10687dced78aSDavid Greenman 	fxp_stop(sc);
10697dced78aSDavid Greenman 
10707dced78aSDavid Greenman 	sc->suspended = 1;
10717dced78aSDavid Greenman 
10724953bccaSNate Lawson 	FXP_UNLOCK(sc);
1073f7788e8eSJonathan Lemon 	return (0);
10747dced78aSDavid Greenman }
10757dced78aSDavid Greenman 
10767dced78aSDavid Greenman /*
107767ba6566SWarner Losh  * Device resume routine. re-enable busmastering, and restart the interface if
10787dced78aSDavid Greenman  * appropriate.
10797dced78aSDavid Greenman  */
10807dced78aSDavid Greenman static int
fxp_resume(device_t dev)10817dced78aSDavid Greenman fxp_resume(device_t dev)
10827dced78aSDavid Greenman {
10837dced78aSDavid Greenman 	struct fxp_softc *sc = device_get_softc(dev);
108441eb5ac3SMarcel Moolenaar 	if_t ifp = sc->ifp;
10857dced78aSDavid Greenman 
10864953bccaSNate Lawson 	FXP_LOCK(sc);
10877dced78aSDavid Greenman 
1088*ddaf6524SJohn Baldwin 	if (pci_has_pm(sc->dev)) {
10897137cea0SPyun YongHyeon 		sc->flags &= ~FXP_FLAG_WOL;
1090af75b654SPyun YongHyeon 		if ((sc->flags & FXP_FLAG_WOLCAP) != 0)
1091af75b654SPyun YongHyeon 			CSR_WRITE_1(sc, FXP_CSR_PMDR,
1092af75b654SPyun YongHyeon 			    CSR_READ_1(sc, FXP_CSR_PMDR));
10937137cea0SPyun YongHyeon 	}
10947137cea0SPyun YongHyeon 
10957dced78aSDavid Greenman 	CSR_WRITE_4(sc, FXP_CSR_PORT, FXP_PORT_SELECTIVE_RESET);
10967dced78aSDavid Greenman 	DELAY(10);
10977dced78aSDavid Greenman 
10987dced78aSDavid Greenman 	/* reinitialize interface if necessary */
109941eb5ac3SMarcel Moolenaar 	if (if_getflags(ifp) & IFF_UP)
11001845b5c3SMarius Strobl 		fxp_init_body(sc, 1);
11017dced78aSDavid Greenman 
11027dced78aSDavid Greenman 	sc->suspended = 0;
11037dced78aSDavid Greenman 
11044953bccaSNate Lawson 	FXP_UNLOCK(sc);
1105ba8c6fd5SDavid Greenman 	return (0);
1106f7788e8eSJonathan Lemon }
1107ba8c6fd5SDavid Greenman 
110800c4116bSJonathan Lemon static void
fxp_eeprom_shiftin(struct fxp_softc * sc,int data,int length)110900c4116bSJonathan Lemon fxp_eeprom_shiftin(struct fxp_softc *sc, int data, int length)
111000c4116bSJonathan Lemon {
111174d1ed23SMaxime Henrion 	uint16_t reg;
111200c4116bSJonathan Lemon 	int x;
111300c4116bSJonathan Lemon 
111400c4116bSJonathan Lemon 	/*
111500c4116bSJonathan Lemon 	 * Shift in data.
111600c4116bSJonathan Lemon 	 */
111700c4116bSJonathan Lemon 	for (x = 1 << (length - 1); x; x >>= 1) {
111800c4116bSJonathan Lemon 		if (data & x)
111900c4116bSJonathan Lemon 			reg = FXP_EEPROM_EECS | FXP_EEPROM_EEDI;
112000c4116bSJonathan Lemon 		else
112100c4116bSJonathan Lemon 			reg = FXP_EEPROM_EECS;
112200c4116bSJonathan Lemon 		CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, reg);
112300c4116bSJonathan Lemon 		DELAY(1);
112400c4116bSJonathan Lemon 		CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, reg | FXP_EEPROM_EESK);
112500c4116bSJonathan Lemon 		DELAY(1);
112600c4116bSJonathan Lemon 		CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, reg);
112700c4116bSJonathan Lemon 		DELAY(1);
112800c4116bSJonathan Lemon 	}
112900c4116bSJonathan Lemon }
113000c4116bSJonathan Lemon 
1131f7788e8eSJonathan Lemon /*
1132f7788e8eSJonathan Lemon  * Read from the serial EEPROM. Basically, you manually shift in
1133f7788e8eSJonathan Lemon  * the read opcode (one bit at a time) and then shift in the address,
1134f7788e8eSJonathan Lemon  * and then you shift out the data (all of this one bit at a time).
1135f7788e8eSJonathan Lemon  * The word size is 16 bits, so you have to provide the address for
1136f7788e8eSJonathan Lemon  * every 16 bits of data.
1137f7788e8eSJonathan Lemon  */
113874d1ed23SMaxime Henrion static uint16_t
fxp_eeprom_getword(struct fxp_softc * sc,int offset,int autosize)1139f7788e8eSJonathan Lemon fxp_eeprom_getword(struct fxp_softc *sc, int offset, int autosize)
1140f7788e8eSJonathan Lemon {
114174d1ed23SMaxime Henrion 	uint16_t reg, data;
1142f7788e8eSJonathan Lemon 	int x;
1143ba8c6fd5SDavid Greenman 
1144f7788e8eSJonathan Lemon 	CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, FXP_EEPROM_EECS);
1145f7788e8eSJonathan Lemon 	/*
1146f7788e8eSJonathan Lemon 	 * Shift in read opcode.
1147f7788e8eSJonathan Lemon 	 */
114800c4116bSJonathan Lemon 	fxp_eeprom_shiftin(sc, FXP_EEPROM_OPC_READ, 3);
1149f7788e8eSJonathan Lemon 	/*
1150f7788e8eSJonathan Lemon 	 * Shift in address.
1151f7788e8eSJonathan Lemon 	 */
1152f7788e8eSJonathan Lemon 	data = 0;
1153f7788e8eSJonathan Lemon 	for (x = 1 << (sc->eeprom_size - 1); x; x >>= 1) {
1154f7788e8eSJonathan Lemon 		if (offset & x)
1155f7788e8eSJonathan Lemon 			reg = FXP_EEPROM_EECS | FXP_EEPROM_EEDI;
1156f7788e8eSJonathan Lemon 		else
1157f7788e8eSJonathan Lemon 			reg = FXP_EEPROM_EECS;
1158f7788e8eSJonathan Lemon 		CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, reg);
1159f7788e8eSJonathan Lemon 		DELAY(1);
1160f7788e8eSJonathan Lemon 		CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, reg | FXP_EEPROM_EESK);
1161f7788e8eSJonathan Lemon 		DELAY(1);
1162f7788e8eSJonathan Lemon 		CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, reg);
1163f7788e8eSJonathan Lemon 		DELAY(1);
1164f7788e8eSJonathan Lemon 		reg = CSR_READ_2(sc, FXP_CSR_EEPROMCONTROL) & FXP_EEPROM_EEDO;
1165f7788e8eSJonathan Lemon 		data++;
1166f7788e8eSJonathan Lemon 		if (autosize && reg == 0) {
1167f7788e8eSJonathan Lemon 			sc->eeprom_size = data;
1168f7788e8eSJonathan Lemon 			break;
1169f7788e8eSJonathan Lemon 		}
1170f7788e8eSJonathan Lemon 	}
1171f7788e8eSJonathan Lemon 	/*
1172f7788e8eSJonathan Lemon 	 * Shift out data.
1173f7788e8eSJonathan Lemon 	 */
1174f7788e8eSJonathan Lemon 	data = 0;
1175f7788e8eSJonathan Lemon 	reg = FXP_EEPROM_EECS;
1176f7788e8eSJonathan Lemon 	for (x = 1 << 15; x; x >>= 1) {
1177f7788e8eSJonathan Lemon 		CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, reg | FXP_EEPROM_EESK);
1178f7788e8eSJonathan Lemon 		DELAY(1);
1179f7788e8eSJonathan Lemon 		if (CSR_READ_2(sc, FXP_CSR_EEPROMCONTROL) & FXP_EEPROM_EEDO)
1180f7788e8eSJonathan Lemon 			data |= x;
1181f7788e8eSJonathan Lemon 		CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, reg);
1182f7788e8eSJonathan Lemon 		DELAY(1);
1183f7788e8eSJonathan Lemon 	}
1184f7788e8eSJonathan Lemon 	CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, 0);
1185f7788e8eSJonathan Lemon 	DELAY(1);
1186f7788e8eSJonathan Lemon 
1187f7788e8eSJonathan Lemon 	return (data);
1188ba8c6fd5SDavid Greenman }
1189ba8c6fd5SDavid Greenman 
119000c4116bSJonathan Lemon static void
fxp_eeprom_putword(struct fxp_softc * sc,int offset,uint16_t data)119174d1ed23SMaxime Henrion fxp_eeprom_putword(struct fxp_softc *sc, int offset, uint16_t data)
119200c4116bSJonathan Lemon {
119300c4116bSJonathan Lemon 	int i;
119400c4116bSJonathan Lemon 
119500c4116bSJonathan Lemon 	/*
119600c4116bSJonathan Lemon 	 * Erase/write enable.
119700c4116bSJonathan Lemon 	 */
119800c4116bSJonathan Lemon 	CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, FXP_EEPROM_EECS);
119900c4116bSJonathan Lemon 	fxp_eeprom_shiftin(sc, 0x4, 3);
120000c4116bSJonathan Lemon 	fxp_eeprom_shiftin(sc, 0x03 << (sc->eeprom_size - 2), sc->eeprom_size);
120100c4116bSJonathan Lemon 	CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, 0);
120200c4116bSJonathan Lemon 	DELAY(1);
120300c4116bSJonathan Lemon 	/*
120400c4116bSJonathan Lemon 	 * Shift in write opcode, address, data.
120500c4116bSJonathan Lemon 	 */
120600c4116bSJonathan Lemon 	CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, FXP_EEPROM_EECS);
120700c4116bSJonathan Lemon 	fxp_eeprom_shiftin(sc, FXP_EEPROM_OPC_WRITE, 3);
120800c4116bSJonathan Lemon 	fxp_eeprom_shiftin(sc, offset, sc->eeprom_size);
120900c4116bSJonathan Lemon 	fxp_eeprom_shiftin(sc, data, 16);
121000c4116bSJonathan Lemon 	CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, 0);
121100c4116bSJonathan Lemon 	DELAY(1);
121200c4116bSJonathan Lemon 	/*
121300c4116bSJonathan Lemon 	 * Wait for EEPROM to finish up.
121400c4116bSJonathan Lemon 	 */
121500c4116bSJonathan Lemon 	CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, FXP_EEPROM_EECS);
121600c4116bSJonathan Lemon 	DELAY(1);
121700c4116bSJonathan Lemon 	for (i = 0; i < 1000; i++) {
121800c4116bSJonathan Lemon 		if (CSR_READ_2(sc, FXP_CSR_EEPROMCONTROL) & FXP_EEPROM_EEDO)
121900c4116bSJonathan Lemon 			break;
122000c4116bSJonathan Lemon 		DELAY(50);
122100c4116bSJonathan Lemon 	}
122200c4116bSJonathan Lemon 	CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, 0);
122300c4116bSJonathan Lemon 	DELAY(1);
122400c4116bSJonathan Lemon 	/*
122500c4116bSJonathan Lemon 	 * Erase/write disable.
122600c4116bSJonathan Lemon 	 */
122700c4116bSJonathan Lemon 	CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, FXP_EEPROM_EECS);
122800c4116bSJonathan Lemon 	fxp_eeprom_shiftin(sc, 0x4, 3);
122900c4116bSJonathan Lemon 	fxp_eeprom_shiftin(sc, 0, sc->eeprom_size);
123000c4116bSJonathan Lemon 	CSR_WRITE_2(sc, FXP_CSR_EEPROMCONTROL, 0);
123100c4116bSJonathan Lemon 	DELAY(1);
123200c4116bSJonathan Lemon }
123300c4116bSJonathan Lemon 
1234ba8c6fd5SDavid Greenman /*
1235e9bf2fa7SDavid Greenman  * From NetBSD:
1236e9bf2fa7SDavid Greenman  *
1237e9bf2fa7SDavid Greenman  * Figure out EEPROM size.
1238e9bf2fa7SDavid Greenman  *
1239e9bf2fa7SDavid Greenman  * 559's can have either 64-word or 256-word EEPROMs, the 558
1240e9bf2fa7SDavid Greenman  * datasheet only talks about 64-word EEPROMs, and the 557 datasheet
1241453130d9SPedro F. Giffuni  * talks about the existence of 16 to 256 word EEPROMs.
1242e9bf2fa7SDavid Greenman  *
1243e9bf2fa7SDavid Greenman  * The only known sizes are 64 and 256, where the 256 version is used
1244e9bf2fa7SDavid Greenman  * by CardBus cards to store CIS information.
1245e9bf2fa7SDavid Greenman  *
1246e9bf2fa7SDavid Greenman  * The address is shifted in msb-to-lsb, and after the last
1247e9bf2fa7SDavid Greenman  * address-bit the EEPROM is supposed to output a `dummy zero' bit,
1248e9bf2fa7SDavid Greenman  * after which follows the actual data. We try to detect this zero, by
1249e9bf2fa7SDavid Greenman  * probing the data-out bit in the EEPROM control register just after
1250e9bf2fa7SDavid Greenman  * having shifted in a bit. If the bit is zero, we assume we've
1251e9bf2fa7SDavid Greenman  * shifted enough address bits. The data-out should be tri-state,
1252e9bf2fa7SDavid Greenman  * before this, which should translate to a logical one.
1253e9bf2fa7SDavid Greenman  */
1254e9bf2fa7SDavid Greenman static void
fxp_autosize_eeprom(struct fxp_softc * sc)1255f7788e8eSJonathan Lemon fxp_autosize_eeprom(struct fxp_softc *sc)
1256e9bf2fa7SDavid Greenman {
1257e9bf2fa7SDavid Greenman 
1258f7788e8eSJonathan Lemon 	/* guess maximum size of 256 words */
1259f7788e8eSJonathan Lemon 	sc->eeprom_size = 8;
1260f7788e8eSJonathan Lemon 
1261f7788e8eSJonathan Lemon 	/* autosize */
1262f7788e8eSJonathan Lemon 	(void) fxp_eeprom_getword(sc, 0, 1);
1263e9bf2fa7SDavid Greenman }
1264f7788e8eSJonathan Lemon 
1265ba8c6fd5SDavid Greenman static void
fxp_read_eeprom(struct fxp_softc * sc,u_short * data,int offset,int words)1266f7788e8eSJonathan Lemon fxp_read_eeprom(struct fxp_softc *sc, u_short *data, int offset, int words)
1267ba8c6fd5SDavid Greenman {
1268f7788e8eSJonathan Lemon 	int i;
1269ba8c6fd5SDavid Greenman 
1270f7788e8eSJonathan Lemon 	for (i = 0; i < words; i++)
1271f7788e8eSJonathan Lemon 		data[i] = fxp_eeprom_getword(sc, offset + i, 0);
1272ba8c6fd5SDavid Greenman }
1273ba8c6fd5SDavid Greenman 
127400c4116bSJonathan Lemon static void
fxp_write_eeprom(struct fxp_softc * sc,u_short * data,int offset,int words)127500c4116bSJonathan Lemon fxp_write_eeprom(struct fxp_softc *sc, u_short *data, int offset, int words)
127600c4116bSJonathan Lemon {
127700c4116bSJonathan Lemon 	int i;
127800c4116bSJonathan Lemon 
127900c4116bSJonathan Lemon 	for (i = 0; i < words; i++)
128000c4116bSJonathan Lemon 		fxp_eeprom_putword(sc, offset + i, data[i]);
128100c4116bSJonathan Lemon }
128200c4116bSJonathan Lemon 
12838262183eSPyun YongHyeon static void
fxp_load_eeprom(struct fxp_softc * sc)12848262183eSPyun YongHyeon fxp_load_eeprom(struct fxp_softc *sc)
12858262183eSPyun YongHyeon {
12868262183eSPyun YongHyeon 	int i;
12878262183eSPyun YongHyeon 	uint16_t cksum;
12888262183eSPyun YongHyeon 
12898262183eSPyun YongHyeon 	fxp_read_eeprom(sc, sc->eeprom, 0, 1 << sc->eeprom_size);
12908262183eSPyun YongHyeon 	cksum = 0;
12918262183eSPyun YongHyeon 	for (i = 0; i < (1 << sc->eeprom_size) - 1; i++)
12928262183eSPyun YongHyeon 		cksum += sc->eeprom[i];
12938262183eSPyun YongHyeon 	cksum = 0xBABA - cksum;
12948262183eSPyun YongHyeon 	if (cksum != sc->eeprom[(1 << sc->eeprom_size) - 1])
12958262183eSPyun YongHyeon 		device_printf(sc->dev,
12968262183eSPyun YongHyeon 		    "EEPROM checksum mismatch! (0x%04x -> 0x%04x)\n",
12978262183eSPyun YongHyeon 		    cksum, sc->eeprom[(1 << sc->eeprom_size) - 1]);
12988262183eSPyun YongHyeon }
12998262183eSPyun YongHyeon 
1300a17c678eSDavid Greenman /*
13014953bccaSNate Lawson  * Grab the softc lock and call the real fxp_start_body() routine
1302a17c678eSDavid Greenman  */
1303a17c678eSDavid Greenman static void
fxp_start(if_t ifp)130441eb5ac3SMarcel Moolenaar fxp_start(if_t ifp)
1305a17c678eSDavid Greenman {
130641eb5ac3SMarcel Moolenaar 	struct fxp_softc *sc = if_getsoftc(ifp);
13074953bccaSNate Lawson 
13084953bccaSNate Lawson 	FXP_LOCK(sc);
13094953bccaSNate Lawson 	fxp_start_body(ifp);
13104953bccaSNate Lawson 	FXP_UNLOCK(sc);
13114953bccaSNate Lawson }
13124953bccaSNate Lawson 
13134953bccaSNate Lawson /*
13144953bccaSNate Lawson  * Start packet transmission on the interface.
13154953bccaSNate Lawson  * This routine must be called with the softc lock held, and is an
13164953bccaSNate Lawson  * internal entry point only.
13174953bccaSNate Lawson  */
13184953bccaSNate Lawson static void
fxp_start_body(if_t ifp)131941eb5ac3SMarcel Moolenaar fxp_start_body(if_t ifp)
13204953bccaSNate Lawson {
132141eb5ac3SMarcel Moolenaar 	struct fxp_softc *sc = if_getsoftc(ifp);
1322b2badf02SMaxime Henrion 	struct mbuf *mb_head;
13234e53f837SPyun YongHyeon 	int txqueued;
1324a17c678eSDavid Greenman 
132567fc050fSMaxime Henrion 	FXP_LOCK_ASSERT(sc, MA_OWNED);
132640c20505SMaxime Henrion 
132741eb5ac3SMarcel Moolenaar 	if ((if_getdrvflags(ifp) & (IFF_DRV_RUNNING | IFF_DRV_OACTIVE)) !=
1328c109e385SPyun YongHyeon 	    IFF_DRV_RUNNING)
1329c109e385SPyun YongHyeon 		return;
1330c109e385SPyun YongHyeon 
13314e53f837SPyun YongHyeon 	if (sc->tx_queued > FXP_NTXCB_HIWAT)
13324e53f837SPyun YongHyeon 		fxp_txeof(sc);
1333483b9871SDavid Greenman 	/*
1334483b9871SDavid Greenman 	 * We're finished if there is nothing more to add to the list or if
1335483b9871SDavid Greenman 	 * we're all filled up with buffers to transmit.
13363114fdb4SDavid Greenman 	 * NOTE: One TxCB is reserved to guarantee that fxp_mc_setup() can add
13373114fdb4SDavid Greenman 	 *       a NOP command when needed.
1338483b9871SDavid Greenman 	 */
133940c20505SMaxime Henrion 	txqueued = 0;
134041eb5ac3SMarcel Moolenaar 	while (!if_sendq_empty(ifp) && sc->tx_queued < FXP_NTXCB - 1) {
1341483b9871SDavid Greenman 
1342dfe61cf1SDavid Greenman 		/*
1343dfe61cf1SDavid Greenman 		 * Grab a packet to transmit.
1344dfe61cf1SDavid Greenman 		 */
134541eb5ac3SMarcel Moolenaar 		mb_head = if_dequeue(ifp);
13467929aa03SMax Laier 		if (mb_head == NULL)
13477929aa03SMax Laier 			break;
1348a17c678eSDavid Greenman 
13494e53f837SPyun YongHyeon 		if (fxp_encap(sc, &mb_head)) {
13504e53f837SPyun YongHyeon 			if (mb_head == NULL)
135140c20505SMaxime Henrion 				break;
135241eb5ac3SMarcel Moolenaar 			if_sendq_prepend(ifp, mb_head);
135341eb5ac3SMarcel Moolenaar 			if_setdrvflagbits(ifp, IFF_DRV_OACTIVE, 0);
135440c20505SMaxime Henrion 		}
13554e53f837SPyun YongHyeon 		txqueued++;
13564e53f837SPyun YongHyeon 		/*
13574e53f837SPyun YongHyeon 		 * Pass packet to bpf if there is a listener.
13584e53f837SPyun YongHyeon 		 */
13592a371643SJustin Hibbits 		bpf_mtap_if(ifp, mb_head);
13604e53f837SPyun YongHyeon 	}
136140c20505SMaxime Henrion 
136240c20505SMaxime Henrion 	/*
136340c20505SMaxime Henrion 	 * We're finished. If we added to the list, issue a RESUME to get DMA
136440c20505SMaxime Henrion 	 * going again if suspended.
136540c20505SMaxime Henrion 	 */
13664e53f837SPyun YongHyeon 	if (txqueued > 0) {
1367a2057a72SPyun YongHyeon 		bus_dmamap_sync(sc->cbl_tag, sc->cbl_map,
1368a2057a72SPyun YongHyeon 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
136940c20505SMaxime Henrion 		fxp_scb_wait(sc);
137040c20505SMaxime Henrion 		fxp_scb_cmd(sc, FXP_SCB_COMMAND_CU_RESUME);
13714e53f837SPyun YongHyeon 		/*
13724e53f837SPyun YongHyeon 		 * Set a 5 second timer just in case we don't hear
13734e53f837SPyun YongHyeon 		 * from the card again.
13744e53f837SPyun YongHyeon 		 */
13754e53f837SPyun YongHyeon 		sc->watchdog_timer = 5;
137640c20505SMaxime Henrion 	}
137740c20505SMaxime Henrion }
137840c20505SMaxime Henrion 
137940c20505SMaxime Henrion static int
fxp_encap(struct fxp_softc * sc,struct mbuf ** m_head)13804e53f837SPyun YongHyeon fxp_encap(struct fxp_softc *sc, struct mbuf **m_head)
138140c20505SMaxime Henrion {
138240c20505SMaxime Henrion 	struct mbuf *m;
138340c20505SMaxime Henrion 	struct fxp_tx *txp;
138440c20505SMaxime Henrion 	struct fxp_cb_tx *cbp;
1385c21e84e4SPyun YongHyeon 	struct tcphdr *tcp;
138640c20505SMaxime Henrion 	bus_dma_segment_t segs[FXP_NTXSEG];
1387c21e84e4SPyun YongHyeon 	int error, i, nseg, tcp_payload;
138840c20505SMaxime Henrion 
138940c20505SMaxime Henrion 	FXP_LOCK_ASSERT(sc, MA_OWNED);
139040c20505SMaxime Henrion 
1391c21e84e4SPyun YongHyeon 	tcp_payload = 0;
1392c21e84e4SPyun YongHyeon 	tcp = NULL;
1393dfe61cf1SDavid Greenman 	/*
1394483b9871SDavid Greenman 	 * Get pointer to next available tx desc.
1395dfe61cf1SDavid Greenman 	 */
1396b2badf02SMaxime Henrion 	txp = sc->fxp_desc.tx_last->tx_next;
1397c8bca6dcSBill Paul 
1398c8bca6dcSBill Paul 	/*
1399a35e7eaaSDon Lewis 	 * A note in Appendix B of the Intel 8255x 10/100 Mbps
1400a35e7eaaSDon Lewis 	 * Ethernet Controller Family Open Source Software
1401a35e7eaaSDon Lewis 	 * Developer Manual says:
1402a35e7eaaSDon Lewis 	 *   Using software parsing is only allowed with legal
1403a35e7eaaSDon Lewis 	 *   TCP/IP or UDP/IP packets.
1404a35e7eaaSDon Lewis 	 *   ...
1405a35e7eaaSDon Lewis 	 *   For all other datagrams, hardware parsing must
1406a35e7eaaSDon Lewis 	 *   be used.
1407a35e7eaaSDon Lewis 	 * Software parsing appears to truncate ICMP and
1408a35e7eaaSDon Lewis 	 * fragmented UDP packets that contain one to three
1409a35e7eaaSDon Lewis 	 * bytes in the second (and final) mbuf of the packet.
1410a35e7eaaSDon Lewis 	 */
1411a35e7eaaSDon Lewis 	if (sc->flags & FXP_FLAG_EXT_RFA)
1412a35e7eaaSDon Lewis 		txp->tx_cb->ipcb_ip_activation_high =
1413a35e7eaaSDon Lewis 		    FXP_IPCB_HARDWAREPARSING_ENABLE;
1414a35e7eaaSDon Lewis 
14154e53f837SPyun YongHyeon 	m = *m_head;
1416c21e84e4SPyun YongHyeon 	if (m->m_pkthdr.csum_flags & CSUM_TSO) {
1417c21e84e4SPyun YongHyeon 		/*
1418c21e84e4SPyun YongHyeon 		 * 82550/82551 requires ethernet/IP/TCP headers must be
1419c21e84e4SPyun YongHyeon 		 * contained in the first active transmit buffer.
1420c21e84e4SPyun YongHyeon 		 */
1421c21e84e4SPyun YongHyeon 		struct ether_header *eh;
1422c21e84e4SPyun YongHyeon 		struct ip *ip;
1423c21e84e4SPyun YongHyeon 		uint32_t ip_off, poff;
1424c21e84e4SPyun YongHyeon 
1425c21e84e4SPyun YongHyeon 		if (M_WRITABLE(*m_head) == 0) {
1426c21e84e4SPyun YongHyeon 			/* Get a writable copy. */
1427c6499eccSGleb Smirnoff 			m = m_dup(*m_head, M_NOWAIT);
1428c21e84e4SPyun YongHyeon 			m_freem(*m_head);
1429c21e84e4SPyun YongHyeon 			if (m == NULL) {
1430c21e84e4SPyun YongHyeon 				*m_head = NULL;
1431c21e84e4SPyun YongHyeon 				return (ENOBUFS);
1432c21e84e4SPyun YongHyeon 			}
1433c21e84e4SPyun YongHyeon 			*m_head = m;
1434c21e84e4SPyun YongHyeon 		}
1435c21e84e4SPyun YongHyeon 		ip_off = sizeof(struct ether_header);
1436c21e84e4SPyun YongHyeon 		m = m_pullup(*m_head, ip_off);
1437c21e84e4SPyun YongHyeon 		if (m == NULL) {
1438c21e84e4SPyun YongHyeon 			*m_head = NULL;
1439c21e84e4SPyun YongHyeon 			return (ENOBUFS);
1440c21e84e4SPyun YongHyeon 		}
1441c21e84e4SPyun YongHyeon 		eh = mtod(m, struct ether_header *);
1442c21e84e4SPyun YongHyeon 		/* Check the existence of VLAN tag. */
1443c21e84e4SPyun YongHyeon 		if (eh->ether_type == htons(ETHERTYPE_VLAN)) {
1444c21e84e4SPyun YongHyeon 			ip_off = sizeof(struct ether_vlan_header);
1445c21e84e4SPyun YongHyeon 			m = m_pullup(m, ip_off);
1446c21e84e4SPyun YongHyeon 			if (m == NULL) {
1447c21e84e4SPyun YongHyeon 				*m_head = NULL;
1448c21e84e4SPyun YongHyeon 				return (ENOBUFS);
1449c21e84e4SPyun YongHyeon 			}
1450c21e84e4SPyun YongHyeon 		}
1451c21e84e4SPyun YongHyeon 		m = m_pullup(m, ip_off + sizeof(struct ip));
1452c21e84e4SPyun YongHyeon 		if (m == NULL) {
1453c21e84e4SPyun YongHyeon 			*m_head = NULL;
1454c21e84e4SPyun YongHyeon 			return (ENOBUFS);
1455c21e84e4SPyun YongHyeon 		}
1456c21e84e4SPyun YongHyeon 		ip = (struct ip *)(mtod(m, char *) + ip_off);
1457c21e84e4SPyun YongHyeon 		poff = ip_off + (ip->ip_hl << 2);
1458c21e84e4SPyun YongHyeon 		m = m_pullup(m, poff + sizeof(struct tcphdr));
1459c21e84e4SPyun YongHyeon 		if (m == NULL) {
1460c21e84e4SPyun YongHyeon 			*m_head = NULL;
1461c21e84e4SPyun YongHyeon 			return (ENOBUFS);
1462c21e84e4SPyun YongHyeon 		}
1463c21e84e4SPyun YongHyeon 		tcp = (struct tcphdr *)(mtod(m, char *) + poff);
1464cbecedb2SPyun YongHyeon 		m = m_pullup(m, poff + (tcp->th_off << 2));
1465c21e84e4SPyun YongHyeon 		if (m == NULL) {
1466c21e84e4SPyun YongHyeon 			*m_head = NULL;
1467c21e84e4SPyun YongHyeon 			return (ENOBUFS);
1468c21e84e4SPyun YongHyeon 		}
1469c21e84e4SPyun YongHyeon 
1470c21e84e4SPyun YongHyeon 		/*
1471c21e84e4SPyun YongHyeon 		 * Since 82550/82551 doesn't modify IP length and pseudo
1472c21e84e4SPyun YongHyeon 		 * checksum in the first frame driver should compute it.
1473c21e84e4SPyun YongHyeon 		 */
147496486faaSPyun YongHyeon 		ip = (struct ip *)(mtod(m, char *) + ip_off);
147596486faaSPyun YongHyeon 		tcp = (struct tcphdr *)(mtod(m, char *) + poff);
1476c21e84e4SPyun YongHyeon 		ip->ip_sum = 0;
14770685c824SPyun YongHyeon 		ip->ip_len = htons(m->m_pkthdr.tso_segsz + (ip->ip_hl << 2) +
14780685c824SPyun YongHyeon 		    (tcp->th_off << 2));
1479c21e84e4SPyun YongHyeon 		tcp->th_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr,
1480c21e84e4SPyun YongHyeon 		    htons(IPPROTO_TCP + (tcp->th_off << 2) +
1481c21e84e4SPyun YongHyeon 		    m->m_pkthdr.tso_segsz));
1482c21e84e4SPyun YongHyeon 		/* Compute total TCP payload. */
1483c21e84e4SPyun YongHyeon 		tcp_payload = m->m_pkthdr.len - ip_off - (ip->ip_hl << 2);
1484c21e84e4SPyun YongHyeon 		tcp_payload -= tcp->th_off << 2;
1485c21e84e4SPyun YongHyeon 		*m_head = m;
14866da6d0a9SPyun YongHyeon 	} else if (m->m_pkthdr.csum_flags & FXP_CSUM_FEATURES) {
14876da6d0a9SPyun YongHyeon 		/*
14886da6d0a9SPyun YongHyeon 		 * Deal with TCP/IP checksum offload. Note that
14896da6d0a9SPyun YongHyeon 		 * in order for TCP checksum offload to work,
14906da6d0a9SPyun YongHyeon 		 * the pseudo header checksum must have already
14916da6d0a9SPyun YongHyeon 		 * been computed and stored in the checksum field
14926da6d0a9SPyun YongHyeon 		 * in the TCP header. The stack should have
14936da6d0a9SPyun YongHyeon 		 * already done this for us.
14946da6d0a9SPyun YongHyeon 		 */
14956da6d0a9SPyun YongHyeon 		txp->tx_cb->ipcb_ip_schedule = FXP_IPCB_TCPUDP_CHECKSUM_ENABLE;
14966da6d0a9SPyun YongHyeon 		if (m->m_pkthdr.csum_flags & CSUM_TCP)
14976da6d0a9SPyun YongHyeon 			txp->tx_cb->ipcb_ip_schedule |= FXP_IPCB_TCP_PACKET;
14986da6d0a9SPyun YongHyeon 
14996da6d0a9SPyun YongHyeon #ifdef FXP_IP_CSUM_WAR
15006da6d0a9SPyun YongHyeon 		/*
15016da6d0a9SPyun YongHyeon 		 * XXX The 82550 chip appears to have trouble
15026da6d0a9SPyun YongHyeon 		 * dealing with IP header checksums in very small
15036da6d0a9SPyun YongHyeon 		 * datagrams, namely fragments from 1 to 3 bytes
15046da6d0a9SPyun YongHyeon 		 * in size. For example, say you want to transmit
15056da6d0a9SPyun YongHyeon 		 * a UDP packet of 1473 bytes. The packet will be
15066da6d0a9SPyun YongHyeon 		 * fragmented over two IP datagrams, the latter
15076da6d0a9SPyun YongHyeon 		 * containing only one byte of data. The 82550 will
15086da6d0a9SPyun YongHyeon 		 * botch the header checksum on the 1-byte fragment.
15096da6d0a9SPyun YongHyeon 		 * As long as the datagram contains 4 or more bytes
15106da6d0a9SPyun YongHyeon 		 * of data, you're ok.
15116da6d0a9SPyun YongHyeon 		 *
15126da6d0a9SPyun YongHyeon                  * The following code attempts to work around this
15136da6d0a9SPyun YongHyeon 		 * problem: if the datagram is less than 38 bytes
15146da6d0a9SPyun YongHyeon 		 * in size (14 bytes ether header, 20 bytes IP header,
15156da6d0a9SPyun YongHyeon 		 * plus 4 bytes of data), we punt and compute the IP
15166da6d0a9SPyun YongHyeon 		 * header checksum by hand. This workaround doesn't
15176da6d0a9SPyun YongHyeon 		 * work very well, however, since it can be fooled
15186da6d0a9SPyun YongHyeon 		 * by things like VLAN tags and IP options that make
15196da6d0a9SPyun YongHyeon 		 * the header sizes/offsets vary.
15206da6d0a9SPyun YongHyeon 		 */
15216da6d0a9SPyun YongHyeon 
15226da6d0a9SPyun YongHyeon 		if (m->m_pkthdr.csum_flags & CSUM_IP) {
15236da6d0a9SPyun YongHyeon 			if (m->m_pkthdr.len < 38) {
15246da6d0a9SPyun YongHyeon 				struct ip *ip;
15256da6d0a9SPyun YongHyeon 				m->m_data += ETHER_HDR_LEN;
15266da6d0a9SPyun YongHyeon 				ip = mtod(m, struct ip *);
15276da6d0a9SPyun YongHyeon 				ip->ip_sum = in_cksum(m, ip->ip_hl << 2);
15286da6d0a9SPyun YongHyeon 				m->m_data -= ETHER_HDR_LEN;
15296da6d0a9SPyun YongHyeon 				m->m_pkthdr.csum_flags &= ~CSUM_IP;
15306da6d0a9SPyun YongHyeon 			} else {
15316da6d0a9SPyun YongHyeon 				txp->tx_cb->ipcb_ip_activation_high =
15326da6d0a9SPyun YongHyeon 				    FXP_IPCB_HARDWAREPARSING_ENABLE;
15336da6d0a9SPyun YongHyeon 				txp->tx_cb->ipcb_ip_schedule |=
15346da6d0a9SPyun YongHyeon 				    FXP_IPCB_IP_CHECKSUM_ENABLE;
15356da6d0a9SPyun YongHyeon 			}
15366da6d0a9SPyun YongHyeon 		}
15376da6d0a9SPyun YongHyeon #endif
1538c21e84e4SPyun YongHyeon 	}
1539c21e84e4SPyun YongHyeon 
1540a2057a72SPyun YongHyeon 	error = bus_dmamap_load_mbuf_sg(sc->fxp_txmtag, txp->tx_map, *m_head,
15414e53f837SPyun YongHyeon 	    segs, &nseg, 0);
15424e53f837SPyun YongHyeon 	if (error == EFBIG) {
1543c6499eccSGleb Smirnoff 		m = m_collapse(*m_head, M_NOWAIT, sc->maxtxseg);
15444e53f837SPyun YongHyeon 		if (m == NULL) {
15454e53f837SPyun YongHyeon 			m_freem(*m_head);
15464e53f837SPyun YongHyeon 			*m_head = NULL;
15474e53f837SPyun YongHyeon 			return (ENOMEM);
15481104779bSMike Silbersack 		}
15494e53f837SPyun YongHyeon 		*m_head = m;
1550a2057a72SPyun YongHyeon 		error = bus_dmamap_load_mbuf_sg(sc->fxp_txmtag, txp->tx_map,
15514e53f837SPyun YongHyeon 		    *m_head, segs, &nseg, 0);
15524e53f837SPyun YongHyeon 		if (error != 0) {
15534e53f837SPyun YongHyeon 			m_freem(*m_head);
15544e53f837SPyun YongHyeon 			*m_head = NULL;
15554e53f837SPyun YongHyeon 			return (ENOMEM);
15564e53f837SPyun YongHyeon 		}
15574e53f837SPyun YongHyeon 	} else if (error != 0)
15584e53f837SPyun YongHyeon 		return (error);
15594e53f837SPyun YongHyeon 	if (nseg == 0) {
15604e53f837SPyun YongHyeon 		m_freem(*m_head);
15614e53f837SPyun YongHyeon 		*m_head = NULL;
15624e53f837SPyun YongHyeon 		return (EIO);
156323a0ed7cSDavid Greenman 	}
156423a0ed7cSDavid Greenman 
156540c20505SMaxime Henrion 	KASSERT(nseg <= sc->maxtxseg, ("too many DMA segments"));
1566a2057a72SPyun YongHyeon 	bus_dmamap_sync(sc->fxp_txmtag, txp->tx_map, BUS_DMASYNC_PREWRITE);
1567b2badf02SMaxime Henrion 
156840c20505SMaxime Henrion 	cbp = txp->tx_cb;
156940c20505SMaxime Henrion 	for (i = 0; i < nseg; i++) {
157040c20505SMaxime Henrion 		/*
157140c20505SMaxime Henrion 		 * If this is an 82550/82551, then we're using extended
157240c20505SMaxime Henrion 		 * TxCBs _and_ we're using checksum offload. This means
157340c20505SMaxime Henrion 		 * that the TxCB is really an IPCB. One major difference
157440c20505SMaxime Henrion 		 * between the two is that with plain extended TxCBs,
157540c20505SMaxime Henrion 		 * the bottom half of the TxCB contains two entries from
157640c20505SMaxime Henrion 		 * the TBD array, whereas IPCBs contain just one entry:
157740c20505SMaxime Henrion 		 * one entry (8 bytes) has been sacrificed for the TCP/IP
157840c20505SMaxime Henrion 		 * checksum offload control bits. So to make things work
157940c20505SMaxime Henrion 		 * right, we have to start filling in the TBD array
158040c20505SMaxime Henrion 		 * starting from a different place depending on whether
158140c20505SMaxime Henrion 		 * the chip is an 82550/82551 or not.
158240c20505SMaxime Henrion 		 */
158340c20505SMaxime Henrion 		if (sc->flags & FXP_FLAG_EXT_RFA) {
158468f4ab9aSPyun YongHyeon 			cbp->tbd[i + 1].tb_addr = htole32(segs[i].ds_addr);
158568f4ab9aSPyun YongHyeon 			cbp->tbd[i + 1].tb_size = htole32(segs[i].ds_len);
158640c20505SMaxime Henrion 		} else {
158740c20505SMaxime Henrion 			cbp->tbd[i].tb_addr = htole32(segs[i].ds_addr);
158840c20505SMaxime Henrion 			cbp->tbd[i].tb_size = htole32(segs[i].ds_len);
158940c20505SMaxime Henrion 		}
159040c20505SMaxime Henrion 	}
1591c21e84e4SPyun YongHyeon 	if (sc->flags & FXP_FLAG_EXT_RFA) {
1592c21e84e4SPyun YongHyeon 		/* Configure dynamic TBD for 82550/82551. */
1593c21e84e4SPyun YongHyeon 		cbp->tbd_number = 0xFF;
159468f4ab9aSPyun YongHyeon 		cbp->tbd[nseg].tb_size |= htole32(0x8000);
1595c21e84e4SPyun YongHyeon 	} else
159640c20505SMaxime Henrion 		cbp->tbd_number = nseg;
1597c21e84e4SPyun YongHyeon 	/* Configure TSO. */
1598c21e84e4SPyun YongHyeon 	if (m->m_pkthdr.csum_flags & CSUM_TSO) {
15990e4a3d93SMark Johnston 		cbp->tbdtso.tb_size = htole32(m->m_pkthdr.tso_segsz << 16);
160068f4ab9aSPyun YongHyeon 		cbp->tbd[1].tb_size |= htole32(tcp_payload << 16);
1601c21e84e4SPyun YongHyeon 		cbp->ipcb_ip_schedule |= FXP_IPCB_LARGESEND_ENABLE |
1602c21e84e4SPyun YongHyeon 		    FXP_IPCB_IP_CHECKSUM_ENABLE |
1603c21e84e4SPyun YongHyeon 		    FXP_IPCB_TCP_PACKET |
1604c21e84e4SPyun YongHyeon 		    FXP_IPCB_TCPUDP_CHECKSUM_ENABLE;
1605c21e84e4SPyun YongHyeon 	}
1606bd4fa9d9SPyun YongHyeon 	/* Configure VLAN hardware tag insertion. */
1607bd4fa9d9SPyun YongHyeon 	if ((m->m_flags & M_VLANTAG) != 0) {
1608bd4fa9d9SPyun YongHyeon 		cbp->ipcb_vlan_id = htons(m->m_pkthdr.ether_vtag);
1609bd4fa9d9SPyun YongHyeon 		txp->tx_cb->ipcb_ip_activation_high |=
1610bd4fa9d9SPyun YongHyeon 		    FXP_IPCB_INSERTVLAN_ENABLE;
1611bd4fa9d9SPyun YongHyeon 	}
161240c20505SMaxime Henrion 
16134e53f837SPyun YongHyeon 	txp->tx_mbuf = m;
1614b2badf02SMaxime Henrion 	txp->tx_cb->cb_status = 0;
1615b2badf02SMaxime Henrion 	txp->tx_cb->byte_count = 0;
16164e53f837SPyun YongHyeon 	if (sc->tx_queued != FXP_CXINT_THRESH - 1)
1617b2badf02SMaxime Henrion 		txp->tx_cb->cb_command =
161883e6547dSMaxime Henrion 		    htole16(sc->tx_cmd | FXP_CB_COMMAND_SF |
161983e6547dSMaxime Henrion 		    FXP_CB_COMMAND_S);
16204e53f837SPyun YongHyeon 	else
1621b2badf02SMaxime Henrion 		txp->tx_cb->cb_command =
162283e6547dSMaxime Henrion 		    htole16(sc->tx_cmd | FXP_CB_COMMAND_SF |
162383e6547dSMaxime Henrion 		    FXP_CB_COMMAND_S | FXP_CB_COMMAND_I);
1624c21e84e4SPyun YongHyeon 	if ((m->m_pkthdr.csum_flags & CSUM_TSO) == 0)
1625b2badf02SMaxime Henrion 		txp->tx_cb->tx_threshold = tx_threshold;
1626a17c678eSDavid Greenman 
1627a17c678eSDavid Greenman 	/*
1628483b9871SDavid Greenman 	 * Advance the end of list forward.
1629a17c678eSDavid Greenman 	 */
163040c20505SMaxime Henrion 	sc->fxp_desc.tx_last->tx_cb->cb_command &= htole16(~FXP_CB_COMMAND_S);
1631b2badf02SMaxime Henrion 	sc->fxp_desc.tx_last = txp;
1632a17c678eSDavid Greenman 
1633a17c678eSDavid Greenman 	/*
16341cd443acSDavid Greenman 	 * Advance the beginning of the list forward if there are
1635b2badf02SMaxime Henrion 	 * no other packets queued (when nothing is queued, tx_first
1636483b9871SDavid Greenman 	 * sits on the last TxCB that was sent out).
1637a17c678eSDavid Greenman 	 */
16381cd443acSDavid Greenman 	if (sc->tx_queued == 0)
1639b2badf02SMaxime Henrion 		sc->fxp_desc.tx_first = txp;
1640a17c678eSDavid Greenman 
16411cd443acSDavid Greenman 	sc->tx_queued++;
16421cd443acSDavid Greenman 
164340c20505SMaxime Henrion 	return (0);
1644a17c678eSDavid Greenman }
1645a17c678eSDavid Greenman 
1646e4fc250cSLuigi Rizzo #ifdef DEVICE_POLLING
1647bd071d4dSGleb Smirnoff static poll_handler_t fxp_poll;
1648e4fc250cSLuigi Rizzo 
16491abcdbd1SAttilio Rao static int
fxp_poll(if_t ifp,enum poll_cmd cmd,int count)165041eb5ac3SMarcel Moolenaar fxp_poll(if_t ifp, enum poll_cmd cmd, int count)
1651e4fc250cSLuigi Rizzo {
165241eb5ac3SMarcel Moolenaar 	struct fxp_softc *sc = if_getsoftc(ifp);
165374d1ed23SMaxime Henrion 	uint8_t statack;
16541abcdbd1SAttilio Rao 	int rx_npkts = 0;
1655e4fc250cSLuigi Rizzo 
16564953bccaSNate Lawson 	FXP_LOCK(sc);
165741eb5ac3SMarcel Moolenaar 	if (!(if_getdrvflags(ifp) & IFF_DRV_RUNNING)) {
16584953bccaSNate Lawson 		FXP_UNLOCK(sc);
16591abcdbd1SAttilio Rao 		return (rx_npkts);
1660e4fc250cSLuigi Rizzo 	}
166140929967SGleb Smirnoff 
1662e4fc250cSLuigi Rizzo 	statack = FXP_SCB_STATACK_CXTNO | FXP_SCB_STATACK_CNA |
1663e4fc250cSLuigi Rizzo 	    FXP_SCB_STATACK_FR;
1664e4fc250cSLuigi Rizzo 	if (cmd == POLL_AND_CHECK_STATUS) {
166574d1ed23SMaxime Henrion 		uint8_t tmp;
16666481f301SPeter Wemm 
1667e4fc250cSLuigi Rizzo 		tmp = CSR_READ_1(sc, FXP_CSR_SCB_STATACK);
16684953bccaSNate Lawson 		if (tmp == 0xff || tmp == 0) {
16694953bccaSNate Lawson 			FXP_UNLOCK(sc);
16701abcdbd1SAttilio Rao 			return (rx_npkts); /* nothing to do */
16714953bccaSNate Lawson 		}
1672e4fc250cSLuigi Rizzo 		tmp &= ~statack;
1673e4fc250cSLuigi Rizzo 		/* ack what we can */
1674e4fc250cSLuigi Rizzo 		if (tmp != 0)
1675e4fc250cSLuigi Rizzo 			CSR_WRITE_1(sc, FXP_CSR_SCB_STATACK, tmp);
1676e4fc250cSLuigi Rizzo 		statack |= tmp;
1677e4fc250cSLuigi Rizzo 	}
16781abcdbd1SAttilio Rao 	rx_npkts = fxp_intr_body(sc, ifp, statack, count);
16794953bccaSNate Lawson 	FXP_UNLOCK(sc);
16801abcdbd1SAttilio Rao 	return (rx_npkts);
1681e4fc250cSLuigi Rizzo }
1682e4fc250cSLuigi Rizzo #endif /* DEVICE_POLLING */
1683e4fc250cSLuigi Rizzo 
1684a17c678eSDavid Greenman /*
16859c7d2607SDavid Greenman  * Process interface interrupts.
1686a17c678eSDavid Greenman  */
168794927790SDavid Greenman static void
fxp_intr(void * xsc)1688f7788e8eSJonathan Lemon fxp_intr(void *xsc)
1689a17c678eSDavid Greenman {
1690f7788e8eSJonathan Lemon 	struct fxp_softc *sc = xsc;
169141eb5ac3SMarcel Moolenaar 	if_t ifp = sc->ifp;
169274d1ed23SMaxime Henrion 	uint8_t statack;
16930f4dc94cSChuck Paterson 
16944953bccaSNate Lawson 	FXP_LOCK(sc);
1695704d1965SWarner Losh 	if (sc->suspended) {
1696704d1965SWarner Losh 		FXP_UNLOCK(sc);
1697704d1965SWarner Losh 		return;
1698704d1965SWarner Losh 	}
1699704d1965SWarner Losh 
1700e4fc250cSLuigi Rizzo #ifdef DEVICE_POLLING
170141eb5ac3SMarcel Moolenaar 	if (if_getcapenable(ifp) & IFCAP_POLLING) {
17024953bccaSNate Lawson 		FXP_UNLOCK(sc);
1703e4fc250cSLuigi Rizzo 		return;
17044953bccaSNate Lawson 	}
1705e4fc250cSLuigi Rizzo #endif
1706b184b38eSDavid Greenman 	while ((statack = CSR_READ_1(sc, FXP_CSR_SCB_STATACK)) != 0) {
1707a17c678eSDavid Greenman 		/*
170811457bbfSJonathan Lemon 		 * It should not be possible to have all bits set; the
170911457bbfSJonathan Lemon 		 * FXP_SCB_INTR_SWI bit always returns 0 on a read.  If
171011457bbfSJonathan Lemon 		 * all bits are set, this may indicate that the card has
171111457bbfSJonathan Lemon 		 * been physically ejected, so ignore it.
171211457bbfSJonathan Lemon 		 */
17134953bccaSNate Lawson 		if (statack == 0xff) {
17144953bccaSNate Lawson 			FXP_UNLOCK(sc);
171511457bbfSJonathan Lemon 			return;
17164953bccaSNate Lawson 		}
171711457bbfSJonathan Lemon 
171811457bbfSJonathan Lemon 		/*
1719a17c678eSDavid Greenman 		 * First ACK all the interrupts in this pass.
1720a17c678eSDavid Greenman 		 */
1721ba8c6fd5SDavid Greenman 		CSR_WRITE_1(sc, FXP_CSR_SCB_STATACK, statack);
172241eb5ac3SMarcel Moolenaar 		if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) != 0)
17234953bccaSNate Lawson 			fxp_intr_body(sc, ifp, statack, -1);
1724e4fc250cSLuigi Rizzo 	}
17254953bccaSNate Lawson 	FXP_UNLOCK(sc);
1726e4fc250cSLuigi Rizzo }
1727e4fc250cSLuigi Rizzo 
1728e4fc250cSLuigi Rizzo static void
fxp_txeof(struct fxp_softc * sc)1729b2badf02SMaxime Henrion fxp_txeof(struct fxp_softc *sc)
1730b2badf02SMaxime Henrion {
173141eb5ac3SMarcel Moolenaar 	if_t ifp;
1732b2badf02SMaxime Henrion 	struct fxp_tx *txp;
1733b2badf02SMaxime Henrion 
17344e53f837SPyun YongHyeon 	ifp = sc->ifp;
1735a2057a72SPyun YongHyeon 	bus_dmamap_sync(sc->cbl_tag, sc->cbl_map,
1736a2057a72SPyun YongHyeon 	    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1737b2badf02SMaxime Henrion 	for (txp = sc->fxp_desc.tx_first; sc->tx_queued &&
173883e6547dSMaxime Henrion 	    (le16toh(txp->tx_cb->cb_status) & FXP_CB_STATUS_C) != 0;
1739b2badf02SMaxime Henrion 	    txp = txp->tx_next) {
1740b2badf02SMaxime Henrion 		if (txp->tx_mbuf != NULL) {
1741a2057a72SPyun YongHyeon 			bus_dmamap_sync(sc->fxp_txmtag, txp->tx_map,
1742b2badf02SMaxime Henrion 			    BUS_DMASYNC_POSTWRITE);
1743a2057a72SPyun YongHyeon 			bus_dmamap_unload(sc->fxp_txmtag, txp->tx_map);
1744b2badf02SMaxime Henrion 			m_freem(txp->tx_mbuf);
1745b2badf02SMaxime Henrion 			txp->tx_mbuf = NULL;
1746b2badf02SMaxime Henrion 			/* clear this to reset csum offload bits */
1747b2badf02SMaxime Henrion 			txp->tx_cb->tbd[0].tb_addr = 0;
1748b2badf02SMaxime Henrion 		}
1749b2badf02SMaxime Henrion 		sc->tx_queued--;
175041eb5ac3SMarcel Moolenaar 		if_setdrvflagbits(ifp, 0, IFF_DRV_OACTIVE);
1751b2badf02SMaxime Henrion 	}
1752b2badf02SMaxime Henrion 	sc->fxp_desc.tx_first = txp;
1753a2057a72SPyun YongHyeon 	bus_dmamap_sync(sc->cbl_tag, sc->cbl_map,
1754a2057a72SPyun YongHyeon 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
17556b24912cSPyun YongHyeon 	if (sc->tx_queued == 0)
175625935344SPyun YongHyeon 		sc->watchdog_timer = 0;
1757b2badf02SMaxime Henrion }
1758b2badf02SMaxime Henrion 
1759b2badf02SMaxime Henrion static void
fxp_rxcsum(struct fxp_softc * sc,if_t ifp,struct mbuf * m,uint16_t status,int pos)176041eb5ac3SMarcel Moolenaar fxp_rxcsum(struct fxp_softc *sc, if_t ifp, struct mbuf *m,
1761f13075afSPyun YongHyeon     uint16_t status, int pos)
1762f13075afSPyun YongHyeon {
1763f13075afSPyun YongHyeon 	struct ether_header *eh;
1764f13075afSPyun YongHyeon 	struct ip *ip;
1765f13075afSPyun YongHyeon 	struct udphdr *uh;
1766f13075afSPyun YongHyeon 	int32_t hlen, len, pktlen, temp32;
1767f13075afSPyun YongHyeon 	uint16_t csum, *opts;
1768f13075afSPyun YongHyeon 
1769f13075afSPyun YongHyeon 	if ((sc->flags & FXP_FLAG_82559_RXCSUM) == 0) {
1770f13075afSPyun YongHyeon 		if ((status & FXP_RFA_STATUS_PARSE) != 0) {
1771f13075afSPyun YongHyeon 			if (status & FXP_RFDX_CS_IP_CSUM_BIT_VALID)
1772f13075afSPyun YongHyeon 				m->m_pkthdr.csum_flags |= CSUM_IP_CHECKED;
1773f13075afSPyun YongHyeon 			if (status & FXP_RFDX_CS_IP_CSUM_VALID)
1774f13075afSPyun YongHyeon 				m->m_pkthdr.csum_flags |= CSUM_IP_VALID;
1775f13075afSPyun YongHyeon 			if ((status & FXP_RFDX_CS_TCPUDP_CSUM_BIT_VALID) &&
1776f13075afSPyun YongHyeon 			    (status & FXP_RFDX_CS_TCPUDP_CSUM_VALID)) {
1777f13075afSPyun YongHyeon 				m->m_pkthdr.csum_flags |= CSUM_DATA_VALID |
1778f13075afSPyun YongHyeon 				    CSUM_PSEUDO_HDR;
1779f13075afSPyun YongHyeon 				m->m_pkthdr.csum_data = 0xffff;
1780f13075afSPyun YongHyeon 			}
1781f13075afSPyun YongHyeon 		}
1782f13075afSPyun YongHyeon 		return;
1783f13075afSPyun YongHyeon 	}
1784f13075afSPyun YongHyeon 
1785f13075afSPyun YongHyeon 	pktlen = m->m_pkthdr.len;
1786f13075afSPyun YongHyeon 	if (pktlen < sizeof(struct ether_header) + sizeof(struct ip))
1787f13075afSPyun YongHyeon 		return;
1788f13075afSPyun YongHyeon 	eh = mtod(m, struct ether_header *);
1789f13075afSPyun YongHyeon 	if (eh->ether_type != htons(ETHERTYPE_IP))
1790f13075afSPyun YongHyeon 		return;
1791f13075afSPyun YongHyeon 	ip = (struct ip *)(eh + 1);
1792f13075afSPyun YongHyeon 	if (ip->ip_v != IPVERSION)
1793f13075afSPyun YongHyeon 		return;
1794f13075afSPyun YongHyeon 
1795f13075afSPyun YongHyeon 	hlen = ip->ip_hl << 2;
1796f13075afSPyun YongHyeon 	pktlen -= sizeof(struct ether_header);
1797f13075afSPyun YongHyeon 	if (hlen < sizeof(struct ip))
1798f13075afSPyun YongHyeon 		return;
1799f13075afSPyun YongHyeon 	if (ntohs(ip->ip_len) < hlen)
1800f13075afSPyun YongHyeon 		return;
1801f13075afSPyun YongHyeon 	if (ntohs(ip->ip_len) != pktlen)
1802f13075afSPyun YongHyeon 		return;
1803f13075afSPyun YongHyeon 	if (ip->ip_off & htons(IP_MF | IP_OFFMASK))
1804f13075afSPyun YongHyeon 		return;	/* can't handle fragmented packet */
1805f13075afSPyun YongHyeon 
1806f13075afSPyun YongHyeon 	switch (ip->ip_p) {
1807f13075afSPyun YongHyeon 	case IPPROTO_TCP:
1808f13075afSPyun YongHyeon 		if (pktlen < (hlen + sizeof(struct tcphdr)))
1809f13075afSPyun YongHyeon 			return;
1810f13075afSPyun YongHyeon 		break;
1811f13075afSPyun YongHyeon 	case IPPROTO_UDP:
1812f13075afSPyun YongHyeon 		if (pktlen < (hlen + sizeof(struct udphdr)))
1813f13075afSPyun YongHyeon 			return;
1814f13075afSPyun YongHyeon 		uh = (struct udphdr *)((caddr_t)ip + hlen);
1815f13075afSPyun YongHyeon 		if (uh->uh_sum == 0)
1816f13075afSPyun YongHyeon 			return; /* no checksum */
1817f13075afSPyun YongHyeon 		break;
1818f13075afSPyun YongHyeon 	default:
1819f13075afSPyun YongHyeon 		return;
1820f13075afSPyun YongHyeon 	}
1821f13075afSPyun YongHyeon 	/* Extract computed checksum. */
1822f13075afSPyun YongHyeon 	csum = be16dec(mtod(m, char *) + pos);
1823f13075afSPyun YongHyeon 	/* checksum fixup for IP options */
1824f13075afSPyun YongHyeon 	len = hlen - sizeof(struct ip);
1825f13075afSPyun YongHyeon 	if (len > 0) {
1826f13075afSPyun YongHyeon 		opts = (uint16_t *)(ip + 1);
1827f13075afSPyun YongHyeon 		for (; len > 0; len -= sizeof(uint16_t), opts++) {
1828f13075afSPyun YongHyeon 			temp32 = csum - *opts;
1829f13075afSPyun YongHyeon 			temp32 = (temp32 >> 16) + (temp32 & 65535);
1830f13075afSPyun YongHyeon 			csum = temp32 & 65535;
1831f13075afSPyun YongHyeon 		}
1832f13075afSPyun YongHyeon 	}
1833f13075afSPyun YongHyeon 	m->m_pkthdr.csum_flags |= CSUM_DATA_VALID;
1834f13075afSPyun YongHyeon 	m->m_pkthdr.csum_data = csum;
1835f13075afSPyun YongHyeon }
1836f13075afSPyun YongHyeon 
18371abcdbd1SAttilio Rao static int
fxp_intr_body(struct fxp_softc * sc,if_t ifp,uint8_t statack,int count)183841eb5ac3SMarcel Moolenaar fxp_intr_body(struct fxp_softc *sc, if_t ifp, uint8_t statack,
18394953bccaSNate Lawson     int count)
1840e4fc250cSLuigi Rizzo {
18412b5989e9SLuigi Rizzo 	struct mbuf *m;
1842b2badf02SMaxime Henrion 	struct fxp_rx *rxp;
18432b5989e9SLuigi Rizzo 	struct fxp_rfa *rfa;
18442b5989e9SLuigi Rizzo 	int rnr = (statack & FXP_SCB_STATACK_RNR) ? 1 : 0;
18451abcdbd1SAttilio Rao 	int rx_npkts;
184660bb79ebSPyun YongHyeon 	uint16_t status;
18472b5989e9SLuigi Rizzo 
18481abcdbd1SAttilio Rao 	rx_npkts = 0;
184967fc050fSMaxime Henrion 	FXP_LOCK_ASSERT(sc, MA_OWNED);
18501abcdbd1SAttilio Rao 
18512b5989e9SLuigi Rizzo 	if (rnr)
18520f1db1d6SMaxime Henrion 		sc->rnr++;
1853947e3815SIan Dowse #ifdef DEVICE_POLLING
1854947e3815SIan Dowse 	/* Pick up a deferred RNR condition if `count' ran out last time. */
1855947e3815SIan Dowse 	if (sc->flags & FXP_FLAG_DEFERRED_RNR) {
1856947e3815SIan Dowse 		sc->flags &= ~FXP_FLAG_DEFERRED_RNR;
1857947e3815SIan Dowse 		rnr = 1;
1858947e3815SIan Dowse 	}
1859947e3815SIan Dowse #endif
1860a17c678eSDavid Greenman 
1861a17c678eSDavid Greenman 	/*
18623114fdb4SDavid Greenman 	 * Free any finished transmit mbuf chains.
186306936301SBill Paul 	 *
186406936301SBill Paul 	 * Handle the CNA event likt a CXTNO event. It used to
186506936301SBill Paul 	 * be that this event (control unit not ready) was not
186606936301SBill Paul 	 * encountered, but it is now with the SMPng modifications.
186706936301SBill Paul 	 * The exact sequence of events that occur when the interface
186806936301SBill Paul 	 * is brought up are different now, and if this event
186906936301SBill Paul 	 * goes unhandled, the configuration/rxfilter setup sequence
187006936301SBill Paul 	 * can stall for several seconds. The result is that no
187106936301SBill Paul 	 * packets go out onto the wire for about 5 to 10 seconds
187206936301SBill Paul 	 * after the interface is ifconfig'ed for the first time.
18733114fdb4SDavid Greenman 	 */
18744e53f837SPyun YongHyeon 	if (statack & (FXP_SCB_STATACK_CXTNO | FXP_SCB_STATACK_CNA))
1875b2badf02SMaxime Henrion 		fxp_txeof(sc);
18763114fdb4SDavid Greenman 
18773114fdb4SDavid Greenman 	/*
18783114fdb4SDavid Greenman 	 * Try to start more packets transmitting.
18793114fdb4SDavid Greenman 	 */
188041eb5ac3SMarcel Moolenaar 	if (!if_sendq_empty(ifp))
18814953bccaSNate Lawson 		fxp_start_body(ifp);
18822b5989e9SLuigi Rizzo 
18832b5989e9SLuigi Rizzo 	/*
18842b5989e9SLuigi Rizzo 	 * Just return if nothing happened on the receive side.
18852b5989e9SLuigi Rizzo 	 */
1886947e3815SIan Dowse 	if (!rnr && (statack & FXP_SCB_STATACK_FR) == 0)
18871abcdbd1SAttilio Rao 		return (rx_npkts);
18882b5989e9SLuigi Rizzo 
18893114fdb4SDavid Greenman 	/*
1890a17c678eSDavid Greenman 	 * Process receiver interrupts. If a no-resource (RNR)
1891a17c678eSDavid Greenman 	 * condition exists, get whatever packets we can and
1892a17c678eSDavid Greenman 	 * re-start the receiver.
1893947e3815SIan Dowse 	 *
18942b5989e9SLuigi Rizzo 	 * When using polling, we do not process the list to completion,
18952b5989e9SLuigi Rizzo 	 * so when we get an RNR interrupt we must defer the restart
18962b5989e9SLuigi Rizzo 	 * until we hit the last buffer with the C bit set.
18972b5989e9SLuigi Rizzo 	 * If we run out of cycles and rfa_headm has the C bit set,
1898947e3815SIan Dowse 	 * record the pending RNR in the FXP_FLAG_DEFERRED_RNR flag so
1899947e3815SIan Dowse 	 * that the info will be used in the subsequent polling cycle.
1900a17c678eSDavid Greenman 	 */
19012b5989e9SLuigi Rizzo 	for (;;) {
1902b2badf02SMaxime Henrion 		rxp = sc->fxp_desc.rx_head;
1903b2badf02SMaxime Henrion 		m = rxp->rx_mbuf;
1904ba8c6fd5SDavid Greenman 		rfa = (struct fxp_rfa *)(m->m_ext.ext_buf +
1905ba8c6fd5SDavid Greenman 		    RFA_ALIGNMENT_FUDGE);
1906a2057a72SPyun YongHyeon 		bus_dmamap_sync(sc->fxp_rxmtag, rxp->rx_map,
19074812aef5SPyun YongHyeon 		    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1908a17c678eSDavid Greenman 
1909e4fc250cSLuigi Rizzo #ifdef DEVICE_POLLING /* loop at most count times if count >=0 */
1910947e3815SIan Dowse 		if (count >= 0 && count-- == 0) {
1911947e3815SIan Dowse 			if (rnr) {
1912947e3815SIan Dowse 				/* Defer RNR processing until the next time. */
1913947e3815SIan Dowse 				sc->flags |= FXP_FLAG_DEFERRED_RNR;
1914947e3815SIan Dowse 				rnr = 0;
1915947e3815SIan Dowse 			}
19162b5989e9SLuigi Rizzo 			break;
1917947e3815SIan Dowse 		}
19182b5989e9SLuigi Rizzo #endif /* DEVICE_POLLING */
19192b5989e9SLuigi Rizzo 
192060bb79ebSPyun YongHyeon 		status = le16toh(rfa->rfa_status);
192160bb79ebSPyun YongHyeon 		if ((status & FXP_RFA_STATUS_C) == 0)
19222b5989e9SLuigi Rizzo 			break;
19232b5989e9SLuigi Rizzo 
1924f7a5f737SPyun YongHyeon 		if ((status & FXP_RFA_STATUS_RNR) != 0)
1925f7a5f737SPyun YongHyeon 			rnr++;
1926dfe61cf1SDavid Greenman 		/*
1927b2badf02SMaxime Henrion 		 * Advance head forward.
1928dfe61cf1SDavid Greenman 		 */
1929b2badf02SMaxime Henrion 		sc->fxp_desc.rx_head = rxp->rx_next;
1930a17c678eSDavid Greenman 
1931dfe61cf1SDavid Greenman 		/*
1932ba8c6fd5SDavid Greenman 		 * Add a new buffer to the receive chain.
1933ba8c6fd5SDavid Greenman 		 * If this fails, the old buffer is recycled
1934ba8c6fd5SDavid Greenman 		 * instead.
1935dfe61cf1SDavid Greenman 		 */
193685050421SPyun YongHyeon 		if (fxp_new_rfabuf(sc, rxp) == 0) {
1937aed53495SDavid Greenman 			int total_len;
1938a17c678eSDavid Greenman 
1939e8c8b728SJonathan Lemon 			/*
19402b5989e9SLuigi Rizzo 			 * Fetch packet length (the top 2 bits of
19412b5989e9SLuigi Rizzo 			 * actual_size are flags set by the controller
19422b5989e9SLuigi Rizzo 			 * upon completion), and drop the packet in case
19432b5989e9SLuigi Rizzo 			 * of bogus length or CRC errors.
1944e8c8b728SJonathan Lemon 			 */
1945bafb64afSMaxime Henrion 			total_len = le16toh(rfa->actual_size) & 0x3fff;
1946f13075afSPyun YongHyeon 			if ((sc->flags & FXP_FLAG_82559_RXCSUM) != 0 &&
194741eb5ac3SMarcel Moolenaar 			    (if_getcapenable(ifp) & IFCAP_RXCSUM) != 0) {
1948f13075afSPyun YongHyeon 				/* Adjust for appended checksum bytes. */
1949f13075afSPyun YongHyeon 				total_len -= 2;
1950f13075afSPyun YongHyeon 			}
1951991ae908SPyun YongHyeon 			if (total_len < (int)sizeof(struct ether_header) ||
1952f7a5f737SPyun YongHyeon 			    total_len > (MCLBYTES - RFA_ALIGNMENT_FUDGE -
1953f7a5f737SPyun YongHyeon 			    sc->rfa_size) ||
1954f7a5f737SPyun YongHyeon 			    status & (FXP_RFA_STATUS_CRC |
1955991ae908SPyun YongHyeon 			    FXP_RFA_STATUS_ALIGN | FXP_RFA_STATUS_OVERRUN)) {
1956e8c8b728SJonathan Lemon 				m_freem(m);
1957f7a5f737SPyun YongHyeon 				fxp_add_rfabuf(sc, rxp);
19582b5989e9SLuigi Rizzo 				continue;
1959e8c8b728SJonathan Lemon 			}
1960920b58e8SBrooks Davis 
19612e2de7f2SArchie Cobbs 			m->m_pkthdr.len = m->m_len = total_len;
196241eb5ac3SMarcel Moolenaar 			if_setrcvif(m, ifp);
1963673d9191SSam Leffler 
1964f13075afSPyun YongHyeon                         /* Do IP checksum checking. */
196541eb5ac3SMarcel Moolenaar 			if ((if_getcapenable(ifp) & IFCAP_RXCSUM) != 0)
1966f13075afSPyun YongHyeon 				fxp_rxcsum(sc, ifp, m, status, total_len);
196741eb5ac3SMarcel Moolenaar 			if ((if_getcapenable(ifp) & IFCAP_VLAN_HWTAGGING) != 0 &&
1968bd4fa9d9SPyun YongHyeon 			    (status & FXP_RFA_STATUS_VLAN) != 0) {
1969bd4fa9d9SPyun YongHyeon 				m->m_pkthdr.ether_vtag =
1970bd4fa9d9SPyun YongHyeon 				    ntohs(rfa->rfax_vlan_id);
1971bd4fa9d9SPyun YongHyeon 				m->m_flags |= M_VLANTAG;
1972bd4fa9d9SPyun YongHyeon 			}
197305fb8c3fSNate Lawson 			/*
197405fb8c3fSNate Lawson 			 * Drop locks before calling if_input() since it
197505fb8c3fSNate Lawson 			 * may re-enter fxp_start() in the netisr case.
197605fb8c3fSNate Lawson 			 * This would result in a lock reversal.  Better
197705fb8c3fSNate Lawson 			 * performance might be obtained by chaining all
197805fb8c3fSNate Lawson 			 * packets received, dropping the lock, and then
197905fb8c3fSNate Lawson 			 * calling if_input() on each one.
198005fb8c3fSNate Lawson 			 */
198105fb8c3fSNate Lawson 			FXP_UNLOCK(sc);
198241eb5ac3SMarcel Moolenaar 			if_input(ifp, m);
198305fb8c3fSNate Lawson 			FXP_LOCK(sc);
19841abcdbd1SAttilio Rao 			rx_npkts++;
198541eb5ac3SMarcel Moolenaar 			if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) == 0)
1986c109e385SPyun YongHyeon 				return (rx_npkts);
198785050421SPyun YongHyeon 		} else {
198885050421SPyun YongHyeon 			/* Reuse RFA and loaded DMA map. */
1989df360178SGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_IQDROPS, 1);
199085050421SPyun YongHyeon 			fxp_discard_rfabuf(sc, rxp);
1991a17c678eSDavid Greenman 		}
199285050421SPyun YongHyeon 		fxp_add_rfabuf(sc, rxp);
1993a17c678eSDavid Greenman 	}
19942b5989e9SLuigi Rizzo 	if (rnr) {
1995ba8c6fd5SDavid Greenman 		fxp_scb_wait(sc);
1996ba8c6fd5SDavid Greenman 		CSR_WRITE_4(sc, FXP_CSR_SCB_GENERAL,
1997b2badf02SMaxime Henrion 		    sc->fxp_desc.rx_head->rx_addr);
19982e2b8238SJonathan Lemon 		fxp_scb_cmd(sc, FXP_SCB_COMMAND_RU_START);
1999a17c678eSDavid Greenman 	}
20001abcdbd1SAttilio Rao 	return (rx_npkts);
2001a17c678eSDavid Greenman }
2002a17c678eSDavid Greenman 
2003303b270bSEivind Eklund static void
fxp_update_stats(struct fxp_softc * sc)20048da9c507SPyun YongHyeon fxp_update_stats(struct fxp_softc *sc)
2005a17c678eSDavid Greenman {
200641eb5ac3SMarcel Moolenaar 	if_t ifp = sc->ifp;
2007a17c678eSDavid Greenman 	struct fxp_stats *sp = sc->fxp_stats;
20088da9c507SPyun YongHyeon 	struct fxp_hwstats *hsp;
20098da9c507SPyun YongHyeon 	uint32_t *status;
2010a17c678eSDavid Greenman 
20113212724cSJohn Baldwin 	FXP_LOCK_ASSERT(sc, MA_OWNED);
20128da9c507SPyun YongHyeon 
20138da9c507SPyun YongHyeon 	bus_dmamap_sync(sc->fxp_stag, sc->fxp_smap,
20148da9c507SPyun YongHyeon 	    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
20158da9c507SPyun YongHyeon 	/* Update statistical counters. */
20168da9c507SPyun YongHyeon 	if (sc->revision >= FXP_REV_82559_A0)
20178da9c507SPyun YongHyeon 		status = &sp->completion_status;
20188da9c507SPyun YongHyeon 	else if (sc->revision >= FXP_REV_82558_A4)
20198da9c507SPyun YongHyeon 		status = (uint32_t *)&sp->tx_tco;
20208da9c507SPyun YongHyeon 	else
20218da9c507SPyun YongHyeon 		status = &sp->tx_pause;
20228da9c507SPyun YongHyeon 	if (*status == htole32(FXP_STATS_DR_COMPLETE)) {
20238da9c507SPyun YongHyeon 		hsp = &sc->fxp_hwstats;
20248da9c507SPyun YongHyeon 		hsp->tx_good += le32toh(sp->tx_good);
20258da9c507SPyun YongHyeon 		hsp->tx_maxcols += le32toh(sp->tx_maxcols);
20268da9c507SPyun YongHyeon 		hsp->tx_latecols += le32toh(sp->tx_latecols);
20278da9c507SPyun YongHyeon 		hsp->tx_underruns += le32toh(sp->tx_underruns);
20288da9c507SPyun YongHyeon 		hsp->tx_lostcrs += le32toh(sp->tx_lostcrs);
20298da9c507SPyun YongHyeon 		hsp->tx_deffered += le32toh(sp->tx_deffered);
20308da9c507SPyun YongHyeon 		hsp->tx_single_collisions += le32toh(sp->tx_single_collisions);
20318da9c507SPyun YongHyeon 		hsp->tx_multiple_collisions +=
20328da9c507SPyun YongHyeon 		    le32toh(sp->tx_multiple_collisions);
20338da9c507SPyun YongHyeon 		hsp->tx_total_collisions += le32toh(sp->tx_total_collisions);
20348da9c507SPyun YongHyeon 		hsp->rx_good += le32toh(sp->rx_good);
20358da9c507SPyun YongHyeon 		hsp->rx_crc_errors += le32toh(sp->rx_crc_errors);
20368da9c507SPyun YongHyeon 		hsp->rx_alignment_errors += le32toh(sp->rx_alignment_errors);
20378da9c507SPyun YongHyeon 		hsp->rx_rnr_errors += le32toh(sp->rx_rnr_errors);
20388da9c507SPyun YongHyeon 		hsp->rx_overrun_errors += le32toh(sp->rx_overrun_errors);
20398da9c507SPyun YongHyeon 		hsp->rx_cdt_errors += le32toh(sp->rx_cdt_errors);
20408da9c507SPyun YongHyeon 		hsp->rx_shortframes += le32toh(sp->rx_shortframes);
20418da9c507SPyun YongHyeon 		hsp->tx_pause += le32toh(sp->tx_pause);
20428da9c507SPyun YongHyeon 		hsp->rx_pause += le32toh(sp->rx_pause);
20438da9c507SPyun YongHyeon 		hsp->rx_controls += le32toh(sp->rx_controls);
20448da9c507SPyun YongHyeon 		hsp->tx_tco += le16toh(sp->tx_tco);
20458da9c507SPyun YongHyeon 		hsp->rx_tco += le16toh(sp->rx_tco);
20468da9c507SPyun YongHyeon 
2047df360178SGleb Smirnoff 		if_inc_counter(ifp, IFCOUNTER_OPACKETS, le32toh(sp->tx_good));
2048df360178SGleb Smirnoff 		if_inc_counter(ifp, IFCOUNTER_COLLISIONS,
2049df360178SGleb Smirnoff 		    le32toh(sp->tx_total_collisions));
2050397f9dfeSDavid Greenman 		if (sp->rx_good) {
2051df360178SGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_IPACKETS,
2052df360178SGleb Smirnoff 			    le32toh(sp->rx_good));
2053397f9dfeSDavid Greenman 			sc->rx_idle_secs = 0;
205443d8b117SPyun YongHyeon 		} else if (sc->flags & FXP_FLAG_RXBUG) {
2055c8cc6fcaSDavid Greenman 			/*
2056c8cc6fcaSDavid Greenman 			 * Receiver's been idle for another second.
2057c8cc6fcaSDavid Greenman 			 */
2058397f9dfeSDavid Greenman 			sc->rx_idle_secs++;
2059397f9dfeSDavid Greenman 		}
2060df360178SGleb Smirnoff 		if_inc_counter(ifp, IFCOUNTER_IERRORS,
206183e6547dSMaxime Henrion 		    le32toh(sp->rx_crc_errors) +
206283e6547dSMaxime Henrion 		    le32toh(sp->rx_alignment_errors) +
206383e6547dSMaxime Henrion 		    le32toh(sp->rx_rnr_errors) +
206441eb5ac3SMarcel Moolenaar 		    le32toh(sp->rx_overrun_errors));
2065a17c678eSDavid Greenman 		/*
2066453130d9SPedro F. Giffuni 		 * If any transmit underruns occurred, bump up the transmit
2067f9be9005SDavid Greenman 		 * threshold by another 512 bytes (64 * 8).
2068f9be9005SDavid Greenman 		 */
2069f9be9005SDavid Greenman 		if (sp->tx_underruns) {
2070df360178SGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_OERRORS,
2071df360178SGleb Smirnoff 			    le32toh(sp->tx_underruns));
2072f9be9005SDavid Greenman 			if (tx_threshold < 192)
2073f9be9005SDavid Greenman 				tx_threshold += 64;
2074f9be9005SDavid Greenman 		}
20758da9c507SPyun YongHyeon 		*status = 0;
20768da9c507SPyun YongHyeon 		bus_dmamap_sync(sc->fxp_stag, sc->fxp_smap,
20778da9c507SPyun YongHyeon 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
20788da9c507SPyun YongHyeon 	}
20798da9c507SPyun YongHyeon }
20808da9c507SPyun YongHyeon 
20818da9c507SPyun YongHyeon /*
20828da9c507SPyun YongHyeon  * Update packet in/out/collision statistics. The i82557 doesn't
20838da9c507SPyun YongHyeon  * allow you to access these counters without doing a fairly
20848da9c507SPyun YongHyeon  * expensive DMA to get _all_ of the statistics it maintains, so
20858da9c507SPyun YongHyeon  * we do this operation here only once per second. The statistics
20868da9c507SPyun YongHyeon  * counters in the kernel are updated from the previous dump-stats
20878da9c507SPyun YongHyeon  * DMA and then a new dump-stats DMA is started. The on-chip
20888da9c507SPyun YongHyeon  * counters are zeroed when the DMA completes. If we can't start
20898da9c507SPyun YongHyeon  * the DMA immediately, we don't wait - we just prepare to read
20908da9c507SPyun YongHyeon  * them again next time.
20918da9c507SPyun YongHyeon  */
20928da9c507SPyun YongHyeon static void
fxp_tick(void * xsc)20938da9c507SPyun YongHyeon fxp_tick(void *xsc)
20948da9c507SPyun YongHyeon {
20958da9c507SPyun YongHyeon 	struct fxp_softc *sc = xsc;
209641eb5ac3SMarcel Moolenaar 	if_t ifp = sc->ifp;
20978da9c507SPyun YongHyeon 
20988da9c507SPyun YongHyeon 	FXP_LOCK_ASSERT(sc, MA_OWNED);
20998da9c507SPyun YongHyeon 
21008da9c507SPyun YongHyeon 	/* Update statistical counters. */
21018da9c507SPyun YongHyeon 	fxp_update_stats(sc);
21024953bccaSNate Lawson 
2103397f9dfeSDavid Greenman 	/*
2104c8cc6fcaSDavid Greenman 	 * Release any xmit buffers that have completed DMA. This isn't
2105c8cc6fcaSDavid Greenman 	 * strictly necessary to do here, but it's advantagous for mbufs
2106c8cc6fcaSDavid Greenman 	 * with external storage to be released in a timely manner rather
2107c8cc6fcaSDavid Greenman 	 * than being defered for a potentially long time. This limits
2108c8cc6fcaSDavid Greenman 	 * the delay to a maximum of one second.
2109c8cc6fcaSDavid Greenman 	 */
2110b2badf02SMaxime Henrion 	fxp_txeof(sc);
2111b2badf02SMaxime Henrion 
2112c8cc6fcaSDavid Greenman 	/*
2113397f9dfeSDavid Greenman 	 * If we haven't received any packets in FXP_MAC_RX_IDLE seconds,
2114397f9dfeSDavid Greenman 	 * then assume the receiver has locked up and attempt to clear
2115397f9dfeSDavid Greenman 	 * the condition by reprogramming the multicast filter. This is
2116397f9dfeSDavid Greenman 	 * a work-around for a bug in the 82557 where the receiver locks
2117453130d9SPedro F. Giffuni 	 * up if it gets certain types of garbage in the synchronization
2118397f9dfeSDavid Greenman 	 * bits prior to the packet header. This bug is supposed to only
2119397f9dfeSDavid Greenman 	 * occur in 10Mbps mode, but has been seen to occur in 100Mbps
2120397f9dfeSDavid Greenman 	 * mode as well (perhaps due to a 10/100 speed transition).
2121397f9dfeSDavid Greenman 	 */
2122397f9dfeSDavid Greenman 	if (sc->rx_idle_secs > FXP_MAX_RX_IDLE) {
2123397f9dfeSDavid Greenman 		sc->rx_idle_secs = 0;
212441eb5ac3SMarcel Moolenaar 		if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) != 0) {
212541eb5ac3SMarcel Moolenaar 			if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
21261845b5c3SMarius Strobl 			fxp_init_body(sc, 1);
21275506afefSPyun YongHyeon 		}
21286b24912cSPyun YongHyeon 		return;
2129397f9dfeSDavid Greenman 	}
2130f9be9005SDavid Greenman 	/*
21313ba65732SDavid Greenman 	 * If there is no pending command, start another stats
21323ba65732SDavid Greenman 	 * dump. Otherwise punt for now.
2133a17c678eSDavid Greenman 	 */
2134397f9dfeSDavid Greenman 	if (CSR_READ_1(sc, FXP_CSR_SCB_COMMAND) == 0) {
2135a17c678eSDavid Greenman 		/*
2136397f9dfeSDavid Greenman 		 * Start another stats dump.
2137a17c678eSDavid Greenman 		 */
21382e2b8238SJonathan Lemon 		fxp_scb_cmd(sc, FXP_SCB_COMMAND_CU_DUMPRESET);
2139dfe61cf1SDavid Greenman 	}
2140f7788e8eSJonathan Lemon 	if (sc->miibus != NULL)
2141f7788e8eSJonathan Lemon 		mii_tick(device_get_softc(sc->miibus));
21424953bccaSNate Lawson 
2143a17c678eSDavid Greenman 	/*
214416f1e614SRuslan Ermilov 	 * Check that chip hasn't hung.
2145df79d527SGleb Smirnoff 	 */
2146df79d527SGleb Smirnoff 	fxp_watchdog(sc);
2147df79d527SGleb Smirnoff 
2148df79d527SGleb Smirnoff 	/*
2149a17c678eSDavid Greenman 	 * Schedule another timeout one second from now.
2150a17c678eSDavid Greenman 	 */
215145276e4aSSam Leffler 	callout_reset(&sc->stat_ch, hz, fxp_tick, sc);
2152a17c678eSDavid Greenman }
2153a17c678eSDavid Greenman 
2154a17c678eSDavid Greenman /*
2155a17c678eSDavid Greenman  * Stop the interface. Cancels the statistics updater and resets
2156a17c678eSDavid Greenman  * the interface.
2157a17c678eSDavid Greenman  */
2158a17c678eSDavid Greenman static void
fxp_stop(struct fxp_softc * sc)2159f7788e8eSJonathan Lemon fxp_stop(struct fxp_softc *sc)
2160a17c678eSDavid Greenman {
216141eb5ac3SMarcel Moolenaar 	if_t ifp = sc->ifp;
2162b2badf02SMaxime Henrion 	struct fxp_tx *txp;
21633ba65732SDavid Greenman 	int i;
2164a17c678eSDavid Greenman 
216541eb5ac3SMarcel Moolenaar 	if_setdrvflagbits(ifp, 0, (IFF_DRV_RUNNING | IFF_DRV_OACTIVE));
2166df79d527SGleb Smirnoff 	sc->watchdog_timer = 0;
21677dced78aSDavid Greenman 
2168a17c678eSDavid Greenman 	/*
2169a17c678eSDavid Greenman 	 * Cancel stats updater.
2170a17c678eSDavid Greenman 	 */
217145276e4aSSam Leffler 	callout_stop(&sc->stat_ch);
21723ba65732SDavid Greenman 
21733ba65732SDavid Greenman 	/*
21747137cea0SPyun YongHyeon 	 * Preserve PCI configuration, configure, IA/multicast
21757137cea0SPyun YongHyeon 	 * setup and put RU and CU into idle state.
21763ba65732SDavid Greenman 	 */
21777137cea0SPyun YongHyeon 	CSR_WRITE_4(sc, FXP_CSR_PORT, FXP_PORT_SELECTIVE_RESET);
217872a32a26SJonathan Lemon 	DELAY(50);
21797137cea0SPyun YongHyeon 	/* Disable interrupts. */
21807137cea0SPyun YongHyeon 	CSR_WRITE_1(sc, FXP_CSR_SCB_INTRCNTL, FXP_SCB_INTR_DISABLE);
2181a17c678eSDavid Greenman 
21828da9c507SPyun YongHyeon 	fxp_update_stats(sc);
21838da9c507SPyun YongHyeon 
21843ba65732SDavid Greenman 	/*
21853ba65732SDavid Greenman 	 * Release any xmit buffers.
21863ba65732SDavid Greenman 	 */
2187b2badf02SMaxime Henrion 	txp = sc->fxp_desc.tx_list;
2188da91462dSDavid Greenman 	for (i = 0; i < FXP_NTXCB; i++) {
2189b2badf02SMaxime Henrion 		if (txp[i].tx_mbuf != NULL) {
2190a2057a72SPyun YongHyeon 			bus_dmamap_sync(sc->fxp_txmtag, txp[i].tx_map,
2191b2badf02SMaxime Henrion 			    BUS_DMASYNC_POSTWRITE);
219290b45a32SPyun YongHyeon 			bus_dmamap_unload(sc->fxp_txmtag, txp[i].tx_map);
2193b2badf02SMaxime Henrion 			m_freem(txp[i].tx_mbuf);
2194b2badf02SMaxime Henrion 			txp[i].tx_mbuf = NULL;
2195c8bca6dcSBill Paul 			/* clear this to reset csum offload bits */
2196b2badf02SMaxime Henrion 			txp[i].tx_cb->tbd[0].tb_addr = 0;
2197da91462dSDavid Greenman 		}
2198da91462dSDavid Greenman 	}
2199a2057a72SPyun YongHyeon 	bus_dmamap_sync(sc->cbl_tag, sc->cbl_map,
2200a2057a72SPyun YongHyeon 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
22013ba65732SDavid Greenman 	sc->tx_queued = 0;
2202a17c678eSDavid Greenman }
2203a17c678eSDavid Greenman 
2204a17c678eSDavid Greenman /*
2205a17c678eSDavid Greenman  * Watchdog/transmission transmit timeout handler. Called when a
2206a17c678eSDavid Greenman  * transmission is started on the interface, but no interrupt is
2207a17c678eSDavid Greenman  * received before the timeout. This usually indicates that the
2208a17c678eSDavid Greenman  * card has wedged for some reason.
2209a17c678eSDavid Greenman  */
2210a17c678eSDavid Greenman static void
fxp_watchdog(struct fxp_softc * sc)2211df79d527SGleb Smirnoff fxp_watchdog(struct fxp_softc *sc)
2212a17c678eSDavid Greenman {
221341eb5ac3SMarcel Moolenaar 	if_t ifp = sc->ifp;
2214ba8c6fd5SDavid Greenman 
2215df79d527SGleb Smirnoff 	FXP_LOCK_ASSERT(sc, MA_OWNED);
2216df79d527SGleb Smirnoff 
2217df79d527SGleb Smirnoff 	if (sc->watchdog_timer == 0 || --sc->watchdog_timer)
2218df79d527SGleb Smirnoff 		return;
2219df79d527SGleb Smirnoff 
2220f7788e8eSJonathan Lemon 	device_printf(sc->dev, "device timeout\n");
2221df360178SGleb Smirnoff 	if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
2222a17c678eSDavid Greenman 
222341eb5ac3SMarcel Moolenaar 	if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
22241845b5c3SMarius Strobl 	fxp_init_body(sc, 1);
2225a17c678eSDavid Greenman }
2226a17c678eSDavid Greenman 
22274953bccaSNate Lawson /*
22284953bccaSNate Lawson  * Acquire locks and then call the real initialization function.  This
22294953bccaSNate Lawson  * is necessary because ether_ioctl() calls if_init() and this would
22304953bccaSNate Lawson  * result in mutex recursion if the mutex was held.
22314953bccaSNate Lawson  */
2232a17c678eSDavid Greenman static void
fxp_init(void * xsc)2233f7788e8eSJonathan Lemon fxp_init(void *xsc)
2234a17c678eSDavid Greenman {
2235fb583156SDavid Greenman 	struct fxp_softc *sc = xsc;
22364953bccaSNate Lawson 
22374953bccaSNate Lawson 	FXP_LOCK(sc);
22381845b5c3SMarius Strobl 	fxp_init_body(sc, 1);
22394953bccaSNate Lawson 	FXP_UNLOCK(sc);
22404953bccaSNate Lawson }
22414953bccaSNate Lawson 
22424953bccaSNate Lawson /*
22434953bccaSNate Lawson  * Perform device initialization. This routine must be called with the
22444953bccaSNate Lawson  * softc lock held.
22454953bccaSNate Lawson  */
22464953bccaSNate Lawson static void
fxp_init_body(struct fxp_softc * sc,int setmedia)22471845b5c3SMarius Strobl fxp_init_body(struct fxp_softc *sc, int setmedia)
22484953bccaSNate Lawson {
224941eb5ac3SMarcel Moolenaar 	if_t ifp = sc->ifp;
22501845b5c3SMarius Strobl 	struct mii_data *mii;
2251a17c678eSDavid Greenman 	struct fxp_cb_config *cbp;
2252a17c678eSDavid Greenman 	struct fxp_cb_ias *cb_ias;
2253b2badf02SMaxime Henrion 	struct fxp_cb_tx *tcbp;
2254b2badf02SMaxime Henrion 	struct fxp_tx *txp;
22553212724cSJohn Baldwin 	int i, prm;
2256a17c678eSDavid Greenman 
225767fc050fSMaxime Henrion 	FXP_LOCK_ASSERT(sc, MA_OWNED);
22585506afefSPyun YongHyeon 
225941eb5ac3SMarcel Moolenaar 	if (if_getdrvflags(ifp) & IFF_DRV_RUNNING)
22605506afefSPyun YongHyeon 		return;
22615506afefSPyun YongHyeon 
2262a17c678eSDavid Greenman 	/*
22633ba65732SDavid Greenman 	 * Cancel any pending I/O
2264a17c678eSDavid Greenman 	 */
22653ba65732SDavid Greenman 	fxp_stop(sc);
2266a17c678eSDavid Greenman 
22677137cea0SPyun YongHyeon 	/*
22687137cea0SPyun YongHyeon 	 * Issue software reset, which also unloads the microcode.
22697137cea0SPyun YongHyeon 	 */
22707137cea0SPyun YongHyeon 	sc->flags &= ~FXP_FLAG_UCODE;
22717137cea0SPyun YongHyeon 	CSR_WRITE_4(sc, FXP_CSR_PORT, FXP_PORT_SOFTWARE_RESET);
22727137cea0SPyun YongHyeon 	DELAY(50);
22737137cea0SPyun YongHyeon 
227441eb5ac3SMarcel Moolenaar 	prm = (if_getflags(ifp) & IFF_PROMISC) ? 1 : 0;
2275a17c678eSDavid Greenman 
2276a17c678eSDavid Greenman 	/*
2277a17c678eSDavid Greenman 	 * Initialize base of CBL and RFA memory. Loading with zero
2278a17c678eSDavid Greenman 	 * sets it up for regular linear addressing.
2279a17c678eSDavid Greenman 	 */
2280ba8c6fd5SDavid Greenman 	CSR_WRITE_4(sc, FXP_CSR_SCB_GENERAL, 0);
22812e2b8238SJonathan Lemon 	fxp_scb_cmd(sc, FXP_SCB_COMMAND_CU_BASE);
2282a17c678eSDavid Greenman 
2283ba8c6fd5SDavid Greenman 	fxp_scb_wait(sc);
22842e2b8238SJonathan Lemon 	fxp_scb_cmd(sc, FXP_SCB_COMMAND_RU_BASE);
2285a17c678eSDavid Greenman 
2286a17c678eSDavid Greenman 	/*
2287a17c678eSDavid Greenman 	 * Initialize base of dump-stats buffer.
2288a17c678eSDavid Greenman 	 */
2289ba8c6fd5SDavid Greenman 	fxp_scb_wait(sc);
22908da9c507SPyun YongHyeon 	bzero(sc->fxp_stats, sizeof(struct fxp_stats));
22918da9c507SPyun YongHyeon 	bus_dmamap_sync(sc->fxp_stag, sc->fxp_smap,
22928da9c507SPyun YongHyeon 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
2293b2badf02SMaxime Henrion 	CSR_WRITE_4(sc, FXP_CSR_SCB_GENERAL, sc->stats_addr);
22942e2b8238SJonathan Lemon 	fxp_scb_cmd(sc, FXP_SCB_COMMAND_CU_DUMP_ADR);
2295a17c678eSDavid Greenman 
2296a17c678eSDavid Greenman 	/*
229772a32a26SJonathan Lemon 	 * Attempt to load microcode if requested.
2298b96ad4b2SPyun YongHyeon 	 * For ICH based controllers do not load microcode.
229972a32a26SJonathan Lemon 	 */
2300b96ad4b2SPyun YongHyeon 	if (sc->ident->ich == 0) {
230141eb5ac3SMarcel Moolenaar 		if (if_getflags(ifp) & IFF_LINK0 &&
2302b96ad4b2SPyun YongHyeon 		    (sc->flags & FXP_FLAG_UCODE) == 0)
230372a32a26SJonathan Lemon 			fxp_load_ucode(sc);
2304b96ad4b2SPyun YongHyeon 	}
230572a32a26SJonathan Lemon 
230672a32a26SJonathan Lemon 	/*
23076b24912cSPyun YongHyeon 	 * Set IFF_ALLMULTI status. It's needed in configure action
23086b24912cSPyun YongHyeon 	 * command.
230909882363SJonathan Lemon 	 */
23106b24912cSPyun YongHyeon 	fxp_mc_addrs(sc);
231109882363SJonathan Lemon 
231209882363SJonathan Lemon 	/*
2313a17c678eSDavid Greenman 	 * We temporarily use memory that contains the TxCB list to
2314a17c678eSDavid Greenman 	 * construct the config CB. The TxCB list memory is rebuilt
2315a17c678eSDavid Greenman 	 * later.
2316a17c678eSDavid Greenman 	 */
2317b2badf02SMaxime Henrion 	cbp = (struct fxp_cb_config *)sc->fxp_desc.cbl_list;
2318a17c678eSDavid Greenman 
2319a17c678eSDavid Greenman 	/*
2320a17c678eSDavid Greenman 	 * This bcopy is kind of disgusting, but there are a bunch of must be
2321a17c678eSDavid Greenman 	 * zero and must be one bits in this structure and this is the easiest
2322a17c678eSDavid Greenman 	 * way to initialize them all to proper values.
2323a17c678eSDavid Greenman 	 */
2324b2badf02SMaxime Henrion 	bcopy(fxp_cb_config_template, cbp, sizeof(fxp_cb_config_template));
2325a17c678eSDavid Greenman 
2326a17c678eSDavid Greenman 	cbp->cb_status =	0;
232783e6547dSMaxime Henrion 	cbp->cb_command =	htole16(FXP_CB_COMMAND_CONFIG |
232883e6547dSMaxime Henrion 	    FXP_CB_COMMAND_EL);
232983e6547dSMaxime Henrion 	cbp->link_addr =	0xffffffff;	/* (no) next command */
23302c6c0947SMaxime Henrion 	cbp->byte_count =	sc->flags & FXP_FLAG_EXT_RFA ? 32 : 22;
2331001696daSDavid Greenman 	cbp->rx_fifo_limit =	8;	/* rx fifo threshold (32 bytes) */
2332001696daSDavid Greenman 	cbp->tx_fifo_limit =	0;	/* tx fifo threshold (0 bytes) */
2333a17c678eSDavid Greenman 	cbp->adaptive_ifs =	0;	/* (no) adaptive interframe spacing */
2334f7788e8eSJonathan Lemon 	cbp->mwi_enable =	sc->flags & FXP_FLAG_MWI_ENABLE ? 1 : 0;
2335f7788e8eSJonathan Lemon 	cbp->type_enable =	0;	/* actually reserved */
2336f7788e8eSJonathan Lemon 	cbp->read_align_en =	sc->flags & FXP_FLAG_READ_ALIGN ? 1 : 0;
2337f7788e8eSJonathan Lemon 	cbp->end_wr_on_cl =	sc->flags & FXP_FLAG_WRITE_ALIGN ? 1 : 0;
2338001696daSDavid Greenman 	cbp->rx_dma_bytecount =	0;	/* (no) rx DMA max */
2339001696daSDavid Greenman 	cbp->tx_dma_bytecount =	0;	/* (no) tx DMA max */
2340f7788e8eSJonathan Lemon 	cbp->dma_mbce =		0;	/* (disable) dma max counters */
2341a17c678eSDavid Greenman 	cbp->late_scb =		0;	/* (don't) defer SCB update */
2342f7788e8eSJonathan Lemon 	cbp->direct_dma_dis =	1;	/* disable direct rcv dma mode */
2343f7788e8eSJonathan Lemon 	cbp->tno_int_or_tco_en =0;	/* (disable) tx not okay interrupt */
23443114fdb4SDavid Greenman 	cbp->ci_int =		1;	/* interrupt on CU idle */
2345f7788e8eSJonathan Lemon 	cbp->ext_txcb_dis = 	sc->flags & FXP_FLAG_EXT_TXCB ? 0 : 1;
2346f7788e8eSJonathan Lemon 	cbp->ext_stats_dis = 	1;	/* disable extended counters */
2347f7788e8eSJonathan Lemon 	cbp->keep_overrun_rx = 	0;	/* don't pass overrun frames to host */
23488ef1f631SYaroslav Tykhiy 	cbp->save_bf =		sc->flags & FXP_FLAG_SAVE_BAD ? 1 : prm;
2349a17c678eSDavid Greenman 	cbp->disc_short_rx =	!prm;	/* discard short packets */
2350f7788e8eSJonathan Lemon 	cbp->underrun_retry =	1;	/* retry mode (once) on DMA underrun */
2351f7788e8eSJonathan Lemon 	cbp->two_frames =	0;	/* do not limit FIFO to 2 frames */
2352c21e84e4SPyun YongHyeon 	cbp->dyn_tbd =		sc->flags & FXP_FLAG_EXT_RFA ? 1 : 0;
2353c8bca6dcSBill Paul 	cbp->ext_rfa =		sc->flags & FXP_FLAG_EXT_RFA ? 1 : 0;
2354f7788e8eSJonathan Lemon 	cbp->mediatype =	sc->flags & FXP_FLAG_SERIAL_MEDIA ? 0 : 1;
2355f7788e8eSJonathan Lemon 	cbp->csma_dis =		0;	/* (don't) disable link */
2356f13075afSPyun YongHyeon 	cbp->tcp_udp_cksum =	((sc->flags & FXP_FLAG_82559_RXCSUM) != 0 &&
235741eb5ac3SMarcel Moolenaar 	    (if_getcapenable(ifp) & IFCAP_RXCSUM) != 0) ? 1 : 0;
2358f7788e8eSJonathan Lemon 	cbp->vlan_tco =		0;	/* (don't) enable vlan wakeup */
2359f7788e8eSJonathan Lemon 	cbp->link_wake_en =	0;	/* (don't) assert PME# on link change */
2360f7788e8eSJonathan Lemon 	cbp->arp_wake_en =	0;	/* (don't) assert PME# on arp */
2361f7788e8eSJonathan Lemon 	cbp->mc_wake_en =	0;	/* (don't) enable PME# on mcmatch */
2362a17c678eSDavid Greenman 	cbp->nsai =		1;	/* (don't) disable source addr insert */
2363a17c678eSDavid Greenman 	cbp->preamble_length =	2;	/* (7 byte) preamble */
2364a17c678eSDavid Greenman 	cbp->loopback =		0;	/* (don't) loopback */
2365a17c678eSDavid Greenman 	cbp->linear_priority =	0;	/* (normal CSMA/CD operation) */
2366a17c678eSDavid Greenman 	cbp->linear_pri_mode =	0;	/* (wait after xmit only) */
2367a17c678eSDavid Greenman 	cbp->interfrm_spacing =	6;	/* (96 bits of) interframe spacing */
2368a17c678eSDavid Greenman 	cbp->promiscuous =	prm;	/* promiscuous mode */
2369a17c678eSDavid Greenman 	cbp->bcast_disable =	0;	/* (don't) disable broadcasts */
2370f7788e8eSJonathan Lemon 	cbp->wait_after_win =	0;	/* (don't) enable modified backoff alg*/
2371f7788e8eSJonathan Lemon 	cbp->ignore_ul =	0;	/* consider U/L bit in IA matching */
2372f7788e8eSJonathan Lemon 	cbp->crc16_en =		0;	/* (don't) enable crc-16 algorithm */
2373f7788e8eSJonathan Lemon 	cbp->crscdt =		sc->flags & FXP_FLAG_SERIAL_MEDIA ? 1 : 0;
2374f7788e8eSJonathan Lemon 
2375a17c678eSDavid Greenman 	cbp->stripping =	!prm;	/* truncate rx packet to byte count */
2376a17c678eSDavid Greenman 	cbp->padding =		1;	/* (do) pad short tx packets */
2377a17c678eSDavid Greenman 	cbp->rcv_crc_xfer =	0;	/* (don't) xfer CRC to host */
2378f7788e8eSJonathan Lemon 	cbp->long_rx_en =	sc->flags & FXP_FLAG_LONG_PKT_EN ? 1 : 0;
2379f7788e8eSJonathan Lemon 	cbp->ia_wake_en =	0;	/* (don't) wake up on address match */
23807137cea0SPyun YongHyeon 	cbp->magic_pkt_dis =	sc->flags & FXP_FLAG_WOL ? 0 : 1;
2381a17c678eSDavid Greenman 	cbp->force_fdx =	0;	/* (don't) force full duplex */
23823ba65732SDavid Greenman 	cbp->fdx_pin_en =	1;	/* (enable) FDX# pin */
2383a17c678eSDavid Greenman 	cbp->multi_ia =		0;	/* (don't) accept multiple IAs */
238441eb5ac3SMarcel Moolenaar 	cbp->mc_all =		if_getflags(ifp) & IFF_ALLMULTI ? 1 : prm;
2385c8bca6dcSBill Paul 	cbp->gamla_rx =		sc->flags & FXP_FLAG_EXT_RFA ? 1 : 0;
2386bd4fa9d9SPyun YongHyeon 	cbp->vlan_strip_en =	((sc->flags & FXP_FLAG_EXT_RFA) != 0 &&
238741eb5ac3SMarcel Moolenaar 	    (if_getcapenable(ifp) & IFCAP_VLAN_HWTAGGING) != 0) ? 1 : 0;
2388a17c678eSDavid Greenman 
23891845b5c3SMarius Strobl 	if (sc->revision == FXP_REV_82557) {
23903bd07cfdSJonathan Lemon 		/*
23913bd07cfdSJonathan Lemon 		 * The 82557 has no hardware flow control, the values
23923bd07cfdSJonathan Lemon 		 * below are the defaults for the chip.
23933bd07cfdSJonathan Lemon 		 */
23943bd07cfdSJonathan Lemon 		cbp->fc_delay_lsb =	0;
23953bd07cfdSJonathan Lemon 		cbp->fc_delay_msb =	0x40;
23963bd07cfdSJonathan Lemon 		cbp->pri_fc_thresh =	3;
23973bd07cfdSJonathan Lemon 		cbp->tx_fc_dis =	0;
23983bd07cfdSJonathan Lemon 		cbp->rx_fc_restop =	0;
23993bd07cfdSJonathan Lemon 		cbp->rx_fc_restart =	0;
24003bd07cfdSJonathan Lemon 		cbp->fc_filter =	0;
24013bd07cfdSJonathan Lemon 		cbp->pri_fc_loc =	1;
24023bd07cfdSJonathan Lemon 	} else {
24031845b5c3SMarius Strobl 		/* Set pause RX FIFO threshold to 1KB. */
24041845b5c3SMarius Strobl 		CSR_WRITE_1(sc, FXP_CSR_FC_THRESH, 1);
24051845b5c3SMarius Strobl 		/* Set pause time. */
24061845b5c3SMarius Strobl 		cbp->fc_delay_lsb =	0xff;
24071845b5c3SMarius Strobl 		cbp->fc_delay_msb =	0xff;
24083bd07cfdSJonathan Lemon 		cbp->pri_fc_thresh =	3;
24091845b5c3SMarius Strobl 		mii = device_get_softc(sc->miibus);
24101845b5c3SMarius Strobl 		if ((IFM_OPTIONS(mii->mii_media_active) &
24111845b5c3SMarius Strobl 		    IFM_ETH_TXPAUSE) != 0)
24121845b5c3SMarius Strobl 			/* enable transmit FC */
24131845b5c3SMarius Strobl 			cbp->tx_fc_dis = 0;
24141845b5c3SMarius Strobl 		else
24151845b5c3SMarius Strobl 			/* disable transmit FC */
24161845b5c3SMarius Strobl 			cbp->tx_fc_dis = 1;
24171845b5c3SMarius Strobl 		if ((IFM_OPTIONS(mii->mii_media_active) &
24181845b5c3SMarius Strobl 		    IFM_ETH_RXPAUSE) != 0) {
24191845b5c3SMarius Strobl 			/* enable FC restart/restop frames */
24201845b5c3SMarius Strobl 			cbp->rx_fc_restart = 1;
24211845b5c3SMarius Strobl 			cbp->rx_fc_restop = 1;
24221845b5c3SMarius Strobl 		} else {
24231845b5c3SMarius Strobl 			/* disable FC restart/restop frames */
24241845b5c3SMarius Strobl 			cbp->rx_fc_restart = 0;
24251845b5c3SMarius Strobl 			cbp->rx_fc_restop = 0;
24261845b5c3SMarius Strobl 		}
24273bd07cfdSJonathan Lemon 		cbp->fc_filter =	!prm;	/* drop FC frames to host */
24283bd07cfdSJonathan Lemon 		cbp->pri_fc_loc =	1;	/* FC pri location (byte31) */
24293bd07cfdSJonathan Lemon 	}
24303bd07cfdSJonathan Lemon 
24318da9c507SPyun YongHyeon 	/* Enable 82558 and 82559 extended statistics functionality. */
24328da9c507SPyun YongHyeon 	if (sc->revision >= FXP_REV_82558_A4) {
24338da9c507SPyun YongHyeon 		if (sc->revision >= FXP_REV_82559_A0) {
24348da9c507SPyun YongHyeon 			/*
24358da9c507SPyun YongHyeon 			 * Extend configuration table size to 32
24368da9c507SPyun YongHyeon 			 * to include TCO configuration.
24378da9c507SPyun YongHyeon 			 */
24388da9c507SPyun YongHyeon 			cbp->byte_count = 32;
24398da9c507SPyun YongHyeon 			cbp->ext_stats_dis = 1;
24408da9c507SPyun YongHyeon 			/* Enable TCO stats. */
24418da9c507SPyun YongHyeon 			cbp->tno_int_or_tco_en = 1;
24428da9c507SPyun YongHyeon 			cbp->gamla_rx = 1;
24438da9c507SPyun YongHyeon 		} else
24448da9c507SPyun YongHyeon 			cbp->ext_stats_dis = 0;
24458da9c507SPyun YongHyeon 	}
24468da9c507SPyun YongHyeon 
2447a17c678eSDavid Greenman 	/*
2448a17c678eSDavid Greenman 	 * Start the config command/DMA.
2449a17c678eSDavid Greenman 	 */
2450ba8c6fd5SDavid Greenman 	fxp_scb_wait(sc);
24515986d0d2SPyun YongHyeon 	bus_dmamap_sync(sc->cbl_tag, sc->cbl_map,
24525986d0d2SPyun YongHyeon 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
2453b2badf02SMaxime Henrion 	CSR_WRITE_4(sc, FXP_CSR_SCB_GENERAL, sc->fxp_desc.cbl_addr);
24542e2b8238SJonathan Lemon 	fxp_scb_cmd(sc, FXP_SCB_COMMAND_CU_START);
2455a17c678eSDavid Greenman 	/* ...and wait for it to complete. */
2456209b07bcSMaxime Henrion 	fxp_dma_wait(sc, &cbp->cb_status, sc->cbl_tag, sc->cbl_map);
2457a17c678eSDavid Greenman 
2458a17c678eSDavid Greenman 	/*
2459a17c678eSDavid Greenman 	 * Now initialize the station address. Temporarily use the TxCB
2460a17c678eSDavid Greenman 	 * memory area like we did above for the config CB.
2461a17c678eSDavid Greenman 	 */
2462b2badf02SMaxime Henrion 	cb_ias = (struct fxp_cb_ias *)sc->fxp_desc.cbl_list;
2463a17c678eSDavid Greenman 	cb_ias->cb_status = 0;
246483e6547dSMaxime Henrion 	cb_ias->cb_command = htole16(FXP_CB_COMMAND_IAS | FXP_CB_COMMAND_EL);
246583e6547dSMaxime Henrion 	cb_ias->link_addr = 0xffffffff;
246641eb5ac3SMarcel Moolenaar 	bcopy(if_getlladdr(sc->ifp), cb_ias->macaddr, ETHER_ADDR_LEN);
2467a17c678eSDavid Greenman 
2468a17c678eSDavid Greenman 	/*
2469a17c678eSDavid Greenman 	 * Start the IAS (Individual Address Setup) command/DMA.
2470a17c678eSDavid Greenman 	 */
2471ba8c6fd5SDavid Greenman 	fxp_scb_wait(sc);
24725986d0d2SPyun YongHyeon 	bus_dmamap_sync(sc->cbl_tag, sc->cbl_map,
24735986d0d2SPyun YongHyeon 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
24746b24912cSPyun YongHyeon 	CSR_WRITE_4(sc, FXP_CSR_SCB_GENERAL, sc->fxp_desc.cbl_addr);
24752e2b8238SJonathan Lemon 	fxp_scb_cmd(sc, FXP_SCB_COMMAND_CU_START);
2476a17c678eSDavid Greenman 	/* ...and wait for it to complete. */
2477209b07bcSMaxime Henrion 	fxp_dma_wait(sc, &cb_ias->cb_status, sc->cbl_tag, sc->cbl_map);
2478a17c678eSDavid Greenman 
2479a17c678eSDavid Greenman 	/*
24806b24912cSPyun YongHyeon 	 * Initialize the multicast address list.
24816b24912cSPyun YongHyeon 	 */
24826b24912cSPyun YongHyeon 	fxp_mc_setup(sc);
24836b24912cSPyun YongHyeon 
24846b24912cSPyun YongHyeon 	/*
2485a17c678eSDavid Greenman 	 * Initialize transmit control block (TxCB) list.
2486a17c678eSDavid Greenman 	 */
2487b2badf02SMaxime Henrion 	txp = sc->fxp_desc.tx_list;
2488b2badf02SMaxime Henrion 	tcbp = sc->fxp_desc.cbl_list;
2489b2badf02SMaxime Henrion 	bzero(tcbp, FXP_TXCB_SZ);
2490a17c678eSDavid Greenman 	for (i = 0; i < FXP_NTXCB; i++) {
2491b2badf02SMaxime Henrion 		txp[i].tx_mbuf = NULL;
249283e6547dSMaxime Henrion 		tcbp[i].cb_status = htole16(FXP_CB_STATUS_C | FXP_CB_STATUS_OK);
249383e6547dSMaxime Henrion 		tcbp[i].cb_command = htole16(FXP_CB_COMMAND_NOP);
249483e6547dSMaxime Henrion 		tcbp[i].link_addr = htole32(sc->fxp_desc.cbl_addr +
249583e6547dSMaxime Henrion 		    (((i + 1) & FXP_TXCB_MASK) * sizeof(struct fxp_cb_tx)));
24963bd07cfdSJonathan Lemon 		if (sc->flags & FXP_FLAG_EXT_TXCB)
2497b2badf02SMaxime Henrion 			tcbp[i].tbd_array_addr =
249883e6547dSMaxime Henrion 			    htole32(FXP_TXCB_DMA_ADDR(sc, &tcbp[i].tbd[2]));
24993bd07cfdSJonathan Lemon 		else
2500b2badf02SMaxime Henrion 			tcbp[i].tbd_array_addr =
250183e6547dSMaxime Henrion 			    htole32(FXP_TXCB_DMA_ADDR(sc, &tcbp[i].tbd[0]));
2502b2badf02SMaxime Henrion 		txp[i].tx_next = &txp[(i + 1) & FXP_TXCB_MASK];
2503a17c678eSDavid Greenman 	}
2504a17c678eSDavid Greenman 	/*
2505397f9dfeSDavid Greenman 	 * Set the suspend flag on the first TxCB and start the control
2506a17c678eSDavid Greenman 	 * unit. It will execute the NOP and then suspend.
2507a17c678eSDavid Greenman 	 */
250883e6547dSMaxime Henrion 	tcbp->cb_command = htole16(FXP_CB_COMMAND_NOP | FXP_CB_COMMAND_S);
2509a2057a72SPyun YongHyeon 	bus_dmamap_sync(sc->cbl_tag, sc->cbl_map,
2510a2057a72SPyun YongHyeon 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
2511b2badf02SMaxime Henrion 	sc->fxp_desc.tx_first = sc->fxp_desc.tx_last = txp;
2512397f9dfeSDavid Greenman 	sc->tx_queued = 1;
2513a17c678eSDavid Greenman 
2514ba8c6fd5SDavid Greenman 	fxp_scb_wait(sc);
25156b24912cSPyun YongHyeon 	CSR_WRITE_4(sc, FXP_CSR_SCB_GENERAL, sc->fxp_desc.cbl_addr);
25162e2b8238SJonathan Lemon 	fxp_scb_cmd(sc, FXP_SCB_COMMAND_CU_START);
2517a17c678eSDavid Greenman 
2518a17c678eSDavid Greenman 	/*
2519a17c678eSDavid Greenman 	 * Initialize receiver buffer area - RFA.
2520a17c678eSDavid Greenman 	 */
2521ba8c6fd5SDavid Greenman 	fxp_scb_wait(sc);
2522b2badf02SMaxime Henrion 	CSR_WRITE_4(sc, FXP_CSR_SCB_GENERAL, sc->fxp_desc.rx_head->rx_addr);
25232e2b8238SJonathan Lemon 	fxp_scb_cmd(sc, FXP_SCB_COMMAND_RU_START);
2524a17c678eSDavid Greenman 
25251845b5c3SMarius Strobl 	if (sc->miibus != NULL && setmedia != 0)
2526f7788e8eSJonathan Lemon 		mii_mediachg(device_get_softc(sc->miibus));
2527dccee1a1SDavid Greenman 
252841eb5ac3SMarcel Moolenaar 	if_setdrvflagbits(ifp, IFF_DRV_RUNNING, IFF_DRV_OACTIVE);
2529e8c8b728SJonathan Lemon 
2530e8c8b728SJonathan Lemon 	/*
2531e8c8b728SJonathan Lemon 	 * Enable interrupts.
2532e8c8b728SJonathan Lemon 	 */
25332b5989e9SLuigi Rizzo #ifdef DEVICE_POLLING
25342b5989e9SLuigi Rizzo 	/*
25352b5989e9SLuigi Rizzo 	 * ... but only do that if we are not polling. And because (presumably)
25362b5989e9SLuigi Rizzo 	 * the default is interrupts on, we need to disable them explicitly!
25372b5989e9SLuigi Rizzo 	 */
253841eb5ac3SMarcel Moolenaar 	if (if_getcapenable(ifp) & IFCAP_POLLING )
25392b5989e9SLuigi Rizzo 		CSR_WRITE_1(sc, FXP_CSR_SCB_INTRCNTL, FXP_SCB_INTR_DISABLE);
25402b5989e9SLuigi Rizzo 	else
25412b5989e9SLuigi Rizzo #endif /* DEVICE_POLLING */
2542e8c8b728SJonathan Lemon 	CSR_WRITE_1(sc, FXP_CSR_SCB_INTRCNTL, 0);
2543a17c678eSDavid Greenman 
2544a17c678eSDavid Greenman 	/*
2545a17c678eSDavid Greenman 	 * Start stats updater.
2546a17c678eSDavid Greenman 	 */
254745276e4aSSam Leffler 	callout_reset(&sc->stat_ch, hz, fxp_tick, sc);
2548f7788e8eSJonathan Lemon }
2549f7788e8eSJonathan Lemon 
2550f7788e8eSJonathan Lemon static int
fxp_serial_ifmedia_upd(if_t ifp)255141eb5ac3SMarcel Moolenaar fxp_serial_ifmedia_upd(if_t ifp)
2552f7788e8eSJonathan Lemon {
2553f7788e8eSJonathan Lemon 
2554f7788e8eSJonathan Lemon 	return (0);
2555a17c678eSDavid Greenman }
2556a17c678eSDavid Greenman 
2557303b270bSEivind Eklund static void
fxp_serial_ifmedia_sts(if_t ifp,struct ifmediareq * ifmr)255841eb5ac3SMarcel Moolenaar fxp_serial_ifmedia_sts(if_t ifp, struct ifmediareq *ifmr)
2559ba8c6fd5SDavid Greenman {
2560ba8c6fd5SDavid Greenman 
2561f7788e8eSJonathan Lemon 	ifmr->ifm_active = IFM_ETHER|IFM_MANUAL;
2562ba8c6fd5SDavid Greenman }
2563ba8c6fd5SDavid Greenman 
2564ba8c6fd5SDavid Greenman /*
2565ba8c6fd5SDavid Greenman  * Change media according to request.
2566ba8c6fd5SDavid Greenman  */
2567f7788e8eSJonathan Lemon static int
fxp_ifmedia_upd(if_t ifp)256841eb5ac3SMarcel Moolenaar fxp_ifmedia_upd(if_t ifp)
2569ba8c6fd5SDavid Greenman {
257041eb5ac3SMarcel Moolenaar 	struct fxp_softc *sc = if_getsoftc(ifp);
2571f7788e8eSJonathan Lemon 	struct mii_data *mii;
25723fcb7a53SMarius Strobl 	struct mii_softc	*miisc;
2573ba8c6fd5SDavid Greenman 
2574f7788e8eSJonathan Lemon 	mii = device_get_softc(sc->miibus);
25753212724cSJohn Baldwin 	FXP_LOCK(sc);
25765aa0cdf4SJohn-Mark Gurney 	LIST_FOREACH(miisc, &mii->mii_phys, mii_list)
25773fcb7a53SMarius Strobl 		PHY_RESET(miisc);
2578f7788e8eSJonathan Lemon 	mii_mediachg(mii);
25793212724cSJohn Baldwin 	FXP_UNLOCK(sc);
2580ba8c6fd5SDavid Greenman 	return (0);
2581ba8c6fd5SDavid Greenman }
2582ba8c6fd5SDavid Greenman 
2583ba8c6fd5SDavid Greenman /*
2584ba8c6fd5SDavid Greenman  * Notify the world which media we're using.
2585ba8c6fd5SDavid Greenman  */
2586f7788e8eSJonathan Lemon static void
fxp_ifmedia_sts(if_t ifp,struct ifmediareq * ifmr)258741eb5ac3SMarcel Moolenaar fxp_ifmedia_sts(if_t ifp, struct ifmediareq *ifmr)
2588ba8c6fd5SDavid Greenman {
258941eb5ac3SMarcel Moolenaar 	struct fxp_softc *sc = if_getsoftc(ifp);
2590f7788e8eSJonathan Lemon 	struct mii_data *mii;
2591ba8c6fd5SDavid Greenman 
2592f7788e8eSJonathan Lemon 	mii = device_get_softc(sc->miibus);
25933212724cSJohn Baldwin 	FXP_LOCK(sc);
2594f7788e8eSJonathan Lemon 	mii_pollstat(mii);
2595f7788e8eSJonathan Lemon 	ifmr->ifm_active = mii->mii_media_active;
2596f7788e8eSJonathan Lemon 	ifmr->ifm_status = mii->mii_media_status;
25973212724cSJohn Baldwin 	FXP_UNLOCK(sc);
2598ba8c6fd5SDavid Greenman }
2599ba8c6fd5SDavid Greenman 
2600a17c678eSDavid Greenman /*
2601a17c678eSDavid Greenman  * Add a buffer to the end of the RFA buffer list.
2602a17c678eSDavid Greenman  * Return 0 if successful, 1 for failure. A failure results in
260385050421SPyun YongHyeon  * reusing the RFA buffer.
2604a17c678eSDavid Greenman  * The RFA struct is stuck at the beginning of mbuf cluster and the
2605a17c678eSDavid Greenman  * data pointer is fixed up to point just past it.
2606a17c678eSDavid Greenman  */
2607a17c678eSDavid Greenman static int
fxp_new_rfabuf(struct fxp_softc * sc,struct fxp_rx * rxp)260885050421SPyun YongHyeon fxp_new_rfabuf(struct fxp_softc *sc, struct fxp_rx *rxp)
2609a17c678eSDavid Greenman {
2610a17c678eSDavid Greenman 	struct mbuf *m;
261185050421SPyun YongHyeon 	struct fxp_rfa *rfa;
2612b2badf02SMaxime Henrion 	bus_dmamap_t tmp_map;
261385050421SPyun YongHyeon 	int error;
2614a17c678eSDavid Greenman 
2615c6499eccSGleb Smirnoff 	m = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
261685050421SPyun YongHyeon 	if (m == NULL)
261785050421SPyun YongHyeon 		return (ENOBUFS);
2618ba8c6fd5SDavid Greenman 
2619ba8c6fd5SDavid Greenman 	/*
2620ba8c6fd5SDavid Greenman 	 * Move the data pointer up so that the incoming data packet
2621ba8c6fd5SDavid Greenman 	 * will be 32-bit aligned.
2622ba8c6fd5SDavid Greenman 	 */
2623ba8c6fd5SDavid Greenman 	m->m_data += RFA_ALIGNMENT_FUDGE;
2624ba8c6fd5SDavid Greenman 
2625eadd5e3aSDavid Greenman 	/*
2626eadd5e3aSDavid Greenman 	 * Get a pointer to the base of the mbuf cluster and move
2627eadd5e3aSDavid Greenman 	 * data start past it.
2628eadd5e3aSDavid Greenman 	 */
2629a17c678eSDavid Greenman 	rfa = mtod(m, struct fxp_rfa *);
2630c8bca6dcSBill Paul 	m->m_data += sc->rfa_size;
263183e6547dSMaxime Henrion 	rfa->size = htole16(MCLBYTES - sc->rfa_size - RFA_ALIGNMENT_FUDGE);
2632eadd5e3aSDavid Greenman 
2633a17c678eSDavid Greenman 	rfa->rfa_status = 0;
263483e6547dSMaxime Henrion 	rfa->rfa_control = htole16(FXP_RFA_CONTROL_EL);
2635a17c678eSDavid Greenman 	rfa->actual_size = 0;
263685050421SPyun YongHyeon 	m->m_len = m->m_pkthdr.len = MCLBYTES - RFA_ALIGNMENT_FUDGE -
263785050421SPyun YongHyeon 	    sc->rfa_size;
2638ba8c6fd5SDavid Greenman 
263928935f27SMaxime Henrion 	/*
264028935f27SMaxime Henrion 	 * Initialize the rest of the RFA.  Note that since the RFA
264128935f27SMaxime Henrion 	 * is misaligned, we cannot store values directly.  We're thus
264228935f27SMaxime Henrion 	 * using the le32enc() function which handles endianness and
264328935f27SMaxime Henrion 	 * is also alignment-safe.
264428935f27SMaxime Henrion 	 */
264583e6547dSMaxime Henrion 	le32enc(&rfa->link_addr, 0xffffffff);
264683e6547dSMaxime Henrion 	le32enc(&rfa->rbd_addr, 0xffffffff);
2647ba8c6fd5SDavid Greenman 
2648b2badf02SMaxime Henrion 	/* Map the RFA into DMA memory. */
2649a2057a72SPyun YongHyeon 	error = bus_dmamap_load(sc->fxp_rxmtag, sc->spare_map, rfa,
2650b2badf02SMaxime Henrion 	    MCLBYTES - RFA_ALIGNMENT_FUDGE, fxp_dma_map_addr,
265101e3ef82SPyun YongHyeon 	    &rxp->rx_addr, BUS_DMA_NOWAIT);
2652b2badf02SMaxime Henrion 	if (error) {
2653b2badf02SMaxime Henrion 		m_freem(m);
2654b2badf02SMaxime Henrion 		return (error);
2655b2badf02SMaxime Henrion 	}
2656b2badf02SMaxime Henrion 
2657e2157cf7SPyun YongHyeon 	if (rxp->rx_mbuf != NULL)
2658a2057a72SPyun YongHyeon 		bus_dmamap_unload(sc->fxp_rxmtag, rxp->rx_map);
2659b2badf02SMaxime Henrion 	tmp_map = sc->spare_map;
2660b2badf02SMaxime Henrion 	sc->spare_map = rxp->rx_map;
2661b2badf02SMaxime Henrion 	rxp->rx_map = tmp_map;
2662b2badf02SMaxime Henrion 	rxp->rx_mbuf = m;
2663b2badf02SMaxime Henrion 
2664a2057a72SPyun YongHyeon 	bus_dmamap_sync(sc->fxp_rxmtag, rxp->rx_map,
2665b983c7b3SMaxime Henrion 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
266685050421SPyun YongHyeon 	return (0);
266785050421SPyun YongHyeon }
266885050421SPyun YongHyeon 
266985050421SPyun YongHyeon static void
fxp_add_rfabuf(struct fxp_softc * sc,struct fxp_rx * rxp)267085050421SPyun YongHyeon fxp_add_rfabuf(struct fxp_softc *sc, struct fxp_rx *rxp)
267185050421SPyun YongHyeon {
267285050421SPyun YongHyeon 	struct fxp_rfa *p_rfa;
267385050421SPyun YongHyeon 	struct fxp_rx *p_rx;
2674b2badf02SMaxime Henrion 
2675dfe61cf1SDavid Greenman 	/*
2676dfe61cf1SDavid Greenman 	 * If there are other buffers already on the list, attach this
2677dfe61cf1SDavid Greenman 	 * one to the end by fixing up the tail to point to this one.
2678dfe61cf1SDavid Greenman 	 */
2679b2badf02SMaxime Henrion 	if (sc->fxp_desc.rx_head != NULL) {
2680b2badf02SMaxime Henrion 		p_rx = sc->fxp_desc.rx_tail;
2681b2badf02SMaxime Henrion 		p_rfa = (struct fxp_rfa *)
2682b2badf02SMaxime Henrion 		    (p_rx->rx_mbuf->m_ext.ext_buf + RFA_ALIGNMENT_FUDGE);
2683b2badf02SMaxime Henrion 		p_rx->rx_next = rxp;
268483e6547dSMaxime Henrion 		le32enc(&p_rfa->link_addr, rxp->rx_addr);
2685aed53495SDavid Greenman 		p_rfa->rfa_control = 0;
2686a2057a72SPyun YongHyeon 		bus_dmamap_sync(sc->fxp_rxmtag, p_rx->rx_map,
26874812aef5SPyun YongHyeon 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
2688a17c678eSDavid Greenman 	} else {
2689b2badf02SMaxime Henrion 		rxp->rx_next = NULL;
2690b2badf02SMaxime Henrion 		sc->fxp_desc.rx_head = rxp;
2691a17c678eSDavid Greenman 	}
2692b2badf02SMaxime Henrion 	sc->fxp_desc.rx_tail = rxp;
269385050421SPyun YongHyeon }
269485050421SPyun YongHyeon 
269585050421SPyun YongHyeon static void
fxp_discard_rfabuf(struct fxp_softc * sc,struct fxp_rx * rxp)269685050421SPyun YongHyeon fxp_discard_rfabuf(struct fxp_softc *sc, struct fxp_rx *rxp)
269785050421SPyun YongHyeon {
269885050421SPyun YongHyeon 	struct mbuf *m;
269985050421SPyun YongHyeon 	struct fxp_rfa *rfa;
270085050421SPyun YongHyeon 
270185050421SPyun YongHyeon 	m = rxp->rx_mbuf;
270285050421SPyun YongHyeon 	m->m_data = m->m_ext.ext_buf;
270385050421SPyun YongHyeon 	/*
270485050421SPyun YongHyeon 	 * Move the data pointer up so that the incoming data packet
270585050421SPyun YongHyeon 	 * will be 32-bit aligned.
270685050421SPyun YongHyeon 	 */
270785050421SPyun YongHyeon 	m->m_data += RFA_ALIGNMENT_FUDGE;
270885050421SPyun YongHyeon 
270985050421SPyun YongHyeon 	/*
271085050421SPyun YongHyeon 	 * Get a pointer to the base of the mbuf cluster and move
271185050421SPyun YongHyeon 	 * data start past it.
271285050421SPyun YongHyeon 	 */
271385050421SPyun YongHyeon 	rfa = mtod(m, struct fxp_rfa *);
271485050421SPyun YongHyeon 	m->m_data += sc->rfa_size;
271585050421SPyun YongHyeon 	rfa->size = htole16(MCLBYTES - sc->rfa_size - RFA_ALIGNMENT_FUDGE);
271685050421SPyun YongHyeon 
271785050421SPyun YongHyeon 	rfa->rfa_status = 0;
271885050421SPyun YongHyeon 	rfa->rfa_control = htole16(FXP_RFA_CONTROL_EL);
271985050421SPyun YongHyeon 	rfa->actual_size = 0;
272085050421SPyun YongHyeon 
272185050421SPyun YongHyeon 	/*
272285050421SPyun YongHyeon 	 * Initialize the rest of the RFA.  Note that since the RFA
272385050421SPyun YongHyeon 	 * is misaligned, we cannot store values directly.  We're thus
272485050421SPyun YongHyeon 	 * using the le32enc() function which handles endianness and
272585050421SPyun YongHyeon 	 * is also alignment-safe.
272685050421SPyun YongHyeon 	 */
272785050421SPyun YongHyeon 	le32enc(&rfa->link_addr, 0xffffffff);
272885050421SPyun YongHyeon 	le32enc(&rfa->rbd_addr, 0xffffffff);
272985050421SPyun YongHyeon 
2730a2057a72SPyun YongHyeon 	bus_dmamap_sync(sc->fxp_rxmtag, rxp->rx_map,
273185050421SPyun YongHyeon 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
2732a17c678eSDavid Greenman }
2733a17c678eSDavid Greenman 
2734f1928b0cSKevin Lo static int
fxp_miibus_readreg(device_t dev,int phy,int reg)2735f7788e8eSJonathan Lemon fxp_miibus_readreg(device_t dev, int phy, int reg)
2736dccee1a1SDavid Greenman {
2737f7788e8eSJonathan Lemon 	struct fxp_softc *sc = device_get_softc(dev);
2738dccee1a1SDavid Greenman 	int count = 10000;
27396ebc3153SDavid Greenman 	int value;
2740dccee1a1SDavid Greenman 
2741ba8c6fd5SDavid Greenman 	CSR_WRITE_4(sc, FXP_CSR_MDICONTROL,
2742ba8c6fd5SDavid Greenman 	    (FXP_MDI_READ << 26) | (reg << 16) | (phy << 21));
2743dccee1a1SDavid Greenman 
2744ba8c6fd5SDavid Greenman 	while (((value = CSR_READ_4(sc, FXP_CSR_MDICONTROL)) & 0x10000000) == 0
2745ba8c6fd5SDavid Greenman 	    && count--)
27466ebc3153SDavid Greenman 		DELAY(10);
2747dccee1a1SDavid Greenman 
2748dccee1a1SDavid Greenman 	if (count <= 0)
2749f7788e8eSJonathan Lemon 		device_printf(dev, "fxp_miibus_readreg: timed out\n");
2750dccee1a1SDavid Greenman 
27516ebc3153SDavid Greenman 	return (value & 0xffff);
2752dccee1a1SDavid Greenman }
2753dccee1a1SDavid Greenman 
275416ec4b00SWarner Losh static int
fxp_miibus_writereg(device_t dev,int phy,int reg,int value)2755f7788e8eSJonathan Lemon fxp_miibus_writereg(device_t dev, int phy, int reg, int value)
2756dccee1a1SDavid Greenman {
2757f7788e8eSJonathan Lemon 	struct fxp_softc *sc = device_get_softc(dev);
2758dccee1a1SDavid Greenman 	int count = 10000;
2759dccee1a1SDavid Greenman 
2760ba8c6fd5SDavid Greenman 	CSR_WRITE_4(sc, FXP_CSR_MDICONTROL,
2761ba8c6fd5SDavid Greenman 	    (FXP_MDI_WRITE << 26) | (reg << 16) | (phy << 21) |
2762ba8c6fd5SDavid Greenman 	    (value & 0xffff));
2763dccee1a1SDavid Greenman 
2764ba8c6fd5SDavid Greenman 	while ((CSR_READ_4(sc, FXP_CSR_MDICONTROL) & 0x10000000) == 0 &&
2765ba8c6fd5SDavid Greenman 	    count--)
27666ebc3153SDavid Greenman 		DELAY(10);
2767dccee1a1SDavid Greenman 
2768dccee1a1SDavid Greenman 	if (count <= 0)
2769f7788e8eSJonathan Lemon 		device_printf(dev, "fxp_miibus_writereg: timed out\n");
277016ec4b00SWarner Losh 	return (0);
2771dccee1a1SDavid Greenman }
2772dccee1a1SDavid Greenman 
27731845b5c3SMarius Strobl static void
fxp_miibus_statchg(device_t dev)27741845b5c3SMarius Strobl fxp_miibus_statchg(device_t dev)
27751845b5c3SMarius Strobl {
27761845b5c3SMarius Strobl 	struct fxp_softc *sc;
27771845b5c3SMarius Strobl 	struct mii_data *mii;
277841eb5ac3SMarcel Moolenaar 	if_t ifp;
27791845b5c3SMarius Strobl 
27801845b5c3SMarius Strobl 	sc = device_get_softc(dev);
27811845b5c3SMarius Strobl 	mii = device_get_softc(sc->miibus);
27821845b5c3SMarius Strobl 	ifp = sc->ifp;
278341eb5ac3SMarcel Moolenaar 	if (mii == NULL || ifp == (void *)NULL ||
278441eb5ac3SMarcel Moolenaar 	    (if_getdrvflags(ifp) & IFF_DRV_RUNNING) == 0 ||
27851845b5c3SMarius Strobl 	    (mii->mii_media_status & (IFM_AVALID | IFM_ACTIVE)) !=
27861845b5c3SMarius Strobl 	    (IFM_AVALID | IFM_ACTIVE))
27871845b5c3SMarius Strobl 		return;
27881845b5c3SMarius Strobl 
2789c3f52a31SPyun YongHyeon 	if (IFM_SUBTYPE(mii->mii_media_active) == IFM_10_T &&
2790c3f52a31SPyun YongHyeon 	    sc->flags & FXP_FLAG_CU_RESUME_BUG)
2791c3f52a31SPyun YongHyeon 		sc->cu_resume_bug = 1;
2792c3f52a31SPyun YongHyeon 	else
2793c3f52a31SPyun YongHyeon 		sc->cu_resume_bug = 0;
27941845b5c3SMarius Strobl 	/*
27951845b5c3SMarius Strobl 	 * Call fxp_init_body in order to adjust the flow control settings.
27961845b5c3SMarius Strobl 	 * Note that the 82557 doesn't support hardware flow control.
27971845b5c3SMarius Strobl 	 */
27981845b5c3SMarius Strobl 	if (sc->revision == FXP_REV_82557)
27991845b5c3SMarius Strobl 		return;
280041eb5ac3SMarcel Moolenaar 	if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
28011845b5c3SMarius Strobl 	fxp_init_body(sc, 0);
28021845b5c3SMarius Strobl }
28031845b5c3SMarius Strobl 
2804dccee1a1SDavid Greenman static int
fxp_ioctl(if_t ifp,u_long command,caddr_t data)280541eb5ac3SMarcel Moolenaar fxp_ioctl(if_t ifp, u_long command, caddr_t data)
2806a17c678eSDavid Greenman {
280741eb5ac3SMarcel Moolenaar 	struct fxp_softc *sc = if_getsoftc(ifp);
2808a17c678eSDavid Greenman 	struct ifreq *ifr = (struct ifreq *)data;
2809f7788e8eSJonathan Lemon 	struct mii_data *mii;
281060bb79ebSPyun YongHyeon 	int flag, mask, error = 0, reinit;
2811a17c678eSDavid Greenman 
2812a17c678eSDavid Greenman 	switch (command) {
2813a17c678eSDavid Greenman 	case SIOCSIFFLAGS:
28143212724cSJohn Baldwin 		FXP_LOCK(sc);
2815a17c678eSDavid Greenman 		/*
2816a17c678eSDavid Greenman 		 * If interface is marked up and not running, then start it.
2817a17c678eSDavid Greenman 		 * If it is marked down and running, stop it.
2818a17c678eSDavid Greenman 		 * XXX If it's up then re-initialize it. This is so flags
2819a17c678eSDavid Greenman 		 * such as IFF_PROMISC are handled.
2820a17c678eSDavid Greenman 		 */
282141eb5ac3SMarcel Moolenaar 		if (if_getflags(ifp) & IFF_UP) {
282241eb5ac3SMarcel Moolenaar 			if (((if_getdrvflags(ifp) & IFF_DRV_RUNNING) != 0) &&
282341eb5ac3SMarcel Moolenaar 			    ((if_getflags(ifp) ^ sc->if_flags) &
28245506afefSPyun YongHyeon 			    (IFF_PROMISC | IFF_ALLMULTI | IFF_LINK0)) != 0) {
282541eb5ac3SMarcel Moolenaar 				if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
2826a461b201SPyun YongHyeon 				fxp_init_body(sc, 0);
282741eb5ac3SMarcel Moolenaar 			} else if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) == 0)
28281845b5c3SMarius Strobl 				fxp_init_body(sc, 1);
2829a17c678eSDavid Greenman 		} else {
283041eb5ac3SMarcel Moolenaar 			if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) != 0)
28314a5f1499SDavid Greenman 				fxp_stop(sc);
2832a17c678eSDavid Greenman 		}
283341eb5ac3SMarcel Moolenaar 		sc->if_flags = if_getflags(ifp);
28343212724cSJohn Baldwin 		FXP_UNLOCK(sc);
2835a17c678eSDavid Greenman 		break;
2836a17c678eSDavid Greenman 
2837a17c678eSDavid Greenman 	case SIOCADDMULTI:
2838a17c678eSDavid Greenman 	case SIOCDELMULTI:
2839f6ff7180SPyun YongHyeon 		FXP_LOCK(sc);
284041eb5ac3SMarcel Moolenaar 		if ((if_getdrvflags(ifp) & IFF_DRV_RUNNING) != 0) {
284141eb5ac3SMarcel Moolenaar 			if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
2842f6ff7180SPyun YongHyeon 			fxp_init_body(sc, 0);
28435506afefSPyun YongHyeon 		}
2844f6ff7180SPyun YongHyeon 		FXP_UNLOCK(sc);
2845ba8c6fd5SDavid Greenman 		break;
2846ba8c6fd5SDavid Greenman 
2847ba8c6fd5SDavid Greenman 	case SIOCSIFMEDIA:
2848ba8c6fd5SDavid Greenman 	case SIOCGIFMEDIA:
2849f7788e8eSJonathan Lemon 		if (sc->miibus != NULL) {
2850f7788e8eSJonathan Lemon 			mii = device_get_softc(sc->miibus);
285109a8241fSGleb Smirnoff                         error = ifmedia_ioctl(ifp, ifr,
2852f7788e8eSJonathan Lemon                             &mii->mii_media, command);
2853f7788e8eSJonathan Lemon 		} else {
285409a8241fSGleb Smirnoff                         error = ifmedia_ioctl(ifp, ifr, &sc->sc_media, command);
2855f7788e8eSJonathan Lemon 		}
2856a17c678eSDavid Greenman 		break;
2857a17c678eSDavid Greenman 
2858fb917226SRuslan Ermilov 	case SIOCSIFCAP:
285960bb79ebSPyun YongHyeon 		reinit = 0;
286041eb5ac3SMarcel Moolenaar 		mask = if_getcapenable(ifp) ^ ifr->ifr_reqcap;
286140929967SGleb Smirnoff #ifdef DEVICE_POLLING
286240929967SGleb Smirnoff 		if (mask & IFCAP_POLLING) {
286340929967SGleb Smirnoff 			if (ifr->ifr_reqcap & IFCAP_POLLING) {
2864bd071d4dSGleb Smirnoff 				error = ether_poll_register(fxp_poll, ifp);
286540929967SGleb Smirnoff 				if (error)
286640929967SGleb Smirnoff 					return(error);
286740929967SGleb Smirnoff 				FXP_LOCK(sc);
286840929967SGleb Smirnoff 				CSR_WRITE_1(sc, FXP_CSR_SCB_INTRCNTL,
286940929967SGleb Smirnoff 				    FXP_SCB_INTR_DISABLE);
287041eb5ac3SMarcel Moolenaar 				if_setcapenablebit(ifp, IFCAP_POLLING, 0);
287140929967SGleb Smirnoff 				FXP_UNLOCK(sc);
287240929967SGleb Smirnoff 			} else {
2873bd071d4dSGleb Smirnoff 				error = ether_poll_deregister(ifp);
287440929967SGleb Smirnoff 				/* Enable interrupts in any case */
287540929967SGleb Smirnoff 				FXP_LOCK(sc);
287640929967SGleb Smirnoff 				CSR_WRITE_1(sc, FXP_CSR_SCB_INTRCNTL, 0);
287741eb5ac3SMarcel Moolenaar 				if_setcapenablebit(ifp, 0, IFCAP_POLLING);
287840929967SGleb Smirnoff 				FXP_UNLOCK(sc);
287940929967SGleb Smirnoff 			}
288040929967SGleb Smirnoff 		}
288140929967SGleb Smirnoff #endif
288240929967SGleb Smirnoff 		FXP_LOCK(sc);
288360bb79ebSPyun YongHyeon 		if ((mask & IFCAP_TXCSUM) != 0 &&
288441eb5ac3SMarcel Moolenaar 		    (if_getcapabilities(ifp) & IFCAP_TXCSUM) != 0) {
288541eb5ac3SMarcel Moolenaar 			if_togglecapenable(ifp, IFCAP_TXCSUM);
288641eb5ac3SMarcel Moolenaar 			if ((if_getcapenable(ifp) & IFCAP_TXCSUM) != 0)
288741eb5ac3SMarcel Moolenaar 				if_sethwassistbits(ifp, FXP_CSUM_FEATURES, 0);
288860bb79ebSPyun YongHyeon 			else
288941eb5ac3SMarcel Moolenaar 				if_sethwassistbits(ifp, 0, FXP_CSUM_FEATURES);
289060bb79ebSPyun YongHyeon 		}
289160bb79ebSPyun YongHyeon 		if ((mask & IFCAP_RXCSUM) != 0 &&
289241eb5ac3SMarcel Moolenaar 		    (if_getcapabilities(ifp) & IFCAP_RXCSUM) != 0) {
289341eb5ac3SMarcel Moolenaar 			if_togglecapenable(ifp, IFCAP_RXCSUM);
2894f13075afSPyun YongHyeon 			if ((sc->flags & FXP_FLAG_82559_RXCSUM) != 0)
2895f13075afSPyun YongHyeon 				reinit++;
2896f13075afSPyun YongHyeon 		}
2897c21e84e4SPyun YongHyeon 		if ((mask & IFCAP_TSO4) != 0 &&
289841eb5ac3SMarcel Moolenaar 		    (if_getcapabilities(ifp) & IFCAP_TSO4) != 0) {
289941eb5ac3SMarcel Moolenaar 			if_togglecapenable(ifp, IFCAP_TSO4);
290041eb5ac3SMarcel Moolenaar 			if ((if_getcapenable(ifp) & IFCAP_TSO4) != 0)
290141eb5ac3SMarcel Moolenaar 				if_sethwassistbits(ifp, CSUM_TSO, 0);
2902c21e84e4SPyun YongHyeon 			else
290341eb5ac3SMarcel Moolenaar 				if_sethwassistbits(ifp, 0, CSUM_TSO);
2904c21e84e4SPyun YongHyeon 		}
29057137cea0SPyun YongHyeon 		if ((mask & IFCAP_WOL_MAGIC) != 0 &&
290641eb5ac3SMarcel Moolenaar 		    (if_getcapabilities(ifp) & IFCAP_WOL_MAGIC) != 0)
290741eb5ac3SMarcel Moolenaar 			if_togglecapenable(ifp, IFCAP_WOL_MAGIC);
290860bb79ebSPyun YongHyeon 		if ((mask & IFCAP_VLAN_MTU) != 0 &&
290941eb5ac3SMarcel Moolenaar 		    (if_getcapabilities(ifp) & IFCAP_VLAN_MTU) != 0) {
291041eb5ac3SMarcel Moolenaar 			if_togglecapenable(ifp, IFCAP_VLAN_MTU);
29118ef1f631SYaroslav Tykhiy 			if (sc->revision != FXP_REV_82557)
29128ef1f631SYaroslav Tykhiy 				flag = FXP_FLAG_LONG_PKT_EN;
29138ef1f631SYaroslav Tykhiy 			else /* a hack to get long frames on the old chip */
29148ef1f631SYaroslav Tykhiy 				flag = FXP_FLAG_SAVE_BAD;
29158ef1f631SYaroslav Tykhiy 			sc->flags ^= flag;
291641eb5ac3SMarcel Moolenaar 			if (if_getflags(ifp) & IFF_UP)
291760bb79ebSPyun YongHyeon 				reinit++;
291860bb79ebSPyun YongHyeon 		}
2919713ca255SPyun YongHyeon 		if ((mask & IFCAP_VLAN_HWCSUM) != 0 &&
292041eb5ac3SMarcel Moolenaar 		    (if_getcapabilities(ifp) & IFCAP_VLAN_HWCSUM) != 0)
292141eb5ac3SMarcel Moolenaar 			if_togglecapenable(ifp, IFCAP_VLAN_HWCSUM);
2922713ca255SPyun YongHyeon 		if ((mask & IFCAP_VLAN_HWTSO) != 0 &&
292341eb5ac3SMarcel Moolenaar 		    (if_getcapabilities(ifp) & IFCAP_VLAN_HWTSO) != 0)
292441eb5ac3SMarcel Moolenaar 			if_togglecapenable(ifp, IFCAP_VLAN_HWTSO);
2925bd4fa9d9SPyun YongHyeon 		if ((mask & IFCAP_VLAN_HWTAGGING) != 0 &&
292641eb5ac3SMarcel Moolenaar 		    (if_getcapabilities(ifp) & IFCAP_VLAN_HWTAGGING) != 0) {
292741eb5ac3SMarcel Moolenaar 			if_togglecapenable(ifp, IFCAP_VLAN_HWTAGGING);
292841eb5ac3SMarcel Moolenaar 			if ((if_getcapenable(ifp) & IFCAP_VLAN_HWTAGGING) == 0)
292941eb5ac3SMarcel Moolenaar 				if_setcapenablebit(ifp, 0, IFCAP_VLAN_HWTSO |
293041eb5ac3SMarcel Moolenaar 				    IFCAP_VLAN_HWCSUM);
2931bd4fa9d9SPyun YongHyeon 			reinit++;
2932bd4fa9d9SPyun YongHyeon 		}
293341eb5ac3SMarcel Moolenaar 		if (reinit > 0 &&
293441eb5ac3SMarcel Moolenaar 		    (if_getdrvflags(ifp) & IFF_DRV_RUNNING) != 0) {
293541eb5ac3SMarcel Moolenaar 			if_setdrvflagbits(ifp, 0, IFF_DRV_RUNNING);
2936a461b201SPyun YongHyeon 			fxp_init_body(sc, 0);
29375506afefSPyun YongHyeon 		}
29383212724cSJohn Baldwin 		FXP_UNLOCK(sc);
293941eb5ac3SMarcel Moolenaar 		if_vlancap(ifp);
2940fb917226SRuslan Ermilov 		break;
2941fb917226SRuslan Ermilov 
2942a17c678eSDavid Greenman 	default:
294309a8241fSGleb Smirnoff 		error = ether_ioctl(ifp, command, data);
2944a17c678eSDavid Greenman 	}
2945a17c678eSDavid Greenman 	return (error);
2946a17c678eSDavid Greenman }
2947397f9dfeSDavid Greenman 
29481d15d9f0SGleb Smirnoff static u_int
fxp_setup_maddr(void * arg,struct sockaddr_dl * sdl,u_int cnt)29491d15d9f0SGleb Smirnoff fxp_setup_maddr(void *arg, struct sockaddr_dl *sdl, u_int cnt)
29501d15d9f0SGleb Smirnoff {
29511d15d9f0SGleb Smirnoff 	struct fxp_softc *sc = arg;
29521d15d9f0SGleb Smirnoff 	struct fxp_cb_mcs *mcsp = sc->mcsp;
29531d15d9f0SGleb Smirnoff 
29541d15d9f0SGleb Smirnoff 	if (mcsp->mc_cnt < MAXMCADDR)
29551d15d9f0SGleb Smirnoff 		bcopy(LLADDR(sdl), mcsp->mc_addr[mcsp->mc_cnt * ETHER_ADDR_LEN],
29561d15d9f0SGleb Smirnoff 		    ETHER_ADDR_LEN);
29571d15d9f0SGleb Smirnoff 	mcsp->mc_cnt++;
29581d15d9f0SGleb Smirnoff 	return (1);
29591d15d9f0SGleb Smirnoff }
29601d15d9f0SGleb Smirnoff 
2961397f9dfeSDavid Greenman /*
296209882363SJonathan Lemon  * Fill in the multicast address list and return number of entries.
296309882363SJonathan Lemon  */
29641d15d9f0SGleb Smirnoff static void
fxp_mc_addrs(struct fxp_softc * sc)296509882363SJonathan Lemon fxp_mc_addrs(struct fxp_softc *sc)
296609882363SJonathan Lemon {
296709882363SJonathan Lemon 	struct fxp_cb_mcs *mcsp = sc->mcsp;
296841eb5ac3SMarcel Moolenaar 	if_t ifp = sc->ifp;
296909882363SJonathan Lemon 
297041eb5ac3SMarcel Moolenaar 	if ((if_getflags(ifp) & IFF_ALLMULTI) == 0) {
29711d15d9f0SGleb Smirnoff 		mcsp->mc_cnt = 0;
29721d15d9f0SGleb Smirnoff 		if_foreach_llmaddr(sc->ifp, fxp_setup_maddr, sc);
29731d15d9f0SGleb Smirnoff 		if (mcsp->mc_cnt >= MAXMCADDR) {
297441eb5ac3SMarcel Moolenaar 			if_setflagbits(ifp, IFF_ALLMULTI, 0);
29751d15d9f0SGleb Smirnoff 			mcsp->mc_cnt = 0;
297609882363SJonathan Lemon 		}
297709882363SJonathan Lemon 	}
29781d15d9f0SGleb Smirnoff 	mcsp->mc_cnt = htole16(mcsp->mc_cnt * ETHER_ADDR_LEN);
297909882363SJonathan Lemon }
298009882363SJonathan Lemon 
298109882363SJonathan Lemon /*
2982397f9dfeSDavid Greenman  * Program the multicast filter.
2983397f9dfeSDavid Greenman  *
2984397f9dfeSDavid Greenman  * We have an artificial restriction that the multicast setup command
2985397f9dfeSDavid Greenman  * must be the first command in the chain, so we take steps to ensure
29863114fdb4SDavid Greenman  * this. By requiring this, it allows us to keep up the performance of
2987397f9dfeSDavid Greenman  * the pre-initialized command ring (esp. link pointers) by not actually
2988dc733423SDag-Erling Smørgrav  * inserting the mcsetup command in the ring - i.e. its link pointer
2989397f9dfeSDavid Greenman  * points to the TxCB ring, but the mcsetup descriptor itself is not part
2990397f9dfeSDavid Greenman  * of it. We then can do 'CU_START' on the mcsetup descriptor and have it
2991397f9dfeSDavid Greenman  * lead into the regular TxCB ring when it completes.
2992397f9dfeSDavid Greenman  */
2993397f9dfeSDavid Greenman static void
fxp_mc_setup(struct fxp_softc * sc)2994f7788e8eSJonathan Lemon fxp_mc_setup(struct fxp_softc *sc)
2995397f9dfeSDavid Greenman {
29966b24912cSPyun YongHyeon 	struct fxp_cb_mcs *mcsp;
29977dced78aSDavid Greenman 	int count;
2998397f9dfeSDavid Greenman 
299967fc050fSMaxime Henrion 	FXP_LOCK_ASSERT(sc, MA_OWNED);
30003114fdb4SDavid Greenman 
30016b24912cSPyun YongHyeon 	mcsp = sc->mcsp;
3002397f9dfeSDavid Greenman 	mcsp->cb_status = 0;
30036b24912cSPyun YongHyeon 	mcsp->cb_command = htole16(FXP_CB_COMMAND_MCAS | FXP_CB_COMMAND_EL);
30046b24912cSPyun YongHyeon 	mcsp->link_addr = 0xffffffff;
30056b24912cSPyun YongHyeon 	fxp_mc_addrs(sc);
3006397f9dfeSDavid Greenman 
3007397f9dfeSDavid Greenman 	/*
30086b24912cSPyun YongHyeon 	 * Wait until command unit is idle. This should never be the
30096b24912cSPyun YongHyeon 	 * case when nothing is queued, but make sure anyway.
3010397f9dfeSDavid Greenman 	 */
30117dced78aSDavid Greenman 	count = 100;
30126b24912cSPyun YongHyeon 	while ((CSR_READ_1(sc, FXP_CSR_SCB_RUSCUS) >> 6) !=
30136b24912cSPyun YongHyeon 	    FXP_SCB_CUS_IDLE && --count)
30147dced78aSDavid Greenman 		DELAY(10);
30157dced78aSDavid Greenman 	if (count == 0) {
3016f7788e8eSJonathan Lemon 		device_printf(sc->dev, "command queue timeout\n");
30177dced78aSDavid Greenman 		return;
30187dced78aSDavid Greenman 	}
3019397f9dfeSDavid Greenman 
3020397f9dfeSDavid Greenman 	/*
3021397f9dfeSDavid Greenman 	 * Start the multicast setup command.
3022397f9dfeSDavid Greenman 	 */
3023397f9dfeSDavid Greenman 	fxp_scb_wait(sc);
3024a2057a72SPyun YongHyeon 	bus_dmamap_sync(sc->mcs_tag, sc->mcs_map,
3025a2057a72SPyun YongHyeon 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
3026b2badf02SMaxime Henrion 	CSR_WRITE_4(sc, FXP_CSR_SCB_GENERAL, sc->mcs_addr);
30272e2b8238SJonathan Lemon 	fxp_scb_cmd(sc, FXP_SCB_COMMAND_CU_START);
30286b24912cSPyun YongHyeon 	/* ...and wait for it to complete. */
30296b24912cSPyun YongHyeon 	fxp_dma_wait(sc, &mcsp->cb_status, sc->mcs_tag, sc->mcs_map);
3030397f9dfeSDavid Greenman }
303172a32a26SJonathan Lemon 
303274d1ed23SMaxime Henrion static uint32_t fxp_ucode_d101a[] = D101_A_RCVBUNDLE_UCODE;
303374d1ed23SMaxime Henrion static uint32_t fxp_ucode_d101b0[] = D101_B0_RCVBUNDLE_UCODE;
303474d1ed23SMaxime Henrion static uint32_t fxp_ucode_d101ma[] = D101M_B_RCVBUNDLE_UCODE;
303574d1ed23SMaxime Henrion static uint32_t fxp_ucode_d101s[] = D101S_RCVBUNDLE_UCODE;
303674d1ed23SMaxime Henrion static uint32_t fxp_ucode_d102[] = D102_B_RCVBUNDLE_UCODE;
303774d1ed23SMaxime Henrion static uint32_t fxp_ucode_d102c[] = D102_C_RCVBUNDLE_UCODE;
3038de571603SMaxime Henrion static uint32_t fxp_ucode_d102e[] = D102_E_RCVBUNDLE_UCODE;
303972a32a26SJonathan Lemon 
304074d1ed23SMaxime Henrion #define UCODE(x)	x, sizeof(x)/sizeof(uint32_t)
304172a32a26SJonathan Lemon 
3042e0fe5c6dSMarius Strobl static const struct ucode {
304374d1ed23SMaxime Henrion 	uint32_t	revision;
304474d1ed23SMaxime Henrion 	uint32_t	*ucode;
304572a32a26SJonathan Lemon 	int		length;
304672a32a26SJonathan Lemon 	u_short		int_delay_offset;
304772a32a26SJonathan Lemon 	u_short		bundle_max_offset;
304829658c96SDimitry Andric } ucode_table[] = {
304972a32a26SJonathan Lemon 	{ FXP_REV_82558_A4, UCODE(fxp_ucode_d101a), D101_CPUSAVER_DWORD, 0 },
305072a32a26SJonathan Lemon 	{ FXP_REV_82558_B0, UCODE(fxp_ucode_d101b0), D101_CPUSAVER_DWORD, 0 },
305172a32a26SJonathan Lemon 	{ FXP_REV_82559_A0, UCODE(fxp_ucode_d101ma),
305272a32a26SJonathan Lemon 	    D101M_CPUSAVER_DWORD, D101M_CPUSAVER_BUNDLE_MAX_DWORD },
305372a32a26SJonathan Lemon 	{ FXP_REV_82559S_A, UCODE(fxp_ucode_d101s),
305472a32a26SJonathan Lemon 	    D101S_CPUSAVER_DWORD, D101S_CPUSAVER_BUNDLE_MAX_DWORD },
305572a32a26SJonathan Lemon 	{ FXP_REV_82550, UCODE(fxp_ucode_d102),
305672a32a26SJonathan Lemon 	    D102_B_CPUSAVER_DWORD, D102_B_CPUSAVER_BUNDLE_MAX_DWORD },
305772a32a26SJonathan Lemon 	{ FXP_REV_82550_C, UCODE(fxp_ucode_d102c),
305872a32a26SJonathan Lemon 	    D102_C_CPUSAVER_DWORD, D102_C_CPUSAVER_BUNDLE_MAX_DWORD },
3059507feeafSMaxime Henrion 	{ FXP_REV_82551_F, UCODE(fxp_ucode_d102e),
3060de571603SMaxime Henrion 	    D102_E_CPUSAVER_DWORD, D102_E_CPUSAVER_BUNDLE_MAX_DWORD },
306150df388dSPyun YongHyeon 	{ FXP_REV_82551_10, UCODE(fxp_ucode_d102e),
306250df388dSPyun YongHyeon 	    D102_E_CPUSAVER_DWORD, D102_E_CPUSAVER_BUNDLE_MAX_DWORD },
306372a32a26SJonathan Lemon 	{ 0, NULL, 0, 0, 0 }
306472a32a26SJonathan Lemon };
306572a32a26SJonathan Lemon 
306672a32a26SJonathan Lemon static void
fxp_load_ucode(struct fxp_softc * sc)306772a32a26SJonathan Lemon fxp_load_ucode(struct fxp_softc *sc)
306872a32a26SJonathan Lemon {
3069e0fe5c6dSMarius Strobl 	const struct ucode *uc;
307072a32a26SJonathan Lemon 	struct fxp_cb_ucode *cbp;
307194a4f968SPyun YongHyeon 	int i;
307272a32a26SJonathan Lemon 
30731343a72fSPyun YongHyeon 	if (sc->flags & FXP_FLAG_NO_UCODE)
30741343a72fSPyun YongHyeon 		return;
30751343a72fSPyun YongHyeon 
307672a32a26SJonathan Lemon 	for (uc = ucode_table; uc->ucode != NULL; uc++)
307772a32a26SJonathan Lemon 		if (sc->revision == uc->revision)
307872a32a26SJonathan Lemon 			break;
307972a32a26SJonathan Lemon 	if (uc->ucode == NULL)
308072a32a26SJonathan Lemon 		return;
3081b2badf02SMaxime Henrion 	cbp = (struct fxp_cb_ucode *)sc->fxp_desc.cbl_list;
308272a32a26SJonathan Lemon 	cbp->cb_status = 0;
308383e6547dSMaxime Henrion 	cbp->cb_command = htole16(FXP_CB_COMMAND_UCODE | FXP_CB_COMMAND_EL);
308483e6547dSMaxime Henrion 	cbp->link_addr = 0xffffffff;    	/* (no) next command */
308594a4f968SPyun YongHyeon 	for (i = 0; i < uc->length; i++)
308694a4f968SPyun YongHyeon 		cbp->ucode[i] = htole32(uc->ucode[i]);
308772a32a26SJonathan Lemon 	if (uc->int_delay_offset)
308874d1ed23SMaxime Henrion 		*(uint16_t *)&cbp->ucode[uc->int_delay_offset] =
308983e6547dSMaxime Henrion 		    htole16(sc->tunable_int_delay + sc->tunable_int_delay / 2);
309072a32a26SJonathan Lemon 	if (uc->bundle_max_offset)
309174d1ed23SMaxime Henrion 		*(uint16_t *)&cbp->ucode[uc->bundle_max_offset] =
309283e6547dSMaxime Henrion 		    htole16(sc->tunable_bundle_max);
309372a32a26SJonathan Lemon 	/*
309472a32a26SJonathan Lemon 	 * Download the ucode to the chip.
309572a32a26SJonathan Lemon 	 */
309672a32a26SJonathan Lemon 	fxp_scb_wait(sc);
30975986d0d2SPyun YongHyeon 	bus_dmamap_sync(sc->cbl_tag, sc->cbl_map,
30985986d0d2SPyun YongHyeon 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
3099b2badf02SMaxime Henrion 	CSR_WRITE_4(sc, FXP_CSR_SCB_GENERAL, sc->fxp_desc.cbl_addr);
310072a32a26SJonathan Lemon 	fxp_scb_cmd(sc, FXP_SCB_COMMAND_CU_START);
310172a32a26SJonathan Lemon 	/* ...and wait for it to complete. */
3102209b07bcSMaxime Henrion 	fxp_dma_wait(sc, &cbp->cb_status, sc->cbl_tag, sc->cbl_map);
310372a32a26SJonathan Lemon 	device_printf(sc->dev,
310472a32a26SJonathan Lemon 	    "Microcode loaded, int_delay: %d usec  bundle_max: %d\n",
310572a32a26SJonathan Lemon 	    sc->tunable_int_delay,
310672a32a26SJonathan Lemon 	    uc->bundle_max_offset == 0 ? 0 : sc->tunable_bundle_max);
310772a32a26SJonathan Lemon 	sc->flags |= FXP_FLAG_UCODE;
31081343a72fSPyun YongHyeon 	bzero(cbp, FXP_TXCB_SZ);
310972a32a26SJonathan Lemon }
311072a32a26SJonathan Lemon 
31118da9c507SPyun YongHyeon #define FXP_SYSCTL_STAT_ADD(c, h, n, p, d)	\
31128da9c507SPyun YongHyeon 	SYSCTL_ADD_UINT(c, h, OID_AUTO, n, CTLFLAG_RD, p, 0, d)
31138da9c507SPyun YongHyeon 
31148da9c507SPyun YongHyeon static void
fxp_sysctl_node(struct fxp_softc * sc)31158da9c507SPyun YongHyeon fxp_sysctl_node(struct fxp_softc *sc)
31168da9c507SPyun YongHyeon {
31178da9c507SPyun YongHyeon 	struct sysctl_ctx_list *ctx;
31188da9c507SPyun YongHyeon 	struct sysctl_oid_list *child, *parent;
31198da9c507SPyun YongHyeon 	struct sysctl_oid *tree;
31208da9c507SPyun YongHyeon 	struct fxp_hwstats *hsp;
31218da9c507SPyun YongHyeon 
31228da9c507SPyun YongHyeon 	ctx = device_get_sysctl_ctx(sc->dev);
31238da9c507SPyun YongHyeon 	child = SYSCTL_CHILDREN(device_get_sysctl_tree(sc->dev));
31248da9c507SPyun YongHyeon 
31257029da5cSPawel Biernacki 	SYSCTL_ADD_PROC(ctx, child, OID_AUTO, "int_delay",
312635efbedcSAlexander Motin 	    CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
31278da9c507SPyun YongHyeon 	    &sc->tunable_int_delay, 0, sysctl_hw_fxp_int_delay, "I",
31288da9c507SPyun YongHyeon 	    "FXP driver receive interrupt microcode bundling delay");
31297029da5cSPawel Biernacki 	SYSCTL_ADD_PROC(ctx, child, OID_AUTO, "bundle_max",
313035efbedcSAlexander Motin 	    CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
31318da9c507SPyun YongHyeon 	    &sc->tunable_bundle_max, 0, sysctl_hw_fxp_bundle_max, "I",
31328da9c507SPyun YongHyeon 	    "FXP driver receive interrupt microcode bundle size limit");
31338da9c507SPyun YongHyeon 	SYSCTL_ADD_INT(ctx, child,OID_AUTO, "rnr", CTLFLAG_RD, &sc->rnr, 0,
31348da9c507SPyun YongHyeon 	    "FXP RNR events");
31358da9c507SPyun YongHyeon 
31368da9c507SPyun YongHyeon 	/*
31378da9c507SPyun YongHyeon 	 * Pull in device tunables.
31388da9c507SPyun YongHyeon 	 */
31398da9c507SPyun YongHyeon 	sc->tunable_int_delay = TUNABLE_INT_DELAY;
31408da9c507SPyun YongHyeon 	sc->tunable_bundle_max = TUNABLE_BUNDLE_MAX;
31418da9c507SPyun YongHyeon 	(void) resource_int_value(device_get_name(sc->dev),
31428da9c507SPyun YongHyeon 	    device_get_unit(sc->dev), "int_delay", &sc->tunable_int_delay);
31438da9c507SPyun YongHyeon 	(void) resource_int_value(device_get_name(sc->dev),
31448da9c507SPyun YongHyeon 	    device_get_unit(sc->dev), "bundle_max", &sc->tunable_bundle_max);
31458da9c507SPyun YongHyeon 	sc->rnr = 0;
31468da9c507SPyun YongHyeon 
31478da9c507SPyun YongHyeon 	hsp = &sc->fxp_hwstats;
31487029da5cSPawel Biernacki 	tree = SYSCTL_ADD_NODE(ctx, child, OID_AUTO, "stats",
31497029da5cSPawel Biernacki 	    CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, "FXP statistics");
31508da9c507SPyun YongHyeon 	parent = SYSCTL_CHILDREN(tree);
31518da9c507SPyun YongHyeon 
31528da9c507SPyun YongHyeon 	/* Rx MAC statistics. */
31537029da5cSPawel Biernacki 	tree = SYSCTL_ADD_NODE(ctx, parent, OID_AUTO, "rx",
31547029da5cSPawel Biernacki 	    CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, "Rx MAC statistics");
31558da9c507SPyun YongHyeon 	child = SYSCTL_CHILDREN(tree);
31568da9c507SPyun YongHyeon 	FXP_SYSCTL_STAT_ADD(ctx, child, "good_frames",
31578da9c507SPyun YongHyeon 	    &hsp->rx_good, "Good frames");
31588da9c507SPyun YongHyeon 	FXP_SYSCTL_STAT_ADD(ctx, child, "crc_errors",
31598da9c507SPyun YongHyeon 	    &hsp->rx_crc_errors, "CRC errors");
31608da9c507SPyun YongHyeon 	FXP_SYSCTL_STAT_ADD(ctx, child, "alignment_errors",
31618da9c507SPyun YongHyeon 	    &hsp->rx_alignment_errors, "Alignment errors");
31628da9c507SPyun YongHyeon 	FXP_SYSCTL_STAT_ADD(ctx, child, "rnr_errors",
31638da9c507SPyun YongHyeon 	    &hsp->rx_rnr_errors, "RNR errors");
31648da9c507SPyun YongHyeon 	FXP_SYSCTL_STAT_ADD(ctx, child, "overrun_errors",
31658da9c507SPyun YongHyeon 	    &hsp->rx_overrun_errors, "Overrun errors");
31668da9c507SPyun YongHyeon 	FXP_SYSCTL_STAT_ADD(ctx, child, "cdt_errors",
31678da9c507SPyun YongHyeon 	    &hsp->rx_cdt_errors, "Collision detect errors");
31688da9c507SPyun YongHyeon 	FXP_SYSCTL_STAT_ADD(ctx, child, "shortframes",
31698da9c507SPyun YongHyeon 	    &hsp->rx_shortframes, "Short frame errors");
31708da9c507SPyun YongHyeon 	if (sc->revision >= FXP_REV_82558_A4) {
31718da9c507SPyun YongHyeon 		FXP_SYSCTL_STAT_ADD(ctx, child, "pause",
31728da9c507SPyun YongHyeon 		    &hsp->rx_pause, "Pause frames");
31738da9c507SPyun YongHyeon 		FXP_SYSCTL_STAT_ADD(ctx, child, "controls",
31748da9c507SPyun YongHyeon 		    &hsp->rx_controls, "Unsupported control frames");
31758da9c507SPyun YongHyeon 	}
31768da9c507SPyun YongHyeon 	if (sc->revision >= FXP_REV_82559_A0)
31778da9c507SPyun YongHyeon 		FXP_SYSCTL_STAT_ADD(ctx, child, "tco",
31788da9c507SPyun YongHyeon 		    &hsp->rx_tco, "TCO frames");
31798da9c507SPyun YongHyeon 
31808da9c507SPyun YongHyeon 	/* Tx MAC statistics. */
31817029da5cSPawel Biernacki 	tree = SYSCTL_ADD_NODE(ctx, parent, OID_AUTO, "tx",
31827029da5cSPawel Biernacki 	    CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, "Tx MAC statistics");
31838da9c507SPyun YongHyeon 	child = SYSCTL_CHILDREN(tree);
31848da9c507SPyun YongHyeon 	FXP_SYSCTL_STAT_ADD(ctx, child, "good_frames",
31858da9c507SPyun YongHyeon 	    &hsp->tx_good, "Good frames");
31868da9c507SPyun YongHyeon 	FXP_SYSCTL_STAT_ADD(ctx, child, "maxcols",
31878da9c507SPyun YongHyeon 	    &hsp->tx_maxcols, "Maximum collisions errors");
31888da9c507SPyun YongHyeon 	FXP_SYSCTL_STAT_ADD(ctx, child, "latecols",
31898da9c507SPyun YongHyeon 	    &hsp->tx_latecols, "Late collisions errors");
31908da9c507SPyun YongHyeon 	FXP_SYSCTL_STAT_ADD(ctx, child, "underruns",
31918da9c507SPyun YongHyeon 	    &hsp->tx_underruns, "Underrun errors");
31928da9c507SPyun YongHyeon 	FXP_SYSCTL_STAT_ADD(ctx, child, "lostcrs",
31938da9c507SPyun YongHyeon 	    &hsp->tx_lostcrs, "Lost carrier sense");
31948da9c507SPyun YongHyeon 	FXP_SYSCTL_STAT_ADD(ctx, child, "deffered",
31958da9c507SPyun YongHyeon 	    &hsp->tx_deffered, "Deferred");
31968da9c507SPyun YongHyeon 	FXP_SYSCTL_STAT_ADD(ctx, child, "single_collisions",
31978da9c507SPyun YongHyeon 	    &hsp->tx_single_collisions, "Single collisions");
31988da9c507SPyun YongHyeon 	FXP_SYSCTL_STAT_ADD(ctx, child, "multiple_collisions",
31998da9c507SPyun YongHyeon 	    &hsp->tx_multiple_collisions, "Multiple collisions");
32008da9c507SPyun YongHyeon 	FXP_SYSCTL_STAT_ADD(ctx, child, "total_collisions",
32018da9c507SPyun YongHyeon 	    &hsp->tx_total_collisions, "Total collisions");
32028da9c507SPyun YongHyeon 	if (sc->revision >= FXP_REV_82558_A4)
32038da9c507SPyun YongHyeon 		FXP_SYSCTL_STAT_ADD(ctx, child, "pause",
32048da9c507SPyun YongHyeon 		    &hsp->tx_pause, "Pause frames");
32058da9c507SPyun YongHyeon 	if (sc->revision >= FXP_REV_82559_A0)
32068da9c507SPyun YongHyeon 		FXP_SYSCTL_STAT_ADD(ctx, child, "tco",
32078da9c507SPyun YongHyeon 		    &hsp->tx_tco, "TCO frames");
32088da9c507SPyun YongHyeon }
32098da9c507SPyun YongHyeon 
32108da9c507SPyun YongHyeon #undef FXP_SYSCTL_STAT_ADD
32118da9c507SPyun YongHyeon 
321272a32a26SJonathan Lemon static int
sysctl_int_range(SYSCTL_HANDLER_ARGS,int low,int high)321372a32a26SJonathan Lemon sysctl_int_range(SYSCTL_HANDLER_ARGS, int low, int high)
321472a32a26SJonathan Lemon {
321572a32a26SJonathan Lemon 	int error, value;
321672a32a26SJonathan Lemon 
321772a32a26SJonathan Lemon 	value = *(int *)arg1;
321872a32a26SJonathan Lemon 	error = sysctl_handle_int(oidp, &value, 0, req);
321972a32a26SJonathan Lemon 	if (error || !req->newptr)
322072a32a26SJonathan Lemon 		return (error);
322172a32a26SJonathan Lemon 	if (value < low || value > high)
322272a32a26SJonathan Lemon 		return (EINVAL);
322372a32a26SJonathan Lemon 	*(int *)arg1 = value;
322472a32a26SJonathan Lemon 	return (0);
322572a32a26SJonathan Lemon }
322672a32a26SJonathan Lemon 
322772a32a26SJonathan Lemon /*
322872a32a26SJonathan Lemon  * Interrupt delay is expressed in microseconds, a multiplier is used
322972a32a26SJonathan Lemon  * to convert this to the appropriate clock ticks before using.
323072a32a26SJonathan Lemon  */
323172a32a26SJonathan Lemon static int
sysctl_hw_fxp_int_delay(SYSCTL_HANDLER_ARGS)323272a32a26SJonathan Lemon sysctl_hw_fxp_int_delay(SYSCTL_HANDLER_ARGS)
323372a32a26SJonathan Lemon {
3234e0fe5c6dSMarius Strobl 
323572a32a26SJonathan Lemon 	return (sysctl_int_range(oidp, arg1, arg2, req, 300, 3000));
323672a32a26SJonathan Lemon }
323772a32a26SJonathan Lemon 
323872a32a26SJonathan Lemon static int
sysctl_hw_fxp_bundle_max(SYSCTL_HANDLER_ARGS)323972a32a26SJonathan Lemon sysctl_hw_fxp_bundle_max(SYSCTL_HANDLER_ARGS)
324072a32a26SJonathan Lemon {
3241e0fe5c6dSMarius Strobl 
324272a32a26SJonathan Lemon 	return (sysctl_int_range(oidp, arg1, arg2, req, 1, 0xffff));
324372a32a26SJonathan Lemon }
3244