2 * i.MX Fast Ethernet Controller emulation.
4 * Copyright (c) 2013 Jean-Christophe Dubois. <jcd@tribudubois.net>
6 * Based on Coldfire Fast Ethernet Controller emulation.
8 * Copyright (c) 2007 CodeSourcery.
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful, but WITHOUT
16 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, see <http://www.gnu.org/licenses/>.
24 #include "qemu/osdep.h"
26 #include "hw/net/imx_fec.h"
27 #include "hw/qdev-properties.h"
28 #include "migration/vmstate.h"
29 #include "sysemu/dma.h"
31 #include "qemu/module.h"
32 #include "net/checksum.h"
39 #define IMX_MAX_DESC 1024
41 static const char *imx_default_reg_name(IMXFECState
*s
, uint32_t index
)
44 sprintf(tmp
, "index %d", index
);
48 static const char *imx_fec_reg_name(IMXFECState
*s
, uint32_t index
)
55 case ENET_MIIGSK_CFGR
:
60 return imx_default_reg_name(s
, index
);
64 static const char *imx_enet_reg_name(IMXFECState
*s
, uint32_t index
)
122 return imx_default_reg_name(s
, index
);
126 static const char *imx_eth_reg_name(IMXFECState
*s
, uint32_t index
)
173 return imx_fec_reg_name(s
, index
);
175 return imx_enet_reg_name(s
, index
);
181 * Versions of this device with more than one TX descriptor save the
182 * 2nd and 3rd descriptors in a subsection, to maintain migration
183 * compatibility with previous versions of the device that only
184 * supported a single descriptor.
186 static bool imx_eth_is_multi_tx_ring(void *opaque
)
188 IMXFECState
*s
= IMX_FEC(opaque
);
190 return s
->tx_ring_num
> 1;
193 static const VMStateDescription vmstate_imx_eth_txdescs
= {
194 .name
= "imx.fec/txdescs",
196 .minimum_version_id
= 1,
197 .needed
= imx_eth_is_multi_tx_ring
,
198 .fields
= (VMStateField
[]) {
199 VMSTATE_UINT32(tx_descriptor
[1], IMXFECState
),
200 VMSTATE_UINT32(tx_descriptor
[2], IMXFECState
),
201 VMSTATE_END_OF_LIST()
205 static const VMStateDescription vmstate_imx_eth
= {
206 .name
= TYPE_IMX_FEC
,
208 .minimum_version_id
= 2,
209 .fields
= (VMStateField
[]) {
210 VMSTATE_UINT32_ARRAY(regs
, IMXFECState
, ENET_MAX
),
211 VMSTATE_UINT32(rx_descriptor
, IMXFECState
),
212 VMSTATE_UINT32(tx_descriptor
[0], IMXFECState
),
213 VMSTATE_UINT32(phy_status
, IMXFECState
),
214 VMSTATE_UINT32(phy_control
, IMXFECState
),
215 VMSTATE_UINT32(phy_advertise
, IMXFECState
),
216 VMSTATE_UINT32(phy_int
, IMXFECState
),
217 VMSTATE_UINT32(phy_int_mask
, IMXFECState
),
218 VMSTATE_END_OF_LIST()
220 .subsections
= (const VMStateDescription
* []) {
221 &vmstate_imx_eth_txdescs
,
226 #define PHY_INT_ENERGYON (1 << 7)
227 #define PHY_INT_AUTONEG_COMPLETE (1 << 6)
228 #define PHY_INT_FAULT (1 << 5)
229 #define PHY_INT_DOWN (1 << 4)
230 #define PHY_INT_AUTONEG_LP (1 << 3)
231 #define PHY_INT_PARFAULT (1 << 2)
232 #define PHY_INT_AUTONEG_PAGE (1 << 1)
234 static void imx_eth_update(IMXFECState
*s
);
237 * The MII phy could raise a GPIO to the processor which in turn
238 * could be handled as an interrpt by the OS.
239 * For now we don't handle any GPIO/interrupt line, so the OS will
240 * have to poll for the PHY status.
242 static void imx_phy_update_irq(IMXFECState
*s
)
247 static void imx_phy_update_link(IMXFECState
*s
)
249 /* Autonegotiation status mirrors link status. */
250 if (qemu_get_queue(s
->nic
)->link_down
) {
251 trace_imx_phy_update_link("down");
252 s
->phy_status
&= ~0x0024;
253 s
->phy_int
|= PHY_INT_DOWN
;
255 trace_imx_phy_update_link("up");
256 s
->phy_status
|= 0x0024;
257 s
->phy_int
|= PHY_INT_ENERGYON
;
258 s
->phy_int
|= PHY_INT_AUTONEG_COMPLETE
;
260 imx_phy_update_irq(s
);
263 static void imx_eth_set_link(NetClientState
*nc
)
265 imx_phy_update_link(IMX_FEC(qemu_get_nic_opaque(nc
)));
268 static void imx_phy_reset(IMXFECState
*s
)
270 trace_imx_phy_reset();
272 s
->phy_status
= 0x7809;
273 s
->phy_control
= 0x3000;
274 s
->phy_advertise
= 0x01e1;
277 imx_phy_update_link(s
);
280 static uint32_t imx_phy_read(IMXFECState
*s
, int reg
)
283 uint32_t phy
= reg
/ 32;
285 if (phy
!= s
->phy_num
) {
286 trace_imx_phy_read_num(phy
, s
->phy_num
);
293 case 0: /* Basic Control */
294 val
= s
->phy_control
;
296 case 1: /* Basic Status */
305 case 4: /* Auto-neg advertisement */
306 val
= s
->phy_advertise
;
308 case 5: /* Auto-neg Link Partner Ability */
311 case 6: /* Auto-neg Expansion */
314 case 29: /* Interrupt source. */
317 imx_phy_update_irq(s
);
319 case 30: /* Interrupt mask */
320 val
= s
->phy_int_mask
;
326 qemu_log_mask(LOG_UNIMP
, "[%s.phy]%s: reg %d not implemented\n",
327 TYPE_IMX_FEC
, __func__
, reg
);
331 qemu_log_mask(LOG_GUEST_ERROR
, "[%s.phy]%s: Bad address at offset %d\n",
332 TYPE_IMX_FEC
, __func__
, reg
);
337 trace_imx_phy_read(val
, phy
, reg
);
342 static void imx_phy_write(IMXFECState
*s
, int reg
, uint32_t val
)
344 uint32_t phy
= reg
/ 32;
346 if (phy
!= s
->phy_num
) {
347 trace_imx_phy_write_num(phy
, s
->phy_num
);
353 trace_imx_phy_write(val
, phy
, reg
);
356 case 0: /* Basic Control */
360 s
->phy_control
= val
& 0x7980;
361 /* Complete autonegotiation immediately. */
363 s
->phy_status
|= 0x0020;
367 case 4: /* Auto-neg advertisement */
368 s
->phy_advertise
= (val
& 0x2d7f) | 0x80;
370 case 30: /* Interrupt mask */
371 s
->phy_int_mask
= val
& 0xff;
372 imx_phy_update_irq(s
);
378 qemu_log_mask(LOG_UNIMP
, "[%s.phy)%s: reg %d not implemented\n",
379 TYPE_IMX_FEC
, __func__
, reg
);
382 qemu_log_mask(LOG_GUEST_ERROR
, "[%s.phy]%s: Bad address at offset %d\n",
383 TYPE_IMX_FEC
, __func__
, reg
);
388 static void imx_fec_read_bd(IMXFECBufDesc
*bd
, dma_addr_t addr
)
390 dma_memory_read(&address_space_memory
, addr
, bd
, sizeof(*bd
),
391 MEMTXATTRS_UNSPECIFIED
);
393 trace_imx_fec_read_bd(addr
, bd
->flags
, bd
->length
, bd
->data
);
396 static void imx_fec_write_bd(IMXFECBufDesc
*bd
, dma_addr_t addr
)
398 dma_memory_write(&address_space_memory
, addr
, bd
, sizeof(*bd
),
399 MEMTXATTRS_UNSPECIFIED
);
402 static void imx_enet_read_bd(IMXENETBufDesc
*bd
, dma_addr_t addr
)
404 dma_memory_read(&address_space_memory
, addr
, bd
, sizeof(*bd
),
405 MEMTXATTRS_UNSPECIFIED
);
407 trace_imx_enet_read_bd(addr
, bd
->flags
, bd
->length
, bd
->data
,
408 bd
->option
, bd
->status
);
411 static void imx_enet_write_bd(IMXENETBufDesc
*bd
, dma_addr_t addr
)
413 dma_memory_write(&address_space_memory
, addr
, bd
, sizeof(*bd
),
414 MEMTXATTRS_UNSPECIFIED
);
417 static void imx_eth_update(IMXFECState
*s
)
420 * Previous versions of qemu had the ENET_INT_MAC and ENET_INT_TS_TIMER
421 * interrupts swapped. This worked with older versions of Linux (4.14
422 * and older) since Linux associated both interrupt lines with Ethernet
423 * MAC interrupts. Specifically,
424 * - Linux 4.15 and later have separate interrupt handlers for the MAC and
425 * timer interrupts. Those versions of Linux fail with versions of QEMU
426 * with swapped interrupt assignments.
427 * - In linux 4.14, both interrupt lines were registered with the Ethernet
428 * MAC interrupt handler. As a result, all versions of qemu happen to
429 * work, though that is accidental.
430 * - In Linux 4.9 and older, the timer interrupt was registered directly
431 * with the Ethernet MAC interrupt handler. The MAC interrupt was
432 * redirected to a GPIO interrupt to work around erratum ERR006687.
433 * This was implemented using the SOC's IOMUX block. In qemu, this GPIO
434 * interrupt never fired since IOMUX is currently not supported in qemu.
435 * Linux instead received MAC interrupts on the timer interrupt.
436 * As a result, qemu versions with the swapped interrupt assignment work,
437 * albeit accidentally, but qemu versions with the correct interrupt
440 * To ensure that all versions of Linux work, generate ENET_INT_MAC
441 * interrrupts on both interrupt lines. This should be changed if and when
442 * qemu supports IOMUX.
444 if (s
->regs
[ENET_EIR
] & s
->regs
[ENET_EIMR
] &
445 (ENET_INT_MAC
| ENET_INT_TS_TIMER
)) {
446 qemu_set_irq(s
->irq
[1], 1);
448 qemu_set_irq(s
->irq
[1], 0);
451 if (s
->regs
[ENET_EIR
] & s
->regs
[ENET_EIMR
] & ENET_INT_MAC
) {
452 qemu_set_irq(s
->irq
[0], 1);
454 qemu_set_irq(s
->irq
[0], 0);
458 static void imx_fec_do_tx(IMXFECState
*s
)
460 int frame_size
= 0, descnt
= 0;
461 uint8_t *ptr
= s
->frame
;
462 uint32_t addr
= s
->tx_descriptor
[0];
464 while (descnt
++ < IMX_MAX_DESC
) {
468 imx_fec_read_bd(&bd
, addr
);
469 if ((bd
.flags
& ENET_BD_R
) == 0) {
471 /* Run out of descriptors to transmit. */
472 trace_imx_eth_tx_bd_busy();
477 if (frame_size
+ len
> ENET_MAX_FRAME_SIZE
) {
478 len
= ENET_MAX_FRAME_SIZE
- frame_size
;
479 s
->regs
[ENET_EIR
] |= ENET_INT_BABT
;
481 dma_memory_read(&address_space_memory
, bd
.data
, ptr
, len
,
482 MEMTXATTRS_UNSPECIFIED
);
485 if (bd
.flags
& ENET_BD_L
) {
486 /* Last buffer in frame. */
487 qemu_send_packet(qemu_get_queue(s
->nic
), s
->frame
, frame_size
);
490 s
->regs
[ENET_EIR
] |= ENET_INT_TXF
;
492 s
->regs
[ENET_EIR
] |= ENET_INT_TXB
;
493 bd
.flags
&= ~ENET_BD_R
;
494 /* Write back the modified descriptor. */
495 imx_fec_write_bd(&bd
, addr
);
496 /* Advance to the next descriptor. */
497 if ((bd
.flags
& ENET_BD_W
) != 0) {
498 addr
= s
->regs
[ENET_TDSR
];
504 s
->tx_descriptor
[0] = addr
;
509 static void imx_enet_do_tx(IMXFECState
*s
, uint32_t index
)
511 int frame_size
= 0, descnt
= 0;
513 uint8_t *ptr
= s
->frame
;
514 uint32_t addr
, int_txb
, int_txf
, tdsr
;
520 int_txb
= ENET_INT_TXB
;
521 int_txf
= ENET_INT_TXF
;
526 int_txb
= ENET_INT_TXB1
;
527 int_txf
= ENET_INT_TXF1
;
532 int_txb
= ENET_INT_TXB2
;
533 int_txf
= ENET_INT_TXF2
;
537 qemu_log_mask(LOG_GUEST_ERROR
,
538 "%s: bogus value for index %x\n",
544 addr
= s
->tx_descriptor
[ring
];
546 while (descnt
++ < IMX_MAX_DESC
) {
550 imx_enet_read_bd(&bd
, addr
);
551 if ((bd
.flags
& ENET_BD_R
) == 0) {
552 /* Run out of descriptors to transmit. */
554 trace_imx_eth_tx_bd_busy();
559 if (frame_size
+ len
> ENET_MAX_FRAME_SIZE
) {
560 len
= ENET_MAX_FRAME_SIZE
- frame_size
;
561 s
->regs
[ENET_EIR
] |= ENET_INT_BABT
;
563 dma_memory_read(&address_space_memory
, bd
.data
, ptr
, len
,
564 MEMTXATTRS_UNSPECIFIED
);
567 if (bd
.flags
& ENET_BD_L
) {
570 if (bd
.option
& ENET_BD_PINS
) {
571 csum
|= (CSUM_TCP
| CSUM_UDP
);
573 if (bd
.option
& ENET_BD_IINS
) {
577 net_checksum_calculate(s
->frame
, frame_size
, csum
);
580 /* Last buffer in frame. */
582 qemu_send_packet(qemu_get_queue(s
->nic
), s
->frame
, frame_size
);
586 if (bd
.option
& ENET_BD_TX_INT
) {
587 s
->regs
[ENET_EIR
] |= int_txf
;
589 /* Indicate that we've updated the last buffer descriptor. */
590 bd
.last_buffer
= ENET_BD_BDU
;
592 if (bd
.option
& ENET_BD_TX_INT
) {
593 s
->regs
[ENET_EIR
] |= int_txb
;
595 bd
.flags
&= ~ENET_BD_R
;
596 /* Write back the modified descriptor. */
597 imx_enet_write_bd(&bd
, addr
);
598 /* Advance to the next descriptor. */
599 if ((bd
.flags
& ENET_BD_W
) != 0) {
600 addr
= s
->regs
[tdsr
];
606 s
->tx_descriptor
[ring
] = addr
;
611 static void imx_eth_do_tx(IMXFECState
*s
, uint32_t index
)
613 if (!s
->is_fec
&& (s
->regs
[ENET_ECR
] & ENET_ECR_EN1588
)) {
614 imx_enet_do_tx(s
, index
);
620 static void imx_eth_enable_rx(IMXFECState
*s
, bool flush
)
624 imx_fec_read_bd(&bd
, s
->rx_descriptor
);
626 s
->regs
[ENET_RDAR
] = (bd
.flags
& ENET_BD_E
) ? ENET_RDAR_RDAR
: 0;
628 if (!s
->regs
[ENET_RDAR
]) {
629 trace_imx_eth_rx_bd_full();
631 qemu_flush_queued_packets(qemu_get_queue(s
->nic
));
635 static void imx_eth_reset(DeviceState
*d
)
637 IMXFECState
*s
= IMX_FEC(d
);
639 /* Reset the Device */
640 memset(s
->regs
, 0, sizeof(s
->regs
));
641 s
->regs
[ENET_ECR
] = 0xf0000000;
642 s
->regs
[ENET_MIBC
] = 0xc0000000;
643 s
->regs
[ENET_RCR
] = 0x05ee0001;
644 s
->regs
[ENET_OPD
] = 0x00010000;
646 s
->regs
[ENET_PALR
] = (s
->conf
.macaddr
.a
[0] << 24)
647 | (s
->conf
.macaddr
.a
[1] << 16)
648 | (s
->conf
.macaddr
.a
[2] << 8)
649 | s
->conf
.macaddr
.a
[3];
650 s
->regs
[ENET_PAUR
] = (s
->conf
.macaddr
.a
[4] << 24)
651 | (s
->conf
.macaddr
.a
[5] << 16)
655 s
->regs
[ENET_FRBR
] = 0x00000600;
656 s
->regs
[ENET_FRSR
] = 0x00000500;
657 s
->regs
[ENET_MIIGSK_ENR
] = 0x00000006;
659 s
->regs
[ENET_RAEM
] = 0x00000004;
660 s
->regs
[ENET_RAFL
] = 0x00000004;
661 s
->regs
[ENET_TAEM
] = 0x00000004;
662 s
->regs
[ENET_TAFL
] = 0x00000008;
663 s
->regs
[ENET_TIPG
] = 0x0000000c;
664 s
->regs
[ENET_FTRL
] = 0x000007ff;
665 s
->regs
[ENET_ATPER
] = 0x3b9aca00;
668 s
->rx_descriptor
= 0;
669 memset(s
->tx_descriptor
, 0, sizeof(s
->tx_descriptor
));
671 /* We also reset the PHY */
675 static uint32_t imx_default_read(IMXFECState
*s
, uint32_t index
)
677 qemu_log_mask(LOG_GUEST_ERROR
, "[%s]%s: Bad register at offset 0x%"
678 PRIx32
"\n", TYPE_IMX_FEC
, __func__
, index
* 4);
682 static uint32_t imx_fec_read(IMXFECState
*s
, uint32_t index
)
687 case ENET_MIIGSK_CFGR
:
688 case ENET_MIIGSK_ENR
:
689 return s
->regs
[index
];
691 return imx_default_read(s
, index
);
695 static uint32_t imx_enet_read(IMXFECState
*s
, uint32_t index
)
725 return s
->regs
[index
];
727 return imx_default_read(s
, index
);
731 static uint64_t imx_eth_read(void *opaque
, hwaddr offset
, unsigned size
)
734 IMXFECState
*s
= IMX_FEC(opaque
);
735 uint32_t index
= offset
>> 2;
759 value
= s
->regs
[index
];
763 value
= imx_fec_read(s
, index
);
765 value
= imx_enet_read(s
, index
);
770 trace_imx_eth_read(index
, imx_eth_reg_name(s
, index
), value
);
775 static void imx_default_write(IMXFECState
*s
, uint32_t index
, uint32_t value
)
777 qemu_log_mask(LOG_GUEST_ERROR
, "[%s]%s: Bad address at offset 0x%"
778 PRIx32
"\n", TYPE_IMX_FEC
, __func__
, index
* 4);
782 static void imx_fec_write(IMXFECState
*s
, uint32_t index
, uint32_t value
)
786 /* FRBR is read only */
787 qemu_log_mask(LOG_GUEST_ERROR
, "[%s]%s: Register FRBR is read only\n",
788 TYPE_IMX_FEC
, __func__
);
791 s
->regs
[index
] = (value
& 0x000003fc) | 0x00000400;
793 case ENET_MIIGSK_CFGR
:
794 s
->regs
[index
] = value
& 0x00000053;
796 case ENET_MIIGSK_ENR
:
797 s
->regs
[index
] = (value
& 0x00000002) ? 0x00000006 : 0;
800 imx_default_write(s
, index
, value
);
805 static void imx_enet_write(IMXFECState
*s
, uint32_t index
, uint32_t value
)
815 s
->regs
[index
] = value
& 0x000001ff;
818 s
->regs
[index
] = value
& 0x0000001f;
821 s
->regs
[index
] = value
& 0x00003fff;
824 s
->regs
[index
] = value
& 0x00000019;
827 s
->regs
[index
] = value
& 0x000000C7;
830 s
->regs
[index
] = value
& 0x00002a9d;
835 s
->regs
[index
] = value
;
838 /* ATSTMP is read only */
839 qemu_log_mask(LOG_GUEST_ERROR
, "[%s]%s: Register ATSTMP is read only\n",
840 TYPE_IMX_FEC
, __func__
);
843 s
->regs
[index
] = value
& 0x7fffffff;
846 s
->regs
[index
] = value
& 0x00007f7f;
849 /* implement clear timer flag */
850 s
->regs
[index
] &= ~(value
& 0x0000000f); /* all bits W1C */
856 s
->regs
[index
] &= ~(value
& 0x00000080); /* W1C bits */
857 s
->regs
[index
] &= ~0x0000007d; /* writable fields */
858 s
->regs
[index
] |= (value
& 0x0000007d);
864 s
->regs
[index
] = value
;
867 imx_default_write(s
, index
, value
);
872 static void imx_eth_write(void *opaque
, hwaddr offset
, uint64_t value
,
875 IMXFECState
*s
= IMX_FEC(opaque
);
876 const bool single_tx_ring
= !imx_eth_is_multi_tx_ring(s
);
877 uint32_t index
= offset
>> 2;
879 trace_imx_eth_write(index
, imx_eth_reg_name(s
, index
), value
);
883 s
->regs
[index
] &= ~value
;
886 s
->regs
[index
] = value
;
889 if (s
->regs
[ENET_ECR
] & ENET_ECR_ETHEREN
) {
890 if (!s
->regs
[index
]) {
891 imx_eth_enable_rx(s
, true);
899 if (unlikely(single_tx_ring
)) {
900 qemu_log_mask(LOG_GUEST_ERROR
,
901 "[%s]%s: trying to access TDAR2 or TDAR1\n",
902 TYPE_IMX_FEC
, __func__
);
907 if (s
->regs
[ENET_ECR
] & ENET_ECR_ETHEREN
) {
908 s
->regs
[index
] = ENET_TDAR_TDAR
;
909 imx_eth_do_tx(s
, index
);
914 if (value
& ENET_ECR_RESET
) {
915 return imx_eth_reset(DEVICE(s
));
917 s
->regs
[index
] = value
;
918 if ((s
->regs
[index
] & ENET_ECR_ETHEREN
) == 0) {
919 s
->regs
[ENET_RDAR
] = 0;
920 s
->rx_descriptor
= s
->regs
[ENET_RDSR
];
921 s
->regs
[ENET_TDAR
] = 0;
922 s
->regs
[ENET_TDAR1
] = 0;
923 s
->regs
[ENET_TDAR2
] = 0;
924 s
->tx_descriptor
[0] = s
->regs
[ENET_TDSR
];
925 s
->tx_descriptor
[1] = s
->regs
[ENET_TDSR1
];
926 s
->tx_descriptor
[2] = s
->regs
[ENET_TDSR2
];
930 s
->regs
[index
] = value
;
931 if (extract32(value
, 29, 1)) {
932 /* This is a read operation */
933 s
->regs
[ENET_MMFR
] = deposit32(s
->regs
[ENET_MMFR
], 0, 16,
938 /* This is a write operation */
939 imx_phy_write(s
, extract32(value
, 18, 10), extract32(value
, 0, 16));
941 /* raise the interrupt as the PHY operation is done */
942 s
->regs
[ENET_EIR
] |= ENET_INT_MII
;
945 s
->regs
[index
] = value
& 0xfe;
948 /* TODO: Implement MIB. */
949 s
->regs
[index
] = (value
& 0x80000000) ? 0xc0000000 : 0;
952 s
->regs
[index
] = value
& 0x07ff003f;
953 /* TODO: Implement LOOP mode. */
956 /* We transmit immediately, so raise GRA immediately. */
957 s
->regs
[index
] = value
;
959 s
->regs
[ENET_EIR
] |= ENET_INT_GRA
;
963 s
->regs
[index
] = value
;
964 s
->conf
.macaddr
.a
[0] = value
>> 24;
965 s
->conf
.macaddr
.a
[1] = value
>> 16;
966 s
->conf
.macaddr
.a
[2] = value
>> 8;
967 s
->conf
.macaddr
.a
[3] = value
;
970 s
->regs
[index
] = (value
| 0x0000ffff) & 0xffff8808;
971 s
->conf
.macaddr
.a
[4] = value
>> 24;
972 s
->conf
.macaddr
.a
[5] = value
>> 16;
975 s
->regs
[index
] = (value
& 0x0000ffff) | 0x00010000;
981 /* TODO: implement MAC hash filtering. */
985 s
->regs
[index
] = value
& 0x3;
987 s
->regs
[index
] = value
& 0x13f;
992 s
->regs
[index
] = value
& ~3;
994 s
->regs
[index
] = value
& ~7;
996 s
->rx_descriptor
= s
->regs
[index
];
1000 s
->regs
[index
] = value
& ~3;
1002 s
->regs
[index
] = value
& ~7;
1004 s
->tx_descriptor
[0] = s
->regs
[index
];
1007 if (unlikely(single_tx_ring
)) {
1008 qemu_log_mask(LOG_GUEST_ERROR
,
1009 "[%s]%s: trying to access TDSR1\n",
1010 TYPE_IMX_FEC
, __func__
);
1014 s
->regs
[index
] = value
& ~7;
1015 s
->tx_descriptor
[1] = s
->regs
[index
];
1018 if (unlikely(single_tx_ring
)) {
1019 qemu_log_mask(LOG_GUEST_ERROR
,
1020 "[%s]%s: trying to access TDSR2\n",
1021 TYPE_IMX_FEC
, __func__
);
1025 s
->regs
[index
] = value
& ~7;
1026 s
->tx_descriptor
[2] = s
->regs
[index
];
1029 s
->regs
[index
] = value
& 0x00003ff0;
1033 imx_fec_write(s
, index
, value
);
1035 imx_enet_write(s
, index
, value
);
1043 static bool imx_eth_can_receive(NetClientState
*nc
)
1045 IMXFECState
*s
= IMX_FEC(qemu_get_nic_opaque(nc
));
1047 return !!s
->regs
[ENET_RDAR
];
1050 static ssize_t
imx_fec_receive(NetClientState
*nc
, const uint8_t *buf
,
1053 IMXFECState
*s
= IMX_FEC(qemu_get_nic_opaque(nc
));
1060 unsigned int buf_len
;
1063 trace_imx_fec_receive(size
);
1065 if (!s
->regs
[ENET_RDAR
]) {
1066 qemu_log_mask(LOG_GUEST_ERROR
, "[%s]%s: Unexpected packet\n",
1067 TYPE_IMX_FEC
, __func__
);
1071 /* 4 bytes for the CRC. */
1073 crc
= cpu_to_be32(crc32(~0, buf
, size
));
1074 crc_ptr
= (uint8_t *) &crc
;
1076 /* Huge frames are truncated. */
1077 if (size
> ENET_MAX_FRAME_SIZE
) {
1078 size
= ENET_MAX_FRAME_SIZE
;
1079 flags
|= ENET_BD_TR
| ENET_BD_LG
;
1082 /* Frames larger than the user limit just set error flags. */
1083 if (size
> (s
->regs
[ENET_RCR
] >> 16)) {
1084 flags
|= ENET_BD_LG
;
1087 addr
= s
->rx_descriptor
;
1089 imx_fec_read_bd(&bd
, addr
);
1090 if ((bd
.flags
& ENET_BD_E
) == 0) {
1091 /* No descriptors available. Bail out. */
1093 * FIXME: This is wrong. We should probably either
1094 * save the remainder for when more RX buffers are
1095 * available, or flag an error.
1097 qemu_log_mask(LOG_GUEST_ERROR
, "[%s]%s: Lost end of frame\n",
1098 TYPE_IMX_FEC
, __func__
);
1101 buf_len
= (size
<= s
->regs
[ENET_MRBR
]) ? size
: s
->regs
[ENET_MRBR
];
1102 bd
.length
= buf_len
;
1105 trace_imx_fec_receive_len(addr
, bd
.length
);
1107 /* The last 4 bytes are the CRC. */
1109 buf_len
+= size
- 4;
1112 dma_memory_write(&address_space_memory
, buf_addr
, buf
, buf_len
,
1113 MEMTXATTRS_UNSPECIFIED
);
1116 dma_memory_write(&address_space_memory
, buf_addr
+ buf_len
,
1117 crc_ptr
, 4 - size
, MEMTXATTRS_UNSPECIFIED
);
1118 crc_ptr
+= 4 - size
;
1120 bd
.flags
&= ~ENET_BD_E
;
1122 /* Last buffer in frame. */
1123 bd
.flags
|= flags
| ENET_BD_L
;
1125 trace_imx_fec_receive_last(bd
.flags
);
1127 s
->regs
[ENET_EIR
] |= ENET_INT_RXF
;
1129 s
->regs
[ENET_EIR
] |= ENET_INT_RXB
;
1131 imx_fec_write_bd(&bd
, addr
);
1132 /* Advance to the next descriptor. */
1133 if ((bd
.flags
& ENET_BD_W
) != 0) {
1134 addr
= s
->regs
[ENET_RDSR
];
1139 s
->rx_descriptor
= addr
;
1140 imx_eth_enable_rx(s
, false);
1145 static ssize_t
imx_enet_receive(NetClientState
*nc
, const uint8_t *buf
,
1148 IMXFECState
*s
= IMX_FEC(qemu_get_nic_opaque(nc
));
1155 unsigned int buf_len
;
1157 bool shift16
= s
->regs
[ENET_RACC
] & ENET_RACC_SHIFT16
;
1159 trace_imx_enet_receive(size
);
1161 if (!s
->regs
[ENET_RDAR
]) {
1162 qemu_log_mask(LOG_GUEST_ERROR
, "[%s]%s: Unexpected packet\n",
1163 TYPE_IMX_FEC
, __func__
);
1167 /* 4 bytes for the CRC. */
1169 crc
= cpu_to_be32(crc32(~0, buf
, size
));
1170 crc_ptr
= (uint8_t *) &crc
;
1176 /* Huge frames are truncated. */
1177 if (size
> s
->regs
[ENET_FTRL
]) {
1178 size
= s
->regs
[ENET_FTRL
];
1179 flags
|= ENET_BD_TR
| ENET_BD_LG
;
1182 /* Frames larger than the user limit just set error flags. */
1183 if (size
> (s
->regs
[ENET_RCR
] >> 16)) {
1184 flags
|= ENET_BD_LG
;
1187 addr
= s
->rx_descriptor
;
1189 imx_enet_read_bd(&bd
, addr
);
1190 if ((bd
.flags
& ENET_BD_E
) == 0) {
1191 /* No descriptors available. Bail out. */
1193 * FIXME: This is wrong. We should probably either
1194 * save the remainder for when more RX buffers are
1195 * available, or flag an error.
1197 qemu_log_mask(LOG_GUEST_ERROR
, "[%s]%s: Lost end of frame\n",
1198 TYPE_IMX_FEC
, __func__
);
1201 buf_len
= MIN(size
, s
->regs
[ENET_MRBR
]);
1202 bd
.length
= buf_len
;
1205 trace_imx_enet_receive_len(addr
, bd
.length
);
1207 /* The last 4 bytes are the CRC. */
1209 buf_len
+= size
- 4;
1215 * If SHIFT16 bit of ENETx_RACC register is set we need to
1216 * align the payload to 4-byte boundary.
1218 const uint8_t zeros
[2] = { 0 };
1220 dma_memory_write(&address_space_memory
, buf_addr
, zeros
,
1221 sizeof(zeros
), MEMTXATTRS_UNSPECIFIED
);
1223 buf_addr
+= sizeof(zeros
);
1224 buf_len
-= sizeof(zeros
);
1226 /* We only do this once per Ethernet frame */
1230 dma_memory_write(&address_space_memory
, buf_addr
, buf
, buf_len
,
1231 MEMTXATTRS_UNSPECIFIED
);
1234 dma_memory_write(&address_space_memory
, buf_addr
+ buf_len
,
1235 crc_ptr
, 4 - size
, MEMTXATTRS_UNSPECIFIED
);
1236 crc_ptr
+= 4 - size
;
1238 bd
.flags
&= ~ENET_BD_E
;
1240 /* Last buffer in frame. */
1241 bd
.flags
|= flags
| ENET_BD_L
;
1243 trace_imx_enet_receive_last(bd
.flags
);
1245 /* Indicate that we've updated the last buffer descriptor. */
1246 bd
.last_buffer
= ENET_BD_BDU
;
1247 if (bd
.option
& ENET_BD_RX_INT
) {
1248 s
->regs
[ENET_EIR
] |= ENET_INT_RXF
;
1251 if (bd
.option
& ENET_BD_RX_INT
) {
1252 s
->regs
[ENET_EIR
] |= ENET_INT_RXB
;
1255 imx_enet_write_bd(&bd
, addr
);
1256 /* Advance to the next descriptor. */
1257 if ((bd
.flags
& ENET_BD_W
) != 0) {
1258 addr
= s
->regs
[ENET_RDSR
];
1263 s
->rx_descriptor
= addr
;
1264 imx_eth_enable_rx(s
, false);
1269 static ssize_t
imx_eth_receive(NetClientState
*nc
, const uint8_t *buf
,
1272 IMXFECState
*s
= IMX_FEC(qemu_get_nic_opaque(nc
));
1274 if (!s
->is_fec
&& (s
->regs
[ENET_ECR
] & ENET_ECR_EN1588
)) {
1275 return imx_enet_receive(nc
, buf
, len
);
1277 return imx_fec_receive(nc
, buf
, len
);
1281 static const MemoryRegionOps imx_eth_ops
= {
1282 .read
= imx_eth_read
,
1283 .write
= imx_eth_write
,
1284 .valid
.min_access_size
= 4,
1285 .valid
.max_access_size
= 4,
1286 .endianness
= DEVICE_NATIVE_ENDIAN
,
1289 static void imx_eth_cleanup(NetClientState
*nc
)
1291 IMXFECState
*s
= IMX_FEC(qemu_get_nic_opaque(nc
));
1296 static NetClientInfo imx_eth_net_info
= {
1297 .type
= NET_CLIENT_DRIVER_NIC
,
1298 .size
= sizeof(NICState
),
1299 .can_receive
= imx_eth_can_receive
,
1300 .receive
= imx_eth_receive
,
1301 .cleanup
= imx_eth_cleanup
,
1302 .link_status_changed
= imx_eth_set_link
,
1306 static void imx_eth_realize(DeviceState
*dev
, Error
**errp
)
1308 IMXFECState
*s
= IMX_FEC(dev
);
1309 SysBusDevice
*sbd
= SYS_BUS_DEVICE(dev
);
1311 memory_region_init_io(&s
->iomem
, OBJECT(dev
), &imx_eth_ops
, s
,
1312 TYPE_IMX_FEC
, FSL_IMX25_FEC_SIZE
);
1313 sysbus_init_mmio(sbd
, &s
->iomem
);
1314 sysbus_init_irq(sbd
, &s
->irq
[0]);
1315 sysbus_init_irq(sbd
, &s
->irq
[1]);
1317 qemu_macaddr_default_if_unset(&s
->conf
.macaddr
);
1319 s
->nic
= qemu_new_nic(&imx_eth_net_info
, &s
->conf
,
1320 object_get_typename(OBJECT(dev
)),
1323 qemu_format_nic_info_str(qemu_get_queue(s
->nic
), s
->conf
.macaddr
.a
);
1326 static Property imx_eth_properties
[] = {
1327 DEFINE_NIC_PROPERTIES(IMXFECState
, conf
),
1328 DEFINE_PROP_UINT32("tx-ring-num", IMXFECState
, tx_ring_num
, 1),
1329 DEFINE_PROP_UINT32("phy-num", IMXFECState
, phy_num
, 0),
1330 DEFINE_PROP_END_OF_LIST(),
1333 static void imx_eth_class_init(ObjectClass
*klass
, void *data
)
1335 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1337 dc
->vmsd
= &vmstate_imx_eth
;
1338 dc
->reset
= imx_eth_reset
;
1339 device_class_set_props(dc
, imx_eth_properties
);
1340 dc
->realize
= imx_eth_realize
;
1341 dc
->desc
= "i.MX FEC/ENET Ethernet Controller";
1344 static void imx_fec_init(Object
*obj
)
1346 IMXFECState
*s
= IMX_FEC(obj
);
1351 static void imx_enet_init(Object
*obj
)
1353 IMXFECState
*s
= IMX_FEC(obj
);
1358 static const TypeInfo imx_fec_info
= {
1359 .name
= TYPE_IMX_FEC
,
1360 .parent
= TYPE_SYS_BUS_DEVICE
,
1361 .instance_size
= sizeof(IMXFECState
),
1362 .instance_init
= imx_fec_init
,
1363 .class_init
= imx_eth_class_init
,
1366 static const TypeInfo imx_enet_info
= {
1367 .name
= TYPE_IMX_ENET
,
1368 .parent
= TYPE_IMX_FEC
,
1369 .instance_init
= imx_enet_init
,
1372 static void imx_eth_register_types(void)
1374 type_register_static(&imx_fec_info
);
1375 type_register_static(&imx_enet_info
);
1378 type_init(imx_eth_register_types
)