mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-27 11:55:06 +00:00
Add initial support for RTL8103E PCIe fastethernet.
PR: kern/142974
This commit is contained in:
parent
6c8d4b16d4
commit
8281a098c6
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=203082
@ -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;
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user