Author: yongari
Date: Mon Feb  1 23:57:42 2010
New Revision: 203364
URL: http://svn.freebsd.org/changeset/base/203364

Log:
  MFC r203082:
    Add initial support for RTL8103E PCIe fastethernet.
  
    PR: kern/142974

Modified:
  stable/8/sys/dev/re/if_re.c
  stable/8/sys/pci/if_rlreg.h
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/dev/re/if_re.c
==============================================================================
--- stable/8/sys/dev/re/if_re.c Mon Feb  1 23:32:43 2010        (r203363)
+++ stable/8/sys/dev/re/if_re.c Mon Feb  1 23:57:42 2010        (r203364)
@@ -172,7 +172,7 @@ static struct rl_type re_devs[] = {
        { RT_VENDORID, RT_DEVICEID_8139, 0,
            "RealTek 8139C+ 10/100BaseTX" },
        { RT_VENDORID, RT_DEVICEID_8101E, 0,
-           "RealTek 8101E/8102E/8102EL PCIe 10/100baseTX" },
+           "RealTek 8101E/8102E/8102EL/8103E PCIe 10/100baseTX" },
        { RT_VENDORID, RT_DEVICEID_8168, 0,
            "RealTek 8168/8168B/8168C/8168CP/8168D/8168DP/"
            "8111B/8111C/8111CP/8111DP PCIe Gigabit Ethernet" },
@@ -212,6 +212,7 @@ static struct rl_hwrev re_hwrevs[] = {
        { RL_HWREV_8102E, RL_8169, "8102E"},
        { RL_HWREV_8102EL, RL_8169, "8102EL"},
        { RL_HWREV_8102EL_SPIN1, RL_8169, "8102EL"},
+       { RL_HWREV_8103E, RL_8169, "8103E"},
        { RL_HWREV_8168_SPIN2, RL_8169, "8168"},
        { RL_HWREV_8168_SPIN3, RL_8169, "8168"},
        { RL_HWREV_8168C, RL_8169, "8168C/8111C"},
@@ -1268,6 +1269,12 @@ re_attach(device_t dev)
                    RL_FLAG_PAR | RL_FLAG_DESCV2 | RL_FLAG_MACSTAT |
                    RL_FLAG_FASTETHER | RL_FLAG_CMDSTOP | RL_FLAG_AUTOPAD;
                break;
+       case RL_HWREV_8103E:
+               sc->rl_flags |= RL_FLAG_NOJUMBO | RL_FLAG_PHYWAKE |
+                   RL_FLAG_PAR | RL_FLAG_DESCV2 | RL_FLAG_MACSTAT |
+                   RL_FLAG_FASTETHER | RL_FLAG_CMDSTOP | RL_FLAG_AUTOPAD |
+                   RL_FLAG_MACSLEEP;
+               break;
        case RL_HWREV_8168_SPIN1:
        case RL_HWREV_8168_SPIN2:
                sc->rl_flags |= RL_FLAG_WOLRXENB;

Modified: stable/8/sys/pci/if_rlreg.h
==============================================================================
--- stable/8/sys/pci/if_rlreg.h Mon Feb  1 23:32:43 2010        (r203363)
+++ stable/8/sys/pci/if_rlreg.h Mon Feb  1 23:57:42 2010        (r203364)
@@ -166,6 +166,7 @@
 #define RL_HWREV_8100E         0x30800000
 #define RL_HWREV_8101E         0x34000000
 #define RL_HWREV_8102E         0x34800000
+#define RL_HWREV_8103E         0x34C00000
 #define RL_HWREV_8168_SPIN2    0x38000000
 #define RL_HWREV_8168_SPIN3    0x38400000
 #define RL_HWREV_8168C         0x3C000000
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to