]> Git Repo - qemu.git/blame - hw/net/ne2000.c
rdma: fix up include directives
[qemu.git] / hw / net / ne2000.c
CommitLineData
80cabfad
FB
1/*
2 * QEMU NE2000 emulation
5fafdf24 3 *
80cabfad 4 * Copyright (c) 2003-2004 Fabrice Bellard
5fafdf24 5 *
80cabfad
FB
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
e8d40465 24#include "qemu/osdep.h"
83c9f4ca 25#include "hw/pci/pci.h"
084e2b11 26#include "net/eth.h"
47b43a1f 27#include "ne2000.h"
9c17d615 28#include "sysemu/sysemu.h"
80cabfad
FB
29
30/* debug NE2000 card */
31//#define DEBUG_NE2000
32
b41a2cd1 33#define MAX_ETH_FRAME_SIZE 1514
80cabfad
FB
34
35#define E8390_CMD 0x00 /* The command register (for all pages) */
36/* Page 0 register offsets. */
37#define EN0_CLDALO 0x01 /* Low byte of current local dma addr RD */
38#define EN0_STARTPG 0x01 /* Starting page of ring bfr WR */
39#define EN0_CLDAHI 0x02 /* High byte of current local dma addr RD */
40#define EN0_STOPPG 0x02 /* Ending page +1 of ring bfr WR */
41#define EN0_BOUNDARY 0x03 /* Boundary page of ring bfr RD WR */
42#define EN0_TSR 0x04 /* Transmit status reg RD */
43#define EN0_TPSR 0x04 /* Transmit starting page WR */
44#define EN0_NCR 0x05 /* Number of collision reg RD */
45#define EN0_TCNTLO 0x05 /* Low byte of tx byte count WR */
46#define EN0_FIFO 0x06 /* FIFO RD */
47#define EN0_TCNTHI 0x06 /* High byte of tx byte count WR */
48#define EN0_ISR 0x07 /* Interrupt status reg RD WR */
49#define EN0_CRDALO 0x08 /* low byte of current remote dma address RD */
50#define EN0_RSARLO 0x08 /* Remote start address reg 0 */
51#define EN0_CRDAHI 0x09 /* high byte, current remote dma address RD */
52#define EN0_RSARHI 0x09 /* Remote start address reg 1 */
53#define EN0_RCNTLO 0x0a /* Remote byte count reg WR */
089af991 54#define EN0_RTL8029ID0 0x0a /* Realtek ID byte #1 RD */
80cabfad 55#define EN0_RCNTHI 0x0b /* Remote byte count reg WR */
089af991 56#define EN0_RTL8029ID1 0x0b /* Realtek ID byte #2 RD */
80cabfad
FB
57#define EN0_RSR 0x0c /* rx status reg RD */
58#define EN0_RXCR 0x0c /* RX configuration reg WR */
59#define EN0_TXCR 0x0d /* TX configuration reg WR */
60#define EN0_COUNTER0 0x0d /* Rcv alignment error counter RD */
61#define EN0_DCFG 0x0e /* Data configuration reg WR */
62#define EN0_COUNTER1 0x0e /* Rcv CRC error counter RD */
63#define EN0_IMR 0x0f /* Interrupt mask reg WR */
64#define EN0_COUNTER2 0x0f /* Rcv missed frame error counter RD */
65
66#define EN1_PHYS 0x11
67#define EN1_CURPAG 0x17
68#define EN1_MULT 0x18
69
a343df16
FB
70#define EN2_STARTPG 0x21 /* Starting page of ring bfr RD */
71#define EN2_STOPPG 0x22 /* Ending page +1 of ring bfr RD */
72
089af991
FB
73#define EN3_CONFIG0 0x33
74#define EN3_CONFIG1 0x34
75#define EN3_CONFIG2 0x35
76#define EN3_CONFIG3 0x36
77
80cabfad
FB
78/* Register accessed at EN_CMD, the 8390 base addr. */
79#define E8390_STOP 0x01 /* Stop and reset the chip */
80#define E8390_START 0x02 /* Start the chip, clear reset */
81#define E8390_TRANS 0x04 /* Transmit a frame */
82#define E8390_RREAD 0x08 /* Remote read */
83#define E8390_RWRITE 0x10 /* Remote write */
84#define E8390_NODMA 0x20 /* Remote DMA */
85#define E8390_PAGE0 0x00 /* Select page chip registers */
86#define E8390_PAGE1 0x40 /* using the two high-order bits */
87#define E8390_PAGE2 0x80 /* Page 3 is invalid. */
88
89/* Bits in EN0_ISR - Interrupt status register */
90#define ENISR_RX 0x01 /* Receiver, no error */
91#define ENISR_TX 0x02 /* Transmitter, no error */
92#define ENISR_RX_ERR 0x04 /* Receiver, with error */
93#define ENISR_TX_ERR 0x08 /* Transmitter, with error */
94#define ENISR_OVER 0x10 /* Receiver overwrote the ring */
95#define ENISR_COUNTERS 0x20 /* Counters need emptying */
96#define ENISR_RDC 0x40 /* remote dma complete */
97#define ENISR_RESET 0x80 /* Reset completed */
98#define ENISR_ALL 0x3f /* Interrupts we will enable */
99
100/* Bits in received packet status byte and EN0_RSR*/
101#define ENRSR_RXOK 0x01 /* Received a good packet */
102#define ENRSR_CRC 0x02 /* CRC error */
103#define ENRSR_FAE 0x04 /* frame alignment error */
104#define ENRSR_FO 0x08 /* FIFO overrun */
105#define ENRSR_MPA 0x10 /* missed pkt */
106#define ENRSR_PHY 0x20 /* physical/multicast address */
107#define ENRSR_DIS 0x40 /* receiver disable. set in monitor mode */
108#define ENRSR_DEF 0x80 /* deferring */
109
110/* Transmitted packet status, EN0_TSR. */
111#define ENTSR_PTX 0x01 /* Packet transmitted without error */
112#define ENTSR_ND 0x02 /* The transmit wasn't deferred. */
113#define ENTSR_COL 0x04 /* The transmit collided at least once. */
114#define ENTSR_ABT 0x08 /* The transmit collided 16 times, and was deferred. */
115#define ENTSR_CRS 0x10 /* The carrier sense was lost. */
116#define ENTSR_FU 0x20 /* A "FIFO underrun" occurred during transmit. */
117#define ENTSR_CDH 0x40 /* The collision detect "heartbeat" signal was lost. */
118#define ENTSR_OWC 0x80 /* There was an out-of-window collision. */
119
2b7a050a
JQ
120typedef struct PCINE2000State {
121 PCIDevice dev;
122 NE2000State ne2000;
123} PCINE2000State;
124
9453c5bc 125void ne2000_reset(NE2000State *s)
80cabfad
FB
126{
127 int i;
128
129 s->isr = ENISR_RESET;
93db6685 130 memcpy(s->mem, &s->c.macaddr, 6);
80cabfad
FB
131 s->mem[14] = 0x57;
132 s->mem[15] = 0x57;
133
134 /* duplicate prom data */
135 for(i = 15;i >= 0; i--) {
136 s->mem[2 * i] = s->mem[i];
137 s->mem[2 * i + 1] = s->mem[i];
138 }
139}
140
141static void ne2000_update_irq(NE2000State *s)
142{
143 int isr;
a343df16 144 isr = (s->isr & s->imr) & 0x7f;
a541f297 145#if defined(DEBUG_NE2000)
d537cf6c
PB
146 printf("NE2000: Set IRQ to %d (%02x %02x)\n",
147 isr ? 1 : 0, s->isr, s->imr);
a541f297 148#endif
d537cf6c 149 qemu_set_irq(s->irq, (isr != 0));
80cabfad
FB
150}
151
d861b05e 152static int ne2000_buffer_full(NE2000State *s)
80cabfad 153{
80cabfad 154 int avail, index, boundary;
d861b05e 155
415ab35a
PP
156 if (s->stop <= s->start) {
157 return 1;
158 }
159
80cabfad
FB
160 index = s->curpag << 8;
161 boundary = s->boundary << 8;
28c1c656 162 if (index < boundary)
80cabfad
FB
163 avail = boundary - index;
164 else
165 avail = (s->stop - s->start) - (index - boundary);
166 if (avail < (MAX_ETH_FRAME_SIZE + 4))
d861b05e
PB
167 return 1;
168 return 0;
169}
170
b41a2cd1
FB
171#define MIN_BUF_SIZE 60
172
4e68f7a0 173ssize_t ne2000_receive(NetClientState *nc, const uint8_t *buf, size_t size_)
80cabfad 174{
cc1f0f45 175 NE2000State *s = qemu_get_nic_opaque(nc);
4f1c942b 176 int size = size_;
80cabfad 177 uint8_t *p;
0ae045ae 178 unsigned int total_len, next, avail, len, index, mcast_idx;
b41a2cd1 179 uint8_t buf1[60];
5fafdf24 180 static const uint8_t broadcast_macaddr[6] =
7c9d8e07 181 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
3b46e624 182
80cabfad
FB
183#if defined(DEBUG_NE2000)
184 printf("NE2000: received len=%d\n", size);
185#endif
186
d861b05e 187 if (s->cmd & E8390_STOP || ne2000_buffer_full(s))
4f1c942b 188 return -1;
3b46e624 189
7c9d8e07
FB
190 /* XXX: check this */
191 if (s->rxcr & 0x10) {
192 /* promiscuous: receive all */
193 } else {
194 if (!memcmp(buf, broadcast_macaddr, 6)) {
195 /* broadcast address */
196 if (!(s->rxcr & 0x04))
4f1c942b 197 return size;
7c9d8e07
FB
198 } else if (buf[0] & 0x01) {
199 /* multicast */
200 if (!(s->rxcr & 0x08))
4f1c942b 201 return size;
084e2b11 202 mcast_idx = net_crc32(buf, ETH_ALEN) >> 26;
7c9d8e07 203 if (!(s->mult[mcast_idx >> 3] & (1 << (mcast_idx & 7))))
4f1c942b 204 return size;
7c9d8e07 205 } else if (s->mem[0] == buf[0] &&
3b46e624
TS
206 s->mem[2] == buf[1] &&
207 s->mem[4] == buf[2] &&
208 s->mem[6] == buf[3] &&
209 s->mem[8] == buf[4] &&
7c9d8e07
FB
210 s->mem[10] == buf[5]) {
211 /* match */
212 } else {
4f1c942b 213 return size;
7c9d8e07
FB
214 }
215 }
216
217
b41a2cd1
FB
218 /* if too small buffer, then expand it */
219 if (size < MIN_BUF_SIZE) {
220 memcpy(buf1, buf, size);
221 memset(buf1 + size, 0, MIN_BUF_SIZE - size);
222 buf = buf1;
223 size = MIN_BUF_SIZE;
224 }
225
80cabfad 226 index = s->curpag << 8;
9bbdbc66
PP
227 if (index >= NE2000_PMEM_END) {
228 index = s->start;
229 }
80cabfad
FB
230 /* 4 bytes for header */
231 total_len = size + 4;
232 /* address for next packet (4 bytes for CRC) */
233 next = index + ((total_len + 4 + 255) & ~0xff);
234 if (next >= s->stop)
235 next -= (s->stop - s->start);
236 /* prepare packet header */
237 p = s->mem + index;
8d6c7eb8
FB
238 s->rsr = ENRSR_RXOK; /* receive status */
239 /* XXX: check this */
240 if (buf[0] & 0x01)
241 s->rsr |= ENRSR_PHY;
242 p[0] = s->rsr;
80cabfad
FB
243 p[1] = next >> 8;
244 p[2] = total_len;
245 p[3] = total_len >> 8;
246 index += 4;
247
248 /* write packet data */
249 while (size > 0) {
0ae045ae
TS
250 if (index <= s->stop)
251 avail = s->stop - index;
252 else
737d2b3c 253 break;
80cabfad
FB
254 len = size;
255 if (len > avail)
256 len = avail;
257 memcpy(s->mem + index, buf, len);
258 buf += len;
259 index += len;
260 if (index == s->stop)
261 index = s->start;
262 size -= len;
263 }
264 s->curpag = next >> 8;
8d6c7eb8 265
9f083493 266 /* now we can signal we have received something */
80cabfad
FB
267 s->isr |= ENISR_RX;
268 ne2000_update_irq(s);
4f1c942b
MM
269
270 return size_;
80cabfad
FB
271}
272
1ec4e1dd 273static void ne2000_ioport_write(void *opaque, uint32_t addr, uint32_t val)
80cabfad 274{
b41a2cd1 275 NE2000State *s = opaque;
40545f84 276 int offset, page, index;
80cabfad
FB
277
278 addr &= 0xf;
279#ifdef DEBUG_NE2000
280 printf("NE2000: write addr=0x%x val=0x%02x\n", addr, val);
281#endif
282 if (addr == E8390_CMD) {
283 /* control register */
284 s->cmd = val;
a343df16 285 if (!(val & E8390_STOP)) { /* START bit makes no sense on RTL8029... */
ee9dbb29 286 s->isr &= ~ENISR_RESET;
e91c8a77 287 /* test specific case: zero length transfer */
80cabfad
FB
288 if ((val & (E8390_RREAD | E8390_RWRITE)) &&
289 s->rcnt == 0) {
290 s->isr |= ENISR_RDC;
291 ne2000_update_irq(s);
292 }
293 if (val & E8390_TRANS) {
40545f84 294 index = (s->tpsr << 8);
5fafdf24 295 /* XXX: next 2 lines are a hack to make netware 3.11 work */
40545f84
FB
296 if (index >= NE2000_PMEM_END)
297 index -= NE2000_PMEM_SIZE;
298 /* fail safe: check range on the transmitted length */
299 if (index + s->tcnt <= NE2000_PMEM_END) {
b356f76d
JW
300 qemu_send_packet(qemu_get_queue(s->nic), s->mem + index,
301 s->tcnt);
40545f84 302 }
e91c8a77 303 /* signal end of transfer */
80cabfad
FB
304 s->tsr = ENTSR_PTX;
305 s->isr |= ENISR_TX;
5fafdf24 306 s->cmd &= ~E8390_TRANS;
80cabfad
FB
307 ne2000_update_irq(s);
308 }
309 }
310 } else {
311 page = s->cmd >> 6;
312 offset = addr | (page << 4);
313 switch(offset) {
314 case EN0_STARTPG:
9bbdbc66
PP
315 if (val << 8 <= NE2000_PMEM_END) {
316 s->start = val << 8;
317 }
80cabfad
FB
318 break;
319 case EN0_STOPPG:
9bbdbc66
PP
320 if (val << 8 <= NE2000_PMEM_END) {
321 s->stop = val << 8;
322 }
80cabfad
FB
323 break;
324 case EN0_BOUNDARY:
9bbdbc66
PP
325 if (val << 8 < NE2000_PMEM_END) {
326 s->boundary = val;
327 }
80cabfad
FB
328 break;
329 case EN0_IMR:
330 s->imr = val;
331 ne2000_update_irq(s);
332 break;
333 case EN0_TPSR:
334 s->tpsr = val;
335 break;
336 case EN0_TCNTLO:
337 s->tcnt = (s->tcnt & 0xff00) | val;
338 break;
339 case EN0_TCNTHI:
340 s->tcnt = (s->tcnt & 0x00ff) | (val << 8);
341 break;
342 case EN0_RSARLO:
343 s->rsar = (s->rsar & 0xff00) | val;
344 break;
345 case EN0_RSARHI:
346 s->rsar = (s->rsar & 0x00ff) | (val << 8);
347 break;
348 case EN0_RCNTLO:
349 s->rcnt = (s->rcnt & 0xff00) | val;
350 break;
351 case EN0_RCNTHI:
352 s->rcnt = (s->rcnt & 0x00ff) | (val << 8);
353 break;
7c9d8e07
FB
354 case EN0_RXCR:
355 s->rxcr = val;
356 break;
80cabfad
FB
357 case EN0_DCFG:
358 s->dcfg = val;
359 break;
360 case EN0_ISR:
ee9dbb29 361 s->isr &= ~(val & 0x7f);
80cabfad
FB
362 ne2000_update_irq(s);
363 break;
364 case EN1_PHYS ... EN1_PHYS + 5:
365 s->phys[offset - EN1_PHYS] = val;
366 break;
367 case EN1_CURPAG:
9bbdbc66
PP
368 if (val << 8 < NE2000_PMEM_END) {
369 s->curpag = val;
370 }
80cabfad
FB
371 break;
372 case EN1_MULT ... EN1_MULT + 7:
373 s->mult[offset - EN1_MULT] = val;
374 break;
375 }
376 }
377}
378
1ec4e1dd 379static uint32_t ne2000_ioport_read(void *opaque, uint32_t addr)
80cabfad 380{
b41a2cd1 381 NE2000State *s = opaque;
80cabfad
FB
382 int offset, page, ret;
383
384 addr &= 0xf;
385 if (addr == E8390_CMD) {
386 ret = s->cmd;
387 } else {
388 page = s->cmd >> 6;
389 offset = addr | (page << 4);
390 switch(offset) {
391 case EN0_TSR:
392 ret = s->tsr;
393 break;
394 case EN0_BOUNDARY:
395 ret = s->boundary;
396 break;
397 case EN0_ISR:
398 ret = s->isr;
399 break;
ee9dbb29
FB
400 case EN0_RSARLO:
401 ret = s->rsar & 0x00ff;
402 break;
403 case EN0_RSARHI:
404 ret = s->rsar >> 8;
405 break;
80cabfad
FB
406 case EN1_PHYS ... EN1_PHYS + 5:
407 ret = s->phys[offset - EN1_PHYS];
408 break;
409 case EN1_CURPAG:
410 ret = s->curpag;
411 break;
412 case EN1_MULT ... EN1_MULT + 7:
413 ret = s->mult[offset - EN1_MULT];
414 break;
8d6c7eb8
FB
415 case EN0_RSR:
416 ret = s->rsr;
417 break;
a343df16
FB
418 case EN2_STARTPG:
419 ret = s->start >> 8;
420 break;
421 case EN2_STOPPG:
422 ret = s->stop >> 8;
423 break;
089af991
FB
424 case EN0_RTL8029ID0:
425 ret = 0x50;
426 break;
427 case EN0_RTL8029ID1:
428 ret = 0x43;
429 break;
430 case EN3_CONFIG0:
431 ret = 0; /* 10baseT media */
432 break;
433 case EN3_CONFIG2:
434 ret = 0x40; /* 10baseT active */
435 break;
436 case EN3_CONFIG3:
437 ret = 0x40; /* Full duplex */
438 break;
80cabfad
FB
439 default:
440 ret = 0x00;
441 break;
442 }
443 }
444#ifdef DEBUG_NE2000
445 printf("NE2000: read addr=0x%x val=%02x\n", addr, ret);
446#endif
447 return ret;
448}
449
5fafdf24 450static inline void ne2000_mem_writeb(NE2000State *s, uint32_t addr,
69b91039 451 uint32_t val)
ee9dbb29 452{
5fafdf24 453 if (addr < 32 ||
ee9dbb29
FB
454 (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
455 s->mem[addr] = val;
456 }
457}
458
5fafdf24 459static inline void ne2000_mem_writew(NE2000State *s, uint32_t addr,
ee9dbb29
FB
460 uint32_t val)
461{
462 addr &= ~1; /* XXX: check exact behaviour if not even */
5fafdf24 463 if (addr < 32 ||
ee9dbb29 464 (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
69b91039
FB
465 *(uint16_t *)(s->mem + addr) = cpu_to_le16(val);
466 }
467}
468
5fafdf24 469static inline void ne2000_mem_writel(NE2000State *s, uint32_t addr,
69b91039
FB
470 uint32_t val)
471{
57ccbabe 472 addr &= ~1; /* XXX: check exact behaviour if not even */
aa7f9966
PP
473 if (addr < 32
474 || (addr >= NE2000_PMEM_START
475 && addr + sizeof(uint32_t) <= NE2000_MEM_SIZE)) {
6e931878 476 stl_le_p(s->mem + addr, val);
ee9dbb29
FB
477 }
478}
479
480static inline uint32_t ne2000_mem_readb(NE2000State *s, uint32_t addr)
481{
5fafdf24 482 if (addr < 32 ||
ee9dbb29
FB
483 (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
484 return s->mem[addr];
485 } else {
486 return 0xff;
487 }
488}
489
490static inline uint32_t ne2000_mem_readw(NE2000State *s, uint32_t addr)
491{
492 addr &= ~1; /* XXX: check exact behaviour if not even */
5fafdf24 493 if (addr < 32 ||
ee9dbb29 494 (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
69b91039 495 return le16_to_cpu(*(uint16_t *)(s->mem + addr));
ee9dbb29
FB
496 } else {
497 return 0xffff;
498 }
499}
500
69b91039
FB
501static inline uint32_t ne2000_mem_readl(NE2000State *s, uint32_t addr)
502{
57ccbabe 503 addr &= ~1; /* XXX: check exact behaviour if not even */
aa7f9966
PP
504 if (addr < 32
505 || (addr >= NE2000_PMEM_START
506 && addr + sizeof(uint32_t) <= NE2000_MEM_SIZE)) {
f567656a 507 return ldl_le_p(s->mem + addr);
69b91039
FB
508 } else {
509 return 0xffffffff;
510 }
511}
512
3df3f6fd
FB
513static inline void ne2000_dma_update(NE2000State *s, int len)
514{
515 s->rsar += len;
516 /* wrap */
517 /* XXX: check what to do if rsar > stop */
518 if (s->rsar == s->stop)
519 s->rsar = s->start;
520
521 if (s->rcnt <= len) {
522 s->rcnt = 0;
e91c8a77 523 /* signal end of transfer */
3df3f6fd
FB
524 s->isr |= ENISR_RDC;
525 ne2000_update_irq(s);
526 } else {
527 s->rcnt -= len;
528 }
529}
530
1ec4e1dd 531static void ne2000_asic_ioport_write(void *opaque, uint32_t addr, uint32_t val)
80cabfad 532{
b41a2cd1 533 NE2000State *s = opaque;
80cabfad
FB
534
535#ifdef DEBUG_NE2000
536 printf("NE2000: asic write val=0x%04x\n", val);
537#endif
ee9dbb29 538 if (s->rcnt == 0)
3df3f6fd 539 return;
80cabfad
FB
540 if (s->dcfg & 0x01) {
541 /* 16 bit access */
ee9dbb29 542 ne2000_mem_writew(s, s->rsar, val);
3df3f6fd 543 ne2000_dma_update(s, 2);
80cabfad
FB
544 } else {
545 /* 8 bit access */
ee9dbb29 546 ne2000_mem_writeb(s, s->rsar, val);
3df3f6fd 547 ne2000_dma_update(s, 1);
80cabfad
FB
548 }
549}
550
1ec4e1dd 551static uint32_t ne2000_asic_ioport_read(void *opaque, uint32_t addr)
80cabfad 552{
b41a2cd1 553 NE2000State *s = opaque;
80cabfad
FB
554 int ret;
555
80cabfad
FB
556 if (s->dcfg & 0x01) {
557 /* 16 bit access */
ee9dbb29 558 ret = ne2000_mem_readw(s, s->rsar);
3df3f6fd 559 ne2000_dma_update(s, 2);
80cabfad
FB
560 } else {
561 /* 8 bit access */
ee9dbb29 562 ret = ne2000_mem_readb(s, s->rsar);
3df3f6fd 563 ne2000_dma_update(s, 1);
80cabfad
FB
564 }
565#ifdef DEBUG_NE2000
566 printf("NE2000: asic read val=0x%04x\n", ret);
567#endif
568 return ret;
569}
570
69b91039
FB
571static void ne2000_asic_ioport_writel(void *opaque, uint32_t addr, uint32_t val)
572{
573 NE2000State *s = opaque;
574
575#ifdef DEBUG_NE2000
576 printf("NE2000: asic writel val=0x%04x\n", val);
577#endif
578 if (s->rcnt == 0)
3df3f6fd 579 return;
69b91039
FB
580 /* 32 bit access */
581 ne2000_mem_writel(s, s->rsar, val);
3df3f6fd 582 ne2000_dma_update(s, 4);
69b91039
FB
583}
584
585static uint32_t ne2000_asic_ioport_readl(void *opaque, uint32_t addr)
586{
587 NE2000State *s = opaque;
588 int ret;
589
590 /* 32 bit access */
591 ret = ne2000_mem_readl(s, s->rsar);
3df3f6fd 592 ne2000_dma_update(s, 4);
69b91039
FB
593#ifdef DEBUG_NE2000
594 printf("NE2000: asic readl val=0x%04x\n", ret);
595#endif
596 return ret;
597}
598
1ec4e1dd 599static void ne2000_reset_ioport_write(void *opaque, uint32_t addr, uint32_t val)
80cabfad
FB
600{
601 /* nothing to do (end of reset pulse) */
602}
603
1ec4e1dd 604static uint32_t ne2000_reset_ioport_read(void *opaque, uint32_t addr)
80cabfad 605{
b41a2cd1 606 NE2000State *s = opaque;
80cabfad
FB
607 ne2000_reset(s);
608 return 0;
609}
610
7c131dd5 611static int ne2000_post_load(void* opaque, int version_id)
30ca2aab 612{
7c131dd5 613 NE2000State* s = opaque;
a60380a5 614
7c131dd5
JQ
615 if (version_id < 2) {
616 s->rxcr = 0x0c;
617 }
618 return 0;
a60380a5
JQ
619}
620
7c131dd5
JQ
621const VMStateDescription vmstate_ne2000 = {
622 .name = "ne2000",
623 .version_id = 2,
624 .minimum_version_id = 0,
7c131dd5 625 .post_load = ne2000_post_load,
d49805ae 626 .fields = (VMStateField[]) {
7c131dd5
JQ
627 VMSTATE_UINT8_V(rxcr, NE2000State, 2),
628 VMSTATE_UINT8(cmd, NE2000State),
629 VMSTATE_UINT32(start, NE2000State),
630 VMSTATE_UINT32(stop, NE2000State),
631 VMSTATE_UINT8(boundary, NE2000State),
632 VMSTATE_UINT8(tsr, NE2000State),
633 VMSTATE_UINT8(tpsr, NE2000State),
634 VMSTATE_UINT16(tcnt, NE2000State),
635 VMSTATE_UINT16(rcnt, NE2000State),
636 VMSTATE_UINT32(rsar, NE2000State),
637 VMSTATE_UINT8(rsr, NE2000State),
638 VMSTATE_UINT8(isr, NE2000State),
639 VMSTATE_UINT8(dcfg, NE2000State),
640 VMSTATE_UINT8(imr, NE2000State),
641 VMSTATE_BUFFER(phys, NE2000State),
642 VMSTATE_UINT8(curpag, NE2000State),
643 VMSTATE_BUFFER(mult, NE2000State),
644 VMSTATE_UNUSED(4), /* was irq */
645 VMSTATE_BUFFER(mem, NE2000State),
646 VMSTATE_END_OF_LIST()
647 }
648};
a60380a5 649
d05ac8fa 650static const VMStateDescription vmstate_pci_ne2000 = {
7c131dd5
JQ
651 .name = "ne2000",
652 .version_id = 3,
653 .minimum_version_id = 3,
d49805ae 654 .fields = (VMStateField[]) {
7c131dd5
JQ
655 VMSTATE_PCI_DEVICE(dev, PCINE2000State),
656 VMSTATE_STRUCT(ne2000, PCINE2000State, 0, vmstate_ne2000, NE2000State),
657 VMSTATE_END_OF_LIST()
658 }
659};
a60380a5 660
a8170e5e 661static uint64_t ne2000_read(void *opaque, hwaddr addr,
1ec4e1dd
AK
662 unsigned size)
663{
664 NE2000State *s = opaque;
69b91039 665
1ec4e1dd
AK
666 if (addr < 0x10 && size == 1) {
667 return ne2000_ioport_read(s, addr);
668 } else if (addr == 0x10) {
669 if (size <= 2) {
670 return ne2000_asic_ioport_read(s, addr);
671 } else {
672 return ne2000_asic_ioport_readl(s, addr);
673 }
674 } else if (addr == 0x1f && size == 1) {
675 return ne2000_reset_ioport_read(s, addr);
676 }
677 return ((uint64_t)1 << (size * 8)) - 1;
678}
679
a8170e5e 680static void ne2000_write(void *opaque, hwaddr addr,
1ec4e1dd 681 uint64_t data, unsigned size)
69b91039 682{
1ec4e1dd
AK
683 NE2000State *s = opaque;
684
685 if (addr < 0x10 && size == 1) {
0ed8b6f6 686 ne2000_ioport_write(s, addr, data);
1ec4e1dd
AK
687 } else if (addr == 0x10) {
688 if (size <= 2) {
0ed8b6f6 689 ne2000_asic_ioport_write(s, addr, data);
1ec4e1dd 690 } else {
0ed8b6f6 691 ne2000_asic_ioport_writel(s, addr, data);
1ec4e1dd
AK
692 }
693 } else if (addr == 0x1f && size == 1) {
0ed8b6f6 694 ne2000_reset_ioport_write(s, addr, data);
1ec4e1dd
AK
695 }
696}
69b91039 697
1ec4e1dd
AK
698static const MemoryRegionOps ne2000_ops = {
699 .read = ne2000_read,
700 .write = ne2000_write,
45d883dc 701 .endianness = DEVICE_LITTLE_ENDIAN,
1ec4e1dd 702};
69b91039 703
1ec4e1dd
AK
704/***********************************************************/
705/* PCI NE2000 definitions */
69b91039 706
dcb117bf 707void ne2000_setup_io(NE2000State *s, DeviceState *dev, unsigned size)
1ec4e1dd 708{
dcb117bf 709 memory_region_init_io(&s->io, OBJECT(dev), &ne2000_ops, s, "ne2000", size);
69b91039
FB
710}
711
1c2045b5 712static NetClientInfo net_ne2000_info = {
f394b2e2 713 .type = NET_CLIENT_DRIVER_NIC,
1c2045b5 714 .size = sizeof(NICState),
1c2045b5 715 .receive = ne2000_receive,
1c2045b5
MM
716};
717
9af21dbe 718static void pci_ne2000_realize(PCIDevice *pci_dev, Error **errp)
69b91039 719{
377a7f06 720 PCINE2000State *d = DO_UPCAST(PCINE2000State, dev, pci_dev);
69b91039
FB
721 NE2000State *s;
722 uint8_t *pci_conf;
3b46e624 723
69b91039 724 pci_conf = d->dev.config;
817e0b6f 725 pci_conf[PCI_INTERRUPT_PIN] = 1; /* interrupt pin A */
3b46e624 726
69b91039 727 s = &d->ne2000;
dcb117bf 728 ne2000_setup_io(s, DEVICE(pci_dev), 0x100);
e824b2cc 729 pci_register_bar(&d->dev, 0, PCI_BASE_ADDRESS_SPACE_IO, &s->io);
9e64f8a3 730 s->irq = pci_allocate_irq(&d->dev);
a783cc3e
GH
731
732 qemu_macaddr_default_if_unset(&s->c.macaddr);
69b91039 733 ne2000_reset(s);
1c2045b5
MM
734
735 s->nic = qemu_new_nic(&net_ne2000_info, &s->c,
f79f2bfc 736 object_get_typename(OBJECT(pci_dev)), pci_dev->qdev.id, s);
b356f76d 737 qemu_format_nic_info_str(qemu_get_queue(s->nic), s->c.macaddr.a);
9d07d757 738}
72da4208 739
f90c2bcd 740static void pci_ne2000_exit(PCIDevice *pci_dev)
a783cc3e
GH
741{
742 PCINE2000State *d = DO_UPCAST(PCINE2000State, dev, pci_dev);
743 NE2000State *s = &d->ne2000;
744
948ecf21 745 qemu_del_nic(s->nic);
9e64f8a3 746 qemu_free_irq(s->irq);
a783cc3e
GH
747}
748
6cb0851d
GA
749static void ne2000_instance_init(Object *obj)
750{
751 PCIDevice *pci_dev = PCI_DEVICE(obj);
752 PCINE2000State *d = DO_UPCAST(PCINE2000State, dev, pci_dev);
753 NE2000State *s = &d->ne2000;
754
755 device_add_bootindex_property(obj, &s->c.bootindex,
756 "bootindex", "/ethernet-phy@0",
757 &pci_dev->qdev, NULL);
758}
759
40021f08
AL
760static Property ne2000_properties[] = {
761 DEFINE_NIC_PROPERTIES(PCINE2000State, ne2000.c),
762 DEFINE_PROP_END_OF_LIST(),
763};
764
765static void ne2000_class_init(ObjectClass *klass, void *data)
766{
39bffca2 767 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
768 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
769
9af21dbe 770 k->realize = pci_ne2000_realize;
40021f08 771 k->exit = pci_ne2000_exit;
c45e5b5b 772 k->romfile = "efi-ne2k_pci.rom",
40021f08
AL
773 k->vendor_id = PCI_VENDOR_ID_REALTEK;
774 k->device_id = PCI_DEVICE_ID_REALTEK_8029;
775 k->class_id = PCI_CLASS_NETWORK_ETHERNET;
39bffca2
AL
776 dc->vmsd = &vmstate_pci_ne2000;
777 dc->props = ne2000_properties;
125ee0ed 778 set_bit(DEVICE_CATEGORY_NETWORK, dc->categories);
40021f08
AL
779}
780
8c43a6f0 781static const TypeInfo ne2000_info = {
39bffca2
AL
782 .name = "ne2k_pci",
783 .parent = TYPE_PCI_DEVICE,
784 .instance_size = sizeof(PCINE2000State),
785 .class_init = ne2000_class_init,
6cb0851d 786 .instance_init = ne2000_instance_init,
fd3b02c8
EH
787 .interfaces = (InterfaceInfo[]) {
788 { INTERFACE_CONVENTIONAL_PCI_DEVICE },
789 { },
790 },
0aab0d3a
GH
791};
792
83f7d43a 793static void ne2000_register_types(void)
9d07d757 794{
39bffca2 795 type_register_static(&ne2000_info);
69b91039 796}
9d07d757 797
83f7d43a 798type_init(ne2000_register_types)
This page took 1.016068 seconds and 4 git commands to generate.