2 * QEMU model of the Xilinx Ethernet Lite MAC.
4 * Copyright (c) 2009 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"
31 #define R_TX_LEN0 (0x07f4 / 4)
32 #define R_TX_GIE0 (0x07f8 / 4)
33 #define R_TX_CTRL0 (0x07fc / 4)
34 #define R_TX_BUF1 (0x0800 / 4)
35 #define R_TX_LEN1 (0x0ff4 / 4)
36 #define R_TX_CTRL1 (0x0ffc / 4)
38 #define R_RX_BUF0 (0x1000 / 4)
39 #define R_RX_CTRL0 (0x17fc / 4)
40 #define R_RX_BUF1 (0x1800 / 4)
41 #define R_RX_CTRL1 (0x1ffc / 4)
42 #define R_MAX (0x2000 / 4)
44 #define GIE_GIE 0x80000000
50 #define TYPE_XILINX_ETHLITE "xlnx.xps-ethernetlite"
51 #define XILINX_ETHLITE(obj) \
52 OBJECT_CHECK(struct xlx_ethlite, (obj), TYPE_XILINX_ETHLITE)
56 SysBusDevice parent_obj
;
63 uint32_t c_tx_pingpong
;
64 uint32_t c_rx_pingpong
;
71 static inline void eth_pulse_irq(struct xlx_ethlite
*s
)
73 /* Only the first gie reg is active. */
74 if (s
->regs
[R_TX_GIE0
] & GIE_GIE
) {
75 qemu_irq_pulse(s
->irq
);
80 eth_read(void *opaque
, hwaddr addr
, unsigned int size
)
82 struct xlx_ethlite
*s
= opaque
;
97 D(qemu_log("%s " TARGET_FMT_plx
"=%x\n", __func__
, addr
* 4, r
));
101 r
= tswap32(s
->regs
[addr
]);
108 eth_write(void *opaque
, hwaddr addr
,
109 uint64_t val64
, unsigned int size
)
111 struct xlx_ethlite
*s
= opaque
;
112 unsigned int base
= 0;
113 uint32_t value
= val64
;
120 if (addr
== R_TX_CTRL1
)
123 D(qemu_log("%s addr=" TARGET_FMT_plx
" val=%x\n",
124 __func__
, addr
* 4, value
));
125 if ((value
& (CTRL_P
| CTRL_S
)) == CTRL_S
) {
126 qemu_send_packet(qemu_get_queue(s
->nic
),
127 (void *) &s
->regs
[base
],
128 s
->regs
[base
+ R_TX_LEN0
]);
129 D(qemu_log("eth_tx %d\n", s
->regs
[base
+ R_TX_LEN0
]));
130 if (s
->regs
[base
+ R_TX_CTRL0
] & CTRL_I
)
132 } else if ((value
& (CTRL_P
| CTRL_S
)) == (CTRL_P
| CTRL_S
)) {
133 memcpy(&s
->conf
.macaddr
.a
[0], &s
->regs
[base
], 6);
134 if (s
->regs
[base
+ R_TX_CTRL0
] & CTRL_I
)
138 /* We are fast and get ready pretty much immediately so
139 we actually never flip the S nor P bits to one. */
140 s
->regs
[addr
] = value
& ~(CTRL_P
| CTRL_S
);
143 /* Keep these native. */
146 if (!(value
& CTRL_S
)) {
147 qemu_flush_queued_packets(qemu_get_queue(s
->nic
));
152 D(qemu_log("%s addr=" TARGET_FMT_plx
" val=%x\n",
153 __func__
, addr
* 4, value
));
154 s
->regs
[addr
] = value
;
158 s
->regs
[addr
] = tswap32(value
);
163 static const MemoryRegionOps eth_ops
= {
166 .endianness
= DEVICE_NATIVE_ENDIAN
,
168 .min_access_size
= 4,
173 static int eth_can_rx(NetClientState
*nc
)
175 struct xlx_ethlite
*s
= qemu_get_nic_opaque(nc
);
176 unsigned int rxbase
= s
->rxbuf
* (0x800 / 4);
178 return !(s
->regs
[rxbase
+ R_RX_CTRL0
] & CTRL_S
);
181 static ssize_t
eth_rx(NetClientState
*nc
, const uint8_t *buf
, size_t size
)
183 struct xlx_ethlite
*s
= qemu_get_nic_opaque(nc
);
184 unsigned int rxbase
= s
->rxbuf
* (0x800 / 4);
187 if (!(buf
[0] & 0x80) && memcmp(&s
->conf
.macaddr
.a
[0], buf
, 6))
190 if (s
->regs
[rxbase
+ R_RX_CTRL0
] & CTRL_S
) {
191 D(qemu_log("ethlite lost packet %x\n", s
->regs
[R_RX_CTRL0
]));
195 D(qemu_log("%s %zd rxbase=%x\n", __func__
, size
, rxbase
));
196 memcpy(&s
->regs
[rxbase
+ R_RX_BUF0
], buf
, size
);
198 s
->regs
[rxbase
+ R_RX_CTRL0
] |= CTRL_S
;
199 if (s
->regs
[R_RX_CTRL0
] & CTRL_I
) {
203 /* If c_rx_pingpong was set flip buffers. */
204 s
->rxbuf
^= s
->c_rx_pingpong
;
208 static void xilinx_ethlite_reset(DeviceState
*dev
)
210 struct xlx_ethlite
*s
= XILINX_ETHLITE(dev
);
215 static void eth_cleanup(NetClientState
*nc
)
217 struct xlx_ethlite
*s
= qemu_get_nic_opaque(nc
);
222 static NetClientInfo net_xilinx_ethlite_info
= {
223 .type
= NET_CLIENT_OPTIONS_KIND_NIC
,
224 .size
= sizeof(NICState
),
225 .can_receive
= eth_can_rx
,
227 .cleanup
= eth_cleanup
,
230 static void xilinx_ethlite_realize(DeviceState
*dev
, Error
**errp
)
232 struct xlx_ethlite
*s
= XILINX_ETHLITE(dev
);
234 qemu_macaddr_default_if_unset(&s
->conf
.macaddr
);
235 s
->nic
= qemu_new_nic(&net_xilinx_ethlite_info
, &s
->conf
,
236 object_get_typename(OBJECT(dev
)), dev
->id
, s
);
237 qemu_format_nic_info_str(qemu_get_queue(s
->nic
), s
->conf
.macaddr
.a
);
240 static void xilinx_ethlite_init(Object
*obj
)
242 struct xlx_ethlite
*s
= XILINX_ETHLITE(obj
);
244 sysbus_init_irq(SYS_BUS_DEVICE(obj
), &s
->irq
);
246 memory_region_init_io(&s
->mmio
, obj
, ð_ops
, s
,
247 "xlnx.xps-ethernetlite", R_MAX
* 4);
248 sysbus_init_mmio(SYS_BUS_DEVICE(obj
), &s
->mmio
);
251 static Property xilinx_ethlite_properties
[] = {
252 DEFINE_PROP_UINT32("tx-ping-pong", struct xlx_ethlite
, c_tx_pingpong
, 1),
253 DEFINE_PROP_UINT32("rx-ping-pong", struct xlx_ethlite
, c_rx_pingpong
, 1),
254 DEFINE_NIC_PROPERTIES(struct xlx_ethlite
, conf
),
255 DEFINE_PROP_END_OF_LIST(),
258 static void xilinx_ethlite_class_init(ObjectClass
*klass
, void *data
)
260 DeviceClass
*dc
= DEVICE_CLASS(klass
);
262 dc
->realize
= xilinx_ethlite_realize
;
263 dc
->reset
= xilinx_ethlite_reset
;
264 dc
->props
= xilinx_ethlite_properties
;
267 static const TypeInfo xilinx_ethlite_info
= {
268 .name
= TYPE_XILINX_ETHLITE
,
269 .parent
= TYPE_SYS_BUS_DEVICE
,
270 .instance_size
= sizeof(struct xlx_ethlite
),
271 .instance_init
= xilinx_ethlite_init
,
272 .class_init
= xilinx_ethlite_class_init
,
275 static void xilinx_ethlite_register_types(void)
277 type_register_static(&xilinx_ethlite_info
);
280 type_init(xilinx_ethlite_register_types
)