blob: 87f1e59d8513d054809c4a38e660907cb1c60f46 [file] [log] [blame]
bellard80cabfa2004-03-14 12:20:30 +00001/*
2 * QEMU NE2000 emulation
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard80cabfa2004-03-14 12:20:30 +00004 * Copyright (c) 2003-2004 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellard80cabfa2004-03-14 12:20:30 +00006 * 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 */
pbrook87ecb682007-11-17 17:14:51 +000024#include "hw.h"
25#include "pci.h"
26#include "net.h"
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +020027#include "ne2000.h"
bellard80cabfa2004-03-14 12:20:30 +000028
29/* debug NE2000 card */
30//#define DEBUG_NE2000
31
bellardb41a2cd2004-03-14 21:46:48 +000032#define MAX_ETH_FRAME_SIZE 1514
bellard80cabfa2004-03-14 12:20:30 +000033
34#define E8390_CMD 0x00 /* The command register (for all pages) */
35/* Page 0 register offsets. */
36#define EN0_CLDALO 0x01 /* Low byte of current local dma addr RD */
37#define EN0_STARTPG 0x01 /* Starting page of ring bfr WR */
38#define EN0_CLDAHI 0x02 /* High byte of current local dma addr RD */
39#define EN0_STOPPG 0x02 /* Ending page +1 of ring bfr WR */
40#define EN0_BOUNDARY 0x03 /* Boundary page of ring bfr RD WR */
41#define EN0_TSR 0x04 /* Transmit status reg RD */
42#define EN0_TPSR 0x04 /* Transmit starting page WR */
43#define EN0_NCR 0x05 /* Number of collision reg RD */
44#define EN0_TCNTLO 0x05 /* Low byte of tx byte count WR */
45#define EN0_FIFO 0x06 /* FIFO RD */
46#define EN0_TCNTHI 0x06 /* High byte of tx byte count WR */
47#define EN0_ISR 0x07 /* Interrupt status reg RD WR */
48#define EN0_CRDALO 0x08 /* low byte of current remote dma address RD */
49#define EN0_RSARLO 0x08 /* Remote start address reg 0 */
50#define EN0_CRDAHI 0x09 /* high byte, current remote dma address RD */
51#define EN0_RSARHI 0x09 /* Remote start address reg 1 */
52#define EN0_RCNTLO 0x0a /* Remote byte count reg WR */
bellard089af992005-11-22 20:16:13 +000053#define EN0_RTL8029ID0 0x0a /* Realtek ID byte #1 RD */
bellard80cabfa2004-03-14 12:20:30 +000054#define EN0_RCNTHI 0x0b /* Remote byte count reg WR */
bellard089af992005-11-22 20:16:13 +000055#define EN0_RTL8029ID1 0x0b /* Realtek ID byte #2 RD */
bellard80cabfa2004-03-14 12:20:30 +000056#define EN0_RSR 0x0c /* rx status reg RD */
57#define EN0_RXCR 0x0c /* RX configuration reg WR */
58#define EN0_TXCR 0x0d /* TX configuration reg WR */
59#define EN0_COUNTER0 0x0d /* Rcv alignment error counter RD */
60#define EN0_DCFG 0x0e /* Data configuration reg WR */
61#define EN0_COUNTER1 0x0e /* Rcv CRC error counter RD */
62#define EN0_IMR 0x0f /* Interrupt mask reg WR */
63#define EN0_COUNTER2 0x0f /* Rcv missed frame error counter RD */
64
65#define EN1_PHYS 0x11
66#define EN1_CURPAG 0x17
67#define EN1_MULT 0x18
68
bellarda343df12005-04-28 19:45:10 +000069#define EN2_STARTPG 0x21 /* Starting page of ring bfr RD */
70#define EN2_STOPPG 0x22 /* Ending page +1 of ring bfr RD */
71
bellard089af992005-11-22 20:16:13 +000072#define EN3_CONFIG0 0x33
73#define EN3_CONFIG1 0x34
74#define EN3_CONFIG2 0x35
75#define EN3_CONFIG3 0x36
76
bellard80cabfa2004-03-14 12:20:30 +000077/* Register accessed at EN_CMD, the 8390 base addr. */
78#define E8390_STOP 0x01 /* Stop and reset the chip */
79#define E8390_START 0x02 /* Start the chip, clear reset */
80#define E8390_TRANS 0x04 /* Transmit a frame */
81#define E8390_RREAD 0x08 /* Remote read */
82#define E8390_RWRITE 0x10 /* Remote write */
83#define E8390_NODMA 0x20 /* Remote DMA */
84#define E8390_PAGE0 0x00 /* Select page chip registers */
85#define E8390_PAGE1 0x40 /* using the two high-order bits */
86#define E8390_PAGE2 0x80 /* Page 3 is invalid. */
87
88/* Bits in EN0_ISR - Interrupt status register */
89#define ENISR_RX 0x01 /* Receiver, no error */
90#define ENISR_TX 0x02 /* Transmitter, no error */
91#define ENISR_RX_ERR 0x04 /* Receiver, with error */
92#define ENISR_TX_ERR 0x08 /* Transmitter, with error */
93#define ENISR_OVER 0x10 /* Receiver overwrote the ring */
94#define ENISR_COUNTERS 0x20 /* Counters need emptying */
95#define ENISR_RDC 0x40 /* remote dma complete */
96#define ENISR_RESET 0x80 /* Reset completed */
97#define ENISR_ALL 0x3f /* Interrupts we will enable */
98
99/* Bits in received packet status byte and EN0_RSR*/
100#define ENRSR_RXOK 0x01 /* Received a good packet */
101#define ENRSR_CRC 0x02 /* CRC error */
102#define ENRSR_FAE 0x04 /* frame alignment error */
103#define ENRSR_FO 0x08 /* FIFO overrun */
104#define ENRSR_MPA 0x10 /* missed pkt */
105#define ENRSR_PHY 0x20 /* physical/multicast address */
106#define ENRSR_DIS 0x40 /* receiver disable. set in monitor mode */
107#define ENRSR_DEF 0x80 /* deferring */
108
109/* Transmitted packet status, EN0_TSR. */
110#define ENTSR_PTX 0x01 /* Packet transmitted without error */
111#define ENTSR_ND 0x02 /* The transmit wasn't deferred. */
112#define ENTSR_COL 0x04 /* The transmit collided at least once. */
113#define ENTSR_ABT 0x08 /* The transmit collided 16 times, and was deferred. */
114#define ENTSR_CRS 0x10 /* The carrier sense was lost. */
115#define ENTSR_FU 0x20 /* A "FIFO underrun" occurred during transmit. */
116#define ENTSR_CDH 0x40 /* The collision detect "heartbeat" signal was lost. */
117#define ENTSR_OWC 0x80 /* There was an out-of-window collision. */
118
Juan Quintela2b7a0502009-08-24 18:42:52 +0200119typedef struct PCINE2000State {
120 PCIDevice dev;
121 NE2000State ne2000;
122} PCINE2000State;
123
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200124void ne2000_reset(NE2000State *s)
bellard80cabfa2004-03-14 12:20:30 +0000125{
126 int i;
127
128 s->isr = ENISR_RESET;
bellard7c9d8e02005-11-15 22:16:05 +0000129 memcpy(s->mem, s->macaddr, 6);
bellard80cabfa2004-03-14 12:20:30 +0000130 s->mem[14] = 0x57;
131 s->mem[15] = 0x57;
132
133 /* duplicate prom data */
134 for(i = 15;i >= 0; i--) {
135 s->mem[2 * i] = s->mem[i];
136 s->mem[2 * i + 1] = s->mem[i];
137 }
138}
139
140static void ne2000_update_irq(NE2000State *s)
141{
142 int isr;
bellarda343df12005-04-28 19:45:10 +0000143 isr = (s->isr & s->imr) & 0x7f;
bellarda541f292004-04-12 20:39:29 +0000144#if defined(DEBUG_NE2000)
pbrookd537cf62007-04-07 18:14:41 +0000145 printf("NE2000: Set IRQ to %d (%02x %02x)\n",
146 isr ? 1 : 0, s->isr, s->imr);
bellarda541f292004-04-12 20:39:29 +0000147#endif
pbrookd537cf62007-04-07 18:14:41 +0000148 qemu_set_irq(s->irq, (isr != 0));
bellard80cabfa2004-03-14 12:20:30 +0000149}
150
bellard7c9d8e02005-11-15 22:16:05 +0000151#define POLYNOMIAL 0x04c11db6
152
153/* From FreeBSD */
154/* XXX: optimize */
155static int compute_mcast_idx(const uint8_t *ep)
156{
157 uint32_t crc;
158 int carry, i, j;
159 uint8_t b;
160
161 crc = 0xffffffff;
162 for (i = 0; i < 6; i++) {
163 b = *ep++;
164 for (j = 0; j < 8; j++) {
165 carry = ((crc & 0x80000000L) ? 1 : 0) ^ (b & 0x01);
166 crc <<= 1;
167 b >>= 1;
168 if (carry)
169 crc = ((crc ^ POLYNOMIAL) | carry);
170 }
171 }
172 return (crc >> 26);
173}
174
pbrookd861b052006-02-04 22:15:28 +0000175static int ne2000_buffer_full(NE2000State *s)
bellard80cabfa2004-03-14 12:20:30 +0000176{
bellard80cabfa2004-03-14 12:20:30 +0000177 int avail, index, boundary;
pbrookd861b052006-02-04 22:15:28 +0000178
bellard80cabfa2004-03-14 12:20:30 +0000179 index = s->curpag << 8;
180 boundary = s->boundary << 8;
ths28c1c652007-04-02 08:19:57 +0000181 if (index < boundary)
bellard80cabfa2004-03-14 12:20:30 +0000182 avail = boundary - index;
183 else
184 avail = (s->stop - s->start) - (index - boundary);
185 if (avail < (MAX_ETH_FRAME_SIZE + 4))
pbrookd861b052006-02-04 22:15:28 +0000186 return 1;
187 return 0;
188}
189
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200190int ne2000_can_receive(VLANClientState *vc)
pbrookd861b052006-02-04 22:15:28 +0000191{
Mark McLoughline3f5ec22009-05-18 13:33:03 +0100192 NE2000State *s = vc->opaque;
ths3b46e622007-09-17 08:09:54 +0000193
pbrookd861b052006-02-04 22:15:28 +0000194 if (s->cmd & E8390_STOP)
aurel32e89f00e2008-03-28 22:57:48 +0000195 return 1;
pbrookd861b052006-02-04 22:15:28 +0000196 return !ne2000_buffer_full(s);
bellard80cabfa2004-03-14 12:20:30 +0000197}
198
bellardb41a2cd2004-03-14 21:46:48 +0000199#define MIN_BUF_SIZE 60
200
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200201ssize_t ne2000_receive(VLANClientState *vc, const uint8_t *buf, size_t size_)
bellard80cabfa2004-03-14 12:20:30 +0000202{
Mark McLoughline3f5ec22009-05-18 13:33:03 +0100203 NE2000State *s = vc->opaque;
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100204 int size = size_;
bellard80cabfa2004-03-14 12:20:30 +0000205 uint8_t *p;
ths0ae045a2007-06-25 13:47:44 +0000206 unsigned int total_len, next, avail, len, index, mcast_idx;
bellardb41a2cd2004-03-14 21:46:48 +0000207 uint8_t buf1[60];
ths5fafdf22007-09-16 21:08:06 +0000208 static const uint8_t broadcast_macaddr[6] =
bellard7c9d8e02005-11-15 22:16:05 +0000209 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
ths3b46e622007-09-17 08:09:54 +0000210
bellard80cabfa2004-03-14 12:20:30 +0000211#if defined(DEBUG_NE2000)
212 printf("NE2000: received len=%d\n", size);
213#endif
214
pbrookd861b052006-02-04 22:15:28 +0000215 if (s->cmd & E8390_STOP || ne2000_buffer_full(s))
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100216 return -1;
ths3b46e622007-09-17 08:09:54 +0000217
bellard7c9d8e02005-11-15 22:16:05 +0000218 /* XXX: check this */
219 if (s->rxcr & 0x10) {
220 /* promiscuous: receive all */
221 } else {
222 if (!memcmp(buf, broadcast_macaddr, 6)) {
223 /* broadcast address */
224 if (!(s->rxcr & 0x04))
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100225 return size;
bellard7c9d8e02005-11-15 22:16:05 +0000226 } else if (buf[0] & 0x01) {
227 /* multicast */
228 if (!(s->rxcr & 0x08))
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100229 return size;
bellard7c9d8e02005-11-15 22:16:05 +0000230 mcast_idx = compute_mcast_idx(buf);
231 if (!(s->mult[mcast_idx >> 3] & (1 << (mcast_idx & 7))))
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100232 return size;
bellard7c9d8e02005-11-15 22:16:05 +0000233 } else if (s->mem[0] == buf[0] &&
ths3b46e622007-09-17 08:09:54 +0000234 s->mem[2] == buf[1] &&
235 s->mem[4] == buf[2] &&
236 s->mem[6] == buf[3] &&
237 s->mem[8] == buf[4] &&
bellard7c9d8e02005-11-15 22:16:05 +0000238 s->mem[10] == buf[5]) {
239 /* match */
240 } else {
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100241 return size;
bellard7c9d8e02005-11-15 22:16:05 +0000242 }
243 }
244
245
bellardb41a2cd2004-03-14 21:46:48 +0000246 /* if too small buffer, then expand it */
247 if (size < MIN_BUF_SIZE) {
248 memcpy(buf1, buf, size);
249 memset(buf1 + size, 0, MIN_BUF_SIZE - size);
250 buf = buf1;
251 size = MIN_BUF_SIZE;
252 }
253
bellard80cabfa2004-03-14 12:20:30 +0000254 index = s->curpag << 8;
255 /* 4 bytes for header */
256 total_len = size + 4;
257 /* address for next packet (4 bytes for CRC) */
258 next = index + ((total_len + 4 + 255) & ~0xff);
259 if (next >= s->stop)
260 next -= (s->stop - s->start);
261 /* prepare packet header */
262 p = s->mem + index;
bellard8d6c7eb2004-05-22 16:52:29 +0000263 s->rsr = ENRSR_RXOK; /* receive status */
264 /* XXX: check this */
265 if (buf[0] & 0x01)
266 s->rsr |= ENRSR_PHY;
267 p[0] = s->rsr;
bellard80cabfa2004-03-14 12:20:30 +0000268 p[1] = next >> 8;
269 p[2] = total_len;
270 p[3] = total_len >> 8;
271 index += 4;
272
273 /* write packet data */
274 while (size > 0) {
ths0ae045a2007-06-25 13:47:44 +0000275 if (index <= s->stop)
276 avail = s->stop - index;
277 else
278 avail = 0;
bellard80cabfa2004-03-14 12:20:30 +0000279 len = size;
280 if (len > avail)
281 len = avail;
282 memcpy(s->mem + index, buf, len);
283 buf += len;
284 index += len;
285 if (index == s->stop)
286 index = s->start;
287 size -= len;
288 }
289 s->curpag = next >> 8;
bellard8d6c7eb2004-05-22 16:52:29 +0000290
ths9f083492006-12-07 18:28:42 +0000291 /* now we can signal we have received something */
bellard80cabfa2004-03-14 12:20:30 +0000292 s->isr |= ENISR_RX;
293 ne2000_update_irq(s);
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100294
295 return size_;
bellard80cabfa2004-03-14 12:20:30 +0000296}
297
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200298void ne2000_ioport_write(void *opaque, uint32_t addr, uint32_t val)
bellard80cabfa2004-03-14 12:20:30 +0000299{
bellardb41a2cd2004-03-14 21:46:48 +0000300 NE2000State *s = opaque;
bellard40545f82005-04-10 14:51:41 +0000301 int offset, page, index;
bellard80cabfa2004-03-14 12:20:30 +0000302
303 addr &= 0xf;
304#ifdef DEBUG_NE2000
305 printf("NE2000: write addr=0x%x val=0x%02x\n", addr, val);
306#endif
307 if (addr == E8390_CMD) {
308 /* control register */
309 s->cmd = val;
bellarda343df12005-04-28 19:45:10 +0000310 if (!(val & E8390_STOP)) { /* START bit makes no sense on RTL8029... */
bellardee9dbb22004-04-21 23:29:33 +0000311 s->isr &= ~ENISR_RESET;
thse91c8a72007-06-03 13:35:16 +0000312 /* test specific case: zero length transfer */
bellard80cabfa2004-03-14 12:20:30 +0000313 if ((val & (E8390_RREAD | E8390_RWRITE)) &&
314 s->rcnt == 0) {
315 s->isr |= ENISR_RDC;
316 ne2000_update_irq(s);
317 }
318 if (val & E8390_TRANS) {
bellard40545f82005-04-10 14:51:41 +0000319 index = (s->tpsr << 8);
ths5fafdf22007-09-16 21:08:06 +0000320 /* XXX: next 2 lines are a hack to make netware 3.11 work */
bellard40545f82005-04-10 14:51:41 +0000321 if (index >= NE2000_PMEM_END)
322 index -= NE2000_PMEM_SIZE;
323 /* fail safe: check range on the transmitted length */
324 if (index + s->tcnt <= NE2000_PMEM_END) {
bellard7c9d8e02005-11-15 22:16:05 +0000325 qemu_send_packet(s->vc, s->mem + index, s->tcnt);
bellard40545f82005-04-10 14:51:41 +0000326 }
thse91c8a72007-06-03 13:35:16 +0000327 /* signal end of transfer */
bellard80cabfa2004-03-14 12:20:30 +0000328 s->tsr = ENTSR_PTX;
329 s->isr |= ENISR_TX;
ths5fafdf22007-09-16 21:08:06 +0000330 s->cmd &= ~E8390_TRANS;
bellard80cabfa2004-03-14 12:20:30 +0000331 ne2000_update_irq(s);
332 }
333 }
334 } else {
335 page = s->cmd >> 6;
336 offset = addr | (page << 4);
337 switch(offset) {
338 case EN0_STARTPG:
339 s->start = val << 8;
340 break;
341 case EN0_STOPPG:
342 s->stop = val << 8;
343 break;
344 case EN0_BOUNDARY:
345 s->boundary = val;
346 break;
347 case EN0_IMR:
348 s->imr = val;
349 ne2000_update_irq(s);
350 break;
351 case EN0_TPSR:
352 s->tpsr = val;
353 break;
354 case EN0_TCNTLO:
355 s->tcnt = (s->tcnt & 0xff00) | val;
356 break;
357 case EN0_TCNTHI:
358 s->tcnt = (s->tcnt & 0x00ff) | (val << 8);
359 break;
360 case EN0_RSARLO:
361 s->rsar = (s->rsar & 0xff00) | val;
362 break;
363 case EN0_RSARHI:
364 s->rsar = (s->rsar & 0x00ff) | (val << 8);
365 break;
366 case EN0_RCNTLO:
367 s->rcnt = (s->rcnt & 0xff00) | val;
368 break;
369 case EN0_RCNTHI:
370 s->rcnt = (s->rcnt & 0x00ff) | (val << 8);
371 break;
bellard7c9d8e02005-11-15 22:16:05 +0000372 case EN0_RXCR:
373 s->rxcr = val;
374 break;
bellard80cabfa2004-03-14 12:20:30 +0000375 case EN0_DCFG:
376 s->dcfg = val;
377 break;
378 case EN0_ISR:
bellardee9dbb22004-04-21 23:29:33 +0000379 s->isr &= ~(val & 0x7f);
bellard80cabfa2004-03-14 12:20:30 +0000380 ne2000_update_irq(s);
381 break;
382 case EN1_PHYS ... EN1_PHYS + 5:
383 s->phys[offset - EN1_PHYS] = val;
384 break;
385 case EN1_CURPAG:
386 s->curpag = val;
387 break;
388 case EN1_MULT ... EN1_MULT + 7:
389 s->mult[offset - EN1_MULT] = val;
390 break;
391 }
392 }
393}
394
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200395uint32_t ne2000_ioport_read(void *opaque, uint32_t addr)
bellard80cabfa2004-03-14 12:20:30 +0000396{
bellardb41a2cd2004-03-14 21:46:48 +0000397 NE2000State *s = opaque;
bellard80cabfa2004-03-14 12:20:30 +0000398 int offset, page, ret;
399
400 addr &= 0xf;
401 if (addr == E8390_CMD) {
402 ret = s->cmd;
403 } else {
404 page = s->cmd >> 6;
405 offset = addr | (page << 4);
406 switch(offset) {
407 case EN0_TSR:
408 ret = s->tsr;
409 break;
410 case EN0_BOUNDARY:
411 ret = s->boundary;
412 break;
413 case EN0_ISR:
414 ret = s->isr;
415 break;
bellardee9dbb22004-04-21 23:29:33 +0000416 case EN0_RSARLO:
417 ret = s->rsar & 0x00ff;
418 break;
419 case EN0_RSARHI:
420 ret = s->rsar >> 8;
421 break;
bellard80cabfa2004-03-14 12:20:30 +0000422 case EN1_PHYS ... EN1_PHYS + 5:
423 ret = s->phys[offset - EN1_PHYS];
424 break;
425 case EN1_CURPAG:
426 ret = s->curpag;
427 break;
428 case EN1_MULT ... EN1_MULT + 7:
429 ret = s->mult[offset - EN1_MULT];
430 break;
bellard8d6c7eb2004-05-22 16:52:29 +0000431 case EN0_RSR:
432 ret = s->rsr;
433 break;
bellarda343df12005-04-28 19:45:10 +0000434 case EN2_STARTPG:
435 ret = s->start >> 8;
436 break;
437 case EN2_STOPPG:
438 ret = s->stop >> 8;
439 break;
bellard089af992005-11-22 20:16:13 +0000440 case EN0_RTL8029ID0:
441 ret = 0x50;
442 break;
443 case EN0_RTL8029ID1:
444 ret = 0x43;
445 break;
446 case EN3_CONFIG0:
447 ret = 0; /* 10baseT media */
448 break;
449 case EN3_CONFIG2:
450 ret = 0x40; /* 10baseT active */
451 break;
452 case EN3_CONFIG3:
453 ret = 0x40; /* Full duplex */
454 break;
bellard80cabfa2004-03-14 12:20:30 +0000455 default:
456 ret = 0x00;
457 break;
458 }
459 }
460#ifdef DEBUG_NE2000
461 printf("NE2000: read addr=0x%x val=%02x\n", addr, ret);
462#endif
463 return ret;
464}
465
ths5fafdf22007-09-16 21:08:06 +0000466static inline void ne2000_mem_writeb(NE2000State *s, uint32_t addr,
bellard69b91032004-05-18 23:05:28 +0000467 uint32_t val)
bellardee9dbb22004-04-21 23:29:33 +0000468{
ths5fafdf22007-09-16 21:08:06 +0000469 if (addr < 32 ||
bellardee9dbb22004-04-21 23:29:33 +0000470 (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
471 s->mem[addr] = val;
472 }
473}
474
ths5fafdf22007-09-16 21:08:06 +0000475static inline void ne2000_mem_writew(NE2000State *s, uint32_t addr,
bellardee9dbb22004-04-21 23:29:33 +0000476 uint32_t val)
477{
478 addr &= ~1; /* XXX: check exact behaviour if not even */
ths5fafdf22007-09-16 21:08:06 +0000479 if (addr < 32 ||
bellardee9dbb22004-04-21 23:29:33 +0000480 (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
bellard69b91032004-05-18 23:05:28 +0000481 *(uint16_t *)(s->mem + addr) = cpu_to_le16(val);
482 }
483}
484
ths5fafdf22007-09-16 21:08:06 +0000485static inline void ne2000_mem_writel(NE2000State *s, uint32_t addr,
bellard69b91032004-05-18 23:05:28 +0000486 uint32_t val)
487{
bellard57ccbab2004-06-07 20:45:42 +0000488 addr &= ~1; /* XXX: check exact behaviour if not even */
ths5fafdf22007-09-16 21:08:06 +0000489 if (addr < 32 ||
bellard69b91032004-05-18 23:05:28 +0000490 (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
bellard57ccbab2004-06-07 20:45:42 +0000491 cpu_to_le32wu((uint32_t *)(s->mem + addr), val);
bellardee9dbb22004-04-21 23:29:33 +0000492 }
493}
494
495static inline uint32_t ne2000_mem_readb(NE2000State *s, uint32_t addr)
496{
ths5fafdf22007-09-16 21:08:06 +0000497 if (addr < 32 ||
bellardee9dbb22004-04-21 23:29:33 +0000498 (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
499 return s->mem[addr];
500 } else {
501 return 0xff;
502 }
503}
504
505static inline uint32_t ne2000_mem_readw(NE2000State *s, uint32_t addr)
506{
507 addr &= ~1; /* XXX: check exact behaviour if not even */
ths5fafdf22007-09-16 21:08:06 +0000508 if (addr < 32 ||
bellardee9dbb22004-04-21 23:29:33 +0000509 (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
bellard69b91032004-05-18 23:05:28 +0000510 return le16_to_cpu(*(uint16_t *)(s->mem + addr));
bellardee9dbb22004-04-21 23:29:33 +0000511 } else {
512 return 0xffff;
513 }
514}
515
bellard69b91032004-05-18 23:05:28 +0000516static inline uint32_t ne2000_mem_readl(NE2000State *s, uint32_t addr)
517{
bellard57ccbab2004-06-07 20:45:42 +0000518 addr &= ~1; /* XXX: check exact behaviour if not even */
ths5fafdf22007-09-16 21:08:06 +0000519 if (addr < 32 ||
bellard69b91032004-05-18 23:05:28 +0000520 (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
bellard57ccbab2004-06-07 20:45:42 +0000521 return le32_to_cpupu((uint32_t *)(s->mem + addr));
bellard69b91032004-05-18 23:05:28 +0000522 } else {
523 return 0xffffffff;
524 }
525}
526
bellard3df3f6f2004-07-10 14:45:19 +0000527static inline void ne2000_dma_update(NE2000State *s, int len)
528{
529 s->rsar += len;
530 /* wrap */
531 /* XXX: check what to do if rsar > stop */
532 if (s->rsar == s->stop)
533 s->rsar = s->start;
534
535 if (s->rcnt <= len) {
536 s->rcnt = 0;
thse91c8a72007-06-03 13:35:16 +0000537 /* signal end of transfer */
bellard3df3f6f2004-07-10 14:45:19 +0000538 s->isr |= ENISR_RDC;
539 ne2000_update_irq(s);
540 } else {
541 s->rcnt -= len;
542 }
543}
544
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200545void ne2000_asic_ioport_write(void *opaque, uint32_t addr, uint32_t val)
bellard80cabfa2004-03-14 12:20:30 +0000546{
bellardb41a2cd2004-03-14 21:46:48 +0000547 NE2000State *s = opaque;
bellard80cabfa2004-03-14 12:20:30 +0000548
549#ifdef DEBUG_NE2000
550 printf("NE2000: asic write val=0x%04x\n", val);
551#endif
bellardee9dbb22004-04-21 23:29:33 +0000552 if (s->rcnt == 0)
bellard3df3f6f2004-07-10 14:45:19 +0000553 return;
bellard80cabfa2004-03-14 12:20:30 +0000554 if (s->dcfg & 0x01) {
555 /* 16 bit access */
bellardee9dbb22004-04-21 23:29:33 +0000556 ne2000_mem_writew(s, s->rsar, val);
bellard3df3f6f2004-07-10 14:45:19 +0000557 ne2000_dma_update(s, 2);
bellard80cabfa2004-03-14 12:20:30 +0000558 } else {
559 /* 8 bit access */
bellardee9dbb22004-04-21 23:29:33 +0000560 ne2000_mem_writeb(s, s->rsar, val);
bellard3df3f6f2004-07-10 14:45:19 +0000561 ne2000_dma_update(s, 1);
bellard80cabfa2004-03-14 12:20:30 +0000562 }
563}
564
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200565uint32_t ne2000_asic_ioport_read(void *opaque, uint32_t addr)
bellard80cabfa2004-03-14 12:20:30 +0000566{
bellardb41a2cd2004-03-14 21:46:48 +0000567 NE2000State *s = opaque;
bellard80cabfa2004-03-14 12:20:30 +0000568 int ret;
569
bellard80cabfa2004-03-14 12:20:30 +0000570 if (s->dcfg & 0x01) {
571 /* 16 bit access */
bellardee9dbb22004-04-21 23:29:33 +0000572 ret = ne2000_mem_readw(s, s->rsar);
bellard3df3f6f2004-07-10 14:45:19 +0000573 ne2000_dma_update(s, 2);
bellard80cabfa2004-03-14 12:20:30 +0000574 } else {
575 /* 8 bit access */
bellardee9dbb22004-04-21 23:29:33 +0000576 ret = ne2000_mem_readb(s, s->rsar);
bellard3df3f6f2004-07-10 14:45:19 +0000577 ne2000_dma_update(s, 1);
bellard80cabfa2004-03-14 12:20:30 +0000578 }
579#ifdef DEBUG_NE2000
580 printf("NE2000: asic read val=0x%04x\n", ret);
581#endif
582 return ret;
583}
584
bellard69b91032004-05-18 23:05:28 +0000585static void ne2000_asic_ioport_writel(void *opaque, uint32_t addr, uint32_t val)
586{
587 NE2000State *s = opaque;
588
589#ifdef DEBUG_NE2000
590 printf("NE2000: asic writel val=0x%04x\n", val);
591#endif
592 if (s->rcnt == 0)
bellard3df3f6f2004-07-10 14:45:19 +0000593 return;
bellard69b91032004-05-18 23:05:28 +0000594 /* 32 bit access */
595 ne2000_mem_writel(s, s->rsar, val);
bellard3df3f6f2004-07-10 14:45:19 +0000596 ne2000_dma_update(s, 4);
bellard69b91032004-05-18 23:05:28 +0000597}
598
599static uint32_t ne2000_asic_ioport_readl(void *opaque, uint32_t addr)
600{
601 NE2000State *s = opaque;
602 int ret;
603
604 /* 32 bit access */
605 ret = ne2000_mem_readl(s, s->rsar);
bellard3df3f6f2004-07-10 14:45:19 +0000606 ne2000_dma_update(s, 4);
bellard69b91032004-05-18 23:05:28 +0000607#ifdef DEBUG_NE2000
608 printf("NE2000: asic readl val=0x%04x\n", ret);
609#endif
610 return ret;
611}
612
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200613void ne2000_reset_ioport_write(void *opaque, uint32_t addr, uint32_t val)
bellard80cabfa2004-03-14 12:20:30 +0000614{
615 /* nothing to do (end of reset pulse) */
616}
617
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200618uint32_t ne2000_reset_ioport_read(void *opaque, uint32_t addr)
bellard80cabfa2004-03-14 12:20:30 +0000619{
bellardb41a2cd2004-03-14 21:46:48 +0000620 NE2000State *s = opaque;
bellard80cabfa2004-03-14 12:20:30 +0000621 ne2000_reset(s);
622 return 0;
623}
624
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200625void ne2000_save(QEMUFile* f, void* opaque)
bellard30ca2aa2004-10-03 13:56:00 +0000626{
Juan Quintelaa10fcec2009-08-24 18:42:49 +0200627 NE2000State* s = opaque;
ths60fe76f2007-12-16 03:02:09 +0000628 uint32_t tmp;
bellard30ca2aa2004-10-03 13:56:00 +0000629
bellardacff9df2006-02-01 21:40:18 +0000630 qemu_put_8s(f, &s->rxcr);
631
bellard30ca2aa2004-10-03 13:56:00 +0000632 qemu_put_8s(f, &s->cmd);
633 qemu_put_be32s(f, &s->start);
634 qemu_put_be32s(f, &s->stop);
635 qemu_put_8s(f, &s->boundary);
636 qemu_put_8s(f, &s->tsr);
637 qemu_put_8s(f, &s->tpsr);
638 qemu_put_be16s(f, &s->tcnt);
639 qemu_put_be16s(f, &s->rcnt);
640 qemu_put_be32s(f, &s->rsar);
641 qemu_put_8s(f, &s->rsr);
642 qemu_put_8s(f, &s->isr);
643 qemu_put_8s(f, &s->dcfg);
644 qemu_put_8s(f, &s->imr);
645 qemu_put_buffer(f, s->phys, 6);
646 qemu_put_8s(f, &s->curpag);
647 qemu_put_buffer(f, s->mult, 8);
pbrookd537cf62007-04-07 18:14:41 +0000648 tmp = 0;
649 qemu_put_be32s(f, &tmp); /* ignored, was irq */
bellard30ca2aa2004-10-03 13:56:00 +0000650 qemu_put_buffer(f, s->mem, NE2000_MEM_SIZE);
651}
652
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200653int ne2000_load(QEMUFile* f, void* opaque, int version_id)
bellard30ca2aa2004-10-03 13:56:00 +0000654{
Juan Quintelaa10fcec2009-08-24 18:42:49 +0200655 NE2000State* s = opaque;
ths60fe76f2007-12-16 03:02:09 +0000656 uint32_t tmp;
bellard30ca2aa2004-10-03 13:56:00 +0000657
bellard1941d192006-08-17 10:46:34 +0000658 if (version_id > 3)
bellard30ca2aa2004-10-03 13:56:00 +0000659 return -EINVAL;
bellard1941d192006-08-17 10:46:34 +0000660
bellard1941d192006-08-17 10:46:34 +0000661 if (version_id >= 2) {
662 qemu_get_8s(f, &s->rxcr);
663 } else {
664 s->rxcr = 0x0c;
bellardacff9df2006-02-01 21:40:18 +0000665 }
bellard30ca2aa2004-10-03 13:56:00 +0000666
667 qemu_get_8s(f, &s->cmd);
668 qemu_get_be32s(f, &s->start);
669 qemu_get_be32s(f, &s->stop);
670 qemu_get_8s(f, &s->boundary);
671 qemu_get_8s(f, &s->tsr);
672 qemu_get_8s(f, &s->tpsr);
673 qemu_get_be16s(f, &s->tcnt);
674 qemu_get_be16s(f, &s->rcnt);
675 qemu_get_be32s(f, &s->rsar);
676 qemu_get_8s(f, &s->rsr);
677 qemu_get_8s(f, &s->isr);
678 qemu_get_8s(f, &s->dcfg);
679 qemu_get_8s(f, &s->imr);
680 qemu_get_buffer(f, s->phys, 6);
681 qemu_get_8s(f, &s->curpag);
682 qemu_get_buffer(f, s->mult, 8);
pbrookd537cf62007-04-07 18:14:41 +0000683 qemu_get_be32s(f, &tmp); /* ignored */
bellard30ca2aa2004-10-03 13:56:00 +0000684 qemu_get_buffer(f, s->mem, NE2000_MEM_SIZE);
685
686 return 0;
687}
688
Juan Quintelaa60380a2009-08-24 18:42:53 +0200689static void pci_ne2000_save(QEMUFile* f, void* opaque)
690{
691 PCINE2000State* s = opaque;
692
693 pci_device_save(&s->dev, f);
694 ne2000_save(f, &s->ne2000);
695}
696
697static int pci_ne2000_load(QEMUFile* f, void* opaque, int version_id)
698{
699 PCINE2000State* s = opaque;
700 int ret;
701
702 if (version_id > 3)
703 return -EINVAL;
704
705 if (version_id >= 3) {
706 ret = pci_device_load(&s->dev, f);
707 if (ret < 0)
708 return ret;
709 }
710
711 return ne2000_load(f, &s->ne2000, version_id);
712}
713
bellard69b91032004-05-18 23:05:28 +0000714/***********************************************************/
715/* PCI NE2000 definitions */
716
ths5fafdf22007-09-16 21:08:06 +0000717static void ne2000_map(PCIDevice *pci_dev, int region_num,
bellard69b91032004-05-18 23:05:28 +0000718 uint32_t addr, uint32_t size, int type)
719{
Juan Quintela377a7f02009-08-24 18:42:51 +0200720 PCINE2000State *d = DO_UPCAST(PCINE2000State, dev, pci_dev);
bellard69b91032004-05-18 23:05:28 +0000721 NE2000State *s = &d->ne2000;
722
723 register_ioport_write(addr, 16, 1, ne2000_ioport_write, s);
724 register_ioport_read(addr, 16, 1, ne2000_ioport_read, s);
725
726 register_ioport_write(addr + 0x10, 1, 1, ne2000_asic_ioport_write, s);
727 register_ioport_read(addr + 0x10, 1, 1, ne2000_asic_ioport_read, s);
728 register_ioport_write(addr + 0x10, 2, 2, ne2000_asic_ioport_write, s);
729 register_ioport_read(addr + 0x10, 2, 2, ne2000_asic_ioport_read, s);
730 register_ioport_write(addr + 0x10, 4, 4, ne2000_asic_ioport_writel, s);
731 register_ioport_read(addr + 0x10, 4, 4, ne2000_asic_ioport_readl, s);
732
733 register_ioport_write(addr + 0x1f, 1, 1, ne2000_reset_ioport_write, s);
734 register_ioport_read(addr + 0x1f, 1, 1, ne2000_reset_ioport_read, s);
735}
736
aliguorib946a152009-04-17 17:11:08 +0000737static void ne2000_cleanup(VLANClientState *vc)
738{
739 NE2000State *s = vc->opaque;
740
741 unregister_savevm("ne2000", s);
742}
743
Gerd Hoffmann81a322d2009-08-14 10:36:05 +0200744static int pci_ne2000_init(PCIDevice *pci_dev)
bellard69b91032004-05-18 23:05:28 +0000745{
Juan Quintela377a7f02009-08-24 18:42:51 +0200746 PCINE2000State *d = DO_UPCAST(PCINE2000State, dev, pci_dev);
bellard69b91032004-05-18 23:05:28 +0000747 NE2000State *s;
748 uint8_t *pci_conf;
ths3b46e622007-09-17 08:09:54 +0000749
bellard69b91032004-05-18 23:05:28 +0000750 pci_conf = d->dev.config;
aliguorideb54392009-01-26 15:37:35 +0000751 pci_config_set_vendor_id(pci_conf, PCI_VENDOR_ID_REALTEK);
aliguoria770dc72009-03-13 15:02:23 +0000752 pci_config_set_device_id(pci_conf, PCI_DEVICE_ID_REALTEK_8029);
blueswir1173a5432009-02-01 19:26:20 +0000753 pci_config_set_class(pci_conf, PCI_CLASS_NETWORK_ETHERNET);
Isaku Yamahata6407f372009-05-03 19:03:00 +0000754 pci_conf[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
bellard4a9c9682004-05-20 12:43:25 +0000755 pci_conf[0x3d] = 1; // interrupt pin 0
ths3b46e622007-09-17 08:09:54 +0000756
Avi Kivity28c2c262009-06-14 11:38:53 +0300757 pci_register_bar(&d->dev, 0, 0x100,
bellard69b91032004-05-18 23:05:28 +0000758 PCI_ADDRESS_SPACE_IO, ne2000_map);
759 s = &d->ne2000;
pbrookd537cf62007-04-07 18:14:41 +0000760 s->irq = d->dev.irq[0];
Paul Brook9d07d752009-05-14 22:35:07 +0100761 qdev_get_macaddr(&d->dev.qdev, s->macaddr);
bellard69b91032004-05-18 23:05:28 +0000762 ne2000_reset(s);
Paul Brook9d07d752009-05-14 22:35:07 +0100763 s->vc = qdev_get_vlan_client(&d->dev.qdev,
Mark McLoughlin463af532009-05-18 12:55:27 +0100764 ne2000_can_receive, ne2000_receive, NULL,
aliguorib946a152009-04-17 17:11:08 +0000765 ne2000_cleanup, s);
bellard30ca2aa2004-10-03 13:56:00 +0000766
aliguori7cb7434b2009-01-07 17:46:21 +0000767 qemu_format_nic_info_str(s->vc, s->macaddr);
ths3b46e622007-09-17 08:09:54 +0000768
Juan Quintelaa60380a2009-08-24 18:42:53 +0200769 register_savevm("ne2000", -1, 3, pci_ne2000_save, pci_ne2000_load, d);
Gerd Hoffmann81a322d2009-08-14 10:36:05 +0200770 return 0;
bellard69b91032004-05-18 23:05:28 +0000771}
Paul Brook9d07d752009-05-14 22:35:07 +0100772
Gerd Hoffmann0aab0d32009-06-30 14:12:07 +0200773static PCIDeviceInfo ne2000_info = {
774 .qdev.name = "ne2k_pci",
775 .qdev.size = sizeof(PCINE2000State),
776 .init = pci_ne2000_init,
777};
778
Paul Brook9d07d752009-05-14 22:35:07 +0100779static void ne2000_register_devices(void)
780{
Gerd Hoffmann0aab0d32009-06-30 14:12:07 +0200781 pci_qdev_register(&ne2000_info);
Paul Brook9d07d752009-05-14 22:35:07 +0100782}
783
784device_init(ne2000_register_devices)