2 * SMSC LAN9118 Ethernet interface emulation
4 * Copyright (c) 2009 CodeSourcery, LLC.
5 * Written by Paul Brook
7 * This code is licenced under the GNU GPL v2
17 //#define DEBUG_LAN9118
20 #define DPRINTF(fmt, ...) \
21 do { printf("lan9118: " fmt , ## __VA_ARGS__); } while (0)
22 #define BADF(fmt, ...) \
23 do { hw_error("lan9118: error: " fmt , ## __VA_ARGS__);} while (0)
25 #define DPRINTF(fmt, ...) do {} while(0)
26 #define BADF(fmt, ...) \
27 do { fprintf(stderr, "lan9118: error: " fmt , ## __VA_ARGS__);} while (0)
30 #define CSR_ID_REV 0x50
31 #define CSR_IRQ_CFG 0x54
32 #define CSR_INT_STS 0x58
33 #define CSR_INT_EN 0x5c
34 #define CSR_BYTE_TEST 0x64
35 #define CSR_FIFO_INT 0x68
36 #define CSR_RX_CFG 0x6c
37 #define CSR_TX_CFG 0x70
38 #define CSR_HW_CFG 0x74
39 #define CSR_RX_DP_CTRL 0x78
40 #define CSR_RX_FIFO_INF 0x7c
41 #define CSR_TX_FIFO_INF 0x80
42 #define CSR_PMT_CTRL 0x84
43 #define CSR_GPIO_CFG 0x88
44 #define CSR_GPT_CFG 0x8c
45 #define CSR_GPT_CNT 0x90
46 #define CSR_WORD_SWAP 0x98
47 #define CSR_FREE_RUN 0x9c
48 #define CSR_RX_DROP 0xa0
49 #define CSR_MAC_CSR_CMD 0xa4
50 #define CSR_MAC_CSR_DATA 0xa8
51 #define CSR_AFC_CFG 0xac
52 #define CSR_E2P_CMD 0xb0
53 #define CSR_E2P_DATA 0xb4
56 #define IRQ_INT 0x00001000
57 #define IRQ_EN 0x00000100
58 #define IRQ_POL 0x00000010
59 #define IRQ_TYPE 0x00000001
62 #define SW_INT 0x80000000
63 #define TXSTOP_INT 0x02000000
64 #define RXSTOP_INT 0x01000000
65 #define RXDFH_INT 0x00800000
66 #define TX_IOC_INT 0x00200000
67 #define RXD_INT 0x00100000
68 #define GPT_INT 0x00080000
69 #define PHY_INT 0x00040000
70 #define PME_INT 0x00020000
71 #define TXSO_INT 0x00010000
72 #define RWT_INT 0x00008000
73 #define RXE_INT 0x00004000
74 #define TXE_INT 0x00002000
75 #define TDFU_INT 0x00000800
76 #define TDFO_INT 0x00000400
77 #define TDFA_INT 0x00000200
78 #define TSFF_INT 0x00000100
79 #define TSFL_INT 0x00000080
80 #define RXDF_INT 0x00000040
81 #define RDFL_INT 0x00000020
82 #define RSFF_INT 0x00000010
83 #define RSFL_INT 0x00000008
84 #define GPIO2_INT 0x00000004
85 #define GPIO1_INT 0x00000002
86 #define GPIO0_INT 0x00000001
87 #define RESERVED_INT 0x7c001000
95 #define MAC_MII_DATA 7
97 #define MAC_VLAN1 9 /* TODO */
98 #define MAC_VLAN2 10 /* TODO */
99 #define MAC_WUFF 11 /* TODO */
100 #define MAC_WUCSR 12 /* TODO */
102 #define MAC_CR_RXALL 0x80000000
103 #define MAC_CR_RCVOWN 0x00800000
104 #define MAC_CR_LOOPBK 0x00200000
105 #define MAC_CR_FDPX 0x00100000
106 #define MAC_CR_MCPAS 0x00080000
107 #define MAC_CR_PRMS 0x00040000
108 #define MAC_CR_INVFILT 0x00020000
109 #define MAC_CR_PASSBAD 0x00010000
110 #define MAC_CR_HO 0x00008000
111 #define MAC_CR_HPFILT 0x00002000
112 #define MAC_CR_LCOLL 0x00001000
113 #define MAC_CR_BCAST 0x00000800
114 #define MAC_CR_DISRTY 0x00000400
115 #define MAC_CR_PADSTR 0x00000100
116 #define MAC_CR_BOLMT 0x000000c0
117 #define MAC_CR_DFCHK 0x00000020
118 #define MAC_CR_TXEN 0x00000008
119 #define MAC_CR_RXEN 0x00000004
120 #define MAC_CR_RESERVED 0x7f404213
122 #define PHY_INT_ENERGYON 0x80
123 #define PHY_INT_AUTONEG_COMPLETE 0x40
124 #define PHY_INT_FAULT 0x20
125 #define PHY_INT_DOWN 0x10
126 #define PHY_INT_AUTONEG_LP 0x08
127 #define PHY_INT_PARFAULT 0x04
128 #define PHY_INT_AUTONEG_PAGE 0x02
130 #define GPT_TIMER_EN 0x20000000
169 uint32_t free_timer_start
;
179 uint32_t mac_mii_acc
;
180 uint32_t mac_mii_data
;
184 uint32_t phy_control
;
185 uint32_t phy_advertise
;
187 uint32_t phy_int_mask
;
194 LAN9118Packet tx_packet
;
196 int tx_status_fifo_used
;
197 int tx_status_fifo_head
;
198 uint32_t tx_status_fifo
[512];
200 int rx_status_fifo_size
;
201 int rx_status_fifo_used
;
202 int rx_status_fifo_head
;
203 uint32_t rx_status_fifo
[896];
207 uint32_t rx_fifo
[3360];
208 int rx_packet_size_head
;
209 int rx_packet_size_tail
;
210 int rx_packet_size
[1024];
217 static void lan9118_update(lan9118_state
*s
)
221 /* TODO: Implement FIFO level IRQs. */
222 level
= (s
->int_sts
& s
->int_en
) != 0;
224 s
->irq_cfg
|= IRQ_INT
;
226 s
->irq_cfg
&= ~IRQ_INT
;
228 if ((s
->irq_cfg
& IRQ_EN
) == 0) {
231 if ((s
->irq_cfg
& (IRQ_TYPE
| IRQ_POL
)) != (IRQ_TYPE
| IRQ_POL
)) {
232 /* Interrupt is active low unless we're configured as
233 * active-high polarity, push-pull type.
237 qemu_set_irq(s
->irq
, level
);
240 static void lan9118_mac_changed(lan9118_state
*s
)
242 qemu_format_nic_info_str(&s
->nic
->nc
, s
->conf
.macaddr
.a
);
245 static void lan9118_reload_eeprom(lan9118_state
*s
)
248 if (s
->eeprom
[0] != 0xa5) {
250 DPRINTF("MACADDR load failed\n");
253 for (i
= 0; i
< 6; i
++) {
254 s
->conf
.macaddr
.a
[i
] = s
->eeprom
[i
+ 1];
257 DPRINTF("MACADDR loaded from eeprom\n");
258 lan9118_mac_changed(s
);
261 static void phy_update_irq(lan9118_state
*s
)
263 if (s
->phy_int
& s
->phy_int_mask
) {
264 s
->int_sts
|= PHY_INT
;
266 s
->int_sts
&= ~PHY_INT
;
271 static void phy_update_link(lan9118_state
*s
)
273 /* Autonegotiation status mirrors link status. */
274 if (s
->nic
->nc
.link_down
) {
275 s
->phy_status
&= ~0x0024;
276 s
->phy_int
|= PHY_INT_DOWN
;
278 s
->phy_status
|= 0x0024;
279 s
->phy_int
|= PHY_INT_ENERGYON
;
280 s
->phy_int
|= PHY_INT_AUTONEG_COMPLETE
;
285 static void lan9118_set_link(VLANClientState
*nc
)
287 phy_update_link(DO_UPCAST(NICState
, nc
, nc
)->opaque
);
290 static void phy_reset(lan9118_state
*s
)
292 s
->phy_status
= 0x7809;
293 s
->phy_control
= 0x3000;
294 s
->phy_advertise
= 0x01e1;
300 static void lan9118_reset(DeviceState
*d
)
302 lan9118_state
*s
= FROM_SYSBUS(lan9118_state
, sysbus_from_qdev(d
));
303 s
->irq_cfg
&= (IRQ_TYPE
| IRQ_POL
);
306 s
->fifo_int
= 0x48000000;
309 s
->hw_cfg
= 0x00050000;
312 s
->txp
->fifo_used
= 0;
313 s
->txp
->state
= TX_IDLE
;
314 s
->txp
->cmd_a
= 0xffffffffu
;
315 s
->txp
->cmd_b
= 0xffffffffu
;
317 s
->txp
->fifo_used
= 0;
318 s
->tx_fifo_size
= 4608;
319 s
->tx_status_fifo_used
= 0;
320 s
->rx_status_fifo_size
= 704;
321 s
->rx_fifo_size
= 2640;
323 s
->rx_status_fifo_size
= 176;
324 s
->rx_status_fifo_used
= 0;
328 s
->rx_packet_size_tail
= s
->rx_packet_size_head
;
329 s
->rx_packet_size
[s
->rx_packet_size_head
] = 0;
335 s
->free_timer_start
= qemu_get_clock_ns(vm_clock
) / 40;
337 ptimer_stop(s
->timer
);
338 ptimer_set_count(s
->timer
, 0xffff);
341 s
->mac_cr
= MAC_CR_PRMS
;
350 s
->eeprom_writable
= 0;
351 lan9118_reload_eeprom(s
);
354 static int lan9118_can_receive(VLANClientState
*nc
)
359 static void rx_fifo_push(lan9118_state
*s
, uint32_t val
)
362 fifo_pos
= s
->rx_fifo_head
+ s
->rx_fifo_used
;
363 if (fifo_pos
>= s
->rx_fifo_size
)
364 fifo_pos
-= s
->rx_fifo_size
;
365 s
->rx_fifo
[fifo_pos
] = val
;
369 /* Return nonzero if the packet is accepted by the filter. */
370 static int lan9118_filter(lan9118_state
*s
, const uint8_t *addr
)
375 if (s
->mac_cr
& MAC_CR_PRMS
) {
378 if (addr
[0] == 0xff && addr
[1] == 0xff && addr
[2] == 0xff &&
379 addr
[3] == 0xff && addr
[4] == 0xff && addr
[5] == 0xff) {
380 return (s
->mac_cr
& MAC_CR_BCAST
) == 0;
383 multicast
= addr
[0] & 1;
384 if (multicast
&&s
->mac_cr
& MAC_CR_MCPAS
) {
387 if (multicast
? (s
->mac_cr
& MAC_CR_HPFILT
) == 0
388 : (s
->mac_cr
& MAC_CR_HO
) == 0) {
389 /* Exact matching. */
390 hash
= memcmp(addr
, s
->conf
.macaddr
.a
, 6);
391 if (s
->mac_cr
& MAC_CR_INVFILT
) {
398 hash
= (crc32(~0, addr
, 6) >> 26);
400 return (s
->mac_hashh
>> (hash
& 0x1f)) & 1;
402 return (s
->mac_hashl
>> (hash
& 0x1f)) & 1;
407 static ssize_t
lan9118_receive(VLANClientState
*nc
, const uint8_t *buf
,
410 lan9118_state
*s
= DO_UPCAST(NICState
, nc
, nc
)->opaque
;
420 if ((s
->mac_cr
& MAC_CR_RXEN
) == 0) {
424 if (size
>= 2048 || size
< 14) {
428 /* TODO: Implement FIFO overflow notification. */
429 if (s
->rx_status_fifo_used
== s
->rx_status_fifo_size
) {
433 filter
= lan9118_filter(s
, buf
);
434 if (!filter
&& (s
->mac_cr
& MAC_CR_RXALL
) == 0) {
438 offset
= (s
->rx_cfg
>> 8) & 0x1f;
440 fifo_len
= (size
+ n
+ 3) >> 2;
441 /* Add a word for the CRC. */
443 if (s
->rx_fifo_size
- s
->rx_fifo_used
< fifo_len
) {
447 DPRINTF("Got packet len:%d fifo:%d filter:%s\n",
448 (int)size
, fifo_len
, filter
? "pass" : "fail");
450 crc
= bswap32(crc32(~0, buf
, size
));
451 for (src_pos
= 0; src_pos
< size
; src_pos
++) {
452 val
= (val
>> 8) | ((uint32_t)buf
[src_pos
] << 24);
456 rx_fifo_push(s
, val
);
461 val
>>= ((4 - n
) * 8);
462 val
|= crc
<< (n
* 8);
463 rx_fifo_push(s
, val
);
464 val
= crc
>> ((4 - n
) * 8);
465 rx_fifo_push(s
, val
);
467 rx_fifo_push(s
, crc
);
469 n
= s
->rx_status_fifo_head
+ s
->rx_status_fifo_used
;
470 if (n
>= s
->rx_status_fifo_size
) {
471 n
-= s
->rx_status_fifo_size
;
473 s
->rx_packet_size
[s
->rx_packet_size_tail
] = fifo_len
;
474 s
->rx_packet_size_tail
= (s
->rx_packet_size_tail
+ 1023) & 1023;
475 s
->rx_status_fifo_used
++;
477 status
= (size
+ 4) << 16;
478 if (buf
[0] == 0xff && buf
[1] == 0xff && buf
[2] == 0xff &&
479 buf
[3] == 0xff && buf
[4] == 0xff && buf
[5] == 0xff) {
480 status
|= 0x00002000;
481 } else if (buf
[0] & 1) {
482 status
|= 0x00000400;
485 status
|= 0x40000000;
487 s
->rx_status_fifo
[n
] = status
;
489 if (s
->rx_status_fifo_used
> (s
->fifo_int
& 0xff)) {
490 s
->int_sts
|= RSFL_INT
;
497 static uint32_t rx_fifo_pop(lan9118_state
*s
)
502 if (s
->rxp_size
== 0 && s
->rxp_pad
== 0) {
503 s
->rxp_size
= s
->rx_packet_size
[s
->rx_packet_size_head
];
504 s
->rx_packet_size
[s
->rx_packet_size_head
] = 0;
505 if (s
->rxp_size
!= 0) {
506 s
->rx_packet_size_head
= (s
->rx_packet_size_head
+ 1023) & 1023;
507 s
->rxp_offset
= (s
->rx_cfg
>> 10) & 7;
508 n
= s
->rxp_offset
+ s
->rxp_size
;
509 switch (s
->rx_cfg
>> 30) {
521 DPRINTF("Pop packet size:%d offset:%d pad: %d\n",
522 s
->rxp_size
, s
->rxp_offset
, s
->rxp_pad
);
525 if (s
->rxp_offset
> 0) {
528 } else if (s
->rxp_size
> 0) {
530 val
= s
->rx_fifo
[s
->rx_fifo_head
++];
531 if (s
->rx_fifo_head
>= s
->rx_fifo_size
) {
532 s
->rx_fifo_head
-= s
->rx_fifo_size
;
535 } else if (s
->rxp_pad
> 0) {
539 DPRINTF("RX underflow\n");
540 s
->int_sts
|= RXE_INT
;
547 static void do_tx_packet(lan9118_state
*s
)
552 /* FIXME: Honor TX disable, and allow queueing of packets. */
553 if (s
->phy_control
& 0x4000) {
554 /* This assumes the receive routine doesn't touch the VLANClient. */
555 lan9118_receive(&s
->nic
->nc
, s
->txp
->data
, s
->txp
->len
);
557 qemu_send_packet(&s
->nic
->nc
, s
->txp
->data
, s
->txp
->len
);
559 s
->txp
->fifo_used
= 0;
561 if (s
->tx_status_fifo_used
== 512) {
562 /* Status FIFO full */
565 /* Add entry to status FIFO. */
566 status
= s
->txp
->cmd_b
& 0xffff0000u
;
567 DPRINTF("Sent packet tag:%04x len %d\n", status
>> 16, s
->txp
->len
);
568 n
= (s
->tx_status_fifo_head
+ s
->tx_status_fifo_used
) & 511;
569 s
->tx_status_fifo
[n
] = status
;
570 s
->tx_status_fifo_used
++;
571 if (s
->tx_status_fifo_used
== 512) {
572 s
->int_sts
|= TSFF_INT
;
573 /* TODO: Stop transmission. */
577 static uint32_t rx_status_fifo_pop(lan9118_state
*s
)
581 val
= s
->rx_status_fifo
[s
->rx_status_fifo_head
];
582 if (s
->rx_status_fifo_used
!= 0) {
583 s
->rx_status_fifo_used
--;
584 s
->rx_status_fifo_head
++;
585 if (s
->rx_status_fifo_head
>= s
->rx_status_fifo_size
) {
586 s
->rx_status_fifo_head
-= s
->rx_status_fifo_size
;
588 /* ??? What value should be returned when the FIFO is empty? */
589 DPRINTF("RX status pop 0x%08x\n", val
);
594 static uint32_t tx_status_fifo_pop(lan9118_state
*s
)
598 val
= s
->tx_status_fifo
[s
->tx_status_fifo_head
];
599 if (s
->tx_status_fifo_used
!= 0) {
600 s
->tx_status_fifo_used
--;
601 s
->tx_status_fifo_head
= (s
->tx_status_fifo_head
+ 1) & 511;
602 /* ??? What value should be returned when the FIFO is empty? */
607 static void tx_fifo_push(lan9118_state
*s
, uint32_t val
)
611 if (s
->txp
->fifo_used
== s
->tx_fifo_size
) {
612 s
->int_sts
|= TDFO_INT
;
615 switch (s
->txp
->state
) {
617 s
->txp
->cmd_a
= val
& 0x831f37ff;
619 s
->txp
->state
= TX_B
;
622 if (s
->txp
->cmd_a
& 0x2000) {
626 s
->txp
->buffer_size
= s
->txp
->cmd_a
& 0x7ff;
627 s
->txp
->offset
= (s
->txp
->cmd_a
>> 16) & 0x1f;
628 /* End alignment does not include command words. */
629 n
= (s
->txp
->buffer_size
+ s
->txp
->offset
+ 3) >> 2;
630 switch ((n
>> 24) & 3) {
643 DPRINTF("Block len:%d offset:%d pad:%d cmd %08x\n",
644 s
->txp
->buffer_size
, s
->txp
->offset
, s
->txp
->pad
,
646 s
->txp
->state
= TX_DATA
;
649 if (s
->txp
->offset
>= 4) {
653 if (s
->txp
->buffer_size
<= 0 && s
->txp
->pad
!= 0) {
657 while (s
->txp
->offset
) {
662 /* Documentation is somewhat unclear on the ordering of bytes
663 in FIFO words. Empirical results show it to be little-endian.
665 /* TODO: FIFO overflow checking. */
667 s
->txp
->data
[s
->txp
->len
] = val
& 0xff;
670 s
->txp
->buffer_size
--;
674 if (s
->txp
->buffer_size
<= 0 && s
->txp
->pad
== 0) {
675 if (s
->txp
->cmd_a
& 0x1000) {
678 if (s
->txp
->cmd_a
& 0x80000000) {
679 s
->int_sts
|= TX_IOC_INT
;
681 s
->txp
->state
= TX_IDLE
;
687 static uint32_t do_phy_read(lan9118_state
*s
, int reg
)
692 case 0: /* Basic Control */
693 return s
->phy_control
;
694 case 1: /* Basic Status */
695 return s
->phy_status
;
700 case 4: /* Auto-neg advertisment */
701 return s
->phy_advertise
;
702 case 5: /* Auto-neg Link Partner Ability */
704 case 6: /* Auto-neg Expansion */
706 /* TODO 17, 18, 27, 29, 30, 31 */
707 case 29: /* Interrupt source. */
712 case 30: /* Interrupt mask */
713 return s
->phy_int_mask
;
715 BADF("PHY read reg %d\n", reg
);
720 static void do_phy_write(lan9118_state
*s
, int reg
, uint32_t val
)
723 case 0: /* Basic Control */
728 s
->phy_control
= val
& 0x7980;
729 /* Complete autonegotiation immediately. */
731 s
->phy_status
|= 0x0020;
734 case 4: /* Auto-neg advertisment */
735 s
->phy_advertise
= (val
& 0x2d7f) | 0x80;
737 /* TODO 17, 18, 27, 31 */
738 case 30: /* Interrupt mask */
739 s
->phy_int_mask
= val
& 0xff;
743 BADF("PHY write reg %d = 0x%04x\n", reg
, val
);
747 static void do_mac_write(lan9118_state
*s
, int reg
, uint32_t val
)
751 if ((s
->mac_cr
& MAC_CR_RXEN
) != 0 && (val
& MAC_CR_RXEN
) == 0) {
752 s
->int_sts
|= RXSTOP_INT
;
754 s
->mac_cr
= val
& ~MAC_CR_RESERVED
;
755 DPRINTF("MAC_CR: %08x\n", val
);
758 s
->conf
.macaddr
.a
[4] = val
& 0xff;
759 s
->conf
.macaddr
.a
[5] = (val
>> 8) & 0xff;
760 lan9118_mac_changed(s
);
763 s
->conf
.macaddr
.a
[0] = val
& 0xff;
764 s
->conf
.macaddr
.a
[1] = (val
>> 8) & 0xff;
765 s
->conf
.macaddr
.a
[2] = (val
>> 16) & 0xff;
766 s
->conf
.macaddr
.a
[3] = (val
>> 24) & 0xff;
767 lan9118_mac_changed(s
);
776 s
->mac_mii_acc
= val
& 0xffc2;
778 DPRINTF("PHY write %d = 0x%04x\n",
779 (val
>> 6) & 0x1f, s
->mac_mii_data
);
780 do_phy_write(s
, (val
>> 6) & 0x1f, s
->mac_mii_data
);
782 s
->mac_mii_data
= do_phy_read(s
, (val
>> 6) & 0x1f);
783 DPRINTF("PHY read %d = 0x%04x\n",
784 (val
>> 6) & 0x1f, s
->mac_mii_data
);
788 s
->mac_mii_data
= val
& 0xffff;
791 s
->mac_flow
= val
& 0xffff0000;
794 /* Writing to this register changes a condition for
795 * FrameTooLong bit in rx_status. Since we do not set
796 * FrameTooLong anyway, just ignore write to this.
800 hw_error("lan9118: Unimplemented MAC register write: %d = 0x%x\n",
801 s
->mac_cmd
& 0xf, val
);
805 static uint32_t do_mac_read(lan9118_state
*s
, int reg
)
811 return s
->conf
.macaddr
.a
[4] | (s
->conf
.macaddr
.a
[5] << 8);
813 return s
->conf
.macaddr
.a
[0] | (s
->conf
.macaddr
.a
[1] << 8)
814 | (s
->conf
.macaddr
.a
[2] << 16) | (s
->conf
.macaddr
.a
[3] << 24);
822 return s
->mac_mii_acc
;
824 return s
->mac_mii_data
;
828 hw_error("lan9118: Unimplemented MAC register read: %d\n",
833 static void lan9118_eeprom_cmd(lan9118_state
*s
, int cmd
, int addr
)
835 s
->e2p_cmd
= (s
->e2p_cmd
& 0x10) | (cmd
<< 28) | addr
;
838 s
->e2p_data
= s
->eeprom
[addr
];
839 DPRINTF("EEPROM Read %d = 0x%02x\n", addr
, s
->e2p_data
);
842 s
->eeprom_writable
= 0;
843 DPRINTF("EEPROM Write Disable\n");
846 s
->eeprom_writable
= 1;
847 DPRINTF("EEPROM Write Enable\n");
850 if (s
->eeprom_writable
) {
851 s
->eeprom
[addr
] &= s
->e2p_data
;
852 DPRINTF("EEPROM Write %d = 0x%02x\n", addr
, s
->e2p_data
);
854 DPRINTF("EEPROM Write %d (ignored)\n", addr
);
858 if (s
->eeprom_writable
) {
859 for (addr
= 0; addr
< 128; addr
++) {
860 s
->eeprom
[addr
] &= s
->e2p_data
;
862 DPRINTF("EEPROM Write All 0x%02x\n", s
->e2p_data
);
864 DPRINTF("EEPROM Write All (ignored)\n");
867 if (s
->eeprom_writable
) {
868 s
->eeprom
[addr
] = 0xff;
869 DPRINTF("EEPROM Erase %d\n", addr
);
871 DPRINTF("EEPROM Erase %d (ignored)\n", addr
);
875 if (s
->eeprom_writable
) {
876 memset(s
->eeprom
, 0xff, 128);
877 DPRINTF("EEPROM Erase All\n");
879 DPRINTF("EEPROM Erase All (ignored)\n");
883 lan9118_reload_eeprom(s
);
888 static void lan9118_tick(void *opaque
)
890 lan9118_state
*s
= (lan9118_state
*)opaque
;
891 if (s
->int_en
& GPT_INT
) {
892 s
->int_sts
|= GPT_INT
;
897 static void lan9118_writel(void *opaque
, target_phys_addr_t offset
,
900 lan9118_state
*s
= (lan9118_state
*)opaque
;
903 //DPRINTF("Write reg 0x%02x = 0x%08x\n", (int)offset, val);
904 if (offset
>= 0x20 && offset
< 0x40) {
906 tx_fifo_push(s
, val
);
911 /* TODO: Implement interrupt deassertion intervals. */
912 val
&= (IRQ_EN
| IRQ_POL
| IRQ_TYPE
);
913 s
->irq_cfg
= (s
->irq_cfg
& IRQ_INT
) | val
;
919 s
->int_en
= val
& ~RESERVED_INT
;
920 s
->int_sts
|= val
& SW_INT
;
923 DPRINTF("FIFO INT levels %08x\n", val
);
930 s
->rx_status_fifo_used
= 0;
931 s
->rx_packet_size_tail
= s
->rx_packet_size_head
;
932 s
->rx_packet_size
[s
->rx_packet_size_head
] = 0;
934 s
->rx_cfg
= val
& 0xcfff1ff0;
938 s
->tx_status_fifo_used
= 0;
941 s
->txp
->state
= TX_IDLE
;
942 s
->txp
->fifo_used
= 0;
943 s
->txp
->cmd_a
= 0xffffffff;
950 lan9118_reset(&s
->busdev
.qdev
);
952 s
->hw_cfg
= val
& 0x003f300;
956 if (val
& 0x80000000) {
957 /* Skip forward to next packet. */
960 if (s
->rxp_size
== 0) {
961 /* Pop a word to start the next packet. */
966 s
->rx_fifo_head
+= s
->rxp_size
;
967 if (s
->rx_fifo_head
>= s
->rx_fifo_size
) {
968 s
->rx_fifo_head
-= s
->rx_fifo_size
;
976 s
->pmt_ctrl
&= ~0x34e;
977 s
->pmt_ctrl
|= (val
& 0x34e);
980 /* Probably just enabling LEDs. */
981 s
->gpio_cfg
= val
& 0x7777071f;
984 if ((s
->gpt_cfg
^ val
) & GPT_TIMER_EN
) {
985 if (val
& GPT_TIMER_EN
) {
986 ptimer_set_count(s
->timer
, val
& 0xffff);
987 ptimer_run(s
->timer
, 0);
989 ptimer_stop(s
->timer
);
990 ptimer_set_count(s
->timer
, 0xffff);
993 s
->gpt_cfg
= val
& (GPT_TIMER_EN
| 0xffff);
996 /* Ignored because we're in 32-bit mode. */
999 case CSR_MAC_CSR_CMD
:
1000 s
->mac_cmd
= val
& 0x4000000f;
1001 if (val
& 0x80000000) {
1002 if (val
& 0x40000000) {
1003 s
->mac_data
= do_mac_read(s
, val
& 0xf);
1004 DPRINTF("MAC read %d = 0x%08x\n", val
& 0xf, s
->mac_data
);
1006 DPRINTF("MAC write %d = 0x%08x\n", val
& 0xf, s
->mac_data
);
1007 do_mac_write(s
, val
& 0xf, s
->mac_data
);
1011 case CSR_MAC_CSR_DATA
:
1015 s
->afc_cfg
= val
& 0x00ffffff;
1018 lan9118_eeprom_cmd(s
, (val
>> 28) & 7, val
& 0x7f);
1021 s
->e2p_data
= val
& 0xff;
1025 hw_error("lan9118_write: Bad reg 0x%x = %x\n", (int)offset
, val
);
1031 static uint32_t lan9118_readl(void *opaque
, target_phys_addr_t offset
)
1033 lan9118_state
*s
= (lan9118_state
*)opaque
;
1035 //DPRINTF("Read reg 0x%02x\n", (int)offset);
1036 if (offset
< 0x20) {
1038 return rx_fifo_pop(s
);
1042 return rx_status_fifo_pop(s
);
1044 return s
->rx_status_fifo
[s
->tx_status_fifo_head
];
1046 return tx_status_fifo_pop(s
);
1048 return s
->tx_status_fifo
[s
->tx_status_fifo_head
];
1066 return s
->hw_cfg
| 0x4;
1067 case CSR_RX_DP_CTRL
:
1069 case CSR_RX_FIFO_INF
:
1070 return (s
->rx_status_fifo_used
<< 16) | (s
->rx_fifo_used
<< 2);
1071 case CSR_TX_FIFO_INF
:
1072 return (s
->tx_status_fifo_used
<< 16)
1073 | (s
->tx_fifo_size
- s
->txp
->fifo_used
);
1081 return ptimer_get_count(s
->timer
);
1083 return s
->word_swap
;
1085 return (qemu_get_clock_ns(vm_clock
) / 40) - s
->free_timer_start
;
1087 /* TODO: Implement dropped frames counter. */
1089 case CSR_MAC_CSR_CMD
:
1091 case CSR_MAC_CSR_DATA
:
1100 hw_error("lan9118_read: Bad reg 0x%x\n", (int)offset
);
1104 static CPUReadMemoryFunc
* const lan9118_readfn
[] = {
1110 static CPUWriteMemoryFunc
* const lan9118_writefn
[] = {
1116 static void lan9118_cleanup(VLANClientState
*nc
)
1118 lan9118_state
*s
= DO_UPCAST(NICState
, nc
, nc
)->opaque
;
1123 static NetClientInfo net_lan9118_info
= {
1124 .type
= NET_CLIENT_TYPE_NIC
,
1125 .size
= sizeof(NICState
),
1126 .can_receive
= lan9118_can_receive
,
1127 .receive
= lan9118_receive
,
1128 .cleanup
= lan9118_cleanup
,
1129 .link_status_changed
= lan9118_set_link
,
1132 static int lan9118_init1(SysBusDevice
*dev
)
1134 lan9118_state
*s
= FROM_SYSBUS(lan9118_state
, dev
);
1138 s
->mmio_index
= cpu_register_io_memory(lan9118_readfn
,
1140 DEVICE_NATIVE_ENDIAN
);
1141 sysbus_init_mmio(dev
, 0x100, s
->mmio_index
);
1142 sysbus_init_irq(dev
, &s
->irq
);
1143 qemu_macaddr_default_if_unset(&s
->conf
.macaddr
);
1145 s
->nic
= qemu_new_nic(&net_lan9118_info
, &s
->conf
,
1146 dev
->qdev
.info
->name
, dev
->qdev
.id
, s
);
1147 qemu_format_nic_info_str(&s
->nic
->nc
, s
->conf
.macaddr
.a
);
1148 s
->eeprom
[0] = 0xa5;
1149 for (i
= 0; i
< 6; i
++) {
1150 s
->eeprom
[i
+ 1] = s
->conf
.macaddr
.a
[i
];
1153 s
->txp
= &s
->tx_packet
;
1155 bh
= qemu_bh_new(lan9118_tick
, s
);
1156 s
->timer
= ptimer_init(bh
);
1157 ptimer_set_freq(s
->timer
, 10000);
1158 ptimer_set_limit(s
->timer
, 0xffff, 1);
1160 /* ??? Save/restore. */
1164 static SysBusDeviceInfo lan9118_info
= {
1165 .init
= lan9118_init1
,
1166 .qdev
.name
= "lan9118",
1167 .qdev
.size
= sizeof(lan9118_state
),
1168 .qdev
.reset
= lan9118_reset
,
1169 .qdev
.props
= (Property
[]) {
1170 DEFINE_NIC_PROPERTIES(lan9118_state
, conf
),
1171 DEFINE_PROP_END_OF_LIST(),
1175 static void lan9118_register_devices(void)
1177 sysbus_register_withprop(&lan9118_info
);
1180 /* Legacy helper function. Should go away when machine config files are
1182 void lan9118_init(NICInfo
*nd
, uint32_t base
, qemu_irq irq
)
1187 qemu_check_nic_model(nd
, "lan9118");
1188 dev
= qdev_create(NULL
, "lan9118");
1189 qdev_set_nic_properties(dev
, nd
);
1190 qdev_init_nofail(dev
);
1191 s
= sysbus_from_qdev(dev
);
1192 sysbus_mmio_map(s
, 0, base
);
1193 sysbus_connect_irq(s
, 0, irq
);
1196 device_init(lan9118_register_devices
)