Use qemu_irq for a reset signal between DMA and ESP/Lance
[qemu] / hw / pcnet.c
1 /*
2  * QEMU AMD PC-Net II (Am79C970A) emulation
3  * 
4  * Copyright (c) 2004 Antony T Curtis
5  * 
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  */
24  
25 /* This software was written to be compatible with the specification:
26  * AMD Am79C970A PCnet-PCI II Ethernet Controller Data-Sheet
27  * AMD Publication# 19436  Rev:E  Amendment/0  Issue Date: June 2000
28  */
29  
30 /*
31  * On Sparc32, this is the Lance (Am7990) part of chip STP2000 (Master I/O), also
32  * produced as NCR89C100. See
33  * http://www.ibiblio.org/pub/historic-linux/early-ports/Sparc/NCR/NCR89C100.txt
34  * and
35  * http://www.ibiblio.org/pub/historic-linux/early-ports/Sparc/NCR/NCR92C990.txt
36  */
37
38 /* TODO: remove little endian host assumptions */
39  
40 #include "vl.h"
41
42 //#define PCNET_DEBUG
43 //#define PCNET_DEBUG_IO
44 //#define PCNET_DEBUG_BCR
45 //#define PCNET_DEBUG_CSR
46 //#define PCNET_DEBUG_RMD
47 //#define PCNET_DEBUG_TMD
48 //#define PCNET_DEBUG_MATCH
49
50
51 #define PCNET_IOPORT_SIZE       0x20
52 #define PCNET_PNPMMIO_SIZE      0x20
53
54
55 typedef struct PCNetState_st PCNetState;
56
57 struct PCNetState_st {
58     PCIDevice dev;
59     PCIDevice *pci_dev;
60     VLANClientState *vc;
61     NICInfo *nd;
62     QEMUTimer *poll_timer;
63     int mmio_index, rap, isr, lnkst;
64     uint32_t rdra, tdra;
65     uint8_t prom[16];
66     uint16_t csr[128];
67     uint16_t bcr[32];
68     uint64_t timer;
69     int xmit_pos, recv_pos;
70     uint8_t buffer[4096];
71     int tx_busy;
72     qemu_irq irq;
73     void (*phys_mem_read)(void *dma_opaque, target_phys_addr_t addr,
74                          uint8_t *buf, int len, int do_bswap);
75     void (*phys_mem_write)(void *dma_opaque, target_phys_addr_t addr,
76                           uint8_t *buf, int len, int do_bswap);
77     void *dma_opaque;
78 };
79
80 struct qemu_ether_header {
81     uint8_t ether_dhost[6];
82     uint8_t ether_shost[6];
83     uint16_t ether_type;
84 };
85
86 /* BUS CONFIGURATION REGISTERS */
87 #define BCR_MSRDA    0
88 #define BCR_MSWRA    1
89 #define BCR_MC       2
90 #define BCR_LNKST    4
91 #define BCR_LED1     5
92 #define BCR_LED2     6
93 #define BCR_LED3     7
94 #define BCR_FDC      9
95 #define BCR_BSBC     18
96 #define BCR_EECAS    19
97 #define BCR_SWS      20
98 #define BCR_PLAT     22
99
100 #define BCR_DWIO(S)      !!((S)->bcr[BCR_BSBC] & 0x0080)
101 #define BCR_SSIZE32(S)   !!((S)->bcr[BCR_SWS ] & 0x0100)
102 #define BCR_SWSTYLE(S)     ((S)->bcr[BCR_SWS ] & 0x00FF)
103
104 #define CSR_INIT(S)      !!(((S)->csr[0])&0x0001)
105 #define CSR_STRT(S)      !!(((S)->csr[0])&0x0002)
106 #define CSR_STOP(S)      !!(((S)->csr[0])&0x0004)
107 #define CSR_TDMD(S)      !!(((S)->csr[0])&0x0008)
108 #define CSR_TXON(S)      !!(((S)->csr[0])&0x0010)
109 #define CSR_RXON(S)      !!(((S)->csr[0])&0x0020)
110 #define CSR_INEA(S)      !!(((S)->csr[0])&0x0040)
111 #define CSR_BSWP(S)      !!(((S)->csr[3])&0x0004)
112 #define CSR_LAPPEN(S)    !!(((S)->csr[3])&0x0020)
113 #define CSR_DXSUFLO(S)   !!(((S)->csr[3])&0x0040)
114 #define CSR_ASTRP_RCV(S) !!(((S)->csr[4])&0x0800)
115 #define CSR_DPOLL(S)     !!(((S)->csr[4])&0x1000)
116 #define CSR_SPND(S)      !!(((S)->csr[5])&0x0001)
117 #define CSR_LTINTEN(S)   !!(((S)->csr[5])&0x4000)
118 #define CSR_TOKINTD(S)   !!(((S)->csr[5])&0x8000)
119 #define CSR_DRX(S)       !!(((S)->csr[15])&0x0001)
120 #define CSR_DTX(S)       !!(((S)->csr[15])&0x0002)
121 #define CSR_LOOP(S)      !!(((S)->csr[15])&0x0004)
122 #define CSR_DRCVPA(S)    !!(((S)->csr[15])&0x2000)
123 #define CSR_DRCVBC(S)    !!(((S)->csr[15])&0x4000)
124 #define CSR_PROM(S)      !!(((S)->csr[15])&0x8000)
125
126 #define CSR_CRBC(S)      ((S)->csr[40])
127 #define CSR_CRST(S)      ((S)->csr[41])
128 #define CSR_CXBC(S)      ((S)->csr[42])
129 #define CSR_CXST(S)      ((S)->csr[43])
130 #define CSR_NRBC(S)      ((S)->csr[44])
131 #define CSR_NRST(S)      ((S)->csr[45])
132 #define CSR_POLL(S)      ((S)->csr[46])
133 #define CSR_PINT(S)      ((S)->csr[47])
134 #define CSR_RCVRC(S)     ((S)->csr[72])
135 #define CSR_XMTRC(S)     ((S)->csr[74])
136 #define CSR_RCVRL(S)     ((S)->csr[76])
137 #define CSR_XMTRL(S)     ((S)->csr[78])
138 #define CSR_MISSC(S)     ((S)->csr[112])
139
140 #define CSR_IADR(S)      ((S)->csr[ 1] | ((S)->csr[ 2] << 16))
141 #define CSR_CRBA(S)      ((S)->csr[18] | ((S)->csr[19] << 16))
142 #define CSR_CXBA(S)      ((S)->csr[20] | ((S)->csr[21] << 16))
143 #define CSR_NRBA(S)      ((S)->csr[22] | ((S)->csr[23] << 16))
144 #define CSR_BADR(S)      ((S)->csr[24] | ((S)->csr[25] << 16))
145 #define CSR_NRDA(S)      ((S)->csr[26] | ((S)->csr[27] << 16))
146 #define CSR_CRDA(S)      ((S)->csr[28] | ((S)->csr[29] << 16))
147 #define CSR_BADX(S)      ((S)->csr[30] | ((S)->csr[31] << 16))
148 #define CSR_NXDA(S)      ((S)->csr[32] | ((S)->csr[33] << 16))
149 #define CSR_CXDA(S)      ((S)->csr[34] | ((S)->csr[35] << 16))
150 #define CSR_NNRD(S)      ((S)->csr[36] | ((S)->csr[37] << 16))
151 #define CSR_NNXD(S)      ((S)->csr[38] | ((S)->csr[39] << 16))
152 #define CSR_PXDA(S)      ((S)->csr[60] | ((S)->csr[61] << 16))
153 #define CSR_NXBA(S)      ((S)->csr[64] | ((S)->csr[65] << 16))
154
155 #define PHYSADDR(S,A) \
156   (BCR_SSIZE32(S) ? (A) : (A) | ((0xff00 & (uint32_t)(s)->csr[2])<<16))
157
158 struct pcnet_initblk16 {
159     uint16_t mode;
160     uint16_t padr[3];
161     uint16_t ladrf[4];
162     uint32_t rdra;
163     uint32_t tdra;
164 };
165
166 struct pcnet_initblk32 {
167     uint16_t mode;
168     uint8_t rlen;
169     uint8_t tlen;
170     uint16_t padr[3];
171     uint16_t _res;
172     uint16_t ladrf[4];
173     uint32_t rdra;
174     uint32_t tdra;
175 };
176
177 struct pcnet_TMD {
178     uint32_t tbadr;
179     int16_t length;
180     int16_t status;
181     uint32_t misc;
182     uint32_t res;
183 };
184
185 #define TMDL_BCNT_MASK  0x0fff
186 #define TMDL_BCNT_SH    0
187 #define TMDL_ONES_MASK  0xf000
188 #define TMDL_ONES_SH    12
189
190 #define TMDS_BPE_MASK   0x0080
191 #define TMDS_BPE_SH     7
192 #define TMDS_ENP_MASK   0x0100
193 #define TMDS_ENP_SH     8
194 #define TMDS_STP_MASK   0x0200
195 #define TMDS_STP_SH     9
196 #define TMDS_DEF_MASK   0x0400
197 #define TMDS_DEF_SH     10
198 #define TMDS_ONE_MASK   0x0800
199 #define TMDS_ONE_SH     11
200 #define TMDS_LTINT_MASK 0x1000
201 #define TMDS_LTINT_SH   12
202 #define TMDS_NOFCS_MASK 0x2000
203 #define TMDS_NOFCS_SH   13
204 #define TMDS_ERR_MASK   0x4000
205 #define TMDS_ERR_SH     14
206 #define TMDS_OWN_MASK   0x8000
207 #define TMDS_OWN_SH     15
208
209 #define TMDM_TRC_MASK   0x0000000f
210 #define TMDM_TRC_SH     0
211 #define TMDM_TDR_MASK   0x03ff0000
212 #define TMDM_TDR_SH     16
213 #define TMDM_RTRY_MASK  0x04000000
214 #define TMDM_RTRY_SH    26
215 #define TMDM_LCAR_MASK  0x08000000
216 #define TMDM_LCAR_SH    27
217 #define TMDM_LCOL_MASK  0x10000000
218 #define TMDM_LCOL_SH    28
219 #define TMDM_EXDEF_MASK 0x20000000
220 #define TMDM_EXDEF_SH   29
221 #define TMDM_UFLO_MASK  0x40000000
222 #define TMDM_UFLO_SH    30
223 #define TMDM_BUFF_MASK  0x80000000
224 #define TMDM_BUFF_SH    31
225
226 struct pcnet_RMD {
227     uint32_t rbadr;
228     int16_t buf_length;
229     int16_t status;
230     uint32_t msg_length;
231     uint32_t res;
232 };
233
234 #define RMDL_BCNT_MASK  0x0fff
235 #define RMDL_BCNT_SH    0
236 #define RMDL_ONES_MASK  0xf000
237 #define RMDL_ONES_SH    12
238
239 #define RMDS_BAM_MASK   0x0010
240 #define RMDS_BAM_SH     4
241 #define RMDS_LFAM_MASK  0x0020
242 #define RMDS_LFAM_SH    5
243 #define RMDS_PAM_MASK   0x0040
244 #define RMDS_PAM_SH     6
245 #define RMDS_BPE_MASK   0x0080
246 #define RMDS_BPE_SH     7
247 #define RMDS_ENP_MASK   0x0100
248 #define RMDS_ENP_SH     8
249 #define RMDS_STP_MASK   0x0200
250 #define RMDS_STP_SH     9
251 #define RMDS_BUFF_MASK  0x0400
252 #define RMDS_BUFF_SH    10
253 #define RMDS_CRC_MASK   0x0800
254 #define RMDS_CRC_SH     11
255 #define RMDS_OFLO_MASK  0x1000
256 #define RMDS_OFLO_SH    12
257 #define RMDS_FRAM_MASK  0x2000
258 #define RMDS_FRAM_SH    13
259 #define RMDS_ERR_MASK   0x4000
260 #define RMDS_ERR_SH     14
261 #define RMDS_OWN_MASK   0x8000
262 #define RMDS_OWN_SH     15
263
264 #define RMDM_MCNT_MASK  0x00000fff
265 #define RMDM_MCNT_SH    0
266 #define RMDM_ZEROS_MASK 0x0000f000
267 #define RMDM_ZEROS_SH   12
268 #define RMDM_RPC_MASK   0x00ff0000
269 #define RMDM_RPC_SH     16
270 #define RMDM_RCC_MASK   0xff000000
271 #define RMDM_RCC_SH     24
272
273 #define SET_FIELD(regp, name, field, value)             \
274   (*(regp) = (*(regp) & ~(name ## _ ## field ## _MASK)) \
275              | ((value) << name ## _ ## field ## _SH))
276
277 #define GET_FIELD(reg, name, field)                     \
278   (((reg) & name ## _ ## field ## _MASK) >> name ## _ ## field ## _SH)
279
280 #define PRINT_TMD(T) printf(                            \
281         "TMD0 : TBADR=0x%08x\n"                         \
282         "TMD1 : OWN=%d, ERR=%d, FCS=%d, LTI=%d, "       \
283         "ONE=%d, DEF=%d, STP=%d, ENP=%d,\n"             \
284         "       BPE=%d, BCNT=%d\n"                      \
285         "TMD2 : BUF=%d, UFL=%d, EXD=%d, LCO=%d, "       \
286         "LCA=%d, RTR=%d,\n"                             \
287         "       TDR=%d, TRC=%d\n",                      \
288         (T)->tbadr,                                     \
289         GET_FIELD((T)->status, TMDS, OWN),              \
290         GET_FIELD((T)->status, TMDS, ERR),              \
291         GET_FIELD((T)->status, TMDS, NOFCS),            \
292         GET_FIELD((T)->status, TMDS, LTINT),            \
293         GET_FIELD((T)->status, TMDS, ONE),              \
294         GET_FIELD((T)->status, TMDS, DEF),              \
295         GET_FIELD((T)->status, TMDS, STP),              \
296         GET_FIELD((T)->status, TMDS, ENP),              \
297         GET_FIELD((T)->status, TMDS, BPE),              \
298         4096-GET_FIELD((T)->length, TMDL, BCNT),        \
299         GET_FIELD((T)->misc, TMDM, BUFF),               \
300         GET_FIELD((T)->misc, TMDM, UFLO),               \
301         GET_FIELD((T)->misc, TMDM, EXDEF),              \
302         GET_FIELD((T)->misc, TMDM, LCOL),               \
303         GET_FIELD((T)->misc, TMDM, LCAR),               \
304         GET_FIELD((T)->misc, TMDM, RTRY),               \
305         GET_FIELD((T)->misc, TMDM, TDR),                \
306         GET_FIELD((T)->misc, TMDM, TRC))
307
308 #define PRINT_RMD(R) printf(                            \
309         "RMD0 : RBADR=0x%08x\n"                         \
310         "RMD1 : OWN=%d, ERR=%d, FRAM=%d, OFLO=%d, "     \
311         "CRC=%d, BUFF=%d, STP=%d, ENP=%d,\n       "     \
312         "BPE=%d, PAM=%d, LAFM=%d, BAM=%d, ONES=%d, BCNT=%d\n" \
313         "RMD2 : RCC=%d, RPC=%d, MCNT=%d, ZEROS=%d\n",   \
314         (R)->rbadr,                                     \
315         GET_FIELD((R)->status, RMDS, OWN),              \
316         GET_FIELD((R)->status, RMDS, ERR),              \
317         GET_FIELD((R)->status, RMDS, FRAM),             \
318         GET_FIELD((R)->status, RMDS, OFLO),             \
319         GET_FIELD((R)->status, RMDS, CRC),              \
320         GET_FIELD((R)->status, RMDS, BUFF),             \
321         GET_FIELD((R)->status, RMDS, STP),              \
322         GET_FIELD((R)->status, RMDS, ENP),              \
323         GET_FIELD((R)->status, RMDS, BPE),              \
324         GET_FIELD((R)->status, RMDS, PAM),              \
325         GET_FIELD((R)->status, RMDS, LFAM),             \
326         GET_FIELD((R)->status, RMDS, BAM),              \
327         GET_FIELD((R)->buf_length, RMDL, ONES),         \
328         4096-GET_FIELD((R)->buf_length, RMDL, BCNT),    \
329         GET_FIELD((R)->msg_length, RMDM, RCC),          \
330         GET_FIELD((R)->msg_length, RMDM, RPC),          \
331         GET_FIELD((R)->msg_length, RMDM, MCNT),         \
332         GET_FIELD((R)->msg_length, RMDM, ZEROS))
333
334 static inline void pcnet_tmd_load(PCNetState *s, struct pcnet_TMD *tmd,
335                                   target_phys_addr_t addr)
336 {
337     if (!BCR_SSIZE32(s)) {
338         struct {
339             uint32_t tbadr;
340             int16_t length;
341             int16_t status;
342         } xda;
343         s->phys_mem_read(s->dma_opaque, addr, (void *)&xda, sizeof(xda), 0);
344         tmd->tbadr = le32_to_cpu(xda.tbadr) & 0xffffff;
345         tmd->length = le16_to_cpu(xda.length);
346         tmd->status = (le32_to_cpu(xda.tbadr) >> 16) & 0xff00;
347         tmd->misc = le16_to_cpu(xda.status) << 16;
348         tmd->res = 0;
349     } else {
350         s->phys_mem_read(s->dma_opaque, addr, (void *)tmd, sizeof(*tmd), 0);
351         le32_to_cpus(&tmd->tbadr);
352         le16_to_cpus(&tmd->length);
353         le16_to_cpus(&tmd->status);
354         le32_to_cpus(&tmd->misc);
355         le32_to_cpus(&tmd->res);
356         if (BCR_SWSTYLE(s) == 3) {
357             uint32_t tmp = tmd->tbadr;
358             tmd->tbadr = tmd->misc;
359             tmd->misc = tmp;
360         }
361     }
362 }
363
364 static inline void pcnet_tmd_store(PCNetState *s, const struct pcnet_TMD *tmd,
365                                    target_phys_addr_t addr)
366 {
367     if (!BCR_SSIZE32(s)) {
368         struct {
369             uint32_t tbadr;
370             int16_t length;
371             int16_t status;
372         } xda;
373         xda.tbadr = cpu_to_le32((tmd->tbadr & 0xffffff) |
374                                 ((tmd->status & 0xff00) << 16));
375         xda.length = cpu_to_le16(tmd->length);
376         xda.status = cpu_to_le16(tmd->misc >> 16);
377         s->phys_mem_write(s->dma_opaque, addr, (void *)&xda, sizeof(xda), 0);
378     } else {
379         struct {
380             uint32_t tbadr;
381             int16_t length;
382             int16_t status;
383             uint32_t misc;
384             uint32_t res;
385         } xda;
386         xda.tbadr = cpu_to_le32(tmd->tbadr);
387         xda.length = cpu_to_le16(tmd->length);
388         xda.status = cpu_to_le16(tmd->status);
389         xda.misc = cpu_to_le32(tmd->misc);
390         xda.res = cpu_to_le32(tmd->res);
391         if (BCR_SWSTYLE(s) == 3) {
392             uint32_t tmp = xda.tbadr;
393             xda.tbadr = xda.misc;
394             xda.misc = tmp;
395         }
396         s->phys_mem_write(s->dma_opaque, addr, (void *)&xda, sizeof(xda), 0);
397     }
398 }
399
400 static inline void pcnet_rmd_load(PCNetState *s, struct pcnet_RMD *rmd,
401                                   target_phys_addr_t addr)
402 {
403     if (!BCR_SSIZE32(s)) {
404         struct {
405             uint32_t rbadr;
406             int16_t buf_length;
407             int16_t msg_length;
408         } rda;
409         s->phys_mem_read(s->dma_opaque, addr, (void *)&rda, sizeof(rda), 0);
410         rmd->rbadr = le32_to_cpu(rda.rbadr) & 0xffffff;
411         rmd->buf_length = le16_to_cpu(rda.buf_length);
412         rmd->status = (le32_to_cpu(rda.rbadr) >> 16) & 0xff00;
413         rmd->msg_length = le16_to_cpu(rda.msg_length);
414         rmd->res = 0;
415     } else {
416         s->phys_mem_read(s->dma_opaque, addr, (void *)rmd, sizeof(*rmd), 0);
417         le32_to_cpus(&rmd->rbadr);
418         le16_to_cpus(&rmd->buf_length);
419         le16_to_cpus(&rmd->status);
420         le32_to_cpus(&rmd->msg_length);
421         le32_to_cpus(&rmd->res);
422         if (BCR_SWSTYLE(s) == 3) {
423             uint32_t tmp = rmd->rbadr;
424             rmd->rbadr = rmd->msg_length;
425             rmd->msg_length = tmp;
426         }
427     }
428 }
429
430 static inline void pcnet_rmd_store(PCNetState *s, struct pcnet_RMD *rmd,
431                                    target_phys_addr_t addr)
432 {
433     if (!BCR_SSIZE32(s)) {
434         struct {
435             uint32_t rbadr;
436             int16_t buf_length;
437             int16_t msg_length;
438         } rda;
439         rda.rbadr = cpu_to_le32((rmd->rbadr & 0xffffff) |
440                                 ((rmd->status & 0xff00) << 16));
441         rda.buf_length = cpu_to_le16(rmd->buf_length);
442         rda.msg_length = cpu_to_le16(rmd->msg_length);
443         s->phys_mem_write(s->dma_opaque, addr, (void *)&rda, sizeof(rda), 0);
444     } else {
445         struct {
446             uint32_t rbadr;
447             int16_t buf_length;
448             int16_t status;
449             uint32_t msg_length;
450             uint32_t res;
451         } rda;
452         rda.rbadr = cpu_to_le32(rmd->rbadr);
453         rda.buf_length = cpu_to_le16(rmd->buf_length);
454         rda.status = cpu_to_le16(rmd->status);
455         rda.msg_length = cpu_to_le32(rmd->msg_length);
456         rda.res = cpu_to_le32(rmd->res);
457         if (BCR_SWSTYLE(s) == 3) {
458             uint32_t tmp = rda.rbadr;
459             rda.rbadr = rda.msg_length;
460             rda.msg_length = tmp;
461         }
462         s->phys_mem_write(s->dma_opaque, addr, (void *)&rda, sizeof(rda), 0);
463     }
464 }
465
466
467 #define TMDLOAD(TMD,ADDR) pcnet_tmd_load(s,TMD,ADDR)
468
469 #define TMDSTORE(TMD,ADDR) pcnet_tmd_store(s,TMD,ADDR)
470
471 #define RMDLOAD(RMD,ADDR) pcnet_rmd_load(s,RMD,ADDR)
472
473 #define RMDSTORE(RMD,ADDR) pcnet_rmd_store(s,RMD,ADDR)
474
475 #if 1
476
477 #define CHECK_RMD(ADDR,RES) do {                \
478     struct pcnet_RMD rmd;                       \
479     RMDLOAD(&rmd,(ADDR));                       \
480     (RES) |= (GET_FIELD(rmd.buf_length, RMDL, ONES) != 15) \
481           || (GET_FIELD(rmd.msg_length, RMDM, ZEROS) != 0); \
482 } while (0)
483
484 #define CHECK_TMD(ADDR,RES) do {                \
485     struct pcnet_TMD tmd;                       \
486     TMDLOAD(&tmd,(ADDR));                       \
487     (RES) |= (GET_FIELD(tmd.length, TMDL, ONES) != 15); \
488 } while (0)
489
490 #else
491
492 #define CHECK_RMD(ADDR,RES) do {                \
493     switch (BCR_SWSTYLE(s)) {                   \
494     case 0x00:                                  \
495         do {                                    \
496             uint16_t rda[4];                    \
497             s->phys_mem_read(s->dma_opaque, (ADDR), \
498                 (void *)&rda[0], sizeof(rda), 0); \
499             (RES) |= (rda[2] & 0xf000)!=0xf000; \
500             (RES) |= (rda[3] & 0xf000)!=0x0000; \
501         } while (0);                            \
502         break;                                  \
503     case 0x01:                                  \
504     case 0x02:                                  \
505         do {                                    \
506             uint32_t rda[4];                    \
507             s->phys_mem_read(s->dma_opaque, (ADDR), \
508                 (void *)&rda[0], sizeof(rda), 0); \
509             (RES) |= (rda[1] & 0x0000f000L)!=0x0000f000L; \
510             (RES) |= (rda[2] & 0x0000f000L)!=0x00000000L; \
511         } while (0);                            \
512         break;                                  \
513     case 0x03:                                  \
514         do {                                    \
515             uint32_t rda[4];                    \
516             s->phys_mem_read(s->dma_opaque, (ADDR), \
517                 (void *)&rda[0], sizeof(rda), 0); \
518             (RES) |= (rda[0] & 0x0000f000L)!=0x00000000L; \
519             (RES) |= (rda[1] & 0x0000f000L)!=0x0000f000L; \
520         } while (0);                            \
521         break;                                  \
522     }                                           \
523 } while (0)
524
525 #define CHECK_TMD(ADDR,RES) do {                \
526     switch (BCR_SWSTYLE(s)) {                   \
527     case 0x00:                                  \
528         do {                                    \
529             uint16_t xda[4];                    \
530             s->phys_mem_read(s->dma_opaque, (ADDR), \
531                 (void *)&xda[0], sizeof(xda), 0); \
532             (RES) |= (xda[2] & 0xf000)!=0xf000; \
533         } while (0);                            \
534         break;                                  \
535     case 0x01:                                  \
536     case 0x02:                                  \
537     case 0x03:                                  \
538         do {                                    \
539             uint32_t xda[4];                    \
540             s->phys_mem_read(s->dma_opaque, (ADDR), \
541                 (void *)&xda[0], sizeof(xda), 0); \
542             (RES) |= (xda[1] & 0x0000f000L)!=0x0000f000L; \
543         } while (0);                            \
544         break;                                  \
545     }                                           \
546 } while (0)
547
548 #endif
549
550 #define PRINT_PKTHDR(BUF) do {                  \
551     struct qemu_ether_header *hdr = (void *)(BUF); \
552     printf("packet dhost=%02x:%02x:%02x:%02x:%02x:%02x, " \
553            "shost=%02x:%02x:%02x:%02x:%02x:%02x, " \
554            "type=0x%04x\n",                     \
555            hdr->ether_dhost[0],hdr->ether_dhost[1],hdr->ether_dhost[2], \
556            hdr->ether_dhost[3],hdr->ether_dhost[4],hdr->ether_dhost[5], \
557            hdr->ether_shost[0],hdr->ether_shost[1],hdr->ether_shost[2], \
558            hdr->ether_shost[3],hdr->ether_shost[4],hdr->ether_shost[5], \
559            be16_to_cpu(hdr->ether_type));       \
560 } while (0)
561
562 #define MULTICAST_FILTER_LEN 8
563
564 static inline uint32_t lnc_mchash(const uint8_t *ether_addr)
565 {
566 #define LNC_POLYNOMIAL          0xEDB88320UL
567     uint32_t crc = 0xFFFFFFFF;
568     int idx, bit;
569     uint8_t data;
570
571     for (idx = 0; idx < 6; idx++) {
572         for (data = *ether_addr++, bit = 0; bit < MULTICAST_FILTER_LEN; bit++) {
573             crc = (crc >> 1) ^ (((crc ^ data) & 1) ? LNC_POLYNOMIAL : 0);
574             data >>= 1;
575         }
576     }
577     return crc;
578 #undef LNC_POLYNOMIAL
579 }
580
581 #define CRC(crc, ch)     (crc = (crc >> 8) ^ crctab[(crc ^ (ch)) & 0xff])
582
583 /* generated using the AUTODIN II polynomial
584  *      x^32 + x^26 + x^23 + x^22 + x^16 +
585  *      x^12 + x^11 + x^10 + x^8 + x^7 + x^5 + x^4 + x^2 + x^1 + 1
586  */
587 static const uint32_t crctab[256] = {
588         0x00000000, 0x77073096, 0xee0e612c, 0x990951ba,
589         0x076dc419, 0x706af48f, 0xe963a535, 0x9e6495a3,
590         0x0edb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988,
591         0x09b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91,
592         0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de,
593         0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7,
594         0x136c9856, 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec,
595         0x14015c4f, 0x63066cd9, 0xfa0f3d63, 0x8d080df5,
596         0x3b6e20c8, 0x4c69105e, 0xd56041e4, 0xa2677172,
597         0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b,
598         0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940,
599         0x32d86ce3, 0x45df5c75, 0xdcd60dcf, 0xabd13d59,
600         0x26d930ac, 0x51de003a, 0xc8d75180, 0xbfd06116,
601         0x21b4f4b5, 0x56b3c423, 0xcfba9599, 0xb8bda50f,
602         0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924,
603         0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d,
604         0x76dc4190, 0x01db7106, 0x98d220bc, 0xefd5102a,
605         0x71b18589, 0x06b6b51f, 0x9fbfe4a5, 0xe8b8d433,
606         0x7807c9a2, 0x0f00f934, 0x9609a88e, 0xe10e9818,
607         0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01,
608         0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e,
609         0x6c0695ed, 0x1b01a57b, 0x8208f4c1, 0xf50fc457,
610         0x65b0d9c6, 0x12b7e950, 0x8bbeb8ea, 0xfcb9887c,
611         0x62dd1ddf, 0x15da2d49, 0x8cd37cf3, 0xfbd44c65,
612         0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2,
613         0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb,
614         0x4369e96a, 0x346ed9fc, 0xad678846, 0xda60b8d0,
615         0x44042d73, 0x33031de5, 0xaa0a4c5f, 0xdd0d7cc9,
616         0x5005713c, 0x270241aa, 0xbe0b1010, 0xc90c2086,
617         0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f,
618         0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4,
619         0x59b33d17, 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad,
620         0xedb88320, 0x9abfb3b6, 0x03b6e20c, 0x74b1d29a,
621         0xead54739, 0x9dd277af, 0x04db2615, 0x73dc1683,
622         0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8,
623         0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1,
624         0xf00f9344, 0x8708a3d2, 0x1e01f268, 0x6906c2fe,
625         0xf762575d, 0x806567cb, 0x196c3671, 0x6e6b06e7,
626         0xfed41b76, 0x89d32be0, 0x10da7a5a, 0x67dd4acc,
627         0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5,
628         0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252,
629         0xd1bb67f1, 0xa6bc5767, 0x3fb506dd, 0x48b2364b,
630         0xd80d2bda, 0xaf0a1b4c, 0x36034af6, 0x41047a60,
631         0xdf60efc3, 0xa867df55, 0x316e8eef, 0x4669be79,
632         0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236,
633         0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f,
634         0xc5ba3bbe, 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04,
635         0xc2d7ffa7, 0xb5d0cf31, 0x2cd99e8b, 0x5bdeae1d,
636         0x9b64c2b0, 0xec63f226, 0x756aa39c, 0x026d930a,
637         0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713,
638         0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38,
639         0x92d28e9b, 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21,
640         0x86d3d2d4, 0xf1d4e242, 0x68ddb3f8, 0x1fda836e,
641         0x81be16cd, 0xf6b9265b, 0x6fb077e1, 0x18b74777,
642         0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c,
643         0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45,
644         0xa00ae278, 0xd70dd2ee, 0x4e048354, 0x3903b3c2,
645         0xa7672661, 0xd06016f7, 0x4969474d, 0x3e6e77db,
646         0xaed16a4a, 0xd9d65adc, 0x40df0b66, 0x37d83bf0,
647         0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9,
648         0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6,
649         0xbad03605, 0xcdd70693, 0x54de5729, 0x23d967bf,
650         0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94,
651         0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d,
652 };
653
654 static inline int padr_match(PCNetState *s, const uint8_t *buf, int size)
655 {
656     struct qemu_ether_header *hdr = (void *)buf;
657     uint8_t padr[6] = { 
658         s->csr[12] & 0xff, s->csr[12] >> 8,
659         s->csr[13] & 0xff, s->csr[13] >> 8,
660         s->csr[14] & 0xff, s->csr[14] >> 8 
661     };
662     int result = (!CSR_DRCVPA(s)) && !memcmp(hdr->ether_dhost, padr, 6);
663 #ifdef PCNET_DEBUG_MATCH
664     printf("packet dhost=%02x:%02x:%02x:%02x:%02x:%02x, "
665            "padr=%02x:%02x:%02x:%02x:%02x:%02x\n",
666            hdr->ether_dhost[0],hdr->ether_dhost[1],hdr->ether_dhost[2],
667            hdr->ether_dhost[3],hdr->ether_dhost[4],hdr->ether_dhost[5],
668            padr[0],padr[1],padr[2],padr[3],padr[4],padr[5]);
669     printf("padr_match result=%d\n", result);
670 #endif
671     return result;
672 }
673
674 static inline int padr_bcast(PCNetState *s, const uint8_t *buf, int size)
675 {
676     static const uint8_t BCAST[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
677     struct qemu_ether_header *hdr = (void *)buf;
678     int result = !CSR_DRCVBC(s) && !memcmp(hdr->ether_dhost, BCAST, 6);
679 #ifdef PCNET_DEBUG_MATCH
680     printf("padr_bcast result=%d\n", result);
681 #endif
682     return result;
683 }
684
685 static inline int ladr_match(PCNetState *s, const uint8_t *buf, int size)
686 {
687     struct qemu_ether_header *hdr = (void *)buf;
688     if ((*(hdr->ether_dhost)&0x01) && 
689         ((uint64_t *)&s->csr[8])[0] != 0LL) {
690         uint8_t ladr[8] = { 
691             s->csr[8] & 0xff, s->csr[8] >> 8,
692             s->csr[9] & 0xff, s->csr[9] >> 8,
693             s->csr[10] & 0xff, s->csr[10] >> 8, 
694             s->csr[11] & 0xff, s->csr[11] >> 8 
695         };
696         int index = lnc_mchash(hdr->ether_dhost) >> 26;
697         return !!(ladr[index >> 3] & (1 << (index & 7)));
698     }
699     return 0;
700 }
701
702 static inline target_phys_addr_t pcnet_rdra_addr(PCNetState *s, int idx) 
703 {
704     while (idx < 1) idx += CSR_RCVRL(s);
705     return s->rdra + ((CSR_RCVRL(s) - idx) * (BCR_SWSTYLE(s) ? 16 : 8));
706 }
707
708 static inline int64_t pcnet_get_next_poll_time(PCNetState *s, int64_t current_time)
709 {
710     int64_t next_time = current_time + 
711         muldiv64(65536 - (CSR_SPND(s) ? 0 : CSR_POLL(s)), 
712                  ticks_per_sec, 33000000L);
713     if (next_time <= current_time)
714         next_time = current_time + 1;
715     return next_time;
716 }
717
718 static void pcnet_poll(PCNetState *s);
719 static void pcnet_poll_timer(void *opaque);
720
721 static uint32_t pcnet_csr_readw(PCNetState *s, uint32_t rap);
722 static void pcnet_csr_writew(PCNetState *s, uint32_t rap, uint32_t new_value);
723 static void pcnet_bcr_writew(PCNetState *s, uint32_t rap, uint32_t val);
724 static uint32_t pcnet_bcr_readw(PCNetState *s, uint32_t rap);
725
726 static void pcnet_s_reset(PCNetState *s)
727 {
728 #ifdef PCNET_DEBUG
729     printf("pcnet_s_reset\n");
730 #endif
731
732     s->lnkst = 0x40;
733     s->rdra = 0;
734     s->tdra = 0;
735     s->rap = 0;
736     
737     s->bcr[BCR_BSBC] &= ~0x0080;
738
739     s->csr[0]   = 0x0004;
740     s->csr[3]   = 0x0000;
741     s->csr[4]   = 0x0115;
742     s->csr[5]   = 0x0000;
743     s->csr[6]   = 0x0000;
744     s->csr[8]   = 0;
745     s->csr[9]   = 0;
746     s->csr[10]  = 0;
747     s->csr[11]  = 0;
748     s->csr[12]  = le16_to_cpu(((uint16_t *)&s->prom[0])[0]);
749     s->csr[13]  = le16_to_cpu(((uint16_t *)&s->prom[0])[1]);
750     s->csr[14]  = le16_to_cpu(((uint16_t *)&s->prom[0])[2]);
751     s->csr[15] &= 0x21c4;
752     s->csr[72]  = 1;
753     s->csr[74]  = 1;
754     s->csr[76]  = 1;
755     s->csr[78]  = 1;
756     s->csr[80]  = 0x1410;
757     s->csr[88]  = 0x1003;
758     s->csr[89]  = 0x0262;
759     s->csr[94]  = 0x0000;
760     s->csr[100] = 0x0200;
761     s->csr[103] = 0x0105;
762     s->csr[103] = 0x0105;
763     s->csr[112] = 0x0000;
764     s->csr[114] = 0x0000;
765     s->csr[122] = 0x0000;
766     s->csr[124] = 0x0000;
767
768     s->tx_busy = 0;
769 }
770
771 static void pcnet_update_irq(PCNetState *s)
772 {
773     int isr = 0;
774     s->csr[0] &= ~0x0080;
775     
776 #if 1
777     if (((s->csr[0] & ~s->csr[3]) & 0x5f00) ||
778         (((s->csr[4]>>1) & ~s->csr[4]) & 0x0115) ||
779         (((s->csr[5]>>1) & s->csr[5]) & 0x0048))
780 #else
781     if ((!(s->csr[3] & 0x4000) && !!(s->csr[0] & 0x4000)) /* BABL */ ||
782         (!(s->csr[3] & 0x1000) && !!(s->csr[0] & 0x1000)) /* MISS */ ||
783         (!(s->csr[3] & 0x0100) && !!(s->csr[0] & 0x0100)) /* IDON */ ||
784         (!(s->csr[3] & 0x0200) && !!(s->csr[0] & 0x0200)) /* TINT */ ||
785         (!(s->csr[3] & 0x0400) && !!(s->csr[0] & 0x0400)) /* RINT */ ||
786         (!(s->csr[3] & 0x0800) && !!(s->csr[0] & 0x0800)) /* MERR */ ||
787         (!(s->csr[4] & 0x0001) && !!(s->csr[4] & 0x0002)) /* JAB */ ||
788         (!(s->csr[4] & 0x0004) && !!(s->csr[4] & 0x0008)) /* TXSTRT */ ||
789         (!(s->csr[4] & 0x0010) && !!(s->csr[4] & 0x0020)) /* RCVO */ ||
790         (!(s->csr[4] & 0x0100) && !!(s->csr[4] & 0x0200)) /* MFCO */ ||
791         (!!(s->csr[5] & 0x0040) && !!(s->csr[5] & 0x0080)) /* EXDINT */ ||
792         (!!(s->csr[5] & 0x0008) && !!(s->csr[5] & 0x0010)) /* MPINT */)
793 #endif
794     {
795        
796         isr = CSR_INEA(s);
797         s->csr[0] |= 0x0080;
798     }
799     
800     if (!!(s->csr[4] & 0x0080) && CSR_INEA(s)) { /* UINT */
801         s->csr[4] &= ~0x0080;
802         s->csr[4] |= 0x0040;
803         s->csr[0] |= 0x0080;
804         isr = 1;
805 #ifdef PCNET_DEBUG
806         printf("pcnet user int\n");
807 #endif
808     }
809
810 #if 1
811     if (((s->csr[5]>>1) & s->csr[5]) & 0x0500) 
812 #else
813     if ((!!(s->csr[5] & 0x0400) && !!(s->csr[5] & 0x0800)) /* SINT */ ||
814         (!!(s->csr[5] & 0x0100) && !!(s->csr[5] & 0x0200)) /* SLPINT */ )
815 #endif
816     {
817         isr = 1;
818         s->csr[0] |= 0x0080;
819     }
820
821     if (isr != s->isr) {
822 #ifdef PCNET_DEBUG
823         printf("pcnet: INTA=%d\n", isr);
824 #endif
825     }
826     qemu_set_irq(s->irq, isr);
827     s->isr = isr;
828 }
829
830 static void pcnet_init(PCNetState *s)
831 {
832     int rlen, tlen;
833     uint16_t padr[3], ladrf[4], mode;
834     uint32_t rdra, tdra;
835
836 #ifdef PCNET_DEBUG
837     printf("pcnet_init init_addr=0x%08x\n", PHYSADDR(s,CSR_IADR(s)));
838 #endif
839     
840     if (BCR_SSIZE32(s)) {
841         struct pcnet_initblk32 initblk;
842         s->phys_mem_read(s->dma_opaque, PHYSADDR(s,CSR_IADR(s)),
843                 (uint8_t *)&initblk, sizeof(initblk), 0);
844         mode = le16_to_cpu(initblk.mode);
845         rlen = initblk.rlen >> 4;
846         tlen = initblk.tlen >> 4;
847         ladrf[0] = le16_to_cpu(initblk.ladrf[0]);
848         ladrf[1] = le16_to_cpu(initblk.ladrf[1]);
849         ladrf[2] = le16_to_cpu(initblk.ladrf[2]);
850         ladrf[3] = le16_to_cpu(initblk.ladrf[3]);
851         padr[0] = le16_to_cpu(initblk.padr[0]);
852         padr[1] = le16_to_cpu(initblk.padr[1]);
853         padr[2] = le16_to_cpu(initblk.padr[2]);
854         rdra = le32_to_cpu(initblk.rdra);
855         tdra = le32_to_cpu(initblk.tdra);
856     } else {
857         struct pcnet_initblk16 initblk;
858         s->phys_mem_read(s->dma_opaque, PHYSADDR(s,CSR_IADR(s)),
859                 (uint8_t *)&initblk, sizeof(initblk), 0);
860         mode = le16_to_cpu(initblk.mode);
861         ladrf[0] = le16_to_cpu(initblk.ladrf[0]);
862         ladrf[1] = le16_to_cpu(initblk.ladrf[1]);
863         ladrf[2] = le16_to_cpu(initblk.ladrf[2]);
864         ladrf[3] = le16_to_cpu(initblk.ladrf[3]);
865         padr[0] = le16_to_cpu(initblk.padr[0]);
866         padr[1] = le16_to_cpu(initblk.padr[1]);
867         padr[2] = le16_to_cpu(initblk.padr[2]);
868         rdra = le32_to_cpu(initblk.rdra);
869         tdra = le32_to_cpu(initblk.tdra);
870         rlen = rdra >> 29;
871         tlen = tdra >> 29;
872         rdra &= 0x00ffffff;
873         tdra &= 0x00ffffff;
874     }
875
876 #if defined(PCNET_DEBUG)
877     printf("rlen=%d tlen=%d\n", rlen, tlen);
878 #endif
879
880     CSR_RCVRL(s) = (rlen < 9) ? (1 << rlen) : 512;
881     CSR_XMTRL(s) = (tlen < 9) ? (1 << tlen) : 512;
882     s->csr[ 6] = (tlen << 12) | (rlen << 8);
883     s->csr[15] = mode;
884     s->csr[ 8] = ladrf[0];
885     s->csr[ 9] = ladrf[1];
886     s->csr[10] = ladrf[2];
887     s->csr[11] = ladrf[3];
888     s->csr[12] = padr[0];
889     s->csr[13] = padr[1];
890     s->csr[14] = padr[2];
891     s->rdra = PHYSADDR(s, rdra);
892     s->tdra = PHYSADDR(s, tdra);
893
894     CSR_RCVRC(s) = CSR_RCVRL(s);
895     CSR_XMTRC(s) = CSR_XMTRL(s);
896
897 #ifdef PCNET_DEBUG
898     printf("pcnet ss32=%d rdra=0x%08x[%d] tdra=0x%08x[%d]\n", 
899         BCR_SSIZE32(s),
900         s->rdra, CSR_RCVRL(s), s->tdra, CSR_XMTRL(s));
901 #endif
902
903     s->csr[0] |= 0x0101;    
904     s->csr[0] &= ~0x0004;       /* clear STOP bit */
905 }
906
907 static void pcnet_start(PCNetState *s)
908 {
909 #ifdef PCNET_DEBUG
910     printf("pcnet_start\n");
911 #endif
912
913     if (!CSR_DTX(s))
914         s->csr[0] |= 0x0010;    /* set TXON */
915         
916     if (!CSR_DRX(s))
917         s->csr[0] |= 0x0020;    /* set RXON */
918
919     s->csr[0] &= ~0x0004;       /* clear STOP bit */
920     s->csr[0] |= 0x0002;
921 }
922
923 static void pcnet_stop(PCNetState *s)
924 {
925 #ifdef PCNET_DEBUG
926     printf("pcnet_stop\n");
927 #endif
928     s->csr[0] &= ~0x7feb;
929     s->csr[0] |= 0x0014;
930     s->csr[4] &= ~0x02c2;
931     s->csr[5] &= ~0x0011;
932     pcnet_poll_timer(s);
933 }
934
935 static void pcnet_rdte_poll(PCNetState *s)
936 {
937     s->csr[28] = s->csr[29] = 0;
938     if (s->rdra) {
939         int bad = 0;
940 #if 1
941         target_phys_addr_t crda = pcnet_rdra_addr(s, CSR_RCVRC(s));
942         target_phys_addr_t nrda = pcnet_rdra_addr(s, -1 + CSR_RCVRC(s));
943         target_phys_addr_t nnrd = pcnet_rdra_addr(s, -2 + CSR_RCVRC(s));
944 #else
945         target_phys_addr_t crda = s->rdra + 
946             (CSR_RCVRL(s) - CSR_RCVRC(s)) *
947             (BCR_SWSTYLE(s) ? 16 : 8 );
948         int nrdc = CSR_RCVRC(s)<=1 ? CSR_RCVRL(s) : CSR_RCVRC(s)-1;
949         target_phys_addr_t nrda = s->rdra + 
950             (CSR_RCVRL(s) - nrdc) *
951             (BCR_SWSTYLE(s) ? 16 : 8 );
952         int nnrc = nrdc<=1 ? CSR_RCVRL(s) : nrdc-1;
953         target_phys_addr_t nnrd = s->rdra + 
954             (CSR_RCVRL(s) - nnrc) *
955             (BCR_SWSTYLE(s) ? 16 : 8 );
956 #endif
957
958         CHECK_RMD(PHYSADDR(s,crda), bad);
959         if (!bad) {
960             CHECK_RMD(PHYSADDR(s,nrda), bad);
961             if (bad || (nrda == crda)) nrda = 0;
962             CHECK_RMD(PHYSADDR(s,nnrd), bad);
963             if (bad || (nnrd == crda)) nnrd = 0;
964
965             s->csr[28] = crda & 0xffff;
966             s->csr[29] = crda >> 16;
967             s->csr[26] = nrda & 0xffff;
968             s->csr[27] = nrda >> 16;
969             s->csr[36] = nnrd & 0xffff;
970             s->csr[37] = nnrd >> 16;
971 #ifdef PCNET_DEBUG
972             if (bad) {
973                 printf("pcnet: BAD RMD RECORDS AFTER 0x%08x\n",
974                        PHYSADDR(s,crda));
975             }
976         } else {
977             printf("pcnet: BAD RMD RDA=0x%08x\n", PHYSADDR(s,crda));
978 #endif
979         }
980     }
981     
982     if (CSR_CRDA(s)) {
983         struct pcnet_RMD rmd;
984         RMDLOAD(&rmd, PHYSADDR(s,CSR_CRDA(s)));
985         CSR_CRBC(s) = GET_FIELD(rmd.buf_length, RMDL, BCNT);
986         CSR_CRST(s) = rmd.status;
987 #ifdef PCNET_DEBUG_RMD_X
988         printf("CRDA=0x%08x CRST=0x%04x RCVRC=%d RMDL=0x%04x RMDS=0x%04x RMDM=0x%08x\n",
989                 PHYSADDR(s,CSR_CRDA(s)), CSR_CRST(s), CSR_RCVRC(s),
990                 rmd.buf_length, rmd.status, rmd.msg_length);
991         PRINT_RMD(&rmd);
992 #endif
993     } else {
994         CSR_CRBC(s) = CSR_CRST(s) = 0;
995     }
996     
997     if (CSR_NRDA(s)) {
998         struct pcnet_RMD rmd;
999         RMDLOAD(&rmd, PHYSADDR(s,CSR_NRDA(s)));
1000         CSR_NRBC(s) = GET_FIELD(rmd.buf_length, RMDL, BCNT);
1001         CSR_NRST(s) = rmd.status;
1002     } else {
1003         CSR_NRBC(s) = CSR_NRST(s) = 0;
1004     }
1005
1006 }
1007
1008 static int pcnet_tdte_poll(PCNetState *s)
1009 {
1010     s->csr[34] = s->csr[35] = 0;
1011     if (s->tdra) {
1012         target_phys_addr_t cxda = s->tdra + 
1013             (CSR_XMTRL(s) - CSR_XMTRC(s)) *
1014             (BCR_SWSTYLE(s) ? 16 : 8);
1015         int bad = 0;
1016         CHECK_TMD(PHYSADDR(s, cxda),bad);
1017         if (!bad) {
1018             if (CSR_CXDA(s) != cxda) {
1019                 s->csr[60] = s->csr[34];
1020                 s->csr[61] = s->csr[35];
1021                 s->csr[62] = CSR_CXBC(s);
1022                 s->csr[63] = CSR_CXST(s);
1023             }
1024             s->csr[34] = cxda & 0xffff;
1025             s->csr[35] = cxda >> 16;
1026 #ifdef PCNET_DEBUG_X
1027             printf("pcnet: BAD TMD XDA=0x%08x\n", PHYSADDR(s,cxda));
1028 #endif
1029         }
1030     }
1031
1032     if (CSR_CXDA(s)) {
1033         struct pcnet_TMD tmd;
1034
1035         TMDLOAD(&tmd, PHYSADDR(s,CSR_CXDA(s)));                
1036
1037         CSR_CXBC(s) = GET_FIELD(tmd.length, TMDL, BCNT);
1038         CSR_CXST(s) = tmd.status;
1039     } else {
1040         CSR_CXBC(s) = CSR_CXST(s) = 0;
1041     }
1042     
1043     return !!(CSR_CXST(s) & 0x8000);
1044 }
1045
1046 static int pcnet_can_receive(void *opaque)
1047 {
1048     PCNetState *s = opaque;
1049     if (CSR_STOP(s) || CSR_SPND(s))
1050         return 0;
1051         
1052     if (s->recv_pos > 0)
1053         return 0;
1054
1055     return sizeof(s->buffer)-16;
1056 }
1057
1058 #define MIN_BUF_SIZE 60
1059
1060 static void pcnet_receive(void *opaque, const uint8_t *buf, int size)
1061 {
1062     PCNetState *s = opaque;
1063     int is_padr = 0, is_bcast = 0, is_ladr = 0;
1064     uint8_t buf1[60];
1065
1066     if (CSR_DRX(s) || CSR_STOP(s) || CSR_SPND(s) || !size)
1067         return;
1068
1069 #ifdef PCNET_DEBUG
1070     printf("pcnet_receive size=%d\n", size);
1071 #endif
1072
1073     /* if too small buffer, then expand it */
1074     if (size < MIN_BUF_SIZE) {
1075         memcpy(buf1, buf, size);
1076         memset(buf1 + size, 0, MIN_BUF_SIZE - size);
1077         buf = buf1;
1078         size = MIN_BUF_SIZE;
1079     }
1080
1081     if (CSR_PROM(s) 
1082         || (is_padr=padr_match(s, buf, size)) 
1083         || (is_bcast=padr_bcast(s, buf, size))
1084         || (is_ladr=ladr_match(s, buf, size))) {
1085
1086         pcnet_rdte_poll(s);
1087
1088         if (!(CSR_CRST(s) & 0x8000) && s->rdra) {
1089             struct pcnet_RMD rmd;
1090             int rcvrc = CSR_RCVRC(s)-1,i;
1091             target_phys_addr_t nrda;
1092             for (i = CSR_RCVRL(s)-1; i > 0; i--, rcvrc--) {
1093                 if (rcvrc <= 1)
1094                     rcvrc = CSR_RCVRL(s);
1095                 nrda = s->rdra +
1096                     (CSR_RCVRL(s) - rcvrc) *
1097                     (BCR_SWSTYLE(s) ? 16 : 8 );
1098                 RMDLOAD(&rmd, PHYSADDR(s,nrda));                  
1099                 if (GET_FIELD(rmd.status, RMDS, OWN)) {
1100 #ifdef PCNET_DEBUG_RMD
1101                     printf("pcnet - scan buffer: RCVRC=%d PREV_RCVRC=%d\n", 
1102                                 rcvrc, CSR_RCVRC(s));
1103 #endif
1104                     CSR_RCVRC(s) = rcvrc;
1105                     pcnet_rdte_poll(s);
1106                     break;
1107                 }
1108             }
1109         }
1110
1111         if (!(CSR_CRST(s) & 0x8000)) {
1112 #ifdef PCNET_DEBUG_RMD
1113             printf("pcnet - no buffer: RCVRC=%d\n", CSR_RCVRC(s));
1114 #endif
1115             s->csr[0] |= 0x1000; /* Set MISS flag */
1116             CSR_MISSC(s)++;
1117         } else {
1118             uint8_t *src = &s->buffer[8];
1119             target_phys_addr_t crda = CSR_CRDA(s);
1120             struct pcnet_RMD rmd;
1121             int pktcount = 0;
1122
1123             memcpy(src, buf, size);
1124             
1125 #if 1
1126             /* no need to compute the CRC */
1127             src[size] = 0;
1128             src[size + 1] = 0;
1129             src[size + 2] = 0;
1130             src[size + 3] = 0;
1131             size += 4;
1132 #else
1133             /* XXX: avoid CRC generation */
1134             if (!CSR_ASTRP_RCV(s)) {
1135                 uint32_t fcs = ~0;
1136                 uint8_t *p = src;
1137
1138                 while (size < 46) {
1139                     src[size++] = 0;
1140                 }
1141                 
1142                 while (p != &src[size]) {
1143                     CRC(fcs, *p++);
1144                 }
1145                 ((uint32_t *)&src[size])[0] = htonl(fcs);
1146                 size += 4; /* FCS at end of packet */
1147             } else size += 4;
1148 #endif
1149
1150 #ifdef PCNET_DEBUG_MATCH
1151             PRINT_PKTHDR(buf);
1152 #endif
1153
1154             RMDLOAD(&rmd, PHYSADDR(s,crda));
1155             /*if (!CSR_LAPPEN(s))*/
1156                 SET_FIELD(&rmd.status, RMDS, STP, 1);
1157
1158 #define PCNET_RECV_STORE() do {                                 \
1159     int count = MIN(4096 - GET_FIELD(rmd.buf_length, RMDL, BCNT),size); \
1160     target_phys_addr_t rbadr = PHYSADDR(s, rmd.rbadr);          \
1161     s->phys_mem_write(s->dma_opaque, rbadr, src, count, CSR_BSWP(s)); \
1162     src += count; size -= count;                                \
1163     SET_FIELD(&rmd.msg_length, RMDM, MCNT, count);              \
1164     SET_FIELD(&rmd.status, RMDS, OWN, 0);                       \
1165     RMDSTORE(&rmd, PHYSADDR(s,crda));                           \
1166     pktcount++;                                                 \
1167 } while (0)
1168
1169             PCNET_RECV_STORE();
1170             if ((size > 0) && CSR_NRDA(s)) {
1171                 target_phys_addr_t nrda = CSR_NRDA(s);
1172                 RMDLOAD(&rmd, PHYSADDR(s,nrda));
1173                 if (GET_FIELD(rmd.status, RMDS, OWN)) {
1174                     crda = nrda;
1175                     PCNET_RECV_STORE();
1176                     if ((size > 0) && (nrda=CSR_NNRD(s))) {
1177                         RMDLOAD(&rmd, PHYSADDR(s,nrda));
1178                         if (GET_FIELD(rmd.status, RMDS, OWN)) {
1179                             crda = nrda;
1180                             PCNET_RECV_STORE();
1181                         }
1182                     }
1183                 }                
1184             }
1185
1186 #undef PCNET_RECV_STORE
1187
1188             RMDLOAD(&rmd, PHYSADDR(s,crda));
1189             if (size == 0) {
1190                 SET_FIELD(&rmd.status, RMDS, ENP, 1);
1191                 SET_FIELD(&rmd.status, RMDS, PAM, !CSR_PROM(s) && is_padr);
1192                 SET_FIELD(&rmd.status, RMDS, LFAM, !CSR_PROM(s) && is_ladr);
1193                 SET_FIELD(&rmd.status, RMDS, BAM, !CSR_PROM(s) && is_bcast);
1194             } else {
1195                 SET_FIELD(&rmd.status, RMDS, OFLO, 1);
1196                 SET_FIELD(&rmd.status, RMDS, BUFF, 1);
1197                 SET_FIELD(&rmd.status, RMDS, ERR, 1);
1198             }
1199             RMDSTORE(&rmd, PHYSADDR(s,crda));
1200             s->csr[0] |= 0x0400;
1201
1202 #ifdef PCNET_DEBUG
1203             printf("RCVRC=%d CRDA=0x%08x BLKS=%d\n", 
1204                 CSR_RCVRC(s), PHYSADDR(s,CSR_CRDA(s)), pktcount);
1205 #endif
1206 #ifdef PCNET_DEBUG_RMD
1207             PRINT_RMD(&rmd);
1208 #endif        
1209
1210             while (pktcount--) {
1211                 if (CSR_RCVRC(s) <= 1)
1212                     CSR_RCVRC(s) = CSR_RCVRL(s);
1213                 else
1214                     CSR_RCVRC(s)--;            
1215             }
1216             
1217             pcnet_rdte_poll(s);
1218
1219         }        
1220     }
1221
1222     pcnet_poll(s);
1223     pcnet_update_irq(s);    
1224 }
1225
1226 static void pcnet_transmit(PCNetState *s)
1227 {
1228     target_phys_addr_t xmit_cxda = 0;
1229     int count = CSR_XMTRL(s)-1;
1230     s->xmit_pos = -1;
1231     
1232     if (!CSR_TXON(s)) {
1233         s->csr[0] &= ~0x0008;
1234         return;
1235     }
1236
1237     s->tx_busy = 1;
1238
1239     txagain:
1240     if (pcnet_tdte_poll(s)) {
1241         struct pcnet_TMD tmd;
1242
1243         TMDLOAD(&tmd, PHYSADDR(s,CSR_CXDA(s)));
1244
1245 #ifdef PCNET_DEBUG_TMD
1246         printf("  TMDLOAD 0x%08x\n", PHYSADDR(s,CSR_CXDA(s)));
1247         PRINT_TMD(&tmd);
1248 #endif
1249         if (GET_FIELD(tmd.status, TMDS, STP)) {
1250             s->xmit_pos = 0;
1251             if (!GET_FIELD(tmd.status, TMDS, ENP)) {
1252                 int bcnt = 4096 - GET_FIELD(tmd.length, TMDL, BCNT);
1253                 s->phys_mem_read(s->dma_opaque, PHYSADDR(s, tmd.tbadr),
1254                                  s->buffer, bcnt, CSR_BSWP(s));
1255                 s->xmit_pos += bcnt;
1256             }
1257             xmit_cxda = PHYSADDR(s,CSR_CXDA(s));
1258         }
1259         if (GET_FIELD(tmd.status, TMDS, ENP) && (s->xmit_pos >= 0)) {
1260             int bcnt = 4096 - GET_FIELD(tmd.length, TMDL, BCNT);
1261             s->phys_mem_read(s->dma_opaque, PHYSADDR(s, tmd.tbadr),
1262                              s->buffer + s->xmit_pos, bcnt, CSR_BSWP(s));
1263             s->xmit_pos += bcnt;
1264 #ifdef PCNET_DEBUG
1265             printf("pcnet_transmit size=%d\n", s->xmit_pos);
1266 #endif
1267             if (CSR_LOOP(s))
1268                 pcnet_receive(s, s->buffer, s->xmit_pos);
1269             else
1270                 if (s->vc)
1271                     qemu_send_packet(s->vc, s->buffer, s->xmit_pos);
1272
1273             s->csr[0] &= ~0x0008;   /* clear TDMD */
1274             s->csr[4] |= 0x0004;    /* set TXSTRT */
1275             s->xmit_pos = -1;
1276         }
1277
1278         SET_FIELD(&tmd.status, TMDS, OWN, 0);
1279         TMDSTORE(&tmd, PHYSADDR(s,CSR_CXDA(s)));
1280         if (!CSR_TOKINTD(s) || (CSR_LTINTEN(s) && GET_FIELD(tmd.status, TMDS, LTINT)))
1281             s->csr[0] |= 0x0200;    /* set TINT */
1282
1283         if (CSR_XMTRC(s)<=1)
1284             CSR_XMTRC(s) = CSR_XMTRL(s);
1285         else
1286             CSR_XMTRC(s)--;
1287         if (count--)
1288             goto txagain;
1289
1290     } else 
1291     if (s->xmit_pos >= 0) {
1292         struct pcnet_TMD tmd;
1293         TMDLOAD(&tmd, PHYSADDR(s,xmit_cxda));
1294         SET_FIELD(&tmd.misc, TMDM, BUFF, 1);
1295         SET_FIELD(&tmd.misc, TMDM, UFLO, 1);
1296         SET_FIELD(&tmd.status, TMDS, ERR, 1);
1297         SET_FIELD(&tmd.status, TMDS, OWN, 0);
1298         TMDSTORE(&tmd, PHYSADDR(s,xmit_cxda));
1299         s->csr[0] |= 0x0200;    /* set TINT */
1300         if (!CSR_DXSUFLO(s)) {
1301             s->csr[0] &= ~0x0010;
1302         } else
1303         if (count--)
1304           goto txagain;
1305     }
1306
1307     s->tx_busy = 0;
1308 }
1309
1310 static void pcnet_poll(PCNetState *s)
1311 {
1312     if (CSR_RXON(s)) {
1313         pcnet_rdte_poll(s);
1314     }
1315
1316     if (CSR_TDMD(s) || 
1317         (CSR_TXON(s) && !CSR_DPOLL(s) && pcnet_tdte_poll(s)))
1318     {
1319         /* prevent recursion */
1320         if (s->tx_busy)
1321             return;
1322
1323         pcnet_transmit(s);
1324     }
1325 }
1326
1327 static void pcnet_poll_timer(void *opaque)
1328 {
1329     PCNetState *s = opaque;
1330
1331     qemu_del_timer(s->poll_timer);
1332
1333     if (CSR_TDMD(s)) {
1334         pcnet_transmit(s);
1335     }
1336
1337     pcnet_update_irq(s);    
1338
1339     if (!CSR_STOP(s) && !CSR_SPND(s) && !CSR_DPOLL(s)) {
1340         uint64_t now = qemu_get_clock(vm_clock) * 33;
1341         if (!s->timer || !now)
1342             s->timer = now;
1343         else {
1344             uint64_t t = now - s->timer + CSR_POLL(s);
1345             if (t > 0xffffLL) {
1346                 pcnet_poll(s);
1347                 CSR_POLL(s) = CSR_PINT(s);
1348             } else
1349                 CSR_POLL(s) = t;
1350         }
1351         qemu_mod_timer(s->poll_timer, 
1352             pcnet_get_next_poll_time(s,qemu_get_clock(vm_clock)));
1353     }
1354 }
1355
1356
1357 static void pcnet_csr_writew(PCNetState *s, uint32_t rap, uint32_t new_value)
1358 {
1359     uint16_t val = new_value;
1360 #ifdef PCNET_DEBUG_CSR
1361     printf("pcnet_csr_writew rap=%d val=0x%04x\n", rap, val);
1362 #endif
1363     switch (rap) {
1364     case 0:
1365         s->csr[0] &= ~(val & 0x7f00); /* Clear any interrupt flags */
1366
1367         s->csr[0] = (s->csr[0] & ~0x0040) | (val & 0x0048);
1368
1369         val = (val & 0x007f) | (s->csr[0] & 0x7f00);
1370
1371         /* IFF STOP, STRT and INIT are set, clear STRT and INIT */
1372         if ((val&7) == 7)
1373           val &= ~3;
1374
1375         if (!CSR_STOP(s) && (val & 4))
1376             pcnet_stop(s);
1377
1378         if (!CSR_INIT(s) && (val & 1))
1379             pcnet_init(s);
1380
1381         if (!CSR_STRT(s) && (val & 2))
1382             pcnet_start(s);
1383
1384         if (CSR_TDMD(s)) 
1385             pcnet_transmit(s);
1386
1387         return;
1388     case 1:
1389     case 2:
1390     case 8:
1391     case 9:
1392     case 10:
1393     case 11:
1394     case 12:
1395     case 13:
1396     case 14:
1397     case 15:
1398     case 18: /* CRBAL */
1399     case 19: /* CRBAU */
1400     case 20: /* CXBAL */
1401     case 21: /* CXBAU */
1402     case 22: /* NRBAU */
1403     case 23: /* NRBAU */
1404     case 24:
1405     case 25:
1406     case 26:
1407     case 27:
1408     case 28:
1409     case 29:
1410     case 30:
1411     case 31:
1412     case 32:
1413     case 33:
1414     case 34:
1415     case 35:
1416     case 36:
1417     case 37:
1418     case 38:
1419     case 39:
1420     case 40: /* CRBC */
1421     case 41:
1422     case 42: /* CXBC */
1423     case 43:
1424     case 44:
1425     case 45:
1426     case 46: /* POLL */
1427     case 47: /* POLLINT */
1428     case 72:
1429     case 74:
1430     case 76: /* RCVRL */
1431     case 78: /* XMTRL */
1432     case 112:
1433        if (CSR_STOP(s) || CSR_SPND(s))
1434            break;
1435        return;
1436     case 3:
1437         break;
1438     case 4:
1439         s->csr[4] &= ~(val & 0x026a); 
1440         val &= ~0x026a; val |= s->csr[4] & 0x026a;
1441         break;
1442     case 5:
1443         s->csr[5] &= ~(val & 0x0a90); 
1444         val &= ~0x0a90; val |= s->csr[5] & 0x0a90;
1445         break;
1446     case 16:
1447         pcnet_csr_writew(s,1,val);
1448         return;
1449     case 17:
1450         pcnet_csr_writew(s,2,val);
1451         return;
1452     case 58:
1453         pcnet_bcr_writew(s,BCR_SWS,val);
1454         break;
1455     default:
1456         return;
1457     }
1458     s->csr[rap] = val;
1459 }
1460
1461 static uint32_t pcnet_csr_readw(PCNetState *s, uint32_t rap)
1462 {
1463     uint32_t val;
1464     switch (rap) {
1465     case 0:
1466         pcnet_update_irq(s);
1467         val = s->csr[0];
1468         val |= (val & 0x7800) ? 0x8000 : 0;
1469         break;
1470     case 16:
1471         return pcnet_csr_readw(s,1);
1472     case 17:
1473         return pcnet_csr_readw(s,2);
1474     case 58:
1475         return pcnet_bcr_readw(s,BCR_SWS);
1476     case 88:
1477         val = s->csr[89];
1478         val <<= 16;
1479         val |= s->csr[88];
1480         break;
1481     default:
1482         val = s->csr[rap];
1483     }
1484 #ifdef PCNET_DEBUG_CSR
1485     printf("pcnet_csr_readw rap=%d val=0x%04x\n", rap, val);
1486 #endif
1487     return val;
1488 }
1489
1490 static void pcnet_bcr_writew(PCNetState *s, uint32_t rap, uint32_t val)
1491 {
1492     rap &= 127;
1493 #ifdef PCNET_DEBUG_BCR
1494     printf("pcnet_bcr_writew rap=%d val=0x%04x\n", rap, val);
1495 #endif
1496     switch (rap) {
1497     case BCR_SWS:
1498         if (!(CSR_STOP(s) || CSR_SPND(s)))
1499             return;
1500         val &= ~0x0300;
1501         switch (val & 0x00ff) {
1502         case 0:
1503             val |= 0x0200;
1504             break;
1505         case 1:
1506             val |= 0x0100;
1507             break;
1508         case 2:
1509         case 3:
1510             val |= 0x0300;
1511             break;
1512         default:
1513             printf("Bad SWSTYLE=0x%02x\n", val & 0xff);
1514             val = 0x0200;
1515             break;
1516         }
1517 #ifdef PCNET_DEBUG
1518        printf("BCR_SWS=0x%04x\n", val);
1519 #endif
1520     case BCR_LNKST:
1521     case BCR_LED1:
1522     case BCR_LED2:
1523     case BCR_LED3:
1524     case BCR_MC:
1525     case BCR_FDC:
1526     case BCR_BSBC:
1527     case BCR_EECAS:
1528     case BCR_PLAT:
1529         s->bcr[rap] = val;
1530         break;
1531     default:
1532         break;
1533     }
1534 }
1535
1536 static uint32_t pcnet_bcr_readw(PCNetState *s, uint32_t rap)
1537 {
1538     uint32_t val;
1539     rap &= 127;
1540     switch (rap) {
1541     case BCR_LNKST:
1542     case BCR_LED1:
1543     case BCR_LED2:
1544     case BCR_LED3:
1545         val = s->bcr[rap] & ~0x8000;
1546         val |= (val & 0x017f & s->lnkst) ? 0x8000 : 0;
1547         break;
1548     default:
1549         val = rap < 32 ? s->bcr[rap] : 0;
1550         break;
1551     }
1552 #ifdef PCNET_DEBUG_BCR
1553     printf("pcnet_bcr_readw rap=%d val=0x%04x\n", rap, val);
1554 #endif
1555     return val;
1556 }
1557
1558 static void pcnet_h_reset(void *opaque)
1559 {
1560     PCNetState *s = opaque;
1561     int i;
1562     uint16_t checksum;
1563
1564     /* Initialize the PROM */
1565
1566     if (s->nd)
1567         memcpy(s->prom, s->nd->macaddr, 6);
1568     s->prom[12] = s->prom[13] = 0x00;
1569     s->prom[14] = s->prom[15] = 0x57;
1570
1571     for (i = 0,checksum = 0; i < 16; i++)
1572         checksum += s->prom[i];
1573     *(uint16_t *)&s->prom[12] = cpu_to_le16(checksum);
1574
1575
1576     s->bcr[BCR_MSRDA] = 0x0005;
1577     s->bcr[BCR_MSWRA] = 0x0005;
1578     s->bcr[BCR_MC   ] = 0x0002;
1579     s->bcr[BCR_LNKST] = 0x00c0;
1580     s->bcr[BCR_LED1 ] = 0x0084;
1581     s->bcr[BCR_LED2 ] = 0x0088;
1582     s->bcr[BCR_LED3 ] = 0x0090;
1583     s->bcr[BCR_FDC  ] = 0x0000;
1584     s->bcr[BCR_BSBC ] = 0x9001;
1585     s->bcr[BCR_EECAS] = 0x0002;
1586     s->bcr[BCR_SWS  ] = 0x0200;
1587     s->bcr[BCR_PLAT ] = 0xff06;
1588
1589     pcnet_s_reset(s);
1590 }
1591
1592 static void pcnet_aprom_writeb(void *opaque, uint32_t addr, uint32_t val)
1593 {
1594     PCNetState *s = opaque;
1595 #ifdef PCNET_DEBUG
1596     printf("pcnet_aprom_writeb addr=0x%08x val=0x%02x\n", addr, val);
1597 #endif    
1598     /* Check APROMWE bit to enable write access */
1599     if (pcnet_bcr_readw(s,2) & 0x80)
1600         s->prom[addr & 15] = val;
1601 }       
1602
1603 static uint32_t pcnet_aprom_readb(void *opaque, uint32_t addr)
1604 {
1605     PCNetState *s = opaque;
1606     uint32_t val = s->prom[addr &= 15];
1607 #ifdef PCNET_DEBUG
1608     printf("pcnet_aprom_readb addr=0x%08x val=0x%02x\n", addr, val);
1609 #endif
1610     return val;
1611 }
1612
1613 static void pcnet_ioport_writew(void *opaque, uint32_t addr, uint32_t val)
1614 {
1615     PCNetState *s = opaque;
1616     pcnet_poll_timer(s);
1617 #ifdef PCNET_DEBUG_IO
1618     printf("pcnet_ioport_writew addr=0x%08x val=0x%04x\n", addr, val);
1619 #endif
1620     if (!BCR_DWIO(s)) {
1621         switch (addr & 0x0f) {
1622         case 0x00: /* RDP */
1623             pcnet_csr_writew(s, s->rap, val);
1624             break;
1625         case 0x02:
1626             s->rap = val & 0x7f;
1627             break;
1628         case 0x06:
1629             pcnet_bcr_writew(s, s->rap, val);
1630             break;
1631         }
1632     }
1633     pcnet_update_irq(s);
1634 }
1635
1636 static uint32_t pcnet_ioport_readw(void *opaque, uint32_t addr)
1637 {
1638     PCNetState *s = opaque;
1639     uint32_t val = -1;
1640     pcnet_poll_timer(s);
1641     if (!BCR_DWIO(s)) {
1642         switch (addr & 0x0f) {
1643         case 0x00: /* RDP */
1644             val = pcnet_csr_readw(s, s->rap);
1645             break;
1646         case 0x02:
1647             val = s->rap;
1648             break;
1649         case 0x04:
1650             pcnet_s_reset(s);
1651             val = 0;
1652             break;
1653         case 0x06:
1654             val = pcnet_bcr_readw(s, s->rap);
1655             break;
1656         }
1657     }
1658     pcnet_update_irq(s);
1659 #ifdef PCNET_DEBUG_IO
1660     printf("pcnet_ioport_readw addr=0x%08x val=0x%04x\n", addr, val & 0xffff);
1661 #endif
1662     return val;
1663 }
1664
1665 static void pcnet_ioport_writel(void *opaque, uint32_t addr, uint32_t val)
1666 {
1667     PCNetState *s = opaque;
1668     pcnet_poll_timer(s);
1669 #ifdef PCNET_DEBUG_IO
1670     printf("pcnet_ioport_writel addr=0x%08x val=0x%08x\n", addr, val);
1671 #endif
1672     if (BCR_DWIO(s)) {
1673         switch (addr & 0x0f) {
1674         case 0x00: /* RDP */
1675             pcnet_csr_writew(s, s->rap, val & 0xffff);
1676             break;
1677         case 0x04:
1678             s->rap = val & 0x7f;
1679             break;
1680         case 0x0c:
1681             pcnet_bcr_writew(s, s->rap, val & 0xffff);
1682             break;
1683         }
1684     } else
1685     if ((addr & 0x0f) == 0) {
1686         /* switch device to dword i/o mode */
1687         pcnet_bcr_writew(s, BCR_BSBC, pcnet_bcr_readw(s, BCR_BSBC) | 0x0080);
1688 #ifdef PCNET_DEBUG_IO
1689         printf("device switched into dword i/o mode\n");
1690 #endif        
1691     }
1692     pcnet_update_irq(s);
1693 }
1694
1695 static uint32_t pcnet_ioport_readl(void *opaque, uint32_t addr)
1696 {
1697     PCNetState *s = opaque;
1698     uint32_t val = -1;
1699     pcnet_poll_timer(s);
1700     if (BCR_DWIO(s)) {  
1701         switch (addr & 0x0f) {
1702         case 0x00: /* RDP */
1703             val = pcnet_csr_readw(s, s->rap);
1704             break;
1705         case 0x04:
1706             val = s->rap;
1707             break;
1708         case 0x08:
1709             pcnet_s_reset(s);
1710             val = 0;
1711             break;
1712         case 0x0c:
1713             val = pcnet_bcr_readw(s, s->rap);
1714             break;
1715         }
1716     }
1717     pcnet_update_irq(s);
1718 #ifdef PCNET_DEBUG_IO
1719     printf("pcnet_ioport_readl addr=0x%08x val=0x%08x\n", addr, val);
1720 #endif
1721     return val;
1722 }
1723
1724 static void pcnet_ioport_map(PCIDevice *pci_dev, int region_num, 
1725                              uint32_t addr, uint32_t size, int type)
1726 {
1727     PCNetState *d = (PCNetState *)pci_dev;
1728
1729 #ifdef PCNET_DEBUG_IO
1730     printf("pcnet_ioport_map addr=0x%04x size=0x%04x\n", addr, size);
1731 #endif
1732
1733     register_ioport_write(addr, 16, 1, pcnet_aprom_writeb, d);
1734     register_ioport_read(addr, 16, 1, pcnet_aprom_readb, d);
1735     
1736     register_ioport_write(addr + 0x10, 0x10, 2, pcnet_ioport_writew, d);
1737     register_ioport_read(addr + 0x10, 0x10, 2, pcnet_ioport_readw, d);
1738     register_ioport_write(addr + 0x10, 0x10, 4, pcnet_ioport_writel, d);
1739     register_ioport_read(addr + 0x10, 0x10, 4, pcnet_ioport_readl, d);
1740 }
1741
1742 static void pcnet_mmio_writeb(void *opaque, target_phys_addr_t addr, uint32_t val)
1743 {
1744     PCNetState *d = opaque;
1745 #ifdef PCNET_DEBUG_IO
1746     printf("pcnet_mmio_writeb addr=0x%08x val=0x%02x\n", addr, val);
1747 #endif
1748     if (!(addr & 0x10))
1749         pcnet_aprom_writeb(d, addr & 0x0f, val);
1750 }
1751
1752 static uint32_t pcnet_mmio_readb(void *opaque, target_phys_addr_t addr) 
1753 {
1754     PCNetState *d = opaque;
1755     uint32_t val = -1;
1756     if (!(addr & 0x10))
1757         val = pcnet_aprom_readb(d, addr & 0x0f);
1758 #ifdef PCNET_DEBUG_IO
1759     printf("pcnet_mmio_readb addr=0x%08x val=0x%02x\n", addr, val & 0xff);
1760 #endif
1761     return val;
1762 }
1763
1764 static void pcnet_mmio_writew(void *opaque, target_phys_addr_t addr, uint32_t val)
1765 {
1766     PCNetState *d = opaque;
1767 #ifdef PCNET_DEBUG_IO
1768     printf("pcnet_mmio_writew addr=0x%08x val=0x%04x\n", addr, val);
1769 #endif
1770     if (addr & 0x10)
1771         pcnet_ioport_writew(d, addr & 0x0f, val);
1772     else {
1773         addr &= 0x0f;
1774         pcnet_aprom_writeb(d, addr, val & 0xff);
1775         pcnet_aprom_writeb(d, addr+1, (val & 0xff00) >> 8);
1776     }
1777 }
1778
1779 static uint32_t pcnet_mmio_readw(void *opaque, target_phys_addr_t addr) 
1780 {
1781     PCNetState *d = opaque;
1782     uint32_t val = -1;
1783     if (addr & 0x10)
1784         val = pcnet_ioport_readw(d, addr & 0x0f);
1785     else {
1786         addr &= 0x0f;
1787         val = pcnet_aprom_readb(d, addr+1);
1788         val <<= 8;
1789         val |= pcnet_aprom_readb(d, addr);
1790     }
1791 #ifdef PCNET_DEBUG_IO
1792     printf("pcnet_mmio_readw addr=0x%08x val = 0x%04x\n", addr, val & 0xffff);
1793 #endif
1794     return val;
1795 }
1796
1797 static void pcnet_mmio_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
1798 {
1799     PCNetState *d = opaque;
1800 #ifdef PCNET_DEBUG_IO
1801     printf("pcnet_mmio_writel addr=0x%08x val=0x%08x\n", addr, val);
1802 #endif
1803     if (addr & 0x10)
1804         pcnet_ioport_writel(d, addr & 0x0f, val);
1805     else {
1806         addr &= 0x0f;
1807         pcnet_aprom_writeb(d, addr, val & 0xff);
1808         pcnet_aprom_writeb(d, addr+1, (val & 0xff00) >> 8);
1809         pcnet_aprom_writeb(d, addr+2, (val & 0xff0000) >> 16);
1810         pcnet_aprom_writeb(d, addr+3, (val & 0xff000000) >> 24);
1811     }
1812 }
1813
1814 static uint32_t pcnet_mmio_readl(void *opaque, target_phys_addr_t addr) 
1815 {
1816     PCNetState *d = opaque;
1817     uint32_t val;
1818     if (addr & 0x10)
1819         val = pcnet_ioport_readl(d, addr & 0x0f);
1820     else {
1821         addr &= 0x0f;
1822         val = pcnet_aprom_readb(d, addr+3);
1823         val <<= 8;
1824         val |= pcnet_aprom_readb(d, addr+2);
1825         val <<= 8;
1826         val |= pcnet_aprom_readb(d, addr+1);
1827         val <<= 8;
1828         val |= pcnet_aprom_readb(d, addr);
1829     }
1830 #ifdef PCNET_DEBUG_IO
1831     printf("pcnet_mmio_readl addr=0x%08x val=0x%08x\n", addr, val);
1832 #endif
1833     return val;
1834 }
1835
1836
1837 static void pcnet_save(QEMUFile *f, void *opaque)
1838 {
1839     PCNetState *s = opaque;
1840     unsigned int i;
1841
1842     if (s->pci_dev)
1843         pci_device_save(s->pci_dev, f);
1844
1845     qemu_put_be32s(f, &s->rap);
1846     qemu_put_be32s(f, &s->isr);
1847     qemu_put_be32s(f, &s->lnkst);
1848     qemu_put_be32s(f, &s->rdra);
1849     qemu_put_be32s(f, &s->tdra);
1850     qemu_put_buffer(f, s->prom, 16);
1851     for (i = 0; i < 128; i++)
1852         qemu_put_be16s(f, &s->csr[i]);
1853     for (i = 0; i < 32; i++)
1854         qemu_put_be16s(f, &s->bcr[i]);
1855     qemu_put_be64s(f, &s->timer);
1856     qemu_put_be32s(f, &s->xmit_pos);
1857     qemu_put_be32s(f, &s->recv_pos);
1858     qemu_put_buffer(f, s->buffer, 4096);
1859     qemu_put_be32s(f, &s->tx_busy);
1860     qemu_put_timer(f, s->poll_timer);
1861 }
1862
1863 static int pcnet_load(QEMUFile *f, void *opaque, int version_id)
1864 {
1865     PCNetState *s = opaque;
1866     int i, ret;
1867
1868     if (version_id != 2)
1869         return -EINVAL;
1870
1871     if (s->pci_dev) {
1872         ret = pci_device_load(s->pci_dev, f);
1873         if (ret < 0)
1874             return ret;
1875     }
1876
1877     qemu_get_be32s(f, &s->rap);
1878     qemu_get_be32s(f, &s->isr);
1879     qemu_get_be32s(f, &s->lnkst);
1880     qemu_get_be32s(f, &s->rdra);
1881     qemu_get_be32s(f, &s->tdra);
1882     qemu_get_buffer(f, s->prom, 16);
1883     for (i = 0; i < 128; i++)
1884         qemu_get_be16s(f, &s->csr[i]);
1885     for (i = 0; i < 32; i++)
1886         qemu_get_be16s(f, &s->bcr[i]);
1887     qemu_get_be64s(f, &s->timer);
1888     qemu_get_be32s(f, &s->xmit_pos);
1889     qemu_get_be32s(f, &s->recv_pos);
1890     qemu_get_buffer(f, s->buffer, 4096);
1891     qemu_get_be32s(f, &s->tx_busy);
1892     qemu_get_timer(f, s->poll_timer);
1893
1894     return 0;
1895 }
1896
1897 static void pcnet_common_init(PCNetState *d, NICInfo *nd, const char *info_str)
1898 {
1899     d->poll_timer = qemu_new_timer(vm_clock, pcnet_poll_timer, d);
1900
1901     d->nd = nd;
1902
1903     if (nd && nd->vlan) {
1904         d->vc = qemu_new_vlan_client(nd->vlan, pcnet_receive,
1905                                      pcnet_can_receive, d);
1906
1907         snprintf(d->vc->info_str, sizeof(d->vc->info_str),
1908                  "pcnet macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
1909                  d->nd->macaddr[0],
1910                  d->nd->macaddr[1],
1911                  d->nd->macaddr[2],
1912                  d->nd->macaddr[3],
1913                  d->nd->macaddr[4],
1914                  d->nd->macaddr[5]);
1915     } else {
1916         d->vc = NULL;
1917     }
1918     pcnet_h_reset(d);
1919     register_savevm("pcnet", 0, 2, pcnet_save, pcnet_load, d);
1920 }
1921
1922 /* PCI interface */
1923
1924 static CPUWriteMemoryFunc *pcnet_mmio_write[] = {
1925     (CPUWriteMemoryFunc *)&pcnet_mmio_writeb,
1926     (CPUWriteMemoryFunc *)&pcnet_mmio_writew,
1927     (CPUWriteMemoryFunc *)&pcnet_mmio_writel
1928 };
1929
1930 static CPUReadMemoryFunc *pcnet_mmio_read[] = {
1931     (CPUReadMemoryFunc *)&pcnet_mmio_readb,
1932     (CPUReadMemoryFunc *)&pcnet_mmio_readw,
1933     (CPUReadMemoryFunc *)&pcnet_mmio_readl
1934 };
1935
1936 static void pcnet_mmio_map(PCIDevice *pci_dev, int region_num, 
1937                             uint32_t addr, uint32_t size, int type)
1938 {
1939     PCNetState *d = (PCNetState *)pci_dev;
1940
1941 #ifdef PCNET_DEBUG_IO
1942     printf("pcnet_ioport_map addr=0x%08x 0x%08x\n", addr, size);
1943 #endif
1944
1945     cpu_register_physical_memory(addr, PCNET_PNPMMIO_SIZE, d->mmio_index);
1946 }
1947
1948 static void pci_physical_memory_write(void *dma_opaque, target_phys_addr_t addr,
1949                                       uint8_t *buf, int len, int do_bswap)
1950 {
1951     cpu_physical_memory_write(addr, buf, len);
1952 }
1953
1954 static void pci_physical_memory_read(void *dma_opaque, target_phys_addr_t addr,
1955                                      uint8_t *buf, int len, int do_bswap)
1956 {
1957     cpu_physical_memory_read(addr, buf, len);
1958 }
1959
1960 void pci_pcnet_init(PCIBus *bus, NICInfo *nd, int devfn)
1961 {
1962     PCNetState *d;
1963     uint8_t *pci_conf;
1964
1965 #if 0
1966     printf("sizeof(RMD)=%d, sizeof(TMD)=%d\n", 
1967         sizeof(struct pcnet_RMD), sizeof(struct pcnet_TMD));
1968 #endif
1969
1970     d = (PCNetState *)pci_register_device(bus, "PCNet", sizeof(PCNetState),
1971                                           devfn, NULL, NULL);
1972                                           
1973     pci_conf = d->dev.config;
1974     
1975     *(uint16_t *)&pci_conf[0x00] = cpu_to_le16(0x1022);
1976     *(uint16_t *)&pci_conf[0x02] = cpu_to_le16(0x2000);    
1977     *(uint16_t *)&pci_conf[0x04] = cpu_to_le16(0x0007); 
1978     *(uint16_t *)&pci_conf[0x06] = cpu_to_le16(0x0280);
1979     pci_conf[0x08] = 0x10;
1980     pci_conf[0x09] = 0x00;
1981     pci_conf[0x0a] = 0x00; // ethernet network controller 
1982     pci_conf[0x0b] = 0x02;
1983     pci_conf[0x0e] = 0x00; // header_type
1984     
1985     *(uint32_t *)&pci_conf[0x10] = cpu_to_le32(0x00000001);
1986     *(uint32_t *)&pci_conf[0x14] = cpu_to_le32(0x00000000);
1987     
1988     pci_conf[0x3d] = 1; // interrupt pin 0
1989     pci_conf[0x3e] = 0x06;
1990     pci_conf[0x3f] = 0xff;
1991
1992     /* Handler for memory-mapped I/O */
1993     d->mmio_index =
1994       cpu_register_io_memory(0, pcnet_mmio_read, pcnet_mmio_write, d);
1995
1996     pci_register_io_region((PCIDevice *)d, 0, PCNET_IOPORT_SIZE, 
1997                            PCI_ADDRESS_SPACE_IO, pcnet_ioport_map);
1998                            
1999     pci_register_io_region((PCIDevice *)d, 1, PCNET_PNPMMIO_SIZE, 
2000                            PCI_ADDRESS_SPACE_MEM, pcnet_mmio_map);
2001                            
2002     d->irq = d->dev.irq[0];
2003     d->phys_mem_read = pci_physical_memory_read;
2004     d->phys_mem_write = pci_physical_memory_write;
2005     d->pci_dev = &d->dev;
2006
2007     pcnet_common_init(d, nd, "pcnet");
2008 }
2009
2010 /* SPARC32 interface */
2011
2012 #if defined (TARGET_SPARC) && !defined(TARGET_SPARC64) // Avoid compile failure
2013
2014 static void parent_lance_reset(void *opaque, int irq, int level)
2015 {
2016     if (level)
2017         pcnet_h_reset(opaque);
2018 }
2019
2020 static void lance_mem_writew(void *opaque, target_phys_addr_t addr,
2021                              uint32_t val)
2022 {
2023 #ifdef PCNET_DEBUG_IO
2024     printf("lance_mem_writew addr=" TARGET_FMT_plx " val=0x%04x\n", addr,
2025            val & 0xffff);
2026 #endif
2027     pcnet_ioport_writew(opaque, addr & 7, val & 0xffff);
2028 }
2029
2030 static uint32_t lance_mem_readw(void *opaque, target_phys_addr_t addr)
2031 {
2032     uint32_t val;
2033
2034     val = pcnet_ioport_readw(opaque, addr & 7);
2035 #ifdef PCNET_DEBUG_IO
2036     printf("pcnet_mmio_readw addr=" TARGET_FMT_plx " val = 0x%04x\n", addr,
2037            val & 0xffff);
2038 #endif
2039
2040     return val & 0xffff;
2041 }
2042
2043 static CPUReadMemoryFunc *lance_mem_read[3] = {
2044     lance_mem_readw,
2045     lance_mem_readw,
2046     lance_mem_readw,
2047 };
2048
2049 static CPUWriteMemoryFunc *lance_mem_write[3] = {
2050     lance_mem_writew,
2051     lance_mem_writew,
2052     lance_mem_writew,
2053 };
2054
2055 void lance_init(NICInfo *nd, target_phys_addr_t leaddr, void *dma_opaque,
2056                 qemu_irq irq, qemu_irq *reset)
2057 {
2058     PCNetState *d;
2059     int lance_io_memory;
2060
2061     d = qemu_mallocz(sizeof(PCNetState));
2062     if (!d)
2063         return;
2064
2065     lance_io_memory =
2066         cpu_register_io_memory(0, lance_mem_read, lance_mem_write, d);
2067
2068     d->dma_opaque = dma_opaque;
2069
2070     *reset = *qemu_allocate_irqs(parent_lance_reset, d, 1);
2071
2072     cpu_register_physical_memory(leaddr, 4, lance_io_memory);
2073
2074     d->irq = irq;
2075     d->phys_mem_read = ledma_memory_read;
2076     d->phys_mem_write = ledma_memory_write;
2077
2078     pcnet_common_init(d, nd, "lance");
2079 }
2080 #endif /* TARGET_SPARC */