2 * SMSC LAN9118 Ethernet interface emulation
4 * Copyright (c) 2009 CodeSourcery, LLC.
5 * Written by Paul Brook
7 * This code is licensed under the GNU GPL v2
9 * Contributions after 2012-01-13 are licensed under the terms of the
10 * GNU GPL, version 2 or (at your option) any later version.
21 //#define DEBUG_LAN9118
24 #define DPRINTF(fmt, ...) \
25 do { printf("lan9118: " fmt , ## __VA_ARGS__); } while (0)
26 #define BADF(fmt, ...) \
27 do { hw_error("lan9118: error: " fmt , ## __VA_ARGS__);} while (0)
29 #define DPRINTF(fmt, ...) do {} while(0)
30 #define BADF(fmt, ...) \
31 do { fprintf(stderr, "lan9118: error: " fmt , ## __VA_ARGS__);} while (0)
34 #define CSR_ID_REV 0x50
35 #define CSR_IRQ_CFG 0x54
36 #define CSR_INT_STS 0x58
37 #define CSR_INT_EN 0x5c
38 #define CSR_BYTE_TEST 0x64
39 #define CSR_FIFO_INT 0x68
40 #define CSR_RX_CFG 0x6c
41 #define CSR_TX_CFG 0x70
42 #define CSR_HW_CFG 0x74
43 #define CSR_RX_DP_CTRL 0x78
44 #define CSR_RX_FIFO_INF 0x7c
45 #define CSR_TX_FIFO_INF 0x80
46 #define CSR_PMT_CTRL 0x84
47 #define CSR_GPIO_CFG 0x88
48 #define CSR_GPT_CFG 0x8c
49 #define CSR_GPT_CNT 0x90
50 #define CSR_WORD_SWAP 0x98
51 #define CSR_FREE_RUN 0x9c
52 #define CSR_RX_DROP 0xa0
53 #define CSR_MAC_CSR_CMD 0xa4
54 #define CSR_MAC_CSR_DATA 0xa8
55 #define CSR_AFC_CFG 0xac
56 #define CSR_E2P_CMD 0xb0
57 #define CSR_E2P_DATA 0xb4
60 #define IRQ_INT 0x00001000
61 #define IRQ_EN 0x00000100
62 #define IRQ_POL 0x00000010
63 #define IRQ_TYPE 0x00000001
66 #define SW_INT 0x80000000
67 #define TXSTOP_INT 0x02000000
68 #define RXSTOP_INT 0x01000000
69 #define RXDFH_INT 0x00800000
70 #define TX_IOC_INT 0x00200000
71 #define RXD_INT 0x00100000
72 #define GPT_INT 0x00080000
73 #define PHY_INT 0x00040000
74 #define PME_INT 0x00020000
75 #define TXSO_INT 0x00010000
76 #define RWT_INT 0x00008000
77 #define RXE_INT 0x00004000
78 #define TXE_INT 0x00002000
79 #define TDFU_INT 0x00000800
80 #define TDFO_INT 0x00000400
81 #define TDFA_INT 0x00000200
82 #define TSFF_INT 0x00000100
83 #define TSFL_INT 0x00000080
84 #define RXDF_INT 0x00000040
85 #define RDFL_INT 0x00000020
86 #define RSFF_INT 0x00000010
87 #define RSFL_INT 0x00000008
88 #define GPIO2_INT 0x00000004
89 #define GPIO1_INT 0x00000002
90 #define GPIO0_INT 0x00000001
91 #define RESERVED_INT 0x7c001000
99 #define MAC_MII_DATA 7
101 #define MAC_VLAN1 9 /* TODO */
102 #define MAC_VLAN2 10 /* TODO */
103 #define MAC_WUFF 11 /* TODO */
104 #define MAC_WUCSR 12 /* TODO */
106 #define MAC_CR_RXALL 0x80000000
107 #define MAC_CR_RCVOWN 0x00800000
108 #define MAC_CR_LOOPBK 0x00200000
109 #define MAC_CR_FDPX 0x00100000
110 #define MAC_CR_MCPAS 0x00080000
111 #define MAC_CR_PRMS 0x00040000
112 #define MAC_CR_INVFILT 0x00020000
113 #define MAC_CR_PASSBAD 0x00010000
114 #define MAC_CR_HO 0x00008000
115 #define MAC_CR_HPFILT 0x00002000
116 #define MAC_CR_LCOLL 0x00001000
117 #define MAC_CR_BCAST 0x00000800
118 #define MAC_CR_DISRTY 0x00000400
119 #define MAC_CR_PADSTR 0x00000100
120 #define MAC_CR_BOLMT 0x000000c0
121 #define MAC_CR_DFCHK 0x00000020
122 #define MAC_CR_TXEN 0x00000008
123 #define MAC_CR_RXEN 0x00000004
124 #define MAC_CR_RESERVED 0x7f404213
126 #define PHY_INT_ENERGYON 0x80
127 #define PHY_INT_AUTONEG_COMPLETE 0x40
128 #define PHY_INT_FAULT 0x20
129 #define PHY_INT_DOWN 0x10
130 #define PHY_INT_AUTONEG_LP 0x08
131 #define PHY_INT_PARFAULT 0x04
132 #define PHY_INT_AUTONEG_PAGE 0x02
134 #define GPT_TIMER_EN 0x20000000
143 /* state is a tx_state but we can't put enums in VMStateDescriptions. */
155 static const VMStateDescription vmstate_lan9118_packet
= {
156 .name
= "lan9118_packet",
158 .minimum_version_id
= 1,
159 .fields
= (VMStateField
[]) {
160 VMSTATE_UINT32(state
, LAN9118Packet
),
161 VMSTATE_UINT32(cmd_a
, LAN9118Packet
),
162 VMSTATE_UINT32(cmd_b
, LAN9118Packet
),
163 VMSTATE_INT32(buffer_size
, LAN9118Packet
),
164 VMSTATE_INT32(offset
, LAN9118Packet
),
165 VMSTATE_INT32(pad
, LAN9118Packet
),
166 VMSTATE_INT32(fifo_used
, LAN9118Packet
),
167 VMSTATE_INT32(len
, LAN9118Packet
),
168 VMSTATE_UINT8_ARRAY(data
, LAN9118Packet
, 2048),
169 VMSTATE_END_OF_LIST()
192 uint32_t free_timer_start
;
202 uint32_t mac_mii_acc
;
203 uint32_t mac_mii_data
;
207 uint32_t phy_control
;
208 uint32_t phy_advertise
;
210 uint32_t phy_int_mask
;
212 int32_t eeprom_writable
;
215 int32_t tx_fifo_size
;
217 LAN9118Packet tx_packet
;
219 int32_t tx_status_fifo_used
;
220 int32_t tx_status_fifo_head
;
221 uint32_t tx_status_fifo
[512];
223 int32_t rx_status_fifo_size
;
224 int32_t rx_status_fifo_used
;
225 int32_t rx_status_fifo_head
;
226 uint32_t rx_status_fifo
[896];
227 int32_t rx_fifo_size
;
228 int32_t rx_fifo_used
;
229 int32_t rx_fifo_head
;
230 uint32_t rx_fifo
[3360];
231 int32_t rx_packet_size_head
;
232 int32_t rx_packet_size_tail
;
233 int32_t rx_packet_size
[1024];
240 static const VMStateDescription vmstate_lan9118
= {
243 .minimum_version_id
= 1,
244 .fields
= (VMStateField
[]) {
245 VMSTATE_PTIMER(timer
, lan9118_state
),
246 VMSTATE_UINT32(irq_cfg
, lan9118_state
),
247 VMSTATE_UINT32(int_sts
, lan9118_state
),
248 VMSTATE_UINT32(int_en
, lan9118_state
),
249 VMSTATE_UINT32(fifo_int
, lan9118_state
),
250 VMSTATE_UINT32(rx_cfg
, lan9118_state
),
251 VMSTATE_UINT32(tx_cfg
, lan9118_state
),
252 VMSTATE_UINT32(hw_cfg
, lan9118_state
),
253 VMSTATE_UINT32(pmt_ctrl
, lan9118_state
),
254 VMSTATE_UINT32(gpio_cfg
, lan9118_state
),
255 VMSTATE_UINT32(gpt_cfg
, lan9118_state
),
256 VMSTATE_UINT32(word_swap
, lan9118_state
),
257 VMSTATE_UINT32(free_timer_start
, lan9118_state
),
258 VMSTATE_UINT32(mac_cmd
, lan9118_state
),
259 VMSTATE_UINT32(mac_data
, lan9118_state
),
260 VMSTATE_UINT32(afc_cfg
, lan9118_state
),
261 VMSTATE_UINT32(e2p_cmd
, lan9118_state
),
262 VMSTATE_UINT32(e2p_data
, lan9118_state
),
263 VMSTATE_UINT32(mac_cr
, lan9118_state
),
264 VMSTATE_UINT32(mac_hashh
, lan9118_state
),
265 VMSTATE_UINT32(mac_hashl
, lan9118_state
),
266 VMSTATE_UINT32(mac_mii_acc
, lan9118_state
),
267 VMSTATE_UINT32(mac_mii_data
, lan9118_state
),
268 VMSTATE_UINT32(mac_flow
, lan9118_state
),
269 VMSTATE_UINT32(phy_status
, lan9118_state
),
270 VMSTATE_UINT32(phy_control
, lan9118_state
),
271 VMSTATE_UINT32(phy_advertise
, lan9118_state
),
272 VMSTATE_UINT32(phy_int
, lan9118_state
),
273 VMSTATE_UINT32(phy_int_mask
, lan9118_state
),
274 VMSTATE_INT32(eeprom_writable
, lan9118_state
),
275 VMSTATE_UINT8_ARRAY(eeprom
, lan9118_state
, 128),
276 VMSTATE_INT32(tx_fifo_size
, lan9118_state
),
277 /* txp always points at tx_packet so need not be saved */
278 VMSTATE_STRUCT(tx_packet
, lan9118_state
, 0,
279 vmstate_lan9118_packet
, LAN9118Packet
),
280 VMSTATE_INT32(tx_status_fifo_used
, lan9118_state
),
281 VMSTATE_INT32(tx_status_fifo_head
, lan9118_state
),
282 VMSTATE_UINT32_ARRAY(tx_status_fifo
, lan9118_state
, 512),
283 VMSTATE_INT32(rx_status_fifo_size
, lan9118_state
),
284 VMSTATE_INT32(rx_status_fifo_used
, lan9118_state
),
285 VMSTATE_INT32(rx_status_fifo_head
, lan9118_state
),
286 VMSTATE_UINT32_ARRAY(rx_status_fifo
, lan9118_state
, 896),
287 VMSTATE_INT32(rx_fifo_size
, lan9118_state
),
288 VMSTATE_INT32(rx_fifo_used
, lan9118_state
),
289 VMSTATE_INT32(rx_fifo_head
, lan9118_state
),
290 VMSTATE_UINT32_ARRAY(rx_fifo
, lan9118_state
, 3360),
291 VMSTATE_INT32(rx_packet_size_head
, lan9118_state
),
292 VMSTATE_INT32(rx_packet_size_tail
, lan9118_state
),
293 VMSTATE_INT32_ARRAY(rx_packet_size
, lan9118_state
, 1024),
294 VMSTATE_INT32(rxp_offset
, lan9118_state
),
295 VMSTATE_INT32(rxp_size
, lan9118_state
),
296 VMSTATE_INT32(rxp_pad
, lan9118_state
),
297 VMSTATE_END_OF_LIST()
301 static void lan9118_update(lan9118_state
*s
)
305 /* TODO: Implement FIFO level IRQs. */
306 level
= (s
->int_sts
& s
->int_en
) != 0;
308 s
->irq_cfg
|= IRQ_INT
;
310 s
->irq_cfg
&= ~IRQ_INT
;
312 if ((s
->irq_cfg
& IRQ_EN
) == 0) {
315 if ((s
->irq_cfg
& (IRQ_TYPE
| IRQ_POL
)) != (IRQ_TYPE
| IRQ_POL
)) {
316 /* Interrupt is active low unless we're configured as
317 * active-high polarity, push-pull type.
321 qemu_set_irq(s
->irq
, level
);
324 static void lan9118_mac_changed(lan9118_state
*s
)
326 qemu_format_nic_info_str(&s
->nic
->nc
, s
->conf
.macaddr
.a
);
329 static void lan9118_reload_eeprom(lan9118_state
*s
)
332 if (s
->eeprom
[0] != 0xa5) {
334 DPRINTF("MACADDR load failed\n");
337 for (i
= 0; i
< 6; i
++) {
338 s
->conf
.macaddr
.a
[i
] = s
->eeprom
[i
+ 1];
341 DPRINTF("MACADDR loaded from eeprom\n");
342 lan9118_mac_changed(s
);
345 static void phy_update_irq(lan9118_state
*s
)
347 if (s
->phy_int
& s
->phy_int_mask
) {
348 s
->int_sts
|= PHY_INT
;
350 s
->int_sts
&= ~PHY_INT
;
355 static void phy_update_link(lan9118_state
*s
)
357 /* Autonegotiation status mirrors link status. */
358 if (s
->nic
->nc
.link_down
) {
359 s
->phy_status
&= ~0x0024;
360 s
->phy_int
|= PHY_INT_DOWN
;
362 s
->phy_status
|= 0x0024;
363 s
->phy_int
|= PHY_INT_ENERGYON
;
364 s
->phy_int
|= PHY_INT_AUTONEG_COMPLETE
;
369 static void lan9118_set_link(VLANClientState
*nc
)
371 phy_update_link(DO_UPCAST(NICState
, nc
, nc
)->opaque
);
374 static void phy_reset(lan9118_state
*s
)
376 s
->phy_status
= 0x7809;
377 s
->phy_control
= 0x3000;
378 s
->phy_advertise
= 0x01e1;
384 static void lan9118_reset(DeviceState
*d
)
386 lan9118_state
*s
= FROM_SYSBUS(lan9118_state
, sysbus_from_qdev(d
));
387 s
->irq_cfg
&= (IRQ_TYPE
| IRQ_POL
);
390 s
->fifo_int
= 0x48000000;
393 s
->hw_cfg
= 0x00050000;
396 s
->txp
->fifo_used
= 0;
397 s
->txp
->state
= TX_IDLE
;
398 s
->txp
->cmd_a
= 0xffffffffu
;
399 s
->txp
->cmd_b
= 0xffffffffu
;
401 s
->txp
->fifo_used
= 0;
402 s
->tx_fifo_size
= 4608;
403 s
->tx_status_fifo_used
= 0;
404 s
->rx_status_fifo_size
= 704;
405 s
->rx_fifo_size
= 2640;
407 s
->rx_status_fifo_size
= 176;
408 s
->rx_status_fifo_used
= 0;
412 s
->rx_packet_size_tail
= s
->rx_packet_size_head
;
413 s
->rx_packet_size
[s
->rx_packet_size_head
] = 0;
419 s
->free_timer_start
= qemu_get_clock_ns(vm_clock
) / 40;
421 ptimer_stop(s
->timer
);
422 ptimer_set_count(s
->timer
, 0xffff);
425 s
->mac_cr
= MAC_CR_PRMS
;
434 s
->eeprom_writable
= 0;
435 lan9118_reload_eeprom(s
);
438 static int lan9118_can_receive(VLANClientState
*nc
)
443 static void rx_fifo_push(lan9118_state
*s
, uint32_t val
)
446 fifo_pos
= s
->rx_fifo_head
+ s
->rx_fifo_used
;
447 if (fifo_pos
>= s
->rx_fifo_size
)
448 fifo_pos
-= s
->rx_fifo_size
;
449 s
->rx_fifo
[fifo_pos
] = val
;
453 /* Return nonzero if the packet is accepted by the filter. */
454 static int lan9118_filter(lan9118_state
*s
, const uint8_t *addr
)
459 if (s
->mac_cr
& MAC_CR_PRMS
) {
462 if (addr
[0] == 0xff && addr
[1] == 0xff && addr
[2] == 0xff &&
463 addr
[3] == 0xff && addr
[4] == 0xff && addr
[5] == 0xff) {
464 return (s
->mac_cr
& MAC_CR_BCAST
) == 0;
467 multicast
= addr
[0] & 1;
468 if (multicast
&&s
->mac_cr
& MAC_CR_MCPAS
) {
471 if (multicast
? (s
->mac_cr
& MAC_CR_HPFILT
) == 0
472 : (s
->mac_cr
& MAC_CR_HO
) == 0) {
473 /* Exact matching. */
474 hash
= memcmp(addr
, s
->conf
.macaddr
.a
, 6);
475 if (s
->mac_cr
& MAC_CR_INVFILT
) {
482 hash
= (crc32(~0, addr
, 6) >> 26);
484 return (s
->mac_hashh
>> (hash
& 0x1f)) & 1;
486 return (s
->mac_hashl
>> (hash
& 0x1f)) & 1;
491 static ssize_t
lan9118_receive(VLANClientState
*nc
, const uint8_t *buf
,
494 lan9118_state
*s
= DO_UPCAST(NICState
, nc
, nc
)->opaque
;
504 if ((s
->mac_cr
& MAC_CR_RXEN
) == 0) {
508 if (size
>= 2048 || size
< 14) {
512 /* TODO: Implement FIFO overflow notification. */
513 if (s
->rx_status_fifo_used
== s
->rx_status_fifo_size
) {
517 filter
= lan9118_filter(s
, buf
);
518 if (!filter
&& (s
->mac_cr
& MAC_CR_RXALL
) == 0) {
522 offset
= (s
->rx_cfg
>> 8) & 0x1f;
524 fifo_len
= (size
+ n
+ 3) >> 2;
525 /* Add a word for the CRC. */
527 if (s
->rx_fifo_size
- s
->rx_fifo_used
< fifo_len
) {
531 DPRINTF("Got packet len:%d fifo:%d filter:%s\n",
532 (int)size
, fifo_len
, filter
? "pass" : "fail");
534 crc
= bswap32(crc32(~0, buf
, size
));
535 for (src_pos
= 0; src_pos
< size
; src_pos
++) {
536 val
= (val
>> 8) | ((uint32_t)buf
[src_pos
] << 24);
540 rx_fifo_push(s
, val
);
545 val
>>= ((4 - n
) * 8);
546 val
|= crc
<< (n
* 8);
547 rx_fifo_push(s
, val
);
548 val
= crc
>> ((4 - n
) * 8);
549 rx_fifo_push(s
, val
);
551 rx_fifo_push(s
, crc
);
553 n
= s
->rx_status_fifo_head
+ s
->rx_status_fifo_used
;
554 if (n
>= s
->rx_status_fifo_size
) {
555 n
-= s
->rx_status_fifo_size
;
557 s
->rx_packet_size
[s
->rx_packet_size_tail
] = fifo_len
;
558 s
->rx_packet_size_tail
= (s
->rx_packet_size_tail
+ 1023) & 1023;
559 s
->rx_status_fifo_used
++;
561 status
= (size
+ 4) << 16;
562 if (buf
[0] == 0xff && buf
[1] == 0xff && buf
[2] == 0xff &&
563 buf
[3] == 0xff && buf
[4] == 0xff && buf
[5] == 0xff) {
564 status
|= 0x00002000;
565 } else if (buf
[0] & 1) {
566 status
|= 0x00000400;
569 status
|= 0x40000000;
571 s
->rx_status_fifo
[n
] = status
;
573 if (s
->rx_status_fifo_used
> (s
->fifo_int
& 0xff)) {
574 s
->int_sts
|= RSFL_INT
;
581 static uint32_t rx_fifo_pop(lan9118_state
*s
)
586 if (s
->rxp_size
== 0 && s
->rxp_pad
== 0) {
587 s
->rxp_size
= s
->rx_packet_size
[s
->rx_packet_size_head
];
588 s
->rx_packet_size
[s
->rx_packet_size_head
] = 0;
589 if (s
->rxp_size
!= 0) {
590 s
->rx_packet_size_head
= (s
->rx_packet_size_head
+ 1023) & 1023;
591 s
->rxp_offset
= (s
->rx_cfg
>> 10) & 7;
592 n
= s
->rxp_offset
+ s
->rxp_size
;
593 switch (s
->rx_cfg
>> 30) {
605 DPRINTF("Pop packet size:%d offset:%d pad: %d\n",
606 s
->rxp_size
, s
->rxp_offset
, s
->rxp_pad
);
609 if (s
->rxp_offset
> 0) {
612 } else if (s
->rxp_size
> 0) {
614 val
= s
->rx_fifo
[s
->rx_fifo_head
++];
615 if (s
->rx_fifo_head
>= s
->rx_fifo_size
) {
616 s
->rx_fifo_head
-= s
->rx_fifo_size
;
619 } else if (s
->rxp_pad
> 0) {
623 DPRINTF("RX underflow\n");
624 s
->int_sts
|= RXE_INT
;
631 static void do_tx_packet(lan9118_state
*s
)
636 /* FIXME: Honor TX disable, and allow queueing of packets. */
637 if (s
->phy_control
& 0x4000) {
638 /* This assumes the receive routine doesn't touch the VLANClient. */
639 lan9118_receive(&s
->nic
->nc
, s
->txp
->data
, s
->txp
->len
);
641 qemu_send_packet(&s
->nic
->nc
, s
->txp
->data
, s
->txp
->len
);
643 s
->txp
->fifo_used
= 0;
645 if (s
->tx_status_fifo_used
== 512) {
646 /* Status FIFO full */
649 /* Add entry to status FIFO. */
650 status
= s
->txp
->cmd_b
& 0xffff0000u
;
651 DPRINTF("Sent packet tag:%04x len %d\n", status
>> 16, s
->txp
->len
);
652 n
= (s
->tx_status_fifo_head
+ s
->tx_status_fifo_used
) & 511;
653 s
->tx_status_fifo
[n
] = status
;
654 s
->tx_status_fifo_used
++;
655 if (s
->tx_status_fifo_used
== 512) {
656 s
->int_sts
|= TSFF_INT
;
657 /* TODO: Stop transmission. */
661 static uint32_t rx_status_fifo_pop(lan9118_state
*s
)
665 val
= s
->rx_status_fifo
[s
->rx_status_fifo_head
];
666 if (s
->rx_status_fifo_used
!= 0) {
667 s
->rx_status_fifo_used
--;
668 s
->rx_status_fifo_head
++;
669 if (s
->rx_status_fifo_head
>= s
->rx_status_fifo_size
) {
670 s
->rx_status_fifo_head
-= s
->rx_status_fifo_size
;
672 /* ??? What value should be returned when the FIFO is empty? */
673 DPRINTF("RX status pop 0x%08x\n", val
);
678 static uint32_t tx_status_fifo_pop(lan9118_state
*s
)
682 val
= s
->tx_status_fifo
[s
->tx_status_fifo_head
];
683 if (s
->tx_status_fifo_used
!= 0) {
684 s
->tx_status_fifo_used
--;
685 s
->tx_status_fifo_head
= (s
->tx_status_fifo_head
+ 1) & 511;
686 /* ??? What value should be returned when the FIFO is empty? */
691 static void tx_fifo_push(lan9118_state
*s
, uint32_t val
)
695 if (s
->txp
->fifo_used
== s
->tx_fifo_size
) {
696 s
->int_sts
|= TDFO_INT
;
699 switch (s
->txp
->state
) {
701 s
->txp
->cmd_a
= val
& 0x831f37ff;
703 s
->txp
->state
= TX_B
;
706 if (s
->txp
->cmd_a
& 0x2000) {
710 s
->txp
->buffer_size
= s
->txp
->cmd_a
& 0x7ff;
711 s
->txp
->offset
= (s
->txp
->cmd_a
>> 16) & 0x1f;
712 /* End alignment does not include command words. */
713 n
= (s
->txp
->buffer_size
+ s
->txp
->offset
+ 3) >> 2;
714 switch ((n
>> 24) & 3) {
727 DPRINTF("Block len:%d offset:%d pad:%d cmd %08x\n",
728 s
->txp
->buffer_size
, s
->txp
->offset
, s
->txp
->pad
,
730 s
->txp
->state
= TX_DATA
;
733 if (s
->txp
->offset
>= 4) {
737 if (s
->txp
->buffer_size
<= 0 && s
->txp
->pad
!= 0) {
741 while (s
->txp
->offset
) {
746 /* Documentation is somewhat unclear on the ordering of bytes
747 in FIFO words. Empirical results show it to be little-endian.
749 /* TODO: FIFO overflow checking. */
751 s
->txp
->data
[s
->txp
->len
] = val
& 0xff;
754 s
->txp
->buffer_size
--;
758 if (s
->txp
->buffer_size
<= 0 && s
->txp
->pad
== 0) {
759 if (s
->txp
->cmd_a
& 0x1000) {
762 if (s
->txp
->cmd_a
& 0x80000000) {
763 s
->int_sts
|= TX_IOC_INT
;
765 s
->txp
->state
= TX_IDLE
;
771 static uint32_t do_phy_read(lan9118_state
*s
, int reg
)
776 case 0: /* Basic Control */
777 return s
->phy_control
;
778 case 1: /* Basic Status */
779 return s
->phy_status
;
784 case 4: /* Auto-neg advertisement */
785 return s
->phy_advertise
;
786 case 5: /* Auto-neg Link Partner Ability */
788 case 6: /* Auto-neg Expansion */
790 /* TODO 17, 18, 27, 29, 30, 31 */
791 case 29: /* Interrupt source. */
796 case 30: /* Interrupt mask */
797 return s
->phy_int_mask
;
799 BADF("PHY read reg %d\n", reg
);
804 static void do_phy_write(lan9118_state
*s
, int reg
, uint32_t val
)
807 case 0: /* Basic Control */
812 s
->phy_control
= val
& 0x7980;
813 /* Complete autonegotiation immediately. */
815 s
->phy_status
|= 0x0020;
818 case 4: /* Auto-neg advertisement */
819 s
->phy_advertise
= (val
& 0x2d7f) | 0x80;
821 /* TODO 17, 18, 27, 31 */
822 case 30: /* Interrupt mask */
823 s
->phy_int_mask
= val
& 0xff;
827 BADF("PHY write reg %d = 0x%04x\n", reg
, val
);
831 static void do_mac_write(lan9118_state
*s
, int reg
, uint32_t val
)
835 if ((s
->mac_cr
& MAC_CR_RXEN
) != 0 && (val
& MAC_CR_RXEN
) == 0) {
836 s
->int_sts
|= RXSTOP_INT
;
838 s
->mac_cr
= val
& ~MAC_CR_RESERVED
;
839 DPRINTF("MAC_CR: %08x\n", val
);
842 s
->conf
.macaddr
.a
[4] = val
& 0xff;
843 s
->conf
.macaddr
.a
[5] = (val
>> 8) & 0xff;
844 lan9118_mac_changed(s
);
847 s
->conf
.macaddr
.a
[0] = val
& 0xff;
848 s
->conf
.macaddr
.a
[1] = (val
>> 8) & 0xff;
849 s
->conf
.macaddr
.a
[2] = (val
>> 16) & 0xff;
850 s
->conf
.macaddr
.a
[3] = (val
>> 24) & 0xff;
851 lan9118_mac_changed(s
);
860 s
->mac_mii_acc
= val
& 0xffc2;
862 DPRINTF("PHY write %d = 0x%04x\n",
863 (val
>> 6) & 0x1f, s
->mac_mii_data
);
864 do_phy_write(s
, (val
>> 6) & 0x1f, s
->mac_mii_data
);
866 s
->mac_mii_data
= do_phy_read(s
, (val
>> 6) & 0x1f);
867 DPRINTF("PHY read %d = 0x%04x\n",
868 (val
>> 6) & 0x1f, s
->mac_mii_data
);
872 s
->mac_mii_data
= val
& 0xffff;
875 s
->mac_flow
= val
& 0xffff0000;
878 /* Writing to this register changes a condition for
879 * FrameTooLong bit in rx_status. Since we do not set
880 * FrameTooLong anyway, just ignore write to this.
884 hw_error("lan9118: Unimplemented MAC register write: %d = 0x%x\n",
885 s
->mac_cmd
& 0xf, val
);
889 static uint32_t do_mac_read(lan9118_state
*s
, int reg
)
895 return s
->conf
.macaddr
.a
[4] | (s
->conf
.macaddr
.a
[5] << 8);
897 return s
->conf
.macaddr
.a
[0] | (s
->conf
.macaddr
.a
[1] << 8)
898 | (s
->conf
.macaddr
.a
[2] << 16) | (s
->conf
.macaddr
.a
[3] << 24);
906 return s
->mac_mii_acc
;
908 return s
->mac_mii_data
;
912 hw_error("lan9118: Unimplemented MAC register read: %d\n",
917 static void lan9118_eeprom_cmd(lan9118_state
*s
, int cmd
, int addr
)
919 s
->e2p_cmd
= (s
->e2p_cmd
& 0x10) | (cmd
<< 28) | addr
;
922 s
->e2p_data
= s
->eeprom
[addr
];
923 DPRINTF("EEPROM Read %d = 0x%02x\n", addr
, s
->e2p_data
);
926 s
->eeprom_writable
= 0;
927 DPRINTF("EEPROM Write Disable\n");
930 s
->eeprom_writable
= 1;
931 DPRINTF("EEPROM Write Enable\n");
934 if (s
->eeprom_writable
) {
935 s
->eeprom
[addr
] &= s
->e2p_data
;
936 DPRINTF("EEPROM Write %d = 0x%02x\n", addr
, s
->e2p_data
);
938 DPRINTF("EEPROM Write %d (ignored)\n", addr
);
942 if (s
->eeprom_writable
) {
943 for (addr
= 0; addr
< 128; addr
++) {
944 s
->eeprom
[addr
] &= s
->e2p_data
;
946 DPRINTF("EEPROM Write All 0x%02x\n", s
->e2p_data
);
948 DPRINTF("EEPROM Write All (ignored)\n");
952 if (s
->eeprom_writable
) {
953 s
->eeprom
[addr
] = 0xff;
954 DPRINTF("EEPROM Erase %d\n", addr
);
956 DPRINTF("EEPROM Erase %d (ignored)\n", addr
);
960 if (s
->eeprom_writable
) {
961 memset(s
->eeprom
, 0xff, 128);
962 DPRINTF("EEPROM Erase All\n");
964 DPRINTF("EEPROM Erase All (ignored)\n");
968 lan9118_reload_eeprom(s
);
973 static void lan9118_tick(void *opaque
)
975 lan9118_state
*s
= (lan9118_state
*)opaque
;
976 if (s
->int_en
& GPT_INT
) {
977 s
->int_sts
|= GPT_INT
;
982 static void lan9118_writel(void *opaque
, target_phys_addr_t offset
,
983 uint64_t val
, unsigned size
)
985 lan9118_state
*s
= (lan9118_state
*)opaque
;
988 //DPRINTF("Write reg 0x%02x = 0x%08x\n", (int)offset, val);
989 if (offset
>= 0x20 && offset
< 0x40) {
991 tx_fifo_push(s
, val
);
996 /* TODO: Implement interrupt deassertion intervals. */
997 val
&= (IRQ_EN
| IRQ_POL
| IRQ_TYPE
);
998 s
->irq_cfg
= (s
->irq_cfg
& IRQ_INT
) | val
;
1004 s
->int_en
= val
& ~RESERVED_INT
;
1005 s
->int_sts
|= val
& SW_INT
;
1008 DPRINTF("FIFO INT levels %08x\n", val
);
1014 s
->rx_fifo_used
= 0;
1015 s
->rx_status_fifo_used
= 0;
1016 s
->rx_packet_size_tail
= s
->rx_packet_size_head
;
1017 s
->rx_packet_size
[s
->rx_packet_size_head
] = 0;
1019 s
->rx_cfg
= val
& 0xcfff1ff0;
1023 s
->tx_status_fifo_used
= 0;
1026 s
->txp
->state
= TX_IDLE
;
1027 s
->txp
->fifo_used
= 0;
1028 s
->txp
->cmd_a
= 0xffffffff;
1030 s
->tx_cfg
= val
& 6;
1035 lan9118_reset(&s
->busdev
.qdev
);
1037 s
->hw_cfg
= val
& 0x003f300;
1040 case CSR_RX_DP_CTRL
:
1041 if (val
& 0x80000000) {
1042 /* Skip forward to next packet. */
1045 if (s
->rxp_size
== 0) {
1046 /* Pop a word to start the next packet. */
1051 s
->rx_fifo_head
+= s
->rxp_size
;
1052 if (s
->rx_fifo_head
>= s
->rx_fifo_size
) {
1053 s
->rx_fifo_head
-= s
->rx_fifo_size
;
1061 s
->pmt_ctrl
&= ~0x34e;
1062 s
->pmt_ctrl
|= (val
& 0x34e);
1065 /* Probably just enabling LEDs. */
1066 s
->gpio_cfg
= val
& 0x7777071f;
1069 if ((s
->gpt_cfg
^ val
) & GPT_TIMER_EN
) {
1070 if (val
& GPT_TIMER_EN
) {
1071 ptimer_set_count(s
->timer
, val
& 0xffff);
1072 ptimer_run(s
->timer
, 0);
1074 ptimer_stop(s
->timer
);
1075 ptimer_set_count(s
->timer
, 0xffff);
1078 s
->gpt_cfg
= val
& (GPT_TIMER_EN
| 0xffff);
1081 /* Ignored because we're in 32-bit mode. */
1084 case CSR_MAC_CSR_CMD
:
1085 s
->mac_cmd
= val
& 0x4000000f;
1086 if (val
& 0x80000000) {
1087 if (val
& 0x40000000) {
1088 s
->mac_data
= do_mac_read(s
, val
& 0xf);
1089 DPRINTF("MAC read %d = 0x%08x\n", val
& 0xf, s
->mac_data
);
1091 DPRINTF("MAC write %d = 0x%08x\n", val
& 0xf, s
->mac_data
);
1092 do_mac_write(s
, val
& 0xf, s
->mac_data
);
1096 case CSR_MAC_CSR_DATA
:
1100 s
->afc_cfg
= val
& 0x00ffffff;
1103 lan9118_eeprom_cmd(s
, (val
>> 28) & 7, val
& 0x7f);
1106 s
->e2p_data
= val
& 0xff;
1110 hw_error("lan9118_write: Bad reg 0x%x = %x\n", (int)offset
, (int)val
);
1116 static uint64_t lan9118_readl(void *opaque
, target_phys_addr_t offset
,
1119 lan9118_state
*s
= (lan9118_state
*)opaque
;
1121 //DPRINTF("Read reg 0x%02x\n", (int)offset);
1122 if (offset
< 0x20) {
1124 return rx_fifo_pop(s
);
1128 return rx_status_fifo_pop(s
);
1130 return s
->rx_status_fifo
[s
->tx_status_fifo_head
];
1132 return tx_status_fifo_pop(s
);
1134 return s
->tx_status_fifo
[s
->tx_status_fifo_head
];
1152 return s
->hw_cfg
| 0x4;
1153 case CSR_RX_DP_CTRL
:
1155 case CSR_RX_FIFO_INF
:
1156 return (s
->rx_status_fifo_used
<< 16) | (s
->rx_fifo_used
<< 2);
1157 case CSR_TX_FIFO_INF
:
1158 return (s
->tx_status_fifo_used
<< 16)
1159 | (s
->tx_fifo_size
- s
->txp
->fifo_used
);
1167 return ptimer_get_count(s
->timer
);
1169 return s
->word_swap
;
1171 return (qemu_get_clock_ns(vm_clock
) / 40) - s
->free_timer_start
;
1173 /* TODO: Implement dropped frames counter. */
1175 case CSR_MAC_CSR_CMD
:
1177 case CSR_MAC_CSR_DATA
:
1186 hw_error("lan9118_read: Bad reg 0x%x\n", (int)offset
);
1190 static const MemoryRegionOps lan9118_mem_ops
= {
1191 .read
= lan9118_readl
,
1192 .write
= lan9118_writel
,
1193 .endianness
= DEVICE_NATIVE_ENDIAN
,
1196 static void lan9118_cleanup(VLANClientState
*nc
)
1198 lan9118_state
*s
= DO_UPCAST(NICState
, nc
, nc
)->opaque
;
1203 static NetClientInfo net_lan9118_info
= {
1204 .type
= NET_CLIENT_TYPE_NIC
,
1205 .size
= sizeof(NICState
),
1206 .can_receive
= lan9118_can_receive
,
1207 .receive
= lan9118_receive
,
1208 .cleanup
= lan9118_cleanup
,
1209 .link_status_changed
= lan9118_set_link
,
1212 static int lan9118_init1(SysBusDevice
*dev
)
1214 lan9118_state
*s
= FROM_SYSBUS(lan9118_state
, dev
);
1218 memory_region_init_io(&s
->mmio
, &lan9118_mem_ops
, s
, "lan9118-mmio", 0x100);
1219 sysbus_init_mmio(dev
, &s
->mmio
);
1220 sysbus_init_irq(dev
, &s
->irq
);
1221 qemu_macaddr_default_if_unset(&s
->conf
.macaddr
);
1223 s
->nic
= qemu_new_nic(&net_lan9118_info
, &s
->conf
,
1224 object_get_typename(OBJECT(dev
)), dev
->qdev
.id
, s
);
1225 qemu_format_nic_info_str(&s
->nic
->nc
, s
->conf
.macaddr
.a
);
1226 s
->eeprom
[0] = 0xa5;
1227 for (i
= 0; i
< 6; i
++) {
1228 s
->eeprom
[i
+ 1] = s
->conf
.macaddr
.a
[i
];
1231 s
->txp
= &s
->tx_packet
;
1233 bh
= qemu_bh_new(lan9118_tick
, s
);
1234 s
->timer
= ptimer_init(bh
);
1235 ptimer_set_freq(s
->timer
, 10000);
1236 ptimer_set_limit(s
->timer
, 0xffff, 1);
1241 static Property lan9118_properties
[] = {
1242 DEFINE_NIC_PROPERTIES(lan9118_state
, conf
),
1243 DEFINE_PROP_END_OF_LIST(),
1246 static void lan9118_class_init(ObjectClass
*klass
, void *data
)
1248 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1249 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
1251 k
->init
= lan9118_init1
;
1252 dc
->reset
= lan9118_reset
;
1253 dc
->props
= lan9118_properties
;
1254 dc
->vmsd
= &vmstate_lan9118
;
1257 static TypeInfo lan9118_info
= {
1259 .parent
= TYPE_SYS_BUS_DEVICE
,
1260 .instance_size
= sizeof(lan9118_state
),
1261 .class_init
= lan9118_class_init
,
1264 static void lan9118_register_devices(void)
1266 type_register_static(&lan9118_info
);
1269 /* Legacy helper function. Should go away when machine config files are
1271 void lan9118_init(NICInfo
*nd
, uint32_t base
, qemu_irq irq
)
1276 qemu_check_nic_model(nd
, "lan9118");
1277 dev
= qdev_create(NULL
, "lan9118");
1278 qdev_set_nic_properties(dev
, nd
);
1279 qdev_init_nofail(dev
);
1280 s
= sysbus_from_qdev(dev
);
1281 sysbus_mmio_map(s
, 0, base
);
1282 sysbus_connect_irq(s
, 0, irq
);
1285 device_init(lan9118_register_devices
)