2 * QEMU model of Xilinx AXI-Ethernet.
4 * Copyright (c) 2011 Edgar E. Iglesias.
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "hw/sysbus.h"
28 #include "net/checksum.h"
29 #include "qapi/qmp/qerror.h"
31 #include "hw/stream.h"
35 #define TYPE_XILINX_AXI_ENET "xlnx.axi-ethernet"
36 #define TYPE_XILINX_AXI_ENET_DATA_STREAM "xilinx-axienet-data-stream"
37 #define TYPE_XILINX_AXI_ENET_CONTROL_STREAM "xilinx-axienet-control-stream"
39 #define XILINX_AXI_ENET(obj) \
40 OBJECT_CHECK(XilinxAXIEnet, (obj), TYPE_XILINX_AXI_ENET)
42 #define XILINX_AXI_ENET_DATA_STREAM(obj) \
43 OBJECT_CHECK(XilinxAXIEnetStreamSlave, (obj),\
44 TYPE_XILINX_AXI_ENET_DATA_STREAM)
46 #define XILINX_AXI_ENET_CONTROL_STREAM(obj) \
47 OBJECT_CHECK(XilinxAXIEnetStreamSlave, (obj),\
48 TYPE_XILINX_AXI_ENET_CONTROL_STREAM)
50 /* Advertisement control register. */
51 #define ADVERTISE_10HALF 0x0020 /* Try for 10mbps half-duplex */
52 #define ADVERTISE_10FULL 0x0040 /* Try for 10mbps full-duplex */
53 #define ADVERTISE_100HALF 0x0080 /* Try for 100mbps half-duplex */
54 #define ADVERTISE_100FULL 0x0100 /* Try for 100mbps full-duplex */
56 #define CONTROL_PAYLOAD_WORDS 5
57 #define CONTROL_PAYLOAD_SIZE (CONTROL_PAYLOAD_WORDS * (sizeof(uint32_t)))
64 unsigned int (*read
)(struct PHY
*phy
, unsigned int req
);
65 void (*write
)(struct PHY
*phy
, unsigned int req
,
69 static unsigned int tdk_read(struct PHY
*phy
, unsigned int req
)
82 /* Speeds and modes. */
83 r
|= (1 << 13) | (1 << 14);
84 r
|= (1 << 11) | (1 << 12);
85 r
|= (1 << 5); /* Autoneg complete. */
86 r
|= (1 << 3); /* Autoneg able. */
87 r
|= (1 << 2); /* link. */
88 r
|= (1 << 1); /* link. */
91 /* Link partner ability.
92 We are kind; always agree with whatever best mode
93 the guest advertises. */
94 r
= 1 << 14; /* Success. */
95 /* Copy advertised modes. */
96 r
|= phy
->regs
[4] & (15 << 5);
97 /* Autoneg support. */
101 /* Marvel PHY on many xilinx boards. */
102 r
= 0x8000; /* 1000Mb */
106 /* Diagnostics reg. */
114 /* Are we advertising 100 half or 100 duplex ? */
115 speed_100
= !!(phy
->regs
[4] & ADVERTISE_100HALF
);
116 speed_100
|= !!(phy
->regs
[4] & ADVERTISE_100FULL
);
118 /* Are we advertising 10 duplex or 100 duplex ? */
119 duplex
= !!(phy
->regs
[4] & ADVERTISE_100FULL
);
120 duplex
|= !!(phy
->regs
[4] & ADVERTISE_10FULL
);
121 r
= (speed_100
<< 10) | (duplex
<< 11);
126 r
= phy
->regs
[regnum
];
129 DPHY(qemu_log("\n%s %x = reg[%d]\n", __func__
, r
, regnum
));
134 tdk_write(struct PHY
*phy
, unsigned int req
, unsigned int data
)
139 DPHY(qemu_log("%s reg[%d] = %x\n", __func__
, regnum
, data
));
142 phy
->regs
[regnum
] = data
;
148 tdk_init(struct PHY
*phy
)
150 phy
->regs
[0] = 0x3100;
152 phy
->regs
[2] = 0x0300;
153 phy
->regs
[3] = 0xe400;
154 /* Autonegotiation advertisement reg. */
155 phy
->regs
[4] = 0x01E1;
158 phy
->read
= tdk_read
;
159 phy
->write
= tdk_write
;
185 struct PHY
*devs
[32];
189 mdio_attach(struct MDIOBus
*bus
, struct PHY
*phy
, unsigned int addr
)
191 bus
->devs
[addr
& 0x1f] = phy
;
194 #ifdef USE_THIS_DEAD_CODE
196 mdio_detach(struct MDIOBus
*bus
, struct PHY
*phy
, unsigned int addr
)
198 bus
->devs
[addr
& 0x1f] = NULL
;
202 static uint16_t mdio_read_req(struct MDIOBus
*bus
, unsigned int addr
,
208 phy
= bus
->devs
[addr
];
209 if (phy
&& phy
->read
) {
210 data
= phy
->read(phy
, reg
);
214 DPHY(qemu_log("%s addr=%d reg=%d data=%x\n", __func__
, addr
, reg
, data
));
218 static void mdio_write_req(struct MDIOBus
*bus
, unsigned int addr
,
219 unsigned int reg
, uint16_t data
)
223 DPHY(qemu_log("%s addr=%d reg=%d data=%x\n", __func__
, addr
, reg
, data
));
224 phy
= bus
->devs
[addr
];
225 if (phy
&& phy
->write
) {
226 phy
->write(phy
, reg
, data
);
232 #define R_RAF (0x000 / 4)
234 RAF_MCAST_REJ
= (1 << 1),
235 RAF_BCAST_REJ
= (1 << 2),
236 RAF_EMCF_EN
= (1 << 12),
237 RAF_NEWFUNC_EN
= (1 << 11)
240 #define R_IS (0x00C / 4)
242 IS_HARD_ACCESS_COMPLETE
= 1,
243 IS_AUTONEG
= (1 << 1),
244 IS_RX_COMPLETE
= (1 << 2),
245 IS_RX_REJECT
= (1 << 3),
246 IS_TX_COMPLETE
= (1 << 5),
247 IS_RX_DCM_LOCK
= (1 << 6),
248 IS_MGM_RDY
= (1 << 7),
249 IS_PHY_RST_DONE
= (1 << 8),
252 #define R_IP (0x010 / 4)
253 #define R_IE (0x014 / 4)
254 #define R_UAWL (0x020 / 4)
255 #define R_UAWU (0x024 / 4)
256 #define R_PPST (0x030 / 4)
258 PPST_LINKSTATUS
= (1 << 0),
259 PPST_PHY_LINKSTATUS
= (1 << 7),
262 #define R_STATS_RX_BYTESL (0x200 / 4)
263 #define R_STATS_RX_BYTESH (0x204 / 4)
264 #define R_STATS_TX_BYTESL (0x208 / 4)
265 #define R_STATS_TX_BYTESH (0x20C / 4)
266 #define R_STATS_RXL (0x290 / 4)
267 #define R_STATS_RXH (0x294 / 4)
268 #define R_STATS_RX_BCASTL (0x2a0 / 4)
269 #define R_STATS_RX_BCASTH (0x2a4 / 4)
270 #define R_STATS_RX_MCASTL (0x2a8 / 4)
271 #define R_STATS_RX_MCASTH (0x2ac / 4)
273 #define R_RCW0 (0x400 / 4)
274 #define R_RCW1 (0x404 / 4)
276 RCW1_VLAN
= (1 << 27),
278 RCW1_FCS
= (1 << 29),
279 RCW1_JUM
= (1 << 30),
280 RCW1_RST
= (1 << 31),
283 #define R_TC (0x408 / 4)
292 #define R_EMMC (0x410 / 4)
294 EMMC_LINKSPEED_10MB
= (0 << 30),
295 EMMC_LINKSPEED_100MB
= (1 << 30),
296 EMMC_LINKSPEED_1000MB
= (2 << 30),
299 #define R_PHYC (0x414 / 4)
301 #define R_MC (0x500 / 4)
302 #define MC_EN (1 << 6)
304 #define R_MCR (0x504 / 4)
305 #define R_MWD (0x508 / 4)
306 #define R_MRD (0x50c / 4)
307 #define R_MIS (0x600 / 4)
308 #define R_MIP (0x620 / 4)
309 #define R_MIE (0x640 / 4)
310 #define R_MIC (0x640 / 4)
312 #define R_UAW0 (0x700 / 4)
313 #define R_UAW1 (0x704 / 4)
314 #define R_FMI (0x708 / 4)
315 #define R_AF0 (0x710 / 4)
316 #define R_AF1 (0x714 / 4)
317 #define R_MAX (0x34 / 4)
319 /* Indirect registers. */
321 struct MDIOBus mdio_bus
;
327 typedef struct XilinxAXIEnetStreamSlave XilinxAXIEnetStreamSlave
;
328 typedef struct XilinxAXIEnet XilinxAXIEnet
;
330 struct XilinxAXIEnetStreamSlave
{
333 struct XilinxAXIEnet
*enet
;
336 struct XilinxAXIEnet
{
340 StreamSlave
*tx_data_dev
;
341 StreamSlave
*tx_control_dev
;
342 XilinxAXIEnetStreamSlave rx_data_dev
;
343 XilinxAXIEnetStreamSlave rx_control_dev
;
374 /* Receive configuration words. */
376 /* Transmit config. */
381 /* Unicast Address Word. */
383 /* Unicast address filter used with extended mcast. */
387 uint32_t regs
[R_MAX
];
389 /* Multicast filter addrs. */
390 uint32_t maddr
[4][2];
391 /* 32K x 1 lookup filter. */
392 uint32_t ext_mtable
[1024];
394 uint32_t hdr
[CONTROL_PAYLOAD_WORDS
];
400 uint8_t rxapp
[CONTROL_PAYLOAD_SIZE
];
404 static void axienet_rx_reset(XilinxAXIEnet
*s
)
406 s
->rcw
[1] = RCW1_JUM
| RCW1_FCS
| RCW1_RX
| RCW1_VLAN
;
409 static void axienet_tx_reset(XilinxAXIEnet
*s
)
411 s
->tc
= TC_JUM
| TC_TX
| TC_VLAN
;
414 static inline int axienet_rx_resetting(XilinxAXIEnet
*s
)
416 return s
->rcw
[1] & RCW1_RST
;
419 static inline int axienet_rx_enabled(XilinxAXIEnet
*s
)
421 return s
->rcw
[1] & RCW1_RX
;
424 static inline int axienet_extmcf_enabled(XilinxAXIEnet
*s
)
426 return !!(s
->regs
[R_RAF
] & RAF_EMCF_EN
);
429 static inline int axienet_newfunc_enabled(XilinxAXIEnet
*s
)
431 return !!(s
->regs
[R_RAF
] & RAF_NEWFUNC_EN
);
434 static void xilinx_axienet_reset(DeviceState
*d
)
436 XilinxAXIEnet
*s
= XILINX_AXI_ENET(d
);
441 s
->regs
[R_PPST
] = PPST_LINKSTATUS
| PPST_PHY_LINKSTATUS
;
442 s
->regs
[R_IS
] = IS_AUTONEG
| IS_RX_DCM_LOCK
| IS_MGM_RDY
| IS_PHY_RST_DONE
;
444 s
->emmc
= EMMC_LINKSPEED_100MB
;
447 static void enet_update_irq(XilinxAXIEnet
*s
)
449 s
->regs
[R_IP
] = s
->regs
[R_IS
] & s
->regs
[R_IE
];
450 qemu_set_irq(s
->irq
, !!s
->regs
[R_IP
]);
453 static uint64_t enet_read(void *opaque
, hwaddr addr
, unsigned size
)
455 XilinxAXIEnet
*s
= opaque
;
462 r
= s
->rcw
[addr
& 1];
478 r
= s
->mii
.regs
[addr
& 3] | (1 << 7); /* Always ready. */
481 case R_STATS_RX_BYTESL
:
482 case R_STATS_RX_BYTESH
:
483 r
= s
->stats
.rx_bytes
>> (32 * (addr
& 1));
486 case R_STATS_TX_BYTESL
:
487 case R_STATS_TX_BYTESH
:
488 r
= s
->stats
.tx_bytes
>> (32 * (addr
& 1));
493 r
= s
->stats
.rx
>> (32 * (addr
& 1));
495 case R_STATS_RX_BCASTL
:
496 case R_STATS_RX_BCASTH
:
497 r
= s
->stats
.rx_bcast
>> (32 * (addr
& 1));
499 case R_STATS_RX_MCASTL
:
500 case R_STATS_RX_MCASTH
:
501 r
= s
->stats
.rx_mcast
>> (32 * (addr
& 1));
507 r
= s
->mii
.regs
[addr
& 3];
512 r
= s
->uaw
[addr
& 1];
517 r
= s
->ext_uaw
[addr
& 1];
526 r
= s
->maddr
[s
->fmi
& 3][addr
& 1];
529 case 0x8000 ... 0x83ff:
530 r
= s
->ext_mtable
[addr
- 0x8000];
534 if (addr
< ARRAY_SIZE(s
->regs
)) {
537 DENET(qemu_log("%s addr=" TARGET_FMT_plx
" v=%x\n",
538 __func__
, addr
* 4, r
));
544 static void enet_write(void *opaque
, hwaddr addr
,
545 uint64_t value
, unsigned size
)
547 XilinxAXIEnet
*s
= opaque
;
548 struct TEMAC
*t
= &s
->TEMAC
;
554 s
->rcw
[addr
& 1] = value
;
555 if ((addr
& 1) && value
& RCW1_RST
) {
558 qemu_flush_queued_packets(qemu_get_queue(s
->nic
));
564 if (value
& TC_RST
) {
578 value
&= ((1 << 7) - 1);
580 /* Enable the MII. */
582 unsigned int miiclkdiv
= value
& ((1 << 6) - 1);
584 qemu_log("AXIENET: MDIO enabled but MDIOCLK is zero!\n");
591 unsigned int phyaddr
= (value
>> 24) & 0x1f;
592 unsigned int regaddr
= (value
>> 16) & 0x1f;
593 unsigned int op
= (value
>> 14) & 3;
594 unsigned int initiate
= (value
>> 11) & 1;
598 mdio_write_req(&t
->mdio_bus
, phyaddr
, regaddr
, s
->mii
.mwd
);
599 } else if (op
== 2) {
600 s
->mii
.mrd
= mdio_read_req(&t
->mdio_bus
, phyaddr
, regaddr
);
602 qemu_log("AXIENET: invalid MDIOBus OP=%d\n", op
);
611 s
->mii
.regs
[addr
& 3] = value
;
617 s
->uaw
[addr
& 1] = value
;
622 s
->ext_uaw
[addr
& 1] = value
;
631 s
->maddr
[s
->fmi
& 3][addr
& 1] = value
;
635 s
->regs
[addr
] &= ~value
;
638 case 0x8000 ... 0x83ff:
639 s
->ext_mtable
[addr
- 0x8000] = value
;
643 DENET(qemu_log("%s addr=" TARGET_FMT_plx
" v=%x\n",
644 __func__
, addr
* 4, (unsigned)value
));
645 if (addr
< ARRAY_SIZE(s
->regs
)) {
646 s
->regs
[addr
] = value
;
653 static const MemoryRegionOps enet_ops
= {
656 .endianness
= DEVICE_LITTLE_ENDIAN
,
659 static int eth_can_rx(NetClientState
*nc
)
661 XilinxAXIEnet
*s
= qemu_get_nic_opaque(nc
);
664 return !s
->rxsize
&& !axienet_rx_resetting(s
) && axienet_rx_enabled(s
);
667 static int enet_match_addr(const uint8_t *buf
, uint32_t f0
, uint32_t f1
)
671 if (memcmp(buf
, &f0
, 4)) {
675 if (buf
[4] != (f1
& 0xff) || buf
[5] != ((f1
>> 8) & 0xff)) {
682 static void axienet_eth_rx_notify(void *opaque
)
684 XilinxAXIEnet
*s
= XILINX_AXI_ENET(opaque
);
686 while (s
->rxappsize
&& stream_can_push(s
->tx_control_dev
,
687 axienet_eth_rx_notify
, s
)) {
688 size_t ret
= stream_push(s
->tx_control_dev
,
689 (void *)s
->rxapp
+ CONTROL_PAYLOAD_SIZE
690 - s
->rxappsize
, s
->rxappsize
);
694 while (s
->rxsize
&& stream_can_push(s
->tx_data_dev
,
695 axienet_eth_rx_notify
, s
)) {
696 size_t ret
= stream_push(s
->tx_data_dev
, (void *)s
->rxmem
+ s
->rxpos
,
701 s
->regs
[R_IS
] |= IS_RX_COMPLETE
;
707 static ssize_t
eth_rx(NetClientState
*nc
, const uint8_t *buf
, size_t size
)
709 XilinxAXIEnet
*s
= qemu_get_nic_opaque(nc
);
710 static const unsigned char sa_bcast
[6] = {0xff, 0xff, 0xff,
712 static const unsigned char sa_ipmcast
[3] = {0x01, 0x00, 0x52};
713 uint32_t app
[CONTROL_PAYLOAD_WORDS
] = {0};
714 int promisc
= s
->fmi
& (1 << 31);
715 int unicast
, broadcast
, multicast
, ip_multicast
= 0;
720 DENET(qemu_log("%s: %zd bytes\n", __func__
, size
));
722 unicast
= ~buf
[0] & 0x1;
723 broadcast
= memcmp(buf
, sa_bcast
, 6) == 0;
724 multicast
= !unicast
&& !broadcast
;
725 if (multicast
&& (memcmp(sa_ipmcast
, buf
, sizeof sa_ipmcast
) == 0)) {
729 /* Jumbo or vlan sizes ? */
730 if (!(s
->rcw
[1] & RCW1_JUM
)) {
731 if (size
> 1518 && size
<= 1522 && !(s
->rcw
[1] & RCW1_VLAN
)) {
736 /* Basic Address filters. If you want to use the extended filters
737 you'll generally have to place the ethernet mac into promiscuous mode
738 to avoid the basic filtering from dropping most frames. */
741 if (!enet_match_addr(buf
, s
->uaw
[0], s
->uaw
[1])) {
747 if (s
->regs
[R_RAF
] & RAF_BCAST_REJ
) {
754 if (s
->regs
[R_RAF
] & RAF_MCAST_REJ
) {
758 for (i
= 0; i
< 4; i
++) {
759 if (enet_match_addr(buf
, s
->maddr
[i
][0], s
->maddr
[i
][1])) {
772 /* Extended mcast filtering enabled? */
773 if (axienet_newfunc_enabled(s
) && axienet_extmcf_enabled(s
)) {
775 if (!enet_match_addr(buf
, s
->ext_uaw
[0], s
->ext_uaw
[1])) {
781 if (s
->regs
[R_RAF
] & RAF_BCAST_REJ
) {
788 if (!memcmp(buf
, sa_ipmcast
, 3)) {
792 idx
= (buf
[4] & 0x7f) << 8;
795 bit
= 1 << (idx
& 0x1f);
798 if (!(s
->ext_mtable
[idx
] & bit
)) {
806 s
->regs
[R_IS
] |= IS_RX_REJECT
;
811 if (size
> (s
->c_rxmem
- 4)) {
812 size
= s
->c_rxmem
- 4;
815 memcpy(s
->rxmem
, buf
, size
);
816 memset(s
->rxmem
+ size
, 0, 4); /* Clear the FCS. */
818 if (s
->rcw
[1] & RCW1_FCS
) {
819 size
+= 4; /* fcs is inband. */
823 csum32
= net_checksum_add(size
- 14, (uint8_t *)s
->rxmem
+ 14);
825 csum32
= (csum32
& 0xffff) + (csum32
>> 16);
826 /* And twice to get rid of possible carries. */
827 csum16
= (csum32
& 0xffff) + (csum32
>> 16);
829 app
[4] = size
& 0xffff;
831 s
->stats
.rx_bytes
+= size
;
835 app
[2] |= 1 | (ip_multicast
<< 1);
836 } else if (broadcast
) {
846 for (i
= 0; i
< ARRAY_SIZE(app
); ++i
) {
847 app
[i
] = cpu_to_le32(app
[i
]);
849 s
->rxappsize
= CONTROL_PAYLOAD_SIZE
;
850 memcpy(s
->rxapp
, app
, s
->rxappsize
);
851 axienet_eth_rx_notify(s
);
857 static void eth_cleanup(NetClientState
*nc
)
860 XilinxAXIEnet
*s
= qemu_get_nic_opaque(nc
);
866 xilinx_axienet_control_stream_push(StreamSlave
*obj
, uint8_t *buf
, size_t len
)
869 XilinxAXIEnetStreamSlave
*cs
= XILINX_AXI_ENET_CONTROL_STREAM(obj
);
870 XilinxAXIEnet
*s
= cs
->enet
;
872 if (len
!= CONTROL_PAYLOAD_SIZE
) {
873 hw_error("AXI Enet requires %d byte control stream payload\n",
874 (int)CONTROL_PAYLOAD_SIZE
);
877 memcpy(s
->hdr
, buf
, len
);
879 for (i
= 0; i
< ARRAY_SIZE(s
->hdr
); ++i
) {
880 s
->hdr
[i
] = le32_to_cpu(s
->hdr
[i
]);
886 xilinx_axienet_data_stream_push(StreamSlave
*obj
, uint8_t *buf
, size_t size
)
888 XilinxAXIEnetStreamSlave
*ds
= XILINX_AXI_ENET_DATA_STREAM(obj
);
889 XilinxAXIEnet
*s
= ds
->enet
;
892 if (!(s
->tc
& TC_TX
)) {
896 /* Jumbo or vlan sizes ? */
897 if (!(s
->tc
& TC_JUM
)) {
898 if (size
> 1518 && size
<= 1522 && !(s
->tc
& TC_VLAN
)) {
904 unsigned int start_off
= s
->hdr
[1] >> 16;
905 unsigned int write_off
= s
->hdr
[1] & 0xffff;
909 tmp_csum
= net_checksum_add(size
- start_off
,
910 (uint8_t *)buf
+ start_off
);
911 /* Accumulate the seed. */
912 tmp_csum
+= s
->hdr
[2] & 0xffff;
914 /* Fold the 32bit partial checksum. */
915 csum
= net_checksum_finish(tmp_csum
);
918 buf
[write_off
] = csum
>> 8;
919 buf
[write_off
+ 1] = csum
& 0xff;
922 qemu_send_packet(qemu_get_queue(s
->nic
), buf
, size
);
924 s
->stats
.tx_bytes
+= size
;
925 s
->regs
[R_IS
] |= IS_TX_COMPLETE
;
931 static NetClientInfo net_xilinx_enet_info
= {
932 .type
= NET_CLIENT_OPTIONS_KIND_NIC
,
933 .size
= sizeof(NICState
),
934 .can_receive
= eth_can_rx
,
936 .cleanup
= eth_cleanup
,
939 static void xilinx_enet_realize(DeviceState
*dev
, Error
**errp
)
941 XilinxAXIEnet
*s
= XILINX_AXI_ENET(dev
);
942 XilinxAXIEnetStreamSlave
*ds
= XILINX_AXI_ENET_DATA_STREAM(&s
->rx_data_dev
);
943 XilinxAXIEnetStreamSlave
*cs
= XILINX_AXI_ENET_CONTROL_STREAM(
945 Error
*local_errp
= NULL
;
947 object_property_add_link(OBJECT(ds
), "enet", "xlnx.axi-ethernet",
948 (Object
**) &ds
->enet
, &local_errp
);
949 object_property_add_link(OBJECT(cs
), "enet", "xlnx.axi-ethernet",
950 (Object
**) &cs
->enet
, &local_errp
);
952 goto xilinx_enet_realize_fail
;
954 object_property_set_link(OBJECT(ds
), OBJECT(s
), "enet", &local_errp
);
955 object_property_set_link(OBJECT(cs
), OBJECT(s
), "enet", &local_errp
);
957 goto xilinx_enet_realize_fail
;
960 qemu_macaddr_default_if_unset(&s
->conf
.macaddr
);
961 s
->nic
= qemu_new_nic(&net_xilinx_enet_info
, &s
->conf
,
962 object_get_typename(OBJECT(dev
)), dev
->id
, s
);
963 qemu_format_nic_info_str(qemu_get_queue(s
->nic
), s
->conf
.macaddr
.a
);
965 tdk_init(&s
->TEMAC
.phy
);
966 mdio_attach(&s
->TEMAC
.mdio_bus
, &s
->TEMAC
.phy
, s
->c_phyaddr
);
970 s
->rxmem
= g_malloc(s
->c_rxmem
);
973 xilinx_enet_realize_fail
:
979 static void xilinx_enet_init(Object
*obj
)
981 XilinxAXIEnet
*s
= XILINX_AXI_ENET(obj
);
982 SysBusDevice
*sbd
= SYS_BUS_DEVICE(obj
);
985 object_property_add_link(obj
, "axistream-connected", TYPE_STREAM_SLAVE
,
986 (Object
**) &s
->tx_data_dev
, &errp
);
987 assert_no_error(errp
);
988 object_property_add_link(obj
, "axistream-control-connected",
990 (Object
**) &s
->tx_control_dev
, &errp
);
991 assert_no_error(errp
);
993 object_initialize(&s
->rx_data_dev
, sizeof(s
->rx_data_dev
),
994 TYPE_XILINX_AXI_ENET_DATA_STREAM
);
995 object_initialize(&s
->rx_control_dev
, sizeof(s
->rx_control_dev
),
996 TYPE_XILINX_AXI_ENET_CONTROL_STREAM
);
997 object_property_add_child(OBJECT(s
), "axistream-connected-target",
998 (Object
*)&s
->rx_data_dev
, &errp
);
999 assert_no_error(errp
);
1000 object_property_add_child(OBJECT(s
), "axistream-control-connected-target",
1001 (Object
*)&s
->rx_control_dev
, &errp
);
1002 assert_no_error(errp
);
1004 sysbus_init_irq(sbd
, &s
->irq
);
1006 memory_region_init_io(&s
->iomem
, OBJECT(s
), &enet_ops
, s
, "enet", 0x40000);
1007 sysbus_init_mmio(sbd
, &s
->iomem
);
1010 static Property xilinx_enet_properties
[] = {
1011 DEFINE_PROP_UINT32("phyaddr", XilinxAXIEnet
, c_phyaddr
, 7),
1012 DEFINE_PROP_UINT32("rxmem", XilinxAXIEnet
, c_rxmem
, 0x1000),
1013 DEFINE_PROP_UINT32("txmem", XilinxAXIEnet
, c_txmem
, 0x1000),
1014 DEFINE_NIC_PROPERTIES(XilinxAXIEnet
, conf
),
1015 DEFINE_PROP_END_OF_LIST(),
1018 static void xilinx_enet_class_init(ObjectClass
*klass
, void *data
)
1020 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1022 dc
->realize
= xilinx_enet_realize
;
1023 dc
->props
= xilinx_enet_properties
;
1024 dc
->reset
= xilinx_axienet_reset
;
1027 static void xilinx_enet_stream_class_init(ObjectClass
*klass
, void *data
)
1029 StreamSlaveClass
*ssc
= STREAM_SLAVE_CLASS(klass
);
1034 static const TypeInfo xilinx_enet_info
= {
1035 .name
= TYPE_XILINX_AXI_ENET
,
1036 .parent
= TYPE_SYS_BUS_DEVICE
,
1037 .instance_size
= sizeof(XilinxAXIEnet
),
1038 .class_init
= xilinx_enet_class_init
,
1039 .instance_init
= xilinx_enet_init
,
1042 static const TypeInfo xilinx_enet_data_stream_info
= {
1043 .name
= TYPE_XILINX_AXI_ENET_DATA_STREAM
,
1044 .parent
= TYPE_OBJECT
,
1045 .instance_size
= sizeof(struct XilinxAXIEnetStreamSlave
),
1046 .class_init
= xilinx_enet_stream_class_init
,
1047 .class_data
= xilinx_axienet_data_stream_push
,
1048 .interfaces
= (InterfaceInfo
[]) {
1049 { TYPE_STREAM_SLAVE
},
1054 static const TypeInfo xilinx_enet_control_stream_info
= {
1055 .name
= TYPE_XILINX_AXI_ENET_CONTROL_STREAM
,
1056 .parent
= TYPE_OBJECT
,
1057 .instance_size
= sizeof(struct XilinxAXIEnetStreamSlave
),
1058 .class_init
= xilinx_enet_stream_class_init
,
1059 .class_data
= xilinx_axienet_control_stream_push
,
1060 .interfaces
= (InterfaceInfo
[]) {
1061 { TYPE_STREAM_SLAVE
},
1066 static void xilinx_enet_register_types(void)
1068 type_register_static(&xilinx_enet_info
);
1069 type_register_static(&xilinx_enet_data_stream_info
);
1070 type_register_static(&xilinx_enet_control_stream_info
);
1073 type_init(xilinx_enet_register_types
)