Author: yongari
Date: Mon Nov  4 06:00:12 2013
New Revision: 257618
URL: http://svnweb.freebsd.org/changeset/base/257618

Log:
  MFC r257306:
    Add preliminary support for RTL8168EP.

Modified:
  stable/9/sys/dev/re/if_re.c
  stable/9/sys/pci/if_rlreg.h
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/dev/   (props changed)

Modified: stable/9/sys/dev/re/if_re.c
==============================================================================
--- stable/9/sys/dev/re/if_re.c Mon Nov  4 05:58:59 2013        (r257617)
+++ stable/9/sys/dev/re/if_re.c Mon Nov  4 06:00:12 2013        (r257618)
@@ -233,6 +233,7 @@ static const struct rl_hwrev re_hwrevs[]
        { RL_HWREV_8168DP, RL_8169, "8168DP/8111DP", RL_JUMBO_MTU_9K },
        { RL_HWREV_8168E, RL_8169, "8168E/8111E", RL_JUMBO_MTU_9K},
        { RL_HWREV_8168E_VL, RL_8169, "8168E/8111E-VL", RL_JUMBO_MTU_6K},
+       { RL_HWREV_8168EP, RL_8169, "8168EP/8111EP", RL_JUMBO_MTU_9K},
        { RL_HWREV_8168F, RL_8169, "8168F/8111F", RL_JUMBO_MTU_9K},
        { RL_HWREV_8168G, RL_8169, "8168G/8111G", RL_JUMBO_MTU_9K},
        { RL_HWREV_8168GU, RL_8169, "8168GU/8111GU", RL_JUMBO_MTU_9K},
@@ -1461,6 +1462,7 @@ re_attach(device_t dev)
                    RL_FLAG_WOL_MANLINK;
                break;
        case RL_HWREV_8168E_VL:
+       case RL_HWREV_8168EP:
        case RL_HWREV_8168F:
        case RL_HWREV_8168G:
        case RL_HWREV_8411:

Modified: stable/9/sys/pci/if_rlreg.h
==============================================================================
--- stable/9/sys/pci/if_rlreg.h Mon Nov  4 05:58:59 2013        (r257617)
+++ stable/9/sys/pci/if_rlreg.h Mon Nov  4 06:00:12 2013        (r257618)
@@ -193,6 +193,7 @@
 #define        RL_HWREV_8168F          0x48000000
 #define        RL_HWREV_8411           0x48800000
 #define        RL_HWREV_8168G          0x4C000000
+#define        RL_HWREV_8168EP         0x50000000
 #define        RL_HWREV_8168GU         0x50800000
 #define        RL_HWREV_8411B          0x5C800000
 #define        RL_HWREV_8139           0x60000000
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-stable-9
To unsubscribe, send any mail to "[email protected]"

Reply via email to