diff options
author | yongari <yongari@FreeBSD.org> | 2013-11-04 05:56:02 +0000 |
---|---|---|
committer | yongari <yongari@FreeBSD.org> | 2013-11-04 05:56:02 +0000 |
commit | a23f29cf609aad19c131c079deec7d25ac39dc64 (patch) | |
tree | 6d25315703f3fcfa5e5ac82e523bbcfd6aa12c29 /sys/pci | |
parent | 2d1cef2d8318a9a31c0c1a73707ecf3f043568e1 (diff) | |
download | FreeBSD-src-a23f29cf609aad19c131c079deec7d25ac39dc64.zip FreeBSD-src-a23f29cf609aad19c131c079deec7d25ac39dc64.tar.gz |
MFC r257305:
Add preliminary support for RTL8168G, RTL8168GU and RTL8411B.
RTL8168GU has two variants(GMII and MII) but it uses the same chip
revision id. Driver checks PCI device id of controller and
sets internal capability flag(i.e. jumbo frame and link speed down
in WOL).
Approved by: re (delphij)
Diffstat (limited to 'sys/pci')
-rw-r--r-- | sys/pci/if_rlreg.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/pci/if_rlreg.h b/sys/pci/if_rlreg.h index 142fe48..80de816 100644 --- a/sys/pci/if_rlreg.h +++ b/sys/pci/if_rlreg.h @@ -192,6 +192,9 @@ #define RL_HWREV_8106E 0x44800000 #define RL_HWREV_8168F 0x48000000 #define RL_HWREV_8411 0x48800000 +#define RL_HWREV_8168G 0x4C000000 +#define RL_HWREV_8168GU 0x50800000 +#define RL_HWREV_8411B 0x5C800000 #define RL_HWREV_8139 0x60000000 #define RL_HWREV_8139A 0x70000000 #define RL_HWREV_8139AG 0x70800000 |