xref: /qemu/hw/net/e1000.c (revision 9e11773417d98fd2ec961568ec2875063b95569b)
17c23b892Sbalrog /*
27c23b892Sbalrog  * QEMU e1000 emulation
37c23b892Sbalrog  *
42758aa52SMichael S. Tsirkin  * Software developer's manual:
52758aa52SMichael S. Tsirkin  * http://download.intel.com/design/network/manuals/8254x_GBe_SDM.pdf
62758aa52SMichael S. Tsirkin  *
77c23b892Sbalrog  * Nir Peleg, Tutis Systems Ltd. for Qumranet Inc.
87c23b892Sbalrog  * Copyright (c) 2008 Qumranet
97c23b892Sbalrog  * Based on work done by:
107c23b892Sbalrog  * Copyright (c) 2007 Dan Aloni
117c23b892Sbalrog  * Copyright (c) 2004 Antony T Curtis
127c23b892Sbalrog  *
137c23b892Sbalrog  * This library is free software; you can redistribute it and/or
147c23b892Sbalrog  * modify it under the terms of the GNU Lesser General Public
157c23b892Sbalrog  * License as published by the Free Software Foundation; either
167c23b892Sbalrog  * version 2 of the License, or (at your option) any later version.
177c23b892Sbalrog  *
187c23b892Sbalrog  * This library is distributed in the hope that it will be useful,
197c23b892Sbalrog  * but WITHOUT ANY WARRANTY; without even the implied warranty of
207c23b892Sbalrog  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
217c23b892Sbalrog  * Lesser General Public License for more details.
227c23b892Sbalrog  *
237c23b892Sbalrog  * You should have received a copy of the GNU Lesser General Public
248167ee88SBlue Swirl  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
257c23b892Sbalrog  */
267c23b892Sbalrog 
277c23b892Sbalrog 
2883c9f4caSPaolo Bonzini #include "hw/hw.h"
2983c9f4caSPaolo Bonzini #include "hw/pci/pci.h"
301422e32dSPaolo Bonzini #include "net/net.h"
317200ac3cSMark McLoughlin #include "net/checksum.h"
3283c9f4caSPaolo Bonzini #include "hw/loader.h"
339c17d615SPaolo Bonzini #include "sysemu/sysemu.h"
349c17d615SPaolo Bonzini #include "sysemu/dma.h"
3597410ddeSVincenzo Maffione #include "qemu/iov.h"
3620302e71SMichael S. Tsirkin #include "qemu/range.h"
377c23b892Sbalrog 
3847b43a1fSPaolo Bonzini #include "e1000_regs.h"
397c23b892Sbalrog 
4027124888SJes Sorensen #define E1000_DEBUG
417c23b892Sbalrog 
4227124888SJes Sorensen #ifdef E1000_DEBUG
437c23b892Sbalrog enum {
447c23b892Sbalrog     DEBUG_GENERAL,      DEBUG_IO,       DEBUG_MMIO,     DEBUG_INTERRUPT,
457c23b892Sbalrog     DEBUG_RX,           DEBUG_TX,       DEBUG_MDIC,     DEBUG_EEPROM,
467c23b892Sbalrog     DEBUG_UNKNOWN,      DEBUG_TXSUM,    DEBUG_TXERR,    DEBUG_RXERR,
47f9c1cdf4SJason Wang     DEBUG_RXFILTER,     DEBUG_PHY,      DEBUG_NOTYET,
487c23b892Sbalrog };
497c23b892Sbalrog #define DBGBIT(x)    (1<<DEBUG_##x)
507c23b892Sbalrog static int debugflags = DBGBIT(TXERR) | DBGBIT(GENERAL);
517c23b892Sbalrog 
526c7f4b47SBlue Swirl #define DBGOUT(what, fmt, ...) do { \
537c23b892Sbalrog     if (debugflags & DBGBIT(what)) \
546c7f4b47SBlue Swirl         fprintf(stderr, "e1000: " fmt, ## __VA_ARGS__); \
557c23b892Sbalrog     } while (0)
567c23b892Sbalrog #else
576c7f4b47SBlue Swirl #define DBGOUT(what, fmt, ...) do {} while (0)
587c23b892Sbalrog #endif
597c23b892Sbalrog 
607c23b892Sbalrog #define IOPORT_SIZE       0x40
61e94bbefeSaurel32 #define PNPMMIO_SIZE      0x20000
6278aeb23eSStefan Hajnoczi #define MIN_BUF_SIZE      60 /* Min. octets in an ethernet frame sans FCS */
637c23b892Sbalrog 
64b0d9ffcdSMichael Contreras /* this is the size past which hardware will drop packets when setting LPE=0 */
65b0d9ffcdSMichael Contreras #define MAXIMUM_ETHERNET_VLAN_SIZE 1522
662c0331f4SMichael Contreras /* this is the size past which hardware will drop packets when setting LPE=1 */
672c0331f4SMichael Contreras #define MAXIMUM_ETHERNET_LPE_SIZE 16384
68b0d9ffcdSMichael Contreras 
6997410ddeSVincenzo Maffione #define MAXIMUM_ETHERNET_HDR_LEN (14+4)
7097410ddeSVincenzo Maffione 
717c23b892Sbalrog /*
727c23b892Sbalrog  * HW models:
738597f2e1SGabriel L. Somlo  *  E1000_DEV_ID_82540EM works with Windows, Linux, and OS X <= 10.8
747c23b892Sbalrog  *  E1000_DEV_ID_82544GC_COPPER appears to work; not well tested
758597f2e1SGabriel L. Somlo  *  E1000_DEV_ID_82545EM_COPPER works with Linux and OS X >= 10.6
767c23b892Sbalrog  *  Others never tested
777c23b892Sbalrog  */
787c23b892Sbalrog 
797c23b892Sbalrog typedef struct E1000State_st {
80b08340d5SAndreas Färber     /*< private >*/
81b08340d5SAndreas Färber     PCIDevice parent_obj;
82b08340d5SAndreas Färber     /*< public >*/
83b08340d5SAndreas Färber 
84a03e2aecSMark McLoughlin     NICState *nic;
85fbdaa002SGerd Hoffmann     NICConf conf;
86ad00a9b9SAvi Kivity     MemoryRegion mmio;
87ad00a9b9SAvi Kivity     MemoryRegion io;
887c23b892Sbalrog 
897c23b892Sbalrog     uint32_t mac_reg[0x8000];
907c23b892Sbalrog     uint16_t phy_reg[0x20];
917c23b892Sbalrog     uint16_t eeprom_data[64];
927c23b892Sbalrog 
937c23b892Sbalrog     uint32_t rxbuf_size;
947c23b892Sbalrog     uint32_t rxbuf_min_shift;
957c23b892Sbalrog     struct e1000_tx {
967c23b892Sbalrog         unsigned char header[256];
978f2e8d1fSaliguori         unsigned char vlan_header[4];
98b10fec9bSStefan Weil         /* Fields vlan and data must not be reordered or separated. */
998f2e8d1fSaliguori         unsigned char vlan[4];
1007c23b892Sbalrog         unsigned char data[0x10000];
1017c23b892Sbalrog         uint16_t size;
1027c23b892Sbalrog         unsigned char sum_needed;
1038f2e8d1fSaliguori         unsigned char vlan_needed;
1047c23b892Sbalrog         uint8_t ipcss;
1057c23b892Sbalrog         uint8_t ipcso;
1067c23b892Sbalrog         uint16_t ipcse;
1077c23b892Sbalrog         uint8_t tucss;
1087c23b892Sbalrog         uint8_t tucso;
1097c23b892Sbalrog         uint16_t tucse;
1107c23b892Sbalrog         uint8_t hdr_len;
1117c23b892Sbalrog         uint16_t mss;
1127c23b892Sbalrog         uint32_t paylen;
1137c23b892Sbalrog         uint16_t tso_frames;
1147c23b892Sbalrog         char tse;
115b6c4f71fSblueswir1         int8_t ip;
116b6c4f71fSblueswir1         int8_t tcp;
1171b0009dbSbalrog         char cptse;     // current packet tse bit
1187c23b892Sbalrog     } tx;
1197c23b892Sbalrog 
1207c23b892Sbalrog     struct {
12120f3e863SLeonid Bloch         uint32_t val_in;    /* shifted in from guest driver */
1227c23b892Sbalrog         uint16_t bitnum_in;
1237c23b892Sbalrog         uint16_t bitnum_out;
1247c23b892Sbalrog         uint16_t reading;
1257c23b892Sbalrog         uint32_t old_eecd;
1267c23b892Sbalrog     } eecd_state;
127b9d03e35SJason Wang 
128b9d03e35SJason Wang     QEMUTimer *autoneg_timer;
1292af234e6SMichael S. Tsirkin 
130e9845f09SVincenzo Maffione     QEMUTimer *mit_timer;      /* Mitigation timer. */
131e9845f09SVincenzo Maffione     bool mit_timer_on;         /* Mitigation timer is running. */
132e9845f09SVincenzo Maffione     bool mit_irq_level;        /* Tracks interrupt pin level. */
133e9845f09SVincenzo Maffione     uint32_t mit_ide;          /* Tracks E1000_TXD_CMD_IDE bit. */
134e9845f09SVincenzo Maffione 
1352af234e6SMichael S. Tsirkin /* Compatibility flags for migration to/from qemu 1.3.0 and older */
1362af234e6SMichael S. Tsirkin #define E1000_FLAG_AUTONEG_BIT 0
137e9845f09SVincenzo Maffione #define E1000_FLAG_MIT_BIT 1
138*9e117734SLeonid Bloch #define E1000_FLAG_MAC_BIT 2
1392af234e6SMichael S. Tsirkin #define E1000_FLAG_AUTONEG (1 << E1000_FLAG_AUTONEG_BIT)
140e9845f09SVincenzo Maffione #define E1000_FLAG_MIT (1 << E1000_FLAG_MIT_BIT)
141*9e117734SLeonid Bloch #define E1000_FLAG_MAC (1 << E1000_FLAG_MAC_BIT)
1422af234e6SMichael S. Tsirkin     uint32_t compat_flags;
1437c23b892Sbalrog } E1000State;
1447c23b892Sbalrog 
1458597f2e1SGabriel L. Somlo typedef struct E1000BaseClass {
1468597f2e1SGabriel L. Somlo     PCIDeviceClass parent_class;
1478597f2e1SGabriel L. Somlo     uint16_t phy_id2;
1488597f2e1SGabriel L. Somlo } E1000BaseClass;
1498597f2e1SGabriel L. Somlo 
1508597f2e1SGabriel L. Somlo #define TYPE_E1000_BASE "e1000-base"
151567a3c9eSPeter Crosthwaite 
152567a3c9eSPeter Crosthwaite #define E1000(obj) \
1538597f2e1SGabriel L. Somlo     OBJECT_CHECK(E1000State, (obj), TYPE_E1000_BASE)
1548597f2e1SGabriel L. Somlo 
1558597f2e1SGabriel L. Somlo #define E1000_DEVICE_CLASS(klass) \
1568597f2e1SGabriel L. Somlo      OBJECT_CLASS_CHECK(E1000BaseClass, (klass), TYPE_E1000_BASE)
1578597f2e1SGabriel L. Somlo #define E1000_DEVICE_GET_CLASS(obj) \
1588597f2e1SGabriel L. Somlo     OBJECT_GET_CLASS(E1000BaseClass, (obj), TYPE_E1000_BASE)
159567a3c9eSPeter Crosthwaite 
1607c23b892Sbalrog #define defreg(x)    x = (E1000_##x>>2)
1617c23b892Sbalrog enum {
1627c23b892Sbalrog     defreg(CTRL),    defreg(EECD),    defreg(EERD),    defreg(GPRC),
1637c23b892Sbalrog     defreg(GPTC),    defreg(ICR),     defreg(ICS),     defreg(IMC),
1647c23b892Sbalrog     defreg(IMS),     defreg(LEDCTL),  defreg(MANC),    defreg(MDIC),
1657c23b892Sbalrog     defreg(MPC),     defreg(PBA),     defreg(RCTL),    defreg(RDBAH),
1667c23b892Sbalrog     defreg(RDBAL),   defreg(RDH),     defreg(RDLEN),   defreg(RDT),
1677c23b892Sbalrog     defreg(STATUS),  defreg(SWSM),    defreg(TCTL),    defreg(TDBAH),
1687c23b892Sbalrog     defreg(TDBAL),   defreg(TDH),     defreg(TDLEN),   defreg(TDT),
1697c23b892Sbalrog     defreg(TORH),    defreg(TORL),    defreg(TOTH),    defreg(TOTL),
1707c23b892Sbalrog     defreg(TPR),     defreg(TPT),     defreg(TXDCTL),  defreg(WUFC),
1718f2e8d1fSaliguori     defreg(RA),      defreg(MTA),     defreg(CRCERRS), defreg(VFTA),
172e9845f09SVincenzo Maffione     defreg(VET),     defreg(RDTR),    defreg(RADV),    defreg(TADV),
173e9845f09SVincenzo Maffione     defreg(ITR),
1747c23b892Sbalrog };
1757c23b892Sbalrog 
17671aadd3cSJason Wang static void
17771aadd3cSJason Wang e1000_link_down(E1000State *s)
17871aadd3cSJason Wang {
17971aadd3cSJason Wang     s->mac_reg[STATUS] &= ~E1000_STATUS_LU;
18071aadd3cSJason Wang     s->phy_reg[PHY_STATUS] &= ~MII_SR_LINK_STATUS;
1816a2acedbSGabriel L. Somlo     s->phy_reg[PHY_STATUS] &= ~MII_SR_AUTONEG_COMPLETE;
1826883b591SGabriel L. Somlo     s->phy_reg[PHY_LP_ABILITY] &= ~MII_LPAR_LPACK;
18371aadd3cSJason Wang }
18471aadd3cSJason Wang 
18571aadd3cSJason Wang static void
18671aadd3cSJason Wang e1000_link_up(E1000State *s)
18771aadd3cSJason Wang {
18871aadd3cSJason Wang     s->mac_reg[STATUS] |= E1000_STATUS_LU;
18971aadd3cSJason Wang     s->phy_reg[PHY_STATUS] |= MII_SR_LINK_STATUS;
1905df6a185SStefan Hajnoczi 
1915df6a185SStefan Hajnoczi     /* E1000_STATUS_LU is tested by e1000_can_receive() */
1925df6a185SStefan Hajnoczi     qemu_flush_queued_packets(qemu_get_queue(s->nic));
19371aadd3cSJason Wang }
19471aadd3cSJason Wang 
1951195fed9SGabriel L. Somlo static bool
1961195fed9SGabriel L. Somlo have_autoneg(E1000State *s)
1971195fed9SGabriel L. Somlo {
1981195fed9SGabriel L. Somlo     return (s->compat_flags & E1000_FLAG_AUTONEG) &&
1991195fed9SGabriel L. Somlo            (s->phy_reg[PHY_CTRL] & MII_CR_AUTO_NEG_EN);
2001195fed9SGabriel L. Somlo }
2011195fed9SGabriel L. Somlo 
202b9d03e35SJason Wang static void
203b9d03e35SJason Wang set_phy_ctrl(E1000State *s, int index, uint16_t val)
204b9d03e35SJason Wang {
2051195fed9SGabriel L. Somlo     /* bits 0-5 reserved; MII_CR_[RESTART_AUTO_NEG,RESET] are self clearing */
2061195fed9SGabriel L. Somlo     s->phy_reg[PHY_CTRL] = val & ~(0x3f |
2071195fed9SGabriel L. Somlo                                    MII_CR_RESET |
2081195fed9SGabriel L. Somlo                                    MII_CR_RESTART_AUTO_NEG);
2091195fed9SGabriel L. Somlo 
2102af234e6SMichael S. Tsirkin     /*
2112af234e6SMichael S. Tsirkin      * QEMU 1.3 does not support link auto-negotiation emulation, so if we
2122af234e6SMichael S. Tsirkin      * migrate during auto negotiation, after migration the link will be
2132af234e6SMichael S. Tsirkin      * down.
2142af234e6SMichael S. Tsirkin      */
2151195fed9SGabriel L. Somlo     if (have_autoneg(s) && (val & MII_CR_RESTART_AUTO_NEG)) {
216b9d03e35SJason Wang         e1000_link_down(s);
217b9d03e35SJason Wang         DBGOUT(PHY, "Start link auto negotiation\n");
2181195fed9SGabriel L. Somlo         timer_mod(s->autoneg_timer,
2191195fed9SGabriel L. Somlo                   qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) + 500);
220b9d03e35SJason Wang     }
221b9d03e35SJason Wang }
222b9d03e35SJason Wang 
223b9d03e35SJason Wang static void (*phyreg_writeops[])(E1000State *, int, uint16_t) = {
224b9d03e35SJason Wang     [PHY_CTRL] = set_phy_ctrl,
225b9d03e35SJason Wang };
226b9d03e35SJason Wang 
227b9d03e35SJason Wang enum { NPHYWRITEOPS = ARRAY_SIZE(phyreg_writeops) };
228b9d03e35SJason Wang 
2297c23b892Sbalrog enum { PHY_R = 1, PHY_W = 2, PHY_RW = PHY_R | PHY_W };
23088b4e9dbSblueswir1 static const char phy_regcap[0x20] = {
2317c23b892Sbalrog     [PHY_STATUS]      = PHY_R,     [M88E1000_EXT_PHY_SPEC_CTRL] = PHY_RW,
2327c23b892Sbalrog     [PHY_ID1]         = PHY_R,     [M88E1000_PHY_SPEC_CTRL]     = PHY_RW,
2337c23b892Sbalrog     [PHY_CTRL]        = PHY_RW,    [PHY_1000T_CTRL]             = PHY_RW,
2347c23b892Sbalrog     [PHY_LP_ABILITY]  = PHY_R,     [PHY_1000T_STATUS]           = PHY_R,
2357c23b892Sbalrog     [PHY_AUTONEG_ADV] = PHY_RW,    [M88E1000_RX_ERR_CNTR]       = PHY_R,
2366883b591SGabriel L. Somlo     [PHY_ID2]         = PHY_R,     [M88E1000_PHY_SPEC_STATUS]   = PHY_R,
2376883b591SGabriel L. Somlo     [PHY_AUTONEG_EXP] = PHY_R,
2387c23b892Sbalrog };
2397c23b892Sbalrog 
2408597f2e1SGabriel L. Somlo /* PHY_ID2 documented in 8254x_GBe_SDM.pdf, pp. 250 */
241814cd3acSMichael S. Tsirkin static const uint16_t phy_reg_init[] = {
2429616c290SGabriel L. Somlo     [PHY_CTRL]   = MII_CR_SPEED_SELECT_MSB |
2439616c290SGabriel L. Somlo                    MII_CR_FULL_DUPLEX |
2449616c290SGabriel L. Somlo                    MII_CR_AUTO_NEG_EN,
2459616c290SGabriel L. Somlo 
2469616c290SGabriel L. Somlo     [PHY_STATUS] = MII_SR_EXTENDED_CAPS |
2479616c290SGabriel L. Somlo                    MII_SR_LINK_STATUS |   /* link initially up */
2489616c290SGabriel L. Somlo                    MII_SR_AUTONEG_CAPS |
2499616c290SGabriel L. Somlo                    /* MII_SR_AUTONEG_COMPLETE: initially NOT completed */
2509616c290SGabriel L. Somlo                    MII_SR_PREAMBLE_SUPPRESS |
2519616c290SGabriel L. Somlo                    MII_SR_EXTENDED_STATUS |
2529616c290SGabriel L. Somlo                    MII_SR_10T_HD_CAPS |
2539616c290SGabriel L. Somlo                    MII_SR_10T_FD_CAPS |
2549616c290SGabriel L. Somlo                    MII_SR_100X_HD_CAPS |
2559616c290SGabriel L. Somlo                    MII_SR_100X_FD_CAPS,
2569616c290SGabriel L. Somlo 
2579616c290SGabriel L. Somlo     [PHY_ID1] = 0x141,
2589616c290SGabriel L. Somlo     /* [PHY_ID2] configured per DevId, from e1000_reset() */
2599616c290SGabriel L. Somlo     [PHY_AUTONEG_ADV] = 0xde1,
2609616c290SGabriel L. Somlo     [PHY_LP_ABILITY] = 0x1e0,
2619616c290SGabriel L. Somlo     [PHY_1000T_CTRL] = 0x0e00,
2629616c290SGabriel L. Somlo     [PHY_1000T_STATUS] = 0x3c00,
2639616c290SGabriel L. Somlo     [M88E1000_PHY_SPEC_CTRL] = 0x360,
264814cd3acSMichael S. Tsirkin     [M88E1000_PHY_SPEC_STATUS] = 0xac00,
2659616c290SGabriel L. Somlo     [M88E1000_EXT_PHY_SPEC_CTRL] = 0x0d60,
266814cd3acSMichael S. Tsirkin };
267814cd3acSMichael S. Tsirkin 
268814cd3acSMichael S. Tsirkin static const uint32_t mac_reg_init[] = {
269814cd3acSMichael S. Tsirkin     [PBA]     = 0x00100030,
270814cd3acSMichael S. Tsirkin     [LEDCTL]  = 0x602,
271814cd3acSMichael S. Tsirkin     [CTRL]    = E1000_CTRL_SWDPIN2 | E1000_CTRL_SWDPIN0 |
272814cd3acSMichael S. Tsirkin                 E1000_CTRL_SPD_1000 | E1000_CTRL_SLU,
273814cd3acSMichael S. Tsirkin     [STATUS]  = 0x80000000 | E1000_STATUS_GIO_MASTER_ENABLE |
274814cd3acSMichael S. Tsirkin                 E1000_STATUS_ASDV | E1000_STATUS_MTXCKOK |
275814cd3acSMichael S. Tsirkin                 E1000_STATUS_SPEED_1000 | E1000_STATUS_FD |
276814cd3acSMichael S. Tsirkin                 E1000_STATUS_LU,
277814cd3acSMichael S. Tsirkin     [MANC]    = E1000_MANC_EN_MNG2HOST | E1000_MANC_RCV_TCO_EN |
278814cd3acSMichael S. Tsirkin                 E1000_MANC_ARP_EN | E1000_MANC_0298_EN |
279814cd3acSMichael S. Tsirkin                 E1000_MANC_RMCP_EN,
280814cd3acSMichael S. Tsirkin };
281814cd3acSMichael S. Tsirkin 
282e9845f09SVincenzo Maffione /* Helper function, *curr == 0 means the value is not set */
283e9845f09SVincenzo Maffione static inline void
284e9845f09SVincenzo Maffione mit_update_delay(uint32_t *curr, uint32_t value)
285e9845f09SVincenzo Maffione {
286e9845f09SVincenzo Maffione     if (value && (*curr == 0 || value < *curr)) {
287e9845f09SVincenzo Maffione         *curr = value;
288e9845f09SVincenzo Maffione     }
289e9845f09SVincenzo Maffione }
290e9845f09SVincenzo Maffione 
2917c23b892Sbalrog static void
2927c23b892Sbalrog set_interrupt_cause(E1000State *s, int index, uint32_t val)
2937c23b892Sbalrog {
294b08340d5SAndreas Färber     PCIDevice *d = PCI_DEVICE(s);
295e9845f09SVincenzo Maffione     uint32_t pending_ints;
296e9845f09SVincenzo Maffione     uint32_t mit_delay;
297b08340d5SAndreas Färber 
2987c23b892Sbalrog     s->mac_reg[ICR] = val;
299a52a8841SMichael S. Tsirkin 
300a52a8841SMichael S. Tsirkin     /*
301a52a8841SMichael S. Tsirkin      * Make sure ICR and ICS registers have the same value.
302a52a8841SMichael S. Tsirkin      * The spec says that the ICS register is write-only.  However in practice,
303a52a8841SMichael S. Tsirkin      * on real hardware ICS is readable, and for reads it has the same value as
304a52a8841SMichael S. Tsirkin      * ICR (except that ICS does not have the clear on read behaviour of ICR).
305a52a8841SMichael S. Tsirkin      *
306a52a8841SMichael S. Tsirkin      * The VxWorks PRO/1000 driver uses this behaviour.
307a52a8841SMichael S. Tsirkin      */
308b1332393SBill Paul     s->mac_reg[ICS] = val;
309a52a8841SMichael S. Tsirkin 
310e9845f09SVincenzo Maffione     pending_ints = (s->mac_reg[IMS] & s->mac_reg[ICR]);
311e9845f09SVincenzo Maffione     if (!s->mit_irq_level && pending_ints) {
312e9845f09SVincenzo Maffione         /*
313e9845f09SVincenzo Maffione          * Here we detect a potential raising edge. We postpone raising the
314e9845f09SVincenzo Maffione          * interrupt line if we are inside the mitigation delay window
315e9845f09SVincenzo Maffione          * (s->mit_timer_on == 1).
316e9845f09SVincenzo Maffione          * We provide a partial implementation of interrupt mitigation,
317e9845f09SVincenzo Maffione          * emulating only RADV, TADV and ITR (lower 16 bits, 1024ns units for
318e9845f09SVincenzo Maffione          * RADV and TADV, 256ns units for ITR). RDTR is only used to enable
319e9845f09SVincenzo Maffione          * RADV; relative timers based on TIDV and RDTR are not implemented.
320e9845f09SVincenzo Maffione          */
321e9845f09SVincenzo Maffione         if (s->mit_timer_on) {
322e9845f09SVincenzo Maffione             return;
323e9845f09SVincenzo Maffione         }
324e9845f09SVincenzo Maffione         if (s->compat_flags & E1000_FLAG_MIT) {
325e9845f09SVincenzo Maffione             /* Compute the next mitigation delay according to pending
326e9845f09SVincenzo Maffione              * interrupts and the current values of RADV (provided
327e9845f09SVincenzo Maffione              * RDTR!=0), TADV and ITR.
328e9845f09SVincenzo Maffione              * Then rearm the timer.
329e9845f09SVincenzo Maffione              */
330e9845f09SVincenzo Maffione             mit_delay = 0;
331e9845f09SVincenzo Maffione             if (s->mit_ide &&
332e9845f09SVincenzo Maffione                     (pending_ints & (E1000_ICR_TXQE | E1000_ICR_TXDW))) {
333e9845f09SVincenzo Maffione                 mit_update_delay(&mit_delay, s->mac_reg[TADV] * 4);
334e9845f09SVincenzo Maffione             }
335e9845f09SVincenzo Maffione             if (s->mac_reg[RDTR] && (pending_ints & E1000_ICS_RXT0)) {
336e9845f09SVincenzo Maffione                 mit_update_delay(&mit_delay, s->mac_reg[RADV] * 4);
337e9845f09SVincenzo Maffione             }
338e9845f09SVincenzo Maffione             mit_update_delay(&mit_delay, s->mac_reg[ITR]);
339e9845f09SVincenzo Maffione 
340e9845f09SVincenzo Maffione             if (mit_delay) {
341e9845f09SVincenzo Maffione                 s->mit_timer_on = 1;
342e9845f09SVincenzo Maffione                 timer_mod(s->mit_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
343e9845f09SVincenzo Maffione                           mit_delay * 256);
344e9845f09SVincenzo Maffione             }
345e9845f09SVincenzo Maffione             s->mit_ide = 0;
346e9845f09SVincenzo Maffione         }
347e9845f09SVincenzo Maffione     }
348e9845f09SVincenzo Maffione 
349e9845f09SVincenzo Maffione     s->mit_irq_level = (pending_ints != 0);
3509e64f8a3SMarcel Apfelbaum     pci_set_irq(d, s->mit_irq_level);
351e9845f09SVincenzo Maffione }
352e9845f09SVincenzo Maffione 
353e9845f09SVincenzo Maffione static void
354e9845f09SVincenzo Maffione e1000_mit_timer(void *opaque)
355e9845f09SVincenzo Maffione {
356e9845f09SVincenzo Maffione     E1000State *s = opaque;
357e9845f09SVincenzo Maffione 
358e9845f09SVincenzo Maffione     s->mit_timer_on = 0;
359e9845f09SVincenzo Maffione     /* Call set_interrupt_cause to update the irq level (if necessary). */
360e9845f09SVincenzo Maffione     set_interrupt_cause(s, 0, s->mac_reg[ICR]);
3617c23b892Sbalrog }
3627c23b892Sbalrog 
3637c23b892Sbalrog static void
3647c23b892Sbalrog set_ics(E1000State *s, int index, uint32_t val)
3657c23b892Sbalrog {
3667c23b892Sbalrog     DBGOUT(INTERRUPT, "set_ics %x, ICR %x, IMR %x\n", val, s->mac_reg[ICR],
3677c23b892Sbalrog         s->mac_reg[IMS]);
3687c23b892Sbalrog     set_interrupt_cause(s, 0, val | s->mac_reg[ICR]);
3697c23b892Sbalrog }
3707c23b892Sbalrog 
371d52aec95SGabriel L. Somlo static void
372d52aec95SGabriel L. Somlo e1000_autoneg_timer(void *opaque)
373d52aec95SGabriel L. Somlo {
374d52aec95SGabriel L. Somlo     E1000State *s = opaque;
375d52aec95SGabriel L. Somlo     if (!qemu_get_queue(s->nic)->link_down) {
376d52aec95SGabriel L. Somlo         e1000_link_up(s);
377d52aec95SGabriel L. Somlo         s->phy_reg[PHY_LP_ABILITY] |= MII_LPAR_LPACK;
378d52aec95SGabriel L. Somlo         s->phy_reg[PHY_STATUS] |= MII_SR_AUTONEG_COMPLETE;
379d52aec95SGabriel L. Somlo         DBGOUT(PHY, "Auto negotiation is completed\n");
380d52aec95SGabriel L. Somlo         set_ics(s, 0, E1000_ICS_LSC); /* signal link status change to guest */
381d52aec95SGabriel L. Somlo     }
382d52aec95SGabriel L. Somlo }
383d52aec95SGabriel L. Somlo 
3847c23b892Sbalrog static int
3857c23b892Sbalrog rxbufsize(uint32_t v)
3867c23b892Sbalrog {
3877c23b892Sbalrog     v &= E1000_RCTL_BSEX | E1000_RCTL_SZ_16384 | E1000_RCTL_SZ_8192 |
3887c23b892Sbalrog          E1000_RCTL_SZ_4096 | E1000_RCTL_SZ_2048 | E1000_RCTL_SZ_1024 |
3897c23b892Sbalrog          E1000_RCTL_SZ_512 | E1000_RCTL_SZ_256;
3907c23b892Sbalrog     switch (v) {
3917c23b892Sbalrog     case E1000_RCTL_BSEX | E1000_RCTL_SZ_16384:
3927c23b892Sbalrog         return 16384;
3937c23b892Sbalrog     case E1000_RCTL_BSEX | E1000_RCTL_SZ_8192:
3947c23b892Sbalrog         return 8192;
3957c23b892Sbalrog     case E1000_RCTL_BSEX | E1000_RCTL_SZ_4096:
3967c23b892Sbalrog         return 4096;
3977c23b892Sbalrog     case E1000_RCTL_SZ_1024:
3987c23b892Sbalrog         return 1024;
3997c23b892Sbalrog     case E1000_RCTL_SZ_512:
4007c23b892Sbalrog         return 512;
4017c23b892Sbalrog     case E1000_RCTL_SZ_256:
4027c23b892Sbalrog         return 256;
4037c23b892Sbalrog     }
4047c23b892Sbalrog     return 2048;
4057c23b892Sbalrog }
4067c23b892Sbalrog 
407814cd3acSMichael S. Tsirkin static void e1000_reset(void *opaque)
408814cd3acSMichael S. Tsirkin {
409814cd3acSMichael S. Tsirkin     E1000State *d = opaque;
4108597f2e1SGabriel L. Somlo     E1000BaseClass *edc = E1000_DEVICE_GET_CLASS(d);
411372254c6SGabriel L. Somlo     uint8_t *macaddr = d->conf.macaddr.a;
412372254c6SGabriel L. Somlo     int i;
413814cd3acSMichael S. Tsirkin 
414bc72ad67SAlex Bligh     timer_del(d->autoneg_timer);
415e9845f09SVincenzo Maffione     timer_del(d->mit_timer);
416e9845f09SVincenzo Maffione     d->mit_timer_on = 0;
417e9845f09SVincenzo Maffione     d->mit_irq_level = 0;
418e9845f09SVincenzo Maffione     d->mit_ide = 0;
419814cd3acSMichael S. Tsirkin     memset(d->phy_reg, 0, sizeof d->phy_reg);
420814cd3acSMichael S. Tsirkin     memmove(d->phy_reg, phy_reg_init, sizeof phy_reg_init);
4218597f2e1SGabriel L. Somlo     d->phy_reg[PHY_ID2] = edc->phy_id2;
422814cd3acSMichael S. Tsirkin     memset(d->mac_reg, 0, sizeof d->mac_reg);
423814cd3acSMichael S. Tsirkin     memmove(d->mac_reg, mac_reg_init, sizeof mac_reg_init);
424814cd3acSMichael S. Tsirkin     d->rxbuf_min_shift = 1;
425814cd3acSMichael S. Tsirkin     memset(&d->tx, 0, sizeof d->tx);
426814cd3acSMichael S. Tsirkin 
427b356f76dSJason Wang     if (qemu_get_queue(d->nic)->link_down) {
42871aadd3cSJason Wang         e1000_link_down(d);
429814cd3acSMichael S. Tsirkin     }
430372254c6SGabriel L. Somlo 
431372254c6SGabriel L. Somlo     /* Some guests expect pre-initialized RAH/RAL (AddrValid flag + MACaddr) */
432372254c6SGabriel L. Somlo     d->mac_reg[RA] = 0;
433372254c6SGabriel L. Somlo     d->mac_reg[RA + 1] = E1000_RAH_AV;
434372254c6SGabriel L. Somlo     for (i = 0; i < 4; i++) {
435372254c6SGabriel L. Somlo         d->mac_reg[RA] |= macaddr[i] << (8 * i);
436372254c6SGabriel L. Somlo         d->mac_reg[RA + 1] |= (i < 2) ? macaddr[i + 4] << (8 * i) : 0;
437372254c6SGabriel L. Somlo     }
438655d3b63SAmos Kong     qemu_format_nic_info_str(qemu_get_queue(d->nic), macaddr);
439814cd3acSMichael S. Tsirkin }
440814cd3acSMichael S. Tsirkin 
4417c23b892Sbalrog static void
442cab3c825SKevin Wolf set_ctrl(E1000State *s, int index, uint32_t val)
443cab3c825SKevin Wolf {
444cab3c825SKevin Wolf     /* RST is self clearing */
445cab3c825SKevin Wolf     s->mac_reg[CTRL] = val & ~E1000_CTRL_RST;
446cab3c825SKevin Wolf }
447cab3c825SKevin Wolf 
448cab3c825SKevin Wolf static void
4497c23b892Sbalrog set_rx_control(E1000State *s, int index, uint32_t val)
4507c23b892Sbalrog {
4517c23b892Sbalrog     s->mac_reg[RCTL] = val;
4527c23b892Sbalrog     s->rxbuf_size = rxbufsize(val);
4537c23b892Sbalrog     s->rxbuf_min_shift = ((val / E1000_RCTL_RDMTS_QUAT) & 3) + 1;
4547c23b892Sbalrog     DBGOUT(RX, "RCTL: %d, mac_reg[RCTL] = 0x%x\n", s->mac_reg[RDT],
4557c23b892Sbalrog            s->mac_reg[RCTL]);
456b356f76dSJason Wang     qemu_flush_queued_packets(qemu_get_queue(s->nic));
4577c23b892Sbalrog }
4587c23b892Sbalrog 
4597c23b892Sbalrog static void
4607c23b892Sbalrog set_mdic(E1000State *s, int index, uint32_t val)
4617c23b892Sbalrog {
4627c23b892Sbalrog     uint32_t data = val & E1000_MDIC_DATA_MASK;
4637c23b892Sbalrog     uint32_t addr = ((val & E1000_MDIC_REG_MASK) >> E1000_MDIC_REG_SHIFT);
4647c23b892Sbalrog 
4657c23b892Sbalrog     if ((val & E1000_MDIC_PHY_MASK) >> E1000_MDIC_PHY_SHIFT != 1) // phy #
4667c23b892Sbalrog         val = s->mac_reg[MDIC] | E1000_MDIC_ERROR;
4677c23b892Sbalrog     else if (val & E1000_MDIC_OP_READ) {
4687c23b892Sbalrog         DBGOUT(MDIC, "MDIC read reg 0x%x\n", addr);
4697c23b892Sbalrog         if (!(phy_regcap[addr] & PHY_R)) {
4707c23b892Sbalrog             DBGOUT(MDIC, "MDIC read reg %x unhandled\n", addr);
4717c23b892Sbalrog             val |= E1000_MDIC_ERROR;
4727c23b892Sbalrog         } else
4737c23b892Sbalrog             val = (val ^ data) | s->phy_reg[addr];
4747c23b892Sbalrog     } else if (val & E1000_MDIC_OP_WRITE) {
4757c23b892Sbalrog         DBGOUT(MDIC, "MDIC write reg 0x%x, value 0x%x\n", addr, data);
4767c23b892Sbalrog         if (!(phy_regcap[addr] & PHY_W)) {
4777c23b892Sbalrog             DBGOUT(MDIC, "MDIC write reg %x unhandled\n", addr);
4787c23b892Sbalrog             val |= E1000_MDIC_ERROR;
479b9d03e35SJason Wang         } else {
480b9d03e35SJason Wang             if (addr < NPHYWRITEOPS && phyreg_writeops[addr]) {
481b9d03e35SJason Wang                 phyreg_writeops[addr](s, index, data);
4821195fed9SGabriel L. Somlo             } else {
4837c23b892Sbalrog                 s->phy_reg[addr] = data;
4847c23b892Sbalrog             }
485b9d03e35SJason Wang         }
4861195fed9SGabriel L. Somlo     }
4877c23b892Sbalrog     s->mac_reg[MDIC] = val | E1000_MDIC_READY;
48817fbbb0bSJason Wang 
48917fbbb0bSJason Wang     if (val & E1000_MDIC_INT_EN) {
4907c23b892Sbalrog         set_ics(s, 0, E1000_ICR_MDAC);
4917c23b892Sbalrog     }
49217fbbb0bSJason Wang }
4937c23b892Sbalrog 
4947c23b892Sbalrog static uint32_t
4957c23b892Sbalrog get_eecd(E1000State *s, int index)
4967c23b892Sbalrog {
4977c23b892Sbalrog     uint32_t ret = E1000_EECD_PRES|E1000_EECD_GNT | s->eecd_state.old_eecd;
4987c23b892Sbalrog 
4997c23b892Sbalrog     DBGOUT(EEPROM, "reading eeprom bit %d (reading %d)\n",
5007c23b892Sbalrog            s->eecd_state.bitnum_out, s->eecd_state.reading);
5017c23b892Sbalrog     if (!s->eecd_state.reading ||
5027c23b892Sbalrog         ((s->eeprom_data[(s->eecd_state.bitnum_out >> 4) & 0x3f] >>
5037c23b892Sbalrog           ((s->eecd_state.bitnum_out & 0xf) ^ 0xf))) & 1)
5047c23b892Sbalrog         ret |= E1000_EECD_DO;
5057c23b892Sbalrog     return ret;
5067c23b892Sbalrog }
5077c23b892Sbalrog 
5087c23b892Sbalrog static void
5097c23b892Sbalrog set_eecd(E1000State *s, int index, uint32_t val)
5107c23b892Sbalrog {
5117c23b892Sbalrog     uint32_t oldval = s->eecd_state.old_eecd;
5127c23b892Sbalrog 
5137c23b892Sbalrog     s->eecd_state.old_eecd = val & (E1000_EECD_SK | E1000_EECD_CS |
5147c23b892Sbalrog             E1000_EECD_DI|E1000_EECD_FWE_MASK|E1000_EECD_REQ);
51520f3e863SLeonid Bloch     if (!(E1000_EECD_CS & val)) {            /* CS inactive; nothing to do */
5169651ac55SIzumi Tsutsui         return;
51720f3e863SLeonid Bloch     }
51820f3e863SLeonid Bloch     if (E1000_EECD_CS & (val ^ oldval)) {    /* CS rise edge; reset state */
5199651ac55SIzumi Tsutsui         s->eecd_state.val_in = 0;
5209651ac55SIzumi Tsutsui         s->eecd_state.bitnum_in = 0;
5219651ac55SIzumi Tsutsui         s->eecd_state.bitnum_out = 0;
5229651ac55SIzumi Tsutsui         s->eecd_state.reading = 0;
5239651ac55SIzumi Tsutsui     }
52420f3e863SLeonid Bloch     if (!(E1000_EECD_SK & (val ^ oldval))) {    /* no clock edge */
5257c23b892Sbalrog         return;
52620f3e863SLeonid Bloch     }
52720f3e863SLeonid Bloch     if (!(E1000_EECD_SK & val)) {               /* falling edge */
5287c23b892Sbalrog         s->eecd_state.bitnum_out++;
5297c23b892Sbalrog         return;
5307c23b892Sbalrog     }
5317c23b892Sbalrog     s->eecd_state.val_in <<= 1;
5327c23b892Sbalrog     if (val & E1000_EECD_DI)
5337c23b892Sbalrog         s->eecd_state.val_in |= 1;
5347c23b892Sbalrog     if (++s->eecd_state.bitnum_in == 9 && !s->eecd_state.reading) {
5357c23b892Sbalrog         s->eecd_state.bitnum_out = ((s->eecd_state.val_in & 0x3f)<<4)-1;
5367c23b892Sbalrog         s->eecd_state.reading = (((s->eecd_state.val_in >> 6) & 7) ==
5377c23b892Sbalrog             EEPROM_READ_OPCODE_MICROWIRE);
5387c23b892Sbalrog     }
5397c23b892Sbalrog     DBGOUT(EEPROM, "eeprom bitnum in %d out %d, reading %d\n",
5407c23b892Sbalrog            s->eecd_state.bitnum_in, s->eecd_state.bitnum_out,
5417c23b892Sbalrog            s->eecd_state.reading);
5427c23b892Sbalrog }
5437c23b892Sbalrog 
5447c23b892Sbalrog static uint32_t
5457c23b892Sbalrog flash_eerd_read(E1000State *s, int x)
5467c23b892Sbalrog {
5477c23b892Sbalrog     unsigned int index, r = s->mac_reg[EERD] & ~E1000_EEPROM_RW_REG_START;
5487c23b892Sbalrog 
549b1332393SBill Paul     if ((s->mac_reg[EERD] & E1000_EEPROM_RW_REG_START) == 0)
550b1332393SBill Paul         return (s->mac_reg[EERD]);
551b1332393SBill Paul 
5527c23b892Sbalrog     if ((index = r >> E1000_EEPROM_RW_ADDR_SHIFT) > EEPROM_CHECKSUM_REG)
553b1332393SBill Paul         return (E1000_EEPROM_RW_REG_DONE | r);
554b1332393SBill Paul 
555b1332393SBill Paul     return ((s->eeprom_data[index] << E1000_EEPROM_RW_REG_DATA) |
556b1332393SBill Paul            E1000_EEPROM_RW_REG_DONE | r);
5577c23b892Sbalrog }
5587c23b892Sbalrog 
5597c23b892Sbalrog static void
5607c23b892Sbalrog putsum(uint8_t *data, uint32_t n, uint32_t sloc, uint32_t css, uint32_t cse)
5617c23b892Sbalrog {
562c6a6a5e3Saliguori     uint32_t sum;
563c6a6a5e3Saliguori 
5647c23b892Sbalrog     if (cse && cse < n)
5657c23b892Sbalrog         n = cse + 1;
566c6a6a5e3Saliguori     if (sloc < n-1) {
567c6a6a5e3Saliguori         sum = net_checksum_add(n-css, data+css);
568d8ee2591SPeter Maydell         stw_be_p(data + sloc, net_checksum_finish(sum));
569c6a6a5e3Saliguori     }
5707c23b892Sbalrog }
5717c23b892Sbalrog 
5728f2e8d1fSaliguori static inline int
5738f2e8d1fSaliguori vlan_enabled(E1000State *s)
5748f2e8d1fSaliguori {
5758f2e8d1fSaliguori     return ((s->mac_reg[CTRL] & E1000_CTRL_VME) != 0);
5768f2e8d1fSaliguori }
5778f2e8d1fSaliguori 
5788f2e8d1fSaliguori static inline int
5798f2e8d1fSaliguori vlan_rx_filter_enabled(E1000State *s)
5808f2e8d1fSaliguori {
5818f2e8d1fSaliguori     return ((s->mac_reg[RCTL] & E1000_RCTL_VFE) != 0);
5828f2e8d1fSaliguori }
5838f2e8d1fSaliguori 
5848f2e8d1fSaliguori static inline int
5858f2e8d1fSaliguori is_vlan_packet(E1000State *s, const uint8_t *buf)
5868f2e8d1fSaliguori {
5878f2e8d1fSaliguori     return (be16_to_cpup((uint16_t *)(buf + 12)) ==
5884e60a250SShannon Zhao                 le16_to_cpu(s->mac_reg[VET]));
5898f2e8d1fSaliguori }
5908f2e8d1fSaliguori 
5918f2e8d1fSaliguori static inline int
5928f2e8d1fSaliguori is_vlan_txd(uint32_t txd_lower)
5938f2e8d1fSaliguori {
5948f2e8d1fSaliguori     return ((txd_lower & E1000_TXD_CMD_VLE) != 0);
5958f2e8d1fSaliguori }
5968f2e8d1fSaliguori 
59755e8d1ceSMichael S. Tsirkin /* FCS aka Ethernet CRC-32. We don't get it from backends and can't
59855e8d1ceSMichael S. Tsirkin  * fill it in, just pad descriptor length by 4 bytes unless guest
599a05e8a6eSMichael S. Tsirkin  * told us to strip it off the packet. */
60055e8d1ceSMichael S. Tsirkin static inline int
60155e8d1ceSMichael S. Tsirkin fcs_len(E1000State *s)
60255e8d1ceSMichael S. Tsirkin {
60355e8d1ceSMichael S. Tsirkin     return (s->mac_reg[RCTL] & E1000_RCTL_SECRC) ? 0 : 4;
60455e8d1ceSMichael S. Tsirkin }
60555e8d1ceSMichael S. Tsirkin 
6067c23b892Sbalrog static void
60793e37d76SJason Wang e1000_send_packet(E1000State *s, const uint8_t *buf, int size)
60893e37d76SJason Wang {
609b356f76dSJason Wang     NetClientState *nc = qemu_get_queue(s->nic);
61093e37d76SJason Wang     if (s->phy_reg[PHY_CTRL] & MII_CR_LOOPBACK) {
611b356f76dSJason Wang         nc->info->receive(nc, buf, size);
61293e37d76SJason Wang     } else {
613b356f76dSJason Wang         qemu_send_packet(nc, buf, size);
61493e37d76SJason Wang     }
61593e37d76SJason Wang }
61693e37d76SJason Wang 
61793e37d76SJason Wang static void
6187c23b892Sbalrog xmit_seg(E1000State *s)
6197c23b892Sbalrog {
6207c23b892Sbalrog     uint16_t len, *sp;
6217c23b892Sbalrog     unsigned int frames = s->tx.tso_frames, css, sofar, n;
6227c23b892Sbalrog     struct e1000_tx *tp = &s->tx;
6237c23b892Sbalrog 
6241b0009dbSbalrog     if (tp->tse && tp->cptse) {
6257c23b892Sbalrog         css = tp->ipcss;
6267c23b892Sbalrog         DBGOUT(TXSUM, "frames %d size %d ipcss %d\n",
6277c23b892Sbalrog                frames, tp->size, css);
62820f3e863SLeonid Bloch         if (tp->ip) {    /* IPv4 */
629d8ee2591SPeter Maydell             stw_be_p(tp->data+css+2, tp->size - css);
630d8ee2591SPeter Maydell             stw_be_p(tp->data+css+4,
6317c23b892Sbalrog                      be16_to_cpup((uint16_t *)(tp->data+css+4))+frames);
63220f3e863SLeonid Bloch         } else {         /* IPv6 */
633d8ee2591SPeter Maydell             stw_be_p(tp->data+css+4, tp->size - css);
63420f3e863SLeonid Bloch         }
6357c23b892Sbalrog         css = tp->tucss;
6367c23b892Sbalrog         len = tp->size - css;
6377c23b892Sbalrog         DBGOUT(TXSUM, "tcp %d tucss %d len %d\n", tp->tcp, css, len);
6387c23b892Sbalrog         if (tp->tcp) {
6397c23b892Sbalrog             sofar = frames * tp->mss;
6406bd194abSPeter Maydell             stl_be_p(tp->data+css+4, ldl_be_p(tp->data+css+4)+sofar); /* seq */
6417c23b892Sbalrog             if (tp->paylen - sofar > tp->mss)
64220f3e863SLeonid Bloch                 tp->data[css + 13] &= ~9;    /* PSH, FIN */
64320f3e863SLeonid Bloch         } else    /* UDP */
644d8ee2591SPeter Maydell             stw_be_p(tp->data+css+4, len);
6457c23b892Sbalrog         if (tp->sum_needed & E1000_TXD_POPTS_TXSM) {
646e685b4ebSAlex Williamson             unsigned int phsum;
6477c23b892Sbalrog             // add pseudo-header length before checksum calculation
6487c23b892Sbalrog             sp = (uint16_t *)(tp->data + tp->tucso);
649e685b4ebSAlex Williamson             phsum = be16_to_cpup(sp) + len;
650e685b4ebSAlex Williamson             phsum = (phsum >> 16) + (phsum & 0xffff);
651d8ee2591SPeter Maydell             stw_be_p(sp, phsum);
6527c23b892Sbalrog         }
6537c23b892Sbalrog         tp->tso_frames++;
6547c23b892Sbalrog     }
6557c23b892Sbalrog 
6567c23b892Sbalrog     if (tp->sum_needed & E1000_TXD_POPTS_TXSM)
6577c23b892Sbalrog         putsum(tp->data, tp->size, tp->tucso, tp->tucss, tp->tucse);
6587c23b892Sbalrog     if (tp->sum_needed & E1000_TXD_POPTS_IXSM)
6597c23b892Sbalrog         putsum(tp->data, tp->size, tp->ipcso, tp->ipcss, tp->ipcse);
6608f2e8d1fSaliguori     if (tp->vlan_needed) {
661b10fec9bSStefan Weil         memmove(tp->vlan, tp->data, 4);
662b10fec9bSStefan Weil         memmove(tp->data, tp->data + 4, 8);
6638f2e8d1fSaliguori         memcpy(tp->data + 8, tp->vlan_header, 4);
66493e37d76SJason Wang         e1000_send_packet(s, tp->vlan, tp->size + 4);
66520f3e863SLeonid Bloch     } else {
66693e37d76SJason Wang         e1000_send_packet(s, tp->data, tp->size);
66720f3e863SLeonid Bloch     }
66820f3e863SLeonid Bloch 
6697c23b892Sbalrog     s->mac_reg[TPT]++;
6707c23b892Sbalrog     s->mac_reg[GPTC]++;
6717c23b892Sbalrog     n = s->mac_reg[TOTL];
6727c23b892Sbalrog     if ((s->mac_reg[TOTL] += s->tx.size) < n)
6737c23b892Sbalrog         s->mac_reg[TOTH]++;
6747c23b892Sbalrog }
6757c23b892Sbalrog 
6767c23b892Sbalrog static void
6777c23b892Sbalrog process_tx_desc(E1000State *s, struct e1000_tx_desc *dp)
6787c23b892Sbalrog {
679b08340d5SAndreas Färber     PCIDevice *d = PCI_DEVICE(s);
6807c23b892Sbalrog     uint32_t txd_lower = le32_to_cpu(dp->lower.data);
6817c23b892Sbalrog     uint32_t dtype = txd_lower & (E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D);
6827c23b892Sbalrog     unsigned int split_size = txd_lower & 0xffff, bytes, sz, op;
683a0ae17a6SAndrew Jones     unsigned int msh = 0xfffff;
6847c23b892Sbalrog     uint64_t addr;
6857c23b892Sbalrog     struct e1000_context_desc *xp = (struct e1000_context_desc *)dp;
6867c23b892Sbalrog     struct e1000_tx *tp = &s->tx;
6877c23b892Sbalrog 
688e9845f09SVincenzo Maffione     s->mit_ide |= (txd_lower & E1000_TXD_CMD_IDE);
68920f3e863SLeonid Bloch     if (dtype == E1000_TXD_CMD_DEXT) {    /* context descriptor */
6907c23b892Sbalrog         op = le32_to_cpu(xp->cmd_and_length);
6917c23b892Sbalrog         tp->ipcss = xp->lower_setup.ip_fields.ipcss;
6927c23b892Sbalrog         tp->ipcso = xp->lower_setup.ip_fields.ipcso;
6937c23b892Sbalrog         tp->ipcse = le16_to_cpu(xp->lower_setup.ip_fields.ipcse);
6947c23b892Sbalrog         tp->tucss = xp->upper_setup.tcp_fields.tucss;
6957c23b892Sbalrog         tp->tucso = xp->upper_setup.tcp_fields.tucso;
6967c23b892Sbalrog         tp->tucse = le16_to_cpu(xp->upper_setup.tcp_fields.tucse);
6977c23b892Sbalrog         tp->paylen = op & 0xfffff;
6987c23b892Sbalrog         tp->hdr_len = xp->tcp_seg_setup.fields.hdr_len;
6997c23b892Sbalrog         tp->mss = le16_to_cpu(xp->tcp_seg_setup.fields.mss);
7007c23b892Sbalrog         tp->ip = (op & E1000_TXD_CMD_IP) ? 1 : 0;
7017c23b892Sbalrog         tp->tcp = (op & E1000_TXD_CMD_TCP) ? 1 : 0;
7027c23b892Sbalrog         tp->tse = (op & E1000_TXD_CMD_TSE) ? 1 : 0;
7037c23b892Sbalrog         tp->tso_frames = 0;
70420f3e863SLeonid Bloch         if (tp->tucso == 0) {    /* this is probably wrong */
7057c23b892Sbalrog             DBGOUT(TXSUM, "TCP/UDP: cso 0!\n");
7067c23b892Sbalrog             tp->tucso = tp->tucss + (tp->tcp ? 16 : 6);
7077c23b892Sbalrog         }
7087c23b892Sbalrog         return;
7091b0009dbSbalrog     } else if (dtype == (E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D)) {
7101b0009dbSbalrog         // data descriptor
711735e77ecSStefan Hajnoczi         if (tp->size == 0) {
7127c23b892Sbalrog             tp->sum_needed = le32_to_cpu(dp->upper.data) >> 8;
713735e77ecSStefan Hajnoczi         }
7141b0009dbSbalrog         tp->cptse = ( txd_lower & E1000_TXD_CMD_TSE ) ? 1 : 0;
71543ad7e3eSJes Sorensen     } else {
7161b0009dbSbalrog         // legacy descriptor
7171b0009dbSbalrog         tp->cptse = 0;
71843ad7e3eSJes Sorensen     }
7197c23b892Sbalrog 
7208f2e8d1fSaliguori     if (vlan_enabled(s) && is_vlan_txd(txd_lower) &&
7218f2e8d1fSaliguori         (tp->cptse || txd_lower & E1000_TXD_CMD_EOP)) {
7228f2e8d1fSaliguori         tp->vlan_needed = 1;
723d8ee2591SPeter Maydell         stw_be_p(tp->vlan_header,
7244e60a250SShannon Zhao                       le16_to_cpu(s->mac_reg[VET]));
725d8ee2591SPeter Maydell         stw_be_p(tp->vlan_header + 2,
7268f2e8d1fSaliguori                       le16_to_cpu(dp->upper.fields.special));
7278f2e8d1fSaliguori     }
7288f2e8d1fSaliguori 
7297c23b892Sbalrog     addr = le64_to_cpu(dp->buffer_addr);
7301b0009dbSbalrog     if (tp->tse && tp->cptse) {
731a0ae17a6SAndrew Jones         msh = tp->hdr_len + tp->mss;
7327c23b892Sbalrog         do {
7337c23b892Sbalrog             bytes = split_size;
7347c23b892Sbalrog             if (tp->size + bytes > msh)
7357c23b892Sbalrog                 bytes = msh - tp->size;
73665f82df0SAnthony Liguori 
73765f82df0SAnthony Liguori             bytes = MIN(sizeof(tp->data) - tp->size, bytes);
738b08340d5SAndreas Färber             pci_dma_read(d, addr, tp->data + tp->size, bytes);
739a0ae17a6SAndrew Jones             sz = tp->size + bytes;
740a0ae17a6SAndrew Jones             if (sz >= tp->hdr_len && tp->size < tp->hdr_len) {
741a0ae17a6SAndrew Jones                 memmove(tp->header, tp->data, tp->hdr_len);
742a0ae17a6SAndrew Jones             }
7437c23b892Sbalrog             tp->size = sz;
7447c23b892Sbalrog             addr += bytes;
7457c23b892Sbalrog             if (sz == msh) {
7467c23b892Sbalrog                 xmit_seg(s);
747a0ae17a6SAndrew Jones                 memmove(tp->data, tp->header, tp->hdr_len);
748a0ae17a6SAndrew Jones                 tp->size = tp->hdr_len;
7497c23b892Sbalrog             }
750b947ac2bSP J P             split_size -= bytes;
751b947ac2bSP J P         } while (bytes && split_size);
7521b0009dbSbalrog     } else if (!tp->tse && tp->cptse) {
7531b0009dbSbalrog         // context descriptor TSE is not set, while data descriptor TSE is set
754362f5fb5SStefan Weil         DBGOUT(TXERR, "TCP segmentation error\n");
7551b0009dbSbalrog     } else {
75665f82df0SAnthony Liguori         split_size = MIN(sizeof(tp->data) - tp->size, split_size);
757b08340d5SAndreas Färber         pci_dma_read(d, addr, tp->data + tp->size, split_size);
7581b0009dbSbalrog         tp->size += split_size;
7591b0009dbSbalrog     }
7607c23b892Sbalrog 
7617c23b892Sbalrog     if (!(txd_lower & E1000_TXD_CMD_EOP))
7627c23b892Sbalrog         return;
763a0ae17a6SAndrew Jones     if (!(tp->tse && tp->cptse && tp->size < tp->hdr_len)) {
7647c23b892Sbalrog         xmit_seg(s);
765a0ae17a6SAndrew Jones     }
7667c23b892Sbalrog     tp->tso_frames = 0;
7677c23b892Sbalrog     tp->sum_needed = 0;
7688f2e8d1fSaliguori     tp->vlan_needed = 0;
7697c23b892Sbalrog     tp->size = 0;
7701b0009dbSbalrog     tp->cptse = 0;
7717c23b892Sbalrog }
7727c23b892Sbalrog 
7737c23b892Sbalrog static uint32_t
77462ecbd35SEduard - Gabriel Munteanu txdesc_writeback(E1000State *s, dma_addr_t base, struct e1000_tx_desc *dp)
7757c23b892Sbalrog {
776b08340d5SAndreas Färber     PCIDevice *d = PCI_DEVICE(s);
7777c23b892Sbalrog     uint32_t txd_upper, txd_lower = le32_to_cpu(dp->lower.data);
7787c23b892Sbalrog 
7797c23b892Sbalrog     if (!(txd_lower & (E1000_TXD_CMD_RS|E1000_TXD_CMD_RPS)))
7807c23b892Sbalrog         return 0;
7817c23b892Sbalrog     txd_upper = (le32_to_cpu(dp->upper.data) | E1000_TXD_STAT_DD) &
7827c23b892Sbalrog                 ~(E1000_TXD_STAT_EC | E1000_TXD_STAT_LC | E1000_TXD_STAT_TU);
7837c23b892Sbalrog     dp->upper.data = cpu_to_le32(txd_upper);
784b08340d5SAndreas Färber     pci_dma_write(d, base + ((char *)&dp->upper - (char *)dp),
78500c3a05bSDavid Gibson                   &dp->upper, sizeof(dp->upper));
7867c23b892Sbalrog     return E1000_ICR_TXDW;
7877c23b892Sbalrog }
7887c23b892Sbalrog 
789d17161f6SKevin Wolf static uint64_t tx_desc_base(E1000State *s)
790d17161f6SKevin Wolf {
791d17161f6SKevin Wolf     uint64_t bah = s->mac_reg[TDBAH];
792d17161f6SKevin Wolf     uint64_t bal = s->mac_reg[TDBAL] & ~0xf;
793d17161f6SKevin Wolf 
794d17161f6SKevin Wolf     return (bah << 32) + bal;
795d17161f6SKevin Wolf }
796d17161f6SKevin Wolf 
7977c23b892Sbalrog static void
7987c23b892Sbalrog start_xmit(E1000State *s)
7997c23b892Sbalrog {
800b08340d5SAndreas Färber     PCIDevice *d = PCI_DEVICE(s);
80162ecbd35SEduard - Gabriel Munteanu     dma_addr_t base;
8027c23b892Sbalrog     struct e1000_tx_desc desc;
8037c23b892Sbalrog     uint32_t tdh_start = s->mac_reg[TDH], cause = E1000_ICS_TXQE;
8047c23b892Sbalrog 
8057c23b892Sbalrog     if (!(s->mac_reg[TCTL] & E1000_TCTL_EN)) {
8067c23b892Sbalrog         DBGOUT(TX, "tx disabled\n");
8077c23b892Sbalrog         return;
8087c23b892Sbalrog     }
8097c23b892Sbalrog 
8107c23b892Sbalrog     while (s->mac_reg[TDH] != s->mac_reg[TDT]) {
811d17161f6SKevin Wolf         base = tx_desc_base(s) +
8127c23b892Sbalrog                sizeof(struct e1000_tx_desc) * s->mac_reg[TDH];
813b08340d5SAndreas Färber         pci_dma_read(d, base, &desc, sizeof(desc));
8147c23b892Sbalrog 
8157c23b892Sbalrog         DBGOUT(TX, "index %d: %p : %x %x\n", s->mac_reg[TDH],
8166106075bSths                (void *)(intptr_t)desc.buffer_addr, desc.lower.data,
8177c23b892Sbalrog                desc.upper.data);
8187c23b892Sbalrog 
8197c23b892Sbalrog         process_tx_desc(s, &desc);
82062ecbd35SEduard - Gabriel Munteanu         cause |= txdesc_writeback(s, base, &desc);
8217c23b892Sbalrog 
8227c23b892Sbalrog         if (++s->mac_reg[TDH] * sizeof(desc) >= s->mac_reg[TDLEN])
8237c23b892Sbalrog             s->mac_reg[TDH] = 0;
8247c23b892Sbalrog         /*
8257c23b892Sbalrog          * the following could happen only if guest sw assigns
8267c23b892Sbalrog          * bogus values to TDT/TDLEN.
8277c23b892Sbalrog          * there's nothing too intelligent we could do about this.
8287c23b892Sbalrog          */
8297c23b892Sbalrog         if (s->mac_reg[TDH] == tdh_start) {
8307c23b892Sbalrog             DBGOUT(TXERR, "TDH wraparound @%x, TDT %x, TDLEN %x\n",
8317c23b892Sbalrog                    tdh_start, s->mac_reg[TDT], s->mac_reg[TDLEN]);
8327c23b892Sbalrog             break;
8337c23b892Sbalrog         }
8347c23b892Sbalrog     }
8357c23b892Sbalrog     set_ics(s, 0, cause);
8367c23b892Sbalrog }
8377c23b892Sbalrog 
8387c23b892Sbalrog static int
8397c23b892Sbalrog receive_filter(E1000State *s, const uint8_t *buf, int size)
8407c23b892Sbalrog {
841af2960f9SBlue Swirl     static const uint8_t bcast[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
842af2960f9SBlue Swirl     static const int mta_shift[] = {4, 3, 2, 0};
8437c23b892Sbalrog     uint32_t f, rctl = s->mac_reg[RCTL], ra[2], *rp;
8447c23b892Sbalrog 
8458f2e8d1fSaliguori     if (is_vlan_packet(s, buf) && vlan_rx_filter_enabled(s)) {
8468f2e8d1fSaliguori         uint16_t vid = be16_to_cpup((uint16_t *)(buf + 14));
8478f2e8d1fSaliguori         uint32_t vfta = le32_to_cpup((uint32_t *)(s->mac_reg + VFTA) +
8488f2e8d1fSaliguori                                      ((vid >> 5) & 0x7f));
8498f2e8d1fSaliguori         if ((vfta & (1 << (vid & 0x1f))) == 0)
8508f2e8d1fSaliguori             return 0;
8518f2e8d1fSaliguori     }
8528f2e8d1fSaliguori 
8537c23b892Sbalrog     if (rctl & E1000_RCTL_UPE)			// promiscuous
8547c23b892Sbalrog         return 1;
8557c23b892Sbalrog 
8567c23b892Sbalrog     if ((buf[0] & 1) && (rctl & E1000_RCTL_MPE))	// promiscuous mcast
8577c23b892Sbalrog         return 1;
8587c23b892Sbalrog 
8597c23b892Sbalrog     if ((rctl & E1000_RCTL_BAM) && !memcmp(buf, bcast, sizeof bcast))
8607c23b892Sbalrog         return 1;
8617c23b892Sbalrog 
8627c23b892Sbalrog     for (rp = s->mac_reg + RA; rp < s->mac_reg + RA + 32; rp += 2) {
8637c23b892Sbalrog         if (!(rp[1] & E1000_RAH_AV))
8647c23b892Sbalrog             continue;
8657c23b892Sbalrog         ra[0] = cpu_to_le32(rp[0]);
8667c23b892Sbalrog         ra[1] = cpu_to_le32(rp[1]);
8677c23b892Sbalrog         if (!memcmp(buf, (uint8_t *)ra, 6)) {
8687c23b892Sbalrog             DBGOUT(RXFILTER,
8697c23b892Sbalrog                    "unicast match[%d]: %02x:%02x:%02x:%02x:%02x:%02x\n",
8707c23b892Sbalrog                    (int)(rp - s->mac_reg - RA)/2,
8717c23b892Sbalrog                    buf[0], buf[1], buf[2], buf[3], buf[4], buf[5]);
8727c23b892Sbalrog             return 1;
8737c23b892Sbalrog         }
8747c23b892Sbalrog     }
8757c23b892Sbalrog     DBGOUT(RXFILTER, "unicast mismatch: %02x:%02x:%02x:%02x:%02x:%02x\n",
8767c23b892Sbalrog            buf[0], buf[1], buf[2], buf[3], buf[4], buf[5]);
8777c23b892Sbalrog 
8787c23b892Sbalrog     f = mta_shift[(rctl >> E1000_RCTL_MO_SHIFT) & 3];
8797c23b892Sbalrog     f = (((buf[5] << 8) | buf[4]) >> f) & 0xfff;
8807c23b892Sbalrog     if (s->mac_reg[MTA + (f >> 5)] & (1 << (f & 0x1f)))
8817c23b892Sbalrog         return 1;
8827c23b892Sbalrog     DBGOUT(RXFILTER,
8837c23b892Sbalrog            "dropping, inexact filter mismatch: %02x:%02x:%02x:%02x:%02x:%02x MO %d MTA[%d] %x\n",
8847c23b892Sbalrog            buf[0], buf[1], buf[2], buf[3], buf[4], buf[5],
8857c23b892Sbalrog            (rctl >> E1000_RCTL_MO_SHIFT) & 3, f >> 5,
8867c23b892Sbalrog            s->mac_reg[MTA + (f >> 5)]);
8877c23b892Sbalrog 
8887c23b892Sbalrog     return 0;
8897c23b892Sbalrog }
8907c23b892Sbalrog 
89199ed7e30Saliguori static void
8924e68f7a0SStefan Hajnoczi e1000_set_link_status(NetClientState *nc)
89399ed7e30Saliguori {
894cc1f0f45SJason Wang     E1000State *s = qemu_get_nic_opaque(nc);
89599ed7e30Saliguori     uint32_t old_status = s->mac_reg[STATUS];
89699ed7e30Saliguori 
897d4044c2aSBjørn Mork     if (nc->link_down) {
89871aadd3cSJason Wang         e1000_link_down(s);
899d4044c2aSBjørn Mork     } else {
900d7a41552SGabriel L. Somlo         if (have_autoneg(s) &&
9016a2acedbSGabriel L. Somlo             !(s->phy_reg[PHY_STATUS] & MII_SR_AUTONEG_COMPLETE)) {
9026a2acedbSGabriel L. Somlo             /* emulate auto-negotiation if supported */
9036a2acedbSGabriel L. Somlo             timer_mod(s->autoneg_timer,
9046a2acedbSGabriel L. Somlo                       qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) + 500);
9056a2acedbSGabriel L. Somlo         } else {
90671aadd3cSJason Wang             e1000_link_up(s);
907d4044c2aSBjørn Mork         }
9086a2acedbSGabriel L. Somlo     }
90999ed7e30Saliguori 
91099ed7e30Saliguori     if (s->mac_reg[STATUS] != old_status)
91199ed7e30Saliguori         set_ics(s, 0, E1000_ICR_LSC);
91299ed7e30Saliguori }
91399ed7e30Saliguori 
914322fd48aSMichael S. Tsirkin static bool e1000_has_rxbufs(E1000State *s, size_t total_size)
915322fd48aSMichael S. Tsirkin {
916322fd48aSMichael S. Tsirkin     int bufs;
917322fd48aSMichael S. Tsirkin     /* Fast-path short packets */
918322fd48aSMichael S. Tsirkin     if (total_size <= s->rxbuf_size) {
919e5b8b0d4SDmitry Fleytman         return s->mac_reg[RDH] != s->mac_reg[RDT];
920322fd48aSMichael S. Tsirkin     }
921322fd48aSMichael S. Tsirkin     if (s->mac_reg[RDH] < s->mac_reg[RDT]) {
922322fd48aSMichael S. Tsirkin         bufs = s->mac_reg[RDT] - s->mac_reg[RDH];
923e5b8b0d4SDmitry Fleytman     } else if (s->mac_reg[RDH] > s->mac_reg[RDT]) {
924322fd48aSMichael S. Tsirkin         bufs = s->mac_reg[RDLEN] /  sizeof(struct e1000_rx_desc) +
925322fd48aSMichael S. Tsirkin             s->mac_reg[RDT] - s->mac_reg[RDH];
926322fd48aSMichael S. Tsirkin     } else {
927322fd48aSMichael S. Tsirkin         return false;
928322fd48aSMichael S. Tsirkin     }
929322fd48aSMichael S. Tsirkin     return total_size <= bufs * s->rxbuf_size;
930322fd48aSMichael S. Tsirkin }
931322fd48aSMichael S. Tsirkin 
9326cdfab28SMichael S. Tsirkin static int
9334e68f7a0SStefan Hajnoczi e1000_can_receive(NetClientState *nc)
9346cdfab28SMichael S. Tsirkin {
935cc1f0f45SJason Wang     E1000State *s = qemu_get_nic_opaque(nc);
9366cdfab28SMichael S. Tsirkin 
937ddcb73b7SMichael S. Tsirkin     return (s->mac_reg[STATUS] & E1000_STATUS_LU) &&
93820302e71SMichael S. Tsirkin         (s->mac_reg[RCTL] & E1000_RCTL_EN) &&
93920302e71SMichael S. Tsirkin         (s->parent_obj.config[PCI_COMMAND] & PCI_COMMAND_MASTER) &&
94020302e71SMichael S. Tsirkin         e1000_has_rxbufs(s, 1);
9416cdfab28SMichael S. Tsirkin }
9426cdfab28SMichael S. Tsirkin 
943d17161f6SKevin Wolf static uint64_t rx_desc_base(E1000State *s)
944d17161f6SKevin Wolf {
945d17161f6SKevin Wolf     uint64_t bah = s->mac_reg[RDBAH];
946d17161f6SKevin Wolf     uint64_t bal = s->mac_reg[RDBAL] & ~0xf;
947d17161f6SKevin Wolf 
948d17161f6SKevin Wolf     return (bah << 32) + bal;
949d17161f6SKevin Wolf }
950d17161f6SKevin Wolf 
9514f1c942bSMark McLoughlin static ssize_t
95297410ddeSVincenzo Maffione e1000_receive_iov(NetClientState *nc, const struct iovec *iov, int iovcnt)
9537c23b892Sbalrog {
954cc1f0f45SJason Wang     E1000State *s = qemu_get_nic_opaque(nc);
955b08340d5SAndreas Färber     PCIDevice *d = PCI_DEVICE(s);
9567c23b892Sbalrog     struct e1000_rx_desc desc;
95762ecbd35SEduard - Gabriel Munteanu     dma_addr_t base;
9587c23b892Sbalrog     unsigned int n, rdt;
9597c23b892Sbalrog     uint32_t rdh_start;
9608f2e8d1fSaliguori     uint16_t vlan_special = 0;
96197410ddeSVincenzo Maffione     uint8_t vlan_status = 0;
96278aeb23eSStefan Hajnoczi     uint8_t min_buf[MIN_BUF_SIZE];
96397410ddeSVincenzo Maffione     struct iovec min_iov;
96497410ddeSVincenzo Maffione     uint8_t *filter_buf = iov->iov_base;
96597410ddeSVincenzo Maffione     size_t size = iov_size(iov, iovcnt);
96697410ddeSVincenzo Maffione     size_t iov_ofs = 0;
967b19487e2SMichael S. Tsirkin     size_t desc_offset;
968b19487e2SMichael S. Tsirkin     size_t desc_size;
969b19487e2SMichael S. Tsirkin     size_t total_size;
9707c23b892Sbalrog 
971ddcb73b7SMichael S. Tsirkin     if (!(s->mac_reg[STATUS] & E1000_STATUS_LU)) {
9724f1c942bSMark McLoughlin         return -1;
973ddcb73b7SMichael S. Tsirkin     }
974ddcb73b7SMichael S. Tsirkin 
975ddcb73b7SMichael S. Tsirkin     if (!(s->mac_reg[RCTL] & E1000_RCTL_EN)) {
976ddcb73b7SMichael S. Tsirkin         return -1;
977ddcb73b7SMichael S. Tsirkin     }
9787c23b892Sbalrog 
97978aeb23eSStefan Hajnoczi     /* Pad to minimum Ethernet frame length */
98078aeb23eSStefan Hajnoczi     if (size < sizeof(min_buf)) {
98197410ddeSVincenzo Maffione         iov_to_buf(iov, iovcnt, 0, min_buf, size);
98278aeb23eSStefan Hajnoczi         memset(&min_buf[size], 0, sizeof(min_buf) - size);
98397410ddeSVincenzo Maffione         min_iov.iov_base = filter_buf = min_buf;
98497410ddeSVincenzo Maffione         min_iov.iov_len = size = sizeof(min_buf);
98597410ddeSVincenzo Maffione         iovcnt = 1;
98697410ddeSVincenzo Maffione         iov = &min_iov;
98797410ddeSVincenzo Maffione     } else if (iov->iov_len < MAXIMUM_ETHERNET_HDR_LEN) {
98897410ddeSVincenzo Maffione         /* This is very unlikely, but may happen. */
98997410ddeSVincenzo Maffione         iov_to_buf(iov, iovcnt, 0, min_buf, MAXIMUM_ETHERNET_HDR_LEN);
99097410ddeSVincenzo Maffione         filter_buf = min_buf;
99178aeb23eSStefan Hajnoczi     }
99278aeb23eSStefan Hajnoczi 
993b0d9ffcdSMichael Contreras     /* Discard oversized packets if !LPE and !SBP. */
9942c0331f4SMichael Contreras     if ((size > MAXIMUM_ETHERNET_LPE_SIZE ||
9952c0331f4SMichael Contreras         (size > MAXIMUM_ETHERNET_VLAN_SIZE
9962c0331f4SMichael Contreras         && !(s->mac_reg[RCTL] & E1000_RCTL_LPE)))
997b0d9ffcdSMichael Contreras         && !(s->mac_reg[RCTL] & E1000_RCTL_SBP)) {
998b0d9ffcdSMichael Contreras         return size;
999b0d9ffcdSMichael Contreras     }
1000b0d9ffcdSMichael Contreras 
100197410ddeSVincenzo Maffione     if (!receive_filter(s, filter_buf, size)) {
10024f1c942bSMark McLoughlin         return size;
100397410ddeSVincenzo Maffione     }
10047c23b892Sbalrog 
100597410ddeSVincenzo Maffione     if (vlan_enabled(s) && is_vlan_packet(s, filter_buf)) {
100697410ddeSVincenzo Maffione         vlan_special = cpu_to_le16(be16_to_cpup((uint16_t *)(filter_buf
100797410ddeSVincenzo Maffione                                                                 + 14)));
100897410ddeSVincenzo Maffione         iov_ofs = 4;
100997410ddeSVincenzo Maffione         if (filter_buf == iov->iov_base) {
101097410ddeSVincenzo Maffione             memmove(filter_buf + 4, filter_buf, 12);
101197410ddeSVincenzo Maffione         } else {
101297410ddeSVincenzo Maffione             iov_from_buf(iov, iovcnt, 4, filter_buf, 12);
101397410ddeSVincenzo Maffione             while (iov->iov_len <= iov_ofs) {
101497410ddeSVincenzo Maffione                 iov_ofs -= iov->iov_len;
101597410ddeSVincenzo Maffione                 iov++;
101697410ddeSVincenzo Maffione             }
101797410ddeSVincenzo Maffione         }
10188f2e8d1fSaliguori         vlan_status = E1000_RXD_STAT_VP;
10198f2e8d1fSaliguori         size -= 4;
10208f2e8d1fSaliguori     }
10218f2e8d1fSaliguori 
10227c23b892Sbalrog     rdh_start = s->mac_reg[RDH];
1023b19487e2SMichael S. Tsirkin     desc_offset = 0;
1024b19487e2SMichael S. Tsirkin     total_size = size + fcs_len(s);
1025322fd48aSMichael S. Tsirkin     if (!e1000_has_rxbufs(s, total_size)) {
1026322fd48aSMichael S. Tsirkin             set_ics(s, 0, E1000_ICS_RXO);
1027322fd48aSMichael S. Tsirkin             return -1;
1028322fd48aSMichael S. Tsirkin     }
10297c23b892Sbalrog     do {
1030b19487e2SMichael S. Tsirkin         desc_size = total_size - desc_offset;
1031b19487e2SMichael S. Tsirkin         if (desc_size > s->rxbuf_size) {
1032b19487e2SMichael S. Tsirkin             desc_size = s->rxbuf_size;
1033b19487e2SMichael S. Tsirkin         }
1034d17161f6SKevin Wolf         base = rx_desc_base(s) + sizeof(desc) * s->mac_reg[RDH];
1035b08340d5SAndreas Färber         pci_dma_read(d, base, &desc, sizeof(desc));
10368f2e8d1fSaliguori         desc.special = vlan_special;
10378f2e8d1fSaliguori         desc.status |= (vlan_status | E1000_RXD_STAT_DD);
10387c23b892Sbalrog         if (desc.buffer_addr) {
1039b19487e2SMichael S. Tsirkin             if (desc_offset < size) {
104097410ddeSVincenzo Maffione                 size_t iov_copy;
104197410ddeSVincenzo Maffione                 hwaddr ba = le64_to_cpu(desc.buffer_addr);
1042b19487e2SMichael S. Tsirkin                 size_t copy_size = size - desc_offset;
1043b19487e2SMichael S. Tsirkin                 if (copy_size > s->rxbuf_size) {
1044b19487e2SMichael S. Tsirkin                     copy_size = s->rxbuf_size;
1045b19487e2SMichael S. Tsirkin                 }
104697410ddeSVincenzo Maffione                 do {
104797410ddeSVincenzo Maffione                     iov_copy = MIN(copy_size, iov->iov_len - iov_ofs);
104897410ddeSVincenzo Maffione                     pci_dma_write(d, ba, iov->iov_base + iov_ofs, iov_copy);
104997410ddeSVincenzo Maffione                     copy_size -= iov_copy;
105097410ddeSVincenzo Maffione                     ba += iov_copy;
105197410ddeSVincenzo Maffione                     iov_ofs += iov_copy;
105297410ddeSVincenzo Maffione                     if (iov_ofs == iov->iov_len) {
105397410ddeSVincenzo Maffione                         iov++;
105497410ddeSVincenzo Maffione                         iov_ofs = 0;
105597410ddeSVincenzo Maffione                     }
105697410ddeSVincenzo Maffione                 } while (copy_size);
1057b19487e2SMichael S. Tsirkin             }
1058b19487e2SMichael S. Tsirkin             desc_offset += desc_size;
1059b19487e2SMichael S. Tsirkin             desc.length = cpu_to_le16(desc_size);
1060ee912ccfSMichael S. Tsirkin             if (desc_offset >= total_size) {
10617c23b892Sbalrog                 desc.status |= E1000_RXD_STAT_EOP | E1000_RXD_STAT_IXSM;
1062b19487e2SMichael S. Tsirkin             } else {
1063ee912ccfSMichael S. Tsirkin                 /* Guest zeroing out status is not a hardware requirement.
1064ee912ccfSMichael S. Tsirkin                    Clear EOP in case guest didn't do it. */
1065ee912ccfSMichael S. Tsirkin                 desc.status &= ~E1000_RXD_STAT_EOP;
1066b19487e2SMichael S. Tsirkin             }
106743ad7e3eSJes Sorensen         } else { // as per intel docs; skip descriptors with null buf addr
10687c23b892Sbalrog             DBGOUT(RX, "Null RX descriptor!!\n");
106943ad7e3eSJes Sorensen         }
1070b08340d5SAndreas Färber         pci_dma_write(d, base, &desc, sizeof(desc));
10717c23b892Sbalrog 
10727c23b892Sbalrog         if (++s->mac_reg[RDH] * sizeof(desc) >= s->mac_reg[RDLEN])
10737c23b892Sbalrog             s->mac_reg[RDH] = 0;
10747c23b892Sbalrog         /* see comment in start_xmit; same here */
10757c23b892Sbalrog         if (s->mac_reg[RDH] == rdh_start) {
10767c23b892Sbalrog             DBGOUT(RXERR, "RDH wraparound @%x, RDT %x, RDLEN %x\n",
10777c23b892Sbalrog                    rdh_start, s->mac_reg[RDT], s->mac_reg[RDLEN]);
10787c23b892Sbalrog             set_ics(s, 0, E1000_ICS_RXO);
10794f1c942bSMark McLoughlin             return -1;
10807c23b892Sbalrog         }
1081b19487e2SMichael S. Tsirkin     } while (desc_offset < total_size);
10827c23b892Sbalrog 
10837c23b892Sbalrog     s->mac_reg[GPRC]++;
10847c23b892Sbalrog     s->mac_reg[TPR]++;
1085a05e8a6eSMichael S. Tsirkin     /* TOR - Total Octets Received:
1086a05e8a6eSMichael S. Tsirkin      * This register includes bytes received in a packet from the <Destination
1087a05e8a6eSMichael S. Tsirkin      * Address> field through the <CRC> field, inclusively.
1088a05e8a6eSMichael S. Tsirkin      */
1089a05e8a6eSMichael S. Tsirkin     n = s->mac_reg[TORL] + size + /* Always include FCS length. */ 4;
1090a05e8a6eSMichael S. Tsirkin     if (n < s->mac_reg[TORL])
10917c23b892Sbalrog         s->mac_reg[TORH]++;
1092a05e8a6eSMichael S. Tsirkin     s->mac_reg[TORL] = n;
10937c23b892Sbalrog 
10947c23b892Sbalrog     n = E1000_ICS_RXT0;
10957c23b892Sbalrog     if ((rdt = s->mac_reg[RDT]) < s->mac_reg[RDH])
10967c23b892Sbalrog         rdt += s->mac_reg[RDLEN] / sizeof(desc);
1097bf16cc8fSaliguori     if (((rdt - s->mac_reg[RDH]) * sizeof(desc)) <= s->mac_reg[RDLEN] >>
1098bf16cc8fSaliguori         s->rxbuf_min_shift)
10997c23b892Sbalrog         n |= E1000_ICS_RXDMT0;
11007c23b892Sbalrog 
11017c23b892Sbalrog     set_ics(s, 0, n);
11024f1c942bSMark McLoughlin 
11034f1c942bSMark McLoughlin     return size;
11047c23b892Sbalrog }
11057c23b892Sbalrog 
110697410ddeSVincenzo Maffione static ssize_t
110797410ddeSVincenzo Maffione e1000_receive(NetClientState *nc, const uint8_t *buf, size_t size)
110897410ddeSVincenzo Maffione {
110997410ddeSVincenzo Maffione     const struct iovec iov = {
111097410ddeSVincenzo Maffione         .iov_base = (uint8_t *)buf,
111197410ddeSVincenzo Maffione         .iov_len = size
111297410ddeSVincenzo Maffione     };
111397410ddeSVincenzo Maffione 
111497410ddeSVincenzo Maffione     return e1000_receive_iov(nc, &iov, 1);
111597410ddeSVincenzo Maffione }
111697410ddeSVincenzo Maffione 
11177c23b892Sbalrog static uint32_t
11187c23b892Sbalrog mac_readreg(E1000State *s, int index)
11197c23b892Sbalrog {
11207c23b892Sbalrog     return s->mac_reg[index];
11217c23b892Sbalrog }
11227c23b892Sbalrog 
11237c23b892Sbalrog static uint32_t
11247c23b892Sbalrog mac_icr_read(E1000State *s, int index)
11257c23b892Sbalrog {
11267c23b892Sbalrog     uint32_t ret = s->mac_reg[ICR];
11277c23b892Sbalrog 
11287c23b892Sbalrog     DBGOUT(INTERRUPT, "ICR read: %x\n", ret);
11297c23b892Sbalrog     set_interrupt_cause(s, 0, 0);
11307c23b892Sbalrog     return ret;
11317c23b892Sbalrog }
11327c23b892Sbalrog 
11337c23b892Sbalrog static uint32_t
11347c23b892Sbalrog mac_read_clr4(E1000State *s, int index)
11357c23b892Sbalrog {
11367c23b892Sbalrog     uint32_t ret = s->mac_reg[index];
11377c23b892Sbalrog 
11387c23b892Sbalrog     s->mac_reg[index] = 0;
11397c23b892Sbalrog     return ret;
11407c23b892Sbalrog }
11417c23b892Sbalrog 
11427c23b892Sbalrog static uint32_t
11437c23b892Sbalrog mac_read_clr8(E1000State *s, int index)
11447c23b892Sbalrog {
11457c23b892Sbalrog     uint32_t ret = s->mac_reg[index];
11467c23b892Sbalrog 
11477c23b892Sbalrog     s->mac_reg[index] = 0;
11487c23b892Sbalrog     s->mac_reg[index-1] = 0;
11497c23b892Sbalrog     return ret;
11507c23b892Sbalrog }
11517c23b892Sbalrog 
11527c23b892Sbalrog static void
11537c23b892Sbalrog mac_writereg(E1000State *s, int index, uint32_t val)
11547c23b892Sbalrog {
11557c36507cSAmos Kong     uint32_t macaddr[2];
11567c36507cSAmos Kong 
11577c23b892Sbalrog     s->mac_reg[index] = val;
11587c36507cSAmos Kong 
115990d131fbSMichael S. Tsirkin     if (index == RA + 1) {
11607c36507cSAmos Kong         macaddr[0] = cpu_to_le32(s->mac_reg[RA]);
11617c36507cSAmos Kong         macaddr[1] = cpu_to_le32(s->mac_reg[RA + 1]);
11627c36507cSAmos Kong         qemu_format_nic_info_str(qemu_get_queue(s->nic), (uint8_t *)macaddr);
11637c36507cSAmos Kong     }
11647c23b892Sbalrog }
11657c23b892Sbalrog 
11667c23b892Sbalrog static void
11677c23b892Sbalrog set_rdt(E1000State *s, int index, uint32_t val)
11687c23b892Sbalrog {
11697c23b892Sbalrog     s->mac_reg[index] = val & 0xffff;
1170e8b4c680SPaolo Bonzini     if (e1000_has_rxbufs(s, 1)) {
1171b356f76dSJason Wang         qemu_flush_queued_packets(qemu_get_queue(s->nic));
1172e8b4c680SPaolo Bonzini     }
11737c23b892Sbalrog }
11747c23b892Sbalrog 
11757c23b892Sbalrog static void
11767c23b892Sbalrog set_16bit(E1000State *s, int index, uint32_t val)
11777c23b892Sbalrog {
11787c23b892Sbalrog     s->mac_reg[index] = val & 0xffff;
11797c23b892Sbalrog }
11807c23b892Sbalrog 
11817c23b892Sbalrog static void
11827c23b892Sbalrog set_dlen(E1000State *s, int index, uint32_t val)
11837c23b892Sbalrog {
11847c23b892Sbalrog     s->mac_reg[index] = val & 0xfff80;
11857c23b892Sbalrog }
11867c23b892Sbalrog 
11877c23b892Sbalrog static void
11887c23b892Sbalrog set_tctl(E1000State *s, int index, uint32_t val)
11897c23b892Sbalrog {
11907c23b892Sbalrog     s->mac_reg[index] = val;
11917c23b892Sbalrog     s->mac_reg[TDT] &= 0xffff;
11927c23b892Sbalrog     start_xmit(s);
11937c23b892Sbalrog }
11947c23b892Sbalrog 
11957c23b892Sbalrog static void
11967c23b892Sbalrog set_icr(E1000State *s, int index, uint32_t val)
11977c23b892Sbalrog {
11987c23b892Sbalrog     DBGOUT(INTERRUPT, "set_icr %x\n", val);
11997c23b892Sbalrog     set_interrupt_cause(s, 0, s->mac_reg[ICR] & ~val);
12007c23b892Sbalrog }
12017c23b892Sbalrog 
12027c23b892Sbalrog static void
12037c23b892Sbalrog set_imc(E1000State *s, int index, uint32_t val)
12047c23b892Sbalrog {
12057c23b892Sbalrog     s->mac_reg[IMS] &= ~val;
12067c23b892Sbalrog     set_ics(s, 0, 0);
12077c23b892Sbalrog }
12087c23b892Sbalrog 
12097c23b892Sbalrog static void
12107c23b892Sbalrog set_ims(E1000State *s, int index, uint32_t val)
12117c23b892Sbalrog {
12127c23b892Sbalrog     s->mac_reg[IMS] |= val;
12137c23b892Sbalrog     set_ics(s, 0, 0);
12147c23b892Sbalrog }
12157c23b892Sbalrog 
12167c23b892Sbalrog #define getreg(x)    [x] = mac_readreg
12177c23b892Sbalrog static uint32_t (*macreg_readops[])(E1000State *, int) = {
12187c23b892Sbalrog     getreg(PBA),      getreg(RCTL),     getreg(TDH),      getreg(TXDCTL),
12197c23b892Sbalrog     getreg(WUFC),     getreg(TDT),      getreg(CTRL),     getreg(LEDCTL),
12207c23b892Sbalrog     getreg(MANC),     getreg(MDIC),     getreg(SWSM),     getreg(STATUS),
12217c23b892Sbalrog     getreg(TORL),     getreg(TOTL),     getreg(IMS),      getreg(TCTL),
1222b1332393SBill Paul     getreg(RDH),      getreg(RDT),      getreg(VET),      getreg(ICS),
1223a00b2335SKay Ackermann     getreg(TDBAL),    getreg(TDBAH),    getreg(RDBAH),    getreg(RDBAL),
1224e9845f09SVincenzo Maffione     getreg(TDLEN),    getreg(RDLEN),    getreg(RDTR),     getreg(RADV),
1225e9845f09SVincenzo Maffione     getreg(TADV),     getreg(ITR),
12267c23b892Sbalrog 
122720f3e863SLeonid Bloch     [TOTH]    = mac_read_clr8,      [TORH]    = mac_read_clr8,
122820f3e863SLeonid Bloch     [GPRC]    = mac_read_clr4,      [GPTC]    = mac_read_clr4,
122920f3e863SLeonid Bloch     [TPT]     = mac_read_clr4,      [TPR]     = mac_read_clr4,
123020f3e863SLeonid Bloch     [ICR]     = mac_icr_read,       [EECD]    = get_eecd,
123120f3e863SLeonid Bloch     [EERD]    = flash_eerd_read,
123220f3e863SLeonid Bloch 
12337c23b892Sbalrog     [CRCERRS ... MPC]   = &mac_readreg,
12347c23b892Sbalrog     [RA ... RA+31]      = &mac_readreg,
12357c23b892Sbalrog     [MTA ... MTA+127]   = &mac_readreg,
12368f2e8d1fSaliguori     [VFTA ... VFTA+127] = &mac_readreg,
12377c23b892Sbalrog };
1238b1503cdaSmalc enum { NREADOPS = ARRAY_SIZE(macreg_readops) };
12397c23b892Sbalrog 
12407c23b892Sbalrog #define putreg(x)    [x] = mac_writereg
12417c23b892Sbalrog static void (*macreg_writeops[])(E1000State *, int, uint32_t) = {
12427c23b892Sbalrog     putreg(PBA),      putreg(EERD),     putreg(SWSM),     putreg(WUFC),
12437c23b892Sbalrog     putreg(TDBAL),    putreg(TDBAH),    putreg(TXDCTL),   putreg(RDBAH),
1244cab3c825SKevin Wolf     putreg(RDBAL),    putreg(LEDCTL),   putreg(VET),
124520f3e863SLeonid Bloch 
12467c23b892Sbalrog     [TDLEN]  = set_dlen,   [RDLEN]  = set_dlen,       [TCTL] = set_tctl,
12477c23b892Sbalrog     [TDT]    = set_tctl,   [MDIC]   = set_mdic,       [ICS]  = set_ics,
12487c23b892Sbalrog     [TDH]    = set_16bit,  [RDH]    = set_16bit,      [RDT]  = set_rdt,
12497c23b892Sbalrog     [IMC]    = set_imc,    [IMS]    = set_ims,        [ICR]  = set_icr,
1250cab3c825SKevin Wolf     [EECD]   = set_eecd,   [RCTL]   = set_rx_control, [CTRL] = set_ctrl,
1251e9845f09SVincenzo Maffione     [RDTR]   = set_16bit,  [RADV]   = set_16bit,      [TADV] = set_16bit,
1252e9845f09SVincenzo Maffione     [ITR]    = set_16bit,
125320f3e863SLeonid Bloch 
12547c23b892Sbalrog     [RA ... RA+31]      = &mac_writereg,
12557c23b892Sbalrog     [MTA ... MTA+127]   = &mac_writereg,
12568f2e8d1fSaliguori     [VFTA ... VFTA+127] = &mac_writereg,
12577c23b892Sbalrog };
1258b9d03e35SJason Wang 
1259b1503cdaSmalc enum { NWRITEOPS = ARRAY_SIZE(macreg_writeops) };
12607c23b892Sbalrog 
12617c23b892Sbalrog static void
1262a8170e5eSAvi Kivity e1000_mmio_write(void *opaque, hwaddr addr, uint64_t val,
1263ad00a9b9SAvi Kivity                  unsigned size)
12647c23b892Sbalrog {
12657c23b892Sbalrog     E1000State *s = opaque;
12668da3ff18Spbrook     unsigned int index = (addr & 0x1ffff) >> 2;
12677c23b892Sbalrog 
126843ad7e3eSJes Sorensen     if (index < NWRITEOPS && macreg_writeops[index]) {
12696b59fc74Saurel32         macreg_writeops[index](s, index, val);
127043ad7e3eSJes Sorensen     } else if (index < NREADOPS && macreg_readops[index]) {
1271ad00a9b9SAvi Kivity         DBGOUT(MMIO, "e1000_mmio_writel RO %x: 0x%04"PRIx64"\n", index<<2, val);
127243ad7e3eSJes Sorensen     } else {
1273ad00a9b9SAvi Kivity         DBGOUT(UNKNOWN, "MMIO unknown write addr=0x%08x,val=0x%08"PRIx64"\n",
12747c23b892Sbalrog                index<<2, val);
12757c23b892Sbalrog     }
127643ad7e3eSJes Sorensen }
12777c23b892Sbalrog 
1278ad00a9b9SAvi Kivity static uint64_t
1279a8170e5eSAvi Kivity e1000_mmio_read(void *opaque, hwaddr addr, unsigned size)
12807c23b892Sbalrog {
12817c23b892Sbalrog     E1000State *s = opaque;
12828da3ff18Spbrook     unsigned int index = (addr & 0x1ffff) >> 2;
12837c23b892Sbalrog 
12847c23b892Sbalrog     if (index < NREADOPS && macreg_readops[index])
12856b59fc74Saurel32     {
128632600a30SAlexander Graf         return macreg_readops[index](s, index);
12876b59fc74Saurel32     }
12887c23b892Sbalrog     DBGOUT(UNKNOWN, "MMIO unknown read addr=0x%08x\n", index<<2);
12897c23b892Sbalrog     return 0;
12907c23b892Sbalrog }
12917c23b892Sbalrog 
1292ad00a9b9SAvi Kivity static const MemoryRegionOps e1000_mmio_ops = {
1293ad00a9b9SAvi Kivity     .read = e1000_mmio_read,
1294ad00a9b9SAvi Kivity     .write = e1000_mmio_write,
1295ad00a9b9SAvi Kivity     .endianness = DEVICE_LITTLE_ENDIAN,
1296ad00a9b9SAvi Kivity     .impl = {
1297ad00a9b9SAvi Kivity         .min_access_size = 4,
1298ad00a9b9SAvi Kivity         .max_access_size = 4,
1299ad00a9b9SAvi Kivity     },
1300ad00a9b9SAvi Kivity };
1301ad00a9b9SAvi Kivity 
1302a8170e5eSAvi Kivity static uint64_t e1000_io_read(void *opaque, hwaddr addr,
1303ad00a9b9SAvi Kivity                               unsigned size)
13047c23b892Sbalrog {
1305ad00a9b9SAvi Kivity     E1000State *s = opaque;
1306ad00a9b9SAvi Kivity 
1307ad00a9b9SAvi Kivity     (void)s;
1308ad00a9b9SAvi Kivity     return 0;
13097c23b892Sbalrog }
13107c23b892Sbalrog 
1311a8170e5eSAvi Kivity static void e1000_io_write(void *opaque, hwaddr addr,
1312ad00a9b9SAvi Kivity                            uint64_t val, unsigned size)
13137c23b892Sbalrog {
1314ad00a9b9SAvi Kivity     E1000State *s = opaque;
1315ad00a9b9SAvi Kivity 
1316ad00a9b9SAvi Kivity     (void)s;
13177c23b892Sbalrog }
13187c23b892Sbalrog 
1319ad00a9b9SAvi Kivity static const MemoryRegionOps e1000_io_ops = {
1320ad00a9b9SAvi Kivity     .read = e1000_io_read,
1321ad00a9b9SAvi Kivity     .write = e1000_io_write,
1322ad00a9b9SAvi Kivity     .endianness = DEVICE_LITTLE_ENDIAN,
1323ad00a9b9SAvi Kivity };
1324ad00a9b9SAvi Kivity 
1325e482dc3eSJuan Quintela static bool is_version_1(void *opaque, int version_id)
13267c23b892Sbalrog {
1327e482dc3eSJuan Quintela     return version_id == 1;
13287c23b892Sbalrog }
13297c23b892Sbalrog 
1330ddcb73b7SMichael S. Tsirkin static void e1000_pre_save(void *opaque)
1331ddcb73b7SMichael S. Tsirkin {
1332ddcb73b7SMichael S. Tsirkin     E1000State *s = opaque;
1333ddcb73b7SMichael S. Tsirkin     NetClientState *nc = qemu_get_queue(s->nic);
13342af234e6SMichael S. Tsirkin 
1335e9845f09SVincenzo Maffione     /* If the mitigation timer is active, emulate a timeout now. */
1336e9845f09SVincenzo Maffione     if (s->mit_timer_on) {
1337e9845f09SVincenzo Maffione         e1000_mit_timer(s);
1338e9845f09SVincenzo Maffione     }
1339e9845f09SVincenzo Maffione 
1340ddcb73b7SMichael S. Tsirkin     /*
13416a2acedbSGabriel L. Somlo      * If link is down and auto-negotiation is supported and ongoing,
13426a2acedbSGabriel L. Somlo      * complete auto-negotiation immediately. This allows us to look
13436a2acedbSGabriel L. Somlo      * at MII_SR_AUTONEG_COMPLETE to infer link status on load.
1344ddcb73b7SMichael S. Tsirkin      */
1345d7a41552SGabriel L. Somlo     if (nc->link_down && have_autoneg(s)) {
1346ddcb73b7SMichael S. Tsirkin         s->phy_reg[PHY_STATUS] |= MII_SR_AUTONEG_COMPLETE;
1347ddcb73b7SMichael S. Tsirkin     }
1348ddcb73b7SMichael S. Tsirkin }
1349ddcb73b7SMichael S. Tsirkin 
1350e4b82364SAmos Kong static int e1000_post_load(void *opaque, int version_id)
1351e4b82364SAmos Kong {
1352e4b82364SAmos Kong     E1000State *s = opaque;
1353b356f76dSJason Wang     NetClientState *nc = qemu_get_queue(s->nic);
1354e4b82364SAmos Kong 
1355e9845f09SVincenzo Maffione     if (!(s->compat_flags & E1000_FLAG_MIT)) {
1356e9845f09SVincenzo Maffione         s->mac_reg[ITR] = s->mac_reg[RDTR] = s->mac_reg[RADV] =
1357e9845f09SVincenzo Maffione             s->mac_reg[TADV] = 0;
1358e9845f09SVincenzo Maffione         s->mit_irq_level = false;
1359e9845f09SVincenzo Maffione     }
1360e9845f09SVincenzo Maffione     s->mit_ide = 0;
1361e9845f09SVincenzo Maffione     s->mit_timer_on = false;
1362e9845f09SVincenzo Maffione 
1363e4b82364SAmos Kong     /* nc.link_down can't be migrated, so infer link_down according
1364ddcb73b7SMichael S. Tsirkin      * to link status bit in mac_reg[STATUS].
1365ddcb73b7SMichael S. Tsirkin      * Alternatively, restart link negotiation if it was in progress. */
1366b356f76dSJason Wang     nc->link_down = (s->mac_reg[STATUS] & E1000_STATUS_LU) == 0;
13672af234e6SMichael S. Tsirkin 
1368d7a41552SGabriel L. Somlo     if (have_autoneg(s) &&
1369ddcb73b7SMichael S. Tsirkin         !(s->phy_reg[PHY_STATUS] & MII_SR_AUTONEG_COMPLETE)) {
1370ddcb73b7SMichael S. Tsirkin         nc->link_down = false;
1371d7a41552SGabriel L. Somlo         timer_mod(s->autoneg_timer,
1372d7a41552SGabriel L. Somlo                   qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) + 500);
1373ddcb73b7SMichael S. Tsirkin     }
1374e4b82364SAmos Kong 
1375e4b82364SAmos Kong     return 0;
1376e4b82364SAmos Kong }
1377e4b82364SAmos Kong 
1378e9845f09SVincenzo Maffione static bool e1000_mit_state_needed(void *opaque)
1379e9845f09SVincenzo Maffione {
1380e9845f09SVincenzo Maffione     E1000State *s = opaque;
1381e9845f09SVincenzo Maffione 
1382e9845f09SVincenzo Maffione     return s->compat_flags & E1000_FLAG_MIT;
1383e9845f09SVincenzo Maffione }
1384e9845f09SVincenzo Maffione 
1385*9e117734SLeonid Bloch static bool e1000_full_mac_needed(void *opaque)
1386*9e117734SLeonid Bloch {
1387*9e117734SLeonid Bloch     E1000State *s = opaque;
1388*9e117734SLeonid Bloch 
1389*9e117734SLeonid Bloch     return s->compat_flags & E1000_FLAG_MAC;
1390*9e117734SLeonid Bloch }
1391*9e117734SLeonid Bloch 
1392e9845f09SVincenzo Maffione static const VMStateDescription vmstate_e1000_mit_state = {
1393e9845f09SVincenzo Maffione     .name = "e1000/mit_state",
1394e9845f09SVincenzo Maffione     .version_id = 1,
1395e9845f09SVincenzo Maffione     .minimum_version_id = 1,
13965cd8cadaSJuan Quintela     .needed = e1000_mit_state_needed,
1397e9845f09SVincenzo Maffione     .fields = (VMStateField[]) {
1398e9845f09SVincenzo Maffione         VMSTATE_UINT32(mac_reg[RDTR], E1000State),
1399e9845f09SVincenzo Maffione         VMSTATE_UINT32(mac_reg[RADV], E1000State),
1400e9845f09SVincenzo Maffione         VMSTATE_UINT32(mac_reg[TADV], E1000State),
1401e9845f09SVincenzo Maffione         VMSTATE_UINT32(mac_reg[ITR], E1000State),
1402e9845f09SVincenzo Maffione         VMSTATE_BOOL(mit_irq_level, E1000State),
1403e9845f09SVincenzo Maffione         VMSTATE_END_OF_LIST()
1404e9845f09SVincenzo Maffione     }
1405e9845f09SVincenzo Maffione };
1406e9845f09SVincenzo Maffione 
1407*9e117734SLeonid Bloch static const VMStateDescription vmstate_e1000_full_mac_state = {
1408*9e117734SLeonid Bloch     .name = "e1000/full_mac_state",
1409*9e117734SLeonid Bloch     .version_id = 1,
1410*9e117734SLeonid Bloch     .minimum_version_id = 1,
1411*9e117734SLeonid Bloch     .needed = e1000_full_mac_needed,
1412*9e117734SLeonid Bloch     .fields = (VMStateField[]) {
1413*9e117734SLeonid Bloch         VMSTATE_UINT32_ARRAY(mac_reg, E1000State, 0x8000),
1414*9e117734SLeonid Bloch         VMSTATE_END_OF_LIST()
1415*9e117734SLeonid Bloch     }
1416*9e117734SLeonid Bloch };
1417*9e117734SLeonid Bloch 
1418e482dc3eSJuan Quintela static const VMStateDescription vmstate_e1000 = {
1419e482dc3eSJuan Quintela     .name = "e1000",
1420e482dc3eSJuan Quintela     .version_id = 2,
1421e482dc3eSJuan Quintela     .minimum_version_id = 1,
1422ddcb73b7SMichael S. Tsirkin     .pre_save = e1000_pre_save,
1423e4b82364SAmos Kong     .post_load = e1000_post_load,
1424e482dc3eSJuan Quintela     .fields = (VMStateField[]) {
1425b08340d5SAndreas Färber         VMSTATE_PCI_DEVICE(parent_obj, E1000State),
1426e482dc3eSJuan Quintela         VMSTATE_UNUSED_TEST(is_version_1, 4), /* was instance id */
1427e482dc3eSJuan Quintela         VMSTATE_UNUSED(4), /* Was mmio_base.  */
1428e482dc3eSJuan Quintela         VMSTATE_UINT32(rxbuf_size, E1000State),
1429e482dc3eSJuan Quintela         VMSTATE_UINT32(rxbuf_min_shift, E1000State),
1430e482dc3eSJuan Quintela         VMSTATE_UINT32(eecd_state.val_in, E1000State),
1431e482dc3eSJuan Quintela         VMSTATE_UINT16(eecd_state.bitnum_in, E1000State),
1432e482dc3eSJuan Quintela         VMSTATE_UINT16(eecd_state.bitnum_out, E1000State),
1433e482dc3eSJuan Quintela         VMSTATE_UINT16(eecd_state.reading, E1000State),
1434e482dc3eSJuan Quintela         VMSTATE_UINT32(eecd_state.old_eecd, E1000State),
1435e482dc3eSJuan Quintela         VMSTATE_UINT8(tx.ipcss, E1000State),
1436e482dc3eSJuan Quintela         VMSTATE_UINT8(tx.ipcso, E1000State),
1437e482dc3eSJuan Quintela         VMSTATE_UINT16(tx.ipcse, E1000State),
1438e482dc3eSJuan Quintela         VMSTATE_UINT8(tx.tucss, E1000State),
1439e482dc3eSJuan Quintela         VMSTATE_UINT8(tx.tucso, E1000State),
1440e482dc3eSJuan Quintela         VMSTATE_UINT16(tx.tucse, E1000State),
1441e482dc3eSJuan Quintela         VMSTATE_UINT32(tx.paylen, E1000State),
1442e482dc3eSJuan Quintela         VMSTATE_UINT8(tx.hdr_len, E1000State),
1443e482dc3eSJuan Quintela         VMSTATE_UINT16(tx.mss, E1000State),
1444e482dc3eSJuan Quintela         VMSTATE_UINT16(tx.size, E1000State),
1445e482dc3eSJuan Quintela         VMSTATE_UINT16(tx.tso_frames, E1000State),
1446e482dc3eSJuan Quintela         VMSTATE_UINT8(tx.sum_needed, E1000State),
1447e482dc3eSJuan Quintela         VMSTATE_INT8(tx.ip, E1000State),
1448e482dc3eSJuan Quintela         VMSTATE_INT8(tx.tcp, E1000State),
1449e482dc3eSJuan Quintela         VMSTATE_BUFFER(tx.header, E1000State),
1450e482dc3eSJuan Quintela         VMSTATE_BUFFER(tx.data, E1000State),
1451e482dc3eSJuan Quintela         VMSTATE_UINT16_ARRAY(eeprom_data, E1000State, 64),
1452e482dc3eSJuan Quintela         VMSTATE_UINT16_ARRAY(phy_reg, E1000State, 0x20),
1453e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[CTRL], E1000State),
1454e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[EECD], E1000State),
1455e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[EERD], E1000State),
1456e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[GPRC], E1000State),
1457e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[GPTC], E1000State),
1458e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[ICR], E1000State),
1459e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[ICS], E1000State),
1460e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[IMC], E1000State),
1461e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[IMS], E1000State),
1462e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[LEDCTL], E1000State),
1463e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[MANC], E1000State),
1464e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[MDIC], E1000State),
1465e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[MPC], E1000State),
1466e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[PBA], E1000State),
1467e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[RCTL], E1000State),
1468e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[RDBAH], E1000State),
1469e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[RDBAL], E1000State),
1470e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[RDH], E1000State),
1471e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[RDLEN], E1000State),
1472e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[RDT], E1000State),
1473e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[STATUS], E1000State),
1474e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[SWSM], E1000State),
1475e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[TCTL], E1000State),
1476e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[TDBAH], E1000State),
1477e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[TDBAL], E1000State),
1478e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[TDH], E1000State),
1479e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[TDLEN], E1000State),
1480e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[TDT], E1000State),
1481e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[TORH], E1000State),
1482e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[TORL], E1000State),
1483e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[TOTH], E1000State),
1484e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[TOTL], E1000State),
1485e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[TPR], E1000State),
1486e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[TPT], E1000State),
1487e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[TXDCTL], E1000State),
1488e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[WUFC], E1000State),
1489e482dc3eSJuan Quintela         VMSTATE_UINT32(mac_reg[VET], E1000State),
1490e482dc3eSJuan Quintela         VMSTATE_UINT32_SUB_ARRAY(mac_reg, E1000State, RA, 32),
1491e482dc3eSJuan Quintela         VMSTATE_UINT32_SUB_ARRAY(mac_reg, E1000State, MTA, 128),
1492e482dc3eSJuan Quintela         VMSTATE_UINT32_SUB_ARRAY(mac_reg, E1000State, VFTA, 128),
1493e482dc3eSJuan Quintela         VMSTATE_END_OF_LIST()
1494e9845f09SVincenzo Maffione     },
14955cd8cadaSJuan Quintela     .subsections = (const VMStateDescription*[]) {
14965cd8cadaSJuan Quintela         &vmstate_e1000_mit_state,
1497*9e117734SLeonid Bloch         &vmstate_e1000_full_mac_state,
14985cd8cadaSJuan Quintela         NULL
14997c23b892Sbalrog     }
1500e482dc3eSJuan Quintela };
15017c23b892Sbalrog 
15028597f2e1SGabriel L. Somlo /*
15038597f2e1SGabriel L. Somlo  * EEPROM contents documented in Tables 5-2 and 5-3, pp. 98-102.
15048597f2e1SGabriel L. Somlo  * Note: A valid DevId will be inserted during pci_e1000_init().
15058597f2e1SGabriel L. Somlo  */
150688b4e9dbSblueswir1 static const uint16_t e1000_eeprom_template[64] = {
15077c23b892Sbalrog     0x0000, 0x0000, 0x0000, 0x0000,      0xffff, 0x0000,      0x0000, 0x0000,
15088597f2e1SGabriel L. Somlo     0x3000, 0x1000, 0x6403, 0 /*DevId*/, 0x8086, 0 /*DevId*/, 0x8086, 0x3040,
15097c23b892Sbalrog     0x0008, 0x2000, 0x7e14, 0x0048,      0x1000, 0x00d8,      0x0000, 0x2700,
15107c23b892Sbalrog     0x6cc9, 0x3150, 0x0722, 0x040b,      0x0984, 0x0000,      0xc000, 0x0706,
15117c23b892Sbalrog     0x1008, 0x0000, 0x0f04, 0x7fff,      0x4d01, 0xffff,      0xffff, 0xffff,
15127c23b892Sbalrog     0xffff, 0xffff, 0xffff, 0xffff,      0xffff, 0xffff,      0xffff, 0xffff,
15137c23b892Sbalrog     0x0100, 0x4000, 0x121c, 0xffff,      0xffff, 0xffff,      0xffff, 0xffff,
15147c23b892Sbalrog     0xffff, 0xffff, 0xffff, 0xffff,      0xffff, 0xffff,      0xffff, 0x0000,
15157c23b892Sbalrog };
15167c23b892Sbalrog 
15177c23b892Sbalrog /* PCI interface */
15187c23b892Sbalrog 
15197c23b892Sbalrog static void
1520ad00a9b9SAvi Kivity e1000_mmio_setup(E1000State *d)
15217c23b892Sbalrog {
1522f65ed4c1Saliguori     int i;
1523f65ed4c1Saliguori     const uint32_t excluded_regs[] = {
1524f65ed4c1Saliguori         E1000_MDIC, E1000_ICR, E1000_ICS, E1000_IMS,
1525f65ed4c1Saliguori         E1000_IMC, E1000_TCTL, E1000_TDT, PNPMMIO_SIZE
1526f65ed4c1Saliguori     };
1527f65ed4c1Saliguori 
1528eedfac6fSPaolo Bonzini     memory_region_init_io(&d->mmio, OBJECT(d), &e1000_mmio_ops, d,
1529eedfac6fSPaolo Bonzini                           "e1000-mmio", PNPMMIO_SIZE);
1530ad00a9b9SAvi Kivity     memory_region_add_coalescing(&d->mmio, 0, excluded_regs[0]);
1531f65ed4c1Saliguori     for (i = 0; excluded_regs[i] != PNPMMIO_SIZE; i++)
1532ad00a9b9SAvi Kivity         memory_region_add_coalescing(&d->mmio, excluded_regs[i] + 4,
1533ad00a9b9SAvi Kivity                                      excluded_regs[i+1] - excluded_regs[i] - 4);
1534eedfac6fSPaolo Bonzini     memory_region_init_io(&d->io, OBJECT(d), &e1000_io_ops, d, "e1000-io", IOPORT_SIZE);
15357c23b892Sbalrog }
15367c23b892Sbalrog 
1537b946a153Saliguori static void
15384b09be85Saliguori pci_e1000_uninit(PCIDevice *dev)
15394b09be85Saliguori {
1540567a3c9eSPeter Crosthwaite     E1000State *d = E1000(dev);
15414b09be85Saliguori 
1542bc72ad67SAlex Bligh     timer_del(d->autoneg_timer);
1543bc72ad67SAlex Bligh     timer_free(d->autoneg_timer);
1544e9845f09SVincenzo Maffione     timer_del(d->mit_timer);
1545e9845f09SVincenzo Maffione     timer_free(d->mit_timer);
1546948ecf21SJason Wang     qemu_del_nic(d->nic);
15474b09be85Saliguori }
15484b09be85Saliguori 
1549a03e2aecSMark McLoughlin static NetClientInfo net_e1000_info = {
15502be64a68SLaszlo Ersek     .type = NET_CLIENT_OPTIONS_KIND_NIC,
1551a03e2aecSMark McLoughlin     .size = sizeof(NICState),
1552a03e2aecSMark McLoughlin     .can_receive = e1000_can_receive,
1553a03e2aecSMark McLoughlin     .receive = e1000_receive,
155497410ddeSVincenzo Maffione     .receive_iov = e1000_receive_iov,
1555a03e2aecSMark McLoughlin     .link_status_changed = e1000_set_link_status,
1556a03e2aecSMark McLoughlin };
1557a03e2aecSMark McLoughlin 
155820302e71SMichael S. Tsirkin static void e1000_write_config(PCIDevice *pci_dev, uint32_t address,
155920302e71SMichael S. Tsirkin                                 uint32_t val, int len)
156020302e71SMichael S. Tsirkin {
156120302e71SMichael S. Tsirkin     E1000State *s = E1000(pci_dev);
156220302e71SMichael S. Tsirkin 
156320302e71SMichael S. Tsirkin     pci_default_write_config(pci_dev, address, val, len);
156420302e71SMichael S. Tsirkin 
156520302e71SMichael S. Tsirkin     if (range_covers_byte(address, len, PCI_COMMAND) &&
156620302e71SMichael S. Tsirkin         (pci_dev->config[PCI_COMMAND] & PCI_COMMAND_MASTER)) {
156720302e71SMichael S. Tsirkin         qemu_flush_queued_packets(qemu_get_queue(s->nic));
156820302e71SMichael S. Tsirkin     }
156920302e71SMichael S. Tsirkin }
157020302e71SMichael S. Tsirkin 
157120302e71SMichael S. Tsirkin 
15729af21dbeSMarkus Armbruster static void pci_e1000_realize(PCIDevice *pci_dev, Error **errp)
15737c23b892Sbalrog {
1574567a3c9eSPeter Crosthwaite     DeviceState *dev = DEVICE(pci_dev);
1575567a3c9eSPeter Crosthwaite     E1000State *d = E1000(pci_dev);
15768597f2e1SGabriel L. Somlo     PCIDeviceClass *pdc = PCI_DEVICE_GET_CLASS(pci_dev);
15777c23b892Sbalrog     uint8_t *pci_conf;
15787c23b892Sbalrog     uint16_t checksum = 0;
15797c23b892Sbalrog     int i;
1580fbdaa002SGerd Hoffmann     uint8_t *macaddr;
1581aff427a1SChris Wright 
158220302e71SMichael S. Tsirkin     pci_dev->config_write = e1000_write_config;
158320302e71SMichael S. Tsirkin 
1584b08340d5SAndreas Färber     pci_conf = pci_dev->config;
15857c23b892Sbalrog 
1586a9cbacb0SMichael S. Tsirkin     /* TODO: RST# value should be 0, PCI spec 6.2.4 */
1587a9cbacb0SMichael S. Tsirkin     pci_conf[PCI_CACHE_LINE_SIZE] = 0x10;
15887c23b892Sbalrog 
1589817e0b6fSMichael S. Tsirkin     pci_conf[PCI_INTERRUPT_PIN] = 1; /* interrupt pin A */
15907c23b892Sbalrog 
1591ad00a9b9SAvi Kivity     e1000_mmio_setup(d);
15927c23b892Sbalrog 
1593b08340d5SAndreas Färber     pci_register_bar(pci_dev, 0, PCI_BASE_ADDRESS_SPACE_MEMORY, &d->mmio);
15947c23b892Sbalrog 
1595b08340d5SAndreas Färber     pci_register_bar(pci_dev, 1, PCI_BASE_ADDRESS_SPACE_IO, &d->io);
15967c23b892Sbalrog 
15977c23b892Sbalrog     memmove(d->eeprom_data, e1000_eeprom_template,
15987c23b892Sbalrog         sizeof e1000_eeprom_template);
1599fbdaa002SGerd Hoffmann     qemu_macaddr_default_if_unset(&d->conf.macaddr);
1600fbdaa002SGerd Hoffmann     macaddr = d->conf.macaddr.a;
16017c23b892Sbalrog     for (i = 0; i < 3; i++)
16029d07d757SPaul Brook         d->eeprom_data[i] = (macaddr[2*i+1]<<8) | macaddr[2*i];
16038597f2e1SGabriel L. Somlo     d->eeprom_data[11] = d->eeprom_data[13] = pdc->device_id;
16047c23b892Sbalrog     for (i = 0; i < EEPROM_CHECKSUM_REG; i++)
16057c23b892Sbalrog         checksum += d->eeprom_data[i];
16067c23b892Sbalrog     checksum = (uint16_t) EEPROM_SUM - checksum;
16077c23b892Sbalrog     d->eeprom_data[EEPROM_CHECKSUM_REG] = checksum;
16087c23b892Sbalrog 
1609a03e2aecSMark McLoughlin     d->nic = qemu_new_nic(&net_e1000_info, &d->conf,
1610567a3c9eSPeter Crosthwaite                           object_get_typename(OBJECT(d)), dev->id, d);
16117c23b892Sbalrog 
1612b356f76dSJason Wang     qemu_format_nic_info_str(qemu_get_queue(d->nic), macaddr);
16131ca4d09aSGleb Natapov 
1614bc72ad67SAlex Bligh     d->autoneg_timer = timer_new_ms(QEMU_CLOCK_VIRTUAL, e1000_autoneg_timer, d);
1615e9845f09SVincenzo Maffione     d->mit_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, e1000_mit_timer, d);
16167c23b892Sbalrog }
16179d07d757SPaul Brook 
1618fbdaa002SGerd Hoffmann static void qdev_e1000_reset(DeviceState *dev)
1619fbdaa002SGerd Hoffmann {
1620567a3c9eSPeter Crosthwaite     E1000State *d = E1000(dev);
1621fbdaa002SGerd Hoffmann     e1000_reset(d);
1622fbdaa002SGerd Hoffmann }
1623fbdaa002SGerd Hoffmann 
162440021f08SAnthony Liguori static Property e1000_properties[] = {
1625fbdaa002SGerd Hoffmann     DEFINE_NIC_PROPERTIES(E1000State, conf),
16262af234e6SMichael S. Tsirkin     DEFINE_PROP_BIT("autonegotiation", E1000State,
16272af234e6SMichael S. Tsirkin                     compat_flags, E1000_FLAG_AUTONEG_BIT, true),
1628e9845f09SVincenzo Maffione     DEFINE_PROP_BIT("mitigation", E1000State,
1629e9845f09SVincenzo Maffione                     compat_flags, E1000_FLAG_MIT_BIT, true),
1630fbdaa002SGerd Hoffmann     DEFINE_PROP_END_OF_LIST(),
163140021f08SAnthony Liguori };
163240021f08SAnthony Liguori 
16338597f2e1SGabriel L. Somlo typedef struct E1000Info {
16348597f2e1SGabriel L. Somlo     const char *name;
16358597f2e1SGabriel L. Somlo     uint16_t   device_id;
16368597f2e1SGabriel L. Somlo     uint8_t    revision;
16378597f2e1SGabriel L. Somlo     uint16_t   phy_id2;
16388597f2e1SGabriel L. Somlo } E1000Info;
16398597f2e1SGabriel L. Somlo 
164040021f08SAnthony Liguori static void e1000_class_init(ObjectClass *klass, void *data)
164140021f08SAnthony Liguori {
164239bffca2SAnthony Liguori     DeviceClass *dc = DEVICE_CLASS(klass);
164340021f08SAnthony Liguori     PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
16448597f2e1SGabriel L. Somlo     E1000BaseClass *e = E1000_DEVICE_CLASS(klass);
16458597f2e1SGabriel L. Somlo     const E1000Info *info = data;
164640021f08SAnthony Liguori 
16479af21dbeSMarkus Armbruster     k->realize = pci_e1000_realize;
164840021f08SAnthony Liguori     k->exit = pci_e1000_uninit;
1649c45e5b5bSGerd Hoffmann     k->romfile = "efi-e1000.rom";
165040021f08SAnthony Liguori     k->vendor_id = PCI_VENDOR_ID_INTEL;
16518597f2e1SGabriel L. Somlo     k->device_id = info->device_id;
16528597f2e1SGabriel L. Somlo     k->revision = info->revision;
16538597f2e1SGabriel L. Somlo     e->phy_id2 = info->phy_id2;
165440021f08SAnthony Liguori     k->class_id = PCI_CLASS_NETWORK_ETHERNET;
1655125ee0edSMarcel Apfelbaum     set_bit(DEVICE_CATEGORY_NETWORK, dc->categories);
165639bffca2SAnthony Liguori     dc->desc = "Intel Gigabit Ethernet";
165739bffca2SAnthony Liguori     dc->reset = qdev_e1000_reset;
165839bffca2SAnthony Liguori     dc->vmsd = &vmstate_e1000;
165939bffca2SAnthony Liguori     dc->props = e1000_properties;
1660fbdaa002SGerd Hoffmann }
166140021f08SAnthony Liguori 
16625df3bf62SGonglei static void e1000_instance_init(Object *obj)
16635df3bf62SGonglei {
16645df3bf62SGonglei     E1000State *n = E1000(obj);
16655df3bf62SGonglei     device_add_bootindex_property(obj, &n->conf.bootindex,
16665df3bf62SGonglei                                   "bootindex", "/ethernet-phy@0",
16675df3bf62SGonglei                                   DEVICE(n), NULL);
16685df3bf62SGonglei }
16695df3bf62SGonglei 
16708597f2e1SGabriel L. Somlo static const TypeInfo e1000_base_info = {
16718597f2e1SGabriel L. Somlo     .name          = TYPE_E1000_BASE,
167239bffca2SAnthony Liguori     .parent        = TYPE_PCI_DEVICE,
167339bffca2SAnthony Liguori     .instance_size = sizeof(E1000State),
16745df3bf62SGonglei     .instance_init = e1000_instance_init,
16758597f2e1SGabriel L. Somlo     .class_size    = sizeof(E1000BaseClass),
16768597f2e1SGabriel L. Somlo     .abstract      = true,
16778597f2e1SGabriel L. Somlo };
16788597f2e1SGabriel L. Somlo 
16798597f2e1SGabriel L. Somlo static const E1000Info e1000_devices[] = {
16808597f2e1SGabriel L. Somlo     {
168183044020SJason Wang         .name      = "e1000",
16828597f2e1SGabriel L. Somlo         .device_id = E1000_DEV_ID_82540EM,
16838597f2e1SGabriel L. Somlo         .revision  = 0x03,
16848597f2e1SGabriel L. Somlo         .phy_id2   = E1000_PHY_ID2_8254xx_DEFAULT,
16858597f2e1SGabriel L. Somlo     },
16868597f2e1SGabriel L. Somlo     {
16878597f2e1SGabriel L. Somlo         .name      = "e1000-82544gc",
16888597f2e1SGabriel L. Somlo         .device_id = E1000_DEV_ID_82544GC_COPPER,
16898597f2e1SGabriel L. Somlo         .revision  = 0x03,
16908597f2e1SGabriel L. Somlo         .phy_id2   = E1000_PHY_ID2_82544x,
16918597f2e1SGabriel L. Somlo     },
16928597f2e1SGabriel L. Somlo     {
16938597f2e1SGabriel L. Somlo         .name      = "e1000-82545em",
16948597f2e1SGabriel L. Somlo         .device_id = E1000_DEV_ID_82545EM_COPPER,
16958597f2e1SGabriel L. Somlo         .revision  = 0x03,
16968597f2e1SGabriel L. Somlo         .phy_id2   = E1000_PHY_ID2_8254xx_DEFAULT,
16978597f2e1SGabriel L. Somlo     },
16988597f2e1SGabriel L. Somlo };
16998597f2e1SGabriel L. Somlo 
170083f7d43aSAndreas Färber static void e1000_register_types(void)
17019d07d757SPaul Brook {
17028597f2e1SGabriel L. Somlo     int i;
17038597f2e1SGabriel L. Somlo 
17048597f2e1SGabriel L. Somlo     type_register_static(&e1000_base_info);
17058597f2e1SGabriel L. Somlo     for (i = 0; i < ARRAY_SIZE(e1000_devices); i++) {
17068597f2e1SGabriel L. Somlo         const E1000Info *info = &e1000_devices[i];
17078597f2e1SGabriel L. Somlo         TypeInfo type_info = {};
17088597f2e1SGabriel L. Somlo 
17098597f2e1SGabriel L. Somlo         type_info.name = info->name;
17108597f2e1SGabriel L. Somlo         type_info.parent = TYPE_E1000_BASE;
17118597f2e1SGabriel L. Somlo         type_info.class_data = (void *)info;
17128597f2e1SGabriel L. Somlo         type_info.class_init = e1000_class_init;
17135df3bf62SGonglei         type_info.instance_init = e1000_instance_init;
17148597f2e1SGabriel L. Somlo 
17158597f2e1SGabriel L. Somlo         type_register(&type_info);
17168597f2e1SGabriel L. Somlo     }
17179d07d757SPaul Brook }
17189d07d757SPaul Brook 
171983f7d43aSAndreas Färber type_init(e1000_register_types)
1720