1 /*- 2 * Copyright (C) 2001 Eduardo Horvath. 3 * Copyright (c) 2001-2003 Thomas Moestl 4 * Copyright (c) 2007 Marius Strobl <marius@FreeBSD.org> 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE 20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE. 27 * 28 * from: NetBSD: gem.c,v 1.21 2002/06/01 23:50:58 lukem Exp 29 */ 30 31 #include <sys/cdefs.h> 32 __FBSDID("$FreeBSD$"); 33 34 /* 35 * Driver for Apple GMAC, Sun ERI and Sun GEM Ethernet controllers 36 */ 37 38 #if 0 39 #define GEM_DEBUG 40 #endif 41 42 #if 0 /* XXX: In case of emergency, re-enable this. */ 43 #define GEM_RINT_TIMEOUT 44 #endif 45 46 #include <sys/param.h> 47 #include <sys/systm.h> 48 #include <sys/bus.h> 49 #include <sys/callout.h> 50 #include <sys/endian.h> 51 #include <sys/mbuf.h> 52 #include <sys/malloc.h> 53 #include <sys/kernel.h> 54 #include <sys/lock.h> 55 #include <sys/module.h> 56 #include <sys/mutex.h> 57 #include <sys/socket.h> 58 #include <sys/sockio.h> 59 #include <sys/rman.h> 60 61 #include <net/bpf.h> 62 #include <net/ethernet.h> 63 #include <net/if.h> 64 #include <net/if_arp.h> 65 #include <net/if_dl.h> 66 #include <net/if_media.h> 67 #include <net/if_types.h> 68 #include <net/if_vlan_var.h> 69 70 #include <netinet/in.h> 71 #include <netinet/in_systm.h> 72 #include <netinet/ip.h> 73 #include <netinet/tcp.h> 74 #include <netinet/udp.h> 75 76 #include <machine/bus.h> 77 78 #include <dev/mii/mii.h> 79 #include <dev/mii/miivar.h> 80 81 #include <dev/gem/if_gemreg.h> 82 #include <dev/gem/if_gemvar.h> 83 84 CTASSERT(powerof2(GEM_NRXDESC) && GEM_NRXDESC >= 32 && GEM_NRXDESC <= 8192); 85 CTASSERT(powerof2(GEM_NTXDESC) && GEM_NTXDESC >= 32 && GEM_NTXDESC <= 8192); 86 87 #define GEM_TRIES 10000 88 89 /* 90 * The hardware supports basic TCP/UDP checksum offloading. However, 91 * the hardware doesn't compensate the checksum for UDP datagram which 92 * can yield to 0x0. As a safe guard, UDP checksum offload is disabled 93 * by default. It can be reactivated by setting special link option 94 * link0 with ifconfig(8). 95 */ 96 #define GEM_CSUM_FEATURES (CSUM_TCP) 97 98 static int gem_add_rxbuf(struct gem_softc *sc, int idx); 99 static int gem_bitwait(struct gem_softc *sc, u_int bank, bus_addr_t r, 100 uint32_t clr, uint32_t set); 101 static void gem_cddma_callback(void *xsc, bus_dma_segment_t *segs, 102 int nsegs, int error); 103 static int gem_disable_rx(struct gem_softc *sc); 104 static int gem_disable_tx(struct gem_softc *sc); 105 static void gem_eint(struct gem_softc *sc, u_int status); 106 static void gem_init(void *xsc); 107 static void gem_init_locked(struct gem_softc *sc); 108 static void gem_init_regs(struct gem_softc *sc); 109 static int gem_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data); 110 static int gem_load_txmbuf(struct gem_softc *sc, struct mbuf **m_head); 111 static int gem_meminit(struct gem_softc *sc); 112 static void gem_mifinit(struct gem_softc *sc); 113 static void gem_reset(struct gem_softc *sc); 114 static int gem_reset_rx(struct gem_softc *sc); 115 static void gem_reset_rxdma(struct gem_softc *sc); 116 static int gem_reset_tx(struct gem_softc *sc); 117 static u_int gem_ringsize(u_int sz); 118 static void gem_rint(struct gem_softc *sc); 119 #ifdef GEM_RINT_TIMEOUT 120 static void gem_rint_timeout(void *arg); 121 #endif 122 static inline void gem_rxcksum(struct mbuf *m, uint64_t flags); 123 static void gem_rxdrain(struct gem_softc *sc); 124 static void gem_setladrf(struct gem_softc *sc); 125 static void gem_start(struct ifnet *ifp); 126 static void gem_start_locked(struct ifnet *ifp); 127 static void gem_stop(struct ifnet *ifp, int disable); 128 static void gem_tick(void *arg); 129 static void gem_tint(struct gem_softc *sc); 130 static inline void gem_txkick(struct gem_softc *sc); 131 static int gem_watchdog(struct gem_softc *sc); 132 133 devclass_t gem_devclass; 134 DRIVER_MODULE(miibus, gem, miibus_driver, miibus_devclass, 0, 0); 135 MODULE_DEPEND(gem, miibus, 1, 1, 1); 136 137 #ifdef GEM_DEBUG 138 #include <sys/ktr.h> 139 #define KTR_GEM KTR_SPARE2 140 #endif 141 142 #define GEM_BANK1_BITWAIT(sc, r, clr, set) \ 143 gem_bitwait((sc), GEM_RES_BANK1, (r), (clr), (set)) 144 #define GEM_BANK2_BITWAIT(sc, r, clr, set) \ 145 gem_bitwait((sc), GEM_RES_BANK2, (r), (clr), (set)) 146 147 int 148 gem_attach(struct gem_softc *sc) 149 { 150 struct gem_txsoft *txs; 151 struct ifnet *ifp; 152 int error, i, phy; 153 uint32_t v; 154 155 if (bootverbose) 156 device_printf(sc->sc_dev, "flags=0x%x\n", sc->sc_flags); 157 158 /* Set up ifnet structure. */ 159 ifp = sc->sc_ifp = if_alloc(IFT_ETHER); 160 if (ifp == NULL) 161 return (ENOSPC); 162 sc->sc_csum_features = GEM_CSUM_FEATURES; 163 ifp->if_softc = sc; 164 if_initname(ifp, device_get_name(sc->sc_dev), 165 device_get_unit(sc->sc_dev)); 166 ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST; 167 ifp->if_start = gem_start; 168 ifp->if_ioctl = gem_ioctl; 169 ifp->if_init = gem_init; 170 IFQ_SET_MAXLEN(&ifp->if_snd, GEM_TXQUEUELEN); 171 ifp->if_snd.ifq_drv_maxlen = GEM_TXQUEUELEN; 172 IFQ_SET_READY(&ifp->if_snd); 173 174 callout_init_mtx(&sc->sc_tick_ch, &sc->sc_mtx, 0); 175 #ifdef GEM_RINT_TIMEOUT 176 callout_init_mtx(&sc->sc_rx_ch, &sc->sc_mtx, 0); 177 #endif 178 179 /* Make sure the chip is stopped. */ 180 gem_reset(sc); 181 182 error = bus_dma_tag_create(bus_get_dma_tag(sc->sc_dev), 1, 0, 183 BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL, 184 BUS_SPACE_MAXSIZE_32BIT, 0, BUS_SPACE_MAXSIZE_32BIT, 0, NULL, 185 NULL, &sc->sc_pdmatag); 186 if (error != 0) 187 goto fail_ifnet; 188 189 error = bus_dma_tag_create(sc->sc_pdmatag, 1, 0, 190 BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL, NULL, MCLBYTES, 191 1, MCLBYTES, BUS_DMA_ALLOCNOW, NULL, NULL, &sc->sc_rdmatag); 192 if (error != 0) 193 goto fail_ptag; 194 195 error = bus_dma_tag_create(sc->sc_pdmatag, 1, 0, 196 BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL, NULL, 197 MCLBYTES * GEM_NTXSEGS, GEM_NTXSEGS, MCLBYTES, 198 BUS_DMA_ALLOCNOW, NULL, NULL, &sc->sc_tdmatag); 199 if (error != 0) 200 goto fail_rtag; 201 202 error = bus_dma_tag_create(sc->sc_pdmatag, PAGE_SIZE, 0, 203 BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL, NULL, 204 sizeof(struct gem_control_data), 1, 205 sizeof(struct gem_control_data), 0, 206 NULL, NULL, &sc->sc_cdmatag); 207 if (error != 0) 208 goto fail_ttag; 209 210 /* 211 * Allocate the control data structures, create and load the 212 * DMA map for it. 213 */ 214 if ((error = bus_dmamem_alloc(sc->sc_cdmatag, 215 (void **)&sc->sc_control_data, 216 BUS_DMA_WAITOK | BUS_DMA_COHERENT | BUS_DMA_ZERO, 217 &sc->sc_cddmamap)) != 0) { 218 device_printf(sc->sc_dev, 219 "unable to allocate control data, error = %d\n", error); 220 goto fail_ctag; 221 } 222 223 sc->sc_cddma = 0; 224 if ((error = bus_dmamap_load(sc->sc_cdmatag, sc->sc_cddmamap, 225 sc->sc_control_data, sizeof(struct gem_control_data), 226 gem_cddma_callback, sc, 0)) != 0 || sc->sc_cddma == 0) { 227 device_printf(sc->sc_dev, 228 "unable to load control data DMA map, error = %d\n", 229 error); 230 goto fail_cmem; 231 } 232 233 /* 234 * Initialize the transmit job descriptors. 235 */ 236 STAILQ_INIT(&sc->sc_txfreeq); 237 STAILQ_INIT(&sc->sc_txdirtyq); 238 239 /* 240 * Create the transmit buffer DMA maps. 241 */ 242 error = ENOMEM; 243 for (i = 0; i < GEM_TXQUEUELEN; i++) { 244 txs = &sc->sc_txsoft[i]; 245 txs->txs_mbuf = NULL; 246 txs->txs_ndescs = 0; 247 if ((error = bus_dmamap_create(sc->sc_tdmatag, 0, 248 &txs->txs_dmamap)) != 0) { 249 device_printf(sc->sc_dev, 250 "unable to create TX DMA map %d, error = %d\n", 251 i, error); 252 goto fail_txd; 253 } 254 STAILQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q); 255 } 256 257 /* 258 * Create the receive buffer DMA maps. 259 */ 260 for (i = 0; i < GEM_NRXDESC; i++) { 261 if ((error = bus_dmamap_create(sc->sc_rdmatag, 0, 262 &sc->sc_rxsoft[i].rxs_dmamap)) != 0) { 263 device_printf(sc->sc_dev, 264 "unable to create RX DMA map %d, error = %d\n", 265 i, error); 266 goto fail_rxd; 267 } 268 sc->sc_rxsoft[i].rxs_mbuf = NULL; 269 } 270 271 /* Bypass probing PHYs if we already know for sure to use a SERDES. */ 272 if ((sc->sc_flags & GEM_SERDES) != 0) 273 goto serdes; 274 275 /* Bad things will happen when touching this register on ERI. */ 276 if (sc->sc_variant != GEM_SUN_ERI) { 277 GEM_BANK1_WRITE_4(sc, GEM_MII_DATAPATH_MODE, 278 GEM_MII_DATAPATH_MII); 279 GEM_BANK1_BARRIER(sc, GEM_MII_DATAPATH_MODE, 4, 280 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE); 281 } 282 283 gem_mifinit(sc); 284 285 /* 286 * Look for an external PHY. 287 */ 288 error = ENXIO; 289 v = GEM_BANK1_READ_4(sc, GEM_MIF_CONFIG); 290 if ((v & GEM_MIF_CONFIG_MDI1) != 0) { 291 v |= GEM_MIF_CONFIG_PHY_SEL; 292 GEM_BANK1_WRITE_4(sc, GEM_MIF_CONFIG, v); 293 GEM_BANK1_BARRIER(sc, GEM_MIF_CONFIG, 4, 294 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE); 295 switch (sc->sc_variant) { 296 case GEM_SUN_ERI: 297 phy = GEM_PHYAD_EXTERNAL; 298 break; 299 default: 300 phy = MII_PHY_ANY; 301 break; 302 } 303 error = mii_attach(sc->sc_dev, &sc->sc_miibus, ifp, 304 gem_mediachange, gem_mediastatus, BMSR_DEFCAPMASK, phy, 305 MII_OFFSET_ANY, MIIF_DOPAUSE); 306 } 307 308 /* 309 * Fall back on an internal PHY if no external PHY was found. 310 * Note that with Apple (K2) GMACs GEM_MIF_CONFIG_MDI0 can't be 311 * trusted when the firmware has powered down the chip. 312 */ 313 if (error != 0 && 314 ((v & GEM_MIF_CONFIG_MDI0) != 0 || GEM_IS_APPLE(sc))) { 315 v &= ~GEM_MIF_CONFIG_PHY_SEL; 316 GEM_BANK1_WRITE_4(sc, GEM_MIF_CONFIG, v); 317 GEM_BANK1_BARRIER(sc, GEM_MIF_CONFIG, 4, 318 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE); 319 switch (sc->sc_variant) { 320 case GEM_SUN_ERI: 321 case GEM_APPLE_K2_GMAC: 322 phy = GEM_PHYAD_INTERNAL; 323 break; 324 case GEM_APPLE_GMAC: 325 phy = GEM_PHYAD_EXTERNAL; 326 break; 327 default: 328 phy = MII_PHY_ANY; 329 break; 330 } 331 error = mii_attach(sc->sc_dev, &sc->sc_miibus, ifp, 332 gem_mediachange, gem_mediastatus, BMSR_DEFCAPMASK, phy, 333 MII_OFFSET_ANY, MIIF_DOPAUSE); 334 } 335 336 /* 337 * Try the external PCS SERDES if we didn't find any PHYs. 338 */ 339 if (error != 0 && sc->sc_variant == GEM_SUN_GEM) { 340 serdes: 341 GEM_BANK1_WRITE_4(sc, GEM_MII_DATAPATH_MODE, 342 GEM_MII_DATAPATH_SERDES); 343 GEM_BANK1_BARRIER(sc, GEM_MII_DATAPATH_MODE, 4, 344 BUS_SPACE_BARRIER_WRITE); 345 GEM_BANK1_WRITE_4(sc, GEM_MII_SLINK_CONTROL, 346 GEM_MII_SLINK_LOOPBACK | GEM_MII_SLINK_EN_SYNC_D); 347 GEM_BANK1_BARRIER(sc, GEM_MII_SLINK_CONTROL, 4, 348 BUS_SPACE_BARRIER_WRITE); 349 GEM_BANK1_WRITE_4(sc, GEM_MII_CONFIG, GEM_MII_CONFIG_ENABLE); 350 GEM_BANK1_BARRIER(sc, GEM_MII_CONFIG, 4, 351 BUS_SPACE_BARRIER_WRITE); 352 sc->sc_flags |= GEM_SERDES; 353 error = mii_attach(sc->sc_dev, &sc->sc_miibus, ifp, 354 gem_mediachange, gem_mediastatus, BMSR_DEFCAPMASK, 355 GEM_PHYAD_EXTERNAL, MII_OFFSET_ANY, MIIF_DOPAUSE); 356 } 357 if (error != 0) { 358 device_printf(sc->sc_dev, "attaching PHYs failed\n"); 359 goto fail_rxd; 360 } 361 sc->sc_mii = device_get_softc(sc->sc_miibus); 362 363 /* 364 * From this point forward, the attachment cannot fail. A failure 365 * before this point releases all resources that may have been 366 * allocated. 367 */ 368 369 /* Get RX FIFO size. */ 370 sc->sc_rxfifosize = 64 * 371 GEM_BANK1_READ_4(sc, GEM_RX_FIFO_SIZE); 372 373 /* Get TX FIFO size. */ 374 v = GEM_BANK1_READ_4(sc, GEM_TX_FIFO_SIZE); 375 device_printf(sc->sc_dev, "%ukB RX FIFO, %ukB TX FIFO\n", 376 sc->sc_rxfifosize / 1024, v / 16); 377 378 /* Attach the interface. */ 379 ether_ifattach(ifp, sc->sc_enaddr); 380 381 /* 382 * Tell the upper layer(s) we support long frames/checksum offloads. 383 */ 384 ifp->if_data.ifi_hdrlen = sizeof(struct ether_vlan_header); 385 ifp->if_capabilities |= IFCAP_VLAN_MTU | IFCAP_HWCSUM; 386 ifp->if_hwassist |= sc->sc_csum_features; 387 ifp->if_capenable |= IFCAP_VLAN_MTU | IFCAP_HWCSUM; 388 389 return (0); 390 391 /* 392 * Free any resources we've allocated during the failed attach 393 * attempt. Do this in reverse order and fall through. 394 */ 395 fail_rxd: 396 for (i = 0; i < GEM_NRXDESC; i++) 397 if (sc->sc_rxsoft[i].rxs_dmamap != NULL) 398 bus_dmamap_destroy(sc->sc_rdmatag, 399 sc->sc_rxsoft[i].rxs_dmamap); 400 fail_txd: 401 for (i = 0; i < GEM_TXQUEUELEN; i++) 402 if (sc->sc_txsoft[i].txs_dmamap != NULL) 403 bus_dmamap_destroy(sc->sc_tdmatag, 404 sc->sc_txsoft[i].txs_dmamap); 405 bus_dmamap_unload(sc->sc_cdmatag, sc->sc_cddmamap); 406 fail_cmem: 407 bus_dmamem_free(sc->sc_cdmatag, sc->sc_control_data, 408 sc->sc_cddmamap); 409 fail_ctag: 410 bus_dma_tag_destroy(sc->sc_cdmatag); 411 fail_ttag: 412 bus_dma_tag_destroy(sc->sc_tdmatag); 413 fail_rtag: 414 bus_dma_tag_destroy(sc->sc_rdmatag); 415 fail_ptag: 416 bus_dma_tag_destroy(sc->sc_pdmatag); 417 fail_ifnet: 418 if_free(ifp); 419 return (error); 420 } 421 422 void 423 gem_detach(struct gem_softc *sc) 424 { 425 struct ifnet *ifp = sc->sc_ifp; 426 int i; 427 428 ether_ifdetach(ifp); 429 GEM_LOCK(sc); 430 gem_stop(ifp, 1); 431 GEM_UNLOCK(sc); 432 callout_drain(&sc->sc_tick_ch); 433 #ifdef GEM_RINT_TIMEOUT 434 callout_drain(&sc->sc_rx_ch); 435 #endif 436 if_free(ifp); 437 device_delete_child(sc->sc_dev, sc->sc_miibus); 438 439 for (i = 0; i < GEM_NRXDESC; i++) 440 if (sc->sc_rxsoft[i].rxs_dmamap != NULL) 441 bus_dmamap_destroy(sc->sc_rdmatag, 442 sc->sc_rxsoft[i].rxs_dmamap); 443 for (i = 0; i < GEM_TXQUEUELEN; i++) 444 if (sc->sc_txsoft[i].txs_dmamap != NULL) 445 bus_dmamap_destroy(sc->sc_tdmatag, 446 sc->sc_txsoft[i].txs_dmamap); 447 GEM_CDSYNC(sc, BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE); 448 bus_dmamap_unload(sc->sc_cdmatag, sc->sc_cddmamap); 449 bus_dmamem_free(sc->sc_cdmatag, sc->sc_control_data, 450 sc->sc_cddmamap); 451 bus_dma_tag_destroy(sc->sc_cdmatag); 452 bus_dma_tag_destroy(sc->sc_tdmatag); 453 bus_dma_tag_destroy(sc->sc_rdmatag); 454 bus_dma_tag_destroy(sc->sc_pdmatag); 455 } 456 457 void 458 gem_suspend(struct gem_softc *sc) 459 { 460 struct ifnet *ifp = sc->sc_ifp; 461 462 GEM_LOCK(sc); 463 gem_stop(ifp, 0); 464 GEM_UNLOCK(sc); 465 } 466 467 void 468 gem_resume(struct gem_softc *sc) 469 { 470 struct ifnet *ifp = sc->sc_ifp; 471 472 GEM_LOCK(sc); 473 /* 474 * On resume all registers have to be initialized again like 475 * after power-on. 476 */ 477 sc->sc_flags &= ~GEM_INITED; 478 if (ifp->if_flags & IFF_UP) 479 gem_init_locked(sc); 480 GEM_UNLOCK(sc); 481 } 482 483 static inline void 484 gem_rxcksum(struct mbuf *m, uint64_t flags) 485 { 486 struct ether_header *eh; 487 struct ip *ip; 488 struct udphdr *uh; 489 uint16_t *opts; 490 int32_t hlen, len, pktlen; 491 uint32_t temp32; 492 uint16_t cksum; 493 494 pktlen = m->m_pkthdr.len; 495 if (pktlen < sizeof(struct ether_header) + sizeof(struct ip)) 496 return; 497 eh = mtod(m, struct ether_header *); 498 if (eh->ether_type != htons(ETHERTYPE_IP)) 499 return; 500 ip = (struct ip *)(eh + 1); 501 if (ip->ip_v != IPVERSION) 502 return; 503 504 hlen = ip->ip_hl << 2; 505 pktlen -= sizeof(struct ether_header); 506 if (hlen < sizeof(struct ip)) 507 return; 508 if (ntohs(ip->ip_len) < hlen) 509 return; 510 if (ntohs(ip->ip_len) != pktlen) 511 return; 512 if (ip->ip_off & htons(IP_MF | IP_OFFMASK)) 513 return; /* Cannot handle fragmented packet. */ 514 515 switch (ip->ip_p) { 516 case IPPROTO_TCP: 517 if (pktlen < (hlen + sizeof(struct tcphdr))) 518 return; 519 break; 520 case IPPROTO_UDP: 521 if (pktlen < (hlen + sizeof(struct udphdr))) 522 return; 523 uh = (struct udphdr *)((uint8_t *)ip + hlen); 524 if (uh->uh_sum == 0) 525 return; /* no checksum */ 526 break; 527 default: 528 return; 529 } 530 531 cksum = ~(flags & GEM_RD_CHECKSUM); 532 /* checksum fixup for IP options */ 533 len = hlen - sizeof(struct ip); 534 if (len > 0) { 535 opts = (uint16_t *)(ip + 1); 536 for (; len > 0; len -= sizeof(uint16_t), opts++) { 537 temp32 = cksum - *opts; 538 temp32 = (temp32 >> 16) + (temp32 & 65535); 539 cksum = temp32 & 65535; 540 } 541 } 542 m->m_pkthdr.csum_flags |= CSUM_DATA_VALID; 543 m->m_pkthdr.csum_data = cksum; 544 } 545 546 static void 547 gem_cddma_callback(void *xsc, bus_dma_segment_t *segs, int nsegs, int error) 548 { 549 struct gem_softc *sc = xsc; 550 551 if (error != 0) 552 return; 553 if (nsegs != 1) 554 panic("%s: bad control buffer segment count", __func__); 555 sc->sc_cddma = segs[0].ds_addr; 556 } 557 558 static void 559 gem_tick(void *arg) 560 { 561 struct gem_softc *sc = arg; 562 struct ifnet *ifp = sc->sc_ifp; 563 uint32_t v; 564 565 GEM_LOCK_ASSERT(sc, MA_OWNED); 566 567 /* 568 * Unload collision and error counters. 569 */ 570 ifp->if_collisions += 571 GEM_BANK1_READ_4(sc, GEM_MAC_NORM_COLL_CNT) + 572 GEM_BANK1_READ_4(sc, GEM_MAC_FIRST_COLL_CNT); 573 v = GEM_BANK1_READ_4(sc, GEM_MAC_EXCESS_COLL_CNT) + 574 GEM_BANK1_READ_4(sc, GEM_MAC_LATE_COLL_CNT); 575 ifp->if_collisions += v; 576 ifp->if_oerrors += v; 577 ifp->if_ierrors += 578 GEM_BANK1_READ_4(sc, GEM_MAC_RX_LEN_ERR_CNT) + 579 GEM_BANK1_READ_4(sc, GEM_MAC_RX_ALIGN_ERR) + 580 GEM_BANK1_READ_4(sc, GEM_MAC_RX_CRC_ERR_CNT) + 581 GEM_BANK1_READ_4(sc, GEM_MAC_RX_CODE_VIOL); 582 583 /* 584 * Then clear the hardware counters. 585 */ 586 GEM_BANK1_WRITE_4(sc, GEM_MAC_NORM_COLL_CNT, 0); 587 GEM_BANK1_WRITE_4(sc, GEM_MAC_FIRST_COLL_CNT, 0); 588 GEM_BANK1_WRITE_4(sc, GEM_MAC_EXCESS_COLL_CNT, 0); 589 GEM_BANK1_WRITE_4(sc, GEM_MAC_LATE_COLL_CNT, 0); 590 GEM_BANK1_WRITE_4(sc, GEM_MAC_RX_LEN_ERR_CNT, 0); 591 GEM_BANK1_WRITE_4(sc, GEM_MAC_RX_ALIGN_ERR, 0); 592 GEM_BANK1_WRITE_4(sc, GEM_MAC_RX_CRC_ERR_CNT, 0); 593 GEM_BANK1_WRITE_4(sc, GEM_MAC_RX_CODE_VIOL, 0); 594 595 mii_tick(sc->sc_mii); 596 597 if (gem_watchdog(sc) == EJUSTRETURN) 598 return; 599 600 callout_reset(&sc->sc_tick_ch, hz, gem_tick, sc); 601 } 602 603 static int 604 gem_bitwait(struct gem_softc *sc, u_int bank, bus_addr_t r, uint32_t clr, 605 uint32_t set) 606 { 607 int i; 608 uint32_t reg; 609 610 for (i = GEM_TRIES; i--; DELAY(100)) { 611 reg = GEM_BANKN_READ_M(bank, 4, sc, r); 612 if ((reg & clr) == 0 && (reg & set) == set) 613 return (1); 614 } 615 return (0); 616 } 617 618 static void 619 gem_reset(struct gem_softc *sc) 620 { 621 622 #ifdef GEM_DEBUG 623 CTR2(KTR_GEM, "%s: %s", device_get_name(sc->sc_dev), __func__); 624 #endif 625 gem_reset_rx(sc); 626 gem_reset_tx(sc); 627 628 /* Do a full reset. */ 629 GEM_BANK2_WRITE_4(sc, GEM_RESET, GEM_RESET_RX | GEM_RESET_TX | 630 (sc->sc_variant == GEM_SUN_ERI ? GEM_ERI_CACHE_LINE_SIZE << 631 GEM_RESET_CLSZ_SHFT : 0)); 632 GEM_BANK2_BARRIER(sc, GEM_RESET, 4, 633 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE); 634 if (!GEM_BANK2_BITWAIT(sc, GEM_RESET, GEM_RESET_RX | GEM_RESET_TX, 0)) 635 device_printf(sc->sc_dev, "cannot reset device\n"); 636 } 637 638 static void 639 gem_rxdrain(struct gem_softc *sc) 640 { 641 struct gem_rxsoft *rxs; 642 int i; 643 644 for (i = 0; i < GEM_NRXDESC; i++) { 645 rxs = &sc->sc_rxsoft[i]; 646 if (rxs->rxs_mbuf != NULL) { 647 bus_dmamap_sync(sc->sc_rdmatag, rxs->rxs_dmamap, 648 BUS_DMASYNC_POSTREAD); 649 bus_dmamap_unload(sc->sc_rdmatag, rxs->rxs_dmamap); 650 m_freem(rxs->rxs_mbuf); 651 rxs->rxs_mbuf = NULL; 652 } 653 } 654 } 655 656 static void 657 gem_stop(struct ifnet *ifp, int disable) 658 { 659 struct gem_softc *sc = ifp->if_softc; 660 struct gem_txsoft *txs; 661 662 #ifdef GEM_DEBUG 663 CTR2(KTR_GEM, "%s: %s", device_get_name(sc->sc_dev), __func__); 664 #endif 665 666 callout_stop(&sc->sc_tick_ch); 667 #ifdef GEM_RINT_TIMEOUT 668 callout_stop(&sc->sc_rx_ch); 669 #endif 670 671 gem_reset_tx(sc); 672 gem_reset_rx(sc); 673 674 /* 675 * Release any queued transmit buffers. 676 */ 677 while ((txs = STAILQ_FIRST(&sc->sc_txdirtyq)) != NULL) { 678 STAILQ_REMOVE_HEAD(&sc->sc_txdirtyq, txs_q); 679 if (txs->txs_ndescs != 0) { 680 bus_dmamap_sync(sc->sc_tdmatag, txs->txs_dmamap, 681 BUS_DMASYNC_POSTWRITE); 682 bus_dmamap_unload(sc->sc_tdmatag, txs->txs_dmamap); 683 if (txs->txs_mbuf != NULL) { 684 m_freem(txs->txs_mbuf); 685 txs->txs_mbuf = NULL; 686 } 687 } 688 STAILQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q); 689 } 690 691 if (disable) 692 gem_rxdrain(sc); 693 694 /* 695 * Mark the interface down and cancel the watchdog timer. 696 */ 697 ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE); 698 sc->sc_flags &= ~GEM_LINK; 699 sc->sc_wdog_timer = 0; 700 } 701 702 static int 703 gem_reset_rx(struct gem_softc *sc) 704 { 705 706 /* 707 * Resetting while DMA is in progress can cause a bus hang, so we 708 * disable DMA first. 709 */ 710 (void)gem_disable_rx(sc); 711 GEM_BANK1_WRITE_4(sc, GEM_RX_CONFIG, 0); 712 GEM_BANK1_BARRIER(sc, GEM_RX_CONFIG, 4, 713 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE); 714 if (!GEM_BANK1_BITWAIT(sc, GEM_RX_CONFIG, GEM_RX_CONFIG_RXDMA_EN, 0)) 715 device_printf(sc->sc_dev, "cannot disable RX DMA\n"); 716 717 /* Wait 5ms extra. */ 718 DELAY(5000); 719 720 /* Reset the ERX. */ 721 GEM_BANK2_WRITE_4(sc, GEM_RESET, GEM_RESET_RX | 722 (sc->sc_variant == GEM_SUN_ERI ? GEM_ERI_CACHE_LINE_SIZE << 723 GEM_RESET_CLSZ_SHFT : 0)); 724 GEM_BANK2_BARRIER(sc, GEM_RESET, 4, 725 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE); 726 if (!GEM_BANK2_BITWAIT(sc, GEM_RESET, GEM_RESET_RX, 0)) { 727 device_printf(sc->sc_dev, "cannot reset receiver\n"); 728 return (1); 729 } 730 731 /* Finally, reset RX MAC. */ 732 GEM_BANK1_WRITE_4(sc, GEM_MAC_RXRESET, 1); 733 GEM_BANK1_BARRIER(sc, GEM_MAC_RXRESET, 4, 734 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE); 735 if (!GEM_BANK1_BITWAIT(sc, GEM_MAC_RXRESET, 1, 0)) { 736 device_printf(sc->sc_dev, "cannot reset RX MAC\n"); 737 return (1); 738 } 739 740 return (0); 741 } 742 743 /* 744 * Reset the receiver DMA engine. 745 * 746 * Intended to be used in case of GEM_INTR_RX_TAG_ERR, GEM_MAC_RX_OVERFLOW 747 * etc in order to reset the receiver DMA engine only and not do a full 748 * reset which amongst others also downs the link and clears the FIFOs. 749 */ 750 static void 751 gem_reset_rxdma(struct gem_softc *sc) 752 { 753 int i; 754 755 if (gem_reset_rx(sc) != 0) { 756 sc->sc_ifp->if_drv_flags &= ~IFF_DRV_RUNNING; 757 return (gem_init_locked(sc)); 758 } 759 for (i = 0; i < GEM_NRXDESC; i++) 760 if (sc->sc_rxsoft[i].rxs_mbuf != NULL) 761 GEM_UPDATE_RXDESC(sc, i); 762 sc->sc_rxptr = 0; 763 GEM_CDSYNC(sc, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE); 764 765 /* NOTE: we use only 32-bit DMA addresses here. */ 766 GEM_BANK1_WRITE_4(sc, GEM_RX_RING_PTR_HI, 0); 767 GEM_BANK1_WRITE_4(sc, GEM_RX_RING_PTR_LO, GEM_CDRXADDR(sc, 0)); 768 GEM_BANK1_WRITE_4(sc, GEM_RX_KICK, GEM_NRXDESC - 4); 769 GEM_BANK1_WRITE_4(sc, GEM_RX_CONFIG, 770 gem_ringsize(GEM_NRXDESC /* XXX */) | 771 ((ETHER_HDR_LEN + sizeof(struct ip)) << 772 GEM_RX_CONFIG_CXM_START_SHFT) | 773 (GEM_THRSH_1024 << GEM_RX_CONFIG_FIFO_THRS_SHIFT) | 774 (ETHER_ALIGN << GEM_RX_CONFIG_FBOFF_SHFT)); 775 /* Adjusting for the SBus clock probably isn't worth the fuzz. */ 776 GEM_BANK1_WRITE_4(sc, GEM_RX_BLANKING, 777 ((6 * (sc->sc_flags & GEM_PCI66) != 0 ? 2 : 1) << 778 GEM_RX_BLANKING_TIME_SHIFT) | 6); 779 GEM_BANK1_WRITE_4(sc, GEM_RX_PAUSE_THRESH, 780 (3 * sc->sc_rxfifosize / 256) | 781 ((sc->sc_rxfifosize / 256) << 12)); 782 GEM_BANK1_WRITE_4(sc, GEM_RX_CONFIG, 783 GEM_BANK1_READ_4(sc, GEM_RX_CONFIG) | GEM_RX_CONFIG_RXDMA_EN); 784 GEM_BANK1_WRITE_4(sc, GEM_MAC_RX_MASK, 785 GEM_MAC_RX_DONE | GEM_MAC_RX_FRAME_CNT); 786 /* 787 * Clear the RX filter and reprogram it. This will also set the 788 * current RX MAC configuration and enable it. 789 */ 790 gem_setladrf(sc); 791 } 792 793 static int 794 gem_reset_tx(struct gem_softc *sc) 795 { 796 797 /* 798 * Resetting while DMA is in progress can cause a bus hang, so we 799 * disable DMA first. 800 */ 801 (void)gem_disable_tx(sc); 802 GEM_BANK1_WRITE_4(sc, GEM_TX_CONFIG, 0); 803 GEM_BANK1_BARRIER(sc, GEM_TX_CONFIG, 4, 804 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE); 805 if (!GEM_BANK1_BITWAIT(sc, GEM_TX_CONFIG, GEM_TX_CONFIG_TXDMA_EN, 0)) 806 device_printf(sc->sc_dev, "cannot disable TX DMA\n"); 807 808 /* Wait 5ms extra. */ 809 DELAY(5000); 810 811 /* Finally, reset the ETX. */ 812 GEM_BANK2_WRITE_4(sc, GEM_RESET, GEM_RESET_TX | 813 (sc->sc_variant == GEM_SUN_ERI ? GEM_ERI_CACHE_LINE_SIZE << 814 GEM_RESET_CLSZ_SHFT : 0)); 815 GEM_BANK2_BARRIER(sc, GEM_RESET, 4, 816 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE); 817 if (!GEM_BANK2_BITWAIT(sc, GEM_RESET, GEM_RESET_TX, 0)) { 818 device_printf(sc->sc_dev, "cannot reset transmitter\n"); 819 return (1); 820 } 821 return (0); 822 } 823 824 static int 825 gem_disable_rx(struct gem_softc *sc) 826 { 827 828 GEM_BANK1_WRITE_4(sc, GEM_MAC_RX_CONFIG, 829 GEM_BANK1_READ_4(sc, GEM_MAC_RX_CONFIG) & ~GEM_MAC_RX_ENABLE); 830 GEM_BANK1_BARRIER(sc, GEM_MAC_RX_CONFIG, 4, 831 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE); 832 if (GEM_BANK1_BITWAIT(sc, GEM_MAC_RX_CONFIG, GEM_MAC_RX_ENABLE, 0)) 833 return (1); 834 device_printf(sc->sc_dev, "cannot disable RX MAC\n"); 835 return (0); 836 } 837 838 static int 839 gem_disable_tx(struct gem_softc *sc) 840 { 841 842 GEM_BANK1_WRITE_4(sc, GEM_MAC_TX_CONFIG, 843 GEM_BANK1_READ_4(sc, GEM_MAC_TX_CONFIG) & ~GEM_MAC_TX_ENABLE); 844 GEM_BANK1_BARRIER(sc, GEM_MAC_TX_CONFIG, 4, 845 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE); 846 if (GEM_BANK1_BITWAIT(sc, GEM_MAC_TX_CONFIG, GEM_MAC_TX_ENABLE, 0)) 847 return (1); 848 device_printf(sc->sc_dev, "cannot disable TX MAC\n"); 849 return (0); 850 } 851 852 static int 853 gem_meminit(struct gem_softc *sc) 854 { 855 struct gem_rxsoft *rxs; 856 int error, i; 857 858 GEM_LOCK_ASSERT(sc, MA_OWNED); 859 860 /* 861 * Initialize the transmit descriptor ring. 862 */ 863 for (i = 0; i < GEM_NTXDESC; i++) { 864 sc->sc_txdescs[i].gd_flags = 0; 865 sc->sc_txdescs[i].gd_addr = 0; 866 } 867 sc->sc_txfree = GEM_MAXTXFREE; 868 sc->sc_txnext = 0; 869 sc->sc_txwin = 0; 870 871 /* 872 * Initialize the receive descriptor and receive job 873 * descriptor rings. 874 */ 875 for (i = 0; i < GEM_NRXDESC; i++) { 876 rxs = &sc->sc_rxsoft[i]; 877 if (rxs->rxs_mbuf == NULL) { 878 if ((error = gem_add_rxbuf(sc, i)) != 0) { 879 device_printf(sc->sc_dev, 880 "unable to allocate or map RX buffer %d, " 881 "error = %d\n", i, error); 882 /* 883 * XXX we should attempt to run with fewer 884 * receive buffers instead of just failing. 885 */ 886 gem_rxdrain(sc); 887 return (1); 888 } 889 } else 890 GEM_INIT_RXDESC(sc, i); 891 } 892 sc->sc_rxptr = 0; 893 894 GEM_CDSYNC(sc, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE); 895 896 return (0); 897 } 898 899 static u_int 900 gem_ringsize(u_int sz) 901 { 902 903 switch (sz) { 904 case 32: 905 return (GEM_RING_SZ_32); 906 case 64: 907 return (GEM_RING_SZ_64); 908 case 128: 909 return (GEM_RING_SZ_128); 910 case 256: 911 return (GEM_RING_SZ_256); 912 case 512: 913 return (GEM_RING_SZ_512); 914 case 1024: 915 return (GEM_RING_SZ_1024); 916 case 2048: 917 return (GEM_RING_SZ_2048); 918 case 4096: 919 return (GEM_RING_SZ_4096); 920 case 8192: 921 return (GEM_RING_SZ_8192); 922 default: 923 printf("%s: invalid ring size %d\n", __func__, sz); 924 return (GEM_RING_SZ_32); 925 } 926 } 927 928 static void 929 gem_init(void *xsc) 930 { 931 struct gem_softc *sc = xsc; 932 933 GEM_LOCK(sc); 934 gem_init_locked(sc); 935 GEM_UNLOCK(sc); 936 } 937 938 /* 939 * Initialization of interface; set up initialization block 940 * and transmit/receive descriptor rings. 941 */ 942 static void 943 gem_init_locked(struct gem_softc *sc) 944 { 945 struct ifnet *ifp = sc->sc_ifp; 946 uint32_t v; 947 948 GEM_LOCK_ASSERT(sc, MA_OWNED); 949 950 #ifdef notyet 951 if ((ifp->if_drv_flags & IFF_DRV_RUNNING) != 0) 952 return; 953 #endif 954 955 #ifdef GEM_DEBUG 956 CTR2(KTR_GEM, "%s: %s: calling stop", device_get_name(sc->sc_dev), 957 __func__); 958 #endif 959 /* 960 * Initialization sequence. The numbered steps below correspond 961 * to the sequence outlined in section 6.3.5.1 in the Ethernet 962 * Channel Engine manual (part of the PCIO manual). 963 * See also the STP2002-STQ document from Sun Microsystems. 964 */ 965 966 /* step 1 & 2. Reset the Ethernet Channel. */ 967 gem_stop(ifp, 0); 968 gem_reset(sc); 969 #ifdef GEM_DEBUG 970 CTR2(KTR_GEM, "%s: %s: restarting", device_get_name(sc->sc_dev), 971 __func__); 972 #endif 973 974 if ((sc->sc_flags & GEM_SERDES) == 0) 975 /* Re-initialize the MIF. */ 976 gem_mifinit(sc); 977 978 /* step 3. Setup data structures in host memory. */ 979 if (gem_meminit(sc) != 0) 980 return; 981 982 /* step 4. TX MAC registers & counters */ 983 gem_init_regs(sc); 984 985 /* step 5. RX MAC registers & counters */ 986 987 /* step 6 & 7. Program Descriptor Ring Base Addresses. */ 988 /* NOTE: we use only 32-bit DMA addresses here. */ 989 GEM_BANK1_WRITE_4(sc, GEM_TX_RING_PTR_HI, 0); 990 GEM_BANK1_WRITE_4(sc, GEM_TX_RING_PTR_LO, GEM_CDTXADDR(sc, 0)); 991 992 GEM_BANK1_WRITE_4(sc, GEM_RX_RING_PTR_HI, 0); 993 GEM_BANK1_WRITE_4(sc, GEM_RX_RING_PTR_LO, GEM_CDRXADDR(sc, 0)); 994 #ifdef GEM_DEBUG 995 CTR3(KTR_GEM, "loading RX ring %lx, TX ring %lx, cddma %lx", 996 GEM_CDRXADDR(sc, 0), GEM_CDTXADDR(sc, 0), sc->sc_cddma); 997 #endif 998 999 /* step 8. Global Configuration & Interrupt Mask */ 1000 1001 /* 1002 * Set the internal arbitration to "infinite" bursts of the 1003 * maximum length of 31 * 64 bytes so DMA transfers aren't 1004 * split up in cache line size chunks. This greatly improves 1005 * RX performance. 1006 * Enable silicon bug workarounds for the Apple variants. 1007 */ 1008 GEM_BANK1_WRITE_4(sc, GEM_CONFIG, 1009 GEM_CONFIG_TXDMA_LIMIT | GEM_CONFIG_RXDMA_LIMIT | 1010 ((sc->sc_flags & GEM_PCI) != 0 ? GEM_CONFIG_BURST_INF : 1011 GEM_CONFIG_BURST_64) | (GEM_IS_APPLE(sc) ? 1012 GEM_CONFIG_RONPAULBIT | GEM_CONFIG_BUG2FIX : 0)); 1013 1014 GEM_BANK1_WRITE_4(sc, GEM_INTMASK, 1015 ~(GEM_INTR_TX_INTME | GEM_INTR_TX_EMPTY | GEM_INTR_RX_DONE | 1016 GEM_INTR_RX_NOBUF | GEM_INTR_RX_TAG_ERR | GEM_INTR_PERR | 1017 GEM_INTR_BERR 1018 #ifdef GEM_DEBUG 1019 | GEM_INTR_PCS | GEM_INTR_MIF 1020 #endif 1021 )); 1022 GEM_BANK1_WRITE_4(sc, GEM_MAC_RX_MASK, 1023 GEM_MAC_RX_DONE | GEM_MAC_RX_FRAME_CNT); 1024 GEM_BANK1_WRITE_4(sc, GEM_MAC_TX_MASK, 1025 GEM_MAC_TX_XMIT_DONE | GEM_MAC_TX_DEFER_EXP | 1026 GEM_MAC_TX_PEAK_EXP); 1027 #ifdef GEM_DEBUG 1028 GEM_BANK1_WRITE_4(sc, GEM_MAC_CONTROL_MASK, 1029 ~(GEM_MAC_PAUSED | GEM_MAC_PAUSE | GEM_MAC_RESUME)); 1030 #else 1031 GEM_BANK1_WRITE_4(sc, GEM_MAC_CONTROL_MASK, 1032 GEM_MAC_PAUSED | GEM_MAC_PAUSE | GEM_MAC_RESUME); 1033 #endif 1034 1035 /* step 9. ETX Configuration: use mostly default values. */ 1036 1037 /* Enable DMA. */ 1038 v = gem_ringsize(GEM_NTXDESC); 1039 /* Set TX FIFO threshold and enable DMA. */ 1040 v |= ((sc->sc_variant == GEM_SUN_ERI ? 0x100 : 0x4ff) << 10) & 1041 GEM_TX_CONFIG_TXFIFO_TH; 1042 GEM_BANK1_WRITE_4(sc, GEM_TX_CONFIG, v | GEM_TX_CONFIG_TXDMA_EN); 1043 1044 /* step 10. ERX Configuration */ 1045 1046 /* Encode Receive Descriptor ring size. */ 1047 v = gem_ringsize(GEM_NRXDESC /* XXX */); 1048 /* RX TCP/UDP checksum offset */ 1049 v |= ((ETHER_HDR_LEN + sizeof(struct ip)) << 1050 GEM_RX_CONFIG_CXM_START_SHFT); 1051 /* Set RX FIFO threshold, set first byte offset and enable DMA. */ 1052 GEM_BANK1_WRITE_4(sc, GEM_RX_CONFIG, 1053 v | (GEM_THRSH_1024 << GEM_RX_CONFIG_FIFO_THRS_SHIFT) | 1054 (ETHER_ALIGN << GEM_RX_CONFIG_FBOFF_SHFT) | 1055 GEM_RX_CONFIG_RXDMA_EN); 1056 1057 /* Adjusting for the SBus clock probably isn't worth the fuzz. */ 1058 GEM_BANK1_WRITE_4(sc, GEM_RX_BLANKING, 1059 ((6 * (sc->sc_flags & GEM_PCI66) != 0 ? 2 : 1) << 1060 GEM_RX_BLANKING_TIME_SHIFT) | 6); 1061 1062 /* 1063 * The following value is for an OFF Threshold of about 3/4 full 1064 * and an ON Threshold of 1/4 full. 1065 */ 1066 GEM_BANK1_WRITE_4(sc, GEM_RX_PAUSE_THRESH, 1067 (3 * sc->sc_rxfifosize / 256) | 1068 ((sc->sc_rxfifosize / 256) << 12)); 1069 1070 /* step 11. Configure Media. */ 1071 1072 /* step 12. RX_MAC Configuration Register */ 1073 v = GEM_BANK1_READ_4(sc, GEM_MAC_RX_CONFIG); 1074 v &= ~GEM_MAC_RX_ENABLE; 1075 v |= GEM_MAC_RX_STRIP_CRC; 1076 sc->sc_mac_rxcfg = v; 1077 /* 1078 * Clear the RX filter and reprogram it. This will also set the 1079 * current RX MAC configuration and enable it. 1080 */ 1081 gem_setladrf(sc); 1082 1083 /* step 13. TX_MAC Configuration Register */ 1084 v = GEM_BANK1_READ_4(sc, GEM_MAC_TX_CONFIG); 1085 v |= GEM_MAC_TX_ENABLE; 1086 (void)gem_disable_tx(sc); 1087 GEM_BANK1_WRITE_4(sc, GEM_MAC_TX_CONFIG, v); 1088 1089 /* step 14. Issue Transmit Pending command. */ 1090 1091 /* step 15. Give the receiver a swift kick. */ 1092 GEM_BANK1_WRITE_4(sc, GEM_RX_KICK, GEM_NRXDESC - 4); 1093 1094 ifp->if_drv_flags |= IFF_DRV_RUNNING; 1095 ifp->if_drv_flags &= ~IFF_DRV_OACTIVE; 1096 1097 mii_mediachg(sc->sc_mii); 1098 1099 /* Start the one second timer. */ 1100 sc->sc_wdog_timer = 0; 1101 callout_reset(&sc->sc_tick_ch, hz, gem_tick, sc); 1102 } 1103 1104 static int 1105 gem_load_txmbuf(struct gem_softc *sc, struct mbuf **m_head) 1106 { 1107 bus_dma_segment_t txsegs[GEM_NTXSEGS]; 1108 struct gem_txsoft *txs; 1109 struct ip *ip; 1110 struct mbuf *m; 1111 uint64_t cflags, flags; 1112 int error, nexttx, nsegs, offset, seg; 1113 1114 GEM_LOCK_ASSERT(sc, MA_OWNED); 1115 1116 /* Get a work queue entry. */ 1117 if ((txs = STAILQ_FIRST(&sc->sc_txfreeq)) == NULL) { 1118 /* Ran out of descriptors. */ 1119 return (ENOBUFS); 1120 } 1121 1122 cflags = 0; 1123 if (((*m_head)->m_pkthdr.csum_flags & sc->sc_csum_features) != 0) { 1124 if (M_WRITABLE(*m_head) == 0) { 1125 m = m_dup(*m_head, M_DONTWAIT); 1126 m_freem(*m_head); 1127 *m_head = m; 1128 if (m == NULL) 1129 return (ENOBUFS); 1130 } 1131 offset = sizeof(struct ether_header); 1132 m = m_pullup(*m_head, offset + sizeof(struct ip)); 1133 if (m == NULL) { 1134 *m_head = NULL; 1135 return (ENOBUFS); 1136 } 1137 ip = (struct ip *)(mtod(m, caddr_t) + offset); 1138 offset += (ip->ip_hl << 2); 1139 cflags = offset << GEM_TD_CXSUM_STARTSHFT | 1140 ((offset + m->m_pkthdr.csum_data) << 1141 GEM_TD_CXSUM_STUFFSHFT) | GEM_TD_CXSUM_ENABLE; 1142 *m_head = m; 1143 } 1144 1145 error = bus_dmamap_load_mbuf_sg(sc->sc_tdmatag, txs->txs_dmamap, 1146 *m_head, txsegs, &nsegs, BUS_DMA_NOWAIT); 1147 if (error == EFBIG) { 1148 m = m_collapse(*m_head, M_DONTWAIT, GEM_NTXSEGS); 1149 if (m == NULL) { 1150 m_freem(*m_head); 1151 *m_head = NULL; 1152 return (ENOBUFS); 1153 } 1154 *m_head = m; 1155 error = bus_dmamap_load_mbuf_sg(sc->sc_tdmatag, 1156 txs->txs_dmamap, *m_head, txsegs, &nsegs, 1157 BUS_DMA_NOWAIT); 1158 if (error != 0) { 1159 m_freem(*m_head); 1160 *m_head = NULL; 1161 return (error); 1162 } 1163 } else if (error != 0) 1164 return (error); 1165 /* If nsegs is wrong then the stack is corrupt. */ 1166 KASSERT(nsegs <= GEM_NTXSEGS, 1167 ("%s: too many DMA segments (%d)", __func__, nsegs)); 1168 if (nsegs == 0) { 1169 m_freem(*m_head); 1170 *m_head = NULL; 1171 return (EIO); 1172 } 1173 1174 /* 1175 * Ensure we have enough descriptors free to describe 1176 * the packet. Note, we always reserve one descriptor 1177 * at the end of the ring as a termination point, in 1178 * order to prevent wrap-around. 1179 */ 1180 if (nsegs > sc->sc_txfree - 1) { 1181 txs->txs_ndescs = 0; 1182 bus_dmamap_unload(sc->sc_tdmatag, txs->txs_dmamap); 1183 return (ENOBUFS); 1184 } 1185 1186 txs->txs_ndescs = nsegs; 1187 txs->txs_firstdesc = sc->sc_txnext; 1188 nexttx = txs->txs_firstdesc; 1189 for (seg = 0; seg < nsegs; seg++, nexttx = GEM_NEXTTX(nexttx)) { 1190 #ifdef GEM_DEBUG 1191 CTR6(KTR_GEM, 1192 "%s: mapping seg %d (txd %d), len %lx, addr %#lx (%#lx)", 1193 __func__, seg, nexttx, txsegs[seg].ds_len, 1194 txsegs[seg].ds_addr, 1195 GEM_DMA_WRITE(sc, txsegs[seg].ds_addr)); 1196 #endif 1197 sc->sc_txdescs[nexttx].gd_addr = 1198 GEM_DMA_WRITE(sc, txsegs[seg].ds_addr); 1199 KASSERT(txsegs[seg].ds_len < GEM_TD_BUFSIZE, 1200 ("%s: segment size too large!", __func__)); 1201 flags = txsegs[seg].ds_len & GEM_TD_BUFSIZE; 1202 sc->sc_txdescs[nexttx].gd_flags = 1203 GEM_DMA_WRITE(sc, flags | cflags); 1204 txs->txs_lastdesc = nexttx; 1205 } 1206 1207 /* Set EOP on the last descriptor. */ 1208 #ifdef GEM_DEBUG 1209 CTR3(KTR_GEM, "%s: end of packet at segment %d, TX %d", 1210 __func__, seg, nexttx); 1211 #endif 1212 sc->sc_txdescs[txs->txs_lastdesc].gd_flags |= 1213 GEM_DMA_WRITE(sc, GEM_TD_END_OF_PACKET); 1214 1215 /* Lastly set SOP on the first descriptor. */ 1216 #ifdef GEM_DEBUG 1217 CTR3(KTR_GEM, "%s: start of packet at segment %d, TX %d", 1218 __func__, seg, nexttx); 1219 #endif 1220 if (++sc->sc_txwin > GEM_NTXSEGS * 2 / 3) { 1221 sc->sc_txwin = 0; 1222 sc->sc_txdescs[txs->txs_firstdesc].gd_flags |= 1223 GEM_DMA_WRITE(sc, GEM_TD_INTERRUPT_ME | 1224 GEM_TD_START_OF_PACKET); 1225 } else 1226 sc->sc_txdescs[txs->txs_firstdesc].gd_flags |= 1227 GEM_DMA_WRITE(sc, GEM_TD_START_OF_PACKET); 1228 1229 /* Sync the DMA map. */ 1230 bus_dmamap_sync(sc->sc_tdmatag, txs->txs_dmamap, 1231 BUS_DMASYNC_PREWRITE); 1232 1233 #ifdef GEM_DEBUG 1234 CTR4(KTR_GEM, "%s: setting firstdesc=%d, lastdesc=%d, ndescs=%d", 1235 __func__, txs->txs_firstdesc, txs->txs_lastdesc, 1236 txs->txs_ndescs); 1237 #endif 1238 STAILQ_REMOVE_HEAD(&sc->sc_txfreeq, txs_q); 1239 STAILQ_INSERT_TAIL(&sc->sc_txdirtyq, txs, txs_q); 1240 txs->txs_mbuf = *m_head; 1241 1242 sc->sc_txnext = GEM_NEXTTX(txs->txs_lastdesc); 1243 sc->sc_txfree -= txs->txs_ndescs; 1244 1245 return (0); 1246 } 1247 1248 static void 1249 gem_init_regs(struct gem_softc *sc) 1250 { 1251 const u_char *laddr = IF_LLADDR(sc->sc_ifp); 1252 1253 GEM_LOCK_ASSERT(sc, MA_OWNED); 1254 1255 /* These registers are not cleared on reset. */ 1256 if ((sc->sc_flags & GEM_INITED) == 0) { 1257 /* magic values */ 1258 GEM_BANK1_WRITE_4(sc, GEM_MAC_IPG0, 0); 1259 GEM_BANK1_WRITE_4(sc, GEM_MAC_IPG1, 8); 1260 GEM_BANK1_WRITE_4(sc, GEM_MAC_IPG2, 4); 1261 1262 /* min frame length */ 1263 GEM_BANK1_WRITE_4(sc, GEM_MAC_MAC_MIN_FRAME, ETHER_MIN_LEN); 1264 /* max frame length and max burst size */ 1265 GEM_BANK1_WRITE_4(sc, GEM_MAC_MAC_MAX_FRAME, 1266 (ETHER_MAX_LEN + ETHER_VLAN_ENCAP_LEN) | (0x2000 << 16)); 1267 1268 /* more magic values */ 1269 GEM_BANK1_WRITE_4(sc, GEM_MAC_PREAMBLE_LEN, 0x7); 1270 GEM_BANK1_WRITE_4(sc, GEM_MAC_JAM_SIZE, 0x4); 1271 GEM_BANK1_WRITE_4(sc, GEM_MAC_ATTEMPT_LIMIT, 0x10); 1272 GEM_BANK1_WRITE_4(sc, GEM_MAC_CONTROL_TYPE, 0x8808); 1273 1274 /* random number seed */ 1275 GEM_BANK1_WRITE_4(sc, GEM_MAC_RANDOM_SEED, 1276 ((laddr[5] << 8) | laddr[4]) & 0x3ff); 1277 1278 /* secondary MAC address: 0:0:0:0:0:0 */ 1279 GEM_BANK1_WRITE_4(sc, GEM_MAC_ADDR3, 0); 1280 GEM_BANK1_WRITE_4(sc, GEM_MAC_ADDR4, 0); 1281 GEM_BANK1_WRITE_4(sc, GEM_MAC_ADDR5, 0); 1282 1283 /* MAC control address: 01:80:c2:00:00:01 */ 1284 GEM_BANK1_WRITE_4(sc, GEM_MAC_ADDR6, 0x0001); 1285 GEM_BANK1_WRITE_4(sc, GEM_MAC_ADDR7, 0xc200); 1286 GEM_BANK1_WRITE_4(sc, GEM_MAC_ADDR8, 0x0180); 1287 1288 /* MAC filter address: 0:0:0:0:0:0 */ 1289 GEM_BANK1_WRITE_4(sc, GEM_MAC_ADDR_FILTER0, 0); 1290 GEM_BANK1_WRITE_4(sc, GEM_MAC_ADDR_FILTER1, 0); 1291 GEM_BANK1_WRITE_4(sc, GEM_MAC_ADDR_FILTER2, 0); 1292 GEM_BANK1_WRITE_4(sc, GEM_MAC_ADR_FLT_MASK1_2, 0); 1293 GEM_BANK1_WRITE_4(sc, GEM_MAC_ADR_FLT_MASK0, 0); 1294 1295 sc->sc_flags |= GEM_INITED; 1296 } 1297 1298 /* Counters need to be zeroed. */ 1299 GEM_BANK1_WRITE_4(sc, GEM_MAC_NORM_COLL_CNT, 0); 1300 GEM_BANK1_WRITE_4(sc, GEM_MAC_FIRST_COLL_CNT, 0); 1301 GEM_BANK1_WRITE_4(sc, GEM_MAC_EXCESS_COLL_CNT, 0); 1302 GEM_BANK1_WRITE_4(sc, GEM_MAC_LATE_COLL_CNT, 0); 1303 GEM_BANK1_WRITE_4(sc, GEM_MAC_DEFER_TMR_CNT, 0); 1304 GEM_BANK1_WRITE_4(sc, GEM_MAC_PEAK_ATTEMPTS, 0); 1305 GEM_BANK1_WRITE_4(sc, GEM_MAC_RX_FRAME_COUNT, 0); 1306 GEM_BANK1_WRITE_4(sc, GEM_MAC_RX_LEN_ERR_CNT, 0); 1307 GEM_BANK1_WRITE_4(sc, GEM_MAC_RX_ALIGN_ERR, 0); 1308 GEM_BANK1_WRITE_4(sc, GEM_MAC_RX_CRC_ERR_CNT, 0); 1309 GEM_BANK1_WRITE_4(sc, GEM_MAC_RX_CODE_VIOL, 0); 1310 1311 /* Set XOFF PAUSE time. */ 1312 GEM_BANK1_WRITE_4(sc, GEM_MAC_SEND_PAUSE_CMD, 0x1BF0); 1313 1314 /* Set the station address. */ 1315 GEM_BANK1_WRITE_4(sc, GEM_MAC_ADDR0, (laddr[4] << 8) | laddr[5]); 1316 GEM_BANK1_WRITE_4(sc, GEM_MAC_ADDR1, (laddr[2] << 8) | laddr[3]); 1317 GEM_BANK1_WRITE_4(sc, GEM_MAC_ADDR2, (laddr[0] << 8) | laddr[1]); 1318 1319 /* Enable MII outputs. */ 1320 GEM_BANK1_WRITE_4(sc, GEM_MAC_XIF_CONFIG, GEM_MAC_XIF_TX_MII_ENA); 1321 } 1322 1323 static void 1324 gem_start(struct ifnet *ifp) 1325 { 1326 struct gem_softc *sc = ifp->if_softc; 1327 1328 GEM_LOCK(sc); 1329 gem_start_locked(ifp); 1330 GEM_UNLOCK(sc); 1331 } 1332 1333 static inline void 1334 gem_txkick(struct gem_softc *sc) 1335 { 1336 1337 /* 1338 * Update the TX kick register. This register has to point to the 1339 * descriptor after the last valid one and for optimum performance 1340 * should be incremented in multiples of 4 (the DMA engine fetches/ 1341 * updates descriptors in batches of 4). 1342 */ 1343 #ifdef GEM_DEBUG 1344 CTR3(KTR_GEM, "%s: %s: kicking TX %d", 1345 device_get_name(sc->sc_dev), __func__, sc->sc_txnext); 1346 #endif 1347 GEM_CDSYNC(sc, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE); 1348 GEM_BANK1_WRITE_4(sc, GEM_TX_KICK, sc->sc_txnext); 1349 } 1350 1351 static void 1352 gem_start_locked(struct ifnet *ifp) 1353 { 1354 struct gem_softc *sc = ifp->if_softc; 1355 struct mbuf *m; 1356 int kicked, ntx; 1357 1358 GEM_LOCK_ASSERT(sc, MA_OWNED); 1359 1360 if ((ifp->if_drv_flags & (IFF_DRV_RUNNING | IFF_DRV_OACTIVE)) != 1361 IFF_DRV_RUNNING || (sc->sc_flags & GEM_LINK) == 0) 1362 return; 1363 1364 #ifdef GEM_DEBUG 1365 CTR4(KTR_GEM, "%s: %s: txfree %d, txnext %d", 1366 device_get_name(sc->sc_dev), __func__, sc->sc_txfree, 1367 sc->sc_txnext); 1368 #endif 1369 ntx = 0; 1370 kicked = 0; 1371 for (; !IFQ_DRV_IS_EMPTY(&ifp->if_snd) && sc->sc_txfree > 1;) { 1372 IFQ_DRV_DEQUEUE(&ifp->if_snd, m); 1373 if (m == NULL) 1374 break; 1375 if (gem_load_txmbuf(sc, &m) != 0) { 1376 if (m == NULL) 1377 break; 1378 ifp->if_drv_flags |= IFF_DRV_OACTIVE; 1379 IFQ_DRV_PREPEND(&ifp->if_snd, m); 1380 break; 1381 } 1382 if ((sc->sc_txnext % 4) == 0) { 1383 gem_txkick(sc); 1384 kicked = 1; 1385 } else 1386 kicked = 0; 1387 ntx++; 1388 BPF_MTAP(ifp, m); 1389 } 1390 1391 if (ntx > 0) { 1392 if (kicked == 0) 1393 gem_txkick(sc); 1394 #ifdef GEM_DEBUG 1395 CTR2(KTR_GEM, "%s: packets enqueued, OWN on %d", 1396 device_get_name(sc->sc_dev), sc->sc_txnext); 1397 #endif 1398 1399 /* Set a watchdog timer in case the chip flakes out. */ 1400 sc->sc_wdog_timer = 5; 1401 #ifdef GEM_DEBUG 1402 CTR3(KTR_GEM, "%s: %s: watchdog %d", 1403 device_get_name(sc->sc_dev), __func__, 1404 sc->sc_wdog_timer); 1405 #endif 1406 } 1407 } 1408 1409 static void 1410 gem_tint(struct gem_softc *sc) 1411 { 1412 struct ifnet *ifp = sc->sc_ifp; 1413 struct gem_txsoft *txs; 1414 int progress; 1415 uint32_t txlast; 1416 #ifdef GEM_DEBUG 1417 int i; 1418 1419 GEM_LOCK_ASSERT(sc, MA_OWNED); 1420 1421 CTR2(KTR_GEM, "%s: %s", device_get_name(sc->sc_dev), __func__); 1422 #endif 1423 1424 /* 1425 * Go through our TX list and free mbufs for those 1426 * frames that have been transmitted. 1427 */ 1428 progress = 0; 1429 GEM_CDSYNC(sc, BUS_DMASYNC_POSTREAD); 1430 while ((txs = STAILQ_FIRST(&sc->sc_txdirtyq)) != NULL) { 1431 #ifdef GEM_DEBUG 1432 if ((ifp->if_flags & IFF_DEBUG) != 0) { 1433 printf(" txsoft %p transmit chain:\n", txs); 1434 for (i = txs->txs_firstdesc;; i = GEM_NEXTTX(i)) { 1435 printf("descriptor %d: ", i); 1436 printf("gd_flags: 0x%016llx\t", 1437 (long long)GEM_DMA_READ(sc, 1438 sc->sc_txdescs[i].gd_flags)); 1439 printf("gd_addr: 0x%016llx\n", 1440 (long long)GEM_DMA_READ(sc, 1441 sc->sc_txdescs[i].gd_addr)); 1442 if (i == txs->txs_lastdesc) 1443 break; 1444 } 1445 } 1446 #endif 1447 1448 /* 1449 * In theory, we could harvest some descriptors before 1450 * the ring is empty, but that's a bit complicated. 1451 * 1452 * GEM_TX_COMPLETION points to the last descriptor 1453 * processed + 1. 1454 */ 1455 txlast = GEM_BANK1_READ_4(sc, GEM_TX_COMPLETION); 1456 #ifdef GEM_DEBUG 1457 CTR4(KTR_GEM, "%s: txs->txs_firstdesc = %d, " 1458 "txs->txs_lastdesc = %d, txlast = %d", 1459 __func__, txs->txs_firstdesc, txs->txs_lastdesc, txlast); 1460 #endif 1461 if (txs->txs_firstdesc <= txs->txs_lastdesc) { 1462 if ((txlast >= txs->txs_firstdesc) && 1463 (txlast <= txs->txs_lastdesc)) 1464 break; 1465 } else { 1466 /* Ick -- this command wraps. */ 1467 if ((txlast >= txs->txs_firstdesc) || 1468 (txlast <= txs->txs_lastdesc)) 1469 break; 1470 } 1471 1472 #ifdef GEM_DEBUG 1473 CTR1(KTR_GEM, "%s: releasing a descriptor", __func__); 1474 #endif 1475 STAILQ_REMOVE_HEAD(&sc->sc_txdirtyq, txs_q); 1476 1477 sc->sc_txfree += txs->txs_ndescs; 1478 1479 bus_dmamap_sync(sc->sc_tdmatag, txs->txs_dmamap, 1480 BUS_DMASYNC_POSTWRITE); 1481 bus_dmamap_unload(sc->sc_tdmatag, txs->txs_dmamap); 1482 if (txs->txs_mbuf != NULL) { 1483 m_freem(txs->txs_mbuf); 1484 txs->txs_mbuf = NULL; 1485 } 1486 1487 STAILQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q); 1488 1489 ifp->if_opackets++; 1490 progress = 1; 1491 } 1492 1493 #ifdef GEM_DEBUG 1494 CTR4(KTR_GEM, "%s: GEM_TX_STATE_MACHINE %x GEM_TX_DATA_PTR %llx " 1495 "GEM_TX_COMPLETION %x", 1496 __func__, GEM_BANK1_READ_4(sc, GEM_TX_STATE_MACHINE), 1497 ((long long)GEM_BANK1_READ_4(sc, GEM_TX_DATA_PTR_HI) << 32) | 1498 GEM_BANK1_READ_4(sc, GEM_TX_DATA_PTR_LO), 1499 GEM_BANK1_READ_4(sc, GEM_TX_COMPLETION)); 1500 #endif 1501 1502 if (progress) { 1503 if (sc->sc_txfree == GEM_NTXDESC - 1) 1504 sc->sc_txwin = 0; 1505 1506 /* 1507 * We freed some descriptors, so reset IFF_DRV_OACTIVE 1508 * and restart. 1509 */ 1510 ifp->if_drv_flags &= ~IFF_DRV_OACTIVE; 1511 if (STAILQ_EMPTY(&sc->sc_txdirtyq)) 1512 sc->sc_wdog_timer = 0; 1513 gem_start_locked(ifp); 1514 } 1515 1516 #ifdef GEM_DEBUG 1517 CTR3(KTR_GEM, "%s: %s: watchdog %d", 1518 device_get_name(sc->sc_dev), __func__, sc->sc_wdog_timer); 1519 #endif 1520 } 1521 1522 #ifdef GEM_RINT_TIMEOUT 1523 static void 1524 gem_rint_timeout(void *arg) 1525 { 1526 struct gem_softc *sc = arg; 1527 1528 GEM_LOCK_ASSERT(sc, MA_OWNED); 1529 1530 gem_rint(sc); 1531 } 1532 #endif 1533 1534 static void 1535 gem_rint(struct gem_softc *sc) 1536 { 1537 struct ifnet *ifp = sc->sc_ifp; 1538 struct mbuf *m; 1539 uint64_t rxstat; 1540 uint32_t rxcomp; 1541 1542 GEM_LOCK_ASSERT(sc, MA_OWNED); 1543 1544 #ifdef GEM_RINT_TIMEOUT 1545 callout_stop(&sc->sc_rx_ch); 1546 #endif 1547 #ifdef GEM_DEBUG 1548 CTR2(KTR_GEM, "%s: %s", device_get_name(sc->sc_dev), __func__); 1549 #endif 1550 1551 /* 1552 * Read the completion register once. This limits 1553 * how long the following loop can execute. 1554 */ 1555 rxcomp = GEM_BANK1_READ_4(sc, GEM_RX_COMPLETION); 1556 #ifdef GEM_DEBUG 1557 CTR3(KTR_GEM, "%s: sc->sc_rxptr %d, complete %d", 1558 __func__, sc->sc_rxptr, rxcomp); 1559 #endif 1560 GEM_CDSYNC(sc, BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE); 1561 for (; sc->sc_rxptr != rxcomp;) { 1562 m = sc->sc_rxsoft[sc->sc_rxptr].rxs_mbuf; 1563 rxstat = GEM_DMA_READ(sc, 1564 sc->sc_rxdescs[sc->sc_rxptr].gd_flags); 1565 1566 if (rxstat & GEM_RD_OWN) { 1567 #ifdef GEM_RINT_TIMEOUT 1568 /* 1569 * The descriptor is still marked as owned, although 1570 * it is supposed to have completed. This has been 1571 * observed on some machines. Just exiting here 1572 * might leave the packet sitting around until another 1573 * one arrives to trigger a new interrupt, which is 1574 * generally undesirable, so set up a timeout. 1575 */ 1576 callout_reset(&sc->sc_rx_ch, GEM_RXOWN_TICKS, 1577 gem_rint_timeout, sc); 1578 #endif 1579 m = NULL; 1580 goto kickit; 1581 } 1582 1583 if (rxstat & GEM_RD_BAD_CRC) { 1584 ifp->if_ierrors++; 1585 device_printf(sc->sc_dev, "receive error: CRC error\n"); 1586 GEM_INIT_RXDESC(sc, sc->sc_rxptr); 1587 m = NULL; 1588 goto kickit; 1589 } 1590 1591 #ifdef GEM_DEBUG 1592 if ((ifp->if_flags & IFF_DEBUG) != 0) { 1593 printf(" rxsoft %p descriptor %d: ", 1594 &sc->sc_rxsoft[sc->sc_rxptr], sc->sc_rxptr); 1595 printf("gd_flags: 0x%016llx\t", 1596 (long long)GEM_DMA_READ(sc, 1597 sc->sc_rxdescs[sc->sc_rxptr].gd_flags)); 1598 printf("gd_addr: 0x%016llx\n", 1599 (long long)GEM_DMA_READ(sc, 1600 sc->sc_rxdescs[sc->sc_rxptr].gd_addr)); 1601 } 1602 #endif 1603 1604 /* 1605 * Allocate a new mbuf cluster. If that fails, we are 1606 * out of memory, and must drop the packet and recycle 1607 * the buffer that's already attached to this descriptor. 1608 */ 1609 if (gem_add_rxbuf(sc, sc->sc_rxptr) != 0) { 1610 ifp->if_iqdrops++; 1611 GEM_INIT_RXDESC(sc, sc->sc_rxptr); 1612 m = NULL; 1613 } 1614 1615 kickit: 1616 /* 1617 * Update the RX kick register. This register has to point 1618 * to the descriptor after the last valid one (before the 1619 * current batch) and for optimum performance should be 1620 * incremented in multiples of 4 (the DMA engine fetches/ 1621 * updates descriptors in batches of 4). 1622 */ 1623 sc->sc_rxptr = GEM_NEXTRX(sc->sc_rxptr); 1624 if ((sc->sc_rxptr % 4) == 0) { 1625 GEM_CDSYNC(sc, 1626 BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE); 1627 GEM_BANK1_WRITE_4(sc, GEM_RX_KICK, 1628 (sc->sc_rxptr + GEM_NRXDESC - 4) & 1629 GEM_NRXDESC_MASK); 1630 } 1631 1632 if (m == NULL) { 1633 if (rxstat & GEM_RD_OWN) 1634 break; 1635 continue; 1636 } 1637 1638 ifp->if_ipackets++; 1639 m->m_data += ETHER_ALIGN; /* first byte offset */ 1640 m->m_pkthdr.rcvif = ifp; 1641 m->m_pkthdr.len = m->m_len = GEM_RD_BUFLEN(rxstat); 1642 1643 if ((ifp->if_capenable & IFCAP_RXCSUM) != 0) 1644 gem_rxcksum(m, rxstat); 1645 1646 /* Pass it on. */ 1647 GEM_UNLOCK(sc); 1648 (*ifp->if_input)(ifp, m); 1649 GEM_LOCK(sc); 1650 } 1651 1652 #ifdef GEM_DEBUG 1653 CTR3(KTR_GEM, "%s: done sc->sc_rxptr %d, complete %d", __func__, 1654 sc->sc_rxptr, GEM_BANK1_READ_4(sc, GEM_RX_COMPLETION)); 1655 #endif 1656 } 1657 1658 static int 1659 gem_add_rxbuf(struct gem_softc *sc, int idx) 1660 { 1661 struct gem_rxsoft *rxs = &sc->sc_rxsoft[idx]; 1662 struct mbuf *m; 1663 bus_dma_segment_t segs[1]; 1664 int error, nsegs; 1665 1666 GEM_LOCK_ASSERT(sc, MA_OWNED); 1667 1668 m = m_getcl(M_DONTWAIT, MT_DATA, M_PKTHDR); 1669 if (m == NULL) 1670 return (ENOBUFS); 1671 m->m_len = m->m_pkthdr.len = m->m_ext.ext_size; 1672 1673 #ifdef GEM_DEBUG 1674 /* Bzero the packet to check DMA. */ 1675 memset(m->m_ext.ext_buf, 0, m->m_ext.ext_size); 1676 #endif 1677 1678 if (rxs->rxs_mbuf != NULL) { 1679 bus_dmamap_sync(sc->sc_rdmatag, rxs->rxs_dmamap, 1680 BUS_DMASYNC_POSTREAD); 1681 bus_dmamap_unload(sc->sc_rdmatag, rxs->rxs_dmamap); 1682 } 1683 1684 error = bus_dmamap_load_mbuf_sg(sc->sc_rdmatag, rxs->rxs_dmamap, 1685 m, segs, &nsegs, BUS_DMA_NOWAIT); 1686 if (error != 0) { 1687 device_printf(sc->sc_dev, 1688 "cannot load RS DMA map %d, error = %d\n", idx, error); 1689 m_freem(m); 1690 return (error); 1691 } 1692 /* If nsegs is wrong then the stack is corrupt. */ 1693 KASSERT(nsegs == 1, 1694 ("%s: too many DMA segments (%d)", __func__, nsegs)); 1695 rxs->rxs_mbuf = m; 1696 rxs->rxs_paddr = segs[0].ds_addr; 1697 1698 bus_dmamap_sync(sc->sc_rdmatag, rxs->rxs_dmamap, 1699 BUS_DMASYNC_PREREAD); 1700 1701 GEM_INIT_RXDESC(sc, idx); 1702 1703 return (0); 1704 } 1705 1706 static void 1707 gem_eint(struct gem_softc *sc, u_int status) 1708 { 1709 1710 sc->sc_ifp->if_ierrors++; 1711 if ((status & GEM_INTR_RX_TAG_ERR) != 0) { 1712 gem_reset_rxdma(sc); 1713 return; 1714 } 1715 1716 device_printf(sc->sc_dev, "%s: status 0x%x", __func__, status); 1717 if ((status & GEM_INTR_BERR) != 0) { 1718 if ((sc->sc_flags & GEM_PCI) != 0) 1719 printf(", PCI bus error 0x%x\n", 1720 GEM_BANK1_READ_4(sc, GEM_PCI_ERROR_STATUS)); 1721 else 1722 printf(", SBus error 0x%x\n", 1723 GEM_BANK1_READ_4(sc, GEM_SBUS_STATUS)); 1724 } 1725 } 1726 1727 void 1728 gem_intr(void *v) 1729 { 1730 struct gem_softc *sc = v; 1731 uint32_t status, status2; 1732 1733 GEM_LOCK(sc); 1734 status = GEM_BANK1_READ_4(sc, GEM_STATUS); 1735 1736 #ifdef GEM_DEBUG 1737 CTR4(KTR_GEM, "%s: %s: cplt %x, status %x", 1738 device_get_name(sc->sc_dev), __func__, 1739 (status >> GEM_STATUS_TX_COMPLETION_SHFT), (u_int)status); 1740 1741 /* 1742 * PCS interrupts must be cleared, otherwise no traffic is passed! 1743 */ 1744 if ((status & GEM_INTR_PCS) != 0) { 1745 status2 = 1746 GEM_BANK1_READ_4(sc, GEM_MII_INTERRUP_STATUS) | 1747 GEM_BANK1_READ_4(sc, GEM_MII_INTERRUP_STATUS); 1748 if ((status2 & GEM_MII_INTERRUP_LINK) != 0) 1749 device_printf(sc->sc_dev, 1750 "%s: PCS link status changed\n", __func__); 1751 } 1752 if ((status & GEM_MAC_CONTROL_STATUS) != 0) { 1753 status2 = GEM_BANK1_READ_4(sc, GEM_MAC_CONTROL_STATUS); 1754 if ((status2 & GEM_MAC_PAUSED) != 0) 1755 device_printf(sc->sc_dev, 1756 "%s: PAUSE received (PAUSE time %d slots)\n", 1757 __func__, GEM_MAC_PAUSE_TIME(status2)); 1758 if ((status2 & GEM_MAC_PAUSE) != 0) 1759 device_printf(sc->sc_dev, 1760 "%s: transited to PAUSE state\n", __func__); 1761 if ((status2 & GEM_MAC_RESUME) != 0) 1762 device_printf(sc->sc_dev, 1763 "%s: transited to non-PAUSE state\n", __func__); 1764 } 1765 if ((status & GEM_INTR_MIF) != 0) 1766 device_printf(sc->sc_dev, "%s: MIF interrupt\n", __func__); 1767 #endif 1768 1769 if (__predict_false(status & 1770 (GEM_INTR_RX_TAG_ERR | GEM_INTR_PERR | GEM_INTR_BERR)) != 0) 1771 gem_eint(sc, status); 1772 1773 if ((status & (GEM_INTR_RX_DONE | GEM_INTR_RX_NOBUF)) != 0) 1774 gem_rint(sc); 1775 1776 if ((status & (GEM_INTR_TX_EMPTY | GEM_INTR_TX_INTME)) != 0) 1777 gem_tint(sc); 1778 1779 if (__predict_false((status & GEM_INTR_TX_MAC) != 0)) { 1780 status2 = GEM_BANK1_READ_4(sc, GEM_MAC_TX_STATUS); 1781 if ((status2 & 1782 ~(GEM_MAC_TX_XMIT_DONE | GEM_MAC_TX_DEFER_EXP | 1783 GEM_MAC_TX_PEAK_EXP)) != 0) 1784 device_printf(sc->sc_dev, 1785 "MAC TX fault, status %x\n", status2); 1786 if ((status2 & 1787 (GEM_MAC_TX_UNDERRUN | GEM_MAC_TX_PKT_TOO_LONG)) != 0) { 1788 sc->sc_ifp->if_oerrors++; 1789 sc->sc_ifp->if_drv_flags &= ~IFF_DRV_RUNNING; 1790 gem_init_locked(sc); 1791 } 1792 } 1793 if (__predict_false((status & GEM_INTR_RX_MAC) != 0)) { 1794 status2 = GEM_BANK1_READ_4(sc, GEM_MAC_RX_STATUS); 1795 /* 1796 * At least with GEM_SUN_GEM and some GEM_SUN_ERI 1797 * revisions GEM_MAC_RX_OVERFLOW happen often due to a 1798 * silicon bug so handle them silently. Moreover, it's 1799 * likely that the receiver has hung so we reset it. 1800 */ 1801 if ((status2 & GEM_MAC_RX_OVERFLOW) != 0) { 1802 sc->sc_ifp->if_ierrors++; 1803 gem_reset_rxdma(sc); 1804 } else if ((status2 & 1805 ~(GEM_MAC_RX_DONE | GEM_MAC_RX_FRAME_CNT)) != 0) 1806 device_printf(sc->sc_dev, 1807 "MAC RX fault, status %x\n", status2); 1808 } 1809 GEM_UNLOCK(sc); 1810 } 1811 1812 static int 1813 gem_watchdog(struct gem_softc *sc) 1814 { 1815 struct ifnet *ifp = sc->sc_ifp; 1816 1817 GEM_LOCK_ASSERT(sc, MA_OWNED); 1818 1819 #ifdef GEM_DEBUG 1820 CTR4(KTR_GEM, 1821 "%s: GEM_RX_CONFIG %x GEM_MAC_RX_STATUS %x GEM_MAC_RX_CONFIG %x", 1822 __func__, GEM_BANK1_READ_4(sc, GEM_RX_CONFIG), 1823 GEM_BANK1_READ_4(sc, GEM_MAC_RX_STATUS), 1824 GEM_BANK1_READ_4(sc, GEM_MAC_RX_CONFIG)); 1825 CTR4(KTR_GEM, 1826 "%s: GEM_TX_CONFIG %x GEM_MAC_TX_STATUS %x GEM_MAC_TX_CONFIG %x", 1827 __func__, GEM_BANK1_READ_4(sc, GEM_TX_CONFIG), 1828 GEM_BANK1_READ_4(sc, GEM_MAC_TX_STATUS), 1829 GEM_BANK1_READ_4(sc, GEM_MAC_TX_CONFIG)); 1830 #endif 1831 1832 if (sc->sc_wdog_timer == 0 || --sc->sc_wdog_timer != 0) 1833 return (0); 1834 1835 if ((sc->sc_flags & GEM_LINK) != 0) 1836 device_printf(sc->sc_dev, "device timeout\n"); 1837 else if (bootverbose) 1838 device_printf(sc->sc_dev, "device timeout (no link)\n"); 1839 ++ifp->if_oerrors; 1840 1841 /* Try to get more packets going. */ 1842 ifp->if_drv_flags &= ~IFF_DRV_RUNNING; 1843 gem_init_locked(sc); 1844 gem_start_locked(ifp); 1845 return (EJUSTRETURN); 1846 } 1847 1848 static void 1849 gem_mifinit(struct gem_softc *sc) 1850 { 1851 1852 /* Configure the MIF in frame mode. */ 1853 GEM_BANK1_WRITE_4(sc, GEM_MIF_CONFIG, 1854 GEM_BANK1_READ_4(sc, GEM_MIF_CONFIG) & ~GEM_MIF_CONFIG_BB_ENA); 1855 GEM_BANK1_BARRIER(sc, GEM_MIF_CONFIG, 4, 1856 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE); 1857 } 1858 1859 /* 1860 * MII interface 1861 * 1862 * The MII interface supports at least three different operating modes: 1863 * 1864 * Bitbang mode is implemented using data, clock and output enable registers. 1865 * 1866 * Frame mode is implemented by loading a complete frame into the frame 1867 * register and polling the valid bit for completion. 1868 * 1869 * Polling mode uses the frame register but completion is indicated by 1870 * an interrupt. 1871 * 1872 */ 1873 int 1874 gem_mii_readreg(device_t dev, int phy, int reg) 1875 { 1876 struct gem_softc *sc; 1877 int n; 1878 uint32_t v; 1879 1880 #ifdef GEM_DEBUG_PHY 1881 printf("%s: phy %d reg %d\n", __func__, phy, reg); 1882 #endif 1883 1884 sc = device_get_softc(dev); 1885 if ((sc->sc_flags & GEM_SERDES) != 0) { 1886 switch (reg) { 1887 case MII_BMCR: 1888 reg = GEM_MII_CONTROL; 1889 break; 1890 case MII_BMSR: 1891 reg = GEM_MII_STATUS; 1892 break; 1893 case MII_PHYIDR1: 1894 case MII_PHYIDR2: 1895 return (0); 1896 case MII_ANAR: 1897 reg = GEM_MII_ANAR; 1898 break; 1899 case MII_ANLPAR: 1900 reg = GEM_MII_ANLPAR; 1901 break; 1902 case MII_EXTSR: 1903 return (EXTSR_1000XFDX | EXTSR_1000XHDX); 1904 default: 1905 device_printf(sc->sc_dev, 1906 "%s: unhandled register %d\n", __func__, reg); 1907 return (0); 1908 } 1909 return (GEM_BANK1_READ_4(sc, reg)); 1910 } 1911 1912 /* Construct the frame command. */ 1913 v = GEM_MIF_FRAME_READ | 1914 (phy << GEM_MIF_PHY_SHIFT) | 1915 (reg << GEM_MIF_REG_SHIFT); 1916 1917 GEM_BANK1_WRITE_4(sc, GEM_MIF_FRAME, v); 1918 GEM_BANK1_BARRIER(sc, GEM_MIF_FRAME, 4, 1919 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE); 1920 for (n = 0; n < 100; n++) { 1921 DELAY(1); 1922 v = GEM_BANK1_READ_4(sc, GEM_MIF_FRAME); 1923 if (v & GEM_MIF_FRAME_TA0) 1924 return (v & GEM_MIF_FRAME_DATA); 1925 } 1926 1927 device_printf(sc->sc_dev, "%s: timed out\n", __func__); 1928 return (0); 1929 } 1930 1931 int 1932 gem_mii_writereg(device_t dev, int phy, int reg, int val) 1933 { 1934 struct gem_softc *sc; 1935 int n; 1936 uint32_t v; 1937 1938 #ifdef GEM_DEBUG_PHY 1939 printf("%s: phy %d reg %d val %x\n", phy, reg, val, __func__); 1940 #endif 1941 1942 sc = device_get_softc(dev); 1943 if ((sc->sc_flags & GEM_SERDES) != 0) { 1944 switch (reg) { 1945 case MII_BMSR: 1946 reg = GEM_MII_STATUS; 1947 break; 1948 case MII_BMCR: 1949 reg = GEM_MII_CONTROL; 1950 if ((val & GEM_MII_CONTROL_RESET) == 0) 1951 break; 1952 GEM_BANK1_WRITE_4(sc, GEM_MII_CONTROL, val); 1953 GEM_BANK1_BARRIER(sc, GEM_MII_CONTROL, 4, 1954 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE); 1955 if (!GEM_BANK1_BITWAIT(sc, GEM_MII_CONTROL, 1956 GEM_MII_CONTROL_RESET, 0)) 1957 device_printf(sc->sc_dev, 1958 "cannot reset PCS\n"); 1959 /* FALLTHROUGH */ 1960 case MII_ANAR: 1961 GEM_BANK1_WRITE_4(sc, GEM_MII_CONFIG, 0); 1962 GEM_BANK1_BARRIER(sc, GEM_MII_CONFIG, 4, 1963 BUS_SPACE_BARRIER_WRITE); 1964 GEM_BANK1_WRITE_4(sc, GEM_MII_ANAR, val); 1965 GEM_BANK1_BARRIER(sc, GEM_MII_ANAR, 4, 1966 BUS_SPACE_BARRIER_WRITE); 1967 GEM_BANK1_WRITE_4(sc, GEM_MII_SLINK_CONTROL, 1968 GEM_MII_SLINK_LOOPBACK | GEM_MII_SLINK_EN_SYNC_D); 1969 GEM_BANK1_BARRIER(sc, GEM_MII_SLINK_CONTROL, 4, 1970 BUS_SPACE_BARRIER_WRITE); 1971 GEM_BANK1_WRITE_4(sc, GEM_MII_CONFIG, 1972 GEM_MII_CONFIG_ENABLE); 1973 GEM_BANK1_BARRIER(sc, GEM_MII_CONFIG, 4, 1974 BUS_SPACE_BARRIER_WRITE); 1975 return (0); 1976 case MII_ANLPAR: 1977 reg = GEM_MII_ANLPAR; 1978 break; 1979 default: 1980 device_printf(sc->sc_dev, 1981 "%s: unhandled register %d\n", __func__, reg); 1982 return (0); 1983 } 1984 GEM_BANK1_WRITE_4(sc, reg, val); 1985 GEM_BANK1_BARRIER(sc, reg, 4, 1986 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE); 1987 return (0); 1988 } 1989 1990 /* Construct the frame command. */ 1991 v = GEM_MIF_FRAME_WRITE | 1992 (phy << GEM_MIF_PHY_SHIFT) | 1993 (reg << GEM_MIF_REG_SHIFT) | 1994 (val & GEM_MIF_FRAME_DATA); 1995 1996 GEM_BANK1_WRITE_4(sc, GEM_MIF_FRAME, v); 1997 GEM_BANK1_BARRIER(sc, GEM_MIF_FRAME, 4, 1998 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE); 1999 for (n = 0; n < 100; n++) { 2000 DELAY(1); 2001 v = GEM_BANK1_READ_4(sc, GEM_MIF_FRAME); 2002 if (v & GEM_MIF_FRAME_TA0) 2003 return (1); 2004 } 2005 2006 device_printf(sc->sc_dev, "%s: timed out\n", __func__); 2007 return (0); 2008 } 2009 2010 void 2011 gem_mii_statchg(device_t dev) 2012 { 2013 struct gem_softc *sc; 2014 int gigabit; 2015 uint32_t rxcfg, txcfg, v; 2016 2017 sc = device_get_softc(dev); 2018 2019 GEM_LOCK_ASSERT(sc, MA_OWNED); 2020 2021 #ifdef GEM_DEBUG 2022 if ((sc->sc_ifp->if_flags & IFF_DEBUG) != 0) 2023 device_printf(sc->sc_dev, "%s: status change\n", __func__); 2024 #endif 2025 2026 if ((sc->sc_mii->mii_media_status & IFM_ACTIVE) != 0 && 2027 IFM_SUBTYPE(sc->sc_mii->mii_media_active) != IFM_NONE) 2028 sc->sc_flags |= GEM_LINK; 2029 else 2030 sc->sc_flags &= ~GEM_LINK; 2031 2032 switch (IFM_SUBTYPE(sc->sc_mii->mii_media_active)) { 2033 case IFM_1000_SX: 2034 case IFM_1000_LX: 2035 case IFM_1000_CX: 2036 case IFM_1000_T: 2037 gigabit = 1; 2038 break; 2039 default: 2040 gigabit = 0; 2041 } 2042 2043 /* 2044 * The configuration done here corresponds to the steps F) and 2045 * G) and as far as enabling of RX and TX MAC goes also step H) 2046 * of the initialization sequence outlined in section 3.2.1 of 2047 * the GEM Gigabit Ethernet ASIC Specification. 2048 */ 2049 2050 rxcfg = sc->sc_mac_rxcfg; 2051 rxcfg &= ~GEM_MAC_RX_CARR_EXTEND; 2052 txcfg = GEM_MAC_TX_ENA_IPG0 | GEM_MAC_TX_NGU | GEM_MAC_TX_NGU_LIMIT; 2053 if ((IFM_OPTIONS(sc->sc_mii->mii_media_active) & IFM_FDX) != 0) 2054 txcfg |= GEM_MAC_TX_IGN_CARRIER | GEM_MAC_TX_IGN_COLLIS; 2055 else if (gigabit != 0) { 2056 rxcfg |= GEM_MAC_RX_CARR_EXTEND; 2057 txcfg |= GEM_MAC_TX_CARR_EXTEND; 2058 } 2059 (void)gem_disable_tx(sc); 2060 GEM_BANK1_WRITE_4(sc, GEM_MAC_TX_CONFIG, txcfg); 2061 (void)gem_disable_rx(sc); 2062 GEM_BANK1_WRITE_4(sc, GEM_MAC_RX_CONFIG, rxcfg); 2063 2064 v = GEM_BANK1_READ_4(sc, GEM_MAC_CONTROL_CONFIG) & 2065 ~(GEM_MAC_CC_RX_PAUSE | GEM_MAC_CC_TX_PAUSE); 2066 if ((IFM_OPTIONS(sc->sc_mii->mii_media_active) & 2067 IFM_ETH_RXPAUSE) != 0) 2068 v |= GEM_MAC_CC_RX_PAUSE; 2069 if ((IFM_OPTIONS(sc->sc_mii->mii_media_active) & 2070 IFM_ETH_TXPAUSE) != 0) 2071 v |= GEM_MAC_CC_TX_PAUSE; 2072 GEM_BANK1_WRITE_4(sc, GEM_MAC_CONTROL_CONFIG, v); 2073 2074 if ((IFM_OPTIONS(sc->sc_mii->mii_media_active) & IFM_FDX) == 0 && 2075 gigabit != 0) 2076 GEM_BANK1_WRITE_4(sc, GEM_MAC_SLOT_TIME, 2077 GEM_MAC_SLOT_TIME_CARR_EXTEND); 2078 else 2079 GEM_BANK1_WRITE_4(sc, GEM_MAC_SLOT_TIME, 2080 GEM_MAC_SLOT_TIME_NORMAL); 2081 2082 /* XIF Configuration */ 2083 v = GEM_MAC_XIF_LINK_LED; 2084 v |= GEM_MAC_XIF_TX_MII_ENA; 2085 if ((sc->sc_flags & GEM_SERDES) == 0) { 2086 if ((GEM_BANK1_READ_4(sc, GEM_MIF_CONFIG) & 2087 GEM_MIF_CONFIG_PHY_SEL) != 0) { 2088 /* External MII needs echo disable if half duplex. */ 2089 if ((IFM_OPTIONS(sc->sc_mii->mii_media_active) & 2090 IFM_FDX) == 0) 2091 v |= GEM_MAC_XIF_ECHO_DISABL; 2092 } else 2093 /* 2094 * Internal MII needs buffer enable. 2095 * XXX buffer enable makes only sense for an 2096 * external PHY. 2097 */ 2098 v |= GEM_MAC_XIF_MII_BUF_ENA; 2099 } 2100 if (gigabit != 0) 2101 v |= GEM_MAC_XIF_GMII_MODE; 2102 if ((IFM_OPTIONS(sc->sc_mii->mii_media_active) & IFM_FDX) != 0) 2103 v |= GEM_MAC_XIF_FDPLX_LED; 2104 GEM_BANK1_WRITE_4(sc, GEM_MAC_XIF_CONFIG, v); 2105 2106 sc->sc_mac_rxcfg = rxcfg; 2107 if ((sc->sc_ifp->if_drv_flags & IFF_DRV_RUNNING) != 0 && 2108 (sc->sc_flags & GEM_LINK) != 0) { 2109 GEM_BANK1_WRITE_4(sc, GEM_MAC_TX_CONFIG, 2110 txcfg | GEM_MAC_TX_ENABLE); 2111 GEM_BANK1_WRITE_4(sc, GEM_MAC_RX_CONFIG, 2112 rxcfg | GEM_MAC_RX_ENABLE); 2113 } 2114 } 2115 2116 int 2117 gem_mediachange(struct ifnet *ifp) 2118 { 2119 struct gem_softc *sc = ifp->if_softc; 2120 int error; 2121 2122 /* XXX add support for serial media. */ 2123 2124 GEM_LOCK(sc); 2125 error = mii_mediachg(sc->sc_mii); 2126 GEM_UNLOCK(sc); 2127 return (error); 2128 } 2129 2130 void 2131 gem_mediastatus(struct ifnet *ifp, struct ifmediareq *ifmr) 2132 { 2133 struct gem_softc *sc = ifp->if_softc; 2134 2135 GEM_LOCK(sc); 2136 if ((ifp->if_flags & IFF_UP) == 0) { 2137 GEM_UNLOCK(sc); 2138 return; 2139 } 2140 2141 mii_pollstat(sc->sc_mii); 2142 ifmr->ifm_active = sc->sc_mii->mii_media_active; 2143 ifmr->ifm_status = sc->sc_mii->mii_media_status; 2144 GEM_UNLOCK(sc); 2145 } 2146 2147 static int 2148 gem_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data) 2149 { 2150 struct gem_softc *sc = ifp->if_softc; 2151 struct ifreq *ifr = (struct ifreq *)data; 2152 int error; 2153 2154 error = 0; 2155 switch (cmd) { 2156 case SIOCSIFFLAGS: 2157 GEM_LOCK(sc); 2158 if ((ifp->if_flags & IFF_UP) != 0) { 2159 if ((ifp->if_drv_flags & IFF_DRV_RUNNING) != 0 && 2160 ((ifp->if_flags ^ sc->sc_ifflags) & 2161 (IFF_ALLMULTI | IFF_PROMISC)) != 0) 2162 gem_setladrf(sc); 2163 else 2164 gem_init_locked(sc); 2165 } else if ((ifp->if_drv_flags & IFF_DRV_RUNNING) != 0) 2166 gem_stop(ifp, 0); 2167 if ((ifp->if_flags & IFF_LINK0) != 0) 2168 sc->sc_csum_features |= CSUM_UDP; 2169 else 2170 sc->sc_csum_features &= ~CSUM_UDP; 2171 if ((ifp->if_capenable & IFCAP_TXCSUM) != 0) 2172 ifp->if_hwassist = sc->sc_csum_features; 2173 sc->sc_ifflags = ifp->if_flags; 2174 GEM_UNLOCK(sc); 2175 break; 2176 case SIOCADDMULTI: 2177 case SIOCDELMULTI: 2178 GEM_LOCK(sc); 2179 if ((ifp->if_drv_flags & IFF_DRV_RUNNING) != 0) 2180 gem_setladrf(sc); 2181 GEM_UNLOCK(sc); 2182 break; 2183 case SIOCGIFMEDIA: 2184 case SIOCSIFMEDIA: 2185 error = ifmedia_ioctl(ifp, ifr, &sc->sc_mii->mii_media, cmd); 2186 break; 2187 case SIOCSIFCAP: 2188 GEM_LOCK(sc); 2189 ifp->if_capenable = ifr->ifr_reqcap; 2190 if ((ifp->if_capenable & IFCAP_TXCSUM) != 0) 2191 ifp->if_hwassist = sc->sc_csum_features; 2192 else 2193 ifp->if_hwassist = 0; 2194 GEM_UNLOCK(sc); 2195 break; 2196 default: 2197 error = ether_ioctl(ifp, cmd, data); 2198 break; 2199 } 2200 2201 return (error); 2202 } 2203 2204 static void 2205 gem_setladrf(struct gem_softc *sc) 2206 { 2207 struct ifnet *ifp = sc->sc_ifp; 2208 struct ifmultiaddr *inm; 2209 int i; 2210 uint32_t hash[16]; 2211 uint32_t crc, v; 2212 2213 GEM_LOCK_ASSERT(sc, MA_OWNED); 2214 2215 /* 2216 * Turn off the RX MAC and the hash filter as required by the Sun GEM 2217 * programming restrictions. 2218 */ 2219 v = sc->sc_mac_rxcfg & ~GEM_MAC_RX_HASH_FILTER; 2220 GEM_BANK1_WRITE_4(sc, GEM_MAC_RX_CONFIG, v); 2221 GEM_BANK1_BARRIER(sc, GEM_MAC_RX_CONFIG, 4, 2222 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE); 2223 if (!GEM_BANK1_BITWAIT(sc, GEM_MAC_RX_CONFIG, GEM_MAC_RX_HASH_FILTER | 2224 GEM_MAC_RX_ENABLE, 0)) 2225 device_printf(sc->sc_dev, 2226 "cannot disable RX MAC or hash filter\n"); 2227 2228 v &= ~(GEM_MAC_RX_PROMISCUOUS | GEM_MAC_RX_PROMISC_GRP); 2229 if ((ifp->if_flags & IFF_PROMISC) != 0) { 2230 v |= GEM_MAC_RX_PROMISCUOUS; 2231 goto chipit; 2232 } 2233 if ((ifp->if_flags & IFF_ALLMULTI) != 0) { 2234 v |= GEM_MAC_RX_PROMISC_GRP; 2235 goto chipit; 2236 } 2237 2238 /* 2239 * Set up multicast address filter by passing all multicast 2240 * addresses through a crc generator, and then using the high 2241 * order 8 bits as an index into the 256 bit logical address 2242 * filter. The high order 4 bits selects the word, while the 2243 * other 4 bits select the bit within the word (where bit 0 2244 * is the MSB). 2245 */ 2246 2247 /* Clear the hash table. */ 2248 memset(hash, 0, sizeof(hash)); 2249 2250 if_maddr_rlock(ifp); 2251 TAILQ_FOREACH(inm, &ifp->if_multiaddrs, ifma_link) { 2252 if (inm->ifma_addr->sa_family != AF_LINK) 2253 continue; 2254 crc = ether_crc32_le(LLADDR((struct sockaddr_dl *) 2255 inm->ifma_addr), ETHER_ADDR_LEN); 2256 2257 /* We just want the 8 most significant bits. */ 2258 crc >>= 24; 2259 2260 /* Set the corresponding bit in the filter. */ 2261 hash[crc >> 4] |= 1 << (15 - (crc & 15)); 2262 } 2263 if_maddr_runlock(ifp); 2264 2265 v |= GEM_MAC_RX_HASH_FILTER; 2266 2267 /* Now load the hash table into the chip (if we are using it). */ 2268 for (i = 0; i < 16; i++) 2269 GEM_BANK1_WRITE_4(sc, 2270 GEM_MAC_HASH0 + i * (GEM_MAC_HASH1 - GEM_MAC_HASH0), 2271 hash[i]); 2272 2273 chipit: 2274 sc->sc_mac_rxcfg = v; 2275 GEM_BANK1_WRITE_4(sc, GEM_MAC_RX_CONFIG, v | GEM_MAC_RX_ENABLE); 2276 } 2277