2 * SMSC 91C111 Ethernet interface emulation
4 * Copyright (c) 2005 CodeSourcery, LLC.
5 * Written by Paul Brook
7 * This code is licenced under the GPL
16 /* Number of 2k memory pages available. */
32 /* Bitmask of allocated packets. */
35 int tx_fifo
[NUM_PACKETS
];
37 int rx_fifo
[NUM_PACKETS
];
39 int tx_fifo_done
[NUM_PACKETS
];
40 /* Packet buffer memory. */
41 uint8_t data
[NUM_PACKETS
][2048];
47 #define RCR_SOFT_RST 0x8000
48 #define RCR_STRIP_CRC 0x0200
49 #define RCR_RXEN 0x0100
51 #define TCR_EPH_LOOP 0x2000
52 #define TCR_NOCRC 0x0100
53 #define TCR_PAD_EN 0x0080
54 #define TCR_FORCOL 0x0004
55 #define TCR_LOOP 0x0002
56 #define TCR_TXEN 0x0001
61 #define INT_RX_OVRN 0x10
62 #define INT_ALLOC 0x08
63 #define INT_TX_EMPTY 0x04
67 #define CTR_AUTO_RELEASE 0x0800
68 #define CTR_RELOAD 0x0002
69 #define CTR_STORE 0x0001
71 #define RS_ALGNERR 0x8000
72 #define RS_BRODCAST 0x4000
73 #define RS_BADCRC 0x2000
74 #define RS_ODDFRAME 0x1000
75 #define RS_TOOLONG 0x0800
76 #define RS_TOOSHORT 0x0400
77 #define RS_MULTICAST 0x0001
79 /* Update interrupt status. */
80 static void smc91c111_update(smc91c111_state
*s
)
84 if (s
->tx_fifo_len
== 0)
85 s
->int_level
|= INT_TX_EMPTY
;
86 if (s
->tx_fifo_done_len
!= 0)
87 s
->int_level
|= INT_TX
;
88 level
= (s
->int_level
& s
->int_mask
) != 0;
89 qemu_set_irq(s
->irq
, level
);
92 /* Try to allocate a packet. Returns 0x80 on failure. */
93 static int smc91c111_allocate_packet(smc91c111_state
*s
)
96 if (s
->allocated
== (1 << NUM_PACKETS
) - 1) {
100 for (i
= 0; i
< NUM_PACKETS
; i
++) {
101 if ((s
->allocated
& (1 << i
)) == 0)
104 s
->allocated
|= 1 << i
;
109 /* Process a pending TX allocate. */
110 static void smc91c111_tx_alloc(smc91c111_state
*s
)
112 s
->tx_alloc
= smc91c111_allocate_packet(s
);
113 if (s
->tx_alloc
== 0x80)
115 s
->int_level
|= INT_ALLOC
;
119 /* Remove and item from the RX FIFO. */
120 static void smc91c111_pop_rx_fifo(smc91c111_state
*s
)
125 if (s
->rx_fifo_len
) {
126 for (i
= 0; i
< s
->rx_fifo_len
; i
++)
127 s
->rx_fifo
[i
] = s
->rx_fifo
[i
+ 1];
128 s
->int_level
|= INT_RCV
;
130 s
->int_level
&= ~INT_RCV
;
135 /* Remove an item from the TX completion FIFO. */
136 static void smc91c111_pop_tx_fifo_done(smc91c111_state
*s
)
140 if (s
->tx_fifo_done_len
== 0)
142 s
->tx_fifo_done_len
--;
143 for (i
= 0; i
< s
->tx_fifo_done_len
; i
++)
144 s
->tx_fifo_done
[i
] = s
->tx_fifo_done
[i
+ 1];
147 /* Release the memory allocated to a packet. */
148 static void smc91c111_release_packet(smc91c111_state
*s
, int packet
)
150 s
->allocated
&= ~(1 << packet
);
151 if (s
->tx_alloc
== 0x80)
152 smc91c111_tx_alloc(s
);
155 /* Flush the TX FIFO. */
156 static void smc91c111_do_tx(smc91c111_state
*s
)
165 if ((s
->tcr
& TCR_TXEN
) == 0)
167 if (s
->tx_fifo_len
== 0)
169 for (i
= 0; i
< s
->tx_fifo_len
; i
++) {
170 packetnum
= s
->tx_fifo
[i
];
171 p
= &s
->data
[packetnum
][0];
172 /* Set status word. */
176 len
|= ((int)*(p
++)) << 8;
178 control
= p
[len
+ 1];
181 /* ??? This overwrites the data following the buffer.
182 Don't know what real hardware does. */
183 if (len
< 64 && (s
->tcr
& TCR_PAD_EN
)) {
184 memset(p
+ len
, 0, 64 - len
);
188 /* The card is supposed to append the CRC to the frame. However
189 none of the other network traffic has the CRC appended.
190 Suspect this is low level ethernet detail we don't need to worry
192 add_crc
= (control
& 0x10) || (s
->tcr
& TCR_NOCRC
) == 0;
196 crc
= crc32(~0, p
, len
);
197 memcpy(p
+ len
, &crc
, 4);
203 if (s
->ctr
& CTR_AUTO_RELEASE
)
205 smc91c111_release_packet(s
, packetnum
);
206 else if (s
->tx_fifo_done_len
< NUM_PACKETS
)
207 s
->tx_fifo_done
[s
->tx_fifo_done_len
++] = packetnum
;
208 qemu_send_packet(s
->vc
, p
, len
);
214 /* Add a packet to the TX FIFO. */
215 static void smc91c111_queue_tx(smc91c111_state
*s
, int packet
)
217 if (s
->tx_fifo_len
== NUM_PACKETS
)
219 s
->tx_fifo
[s
->tx_fifo_len
++] = packet
;
223 static void smc91c111_reset(smc91c111_state
*s
)
227 s
->tx_fifo_done_len
= 0;
238 s
->int_level
= INT_TX_EMPTY
;
243 #define SET_LOW(name, val) s->name = (s->name & 0xff00) | val
244 #define SET_HIGH(name, val) s->name = (s->name & 0xff) | (val << 8)
246 static void smc91c111_writeb(void *opaque
, target_phys_addr_t offset
,
249 smc91c111_state
*s
= (smc91c111_state
*)opaque
;
264 SET_HIGH(tcr
, value
);
270 SET_HIGH(rcr
, value
);
271 if (s
->rcr
& RCR_SOFT_RST
)
274 case 10: case 11: /* RPCR */
288 case 2: case 3: /* BASE */
289 case 4: case 5: case 6: case 7: case 8: case 9: /* IA */
290 /* Not implemented. */
292 case 10: /* Genral Purpose */
296 SET_HIGH(gpr
, value
);
298 case 12: /* Control */
300 fprintf(stderr
, "smc91c111:EEPROM store not implemented\n");
302 fprintf(stderr
, "smc91c111:EEPROM reload not implemented\n");
307 SET_HIGH(ctr
, value
);
314 case 0: /* MMU Command */
315 switch (value
>> 5) {
318 case 1: /* Allocate for TX. */
320 s
->int_level
&= ~INT_ALLOC
;
322 smc91c111_tx_alloc(s
);
324 case 2: /* Reset MMU. */
327 s
->tx_fifo_done_len
= 0;
331 case 3: /* Remove from RX FIFO. */
332 smc91c111_pop_rx_fifo(s
);
334 case 4: /* Remove from RX FIFO and release. */
335 if (s
->rx_fifo_len
> 0) {
336 smc91c111_release_packet(s
, s
->rx_fifo
[0]);
338 smc91c111_pop_rx_fifo(s
);
340 case 5: /* Release. */
341 smc91c111_release_packet(s
, s
->packet_num
);
343 case 6: /* Add to TX FIFO. */
344 smc91c111_queue_tx(s
, s
->packet_num
);
346 case 7: /* Reset TX FIFO. */
348 s
->tx_fifo_done_len
= 0;
355 case 2: /* Packet Number Register */
356 s
->packet_num
= value
;
358 case 3: case 4: case 5:
359 /* Should be readonly, but linux writes to them anyway. Ignore. */
361 case 6: /* Pointer */
365 SET_HIGH(ptr
, value
);
367 case 8: case 9: case 10: case 11: /* Data */
377 if (s
->ptr
& 0x4000) {
378 s
->ptr
= (s
->ptr
& 0xf800) | ((s
->ptr
+ 1) & 0x7ff);
382 s
->data
[n
][p
] = value
;
385 case 12: /* Interrupt ACK. */
386 s
->int_level
&= ~(value
& 0xd6);
388 smc91c111_pop_tx_fifo_done(s
);
391 case 13: /* Interrupt mask. */
400 case 0: case 1: case 2: case 3: case 4: case 5: case 6: case 7:
401 /* Multicast table. */
402 /* Not implemented. */
404 case 8: case 9: /* Management Interface. */
405 /* Not implemented. */
407 case 12: /* Early receive. */
408 s
->ercv
= value
& 0x1f;
415 cpu_abort (cpu_single_env
, "smc91c111_write: Bad reg %d:%x\n",
416 s
->bank
, (int)offset
);
419 static uint32_t smc91c111_readb(void *opaque
, target_phys_addr_t offset
)
421 smc91c111_state
*s
= (smc91c111_state
*)opaque
;
432 return s
->tcr
& 0xff;
435 case 2: /* EPH Status */
440 return s
->rcr
& 0xff;
443 case 6: /* Counter */
445 /* Not implemented. */
447 case 8: /* Memory size. */
449 case 9: /* Free memory available. */
454 for (i
= 0; i
< NUM_PACKETS
; i
++) {
455 if (s
->allocated
& (1 << i
))
460 case 10: case 11: /* RPCR */
461 /* Not implemented. */
472 case 2: case 3: /* BASE */
473 /* Not implemented. */
475 case 4: case 5: case 6: case 7: case 8: case 9: /* IA */
476 return s
->macaddr
[offset
- 4];
477 case 10: /* General Purpose */
478 return s
->gpr
& 0xff;
481 case 12: /* Control */
482 return s
->ctr
& 0xff;
490 case 0: case 1: /* MMUCR Busy bit. */
492 case 2: /* Packet Number. */
493 return s
->packet_num
;
494 case 3: /* Allocation Result. */
496 case 4: /* TX FIFO */
497 if (s
->tx_fifo_done_len
== 0)
500 return s
->tx_fifo_done
[0];
501 case 5: /* RX FIFO */
502 if (s
->rx_fifo_len
== 0)
505 return s
->rx_fifo
[0];
506 case 6: /* Pointer */
507 return s
->ptr
& 0xff;
509 return (s
->ptr
>> 8) & 0xf7;
510 case 8: case 9: case 10: case 11: /* Data */
520 if (s
->ptr
& 0x4000) {
521 s
->ptr
= (s
->ptr
& 0xf800) | ((s
->ptr
+ 1) & 0x07ff);
525 return s
->data
[n
][p
];
527 case 12: /* Interrupt status. */
529 case 13: /* Interrupt mask. */
536 case 0: case 1: case 2: case 3: case 4: case 5: case 6: case 7:
537 /* Multicast table. */
538 /* Not implemented. */
540 case 8: /* Management Interface. */
541 /* Not implemented. */
545 case 10: /* Revision. */
556 cpu_abort (cpu_single_env
, "smc91c111_read: Bad reg %d:%x\n",
557 s
->bank
, (int)offset
);
561 static void smc91c111_writew(void *opaque
, target_phys_addr_t offset
,
564 smc91c111_writeb(opaque
, offset
, value
& 0xff);
565 smc91c111_writeb(opaque
, offset
+ 1, value
>> 8);
568 static void smc91c111_writel(void *opaque
, target_phys_addr_t offset
,
571 /* 32-bit writes to offset 0xc only actually write to the bank select
572 register (offset 0xe) */
574 smc91c111_writew(opaque
, offset
, value
& 0xffff);
575 smc91c111_writew(opaque
, offset
+ 2, value
>> 16);
578 static uint32_t smc91c111_readw(void *opaque
, target_phys_addr_t offset
)
581 val
= smc91c111_readb(opaque
, offset
);
582 val
|= smc91c111_readb(opaque
, offset
+ 1) << 8;
586 static uint32_t smc91c111_readl(void *opaque
, target_phys_addr_t offset
)
589 val
= smc91c111_readw(opaque
, offset
);
590 val
|= smc91c111_readw(opaque
, offset
+ 2) << 16;
594 static int smc91c111_can_receive(void *opaque
)
596 smc91c111_state
*s
= (smc91c111_state
*)opaque
;
598 if ((s
->rcr
& RCR_RXEN
) == 0 || (s
->rcr
& RCR_SOFT_RST
))
600 if (s
->allocated
== (1 << NUM_PACKETS
) - 1)
605 static void smc91c111_receive(void *opaque
, const uint8_t *buf
, int size
)
607 smc91c111_state
*s
= (smc91c111_state
*)opaque
;
614 if ((s
->rcr
& RCR_RXEN
) == 0 || (s
->rcr
& RCR_SOFT_RST
))
616 /* Short packets are padded with zeros. Receiving a packet
617 < 64 bytes long is considered an error condition. */
621 packetsize
= (size
& ~1);
623 crc
= (s
->rcr
& RCR_STRIP_CRC
) == 0;
626 /* TODO: Flag overrun and receive errors. */
627 if (packetsize
> 2048)
629 packetnum
= smc91c111_allocate_packet(s
);
630 if (packetnum
== 0x80)
632 s
->rx_fifo
[s
->rx_fifo_len
++] = packetnum
;
634 p
= &s
->data
[packetnum
][0];
635 /* ??? Multicast packets? */
638 status
|= RS_TOOLONG
;
640 status
|= RS_ODDFRAME
;
641 *(p
++) = status
& 0xff;
642 *(p
++) = status
>> 8;
643 *(p
++) = packetsize
& 0xff;
644 *(p
++) = packetsize
>> 8;
645 memcpy(p
, buf
, size
& ~1);
647 /* Pad short packets. */
652 *(p
++) = buf
[size
- 1];
658 /* It's not clear if the CRC should go before or after the last byte in
659 odd sized packets. Linux disables the CRC, so that's no help.
660 The pictures in the documentation show the CRC aligned on a 16-bit
661 boundary before the last odd byte, so that's what we do. */
663 crc
= crc32(~0, buf
, size
);
664 *(p
++) = crc
& 0xff; crc
>>= 8;
665 *(p
++) = crc
& 0xff; crc
>>= 8;
666 *(p
++) = crc
& 0xff; crc
>>= 8;
667 *(p
++) = crc
& 0xff; crc
>>= 8;
670 *(p
++) = buf
[size
- 1];
676 /* TODO: Raise early RX interrupt? */
677 s
->int_level
|= INT_RCV
;
681 static CPUReadMemoryFunc
*smc91c111_readfn
[] = {
687 static CPUWriteMemoryFunc
*smc91c111_writefn
[] = {
693 void smc91c111_init(NICInfo
*nd
, uint32_t base
, qemu_irq irq
)
698 qemu_check_nic_model(nd
, "smc91c111");
700 s
= (smc91c111_state
*)qemu_mallocz(sizeof(smc91c111_state
));
701 iomemtype
= cpu_register_io_memory(0, smc91c111_readfn
,
702 smc91c111_writefn
, s
);
703 cpu_register_physical_memory(base
, 16, iomemtype
);
705 memcpy(s
->macaddr
, nd
->macaddr
, 6);
709 s
->vc
= qemu_new_vlan_client(nd
->vlan
, nd
->model
, nd
->name
,
710 smc91c111_receive
, smc91c111_can_receive
, s
);
711 qemu_format_nic_info_str(s
->vc
, s
->macaddr
);
712 /* ??? Save/restore. */