2 * QEMU NS SONIC DP8393x netcard
4 * Copyright (c) 2008-2009 Herve Poussineau
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
22 #include "hw/qdev-properties.h"
23 #include "hw/sysbus.h"
24 #include "migration/vmstate.h"
26 #include "qapi/error.h"
27 #include "qemu/module.h"
28 #include "qemu/timer.h"
30 #include "qom/object.h"
33 static const char *reg_names
[] = {
34 "CR", "DCR", "RCR", "TCR", "IMR", "ISR", "UTDA", "CTDA",
35 "TPS", "TFC", "TSA0", "TSA1", "TFS", "URDA", "CRDA", "CRBA0",
36 "CRBA1", "RBWC0", "RBWC1", "EOBC", "URRA", "RSA", "REA", "RRP",
37 "RWP", "TRBA0", "TRBA1", "0x1b", "0x1c", "0x1d", "0x1e", "LLFA",
38 "TTDA", "CEP", "CAP2", "CAP1", "CAP0", "CE", "CDP", "CDC",
39 "SR", "WT0", "WT1", "RSC", "CRCT", "FAET", "MPT", "MDT",
40 "0x30", "0x31", "0x32", "0x33", "0x34", "0x35", "0x36", "0x37",
41 "0x38", "0x39", "0x3a", "0x3b", "0x3c", "0x3d", "0x3e", "DCR2" };
44 #define SONIC_DCR 0x01
45 #define SONIC_RCR 0x02
46 #define SONIC_TCR 0x03
47 #define SONIC_IMR 0x04
48 #define SONIC_ISR 0x05
49 #define SONIC_UTDA 0x06
50 #define SONIC_CTDA 0x07
51 #define SONIC_TPS 0x08
52 #define SONIC_TFC 0x09
53 #define SONIC_TSA0 0x0a
54 #define SONIC_TSA1 0x0b
55 #define SONIC_TFS 0x0c
56 #define SONIC_URDA 0x0d
57 #define SONIC_CRDA 0x0e
58 #define SONIC_CRBA0 0x0f
59 #define SONIC_CRBA1 0x10
60 #define SONIC_RBWC0 0x11
61 #define SONIC_RBWC1 0x12
62 #define SONIC_EOBC 0x13
63 #define SONIC_URRA 0x14
64 #define SONIC_RSA 0x15
65 #define SONIC_REA 0x16
66 #define SONIC_RRP 0x17
67 #define SONIC_RWP 0x18
68 #define SONIC_TRBA0 0x19
69 #define SONIC_TRBA1 0x1a
70 #define SONIC_LLFA 0x1f
71 #define SONIC_TTDA 0x20
72 #define SONIC_CEP 0x21
73 #define SONIC_CAP2 0x22
74 #define SONIC_CAP1 0x23
75 #define SONIC_CAP0 0x24
77 #define SONIC_CDP 0x26
78 #define SONIC_CDC 0x27
80 #define SONIC_WT0 0x29
81 #define SONIC_WT1 0x2a
82 #define SONIC_RSC 0x2b
83 #define SONIC_CRCT 0x2c
84 #define SONIC_FAET 0x2d
85 #define SONIC_MPT 0x2e
86 #define SONIC_MDT 0x2f
87 #define SONIC_DCR2 0x3f
88 #define SONIC_REG_COUNT 0x40
90 #define SONIC_CR_HTX 0x0001
91 #define SONIC_CR_TXP 0x0002
92 #define SONIC_CR_RXDIS 0x0004
93 #define SONIC_CR_RXEN 0x0008
94 #define SONIC_CR_STP 0x0010
95 #define SONIC_CR_ST 0x0020
96 #define SONIC_CR_RST 0x0080
97 #define SONIC_CR_RRRA 0x0100
98 #define SONIC_CR_LCAM 0x0200
99 #define SONIC_CR_MASK 0x03bf
101 #define SONIC_DCR_DW 0x0020
102 #define SONIC_DCR_LBR 0x2000
103 #define SONIC_DCR_EXBUS 0x8000
105 #define SONIC_RCR_PRX 0x0001
106 #define SONIC_RCR_LBK 0x0002
107 #define SONIC_RCR_FAER 0x0004
108 #define SONIC_RCR_CRCR 0x0008
109 #define SONIC_RCR_CRS 0x0020
110 #define SONIC_RCR_LPKT 0x0040
111 #define SONIC_RCR_BC 0x0080
112 #define SONIC_RCR_MC 0x0100
113 #define SONIC_RCR_LB0 0x0200
114 #define SONIC_RCR_LB1 0x0400
115 #define SONIC_RCR_AMC 0x0800
116 #define SONIC_RCR_PRO 0x1000
117 #define SONIC_RCR_BRD 0x2000
118 #define SONIC_RCR_RNT 0x4000
120 #define SONIC_TCR_PTX 0x0001
121 #define SONIC_TCR_BCM 0x0002
122 #define SONIC_TCR_FU 0x0004
123 #define SONIC_TCR_EXC 0x0040
124 #define SONIC_TCR_CRSL 0x0080
125 #define SONIC_TCR_NCRS 0x0100
126 #define SONIC_TCR_EXD 0x0400
127 #define SONIC_TCR_CRCI 0x2000
128 #define SONIC_TCR_PINT 0x8000
130 #define SONIC_ISR_RBAE 0x0010
131 #define SONIC_ISR_RBE 0x0020
132 #define SONIC_ISR_RDE 0x0040
133 #define SONIC_ISR_TC 0x0080
134 #define SONIC_ISR_TXDN 0x0200
135 #define SONIC_ISR_PKTRX 0x0400
136 #define SONIC_ISR_PINT 0x0800
137 #define SONIC_ISR_LCD 0x1000
139 #define SONIC_DESC_EOL 0x0001
140 #define SONIC_DESC_ADDR 0xFFFE
142 #define TYPE_DP8393X "dp8393x"
143 OBJECT_DECLARE_SIMPLE_TYPE(dp8393xState
, DP8393X
)
145 struct dp8393xState
{
146 SysBusDevice parent_obj
;
151 bool last_rba_is_full
;
155 int64_t wt_last_update
;
162 uint16_t regs
[SONIC_REG_COUNT
];
165 uint8_t tx_buffer
[0x10000];
169 MemoryRegion
*dma_mr
;
174 * Accessor functions for values which are formed by
175 * concatenating two 16 bit device registers. By putting these
176 * in their own functions with a uint32_t return type we avoid the
177 * pitfall of implicit sign extension where ((x << 16) | y) is a
178 * signed 32 bit integer that might get sign-extended to a 64 bit integer.
180 static uint32_t dp8393x_cdp(dp8393xState
*s
)
182 return (s
->regs
[SONIC_URRA
] << 16) | s
->regs
[SONIC_CDP
];
185 static uint32_t dp8393x_crba(dp8393xState
*s
)
187 return (s
->regs
[SONIC_CRBA1
] << 16) | s
->regs
[SONIC_CRBA0
];
190 static uint32_t dp8393x_crda(dp8393xState
*s
)
192 return (s
->regs
[SONIC_URDA
] << 16) |
193 (s
->regs
[SONIC_CRDA
] & SONIC_DESC_ADDR
);
196 static uint32_t dp8393x_rbwc(dp8393xState
*s
)
198 return (s
->regs
[SONIC_RBWC1
] << 16) | s
->regs
[SONIC_RBWC0
];
201 static uint32_t dp8393x_rrp(dp8393xState
*s
)
203 return (s
->regs
[SONIC_URRA
] << 16) | s
->regs
[SONIC_RRP
];
206 static uint32_t dp8393x_tsa(dp8393xState
*s
)
208 return (s
->regs
[SONIC_TSA1
] << 16) | s
->regs
[SONIC_TSA0
];
211 static uint32_t dp8393x_ttda(dp8393xState
*s
)
213 return (s
->regs
[SONIC_UTDA
] << 16) |
214 (s
->regs
[SONIC_TTDA
] & SONIC_DESC_ADDR
);
217 static uint32_t dp8393x_wt(dp8393xState
*s
)
219 return s
->regs
[SONIC_WT1
] << 16 | s
->regs
[SONIC_WT0
];
222 static uint16_t dp8393x_get(dp8393xState
*s
, hwaddr addr
, int offset
)
224 const MemTxAttrs attrs
= MEMTXATTRS_UNSPECIFIED
;
227 if (s
->regs
[SONIC_DCR
] & SONIC_DCR_DW
) {
230 val
= address_space_ldl_be(&s
->as
, addr
, attrs
, NULL
);
232 val
= address_space_ldl_le(&s
->as
, addr
, attrs
, NULL
);
237 val
= address_space_lduw_be(&s
->as
, addr
, attrs
, NULL
);
239 val
= address_space_lduw_le(&s
->as
, addr
, attrs
, NULL
);
246 static void dp8393x_put(dp8393xState
*s
,
247 hwaddr addr
, int offset
, uint16_t val
)
249 const MemTxAttrs attrs
= MEMTXATTRS_UNSPECIFIED
;
251 if (s
->regs
[SONIC_DCR
] & SONIC_DCR_DW
) {
254 address_space_stl_be(&s
->as
, addr
, val
, attrs
, NULL
);
256 address_space_stl_le(&s
->as
, addr
, val
, attrs
, NULL
);
261 address_space_stw_be(&s
->as
, addr
, val
, attrs
, NULL
);
263 address_space_stw_le(&s
->as
, addr
, val
, attrs
, NULL
);
268 static void dp8393x_update_irq(dp8393xState
*s
)
270 int level
= (s
->regs
[SONIC_IMR
] & s
->regs
[SONIC_ISR
]) ? 1 : 0;
272 if (level
!= s
->irq_level
) {
273 s
->irq_level
= level
;
275 trace_dp8393x_raise_irq(s
->regs
[SONIC_ISR
]);
277 trace_dp8393x_lower_irq();
281 qemu_set_irq(s
->irq
, level
);
284 static void dp8393x_do_load_cam(dp8393xState
*s
)
289 width
= (s
->regs
[SONIC_DCR
] & SONIC_DCR_DW
) ? 2 : 1;
290 size
= sizeof(uint16_t) * 4 * width
;
292 while (s
->regs
[SONIC_CDC
] & 0x1f) {
293 /* Fill current entry */
294 index
= dp8393x_get(s
, dp8393x_cdp(s
), 0) & 0xf;
295 s
->cam
[index
][0] = dp8393x_get(s
, dp8393x_cdp(s
), 1);
296 s
->cam
[index
][1] = dp8393x_get(s
, dp8393x_cdp(s
), 2);
297 s
->cam
[index
][2] = dp8393x_get(s
, dp8393x_cdp(s
), 3);
298 trace_dp8393x_load_cam(index
,
299 s
->cam
[index
][0] >> 8, s
->cam
[index
][0] & 0xff,
300 s
->cam
[index
][1] >> 8, s
->cam
[index
][1] & 0xff,
301 s
->cam
[index
][2] >> 8, s
->cam
[index
][2] & 0xff);
302 /* Move to next entry */
303 s
->regs
[SONIC_CDC
]--;
304 s
->regs
[SONIC_CDP
] += size
;
307 /* Read CAM enable */
308 s
->regs
[SONIC_CE
] = dp8393x_get(s
, dp8393x_cdp(s
), 0);
309 trace_dp8393x_load_cam_done(s
->regs
[SONIC_CE
]);
312 s
->regs
[SONIC_CR
] &= ~SONIC_CR_LCAM
;
313 s
->regs
[SONIC_ISR
] |= SONIC_ISR_LCD
;
314 dp8393x_update_irq(s
);
317 static void dp8393x_do_read_rra(dp8393xState
*s
)
322 width
= (s
->regs
[SONIC_DCR
] & SONIC_DCR_DW
) ? 2 : 1;
323 size
= sizeof(uint16_t) * 4 * width
;
325 /* Update SONIC registers */
326 s
->regs
[SONIC_CRBA0
] = dp8393x_get(s
, dp8393x_rrp(s
), 0);
327 s
->regs
[SONIC_CRBA1
] = dp8393x_get(s
, dp8393x_rrp(s
), 1);
328 s
->regs
[SONIC_RBWC0
] = dp8393x_get(s
, dp8393x_rrp(s
), 2);
329 s
->regs
[SONIC_RBWC1
] = dp8393x_get(s
, dp8393x_rrp(s
), 3);
330 trace_dp8393x_read_rra_regs(s
->regs
[SONIC_CRBA0
], s
->regs
[SONIC_CRBA1
],
331 s
->regs
[SONIC_RBWC0
], s
->regs
[SONIC_RBWC1
]);
333 /* Go to next entry */
334 s
->regs
[SONIC_RRP
] += size
;
337 if (s
->regs
[SONIC_RRP
] == s
->regs
[SONIC_REA
]) {
338 s
->regs
[SONIC_RRP
] = s
->regs
[SONIC_RSA
];
341 /* Warn the host if CRBA now has the last available resource */
342 if (s
->regs
[SONIC_RRP
] == s
->regs
[SONIC_RWP
]) {
343 s
->regs
[SONIC_ISR
] |= SONIC_ISR_RBE
;
344 dp8393x_update_irq(s
);
347 /* Allow packet reception */
348 s
->last_rba_is_full
= false;
351 static void dp8393x_do_software_reset(dp8393xState
*s
)
353 timer_del(s
->watchdog
);
355 s
->regs
[SONIC_CR
] &= ~(SONIC_CR_LCAM
| SONIC_CR_RRRA
| SONIC_CR_TXP
|
357 s
->regs
[SONIC_CR
] |= SONIC_CR_RST
| SONIC_CR_RXDIS
;
360 static void dp8393x_set_next_tick(dp8393xState
*s
)
365 if (s
->regs
[SONIC_CR
] & SONIC_CR_STP
) {
366 timer_del(s
->watchdog
);
370 ticks
= dp8393x_wt(s
);
371 s
->wt_last_update
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
372 delay
= NANOSECONDS_PER_SECOND
* ticks
/ 5000000;
373 timer_mod(s
->watchdog
, s
->wt_last_update
+ delay
);
376 static void dp8393x_update_wt_regs(dp8393xState
*s
)
381 if (s
->regs
[SONIC_CR
] & SONIC_CR_STP
) {
382 timer_del(s
->watchdog
);
386 elapsed
= s
->wt_last_update
- qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
388 val
-= elapsed
/ 5000000;
389 s
->regs
[SONIC_WT1
] = (val
>> 16) & 0xffff;
390 s
->regs
[SONIC_WT0
] = (val
>> 0) & 0xffff;
391 dp8393x_set_next_tick(s
);
395 static void dp8393x_do_start_timer(dp8393xState
*s
)
397 s
->regs
[SONIC_CR
] &= ~SONIC_CR_STP
;
398 dp8393x_set_next_tick(s
);
401 static void dp8393x_do_stop_timer(dp8393xState
*s
)
403 s
->regs
[SONIC_CR
] &= ~SONIC_CR_ST
;
404 dp8393x_update_wt_regs(s
);
407 static bool dp8393x_can_receive(NetClientState
*nc
);
409 static void dp8393x_do_receiver_enable(dp8393xState
*s
)
411 s
->regs
[SONIC_CR
] &= ~SONIC_CR_RXDIS
;
412 if (dp8393x_can_receive(s
->nic
->ncs
)) {
413 qemu_flush_queued_packets(qemu_get_queue(s
->nic
));
417 static void dp8393x_do_receiver_disable(dp8393xState
*s
)
419 s
->regs
[SONIC_CR
] &= ~SONIC_CR_RXEN
;
422 static void dp8393x_do_transmit_packets(dp8393xState
*s
)
424 NetClientState
*nc
= qemu_get_queue(s
->nic
);
430 s
->regs
[SONIC_TTDA
] = s
->regs
[SONIC_CTDA
];
431 trace_dp8393x_transmit_packet(dp8393x_ttda(s
));
434 /* Update registers */
435 s
->regs
[SONIC_TCR
] = dp8393x_get(s
, dp8393x_ttda(s
), 1) & 0xf000;
436 s
->regs
[SONIC_TPS
] = dp8393x_get(s
, dp8393x_ttda(s
), 2);
437 s
->regs
[SONIC_TFC
] = dp8393x_get(s
, dp8393x_ttda(s
), 3);
438 s
->regs
[SONIC_TSA0
] = dp8393x_get(s
, dp8393x_ttda(s
), 4);
439 s
->regs
[SONIC_TSA1
] = dp8393x_get(s
, dp8393x_ttda(s
), 5);
440 s
->regs
[SONIC_TFS
] = dp8393x_get(s
, dp8393x_ttda(s
), 6);
442 /* Handle programmable interrupt */
443 if (s
->regs
[SONIC_TCR
] & SONIC_TCR_PINT
) {
444 s
->regs
[SONIC_ISR
] |= SONIC_ISR_PINT
;
446 s
->regs
[SONIC_ISR
] &= ~SONIC_ISR_PINT
;
449 for (i
= 0; i
< s
->regs
[SONIC_TFC
]; ) {
450 /* Append fragment */
451 len
= s
->regs
[SONIC_TFS
];
452 if (tx_len
+ len
> sizeof(s
->tx_buffer
)) {
453 len
= sizeof(s
->tx_buffer
) - tx_len
;
455 address_space_read(&s
->as
, dp8393x_tsa(s
), MEMTXATTRS_UNSPECIFIED
,
456 &s
->tx_buffer
[tx_len
], len
);
460 if (i
!= s
->regs
[SONIC_TFC
]) {
461 /* Read next fragment details */
462 s
->regs
[SONIC_TSA0
] = dp8393x_get(s
, dp8393x_ttda(s
),
464 s
->regs
[SONIC_TSA1
] = dp8393x_get(s
, dp8393x_ttda(s
),
466 s
->regs
[SONIC_TFS
] = dp8393x_get(s
, dp8393x_ttda(s
),
471 /* Handle Ethernet checksum */
472 if (!(s
->regs
[SONIC_TCR
] & SONIC_TCR_CRCI
)) {
474 * Don't append FCS there, to look like slirp packets
475 * which don't have one
478 /* Remove existing FCS */
481 trace_dp8393x_transmit_txlen_error(tx_len
);
486 if (s
->regs
[SONIC_RCR
] & (SONIC_RCR_LB1
| SONIC_RCR_LB0
)) {
488 s
->regs
[SONIC_TCR
] |= SONIC_TCR_CRSL
;
489 if (nc
->info
->can_receive(nc
)) {
490 s
->loopback_packet
= 1;
491 qemu_receive_packet(nc
, s
->tx_buffer
, tx_len
);
494 /* Transmit packet */
495 qemu_send_packet(nc
, s
->tx_buffer
, tx_len
);
497 s
->regs
[SONIC_TCR
] |= SONIC_TCR_PTX
;
500 dp8393x_put(s
, dp8393x_ttda(s
), 0, s
->regs
[SONIC_TCR
] & 0x0fff);
502 if (!(s
->regs
[SONIC_CR
] & SONIC_CR_HTX
)) {
503 /* Read footer of packet */
504 s
->regs
[SONIC_CTDA
] = dp8393x_get(s
, dp8393x_ttda(s
),
505 4 + 3 * s
->regs
[SONIC_TFC
]);
506 if (s
->regs
[SONIC_CTDA
] & SONIC_DESC_EOL
) {
514 s
->regs
[SONIC_CR
] &= ~SONIC_CR_TXP
;
515 s
->regs
[SONIC_ISR
] |= SONIC_ISR_TXDN
;
516 dp8393x_update_irq(s
);
519 static void dp8393x_do_halt_transmission(dp8393xState
*s
)
524 static void dp8393x_do_command(dp8393xState
*s
, uint16_t command
)
526 if ((s
->regs
[SONIC_CR
] & SONIC_CR_RST
) && !(command
& SONIC_CR_RST
)) {
527 s
->regs
[SONIC_CR
] &= ~SONIC_CR_RST
;
531 s
->regs
[SONIC_CR
] |= (command
& SONIC_CR_MASK
);
533 if (command
& SONIC_CR_HTX
) {
534 dp8393x_do_halt_transmission(s
);
536 if (command
& SONIC_CR_TXP
) {
537 dp8393x_do_transmit_packets(s
);
539 if (command
& SONIC_CR_RXDIS
) {
540 dp8393x_do_receiver_disable(s
);
542 if (command
& SONIC_CR_RXEN
) {
543 dp8393x_do_receiver_enable(s
);
545 if (command
& SONIC_CR_STP
) {
546 dp8393x_do_stop_timer(s
);
548 if (command
& SONIC_CR_ST
) {
549 dp8393x_do_start_timer(s
);
551 if (command
& SONIC_CR_RST
) {
552 dp8393x_do_software_reset(s
);
554 if (command
& SONIC_CR_RRRA
) {
555 dp8393x_do_read_rra(s
);
556 s
->regs
[SONIC_CR
] &= ~SONIC_CR_RRRA
;
558 if (command
& SONIC_CR_LCAM
) {
559 dp8393x_do_load_cam(s
);
563 static uint64_t dp8393x_read(void *opaque
, hwaddr addr
, unsigned int size
)
565 dp8393xState
*s
= opaque
;
566 int reg
= addr
>> s
->it_shift
;
570 /* Update data before reading it */
573 dp8393x_update_wt_regs(s
);
576 /* Accept read to some registers only when in reset mode */
580 if (s
->regs
[SONIC_CR
] & SONIC_CR_RST
) {
581 val
= s
->cam
[s
->regs
[SONIC_CEP
] & 0xf][SONIC_CAP0
- reg
];
584 /* All other registers have no special contraints */
589 trace_dp8393x_read(reg
, reg_names
[reg
], val
, size
);
594 static void dp8393x_write(void *opaque
, hwaddr addr
, uint64_t val
,
597 dp8393xState
*s
= opaque
;
598 int reg
= addr
>> s
->it_shift
;
600 trace_dp8393x_write(reg
, reg_names
[reg
], val
, size
);
603 /* Command register */
605 dp8393x_do_command(s
, val
);
607 /* Prevent write to read-only registers */
613 trace_dp8393x_write_invalid(reg
);
615 /* Accept write to some registers only when in reset mode */
617 if (s
->regs
[SONIC_CR
] & SONIC_CR_RST
) {
618 s
->regs
[reg
] = val
& 0xbfff;
620 trace_dp8393x_write_invalid_dcr("DCR");
624 if (s
->regs
[SONIC_CR
] & SONIC_CR_RST
) {
625 s
->regs
[reg
] = val
& 0xf017;
627 trace_dp8393x_write_invalid_dcr("DCR2");
630 /* 12 lower bytes are Read Only */
632 s
->regs
[reg
] = val
& 0xf000;
634 /* 9 lower bytes are Read Only */
636 s
->regs
[reg
] = val
& 0xffe0;
638 /* Ignore most significant bit */
640 s
->regs
[reg
] = val
& 0x7fff;
641 dp8393x_update_irq(s
);
643 /* Clear bits by writing 1 to them */
646 s
->regs
[reg
] &= ~val
;
647 if (val
& SONIC_ISR_RBE
) {
648 dp8393x_do_read_rra(s
);
650 dp8393x_update_irq(s
);
652 /* The guest is required to store aligned pointers here */
657 if (s
->regs
[SONIC_DCR
] & SONIC_DCR_DW
) {
658 s
->regs
[reg
] = val
& 0xfffc;
660 s
->regs
[reg
] = val
& 0xfffe;
663 /* Invert written value for some registers */
667 s
->regs
[reg
] = val
^ 0xffff;
669 /* All other registers have no special contrainst */
674 if (reg
== SONIC_WT0
|| reg
== SONIC_WT1
) {
675 dp8393x_set_next_tick(s
);
680 * Since .impl.max_access_size is effectively controlled by the it_shift
681 * property, leave it unspecified for now to allow the memory API to
682 * correctly zero extend the 16-bit register values to the access size up to and
683 * including it_shift.
685 static const MemoryRegionOps dp8393x_ops
= {
686 .read
= dp8393x_read
,
687 .write
= dp8393x_write
,
688 .impl
.min_access_size
= 2,
689 .endianness
= DEVICE_NATIVE_ENDIAN
,
692 static void dp8393x_watchdog(void *opaque
)
694 dp8393xState
*s
= opaque
;
696 if (s
->regs
[SONIC_CR
] & SONIC_CR_STP
) {
700 s
->regs
[SONIC_WT1
] = 0xffff;
701 s
->regs
[SONIC_WT0
] = 0xffff;
702 dp8393x_set_next_tick(s
);
704 /* Signal underflow */
705 s
->regs
[SONIC_ISR
] |= SONIC_ISR_TC
;
706 dp8393x_update_irq(s
);
709 static bool dp8393x_can_receive(NetClientState
*nc
)
711 dp8393xState
*s
= qemu_get_nic_opaque(nc
);
713 return !!(s
->regs
[SONIC_CR
] & SONIC_CR_RXEN
);
716 static int dp8393x_receive_filter(dp8393xState
*s
, const uint8_t * buf
,
719 static const uint8_t bcast
[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
722 /* Check promiscuous mode */
723 if ((s
->regs
[SONIC_RCR
] & SONIC_RCR_PRO
) && (buf
[0] & 1) == 0) {
727 /* Check multicast packets */
728 if ((s
->regs
[SONIC_RCR
] & SONIC_RCR_AMC
) && (buf
[0] & 1) == 1) {
732 /* Check broadcast */
733 if ((s
->regs
[SONIC_RCR
] & SONIC_RCR_BRD
) &&
734 !memcmp(buf
, bcast
, sizeof(bcast
))) {
739 for (i
= 0; i
< 16; i
++) {
740 if (s
->regs
[SONIC_CE
] & (1 << i
)) {
742 if (!memcmp(buf
, s
->cam
[i
], sizeof(s
->cam
[i
]))) {
751 static ssize_t
dp8393x_receive(NetClientState
*nc
, const uint8_t * buf
,
754 dp8393xState
*s
= qemu_get_nic_opaque(nc
);
756 uint32_t available
, address
;
757 int rx_len
, padded_len
;
761 s
->regs
[SONIC_RCR
] &= ~(SONIC_RCR_PRX
| SONIC_RCR_LBK
| SONIC_RCR_FAER
|
762 SONIC_RCR_CRCR
| SONIC_RCR_LPKT
| SONIC_RCR_BC
| SONIC_RCR_MC
);
764 if (s
->last_rba_is_full
) {
768 rx_len
= pkt_size
+ sizeof(checksum
);
769 if (s
->regs
[SONIC_DCR
] & SONIC_DCR_DW
) {
770 padded_len
= ((rx_len
- 1) | 3) + 1;
772 padded_len
= ((rx_len
- 1) | 1) + 1;
775 if (padded_len
> dp8393x_rbwc(s
) * 2) {
776 trace_dp8393x_receive_oversize(pkt_size
);
777 s
->regs
[SONIC_ISR
] |= SONIC_ISR_RBAE
;
778 dp8393x_update_irq(s
);
779 s
->regs
[SONIC_RCR
] |= SONIC_RCR_LPKT
;
783 packet_type
= dp8393x_receive_filter(s
, buf
, pkt_size
);
784 if (packet_type
< 0) {
785 trace_dp8393x_receive_not_netcard();
790 if (s
->regs
[SONIC_LLFA
] & SONIC_DESC_EOL
) {
791 /* Are we still in resource exhaustion? */
792 s
->regs
[SONIC_LLFA
] = dp8393x_get(s
, dp8393x_crda(s
), 5);
793 if (s
->regs
[SONIC_LLFA
] & SONIC_DESC_EOL
) {
794 /* Still EOL ; stop reception */
797 /* Link has been updated by host */
800 dp8393x_put(s
, dp8393x_crda(s
), 6, 0x0000);
802 /* Move to next descriptor */
803 s
->regs
[SONIC_CRDA
] = s
->regs
[SONIC_LLFA
];
804 s
->regs
[SONIC_ISR
] |= SONIC_ISR_PKTRX
;
807 /* Save current position */
808 s
->regs
[SONIC_TRBA1
] = s
->regs
[SONIC_CRBA1
];
809 s
->regs
[SONIC_TRBA0
] = s
->regs
[SONIC_CRBA0
];
811 /* Calculate the ethernet checksum */
812 checksum
= cpu_to_le32(crc32(0, buf
, pkt_size
));
814 /* Put packet into RBA */
815 trace_dp8393x_receive_packet(dp8393x_crba(s
));
816 address
= dp8393x_crba(s
);
817 address_space_write(&s
->as
, address
, MEMTXATTRS_UNSPECIFIED
,
821 /* Put frame checksum into RBA */
822 address_space_write(&s
->as
, address
, MEMTXATTRS_UNSPECIFIED
,
823 &checksum
, sizeof(checksum
));
824 address
+= sizeof(checksum
);
826 /* Pad short packets to keep pointers aligned */
827 if (rx_len
< padded_len
) {
828 size
= padded_len
- rx_len
;
829 address_space_write(&s
->as
, address
, MEMTXATTRS_UNSPECIFIED
,
830 "\xFF\xFF\xFF", size
);
834 s
->regs
[SONIC_CRBA1
] = address
>> 16;
835 s
->regs
[SONIC_CRBA0
] = address
& 0xffff;
836 available
= dp8393x_rbwc(s
);
837 available
-= padded_len
>> 1;
838 s
->regs
[SONIC_RBWC1
] = available
>> 16;
839 s
->regs
[SONIC_RBWC0
] = available
& 0xffff;
842 if (dp8393x_rbwc(s
) < s
->regs
[SONIC_EOBC
]) {
843 s
->regs
[SONIC_RCR
] |= SONIC_RCR_LPKT
;
845 s
->regs
[SONIC_RCR
] |= packet_type
;
846 s
->regs
[SONIC_RCR
] |= SONIC_RCR_PRX
;
847 if (s
->loopback_packet
) {
848 s
->regs
[SONIC_RCR
] |= SONIC_RCR_LBK
;
849 s
->loopback_packet
= 0;
852 /* Write status to memory */
853 trace_dp8393x_receive_write_status(dp8393x_crda(s
));
854 dp8393x_put(s
, dp8393x_crda(s
), 0, s
->regs
[SONIC_RCR
]); /* status */
855 dp8393x_put(s
, dp8393x_crda(s
), 1, rx_len
); /* byte count */
856 dp8393x_put(s
, dp8393x_crda(s
), 2, s
->regs
[SONIC_TRBA0
]); /* pkt_ptr0 */
857 dp8393x_put(s
, dp8393x_crda(s
), 3, s
->regs
[SONIC_TRBA1
]); /* pkt_ptr1 */
858 dp8393x_put(s
, dp8393x_crda(s
), 4, s
->regs
[SONIC_RSC
]); /* seq_no */
860 /* Check link field */
861 s
->regs
[SONIC_LLFA
] = dp8393x_get(s
, dp8393x_crda(s
), 5);
862 if (s
->regs
[SONIC_LLFA
] & SONIC_DESC_EOL
) {
864 s
->regs
[SONIC_ISR
] |= SONIC_ISR_RDE
;
867 dp8393x_put(s
, dp8393x_crda(s
), 6, 0x0000);
869 /* Move to next descriptor */
870 s
->regs
[SONIC_CRDA
] = s
->regs
[SONIC_LLFA
];
871 s
->regs
[SONIC_ISR
] |= SONIC_ISR_PKTRX
;
874 dp8393x_update_irq(s
);
876 s
->regs
[SONIC_RSC
] = (s
->regs
[SONIC_RSC
] & 0xff00) |
877 ((s
->regs
[SONIC_RSC
] + 1) & 0x00ff);
881 if (s
->regs
[SONIC_RCR
] & SONIC_RCR_LPKT
) {
882 if (s
->regs
[SONIC_RRP
] == s
->regs
[SONIC_RWP
]) {
883 /* Stop packet reception */
884 s
->last_rba_is_full
= true;
886 /* Read next resource */
887 dp8393x_do_read_rra(s
);
894 static void dp8393x_reset(DeviceState
*dev
)
896 dp8393xState
*s
= DP8393X(dev
);
897 timer_del(s
->watchdog
);
899 memset(s
->regs
, 0, sizeof(s
->regs
));
900 s
->regs
[SONIC_SR
] = 0x0004; /* only revision recognized by Linux/mips */
901 s
->regs
[SONIC_CR
] = SONIC_CR_RST
| SONIC_CR_STP
| SONIC_CR_RXDIS
;
902 s
->regs
[SONIC_DCR
] &= ~(SONIC_DCR_EXBUS
| SONIC_DCR_LBR
);
903 s
->regs
[SONIC_RCR
] &= ~(SONIC_RCR_LB0
| SONIC_RCR_LB1
| SONIC_RCR_BRD
|
905 s
->regs
[SONIC_TCR
] |= SONIC_TCR_NCRS
| SONIC_TCR_PTX
;
906 s
->regs
[SONIC_TCR
] &= ~SONIC_TCR_BCM
;
907 s
->regs
[SONIC_IMR
] = 0;
908 s
->regs
[SONIC_ISR
] = 0;
909 s
->regs
[SONIC_DCR2
] = 0;
910 s
->regs
[SONIC_EOBC
] = 0x02F8;
911 s
->regs
[SONIC_RSC
] = 0;
912 s
->regs
[SONIC_CE
] = 0;
913 s
->regs
[SONIC_RSC
] = 0;
915 /* Network cable is connected */
916 s
->regs
[SONIC_RCR
] |= SONIC_RCR_CRS
;
918 dp8393x_update_irq(s
);
921 static NetClientInfo net_dp83932_info
= {
922 .type
= NET_CLIENT_DRIVER_NIC
,
923 .size
= sizeof(NICState
),
924 .can_receive
= dp8393x_can_receive
,
925 .receive
= dp8393x_receive
,
928 static void dp8393x_instance_init(Object
*obj
)
930 SysBusDevice
*sbd
= SYS_BUS_DEVICE(obj
);
931 dp8393xState
*s
= DP8393X(obj
);
933 sysbus_init_mmio(sbd
, &s
->mmio
);
934 sysbus_init_irq(sbd
, &s
->irq
);
937 static void dp8393x_realize(DeviceState
*dev
, Error
**errp
)
939 dp8393xState
*s
= DP8393X(dev
);
941 address_space_init(&s
->as
, s
->dma_mr
, "dp8393x");
942 memory_region_init_io(&s
->mmio
, OBJECT(dev
), &dp8393x_ops
, s
,
943 "dp8393x-regs", SONIC_REG_COUNT
<< s
->it_shift
);
945 s
->nic
= qemu_new_nic(&net_dp83932_info
, &s
->conf
,
946 object_get_typename(OBJECT(dev
)), dev
->id
, s
);
947 qemu_format_nic_info_str(qemu_get_queue(s
->nic
), s
->conf
.macaddr
.a
);
949 s
->watchdog
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, dp8393x_watchdog
, s
);
952 static const VMStateDescription vmstate_dp8393x
= {
955 .minimum_version_id
= 1,
956 .fields
= (VMStateField
[]) {
957 VMSTATE_UINT16_2DARRAY(cam
, dp8393xState
, 16, 3),
958 VMSTATE_UINT16_ARRAY(regs
, dp8393xState
, SONIC_REG_COUNT
),
959 VMSTATE_END_OF_LIST()
963 static Property dp8393x_properties
[] = {
964 DEFINE_NIC_PROPERTIES(dp8393xState
, conf
),
965 DEFINE_PROP_LINK("dma_mr", dp8393xState
, dma_mr
,
966 TYPE_MEMORY_REGION
, MemoryRegion
*),
967 DEFINE_PROP_UINT8("it_shift", dp8393xState
, it_shift
, 0),
968 DEFINE_PROP_BOOL("big_endian", dp8393xState
, big_endian
, false),
969 DEFINE_PROP_END_OF_LIST(),
972 static void dp8393x_class_init(ObjectClass
*klass
, void *data
)
974 DeviceClass
*dc
= DEVICE_CLASS(klass
);
976 set_bit(DEVICE_CATEGORY_NETWORK
, dc
->categories
);
977 dc
->realize
= dp8393x_realize
;
978 dc
->reset
= dp8393x_reset
;
979 dc
->vmsd
= &vmstate_dp8393x
;
980 device_class_set_props(dc
, dp8393x_properties
);
983 static const TypeInfo dp8393x_info
= {
984 .name
= TYPE_DP8393X
,
985 .parent
= TYPE_SYS_BUS_DEVICE
,
986 .instance_size
= sizeof(dp8393xState
),
987 .instance_init
= dp8393x_instance_init
,
988 .class_init
= dp8393x_class_init
,
991 static void dp8393x_register_types(void)
993 type_register_static(&dp8393x_info
);
996 type_init(dp8393x_register_types
)