Deleted Added
sdiff udiff text old ( 50477 ) new ( 50675 )
full compact
1/*
2 * Copyright (c) 1997, 1998
3 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 15 unchanged lines hidden (view full) ---

24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 * $FreeBSD: head/sys/pci/if_wb.c 50477 1999-08-28 01:08:13Z peter $
33 */
34
35/*
36 * Winbond fast ethernet PCI NIC driver
37 *
38 * Supports various cheap network adapters based on the Winbond W89C840F
39 * fast ethernet controller chip. This includes adapters manufactured by
40 * Winbond itself and some made by Linksys.

--- 47 unchanged lines hidden (view full) ---

88
89#include <sys/param.h>
90#include <sys/systm.h>
91#include <sys/sockio.h>
92#include <sys/mbuf.h>
93#include <sys/malloc.h>
94#include <sys/kernel.h>
95#include <sys/socket.h>
96
97#include <net/if.h>
98#include <net/if_arp.h>
99#include <net/ethernet.h>
100#include <net/if_dl.h>
101#include <net/if_media.h>
102
103#if NBPF > 0

--- 12 unchanged lines hidden (view full) ---

116#include <machine/bus.h>
117#include <machine/resource.h>
118#include <sys/bus.h>
119#include <sys/rman.h>
120
121#include <pci/pcireg.h>
122#include <pci/pcivar.h>
123
124#define WB_USEIOSPACE
125
126/* #define WB_BACKGROUND_AUTONEG */
127
128#include <pci/if_wbreg.h>
129
130#ifndef lint
131static const char rcsid[] =
132 "$FreeBSD: head/sys/pci/if_wb.c 50477 1999-08-28 01:08:13Z peter $";
133#endif
134
135/*
136 * Various supported device vendors/types and their names.
137 */
138static struct wb_type wb_devs[] = {
139 { WB_VENDORID, WB_DEVICEID_840F,
140 "Winbond W89C840F 10/100BaseTX" },
141 { CP_VENDORID, CP_DEVICEID_RL100,
142 "Compex RL100-ATX 10/100baseTX" },
143 { 0, 0, NULL }
144};
145
146/*
147 * Various supported PHY vendors/types and their names. Note that
148 * this driver will work with pretty much any MII-compliant PHY,
149 * so failure to positively identify the chip is not a fatal error.
150 */
151
152static struct wb_type wb_phys[] = {
153 { TI_PHY_VENDORID, TI_PHY_10BT, "<TI ThunderLAN 10BT (internal)>" },
154 { TI_PHY_VENDORID, TI_PHY_100VGPMI, "<TI TNETE211 100VG Any-LAN>" },
155 { NS_PHY_VENDORID, NS_PHY_83840A, "<National Semiconductor DP83840A>"},
156 { LEVEL1_PHY_VENDORID, LEVEL1_PHY_LXT970, "<Level 1 LXT970>" },
157 { INTEL_PHY_VENDORID, INTEL_PHY_82555, "<Intel 82555>" },
158 { SEEQ_PHY_VENDORID, SEEQ_PHY_80220, "<SEEQ 80220>" },
159 { 0, 0, "<MII-compliant physical interface>" }
160};
161
162static int wb_probe __P((device_t));
163static int wb_attach __P((device_t));
164static int wb_detach __P((device_t));
165
166static int wb_newbuf __P((struct wb_softc *,
167 struct wb_chain_onefrag *,
168 struct mbuf *));
169static int wb_encap __P((struct wb_softc *, struct wb_chain *,
170 struct mbuf *));
171
172static void wb_rxeof __P((struct wb_softc *));
173static void wb_rxeoc __P((struct wb_softc *));
174static void wb_txeof __P((struct wb_softc *));
175static void wb_txeoc __P((struct wb_softc *));
176static void wb_intr __P((void *));
177static void wb_start __P((struct ifnet *));
178static int wb_ioctl __P((struct ifnet *, u_long, caddr_t));
179static void wb_init __P((void *));
180static void wb_stop __P((struct wb_softc *));
181static void wb_watchdog __P((struct ifnet *));
182static void wb_shutdown __P((device_t));
183static int wb_ifmedia_upd __P((struct ifnet *));
184static void wb_ifmedia_sts __P((struct ifnet *, struct ifmediareq *));
185
186static void wb_eeprom_putbyte __P((struct wb_softc *, int));
187static void wb_eeprom_getword __P((struct wb_softc *, int, u_int16_t *));
188static void wb_read_eeprom __P((struct wb_softc *, caddr_t, int,
189 int, int));
190static void wb_mii_sync __P((struct wb_softc *));
191static void wb_mii_send __P((struct wb_softc *, u_int32_t, int));
192static int wb_mii_readreg __P((struct wb_softc *, struct wb_mii_frame *));
193static int wb_mii_writereg __P((struct wb_softc *, struct wb_mii_frame *));
194static u_int16_t wb_phy_readreg __P((struct wb_softc *, int));
195static void wb_phy_writereg __P((struct wb_softc *, int, int));
196
197static void wb_autoneg_xmit __P((struct wb_softc *));
198static void wb_autoneg_mii __P((struct wb_softc *, int, int));
199static void wb_setmode_mii __P((struct wb_softc *, int));
200static void wb_getmode_mii __P((struct wb_softc *));
201static void wb_setcfg __P((struct wb_softc *, int));
202static u_int8_t wb_calchash __P((caddr_t));
203static void wb_setmulti __P((struct wb_softc *));
204static void wb_reset __P((struct wb_softc *));
205static int wb_list_rx_init __P((struct wb_softc *));
206static int wb_list_tx_init __P((struct wb_softc *));
207
208#ifdef WB_USEIOSPACE
209#define WB_RES SYS_RES_IOPORT
210#define WB_RID WB_PCI_LOIO
211#else
212#define WB_RES SYS_RES_MEMORY
213#define WB_RID WB_PCI_LOMEM
214#endif
215
216static device_method_t wb_methods[] = {
217 /* Device interface */
218 DEVMETHOD(device_probe, wb_probe),
219 DEVMETHOD(device_attach, wb_attach),
220 DEVMETHOD(device_detach, wb_detach),
221 DEVMETHOD(device_shutdown, wb_shutdown),
222 { 0, 0 }
223};
224
225static driver_t wb_driver = {
226 "wb",
227 wb_methods,
228 sizeof(struct wb_softc)
229};
230
231static devclass_t wb_devclass;
232
233DRIVER_MODULE(wb, pci, wb_driver, wb_devclass, 0, 0);
234
235#define WB_SETBIT(sc, reg, x) \
236 CSR_WRITE_4(sc, reg, \
237 CSR_READ_4(sc, reg) | x)
238
239#define WB_CLRBIT(sc, reg, x) \
240 CSR_WRITE_4(sc, reg, \
241 CSR_READ_4(sc, reg) & ~x)

--- 287 unchanged lines hidden (view full) ---

529 */
530 SIO_CLR(WB_SIO_MII_DIR);
531
532 splx(s);
533
534 return(0);
535}
536
537static u_int16_t wb_phy_readreg(sc, reg)
538 struct wb_softc *sc;
539 int reg;
540{
541 struct wb_mii_frame frame;
542
543 bzero((char *)&frame, sizeof(frame));
544
545 frame.mii_phyaddr = sc->wb_phy_addr;
546 frame.mii_regaddr = reg;
547 wb_mii_readreg(sc, &frame);
548
549 return(frame.mii_data);
550}
551
552static void wb_phy_writereg(sc, reg, data)
553 struct wb_softc *sc;
554 int reg;
555 int data;
556{
557 struct wb_mii_frame frame;
558
559 bzero((char *)&frame, sizeof(frame));
560
561 frame.mii_phyaddr = sc->wb_phy_addr;
562 frame.mii_regaddr = reg;
563 frame.mii_data = data;
564
565 wb_mii_writereg(sc, &frame);
566
567 return;
568}
569
570static u_int8_t wb_calchash(addr)
571 caddr_t addr;
572{
573 u_int32_t crc, carry;
574 int i, j;

--- 73 unchanged lines hidden (view full) ---

648 CSR_WRITE_4(sc, WB_MAR0, hashes[0]);
649 CSR_WRITE_4(sc, WB_MAR1, hashes[1]);
650 CSR_WRITE_4(sc, WB_NETCFG, rxfilt);
651
652 return;
653}
654
655/*
656 * Initiate an autonegotiation session.
657 */
658static void wb_autoneg_xmit(sc)
659 struct wb_softc *sc;
660{
661 u_int16_t phy_sts;
662
663 wb_phy_writereg(sc, PHY_BMCR, PHY_BMCR_RESET);
664 DELAY(500);
665 while(wb_phy_readreg(sc, PHY_BMCR)
666 & PHY_BMCR_RESET);
667
668 phy_sts = wb_phy_readreg(sc, PHY_BMCR);
669 phy_sts |= PHY_BMCR_AUTONEGENBL|PHY_BMCR_AUTONEGRSTR;
670 wb_phy_writereg(sc, PHY_BMCR, phy_sts);
671
672 return;
673}
674
675/*
676 * Invoke autonegotiation on a PHY.
677 */
678static void wb_autoneg_mii(sc, flag, verbose)
679 struct wb_softc *sc;
680 int flag;
681 int verbose;
682{
683 u_int16_t phy_sts = 0, media, advert, ability;
684 struct ifnet *ifp;
685 struct ifmedia *ifm;
686
687 ifm = &sc->ifmedia;
688 ifp = &sc->arpcom.ac_if;
689
690 ifm->ifm_media = IFM_ETHER | IFM_AUTO;
691
692 /*
693 * The 100baseT4 PHY on the 3c905-T4 has the 'autoneg supported'
694 * bit cleared in the status register, but has the 'autoneg enabled'
695 * bit set in the control register. This is a contradiction, and
696 * I'm not sure how to handle it. If you want to force an attempt
697 * to autoneg for 100baseT4 PHYs, #define FORCE_AUTONEG_TFOUR
698 * and see what happens.
699 */
700#ifndef FORCE_AUTONEG_TFOUR
701 /*
702 * First, see if autoneg is supported. If not, there's
703 * no point in continuing.
704 */
705 phy_sts = wb_phy_readreg(sc, PHY_BMSR);
706 if (!(phy_sts & PHY_BMSR_CANAUTONEG)) {
707 if (verbose)
708 printf("wb%d: autonegotiation not supported\n",
709 sc->wb_unit);
710 ifm->ifm_media = IFM_ETHER|IFM_10_T|IFM_HDX;
711 return;
712 }
713#endif
714
715 switch (flag) {
716 case WB_FLAG_FORCEDELAY:
717 /*
718 * XXX Never use this option anywhere but in the probe
719 * routine: making the kernel stop dead in its tracks
720 * for three whole seconds after we've gone multi-user
721 * is really bad manners.
722 */
723 wb_autoneg_xmit(sc);
724 DELAY(5000000);
725 break;
726 case WB_FLAG_SCHEDDELAY:
727 /*
728 * Wait for the transmitter to go idle before starting
729 * an autoneg session, otherwise wb_start() may clobber
730 * our timeout, and we don't want to allow transmission
731 * during an autoneg session since that can screw it up.
732 */
733 if (sc->wb_cdata.wb_tx_head != NULL) {
734 sc->wb_want_auto = 1;
735 return;
736 }
737 wb_autoneg_xmit(sc);
738 ifp->if_timer = 5;
739 sc->wb_autoneg = 1;
740 sc->wb_want_auto = 0;
741 return;
742 break;
743 case WB_FLAG_DELAYTIMEO:
744 ifp->if_timer = 0;
745 sc->wb_autoneg = 0;
746 break;
747 default:
748 printf("wb%d: invalid autoneg flag: %d\n", sc->wb_unit, flag);
749 return;
750 }
751
752 if (wb_phy_readreg(sc, PHY_BMSR) & PHY_BMSR_AUTONEGCOMP) {
753 if (verbose)
754 printf("wb%d: autoneg complete, ", sc->wb_unit);
755 phy_sts = wb_phy_readreg(sc, PHY_BMSR);
756 } else {
757 if (verbose)
758 printf("wb%d: autoneg not complete, ", sc->wb_unit);
759 }
760
761 media = wb_phy_readreg(sc, PHY_BMCR);
762
763 /* Link is good. Report modes and set duplex mode. */
764 if (wb_phy_readreg(sc, PHY_BMSR) & PHY_BMSR_LINKSTAT) {
765 if (verbose)
766 printf("link status good ");
767 advert = wb_phy_readreg(sc, PHY_ANAR);
768 ability = wb_phy_readreg(sc, PHY_LPAR);
769
770 if (advert & PHY_ANAR_100BT4 && ability & PHY_ANAR_100BT4) {
771 ifm->ifm_media = IFM_ETHER|IFM_100_T4;
772 media |= PHY_BMCR_SPEEDSEL;
773 media &= ~PHY_BMCR_DUPLEX;
774 printf("(100baseT4)\n");
775 } else if (advert & PHY_ANAR_100BTXFULL &&
776 ability & PHY_ANAR_100BTXFULL) {
777 ifm->ifm_media = IFM_ETHER|IFM_100_TX|IFM_FDX;
778 media |= PHY_BMCR_SPEEDSEL;
779 media |= PHY_BMCR_DUPLEX;
780 printf("(full-duplex, 100Mbps)\n");
781 } else if (advert & PHY_ANAR_100BTXHALF &&
782 ability & PHY_ANAR_100BTXHALF) {
783 ifm->ifm_media = IFM_ETHER|IFM_100_TX|IFM_HDX;
784 media |= PHY_BMCR_SPEEDSEL;
785 media &= ~PHY_BMCR_DUPLEX;
786 printf("(half-duplex, 100Mbps)\n");
787 } else if (advert & PHY_ANAR_10BTFULL &&
788 ability & PHY_ANAR_10BTFULL) {
789 ifm->ifm_media = IFM_ETHER|IFM_10_T|IFM_FDX;
790 media &= ~PHY_BMCR_SPEEDSEL;
791 media |= PHY_BMCR_DUPLEX;
792 printf("(full-duplex, 10Mbps)\n");
793 } else /* if (advert & PHY_ANAR_10BTHALF &&
794 ability & PHY_ANAR_10BTHALF) */ {
795 ifm->ifm_media = IFM_ETHER|IFM_10_T|IFM_HDX;
796 media &= ~PHY_BMCR_SPEEDSEL;
797 media &= ~PHY_BMCR_DUPLEX;
798 printf("(half-duplex, 10Mbps)\n");
799 }
800
801 media &= ~PHY_BMCR_AUTONEGENBL;
802
803 /* Set ASIC's duplex mode to match the PHY. */
804 wb_setcfg(sc, media);
805 wb_phy_writereg(sc, PHY_BMCR, media);
806 } else {
807 if (verbose)
808 printf("no carrier\n");
809 }
810
811 wb_init(sc);
812
813 if (sc->wb_tx_pend) {
814 sc->wb_autoneg = 0;
815 sc->wb_tx_pend = 0;
816 wb_start(ifp);
817 }
818
819 return;
820}
821
822static void wb_getmode_mii(sc)
823 struct wb_softc *sc;
824{
825 u_int16_t bmsr;
826 struct ifnet *ifp;
827
828 ifp = &sc->arpcom.ac_if;
829
830 bmsr = wb_phy_readreg(sc, PHY_BMSR);
831 if (bootverbose)
832 printf("wb%d: PHY status word: %x\n", sc->wb_unit, bmsr);
833
834 /* fallback */
835 sc->ifmedia.ifm_media = IFM_ETHER|IFM_10_T|IFM_HDX;
836
837 if (bmsr & PHY_BMSR_10BTHALF) {
838 if (bootverbose)
839 printf("wb%d: 10Mbps half-duplex mode supported\n",
840 sc->wb_unit);
841 ifmedia_add(&sc->ifmedia,
842 IFM_ETHER|IFM_10_T|IFM_HDX, 0, NULL);
843 ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_10_T, 0, NULL);
844 }
845
846 if (bmsr & PHY_BMSR_10BTFULL) {
847 if (bootverbose)
848 printf("wb%d: 10Mbps full-duplex mode supported\n",
849 sc->wb_unit);
850 ifmedia_add(&sc->ifmedia,
851 IFM_ETHER|IFM_10_T|IFM_FDX, 0, NULL);
852 sc->ifmedia.ifm_media = IFM_ETHER|IFM_10_T|IFM_FDX;
853 }
854
855 if (bmsr & PHY_BMSR_100BTXHALF) {
856 if (bootverbose)
857 printf("wb%d: 100Mbps half-duplex mode supported\n",
858 sc->wb_unit);
859 ifp->if_baudrate = 100000000;
860 ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_100_TX, 0, NULL);
861 ifmedia_add(&sc->ifmedia,
862 IFM_ETHER|IFM_100_TX|IFM_HDX, 0, NULL);
863 sc->ifmedia.ifm_media = IFM_ETHER|IFM_100_TX|IFM_HDX;
864 }
865
866 if (bmsr & PHY_BMSR_100BTXFULL) {
867 if (bootverbose)
868 printf("wb%d: 100Mbps full-duplex mode supported\n",
869 sc->wb_unit);
870 ifp->if_baudrate = 100000000;
871 ifmedia_add(&sc->ifmedia,
872 IFM_ETHER|IFM_100_TX|IFM_FDX, 0, NULL);
873 sc->ifmedia.ifm_media = IFM_ETHER|IFM_100_TX|IFM_FDX;
874 }
875
876 /* Some also support 100BaseT4. */
877 if (bmsr & PHY_BMSR_100BT4) {
878 if (bootverbose)
879 printf("wb%d: 100baseT4 mode supported\n", sc->wb_unit);
880 ifp->if_baudrate = 100000000;
881 ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_100_T4, 0, NULL);
882 sc->ifmedia.ifm_media = IFM_ETHER|IFM_100_T4;
883#ifdef FORCE_AUTONEG_TFOUR
884 if (bootverbose)
885 printf("wb%d: forcing on autoneg support for BT4\n",
886 sc->wb_unit);
887 ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_AUTO, 0 NULL):
888 sc->ifmedia.ifm_media = IFM_ETHER|IFM_AUTO;
889#endif
890 }
891
892 if (bmsr & PHY_BMSR_CANAUTONEG) {
893 if (bootverbose)
894 printf("wb%d: autoneg supported\n", sc->wb_unit);
895 ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_AUTO, 0, NULL);
896 sc->ifmedia.ifm_media = IFM_ETHER|IFM_AUTO;
897 }
898
899 return;
900}
901
902/*
903 * Set speed and duplex mode.
904 */
905static void wb_setmode_mii(sc, media)
906 struct wb_softc *sc;
907 int media;
908{
909 u_int16_t bmcr;
910 struct ifnet *ifp;
911
912 ifp = &sc->arpcom.ac_if;
913
914 /*
915 * If an autoneg session is in progress, stop it.
916 */
917 if (sc->wb_autoneg) {
918 printf("wb%d: canceling autoneg session\n", sc->wb_unit);
919 ifp->if_timer = sc->wb_autoneg = sc->wb_want_auto = 0;
920 bmcr = wb_phy_readreg(sc, PHY_BMCR);
921 bmcr &= ~PHY_BMCR_AUTONEGENBL;
922 wb_phy_writereg(sc, PHY_BMCR, bmcr);
923 }
924
925 printf("wb%d: selecting MII, ", sc->wb_unit);
926
927 bmcr = wb_phy_readreg(sc, PHY_BMCR);
928
929 bmcr &= ~(PHY_BMCR_AUTONEGENBL|PHY_BMCR_SPEEDSEL|
930 PHY_BMCR_DUPLEX|PHY_BMCR_LOOPBK);
931
932 if (IFM_SUBTYPE(media) == IFM_100_T4) {
933 printf("100Mbps/T4, half-duplex\n");
934 bmcr |= PHY_BMCR_SPEEDSEL;
935 bmcr &= ~PHY_BMCR_DUPLEX;
936 }
937
938 if (IFM_SUBTYPE(media) == IFM_100_TX) {
939 printf("100Mbps, ");
940 bmcr |= PHY_BMCR_SPEEDSEL;
941 }
942
943 if (IFM_SUBTYPE(media) == IFM_10_T) {
944 printf("10Mbps, ");
945 bmcr &= ~PHY_BMCR_SPEEDSEL;
946 }
947
948 if ((media & IFM_GMASK) == IFM_FDX) {
949 printf("full duplex\n");
950 bmcr |= PHY_BMCR_DUPLEX;
951 } else {
952 printf("half duplex\n");
953 bmcr &= ~PHY_BMCR_DUPLEX;
954 }
955
956 wb_setcfg(sc, bmcr);
957 wb_phy_writereg(sc, PHY_BMCR, bmcr);
958
959 return;
960}
961
962/*
963 * The Winbond manual states that in order to fiddle with the
964 * 'full-duplex' and '100Mbps' bits in the netconfig register, we
965 * first have to put the transmit and/or receive logic in the idle state.
966 */
967static void wb_setcfg(sc, bmcr)
968 struct wb_softc *sc;
969 int bmcr;
970{
971 int i, restart = 0;
972
973 if (CSR_READ_4(sc, WB_NETCFG) & (WB_NETCFG_TX_ON|WB_NETCFG_RX_ON)) {
974 restart = 1;
975 WB_CLRBIT(sc, WB_NETCFG, (WB_NETCFG_TX_ON|WB_NETCFG_RX_ON));
976
977 for (i = 0; i < WB_TIMEOUT; i++) {
978 DELAY(10);
979 if ((CSR_READ_4(sc, WB_ISR) & WB_ISR_TX_IDLE) &&
980 (CSR_READ_4(sc, WB_ISR) & WB_ISR_RX_IDLE))
981 break;
982 }
983
984 if (i == WB_TIMEOUT)
985 printf("wb%d: failed to force tx and "
986 "rx to idle state\n", sc->wb_unit);
987 }
988
989 if (bmcr & PHY_BMCR_SPEEDSEL)
990 WB_SETBIT(sc, WB_NETCFG, WB_NETCFG_100MBPS);
991 else
992 WB_CLRBIT(sc, WB_NETCFG, WB_NETCFG_100MBPS);
993
994 if (bmcr & PHY_BMCR_DUPLEX)
995 WB_SETBIT(sc, WB_NETCFG, WB_NETCFG_FULLDUPLEX);
996 else
997 WB_CLRBIT(sc, WB_NETCFG, WB_NETCFG_FULLDUPLEX);
998
999 if (restart)
1000 WB_SETBIT(sc, WB_NETCFG, WB_NETCFG_TX_ON|WB_NETCFG_RX_ON);
1001
1002 return;
1003}
1004
1005static void wb_reset(sc)
1006 struct wb_softc *sc;
1007{
1008 register int i;
1009
1010 WB_SETBIT(sc, WB_BUSCTL, WB_BUSCTL_RESET);
1011
1012 for (i = 0; i < WB_TIMEOUT; i++) {
1013 DELAY(10);
1014 if (!(CSR_READ_4(sc, WB_BUSCTL) & WB_BUSCTL_RESET))
1015 break;
1016 }
1017 if (i == WB_TIMEOUT)
1018 printf("wb%d: reset never completed!\n", sc->wb_unit);
1019
1020 /* Wait a little while for the chip to get its brains in order. */
1021 DELAY(1000);
1022
1023 /* Reset the damn PHY too. */
1024 if (sc->wb_pinfo != NULL)
1025 wb_phy_writereg(sc, PHY_BMCR, PHY_BMCR_RESET);
1026
1027 return;
1028}
1029
1030/*
1031 * Probe for a Winbond chip. Check the PCI vendor and device
1032 * IDs against our list and return a device name if we find a match.
1033 */
1034static int wb_probe(dev)
1035 device_t dev;
1036{
1037 struct wb_type *t;

--- 14 unchanged lines hidden (view full) ---

1052
1053/*
1054 * Attach the interface. Allocate softc structures, do ifmedia
1055 * setup and ethernet/BPF attach.
1056 */
1057static int wb_attach(dev)
1058 device_t dev;
1059{
1060 int s, i;
1061 u_char eaddr[ETHER_ADDR_LEN];
1062 u_int32_t command;
1063 struct wb_softc *sc;
1064 struct ifnet *ifp;
1065 int media = IFM_ETHER|IFM_100_TX|IFM_FDX;
1066 unsigned int round;
1067 caddr_t roundptr;
1068 struct wb_type *p;
1069 u_int16_t phy_vid, phy_did, phy_sts;
1070 int unit, error = 0, rid;
1071
1072 s = splimp();
1073
1074 sc = device_get_softc(dev);
1075 unit = device_get_unit(dev);
1076 bzero(sc, sizeof(struct wb_softc));
1077
1078 /*
1079 * Handle power management nonsense.
1080 */
1081
1082 command = pci_read_config(dev, WB_PCI_CAPID, 4) & 0x000000FF;
1083 if (command == 0x01) {
1084

--- 70 unchanged lines hidden (view full) ---

1155 wb_intr, sc, &sc->wb_intrhand);
1156
1157 if (error) {
1158 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->wb_irq);
1159 bus_release_resource(dev, WB_RES, WB_RID, sc->wb_res);
1160 printf("wb%d: couldn't set up irq\n", unit);
1161 goto fail;
1162 }
1163
1164 /* Reset the adapter. */
1165 wb_reset(sc);
1166
1167 /*
1168 * Get station address from the EEPROM.
1169 */
1170 wb_read_eeprom(sc, (caddr_t)&eaddr, 0, 3, 0);
1171
1172 /*
1173 * A Winbond chip was detected. Inform the world.
1174 */
1175 printf("wb%d: Ethernet address: %6D\n", unit, eaddr, ":");
1176
1177 sc->wb_unit = unit;
1178 bcopy(eaddr, (char *)&sc->arpcom.ac_enaddr, ETHER_ADDR_LEN);
1179
1180 sc->wb_ldata_ptr = malloc(sizeof(struct wb_list_data) + 8,
1181 M_DEVBUF, M_NOWAIT);
1182 if (sc->wb_ldata_ptr == NULL) {
1183 printf("wb%d: no memory for list buffers!\n", unit);
1184 bus_teardown_intr(dev, sc->wb_irq, sc->wb_intrhand);
1185 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->wb_irq);
1186 bus_release_resource(dev, WB_RES, WB_RID, sc->wb_res);
1187 error = ENXIO;
1188 goto fail;
1189 }
1190
1191 sc->wb_ldata = (struct wb_list_data *)sc->wb_ldata_ptr;
1192 round = (uintptr_t)sc->wb_ldata_ptr & 0xF;
1193 roundptr = sc->wb_ldata_ptr;
1194 for (i = 0; i < 8; i++) {
1195 if (round % 8) {
1196 round++;
1197 roundptr++;
1198 } else
1199 break;
1200 }
1201 sc->wb_ldata = (struct wb_list_data *)roundptr;
1202 bzero(sc->wb_ldata, sizeof(struct wb_list_data));
1203
1204 ifp = &sc->arpcom.ac_if;
1205 ifp->if_softc = sc;
1206 ifp->if_unit = unit;
1207 ifp->if_name = "wb";
1208 ifp->if_mtu = ETHERMTU;
1209 ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
1210 ifp->if_ioctl = wb_ioctl;
1211 ifp->if_output = ether_output;
1212 ifp->if_start = wb_start;
1213 ifp->if_watchdog = wb_watchdog;
1214 ifp->if_init = wb_init;
1215 ifp->if_baudrate = 10000000;
1216 ifp->if_snd.ifq_maxlen = WB_TX_LIST_CNT - 1;
1217
1218 if (bootverbose)
1219 printf("wb%d: probing for a PHY\n", sc->wb_unit);
1220 for (i = WB_PHYADDR_MIN; i < WB_PHYADDR_MAX + 1; i++) {
1221 if (bootverbose)
1222 printf("wb%d: checking address: %d\n",
1223 sc->wb_unit, i);
1224 sc->wb_phy_addr = i;
1225 wb_phy_writereg(sc, PHY_BMCR, PHY_BMCR_RESET);
1226 DELAY(500);
1227 while(wb_phy_readreg(sc, PHY_BMCR)
1228 & PHY_BMCR_RESET);
1229 if ((phy_sts = wb_phy_readreg(sc, PHY_BMSR)))
1230 break;
1231 }
1232 if (phy_sts) {
1233 phy_vid = wb_phy_readreg(sc, PHY_VENID);
1234 phy_did = wb_phy_readreg(sc, PHY_DEVID);
1235 if (bootverbose)
1236 printf("wb%d: found PHY at address %d, ",
1237 sc->wb_unit, sc->wb_phy_addr);
1238 if (bootverbose)
1239 printf("vendor id: %x device id: %x\n",
1240 phy_vid, phy_did);
1241 p = wb_phys;
1242 while(p->wb_vid) {
1243 if (phy_vid == p->wb_vid &&
1244 (phy_did | 0x000F) == p->wb_did) {
1245 sc->wb_pinfo = p;
1246 break;
1247 }
1248 p++;
1249 }
1250 if (sc->wb_pinfo == NULL)
1251 sc->wb_pinfo = &wb_phys[PHY_UNKNOWN];
1252 if (bootverbose)
1253 printf("wb%d: PHY type: %s\n",
1254 sc->wb_unit, sc->wb_pinfo->wb_name);
1255 } else {
1256 printf("wb%d: MII without any phy!\n", sc->wb_unit);
1257 bus_teardown_intr(dev, sc->wb_irq, sc->wb_intrhand);
1258 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->wb_irq);
1259 bus_release_resource(dev, WB_RES, WB_RID, sc->wb_res);
1260 free(sc->wb_ldata_ptr, M_DEVBUF);
1261 error = ENXIO;
1262 goto fail;
1263 }
1264
1265 /*
1266 * Do ifmedia setup.
1267 */
1268 ifmedia_init(&sc->ifmedia, 0, wb_ifmedia_upd, wb_ifmedia_sts);
1269
1270 wb_getmode_mii(sc);
1271 if (cold) {
1272 wb_autoneg_mii(sc, WB_FLAG_FORCEDELAY, 1);
1273 wb_stop(sc);
1274 } else {
1275 wb_init(sc);
1276 wb_autoneg_mii(sc, WB_FLAG_SCHEDDELAY, 1);
1277 }
1278 media = sc->ifmedia.ifm_media;
1279
1280 ifmedia_set(&sc->ifmedia, media);
1281
1282 /*
1283 * Call MI attach routines.
1284 */
1285 if_attach(ifp);
1286 ether_ifattach(ifp);
1287
1288#if NBPF > 0
1289 bpfattach(ifp, DLT_EN10MB, sizeof(struct ether_header));
1290#endif
1291
1292fail:
1293 splx(s);
1294 return(error);
1295}
1296
1297static int wb_detach(dev)
1298 device_t dev;
1299{
1300 struct wb_softc *sc;
1301 struct ifnet *ifp;
1302 int s;
1303
1304 s = splimp();
1305
1306 sc = device_get_softc(dev);
1307 ifp = &sc->arpcom.ac_if;
1308
1309 wb_stop(sc);
1310 if_detach(ifp);
1311
1312 bus_teardown_intr(dev, sc->wb_irq, sc->wb_intrhand);
1313 bus_release_resource(dev, SYS_RES_IRQ, 0, sc->wb_irq);
1314 bus_release_resource(dev, WB_RES, WB_RID, sc->wb_res);
1315
1316 free(sc->wb_ldata_ptr, M_DEVBUF);
1317 ifmedia_removeall(&sc->ifmedia);
1318
1319 splx(s);
1320
1321 return(0);
1322}
1323
1324/*
1325 * Initialize the transmit descriptors.

--- 39 unchanged lines hidden (view full) ---

1365 int i;
1366
1367 cd = &sc->wb_cdata;
1368 ld = sc->wb_ldata;
1369
1370 for (i = 0; i < WB_RX_LIST_CNT; i++) {
1371 cd->wb_rx_chain[i].wb_ptr =
1372 (struct wb_desc *)&ld->wb_rx_list[i];
1373 if (wb_newbuf(sc, &cd->wb_rx_chain[i], NULL) == ENOBUFS)
1374 return(ENOBUFS);
1375 if (i == (WB_RX_LIST_CNT - 1)) {
1376 cd->wb_rx_chain[i].wb_nextdesc = &cd->wb_rx_chain[0];
1377 ld->wb_rx_list[i].wb_next =
1378 vtophys(&ld->wb_rx_list[0]);
1379 } else {
1380 cd->wb_rx_chain[i].wb_nextdesc =
1381 &cd->wb_rx_chain[i + 1];
1382 ld->wb_rx_list[i].wb_next =
1383 vtophys(&ld->wb_rx_list[i + 1]);
1384 }
1385 }
1386
1387 cd->wb_rx_head = &cd->wb_rx_chain[0];
1388
1389 return(0);
1390}
1391
1392/*
1393 * Initialize an RX descriptor and attach an MBUF cluster.
1394 */
1395static int wb_newbuf(sc, c, m)
1396 struct wb_softc *sc;
1397 struct wb_chain_onefrag *c;
1398 struct mbuf *m;
1399{
1400 struct mbuf *m_new = NULL;
1401
1402 if (m == NULL) {
1403 MGETHDR(m_new, M_DONTWAIT, MT_DATA);
1404 if (m_new == NULL) {
1405 printf("wb%d: no memory for rx "
1406 "list -- packet dropped!\n", sc->wb_unit);
1407 return(ENOBUFS);
1408 }
1409
1410 MCLGET(m_new, M_DONTWAIT);
1411 if (!(m_new->m_flags & M_EXT)) {
1412 printf("wb%d: no memory for rx "
1413 "list -- packet dropped!\n", sc->wb_unit);
1414 m_freem(m_new);
1415 return(ENOBUFS);
1416 }
1417 m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
1418 } else {
1419 m_new = m;
1420 m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
1421 m_new->m_data = m_new->m_ext.ext_buf;
1422 }
1423
1424 m_adj(m_new, sizeof(u_int64_t));
1425
1426 c->wb_mbuf = m_new;
1427 c->wb_ptr->wb_data = vtophys(mtod(m_new, caddr_t));
1428 c->wb_ptr->wb_ctl = WB_RXCTL_RLINK | (MCLBYTES - 1);
1429 c->wb_ptr->wb_status = WB_RXSTAT;
1430
1431 return(0);
1432}
1433
1434/*
1435 * A frame has been uploaded: pass the resulting mbuf chain up to
1436 * the higher level protocols.
1437 */
1438static void wb_rxeof(sc)
1439 struct wb_softc *sc;
1440{
1441 struct ether_header *eh;
1442 struct mbuf *m;
1443 struct ifnet *ifp;
1444 struct wb_chain_onefrag *cur_rx;
1445 int total_len = 0;
1446 u_int32_t rxstat;
1447
1448 ifp = &sc->arpcom.ac_if;
1449
1450 while(!((rxstat = sc->wb_cdata.wb_rx_head->wb_ptr->wb_status) &
1451 WB_RXSTAT_OWN)) {
1452 struct mbuf *m0 = NULL;
1453
1454 cur_rx = sc->wb_cdata.wb_rx_head;
1455 sc->wb_cdata.wb_rx_head = cur_rx->wb_nextdesc;
1456 m = cur_rx->wb_mbuf;
1457
1458 if ((rxstat & WB_RXSTAT_MIIERR)
1459 || WB_RXBYTES(cur_rx->wb_ptr->wb_status) == 0) {
1460 ifp->if_ierrors++;
1461 wb_reset(sc);
1462 printf("wb%x: receiver babbling: possible chip "
1463 "bug, forcing reset\n", sc->wb_unit);
1464 ifp->if_flags |= IFF_OACTIVE;
1465 ifp->if_timer = 2;
1466 return;
1467 }
1468
1469 if (rxstat & WB_RXSTAT_RXERR) {
1470 ifp->if_ierrors++;
1471 wb_newbuf(sc, cur_rx, m);
1472 continue;
1473 }
1474
1475 /* No errors; receive the packet. */
1476 total_len = WB_RXBYTES(cur_rx->wb_ptr->wb_status);
1477
1478 /*
1479 * XXX The Winbond chip includes the CRC with every
1480 * received frame, and there's no way to turn this
1481 * behavior off (at least, I can't find anything in
1482 * the manual that explains how to do it) so we have
1483 * to trim off the CRC manually.
1484 */
1485 total_len -= ETHER_CRC_LEN;
1486
1487 m0 = m_devget(mtod(m, char *) - ETHER_ALIGN,
1488 total_len + ETHER_ALIGN, 0, ifp, NULL);
1489 wb_newbuf(sc, cur_rx, m);
1490 if (m0 == NULL) {
1491 ifp->if_ierrors++;
1492 continue;
1493 }
1494 m_adj(m0, ETHER_ALIGN);
1495 m = m0;
1496
1497 ifp->if_ipackets++;
1498 eh = mtod(m, struct ether_header *);
1499
1500#ifdef BRIDGE
1501 if (do_bridge) {
1502 struct ifnet *bdg_ifp;
1503 bdg_ifp = bridge_in(m);
1504 if (bdg_ifp != BDG_LOCAL && bdg_ifp != BDG_DROP)
1505 bdg_forward(&m, bdg_ifp);
1506 if (((bdg_ifp != BDG_LOCAL) && (bdg_ifp != BDG_BCAST) &&
1507 (bdg_ifp != BDG_MCAST)) || bdg_ifp == BDG_DROP) {
1508 m_freem(m);
1509 continue;
1510 }
1511 }
1512#endif
1513
1514#if NBPF > 0
1515 /*
1516 * Handle BPF listeners. Let the BPF user see the packet, but
1517 * don't pass it up to the ether_input() layer unless it's
1518 * a broadcast packet, multicast packet, matches our ethernet
1519 * address or the interface is in promiscuous mode.
1520 */
1521 if (ifp->if_bpf) {
1522 bpf_mtap(ifp, m);
1523 if (ifp->if_flags & IFF_PROMISC &&
1524 (bcmp(eh->ether_dhost, sc->arpcom.ac_enaddr,
1525 ETHER_ADDR_LEN) &&
1526 (eh->ether_dhost[0] & 1) == 0)) {
1527 m_freem(m);
1528 continue;
1529 }
1530 }
1531#endif
1532 /* Remove header from mbuf and pass it on. */
1533 m_adj(m, sizeof(struct ether_header));
1534 ether_input(ifp, eh, m);
1535 }
1536

--- 81 unchanged lines hidden (view full) ---

1618
1619 ifp = &sc->arpcom.ac_if;
1620
1621 ifp->if_timer = 0;
1622
1623 if (sc->wb_cdata.wb_tx_head == NULL) {
1624 ifp->if_flags &= ~IFF_OACTIVE;
1625 sc->wb_cdata.wb_tx_tail = NULL;
1626 if (sc->wb_want_auto)
1627 wb_autoneg_mii(sc, WB_FLAG_SCHEDDELAY, 1);
1628 } else {
1629 if (WB_TXOWN(sc->wb_cdata.wb_tx_head) == WB_UNSENT) {
1630 WB_TXOWN(sc->wb_cdata.wb_tx_head) = WB_TXSTAT_OWN;
1631 ifp->if_timer = 5;
1632 CSR_WRITE_4(sc, WB_TXSTART, 0xFFFFFFFF);
1633 }
1634 }
1635

--- 20 unchanged lines hidden (view full) ---

1656
1657 status = CSR_READ_4(sc, WB_ISR);
1658 if (status)
1659 CSR_WRITE_4(sc, WB_ISR, status);
1660
1661 if ((status & WB_INTRS) == 0)
1662 break;
1663
1664 if (status & WB_ISR_RX_OK)
1665 wb_rxeof(sc);
1666
1667 if (status & WB_ISR_RX_IDLE)
1668 wb_rxeoc(sc);
1669
1670 if ((status & WB_ISR_RX_NOBUF) || (status & WB_ISR_RX_ERR)) {
1671 ifp->if_ierrors++;
1672#ifdef foo
1673 wb_stop(sc);
1674 wb_reset(sc);
1675 wb_init(sc);
1676#endif
1677 }
1678
1679 if (status & WB_ISR_TX_OK)
1680 wb_txeof(sc);
1681
1682 if (status & WB_ISR_TX_NOBUF)
1683 wb_txeoc(sc);
1684
1685 if (status & WB_ISR_TX_IDLE) {
1686 wb_txeof(sc);

--- 26 unchanged lines hidden (view full) ---

1713
1714 if (ifp->if_snd.ifq_head != NULL) {
1715 wb_start(ifp);
1716 }
1717
1718 return;
1719}
1720
1721/*
1722 * Encapsulate an mbuf chain in a descriptor by coupling the mbuf data
1723 * pointers to the fragment pointers.
1724 */
1725static int wb_encap(sc, c, m_head)
1726 struct wb_softc *sc;
1727 struct wb_chain *c;
1728 struct mbuf *m_head;

--- 95 unchanged lines hidden (view full) ---

1824 struct ifnet *ifp;
1825{
1826 struct wb_softc *sc;
1827 struct mbuf *m_head = NULL;
1828 struct wb_chain *cur_tx = NULL, *start_tx;
1829
1830 sc = ifp->if_softc;
1831
1832 if (sc->wb_autoneg) {
1833 sc->wb_tx_pend = 1;
1834 return;
1835 }
1836
1837 /*
1838 * Check for an available queue slot. If there are none,
1839 * punt.
1840 */
1841 if (sc->wb_cdata.wb_tx_free->wb_mbuf != NULL) {
1842 ifp->if_flags |= IFF_OACTIVE;
1843 return;
1844 }

--- 71 unchanged lines hidden (view full) ---

1916}
1917
1918static void wb_init(xsc)
1919 void *xsc;
1920{
1921 struct wb_softc *sc = xsc;
1922 struct ifnet *ifp = &sc->arpcom.ac_if;
1923 int s, i;
1924 u_int16_t phy_bmcr = 0;
1925
1926 if (sc->wb_autoneg)
1927 return;
1928
1929 s = splimp();
1930
1931 if (sc->wb_pinfo != NULL)
1932 phy_bmcr = wb_phy_readreg(sc, PHY_BMCR);
1933
1934 /*
1935 * Cancel pending I/O and free all RX/TX buffers.
1936 */
1937 wb_stop(sc);
1938 wb_reset(sc);
1939
1940 sc->wb_txthresh = WB_TXTHRESH_INIT;
1941
1942 /*
1943 * Set cache alignment and burst length.
1944 */
1945 CSR_WRITE_4(sc, WB_BUSCTL, WB_BUSCTL_CONFIG);
1946 WB_CLRBIT(sc, WB_NETCFG, WB_NETCFG_TX_THRESH);
1947 WB_SETBIT(sc, WB_NETCFG, WB_TXTHRESH(sc->wb_txthresh));
1948
1949 /* This doesn't tend to work too well at 100Mbps. */
1950 WB_CLRBIT(sc, WB_NETCFG, WB_NETCFG_TX_EARLY_ON);
1951
1952 wb_setcfg(sc, phy_bmcr);
1953
1954 /* Init our MAC address */
1955 for (i = 0; i < ETHER_ADDR_LEN; i++) {
1956 CSR_WRITE_1(sc, WB_NODE0 + i, sc->arpcom.ac_enaddr[i]);
1957 }
1958
1959 /* Init circular RX list. */
1960 if (wb_list_rx_init(sc) == ENOBUFS) {
1961 printf("wb%d: initialization failed: no "

--- 42 unchanged lines hidden (view full) ---

2004 /* Enable receiver and transmitter. */
2005 WB_SETBIT(sc, WB_NETCFG, WB_NETCFG_RX_ON);
2006 CSR_WRITE_4(sc, WB_RXSTART, 0xFFFFFFFF);
2007
2008 WB_CLRBIT(sc, WB_NETCFG, WB_NETCFG_TX_ON);
2009 CSR_WRITE_4(sc, WB_TXADDR, vtophys(&sc->wb_ldata->wb_tx_list[0]));
2010 WB_SETBIT(sc, WB_NETCFG, WB_NETCFG_TX_ON);
2011
2012 /* Restore state of BMCR */
2013 if (sc->wb_pinfo != NULL)
2014 wb_phy_writereg(sc, PHY_BMCR, phy_bmcr);
2015
2016 ifp->if_flags |= IFF_RUNNING;
2017 ifp->if_flags &= ~IFF_OACTIVE;
2018
2019 (void)splx(s);
2020
2021 return;
2022}
2023
2024/*
2025 * Set media options.
2026 */
2027static int wb_ifmedia_upd(ifp)
2028 struct ifnet *ifp;
2029{
2030 struct wb_softc *sc;
2031 struct ifmedia *ifm;
2032
2033 sc = ifp->if_softc;
2034 ifm = &sc->ifmedia;
2035
2036 if (IFM_TYPE(ifm->ifm_media) != IFM_ETHER)
2037 return(EINVAL);
2038
2039 if (IFM_SUBTYPE(ifm->ifm_media) == IFM_AUTO)
2040 wb_autoneg_mii(sc, WB_FLAG_SCHEDDELAY, 1);
2041 else
2042 wb_setmode_mii(sc, ifm->ifm_media);
2043
2044 return(0);
2045}
2046
2047/*
2048 * Report current media status.
2049 */
2050static void wb_ifmedia_sts(ifp, ifmr)
2051 struct ifnet *ifp;
2052 struct ifmediareq *ifmr;
2053{
2054 struct wb_softc *sc;
2055 u_int16_t advert = 0, ability = 0;
2056
2057 sc = ifp->if_softc;
2058
2059 ifmr->ifm_active = IFM_ETHER;
2060
2061 if (!(wb_phy_readreg(sc, PHY_BMCR) & PHY_BMCR_AUTONEGENBL)) {
2062 if (wb_phy_readreg(sc, PHY_BMCR) & PHY_BMCR_SPEEDSEL)
2063 ifmr->ifm_active = IFM_ETHER|IFM_100_TX;
2064 else
2065 ifmr->ifm_active = IFM_ETHER|IFM_10_T;
2066 if (wb_phy_readreg(sc, PHY_BMCR) & PHY_BMCR_DUPLEX)
2067 ifmr->ifm_active |= IFM_FDX;
2068 else
2069 ifmr->ifm_active |= IFM_HDX;
2070 return;
2071 }
2072
2073 ability = wb_phy_readreg(sc, PHY_LPAR);
2074 advert = wb_phy_readreg(sc, PHY_ANAR);
2075 if (advert & PHY_ANAR_100BT4 &&
2076 ability & PHY_ANAR_100BT4) {
2077 ifmr->ifm_active = IFM_ETHER|IFM_100_T4;
2078 } else if (advert & PHY_ANAR_100BTXFULL &&
2079 ability & PHY_ANAR_100BTXFULL) {
2080 ifmr->ifm_active = IFM_ETHER|IFM_100_TX|IFM_FDX;
2081 } else if (advert & PHY_ANAR_100BTXHALF &&
2082 ability & PHY_ANAR_100BTXHALF) {
2083 ifmr->ifm_active = IFM_ETHER|IFM_100_TX|IFM_HDX;
2084 } else if (advert & PHY_ANAR_10BTFULL &&
2085 ability & PHY_ANAR_10BTFULL) {
2086 ifmr->ifm_active = IFM_ETHER|IFM_10_T|IFM_FDX;
2087 } else if (advert & PHY_ANAR_10BTHALF &&
2088 ability & PHY_ANAR_10BTHALF) {
2089 ifmr->ifm_active = IFM_ETHER|IFM_10_T|IFM_HDX;
2090 }
2091
2092 return;
2093}
2094
2095static int wb_ioctl(ifp, command, data)
2096 struct ifnet *ifp;
2097 u_long command;
2098 caddr_t data;
2099{
2100 struct wb_softc *sc = ifp->if_softc;
2101 struct ifreq *ifr = (struct ifreq *) data;
2102 int s, error = 0;
2103
2104 s = splimp();
2105
2106 switch(command) {
2107 case SIOCSIFADDR:
2108 case SIOCGIFADDR:

--- 11 unchanged lines hidden (view full) ---

2120 break;
2121 case SIOCADDMULTI:
2122 case SIOCDELMULTI:
2123 wb_setmulti(sc);
2124 error = 0;
2125 break;
2126 case SIOCGIFMEDIA:
2127 case SIOCSIFMEDIA:
2128 error = ifmedia_ioctl(ifp, ifr, &sc->ifmedia, command);
2129 break;
2130 default:
2131 error = EINVAL;
2132 break;
2133 }
2134
2135 (void)splx(s);
2136
2137 return(error);
2138}
2139
2140static void wb_watchdog(ifp)
2141 struct ifnet *ifp;
2142{
2143 struct wb_softc *sc;
2144
2145 sc = ifp->if_softc;
2146
2147 if (sc->wb_autoneg) {
2148 wb_autoneg_mii(sc, WB_FLAG_DELAYTIMEO, 1);
2149 if (!(ifp->if_flags & IFF_UP))
2150 wb_stop(sc);
2151 return;
2152 }
2153
2154 ifp->if_oerrors++;
2155 printf("wb%d: watchdog timeout\n", sc->wb_unit);
2156
2157 if (!(wb_phy_readreg(sc, PHY_BMSR) & PHY_BMSR_LINKSTAT))
2158 printf("wb%d: no carrier - transceiver cable problem?\n",
2159 sc->wb_unit);
2160
2161 wb_stop(sc);
2162 wb_reset(sc);
2163 wb_init(sc);
2164
2165 if (ifp->if_snd.ifq_head != NULL)
2166 wb_start(ifp);
2167
2168 return;

--- 7 unchanged lines hidden (view full) ---

2176 struct wb_softc *sc;
2177{
2178 register int i;
2179 struct ifnet *ifp;
2180
2181 ifp = &sc->arpcom.ac_if;
2182 ifp->if_timer = 0;
2183
2184 WB_CLRBIT(sc, WB_NETCFG, (WB_NETCFG_RX_ON|WB_NETCFG_TX_ON));
2185 CSR_WRITE_4(sc, WB_IMR, 0x00000000);
2186 CSR_WRITE_4(sc, WB_TXADDR, 0x00000000);
2187 CSR_WRITE_4(sc, WB_RXADDR, 0x00000000);
2188
2189 /*
2190 * Free data in the RX lists.
2191 */

--- 41 unchanged lines hidden ---