diff options
author | Mark Cave-Ayland | 2017-09-08 15:31:21 +0200 |
---|---|---|
committer | Mark Cave-Ayland | 2017-09-21 09:38:42 +0200 |
commit | c110425d166a6fbb60d87664d67bf2c39516fb22 (patch) | |
tree | 1fd1f2925ed864cb2c80ce4d64b52ff9056bcd1d /include/hw/net | |
parent | Merge remote-tracking branch 'remotes/gkurz/tags/for-upstream' into staging (diff) | |
download | qemu-c110425d166a6fbb60d87664d67bf2c39516fb22.tar.gz qemu-c110425d166a6fbb60d87664d67bf2c39516fb22.tar.xz qemu-c110425d166a6fbb60d87664d67bf2c39516fb22.zip |
net: add Sun HME (Happy Meal Ethernet) on-board NIC
Enable it by default for the sparc64-softmmu configuration.
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Acked-by: Artyom Tarasenko <atar4qemu@gmail.com>
Diffstat (limited to 'include/hw/net')
-rw-r--r-- | include/hw/net/mii.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/hw/net/mii.h b/include/hw/net/mii.h index 6ce48a6d78..4ae4dcce7e 100644 --- a/include/hw/net/mii.h +++ b/include/hw/net/mii.h @@ -104,6 +104,10 @@ #define RTL8211E_PHYID1 0x001c #define RTL8211E_PHYID2 0xc915 +/* National Semiconductor DP83840 */ +#define DP83840_PHYID1 0x2000 +#define DP83840_PHYID2 0x5c01 + /* National Semiconductor DP83848 */ #define DP83848_PHYID1 0x2000 #define DP83848_PHYID2 0x5c90 |