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"
38 #define XILINX_AXI_ENET(obj) \
39 OBJECT_CHECK(XilinxAXIEnet, (obj), TYPE_XILINX_AXI_ENET)
41 #define XILINX_AXI_ENET_DATA_STREAM(obj) \
42 OBJECT_CHECK(XilinxAXIEnetStreamSlave, (obj),\
43 TYPE_XILINX_AXI_ENET_DATA_STREAM)
45 /* Advertisement control register. */
46 #define ADVERTISE_10HALF 0x0020 /* Try for 10mbps half-duplex */
47 #define ADVERTISE_10FULL 0x0040 /* Try for 10mbps full-duplex */
48 #define ADVERTISE_100HALF 0x0080 /* Try for 100mbps half-duplex */
49 #define ADVERTISE_100FULL 0x0100 /* Try for 100mbps full-duplex */
56 unsigned int (*read
)(struct PHY
*phy
, unsigned int req
);
57 void (*write
)(struct PHY
*phy
, unsigned int req
,
61 static unsigned int tdk_read(struct PHY
*phy
, unsigned int req
)
74 /* Speeds and modes. */
75 r
|= (1 << 13) | (1 << 14);
76 r
|= (1 << 11) | (1 << 12);
77 r
|= (1 << 5); /* Autoneg complete. */
78 r
|= (1 << 3); /* Autoneg able. */
79 r
|= (1 << 2); /* link. */
80 r
|= (1 << 1); /* link. */
83 /* Link partner ability.
84 We are kind; always agree with whatever best mode
85 the guest advertises. */
86 r
= 1 << 14; /* Success. */
87 /* Copy advertised modes. */
88 r
|= phy
->regs
[4] & (15 << 5);
89 /* Autoneg support. */
93 /* Marvel PHY on many xilinx boards. */
94 r
= 0x8000; /* 1000Mb */
98 /* Diagnostics reg. */
106 /* Are we advertising 100 half or 100 duplex ? */
107 speed_100
= !!(phy
->regs
[4] & ADVERTISE_100HALF
);
108 speed_100
|= !!(phy
->regs
[4] & ADVERTISE_100FULL
);
110 /* Are we advertising 10 duplex or 100 duplex ? */
111 duplex
= !!(phy
->regs
[4] & ADVERTISE_100FULL
);
112 duplex
|= !!(phy
->regs
[4] & ADVERTISE_10FULL
);
113 r
= (speed_100
<< 10) | (duplex
<< 11);
118 r
= phy
->regs
[regnum
];
121 DPHY(qemu_log("\n%s %x = reg[%d]\n", __func__
, r
, regnum
));
126 tdk_write(struct PHY
*phy
, unsigned int req
, unsigned int data
)
131 DPHY(qemu_log("%s reg[%d] = %x\n", __func__
, regnum
, data
));
134 phy
->regs
[regnum
] = data
;
140 tdk_init(struct PHY
*phy
)
142 phy
->regs
[0] = 0x3100;
144 phy
->regs
[2] = 0x0300;
145 phy
->regs
[3] = 0xe400;
146 /* Autonegotiation advertisement reg. */
147 phy
->regs
[4] = 0x01E1;
150 phy
->read
= tdk_read
;
151 phy
->write
= tdk_write
;
177 struct PHY
*devs
[32];
181 mdio_attach(struct MDIOBus
*bus
, struct PHY
*phy
, unsigned int addr
)
183 bus
->devs
[addr
& 0x1f] = phy
;
186 #ifdef USE_THIS_DEAD_CODE
188 mdio_detach(struct MDIOBus
*bus
, struct PHY
*phy
, unsigned int addr
)
190 bus
->devs
[addr
& 0x1f] = NULL
;
194 static uint16_t mdio_read_req(struct MDIOBus
*bus
, unsigned int addr
,
200 phy
= bus
->devs
[addr
];
201 if (phy
&& phy
->read
) {
202 data
= phy
->read(phy
, reg
);
206 DPHY(qemu_log("%s addr=%d reg=%d data=%x\n", __func__
, addr
, reg
, data
));
210 static void mdio_write_req(struct MDIOBus
*bus
, unsigned int addr
,
211 unsigned int reg
, uint16_t data
)
215 DPHY(qemu_log("%s addr=%d reg=%d data=%x\n", __func__
, addr
, reg
, data
));
216 phy
= bus
->devs
[addr
];
217 if (phy
&& phy
->write
) {
218 phy
->write(phy
, reg
, data
);
224 #define R_RAF (0x000 / 4)
226 RAF_MCAST_REJ
= (1 << 1),
227 RAF_BCAST_REJ
= (1 << 2),
228 RAF_EMCF_EN
= (1 << 12),
229 RAF_NEWFUNC_EN
= (1 << 11)
232 #define R_IS (0x00C / 4)
234 IS_HARD_ACCESS_COMPLETE
= 1,
235 IS_AUTONEG
= (1 << 1),
236 IS_RX_COMPLETE
= (1 << 2),
237 IS_RX_REJECT
= (1 << 3),
238 IS_TX_COMPLETE
= (1 << 5),
239 IS_RX_DCM_LOCK
= (1 << 6),
240 IS_MGM_RDY
= (1 << 7),
241 IS_PHY_RST_DONE
= (1 << 8),
244 #define R_IP (0x010 / 4)
245 #define R_IE (0x014 / 4)
246 #define R_UAWL (0x020 / 4)
247 #define R_UAWU (0x024 / 4)
248 #define R_PPST (0x030 / 4)
250 PPST_LINKSTATUS
= (1 << 0),
251 PPST_PHY_LINKSTATUS
= (1 << 7),
254 #define R_STATS_RX_BYTESL (0x200 / 4)
255 #define R_STATS_RX_BYTESH (0x204 / 4)
256 #define R_STATS_TX_BYTESL (0x208 / 4)
257 #define R_STATS_TX_BYTESH (0x20C / 4)
258 #define R_STATS_RXL (0x290 / 4)
259 #define R_STATS_RXH (0x294 / 4)
260 #define R_STATS_RX_BCASTL (0x2a0 / 4)
261 #define R_STATS_RX_BCASTH (0x2a4 / 4)
262 #define R_STATS_RX_MCASTL (0x2a8 / 4)
263 #define R_STATS_RX_MCASTH (0x2ac / 4)
265 #define R_RCW0 (0x400 / 4)
266 #define R_RCW1 (0x404 / 4)
268 RCW1_VLAN
= (1 << 27),
270 RCW1_FCS
= (1 << 29),
271 RCW1_JUM
= (1 << 30),
272 RCW1_RST
= (1 << 31),
275 #define R_TC (0x408 / 4)
284 #define R_EMMC (0x410 / 4)
286 EMMC_LINKSPEED_10MB
= (0 << 30),
287 EMMC_LINKSPEED_100MB
= (1 << 30),
288 EMMC_LINKSPEED_1000MB
= (2 << 30),
291 #define R_PHYC (0x414 / 4)
293 #define R_MC (0x500 / 4)
294 #define MC_EN (1 << 6)
296 #define R_MCR (0x504 / 4)
297 #define R_MWD (0x508 / 4)
298 #define R_MRD (0x50c / 4)
299 #define R_MIS (0x600 / 4)
300 #define R_MIP (0x620 / 4)
301 #define R_MIE (0x640 / 4)
302 #define R_MIC (0x640 / 4)
304 #define R_UAW0 (0x700 / 4)
305 #define R_UAW1 (0x704 / 4)
306 #define R_FMI (0x708 / 4)
307 #define R_AF0 (0x710 / 4)
308 #define R_AF1 (0x714 / 4)
309 #define R_MAX (0x34 / 4)
311 /* Indirect registers. */
313 struct MDIOBus mdio_bus
;
319 typedef struct XilinxAXIEnetStreamSlave XilinxAXIEnetStreamSlave
;
320 typedef struct XilinxAXIEnet XilinxAXIEnet
;
322 struct XilinxAXIEnetStreamSlave
{
325 struct XilinxAXIEnet
*enet
;
328 struct XilinxAXIEnet
{
333 XilinxAXIEnetStreamSlave rx_data_dev
;
364 /* Receive configuration words. */
366 /* Transmit config. */
371 /* Unicast Address Word. */
373 /* Unicast address filter used with extended mcast. */
377 uint32_t regs
[R_MAX
];
379 /* Multicast filter addrs. */
380 uint32_t maddr
[4][2];
381 /* 32K x 1 lookup filter. */
382 uint32_t ext_mtable
[1024];
388 static void axienet_rx_reset(XilinxAXIEnet
*s
)
390 s
->rcw
[1] = RCW1_JUM
| RCW1_FCS
| RCW1_RX
| RCW1_VLAN
;
393 static void axienet_tx_reset(XilinxAXIEnet
*s
)
395 s
->tc
= TC_JUM
| TC_TX
| TC_VLAN
;
398 static inline int axienet_rx_resetting(XilinxAXIEnet
*s
)
400 return s
->rcw
[1] & RCW1_RST
;
403 static inline int axienet_rx_enabled(XilinxAXIEnet
*s
)
405 return s
->rcw
[1] & RCW1_RX
;
408 static inline int axienet_extmcf_enabled(XilinxAXIEnet
*s
)
410 return !!(s
->regs
[R_RAF
] & RAF_EMCF_EN
);
413 static inline int axienet_newfunc_enabled(XilinxAXIEnet
*s
)
415 return !!(s
->regs
[R_RAF
] & RAF_NEWFUNC_EN
);
418 static void xilinx_axienet_reset(DeviceState
*d
)
420 XilinxAXIEnet
*s
= XILINX_AXI_ENET(d
);
425 s
->regs
[R_PPST
] = PPST_LINKSTATUS
| PPST_PHY_LINKSTATUS
;
426 s
->regs
[R_IS
] = IS_AUTONEG
| IS_RX_DCM_LOCK
| IS_MGM_RDY
| IS_PHY_RST_DONE
;
428 s
->emmc
= EMMC_LINKSPEED_100MB
;
431 static void enet_update_irq(XilinxAXIEnet
*s
)
433 s
->regs
[R_IP
] = s
->regs
[R_IS
] & s
->regs
[R_IE
];
434 qemu_set_irq(s
->irq
, !!s
->regs
[R_IP
]);
437 static uint64_t enet_read(void *opaque
, hwaddr addr
, unsigned size
)
439 XilinxAXIEnet
*s
= opaque
;
446 r
= s
->rcw
[addr
& 1];
462 r
= s
->mii
.regs
[addr
& 3] | (1 << 7); /* Always ready. */
465 case R_STATS_RX_BYTESL
:
466 case R_STATS_RX_BYTESH
:
467 r
= s
->stats
.rx_bytes
>> (32 * (addr
& 1));
470 case R_STATS_TX_BYTESL
:
471 case R_STATS_TX_BYTESH
:
472 r
= s
->stats
.tx_bytes
>> (32 * (addr
& 1));
477 r
= s
->stats
.rx
>> (32 * (addr
& 1));
479 case R_STATS_RX_BCASTL
:
480 case R_STATS_RX_BCASTH
:
481 r
= s
->stats
.rx_bcast
>> (32 * (addr
& 1));
483 case R_STATS_RX_MCASTL
:
484 case R_STATS_RX_MCASTH
:
485 r
= s
->stats
.rx_mcast
>> (32 * (addr
& 1));
491 r
= s
->mii
.regs
[addr
& 3];
496 r
= s
->uaw
[addr
& 1];
501 r
= s
->ext_uaw
[addr
& 1];
510 r
= s
->maddr
[s
->fmi
& 3][addr
& 1];
513 case 0x8000 ... 0x83ff:
514 r
= s
->ext_mtable
[addr
- 0x8000];
518 if (addr
< ARRAY_SIZE(s
->regs
)) {
521 DENET(qemu_log("%s addr=" TARGET_FMT_plx
" v=%x\n",
522 __func__
, addr
* 4, r
));
528 static void enet_write(void *opaque
, hwaddr addr
,
529 uint64_t value
, unsigned size
)
531 XilinxAXIEnet
*s
= opaque
;
532 struct TEMAC
*t
= &s
->TEMAC
;
538 s
->rcw
[addr
& 1] = value
;
539 if ((addr
& 1) && value
& RCW1_RST
) {
542 qemu_flush_queued_packets(qemu_get_queue(s
->nic
));
548 if (value
& TC_RST
) {
562 value
&= ((1 < 7) - 1);
564 /* Enable the MII. */
566 unsigned int miiclkdiv
= value
& ((1 << 6) - 1);
568 qemu_log("AXIENET: MDIO enabled but MDIOCLK is zero!\n");
575 unsigned int phyaddr
= (value
>> 24) & 0x1f;
576 unsigned int regaddr
= (value
>> 16) & 0x1f;
577 unsigned int op
= (value
>> 14) & 3;
578 unsigned int initiate
= (value
>> 11) & 1;
582 mdio_write_req(&t
->mdio_bus
, phyaddr
, regaddr
, s
->mii
.mwd
);
583 } else if (op
== 2) {
584 s
->mii
.mrd
= mdio_read_req(&t
->mdio_bus
, phyaddr
, regaddr
);
586 qemu_log("AXIENET: invalid MDIOBus OP=%d\n", op
);
595 s
->mii
.regs
[addr
& 3] = value
;
601 s
->uaw
[addr
& 1] = value
;
606 s
->ext_uaw
[addr
& 1] = value
;
615 s
->maddr
[s
->fmi
& 3][addr
& 1] = value
;
619 s
->regs
[addr
] &= ~value
;
622 case 0x8000 ... 0x83ff:
623 s
->ext_mtable
[addr
- 0x8000] = value
;
627 DENET(qemu_log("%s addr=" TARGET_FMT_plx
" v=%x\n",
628 __func__
, addr
* 4, (unsigned)value
));
629 if (addr
< ARRAY_SIZE(s
->regs
)) {
630 s
->regs
[addr
] = value
;
637 static const MemoryRegionOps enet_ops
= {
640 .endianness
= DEVICE_LITTLE_ENDIAN
,
643 static int eth_can_rx(NetClientState
*nc
)
645 XilinxAXIEnet
*s
= qemu_get_nic_opaque(nc
);
648 return !axienet_rx_resetting(s
) && axienet_rx_enabled(s
);
651 static int enet_match_addr(const uint8_t *buf
, uint32_t f0
, uint32_t f1
)
655 if (memcmp(buf
, &f0
, 4)) {
659 if (buf
[4] != (f1
& 0xff) || buf
[5] != ((f1
>> 8) & 0xff)) {
666 static ssize_t
eth_rx(NetClientState
*nc
, const uint8_t *buf
, size_t size
)
668 XilinxAXIEnet
*s
= qemu_get_nic_opaque(nc
);
669 static const unsigned char sa_bcast
[6] = {0xff, 0xff, 0xff,
671 static const unsigned char sa_ipmcast
[3] = {0x01, 0x00, 0x52};
672 uint32_t app
[6] = {0};
673 int promisc
= s
->fmi
& (1 << 31);
674 int unicast
, broadcast
, multicast
, ip_multicast
= 0;
679 DENET(qemu_log("%s: %zd bytes\n", __func__
, size
));
681 unicast
= ~buf
[0] & 0x1;
682 broadcast
= memcmp(buf
, sa_bcast
, 6) == 0;
683 multicast
= !unicast
&& !broadcast
;
684 if (multicast
&& (memcmp(sa_ipmcast
, buf
, sizeof sa_ipmcast
) == 0)) {
688 /* Jumbo or vlan sizes ? */
689 if (!(s
->rcw
[1] & RCW1_JUM
)) {
690 if (size
> 1518 && size
<= 1522 && !(s
->rcw
[1] & RCW1_VLAN
)) {
695 /* Basic Address filters. If you want to use the extended filters
696 you'll generally have to place the ethernet mac into promiscuous mode
697 to avoid the basic filtering from dropping most frames. */
700 if (!enet_match_addr(buf
, s
->uaw
[0], s
->uaw
[1])) {
706 if (s
->regs
[R_RAF
] & RAF_BCAST_REJ
) {
713 if (s
->regs
[R_RAF
] & RAF_MCAST_REJ
) {
717 for (i
= 0; i
< 4; i
++) {
718 if (enet_match_addr(buf
, s
->maddr
[i
][0], s
->maddr
[i
][1])) {
731 /* Extended mcast filtering enabled? */
732 if (axienet_newfunc_enabled(s
) && axienet_extmcf_enabled(s
)) {
734 if (!enet_match_addr(buf
, s
->ext_uaw
[0], s
->ext_uaw
[1])) {
740 if (s
->regs
[R_RAF
] & RAF_BCAST_REJ
) {
747 if (!memcmp(buf
, sa_ipmcast
, 3)) {
751 idx
= (buf
[4] & 0x7f) << 8;
754 bit
= 1 << (idx
& 0x1f);
757 if (!(s
->ext_mtable
[idx
] & bit
)) {
765 s
->regs
[R_IS
] |= IS_RX_REJECT
;
770 if (size
> (s
->c_rxmem
- 4)) {
771 size
= s
->c_rxmem
- 4;
774 memcpy(s
->rxmem
, buf
, size
);
775 memset(s
->rxmem
+ size
, 0, 4); /* Clear the FCS. */
777 if (s
->rcw
[1] & RCW1_FCS
) {
778 size
+= 4; /* fcs is inband. */
782 csum32
= net_checksum_add(size
- 14, (uint8_t *)s
->rxmem
+ 14);
784 csum32
= (csum32
& 0xffff) + (csum32
>> 16);
785 /* And twice to get rid of possible carries. */
786 csum16
= (csum32
& 0xffff) + (csum32
>> 16);
788 app
[4] = size
& 0xffff;
790 s
->stats
.rx_bytes
+= size
;
794 app
[2] |= 1 | (ip_multicast
<< 1);
795 } else if (broadcast
) {
803 stream_push(s
->tx_dev
, (void *)s
->rxmem
, size
, app
);
805 s
->regs
[R_IS
] |= IS_RX_COMPLETE
;
810 static void eth_cleanup(NetClientState
*nc
)
813 XilinxAXIEnet
*s
= qemu_get_nic_opaque(nc
);
819 xilinx_axienet_data_stream_push(StreamSlave
*obj
, uint8_t *buf
, size_t size
,
822 XilinxAXIEnetStreamSlave
*ds
= XILINX_AXI_ENET_DATA_STREAM(obj
);
823 XilinxAXIEnet
*s
= ds
->enet
;
826 if (!(s
->tc
& TC_TX
)) {
830 /* Jumbo or vlan sizes ? */
831 if (!(s
->tc
& TC_JUM
)) {
832 if (size
> 1518 && size
<= 1522 && !(s
->tc
& TC_VLAN
)) {
838 unsigned int start_off
= hdr
[1] >> 16;
839 unsigned int write_off
= hdr
[1] & 0xffff;
843 tmp_csum
= net_checksum_add(size
- start_off
,
844 (uint8_t *)buf
+ start_off
);
845 /* Accumulate the seed. */
846 tmp_csum
+= hdr
[2] & 0xffff;
848 /* Fold the 32bit partial checksum. */
849 csum
= net_checksum_finish(tmp_csum
);
852 buf
[write_off
] = csum
>> 8;
853 buf
[write_off
+ 1] = csum
& 0xff;
856 qemu_send_packet(qemu_get_queue(s
->nic
), buf
, size
);
858 s
->stats
.tx_bytes
+= size
;
859 s
->regs
[R_IS
] |= IS_TX_COMPLETE
;
863 static NetClientInfo net_xilinx_enet_info
= {
864 .type
= NET_CLIENT_OPTIONS_KIND_NIC
,
865 .size
= sizeof(NICState
),
866 .can_receive
= eth_can_rx
,
868 .cleanup
= eth_cleanup
,
871 static void xilinx_enet_realize(DeviceState
*dev
, Error
**errp
)
873 XilinxAXIEnet
*s
= XILINX_AXI_ENET(dev
);
874 XilinxAXIEnetStreamSlave
*ds
= XILINX_AXI_ENET_DATA_STREAM(&s
->rx_data_dev
);
875 Error
*local_errp
= NULL
;
877 object_property_add_link(OBJECT(ds
), "enet", "xlnx.axi-ethernet",
878 (Object
**) &ds
->enet
, &local_errp
);
880 goto xilinx_enet_realize_fail
;
882 object_property_set_link(OBJECT(ds
), OBJECT(s
), "enet", &local_errp
);
884 goto xilinx_enet_realize_fail
;
887 qemu_macaddr_default_if_unset(&s
->conf
.macaddr
);
888 s
->nic
= qemu_new_nic(&net_xilinx_enet_info
, &s
->conf
,
889 object_get_typename(OBJECT(dev
)), dev
->id
, s
);
890 qemu_format_nic_info_str(qemu_get_queue(s
->nic
), s
->conf
.macaddr
.a
);
892 tdk_init(&s
->TEMAC
.phy
);
893 mdio_attach(&s
->TEMAC
.mdio_bus
, &s
->TEMAC
.phy
, s
->c_phyaddr
);
897 s
->rxmem
= g_malloc(s
->c_rxmem
);
900 xilinx_enet_realize_fail
:
906 static void xilinx_enet_init(Object
*obj
)
908 XilinxAXIEnet
*s
= XILINX_AXI_ENET(obj
);
909 SysBusDevice
*sbd
= SYS_BUS_DEVICE(obj
);
912 object_property_add_link(obj
, "axistream-connected", TYPE_STREAM_SLAVE
,
913 (Object
**) &s
->tx_dev
, &errp
);
914 assert_no_error(errp
);
916 object_initialize(&s
->rx_data_dev
, TYPE_XILINX_AXI_ENET_DATA_STREAM
);
917 object_property_add_child(OBJECT(s
), "axistream-connected-target",
918 (Object
*)&s
->rx_data_dev
, &errp
);
919 assert_no_error(errp
);
921 sysbus_init_irq(sbd
, &s
->irq
);
923 memory_region_init_io(&s
->iomem
, &enet_ops
, s
, "enet", 0x40000);
924 sysbus_init_mmio(sbd
, &s
->iomem
);
927 static Property xilinx_enet_properties
[] = {
928 DEFINE_PROP_UINT32("phyaddr", XilinxAXIEnet
, c_phyaddr
, 7),
929 DEFINE_PROP_UINT32("rxmem", XilinxAXIEnet
, c_rxmem
, 0x1000),
930 DEFINE_PROP_UINT32("txmem", XilinxAXIEnet
, c_txmem
, 0x1000),
931 DEFINE_NIC_PROPERTIES(XilinxAXIEnet
, conf
),
932 DEFINE_PROP_END_OF_LIST(),
935 static void xilinx_enet_class_init(ObjectClass
*klass
, void *data
)
937 DeviceClass
*dc
= DEVICE_CLASS(klass
);
939 dc
->realize
= xilinx_enet_realize
;
940 dc
->props
= xilinx_enet_properties
;
941 dc
->reset
= xilinx_axienet_reset
;
944 static void xilinx_enet_stream_class_init(ObjectClass
*klass
, void *data
)
946 StreamSlaveClass
*ssc
= STREAM_SLAVE_CLASS(klass
);
951 static const TypeInfo xilinx_enet_info
= {
952 .name
= TYPE_XILINX_AXI_ENET
,
953 .parent
= TYPE_SYS_BUS_DEVICE
,
954 .instance_size
= sizeof(XilinxAXIEnet
),
955 .class_init
= xilinx_enet_class_init
,
956 .instance_init
= xilinx_enet_init
,
959 static const TypeInfo xilinx_enet_data_stream_info
= {
960 .name
= TYPE_XILINX_AXI_ENET_DATA_STREAM
,
961 .parent
= TYPE_OBJECT
,
962 .instance_size
= sizeof(struct XilinxAXIEnetStreamSlave
),
963 .class_init
= xilinx_enet_stream_class_init
,
964 .class_data
= xilinx_axienet_data_stream_push
,
965 .interfaces
= (InterfaceInfo
[]) {
966 { TYPE_STREAM_SLAVE
},
971 static void xilinx_enet_register_types(void)
973 type_register_static(&xilinx_enet_info
);
974 type_register_static(&xilinx_enet_data_stream_info
);
977 type_init(xilinx_enet_register_types
)