ne2000.c 22.7 KB
Newer Older
B
bellard 已提交
1 2
/*
 * QEMU NE2000 emulation
3
 *
B
bellard 已提交
4
 * Copyright (c) 2003-2004 Fabrice Bellard
5
 *
B
bellard 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
P
pbrook 已提交
24 25 26
#include "hw.h"
#include "pci.h"
#include "net.h"
G
Gerd Hoffmann 已提交
27
#include "ne2000.h"
28
#include "loader.h"
B
bellard 已提交
29 30 31 32

/* debug NE2000 card */
//#define DEBUG_NE2000

B
bellard 已提交
33
#define MAX_ETH_FRAME_SIZE 1514
B
bellard 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

#define E8390_CMD	0x00  /* The command register (for all pages) */
/* Page 0 register offsets. */
#define EN0_CLDALO	0x01	/* Low byte of current local dma addr  RD */
#define EN0_STARTPG	0x01	/* Starting page of ring bfr WR */
#define EN0_CLDAHI	0x02	/* High byte of current local dma addr  RD */
#define EN0_STOPPG	0x02	/* Ending page +1 of ring bfr WR */
#define EN0_BOUNDARY	0x03	/* Boundary page of ring bfr RD WR */
#define EN0_TSR		0x04	/* Transmit status reg RD */
#define EN0_TPSR	0x04	/* Transmit starting page WR */
#define EN0_NCR		0x05	/* Number of collision reg RD */
#define EN0_TCNTLO	0x05	/* Low  byte of tx byte count WR */
#define EN0_FIFO	0x06	/* FIFO RD */
#define EN0_TCNTHI	0x06	/* High byte of tx byte count WR */
#define EN0_ISR		0x07	/* Interrupt status reg RD WR */
#define EN0_CRDALO	0x08	/* low byte of current remote dma address RD */
#define EN0_RSARLO	0x08	/* Remote start address reg 0 */
#define EN0_CRDAHI	0x09	/* high byte, current remote dma address RD */
#define EN0_RSARHI	0x09	/* Remote start address reg 1 */
#define EN0_RCNTLO	0x0a	/* Remote byte count reg WR */
B
bellard 已提交
54
#define EN0_RTL8029ID0	0x0a	/* Realtek ID byte #1 RD */
B
bellard 已提交
55
#define EN0_RCNTHI	0x0b	/* Remote byte count reg WR */
B
bellard 已提交
56
#define EN0_RTL8029ID1	0x0b	/* Realtek ID byte #2 RD */
B
bellard 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69
#define EN0_RSR		0x0c	/* rx status reg RD */
#define EN0_RXCR	0x0c	/* RX configuration reg WR */
#define EN0_TXCR	0x0d	/* TX configuration reg WR */
#define EN0_COUNTER0	0x0d	/* Rcv alignment error counter RD */
#define EN0_DCFG	0x0e	/* Data configuration reg WR */
#define EN0_COUNTER1	0x0e	/* Rcv CRC error counter RD */
#define EN0_IMR		0x0f	/* Interrupt mask reg WR */
#define EN0_COUNTER2	0x0f	/* Rcv missed frame error counter RD */

#define EN1_PHYS        0x11
#define EN1_CURPAG      0x17
#define EN1_MULT        0x18

70 71 72
#define EN2_STARTPG	0x21	/* Starting page of ring bfr RD */
#define EN2_STOPPG	0x22	/* Ending page +1 of ring bfr RD */

B
bellard 已提交
73 74 75 76 77
#define EN3_CONFIG0	0x33
#define EN3_CONFIG1	0x34
#define EN3_CONFIG2	0x35
#define EN3_CONFIG3	0x36

B
bellard 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
/*  Register accessed at EN_CMD, the 8390 base addr.  */
#define E8390_STOP	0x01	/* Stop and reset the chip */
#define E8390_START	0x02	/* Start the chip, clear reset */
#define E8390_TRANS	0x04	/* Transmit a frame */
#define E8390_RREAD	0x08	/* Remote read */
#define E8390_RWRITE	0x10	/* Remote write  */
#define E8390_NODMA	0x20	/* Remote DMA */
#define E8390_PAGE0	0x00	/* Select page chip registers */
#define E8390_PAGE1	0x40	/* using the two high-order bits */
#define E8390_PAGE2	0x80	/* Page 3 is invalid. */

/* Bits in EN0_ISR - Interrupt status register */
#define ENISR_RX	0x01	/* Receiver, no error */
#define ENISR_TX	0x02	/* Transmitter, no error */
#define ENISR_RX_ERR	0x04	/* Receiver, with error */
#define ENISR_TX_ERR	0x08	/* Transmitter, with error */
#define ENISR_OVER	0x10	/* Receiver overwrote the ring */
#define ENISR_COUNTERS	0x20	/* Counters need emptying */
#define ENISR_RDC	0x40	/* remote dma complete */
#define ENISR_RESET	0x80	/* Reset completed */
#define ENISR_ALL	0x3f	/* Interrupts we will enable */

/* Bits in received packet status byte and EN0_RSR*/
#define ENRSR_RXOK	0x01	/* Received a good packet */
#define ENRSR_CRC	0x02	/* CRC error */
#define ENRSR_FAE	0x04	/* frame alignment error */
#define ENRSR_FO	0x08	/* FIFO overrun */
#define ENRSR_MPA	0x10	/* missed pkt */
#define ENRSR_PHY	0x20	/* physical/multicast address */
#define ENRSR_DIS	0x40	/* receiver disable. set in monitor mode */
#define ENRSR_DEF	0x80	/* deferring */

/* Transmitted packet status, EN0_TSR. */
#define ENTSR_PTX 0x01	/* Packet transmitted without error */
#define ENTSR_ND  0x02	/* The transmit wasn't deferred. */
#define ENTSR_COL 0x04	/* The transmit collided at least once. */
#define ENTSR_ABT 0x08  /* The transmit collided 16 times, and was deferred. */
#define ENTSR_CRS 0x10	/* The carrier sense was lost. */
#define ENTSR_FU  0x20  /* A "FIFO underrun" occurred during transmit. */
#define ENTSR_CDH 0x40	/* The collision detect "heartbeat" signal was lost. */
#define ENTSR_OWC 0x80  /* There was an out-of-window collision. */

120 121 122 123 124
typedef struct PCINE2000State {
    PCIDevice dev;
    NE2000State ne2000;
} PCINE2000State;

G
Gerd Hoffmann 已提交
125
void ne2000_reset(NE2000State *s)
B
bellard 已提交
126 127 128 129
{
    int i;

    s->isr = ENISR_RESET;
130
    memcpy(s->mem, &s->c.macaddr, 6);
B
bellard 已提交
131 132 133 134 135 136 137 138 139 140 141 142 143
    s->mem[14] = 0x57;
    s->mem[15] = 0x57;

    /* duplicate prom data */
    for(i = 15;i >= 0; i--) {
        s->mem[2 * i] = s->mem[i];
        s->mem[2 * i + 1] = s->mem[i];
    }
}

static void ne2000_update_irq(NE2000State *s)
{
    int isr;
144
    isr = (s->isr & s->imr) & 0x7f;
145
#if defined(DEBUG_NE2000)
P
pbrook 已提交
146 147
    printf("NE2000: Set IRQ to %d (%02x %02x)\n",
	   isr ? 1 : 0, s->isr, s->imr);
148
#endif
P
pbrook 已提交
149
    qemu_set_irq(s->irq, (isr != 0));
B
bellard 已提交
150 151
}

B
bellard 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
#define POLYNOMIAL 0x04c11db6

/* From FreeBSD */
/* XXX: optimize */
static int compute_mcast_idx(const uint8_t *ep)
{
    uint32_t crc;
    int carry, i, j;
    uint8_t b;

    crc = 0xffffffff;
    for (i = 0; i < 6; i++) {
        b = *ep++;
        for (j = 0; j < 8; j++) {
            carry = ((crc & 0x80000000L) ? 1 : 0) ^ (b & 0x01);
            crc <<= 1;
            b >>= 1;
            if (carry)
                crc = ((crc ^ POLYNOMIAL) | carry);
        }
    }
    return (crc >> 26);
}

176
static int ne2000_buffer_full(NE2000State *s)
B
bellard 已提交
177 178
{
    int avail, index, boundary;
179

B
bellard 已提交
180 181
    index = s->curpag << 8;
    boundary = s->boundary << 8;
T
ths 已提交
182
    if (index < boundary)
B
bellard 已提交
183 184 185 186
        avail = boundary - index;
    else
        avail = (s->stop - s->start) - (index - boundary);
    if (avail < (MAX_ETH_FRAME_SIZE + 4))
187 188 189 190
        return 1;
    return 0;
}

M
Mark McLoughlin 已提交
191
int ne2000_can_receive(VLANClientState *nc)
192
{
M
Mark McLoughlin 已提交
193
    NE2000State *s = DO_UPCAST(NICState, nc, nc)->opaque;
194

195
    if (s->cmd & E8390_STOP)
196
        return 1;
197
    return !ne2000_buffer_full(s);
B
bellard 已提交
198 199
}

B
bellard 已提交
200 201
#define MIN_BUF_SIZE 60

M
Mark McLoughlin 已提交
202
ssize_t ne2000_receive(VLANClientState *nc, const uint8_t *buf, size_t size_)
B
bellard 已提交
203
{
M
Mark McLoughlin 已提交
204
    NE2000State *s = DO_UPCAST(NICState, nc, nc)->opaque;
205
    int size = size_;
B
bellard 已提交
206
    uint8_t *p;
207
    unsigned int total_len, next, avail, len, index, mcast_idx;
B
bellard 已提交
208
    uint8_t buf1[60];
209
    static const uint8_t broadcast_macaddr[6] =
B
bellard 已提交
210
        { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
211

B
bellard 已提交
212 213 214 215
#if defined(DEBUG_NE2000)
    printf("NE2000: received len=%d\n", size);
#endif

216
    if (s->cmd & E8390_STOP || ne2000_buffer_full(s))
217
        return -1;
218

B
bellard 已提交
219 220 221 222 223 224 225
    /* XXX: check this */
    if (s->rxcr & 0x10) {
        /* promiscuous: receive all */
    } else {
        if (!memcmp(buf,  broadcast_macaddr, 6)) {
            /* broadcast address */
            if (!(s->rxcr & 0x04))
226
                return size;
B
bellard 已提交
227 228 229
        } else if (buf[0] & 0x01) {
            /* multicast */
            if (!(s->rxcr & 0x08))
230
                return size;
B
bellard 已提交
231 232
            mcast_idx = compute_mcast_idx(buf);
            if (!(s->mult[mcast_idx >> 3] & (1 << (mcast_idx & 7))))
233
                return size;
B
bellard 已提交
234
        } else if (s->mem[0] == buf[0] &&
235 236 237 238
                   s->mem[2] == buf[1] &&
                   s->mem[4] == buf[2] &&
                   s->mem[6] == buf[3] &&
                   s->mem[8] == buf[4] &&
B
bellard 已提交
239 240 241
                   s->mem[10] == buf[5]) {
            /* match */
        } else {
242
            return size;
B
bellard 已提交
243 244 245 246
        }
    }


B
bellard 已提交
247 248 249 250 251 252 253 254
    /* if too small buffer, then expand it */
    if (size < MIN_BUF_SIZE) {
        memcpy(buf1, buf, size);
        memset(buf1 + size, 0, MIN_BUF_SIZE - size);
        buf = buf1;
        size = MIN_BUF_SIZE;
    }

B
bellard 已提交
255 256 257 258 259 260 261 262 263
    index = s->curpag << 8;
    /* 4 bytes for header */
    total_len = size + 4;
    /* address for next packet (4 bytes for CRC) */
    next = index + ((total_len + 4 + 255) & ~0xff);
    if (next >= s->stop)
        next -= (s->stop - s->start);
    /* prepare packet header */
    p = s->mem + index;
264 265 266 267 268
    s->rsr = ENRSR_RXOK; /* receive status */
    /* XXX: check this */
    if (buf[0] & 0x01)
        s->rsr |= ENRSR_PHY;
    p[0] = s->rsr;
B
bellard 已提交
269 270 271 272 273 274 275
    p[1] = next >> 8;
    p[2] = total_len;
    p[3] = total_len >> 8;
    index += 4;

    /* write packet data */
    while (size > 0) {
276 277 278 279
        if (index <= s->stop)
            avail = s->stop - index;
        else
            avail = 0;
B
bellard 已提交
280 281 282 283 284 285 286 287 288 289 290
        len = size;
        if (len > avail)
            len = avail;
        memcpy(s->mem + index, buf, len);
        buf += len;
        index += len;
        if (index == s->stop)
            index = s->start;
        size -= len;
    }
    s->curpag = next >> 8;
291

T
ths 已提交
292
    /* now we can signal we have received something */
B
bellard 已提交
293 294
    s->isr |= ENISR_RX;
    ne2000_update_irq(s);
295 296

    return size_;
B
bellard 已提交
297 298
}

G
Gerd Hoffmann 已提交
299
void ne2000_ioport_write(void *opaque, uint32_t addr, uint32_t val)
B
bellard 已提交
300
{
B
bellard 已提交
301
    NE2000State *s = opaque;
302
    int offset, page, index;
B
bellard 已提交
303 304 305 306 307 308 309 310

    addr &= 0xf;
#ifdef DEBUG_NE2000
    printf("NE2000: write addr=0x%x val=0x%02x\n", addr, val);
#endif
    if (addr == E8390_CMD) {
        /* control register */
        s->cmd = val;
311
        if (!(val & E8390_STOP)) { /* START bit makes no sense on RTL8029... */
312
            s->isr &= ~ENISR_RESET;
T
ths 已提交
313
            /* test specific case: zero length transfer */
B
bellard 已提交
314 315 316 317 318 319
            if ((val & (E8390_RREAD | E8390_RWRITE)) &&
                s->rcnt == 0) {
                s->isr |= ENISR_RDC;
                ne2000_update_irq(s);
            }
            if (val & E8390_TRANS) {
320
                index = (s->tpsr << 8);
321
                /* XXX: next 2 lines are a hack to make netware 3.11 work */
322 323 324 325
                if (index >= NE2000_PMEM_END)
                    index -= NE2000_PMEM_SIZE;
                /* fail safe: check range on the transmitted length  */
                if (index + s->tcnt <= NE2000_PMEM_END) {
M
Mark McLoughlin 已提交
326
                    qemu_send_packet(&s->nic->nc, s->mem + index, s->tcnt);
327
                }
T
ths 已提交
328
                /* signal end of transfer */
B
bellard 已提交
329 330
                s->tsr = ENTSR_PTX;
                s->isr |= ENISR_TX;
331
                s->cmd &= ~E8390_TRANS;
B
bellard 已提交
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
                ne2000_update_irq(s);
            }
        }
    } else {
        page = s->cmd >> 6;
        offset = addr | (page << 4);
        switch(offset) {
        case EN0_STARTPG:
            s->start = val << 8;
            break;
        case EN0_STOPPG:
            s->stop = val << 8;
            break;
        case EN0_BOUNDARY:
            s->boundary = val;
            break;
        case EN0_IMR:
            s->imr = val;
            ne2000_update_irq(s);
            break;
        case EN0_TPSR:
            s->tpsr = val;
            break;
        case EN0_TCNTLO:
            s->tcnt = (s->tcnt & 0xff00) | val;
            break;
        case EN0_TCNTHI:
            s->tcnt = (s->tcnt & 0x00ff) | (val << 8);
            break;
        case EN0_RSARLO:
            s->rsar = (s->rsar & 0xff00) | val;
            break;
        case EN0_RSARHI:
            s->rsar = (s->rsar & 0x00ff) | (val << 8);
            break;
        case EN0_RCNTLO:
            s->rcnt = (s->rcnt & 0xff00) | val;
            break;
        case EN0_RCNTHI:
            s->rcnt = (s->rcnt & 0x00ff) | (val << 8);
            break;
B
bellard 已提交
373 374 375
        case EN0_RXCR:
            s->rxcr = val;
            break;
B
bellard 已提交
376 377 378 379
        case EN0_DCFG:
            s->dcfg = val;
            break;
        case EN0_ISR:
380
            s->isr &= ~(val & 0x7f);
B
bellard 已提交
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
            ne2000_update_irq(s);
            break;
        case EN1_PHYS ... EN1_PHYS + 5:
            s->phys[offset - EN1_PHYS] = val;
            break;
        case EN1_CURPAG:
            s->curpag = val;
            break;
        case EN1_MULT ... EN1_MULT + 7:
            s->mult[offset - EN1_MULT] = val;
            break;
        }
    }
}

G
Gerd Hoffmann 已提交
396
uint32_t ne2000_ioport_read(void *opaque, uint32_t addr)
B
bellard 已提交
397
{
B
bellard 已提交
398
    NE2000State *s = opaque;
B
bellard 已提交
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
    int offset, page, ret;

    addr &= 0xf;
    if (addr == E8390_CMD) {
        ret = s->cmd;
    } else {
        page = s->cmd >> 6;
        offset = addr | (page << 4);
        switch(offset) {
        case EN0_TSR:
            ret = s->tsr;
            break;
        case EN0_BOUNDARY:
            ret = s->boundary;
            break;
        case EN0_ISR:
            ret = s->isr;
            break;
417 418 419 420 421 422
	case EN0_RSARLO:
	    ret = s->rsar & 0x00ff;
	    break;
	case EN0_RSARHI:
	    ret = s->rsar >> 8;
	    break;
B
bellard 已提交
423 424 425 426 427 428 429 430 431
        case EN1_PHYS ... EN1_PHYS + 5:
            ret = s->phys[offset - EN1_PHYS];
            break;
        case EN1_CURPAG:
            ret = s->curpag;
            break;
        case EN1_MULT ... EN1_MULT + 7:
            ret = s->mult[offset - EN1_MULT];
            break;
432 433 434
        case EN0_RSR:
            ret = s->rsr;
            break;
435 436 437 438 439 440
        case EN2_STARTPG:
            ret = s->start >> 8;
            break;
        case EN2_STOPPG:
            ret = s->stop >> 8;
            break;
B
bellard 已提交
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455
	case EN0_RTL8029ID0:
	    ret = 0x50;
	    break;
	case EN0_RTL8029ID1:
	    ret = 0x43;
	    break;
	case EN3_CONFIG0:
	    ret = 0;		/* 10baseT media */
	    break;
	case EN3_CONFIG2:
	    ret = 0x40;		/* 10baseT active */
	    break;
	case EN3_CONFIG3:
	    ret = 0x40;		/* Full duplex */
	    break;
B
bellard 已提交
456 457 458 459 460 461 462 463 464 465 466
        default:
            ret = 0x00;
            break;
        }
    }
#ifdef DEBUG_NE2000
    printf("NE2000: read addr=0x%x val=%02x\n", addr, ret);
#endif
    return ret;
}

467
static inline void ne2000_mem_writeb(NE2000State *s, uint32_t addr,
B
bellard 已提交
468
                                     uint32_t val)
469
{
470
    if (addr < 32 ||
471 472 473 474 475
        (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
        s->mem[addr] = val;
    }
}

476
static inline void ne2000_mem_writew(NE2000State *s, uint32_t addr,
477 478 479
                                     uint32_t val)
{
    addr &= ~1; /* XXX: check exact behaviour if not even */
480
    if (addr < 32 ||
481
        (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
B
bellard 已提交
482 483 484 485
        *(uint16_t *)(s->mem + addr) = cpu_to_le16(val);
    }
}

486
static inline void ne2000_mem_writel(NE2000State *s, uint32_t addr,
B
bellard 已提交
487 488
                                     uint32_t val)
{
489
    addr &= ~1; /* XXX: check exact behaviour if not even */
490
    if (addr < 32 ||
B
bellard 已提交
491
        (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
492
        cpu_to_le32wu((uint32_t *)(s->mem + addr), val);
493 494 495 496 497
    }
}

static inline uint32_t ne2000_mem_readb(NE2000State *s, uint32_t addr)
{
498
    if (addr < 32 ||
499 500 501 502 503 504 505 506 507 508
        (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
        return s->mem[addr];
    } else {
        return 0xff;
    }
}

static inline uint32_t ne2000_mem_readw(NE2000State *s, uint32_t addr)
{
    addr &= ~1; /* XXX: check exact behaviour if not even */
509
    if (addr < 32 ||
510
        (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
B
bellard 已提交
511
        return le16_to_cpu(*(uint16_t *)(s->mem + addr));
512 513 514 515 516
    } else {
        return 0xffff;
    }
}

B
bellard 已提交
517 518
static inline uint32_t ne2000_mem_readl(NE2000State *s, uint32_t addr)
{
519
    addr &= ~1; /* XXX: check exact behaviour if not even */
520
    if (addr < 32 ||
B
bellard 已提交
521
        (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
522
        return le32_to_cpupu((uint32_t *)(s->mem + addr));
B
bellard 已提交
523 524 525 526 527
    } else {
        return 0xffffffff;
    }
}

B
bellard 已提交
528 529 530 531 532 533 534 535 536 537
static inline void ne2000_dma_update(NE2000State *s, int len)
{
    s->rsar += len;
    /* wrap */
    /* XXX: check what to do if rsar > stop */
    if (s->rsar == s->stop)
        s->rsar = s->start;

    if (s->rcnt <= len) {
        s->rcnt = 0;
T
ths 已提交
538
        /* signal end of transfer */
B
bellard 已提交
539 540 541 542 543 544 545
        s->isr |= ENISR_RDC;
        ne2000_update_irq(s);
    } else {
        s->rcnt -= len;
    }
}

G
Gerd Hoffmann 已提交
546
void ne2000_asic_ioport_write(void *opaque, uint32_t addr, uint32_t val)
B
bellard 已提交
547
{
B
bellard 已提交
548
    NE2000State *s = opaque;
B
bellard 已提交
549 550 551 552

#ifdef DEBUG_NE2000
    printf("NE2000: asic write val=0x%04x\n", val);
#endif
553
    if (s->rcnt == 0)
B
bellard 已提交
554
        return;
B
bellard 已提交
555 556
    if (s->dcfg & 0x01) {
        /* 16 bit access */
557
        ne2000_mem_writew(s, s->rsar, val);
B
bellard 已提交
558
        ne2000_dma_update(s, 2);
B
bellard 已提交
559 560
    } else {
        /* 8 bit access */
561
        ne2000_mem_writeb(s, s->rsar, val);
B
bellard 已提交
562
        ne2000_dma_update(s, 1);
B
bellard 已提交
563 564 565
    }
}

G
Gerd Hoffmann 已提交
566
uint32_t ne2000_asic_ioport_read(void *opaque, uint32_t addr)
B
bellard 已提交
567
{
B
bellard 已提交
568
    NE2000State *s = opaque;
B
bellard 已提交
569 570 571 572
    int ret;

    if (s->dcfg & 0x01) {
        /* 16 bit access */
573
        ret = ne2000_mem_readw(s, s->rsar);
B
bellard 已提交
574
        ne2000_dma_update(s, 2);
B
bellard 已提交
575 576
    } else {
        /* 8 bit access */
577
        ret = ne2000_mem_readb(s, s->rsar);
B
bellard 已提交
578
        ne2000_dma_update(s, 1);
B
bellard 已提交
579 580 581 582 583 584 585
    }
#ifdef DEBUG_NE2000
    printf("NE2000: asic read val=0x%04x\n", ret);
#endif
    return ret;
}

B
bellard 已提交
586 587 588 589 590 591 592 593
static void ne2000_asic_ioport_writel(void *opaque, uint32_t addr, uint32_t val)
{
    NE2000State *s = opaque;

#ifdef DEBUG_NE2000
    printf("NE2000: asic writel val=0x%04x\n", val);
#endif
    if (s->rcnt == 0)
B
bellard 已提交
594
        return;
B
bellard 已提交
595 596
    /* 32 bit access */
    ne2000_mem_writel(s, s->rsar, val);
B
bellard 已提交
597
    ne2000_dma_update(s, 4);
B
bellard 已提交
598 599 600 601 602 603 604 605 606
}

static uint32_t ne2000_asic_ioport_readl(void *opaque, uint32_t addr)
{
    NE2000State *s = opaque;
    int ret;

    /* 32 bit access */
    ret = ne2000_mem_readl(s, s->rsar);
B
bellard 已提交
607
    ne2000_dma_update(s, 4);
B
bellard 已提交
608 609 610 611 612 613
#ifdef DEBUG_NE2000
    printf("NE2000: asic readl val=0x%04x\n", ret);
#endif
    return ret;
}

G
Gerd Hoffmann 已提交
614
void ne2000_reset_ioport_write(void *opaque, uint32_t addr, uint32_t val)
B
bellard 已提交
615 616 617 618
{
    /* nothing to do (end of reset pulse) */
}

G
Gerd Hoffmann 已提交
619
uint32_t ne2000_reset_ioport_read(void *opaque, uint32_t addr)
B
bellard 已提交
620
{
B
bellard 已提交
621
    NE2000State *s = opaque;
B
bellard 已提交
622 623 624 625
    ne2000_reset(s);
    return 0;
}

J
Juan Quintela 已提交
626
static int ne2000_post_load(void* opaque, int version_id)
627
{
J
Juan Quintela 已提交
628
    NE2000State* s = opaque;
629

J
Juan Quintela 已提交
630 631 632 633
    if (version_id < 2) {
        s->rxcr = 0x0c;
    }
    return 0;
634 635
}

J
Juan Quintela 已提交
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
const VMStateDescription vmstate_ne2000 = {
    .name = "ne2000",
    .version_id = 2,
    .minimum_version_id = 0,
    .minimum_version_id_old = 0,
    .post_load = ne2000_post_load,
    .fields      = (VMStateField []) {
        VMSTATE_UINT8_V(rxcr, NE2000State, 2),
        VMSTATE_UINT8(cmd, NE2000State),
        VMSTATE_UINT32(start, NE2000State),
        VMSTATE_UINT32(stop, NE2000State),
        VMSTATE_UINT8(boundary, NE2000State),
        VMSTATE_UINT8(tsr, NE2000State),
        VMSTATE_UINT8(tpsr, NE2000State),
        VMSTATE_UINT16(tcnt, NE2000State),
        VMSTATE_UINT16(rcnt, NE2000State),
        VMSTATE_UINT32(rsar, NE2000State),
        VMSTATE_UINT8(rsr, NE2000State),
        VMSTATE_UINT8(isr, NE2000State),
        VMSTATE_UINT8(dcfg, NE2000State),
        VMSTATE_UINT8(imr, NE2000State),
        VMSTATE_BUFFER(phys, NE2000State),
        VMSTATE_UINT8(curpag, NE2000State),
        VMSTATE_BUFFER(mult, NE2000State),
        VMSTATE_UNUSED(4), /* was irq */
        VMSTATE_BUFFER(mem, NE2000State),
        VMSTATE_END_OF_LIST()
    }
};
665

J
Juan Quintela 已提交
666 667 668 669 670 671 672 673 674 675 676
const VMStateDescription vmstate_pci_ne2000 = {
    .name = "ne2000",
    .version_id = 3,
    .minimum_version_id = 3,
    .minimum_version_id_old = 3,
    .fields      = (VMStateField []) {
        VMSTATE_PCI_DEVICE(dev, PCINE2000State),
        VMSTATE_STRUCT(ne2000, PCINE2000State, 0, vmstate_ne2000, NE2000State),
        VMSTATE_END_OF_LIST()
    }
};
677

B
bellard 已提交
678 679 680
/***********************************************************/
/* PCI NE2000 definitions */

681
static void ne2000_map(PCIDevice *pci_dev, int region_num,
682
                       pcibus_t addr, pcibus_t size, int type)
B
bellard 已提交
683
{
684
    PCINE2000State *d = DO_UPCAST(PCINE2000State, dev, pci_dev);
B
bellard 已提交
685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
    NE2000State *s = &d->ne2000;

    register_ioport_write(addr, 16, 1, ne2000_ioport_write, s);
    register_ioport_read(addr, 16, 1, ne2000_ioport_read, s);

    register_ioport_write(addr + 0x10, 1, 1, ne2000_asic_ioport_write, s);
    register_ioport_read(addr + 0x10, 1, 1, ne2000_asic_ioport_read, s);
    register_ioport_write(addr + 0x10, 2, 2, ne2000_asic_ioport_write, s);
    register_ioport_read(addr + 0x10, 2, 2, ne2000_asic_ioport_read, s);
    register_ioport_write(addr + 0x10, 4, 4, ne2000_asic_ioport_writel, s);
    register_ioport_read(addr + 0x10, 4, 4, ne2000_asic_ioport_readl, s);

    register_ioport_write(addr + 0x1f, 1, 1, ne2000_reset_ioport_write, s);
    register_ioport_read(addr + 0x1f, 1, 1, ne2000_reset_ioport_read, s);
}

M
Mark McLoughlin 已提交
701
static void ne2000_cleanup(VLANClientState *nc)
702
{
M
Mark McLoughlin 已提交
703
    NE2000State *s = DO_UPCAST(NICState, nc, nc)->opaque;
704

M
Mark McLoughlin 已提交
705
    s->nic = NULL;
706 707
}

M
Mark McLoughlin 已提交
708 709 710 711 712 713 714 715
static NetClientInfo net_ne2000_info = {
    .type = NET_CLIENT_TYPE_NIC,
    .size = sizeof(NICState),
    .can_receive = ne2000_can_receive,
    .receive = ne2000_receive,
    .cleanup = ne2000_cleanup,
};

716
static int pci_ne2000_init(PCIDevice *pci_dev)
B
bellard 已提交
717
{
718
    PCINE2000State *d = DO_UPCAST(PCINE2000State, dev, pci_dev);
B
bellard 已提交
719 720
    NE2000State *s;
    uint8_t *pci_conf;
721

B
bellard 已提交
722
    pci_conf = d->dev.config;
723
    pci_config_set_vendor_id(pci_conf, PCI_VENDOR_ID_REALTEK);
724
    pci_config_set_device_id(pci_conf, PCI_DEVICE_ID_REALTEK_8029);
725
    pci_config_set_class(pci_conf, PCI_CLASS_NETWORK_ETHERNET);
I
Isaku Yamahata 已提交
726
    pci_conf[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
B
bellard 已提交
727
    pci_conf[0x3d] = 1; // interrupt pin 0
728

729
    pci_register_bar(&d->dev, 0, 0x100,
730
                           PCI_BASE_ADDRESS_SPACE_IO, ne2000_map);
B
bellard 已提交
731
    s = &d->ne2000;
P
pbrook 已提交
732
    s->irq = d->dev.irq[0];
733 734

    qemu_macaddr_default_if_unset(&s->c.macaddr);
B
bellard 已提交
735
    ne2000_reset(s);
M
Mark McLoughlin 已提交
736 737 738 739

    s->nic = qemu_new_nic(&net_ne2000_info, &s->c,
                          pci_dev->qdev.info->name, pci_dev->qdev.id, s);
    qemu_format_nic_info_str(&s->nic->nc, s->c.macaddr.a);
740

741 742 743 744 745 746 747 748
    if (!pci_dev->qdev.hotplugged) {
        static int loaded = 0;
        if (!loaded) {
            rom_add_option("pxe-ne2k_pci.bin");
            loaded = 1;
        }
    }

J
Juan Quintela 已提交
749
    vmstate_register(-1, &vmstate_pci_ne2000, d);
750
    return 0;
P
Paul Brook 已提交
751
}
752

753 754 755 756 757
static int pci_ne2000_exit(PCIDevice *pci_dev)
{
    PCINE2000State *d = DO_UPCAST(PCINE2000State, dev, pci_dev);
    NE2000State *s = &d->ne2000;

J
Juan Quintela 已提交
758
    vmstate_unregister(&vmstate_pci_ne2000, s);
M
Mark McLoughlin 已提交
759
    qemu_del_vlan_client(&s->nic->nc);
760 761 762
    return 0;
}

763
static PCIDeviceInfo ne2000_info = {
764 765 766 767 768 769 770 771
    .qdev.name  = "ne2k_pci",
    .qdev.size  = sizeof(PCINE2000State),
    .init       = pci_ne2000_init,
    .exit       = pci_ne2000_exit,
    .qdev.props = (Property[]) {
        DEFINE_NIC_PROPERTIES(PCINE2000State, ne2000.c),
        DEFINE_PROP_END_OF_LIST(),
    }
772 773
};

P
Paul Brook 已提交
774 775
static void ne2000_register_devices(void)
{
776
    pci_qdev_register(&ne2000_info);
B
bellard 已提交
777
}
P
Paul Brook 已提交
778 779

device_init(ne2000_register_devices)