mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 18:20:26 -05:00
re(4): Add support for 8168FP HW rev
(cherry picked from commit 88d2b69c719a20da9eb53f1c58adf6ecb005f8ce) Differential Revision: https://reviews.freebsd.org/D42671
This commit is contained in:
parent
a4d16707a8
commit
d0b589b231
2 changed files with 3 additions and 0 deletions
|
|
@ -243,6 +243,7 @@ static const struct rl_hwrev re_hwrevs[] = {
|
|||
{ 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_8168FP, RL_8169, "8168FP/8111FP", 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},
|
||||
{ RL_HWREV_8168H, RL_8169, "8168H/8111H", RL_JUMBO_MTU_9K},
|
||||
|
|
@ -1495,6 +1496,7 @@ re_attach(device_t dev)
|
|||
RL_FLAG_CMDSTOP_WAIT_TXQ | RL_FLAG_WOL_MANLINK;
|
||||
break;
|
||||
case RL_HWREV_8168EP:
|
||||
case RL_HWREV_8168FP:
|
||||
case RL_HWREV_8168G:
|
||||
case RL_HWREV_8411B:
|
||||
sc->rl_flags |= RL_FLAG_PHYWAKE | RL_FLAG_PAR |
|
||||
|
|
|
|||
|
|
@ -194,6 +194,7 @@
|
|||
#define RL_HWREV_8168EP 0x50000000
|
||||
#define RL_HWREV_8168GU 0x50800000
|
||||
#define RL_HWREV_8168H 0x54000000
|
||||
#define RL_HWREV_8168FP 0x54800000
|
||||
#define RL_HWREV_8411B 0x5C800000
|
||||
#define RL_HWREV_8139 0x60000000
|
||||
#define RL_HWREV_8139A 0x70000000
|
||||
|
|
|
|||
Loading…
Reference in a new issue