blob: 0be189af573143c5cddf1df788e3a86b0ad66888 [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"
Gerd Hoffmanna783cc32009-10-21 15:25:30 +020028#include "loader.h"
bellard80cabfa2004-03-14 12:20:30 +000029
30/* debug NE2000 card */
31//#define DEBUG_NE2000
32
bellardb41a2cd2004-03-14 21:46:48 +000033#define MAX_ETH_FRAME_SIZE 1514
bellard80cabfa2004-03-14 12:20:30 +000034
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 */
bellard089af992005-11-22 20:16:13 +000054#define EN0_RTL8029ID0 0x0a /* Realtek ID byte #1 RD */
bellard80cabfa2004-03-14 12:20:30 +000055#define EN0_RCNTHI 0x0b /* Remote byte count reg WR */
bellard089af992005-11-22 20:16:13 +000056#define EN0_RTL8029ID1 0x0b /* Realtek ID byte #2 RD */
bellard80cabfa2004-03-14 12:20:30 +000057#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
bellarda343df12005-04-28 19:45:10 +000070#define EN2_STARTPG 0x21 /* Starting page of ring bfr RD */
71#define EN2_STOPPG 0x22 /* Ending page +1 of ring bfr RD */
72
bellard089af992005-11-22 20:16:13 +000073#define EN3_CONFIG0 0x33
74#define EN3_CONFIG1 0x34
75#define EN3_CONFIG2 0x35
76#define EN3_CONFIG3 0x36
77
bellard80cabfa2004-03-14 12:20:30 +000078/* 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
Juan Quintela2b7a0502009-08-24 18:42:52 +0200120typedef struct PCINE2000State {
121 PCIDevice dev;
122 NE2000State ne2000;
123} PCINE2000State;
124
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200125void ne2000_reset(NE2000State *s)
bellard80cabfa2004-03-14 12:20:30 +0000126{
127 int i;
128
129 s->isr = ENISR_RESET;
Gerd Hoffmann93db6682009-10-21 15:25:27 +0200130 memcpy(s->mem, &s->c.macaddr, 6);
bellard80cabfa2004-03-14 12:20:30 +0000131 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;
bellarda343df12005-04-28 19:45:10 +0000144 isr = (s->isr & s->imr) & 0x7f;
bellarda541f292004-04-12 20:39:29 +0000145#if defined(DEBUG_NE2000)
pbrookd537cf62007-04-07 18:14:41 +0000146 printf("NE2000: Set IRQ to %d (%02x %02x)\n",
147 isr ? 1 : 0, s->isr, s->imr);
bellarda541f292004-04-12 20:39:29 +0000148#endif
pbrookd537cf62007-04-07 18:14:41 +0000149 qemu_set_irq(s->irq, (isr != 0));
bellard80cabfa2004-03-14 12:20:30 +0000150}
151
bellard7c9d8e02005-11-15 22:16:05 +0000152#define POLYNOMIAL 0x04c11db6
153
154/* From FreeBSD */
155/* XXX: optimize */
156static int compute_mcast_idx(const uint8_t *ep)
157{
158 uint32_t crc;
159 int carry, i, j;
160 uint8_t b;
161
162 crc = 0xffffffff;
163 for (i = 0; i < 6; i++) {
164 b = *ep++;
165 for (j = 0; j < 8; j++) {
166 carry = ((crc & 0x80000000L) ? 1 : 0) ^ (b & 0x01);
167 crc <<= 1;
168 b >>= 1;
169 if (carry)
170 crc = ((crc ^ POLYNOMIAL) | carry);
171 }
172 }
173 return (crc >> 26);
174}
175
pbrookd861b052006-02-04 22:15:28 +0000176static int ne2000_buffer_full(NE2000State *s)
bellard80cabfa2004-03-14 12:20:30 +0000177{
bellard80cabfa2004-03-14 12:20:30 +0000178 int avail, index, boundary;
pbrookd861b052006-02-04 22:15:28 +0000179
bellard80cabfa2004-03-14 12:20:30 +0000180 index = s->curpag << 8;
181 boundary = s->boundary << 8;
ths28c1c652007-04-02 08:19:57 +0000182 if (index < boundary)
bellard80cabfa2004-03-14 12:20:30 +0000183 avail = boundary - index;
184 else
185 avail = (s->stop - s->start) - (index - boundary);
186 if (avail < (MAX_ETH_FRAME_SIZE + 4))
pbrookd861b052006-02-04 22:15:28 +0000187 return 1;
188 return 0;
189}
190
Mark McLoughlin1c2045b2009-11-25 18:49:14 +0000191int ne2000_can_receive(VLANClientState *nc)
pbrookd861b052006-02-04 22:15:28 +0000192{
Mark McLoughlin1c2045b2009-11-25 18:49:14 +0000193 NE2000State *s = DO_UPCAST(NICState, nc, nc)->opaque;
ths3b46e622007-09-17 08:09:54 +0000194
pbrookd861b052006-02-04 22:15:28 +0000195 if (s->cmd & E8390_STOP)
aurel32e89f00e2008-03-28 22:57:48 +0000196 return 1;
pbrookd861b052006-02-04 22:15:28 +0000197 return !ne2000_buffer_full(s);
bellard80cabfa2004-03-14 12:20:30 +0000198}
199
bellardb41a2cd2004-03-14 21:46:48 +0000200#define MIN_BUF_SIZE 60
201
Mark McLoughlin1c2045b2009-11-25 18:49:14 +0000202ssize_t ne2000_receive(VLANClientState *nc, const uint8_t *buf, size_t size_)
bellard80cabfa2004-03-14 12:20:30 +0000203{
Mark McLoughlin1c2045b2009-11-25 18:49:14 +0000204 NE2000State *s = DO_UPCAST(NICState, nc, nc)->opaque;
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100205 int size = size_;
bellard80cabfa2004-03-14 12:20:30 +0000206 uint8_t *p;
ths0ae045a2007-06-25 13:47:44 +0000207 unsigned int total_len, next, avail, len, index, mcast_idx;
bellardb41a2cd2004-03-14 21:46:48 +0000208 uint8_t buf1[60];
ths5fafdf22007-09-16 21:08:06 +0000209 static const uint8_t broadcast_macaddr[6] =
bellard7c9d8e02005-11-15 22:16:05 +0000210 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
ths3b46e622007-09-17 08:09:54 +0000211
bellard80cabfa2004-03-14 12:20:30 +0000212#if defined(DEBUG_NE2000)
213 printf("NE2000: received len=%d\n", size);
214#endif
215
pbrookd861b052006-02-04 22:15:28 +0000216 if (s->cmd & E8390_STOP || ne2000_buffer_full(s))
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100217 return -1;
ths3b46e622007-09-17 08:09:54 +0000218
bellard7c9d8e02005-11-15 22:16:05 +0000219 /* XXX: check this */
220 if (s->rxcr & 0x10) {
221 /* promiscuous: receive all */
222 } else {
223 if (!memcmp(buf, broadcast_macaddr, 6)) {
224 /* broadcast address */
225 if (!(s->rxcr & 0x04))
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100226 return size;
bellard7c9d8e02005-11-15 22:16:05 +0000227 } else if (buf[0] & 0x01) {
228 /* multicast */
229 if (!(s->rxcr & 0x08))
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100230 return size;
bellard7c9d8e02005-11-15 22:16:05 +0000231 mcast_idx = compute_mcast_idx(buf);
232 if (!(s->mult[mcast_idx >> 3] & (1 << (mcast_idx & 7))))
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100233 return size;
bellard7c9d8e02005-11-15 22:16:05 +0000234 } else if (s->mem[0] == buf[0] &&
ths3b46e622007-09-17 08:09:54 +0000235 s->mem[2] == buf[1] &&
236 s->mem[4] == buf[2] &&
237 s->mem[6] == buf[3] &&
238 s->mem[8] == buf[4] &&
bellard7c9d8e02005-11-15 22:16:05 +0000239 s->mem[10] == buf[5]) {
240 /* match */
241 } else {
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100242 return size;
bellard7c9d8e02005-11-15 22:16:05 +0000243 }
244 }
245
246
bellardb41a2cd2004-03-14 21:46:48 +0000247 /* if too small buffer, then expand it */
248 if (size < MIN_BUF_SIZE) {
249 memcpy(buf1, buf, size);
250 memset(buf1 + size, 0, MIN_BUF_SIZE - size);
251 buf = buf1;
252 size = MIN_BUF_SIZE;
253 }
254
bellard80cabfa2004-03-14 12:20:30 +0000255 index = s->curpag << 8;
256 /* 4 bytes for header */
257 total_len = size + 4;
258 /* address for next packet (4 bytes for CRC) */
259 next = index + ((total_len + 4 + 255) & ~0xff);
260 if (next >= s->stop)
261 next -= (s->stop - s->start);
262 /* prepare packet header */
263 p = s->mem + index;
bellard8d6c7eb2004-05-22 16:52:29 +0000264 s->rsr = ENRSR_RXOK; /* receive status */
265 /* XXX: check this */
266 if (buf[0] & 0x01)
267 s->rsr |= ENRSR_PHY;
268 p[0] = s->rsr;
bellard80cabfa2004-03-14 12:20:30 +0000269 p[1] = next >> 8;
270 p[2] = total_len;
271 p[3] = total_len >> 8;
272 index += 4;
273
274 /* write packet data */
275 while (size > 0) {
ths0ae045a2007-06-25 13:47:44 +0000276 if (index <= s->stop)
277 avail = s->stop - index;
278 else
279 avail = 0;
bellard80cabfa2004-03-14 12:20:30 +0000280 len = size;
281 if (len > avail)
282 len = avail;
283 memcpy(s->mem + index, buf, len);
284 buf += len;
285 index += len;
286 if (index == s->stop)
287 index = s->start;
288 size -= len;
289 }
290 s->curpag = next >> 8;
bellard8d6c7eb2004-05-22 16:52:29 +0000291
ths9f083492006-12-07 18:28:42 +0000292 /* now we can signal we have received something */
bellard80cabfa2004-03-14 12:20:30 +0000293 s->isr |= ENISR_RX;
294 ne2000_update_irq(s);
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100295
296 return size_;
bellard80cabfa2004-03-14 12:20:30 +0000297}
298
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200299void ne2000_ioport_write(void *opaque, uint32_t addr, uint32_t val)
bellard80cabfa2004-03-14 12:20:30 +0000300{
bellardb41a2cd2004-03-14 21:46:48 +0000301 NE2000State *s = opaque;
bellard40545f82005-04-10 14:51:41 +0000302 int offset, page, index;
bellard80cabfa2004-03-14 12:20:30 +0000303
304 addr &= 0xf;
305#ifdef DEBUG_NE2000
306 printf("NE2000: write addr=0x%x val=0x%02x\n", addr, val);
307#endif
308 if (addr == E8390_CMD) {
309 /* control register */
310 s->cmd = val;
bellarda343df12005-04-28 19:45:10 +0000311 if (!(val & E8390_STOP)) { /* START bit makes no sense on RTL8029... */
bellardee9dbb22004-04-21 23:29:33 +0000312 s->isr &= ~ENISR_RESET;
thse91c8a72007-06-03 13:35:16 +0000313 /* test specific case: zero length transfer */
bellard80cabfa2004-03-14 12:20:30 +0000314 if ((val & (E8390_RREAD | E8390_RWRITE)) &&
315 s->rcnt == 0) {
316 s->isr |= ENISR_RDC;
317 ne2000_update_irq(s);
318 }
319 if (val & E8390_TRANS) {
bellard40545f82005-04-10 14:51:41 +0000320 index = (s->tpsr << 8);
ths5fafdf22007-09-16 21:08:06 +0000321 /* XXX: next 2 lines are a hack to make netware 3.11 work */
bellard40545f82005-04-10 14:51:41 +0000322 if (index >= NE2000_PMEM_END)
323 index -= NE2000_PMEM_SIZE;
324 /* fail safe: check range on the transmitted length */
325 if (index + s->tcnt <= NE2000_PMEM_END) {
Mark McLoughlin1c2045b2009-11-25 18:49:14 +0000326 qemu_send_packet(&s->nic->nc, s->mem + index, s->tcnt);
bellard40545f82005-04-10 14:51:41 +0000327 }
thse91c8a72007-06-03 13:35:16 +0000328 /* signal end of transfer */
bellard80cabfa2004-03-14 12:20:30 +0000329 s->tsr = ENTSR_PTX;
330 s->isr |= ENISR_TX;
ths5fafdf22007-09-16 21:08:06 +0000331 s->cmd &= ~E8390_TRANS;
bellard80cabfa2004-03-14 12:20:30 +0000332 ne2000_update_irq(s);
333 }
334 }
335 } else {
336 page = s->cmd >> 6;
337 offset = addr | (page << 4);
338 switch(offset) {
339 case EN0_STARTPG:
340 s->start = val << 8;
341 break;
342 case EN0_STOPPG:
343 s->stop = val << 8;
344 break;
345 case EN0_BOUNDARY:
346 s->boundary = val;
347 break;
348 case EN0_IMR:
349 s->imr = val;
350 ne2000_update_irq(s);
351 break;
352 case EN0_TPSR:
353 s->tpsr = val;
354 break;
355 case EN0_TCNTLO:
356 s->tcnt = (s->tcnt & 0xff00) | val;
357 break;
358 case EN0_TCNTHI:
359 s->tcnt = (s->tcnt & 0x00ff) | (val << 8);
360 break;
361 case EN0_RSARLO:
362 s->rsar = (s->rsar & 0xff00) | val;
363 break;
364 case EN0_RSARHI:
365 s->rsar = (s->rsar & 0x00ff) | (val << 8);
366 break;
367 case EN0_RCNTLO:
368 s->rcnt = (s->rcnt & 0xff00) | val;
369 break;
370 case EN0_RCNTHI:
371 s->rcnt = (s->rcnt & 0x00ff) | (val << 8);
372 break;
bellard7c9d8e02005-11-15 22:16:05 +0000373 case EN0_RXCR:
374 s->rxcr = val;
375 break;
bellard80cabfa2004-03-14 12:20:30 +0000376 case EN0_DCFG:
377 s->dcfg = val;
378 break;
379 case EN0_ISR:
bellardee9dbb22004-04-21 23:29:33 +0000380 s->isr &= ~(val & 0x7f);
bellard80cabfa2004-03-14 12:20:30 +0000381 ne2000_update_irq(s);
382 break;
383 case EN1_PHYS ... EN1_PHYS + 5:
384 s->phys[offset - EN1_PHYS] = val;
385 break;
386 case EN1_CURPAG:
387 s->curpag = val;
388 break;
389 case EN1_MULT ... EN1_MULT + 7:
390 s->mult[offset - EN1_MULT] = val;
391 break;
392 }
393 }
394}
395
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200396uint32_t ne2000_ioport_read(void *opaque, uint32_t addr)
bellard80cabfa2004-03-14 12:20:30 +0000397{
bellardb41a2cd2004-03-14 21:46:48 +0000398 NE2000State *s = opaque;
bellard80cabfa2004-03-14 12:20:30 +0000399 int offset, page, ret;
400
401 addr &= 0xf;
402 if (addr == E8390_CMD) {
403 ret = s->cmd;
404 } else {
405 page = s->cmd >> 6;
406 offset = addr | (page << 4);
407 switch(offset) {
408 case EN0_TSR:
409 ret = s->tsr;
410 break;
411 case EN0_BOUNDARY:
412 ret = s->boundary;
413 break;
414 case EN0_ISR:
415 ret = s->isr;
416 break;
bellardee9dbb22004-04-21 23:29:33 +0000417 case EN0_RSARLO:
418 ret = s->rsar & 0x00ff;
419 break;
420 case EN0_RSARHI:
421 ret = s->rsar >> 8;
422 break;
bellard80cabfa2004-03-14 12:20:30 +0000423 case EN1_PHYS ... EN1_PHYS + 5:
424 ret = s->phys[offset - EN1_PHYS];
425 break;
426 case EN1_CURPAG:
427 ret = s->curpag;
428 break;
429 case EN1_MULT ... EN1_MULT + 7:
430 ret = s->mult[offset - EN1_MULT];
431 break;
bellard8d6c7eb2004-05-22 16:52:29 +0000432 case EN0_RSR:
433 ret = s->rsr;
434 break;
bellarda343df12005-04-28 19:45:10 +0000435 case EN2_STARTPG:
436 ret = s->start >> 8;
437 break;
438 case EN2_STOPPG:
439 ret = s->stop >> 8;
440 break;
bellard089af992005-11-22 20:16:13 +0000441 case EN0_RTL8029ID0:
442 ret = 0x50;
443 break;
444 case EN0_RTL8029ID1:
445 ret = 0x43;
446 break;
447 case EN3_CONFIG0:
448 ret = 0; /* 10baseT media */
449 break;
450 case EN3_CONFIG2:
451 ret = 0x40; /* 10baseT active */
452 break;
453 case EN3_CONFIG3:
454 ret = 0x40; /* Full duplex */
455 break;
bellard80cabfa2004-03-14 12:20:30 +0000456 default:
457 ret = 0x00;
458 break;
459 }
460 }
461#ifdef DEBUG_NE2000
462 printf("NE2000: read addr=0x%x val=%02x\n", addr, ret);
463#endif
464 return ret;
465}
466
ths5fafdf22007-09-16 21:08:06 +0000467static inline void ne2000_mem_writeb(NE2000State *s, uint32_t addr,
bellard69b91032004-05-18 23:05:28 +0000468 uint32_t val)
bellardee9dbb22004-04-21 23:29:33 +0000469{
ths5fafdf22007-09-16 21:08:06 +0000470 if (addr < 32 ||
bellardee9dbb22004-04-21 23:29:33 +0000471 (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
472 s->mem[addr] = val;
473 }
474}
475
ths5fafdf22007-09-16 21:08:06 +0000476static inline void ne2000_mem_writew(NE2000State *s, uint32_t addr,
bellardee9dbb22004-04-21 23:29:33 +0000477 uint32_t val)
478{
479 addr &= ~1; /* XXX: check exact behaviour if not even */
ths5fafdf22007-09-16 21:08:06 +0000480 if (addr < 32 ||
bellardee9dbb22004-04-21 23:29:33 +0000481 (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
bellard69b91032004-05-18 23:05:28 +0000482 *(uint16_t *)(s->mem + addr) = cpu_to_le16(val);
483 }
484}
485
ths5fafdf22007-09-16 21:08:06 +0000486static inline void ne2000_mem_writel(NE2000State *s, uint32_t addr,
bellard69b91032004-05-18 23:05:28 +0000487 uint32_t val)
488{
bellard57ccbab2004-06-07 20:45:42 +0000489 addr &= ~1; /* XXX: check exact behaviour if not even */
ths5fafdf22007-09-16 21:08:06 +0000490 if (addr < 32 ||
bellard69b91032004-05-18 23:05:28 +0000491 (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
bellard57ccbab2004-06-07 20:45:42 +0000492 cpu_to_le32wu((uint32_t *)(s->mem + addr), val);
bellardee9dbb22004-04-21 23:29:33 +0000493 }
494}
495
496static inline uint32_t ne2000_mem_readb(NE2000State *s, uint32_t addr)
497{
ths5fafdf22007-09-16 21:08:06 +0000498 if (addr < 32 ||
bellardee9dbb22004-04-21 23:29:33 +0000499 (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
500 return s->mem[addr];
501 } else {
502 return 0xff;
503 }
504}
505
506static inline uint32_t ne2000_mem_readw(NE2000State *s, uint32_t addr)
507{
508 addr &= ~1; /* XXX: check exact behaviour if not even */
ths5fafdf22007-09-16 21:08:06 +0000509 if (addr < 32 ||
bellardee9dbb22004-04-21 23:29:33 +0000510 (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
bellard69b91032004-05-18 23:05:28 +0000511 return le16_to_cpu(*(uint16_t *)(s->mem + addr));
bellardee9dbb22004-04-21 23:29:33 +0000512 } else {
513 return 0xffff;
514 }
515}
516
bellard69b91032004-05-18 23:05:28 +0000517static inline uint32_t ne2000_mem_readl(NE2000State *s, uint32_t addr)
518{
bellard57ccbab2004-06-07 20:45:42 +0000519 addr &= ~1; /* XXX: check exact behaviour if not even */
ths5fafdf22007-09-16 21:08:06 +0000520 if (addr < 32 ||
bellard69b91032004-05-18 23:05:28 +0000521 (addr >= NE2000_PMEM_START && addr < NE2000_MEM_SIZE)) {
bellard57ccbab2004-06-07 20:45:42 +0000522 return le32_to_cpupu((uint32_t *)(s->mem + addr));
bellard69b91032004-05-18 23:05:28 +0000523 } else {
524 return 0xffffffff;
525 }
526}
527
bellard3df3f6f2004-07-10 14:45:19 +0000528static inline void ne2000_dma_update(NE2000State *s, int len)
529{
530 s->rsar += len;
531 /* wrap */
532 /* XXX: check what to do if rsar > stop */
533 if (s->rsar == s->stop)
534 s->rsar = s->start;
535
536 if (s->rcnt <= len) {
537 s->rcnt = 0;
thse91c8a72007-06-03 13:35:16 +0000538 /* signal end of transfer */
bellard3df3f6f2004-07-10 14:45:19 +0000539 s->isr |= ENISR_RDC;
540 ne2000_update_irq(s);
541 } else {
542 s->rcnt -= len;
543 }
544}
545
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200546void ne2000_asic_ioport_write(void *opaque, uint32_t addr, uint32_t val)
bellard80cabfa2004-03-14 12:20:30 +0000547{
bellardb41a2cd2004-03-14 21:46:48 +0000548 NE2000State *s = opaque;
bellard80cabfa2004-03-14 12:20:30 +0000549
550#ifdef DEBUG_NE2000
551 printf("NE2000: asic write val=0x%04x\n", val);
552#endif
bellardee9dbb22004-04-21 23:29:33 +0000553 if (s->rcnt == 0)
bellard3df3f6f2004-07-10 14:45:19 +0000554 return;
bellard80cabfa2004-03-14 12:20:30 +0000555 if (s->dcfg & 0x01) {
556 /* 16 bit access */
bellardee9dbb22004-04-21 23:29:33 +0000557 ne2000_mem_writew(s, s->rsar, val);
bellard3df3f6f2004-07-10 14:45:19 +0000558 ne2000_dma_update(s, 2);
bellard80cabfa2004-03-14 12:20:30 +0000559 } else {
560 /* 8 bit access */
bellardee9dbb22004-04-21 23:29:33 +0000561 ne2000_mem_writeb(s, s->rsar, val);
bellard3df3f6f2004-07-10 14:45:19 +0000562 ne2000_dma_update(s, 1);
bellard80cabfa2004-03-14 12:20:30 +0000563 }
564}
565
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200566uint32_t ne2000_asic_ioport_read(void *opaque, uint32_t addr)
bellard80cabfa2004-03-14 12:20:30 +0000567{
bellardb41a2cd2004-03-14 21:46:48 +0000568 NE2000State *s = opaque;
bellard80cabfa2004-03-14 12:20:30 +0000569 int ret;
570
bellard80cabfa2004-03-14 12:20:30 +0000571 if (s->dcfg & 0x01) {
572 /* 16 bit access */
bellardee9dbb22004-04-21 23:29:33 +0000573 ret = ne2000_mem_readw(s, s->rsar);
bellard3df3f6f2004-07-10 14:45:19 +0000574 ne2000_dma_update(s, 2);
bellard80cabfa2004-03-14 12:20:30 +0000575 } else {
576 /* 8 bit access */
bellardee9dbb22004-04-21 23:29:33 +0000577 ret = ne2000_mem_readb(s, s->rsar);
bellard3df3f6f2004-07-10 14:45:19 +0000578 ne2000_dma_update(s, 1);
bellard80cabfa2004-03-14 12:20:30 +0000579 }
580#ifdef DEBUG_NE2000
581 printf("NE2000: asic read val=0x%04x\n", ret);
582#endif
583 return ret;
584}
585
bellard69b91032004-05-18 23:05:28 +0000586static void ne2000_asic_ioport_writel(void *opaque, uint32_t addr, uint32_t val)
587{
588 NE2000State *s = opaque;
589
590#ifdef DEBUG_NE2000
591 printf("NE2000: asic writel val=0x%04x\n", val);
592#endif
593 if (s->rcnt == 0)
bellard3df3f6f2004-07-10 14:45:19 +0000594 return;
bellard69b91032004-05-18 23:05:28 +0000595 /* 32 bit access */
596 ne2000_mem_writel(s, s->rsar, val);
bellard3df3f6f2004-07-10 14:45:19 +0000597 ne2000_dma_update(s, 4);
bellard69b91032004-05-18 23:05:28 +0000598}
599
600static uint32_t ne2000_asic_ioport_readl(void *opaque, uint32_t addr)
601{
602 NE2000State *s = opaque;
603 int ret;
604
605 /* 32 bit access */
606 ret = ne2000_mem_readl(s, s->rsar);
bellard3df3f6f2004-07-10 14:45:19 +0000607 ne2000_dma_update(s, 4);
bellard69b91032004-05-18 23:05:28 +0000608#ifdef DEBUG_NE2000
609 printf("NE2000: asic readl val=0x%04x\n", ret);
610#endif
611 return ret;
612}
613
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200614void ne2000_reset_ioport_write(void *opaque, uint32_t addr, uint32_t val)
bellard80cabfa2004-03-14 12:20:30 +0000615{
616 /* nothing to do (end of reset pulse) */
617}
618
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200619uint32_t ne2000_reset_ioport_read(void *opaque, uint32_t addr)
bellard80cabfa2004-03-14 12:20:30 +0000620{
bellardb41a2cd2004-03-14 21:46:48 +0000621 NE2000State *s = opaque;
bellard80cabfa2004-03-14 12:20:30 +0000622 ne2000_reset(s);
623 return 0;
624}
625
Juan Quintela7c131dd2009-10-19 18:26:11 +0200626static int ne2000_post_load(void* opaque, int version_id)
bellard30ca2aa2004-10-03 13:56:00 +0000627{
Juan Quintela7c131dd2009-10-19 18:26:11 +0200628 NE2000State* s = opaque;
bellard30ca2aa2004-10-03 13:56:00 +0000629
Juan Quintela7c131dd2009-10-19 18:26:11 +0200630 if (version_id < 2) {
631 s->rxcr = 0x0c;
632 }
633 return 0;
bellard30ca2aa2004-10-03 13:56:00 +0000634}
635
Juan Quintela7c131dd2009-10-19 18:26:11 +0200636const VMStateDescription vmstate_ne2000 = {
637 .name = "ne2000",
638 .version_id = 2,
639 .minimum_version_id = 0,
640 .minimum_version_id_old = 0,
641 .post_load = ne2000_post_load,
642 .fields = (VMStateField []) {
643 VMSTATE_UINT8_V(rxcr, NE2000State, 2),
644 VMSTATE_UINT8(cmd, NE2000State),
645 VMSTATE_UINT32(start, NE2000State),
646 VMSTATE_UINT32(stop, NE2000State),
647 VMSTATE_UINT8(boundary, NE2000State),
648 VMSTATE_UINT8(tsr, NE2000State),
649 VMSTATE_UINT8(tpsr, NE2000State),
650 VMSTATE_UINT16(tcnt, NE2000State),
651 VMSTATE_UINT16(rcnt, NE2000State),
652 VMSTATE_UINT32(rsar, NE2000State),
653 VMSTATE_UINT8(rsr, NE2000State),
654 VMSTATE_UINT8(isr, NE2000State),
655 VMSTATE_UINT8(dcfg, NE2000State),
656 VMSTATE_UINT8(imr, NE2000State),
657 VMSTATE_BUFFER(phys, NE2000State),
658 VMSTATE_UINT8(curpag, NE2000State),
659 VMSTATE_BUFFER(mult, NE2000State),
660 VMSTATE_UNUSED(4), /* was irq */
661 VMSTATE_BUFFER(mem, NE2000State),
662 VMSTATE_END_OF_LIST()
663 }
664};
bellard30ca2aa2004-10-03 13:56:00 +0000665
Juan Quintela7c131dd2009-10-19 18:26:11 +0200666const VMStateDescription vmstate_pci_ne2000 = {
667 .name = "ne2000",
668 .version_id = 3,
669 .minimum_version_id = 3,
670 .minimum_version_id_old = 3,
671 .fields = (VMStateField []) {
672 VMSTATE_PCI_DEVICE(dev, PCINE2000State),
673 VMSTATE_STRUCT(ne2000, PCINE2000State, 0, vmstate_ne2000, NE2000State),
674 VMSTATE_END_OF_LIST()
675 }
676};
Juan Quintelaa60380a2009-08-24 18:42:53 +0200677
bellard69b91032004-05-18 23:05:28 +0000678/***********************************************************/
679/* PCI NE2000 definitions */
680
ths5fafdf22007-09-16 21:08:06 +0000681static void ne2000_map(PCIDevice *pci_dev, int region_num,
Isaku Yamahata6e355d92009-10-30 21:21:08 +0900682 pcibus_t addr, pcibus_t size, int type)
bellard69b91032004-05-18 23:05:28 +0000683{
Juan Quintela377a7f02009-08-24 18:42:51 +0200684 PCINE2000State *d = DO_UPCAST(PCINE2000State, dev, pci_dev);
bellard69b91032004-05-18 23:05:28 +0000685 NE2000State *s = &d->ne2000;
686
687 register_ioport_write(addr, 16, 1, ne2000_ioport_write, s);
688 register_ioport_read(addr, 16, 1, ne2000_ioport_read, s);
689
690 register_ioport_write(addr + 0x10, 1, 1, ne2000_asic_ioport_write, s);
691 register_ioport_read(addr + 0x10, 1, 1, ne2000_asic_ioport_read, s);
692 register_ioport_write(addr + 0x10, 2, 2, ne2000_asic_ioport_write, s);
693 register_ioport_read(addr + 0x10, 2, 2, ne2000_asic_ioport_read, s);
694 register_ioport_write(addr + 0x10, 4, 4, ne2000_asic_ioport_writel, s);
695 register_ioport_read(addr + 0x10, 4, 4, ne2000_asic_ioport_readl, s);
696
697 register_ioport_write(addr + 0x1f, 1, 1, ne2000_reset_ioport_write, s);
698 register_ioport_read(addr + 0x1f, 1, 1, ne2000_reset_ioport_read, s);
699}
700
Mark McLoughlin1c2045b2009-11-25 18:49:14 +0000701static void ne2000_cleanup(VLANClientState *nc)
aliguorib946a152009-04-17 17:11:08 +0000702{
Mark McLoughlin1c2045b2009-11-25 18:49:14 +0000703 NE2000State *s = DO_UPCAST(NICState, nc, nc)->opaque;
aliguorib946a152009-04-17 17:11:08 +0000704
Mark McLoughlin1c2045b2009-11-25 18:49:14 +0000705 s->nic = NULL;
aliguorib946a152009-04-17 17:11:08 +0000706}
707
Mark McLoughlin1c2045b2009-11-25 18:49:14 +0000708static NetClientInfo net_ne2000_info = {
709 .type = NET_CLIENT_TYPE_NIC,
710 .size = sizeof(NICState),
711 .can_receive = ne2000_can_receive,
712 .receive = ne2000_receive,
713 .cleanup = ne2000_cleanup,
714};
715
Gerd Hoffmann81a322d2009-08-14 10:36:05 +0200716static int pci_ne2000_init(PCIDevice *pci_dev)
bellard69b91032004-05-18 23:05:28 +0000717{
Juan Quintela377a7f02009-08-24 18:42:51 +0200718 PCINE2000State *d = DO_UPCAST(PCINE2000State, dev, pci_dev);
bellard69b91032004-05-18 23:05:28 +0000719 NE2000State *s;
720 uint8_t *pci_conf;
ths3b46e622007-09-17 08:09:54 +0000721
bellard69b91032004-05-18 23:05:28 +0000722 pci_conf = d->dev.config;
aliguorideb54392009-01-26 15:37:35 +0000723 pci_config_set_vendor_id(pci_conf, PCI_VENDOR_ID_REALTEK);
aliguoria770dc72009-03-13 15:02:23 +0000724 pci_config_set_device_id(pci_conf, PCI_DEVICE_ID_REALTEK_8029);
blueswir1173a5432009-02-01 19:26:20 +0000725 pci_config_set_class(pci_conf, PCI_CLASS_NETWORK_ETHERNET);
Isaku Yamahata6407f372009-05-03 19:03:00 +0000726 pci_conf[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
bellard4a9c9682004-05-20 12:43:25 +0000727 pci_conf[0x3d] = 1; // interrupt pin 0
ths3b46e622007-09-17 08:09:54 +0000728
Avi Kivity28c2c262009-06-14 11:38:53 +0300729 pci_register_bar(&d->dev, 0, 0x100,
Isaku Yamahata0392a012009-10-30 21:21:03 +0900730 PCI_BASE_ADDRESS_SPACE_IO, ne2000_map);
bellard69b91032004-05-18 23:05:28 +0000731 s = &d->ne2000;
pbrookd537cf62007-04-07 18:14:41 +0000732 s->irq = d->dev.irq[0];
bellard30ca2aa2004-10-03 13:56:00 +0000733
Gerd Hoffmanna783cc32009-10-21 15:25:30 +0200734 qemu_macaddr_default_if_unset(&s->c.macaddr);
735 ne2000_reset(s);
Mark McLoughlin1c2045b2009-11-25 18:49:14 +0000736
737 s->nic = qemu_new_nic(&net_ne2000_info, &s->c,
738 pci_dev->qdev.info->name, pci_dev->qdev.id, s);
739 qemu_format_nic_info_str(&s->nic->nc, s->c.macaddr.a);
ths3b46e622007-09-17 08:09:54 +0000740
Gerd Hoffmanna783cc32009-10-21 15:25:30 +0200741 if (!pci_dev->qdev.hotplugged) {
742 static int loaded = 0;
743 if (!loaded) {
744 rom_add_option("pxe-ne2k_pci.bin");
745 loaded = 1;
746 }
747 }
748
Juan Quintela7c131dd2009-10-19 18:26:11 +0200749 vmstate_register(-1, &vmstate_pci_ne2000, d);
Gerd Hoffmann81a322d2009-08-14 10:36:05 +0200750 return 0;
bellard69b91032004-05-18 23:05:28 +0000751}
Paul Brook9d07d752009-05-14 22:35:07 +0100752
Gerd Hoffmanna783cc32009-10-21 15:25:30 +0200753static int pci_ne2000_exit(PCIDevice *pci_dev)
754{
755 PCINE2000State *d = DO_UPCAST(PCINE2000State, dev, pci_dev);
756 NE2000State *s = &d->ne2000;
757
Juan Quintela7c131dd2009-10-19 18:26:11 +0200758 vmstate_unregister(&vmstate_pci_ne2000, s);
Mark McLoughlin1c2045b2009-11-25 18:49:14 +0000759 qemu_del_vlan_client(&s->nic->nc);
Gerd Hoffmanna783cc32009-10-21 15:25:30 +0200760 return 0;
761}
762
Gerd Hoffmann0aab0d32009-06-30 14:12:07 +0200763static PCIDeviceInfo ne2000_info = {
Gerd Hoffmanna783cc32009-10-21 15:25:30 +0200764 .qdev.name = "ne2k_pci",
765 .qdev.size = sizeof(PCINE2000State),
766 .init = pci_ne2000_init,
767 .exit = pci_ne2000_exit,
768 .qdev.props = (Property[]) {
769 DEFINE_NIC_PROPERTIES(PCINE2000State, ne2000.c),
770 DEFINE_PROP_END_OF_LIST(),
771 }
Gerd Hoffmann0aab0d32009-06-30 14:12:07 +0200772};
773
Paul Brook9d07d752009-05-14 22:35:07 +0100774static void ne2000_register_devices(void)
775{
Gerd Hoffmann0aab0d32009-06-30 14:12:07 +0200776 pci_qdev_register(&ne2000_info);
Paul Brook9d07d752009-05-14 22:35:07 +0100777}
778
779device_init(ne2000_register_devices)