2 * Luminary Micro Stellaris Ethernet Controller
4 * Copyright (c) 2007 CodeSourcery.
5 * Written by Paul Brook
7 * This code is licensed under the GPL.
13 //#define DEBUG_STELLARIS_ENET 1
15 #ifdef DEBUG_STELLARIS_ENET
16 #define DPRINTF(fmt, ...) \
17 do { printf("stellaris_enet: " fmt , ## __VA_ARGS__); } while (0)
18 #define BADF(fmt, ...) \
19 do { fprintf(stderr, "stellaris_enet: error: " fmt , ## __VA_ARGS__); exit(1);} while (0)
21 #define DPRINTF(fmt, ...) do {} while(0)
22 #define BADF(fmt, ...) \
23 do { fprintf(stderr, "stellaris_enet: error: " fmt , ## __VA_ARGS__);} while (0)
26 #define SE_INT_RX 0x01
27 #define SE_INT_TXER 0x02
28 #define SE_INT_TXEMP 0x04
29 #define SE_INT_FOV 0x08
30 #define SE_INT_RXER 0x10
31 #define SE_INT_MD 0x20
32 #define SE_INT_PHY 0x40
34 #define SE_RCTL_RXEN 0x01
35 #define SE_RCTL_AMUL 0x02
36 #define SE_RCTL_PRMS 0x04
37 #define SE_RCTL_BADCRC 0x08
38 #define SE_RCTL_RSTFIFO 0x10
40 #define SE_TCTL_TXEN 0x01
41 #define SE_TCTL_PADEN 0x02
42 #define SE_TCTL_CRC 0x04
43 #define SE_TCTL_DUPLEX 0x08
59 uint8_t tx_fifo
[2048];
60 /* Real hardware has a 2k fifo, which works out to be at most 31 packets.
61 We implement a full 31 packet fifo. */
73 } stellaris_enet_state
;
75 static void stellaris_enet_update(stellaris_enet_state
*s
)
77 qemu_set_irq(s
->irq
, (s
->ris
& s
->im
) != 0);
80 /* TODO: Implement MAC address filtering. */
81 static ssize_t
stellaris_enet_receive(NetClientState
*nc
, const uint8_t *buf
, size_t size
)
83 stellaris_enet_state
*s
= qemu_get_nic_opaque(nc
);
88 if ((s
->rctl
& SE_RCTL_RXEN
) == 0)
91 DPRINTF("Packet dropped\n");
95 DPRINTF("Received packet len=%d\n", size
);
96 n
= s
->next_packet
+ s
->np
;
101 s
->rx
[n
].len
= size
+ 6;
104 *(p
++) = (size
+ 6) >> 8;
105 memcpy (p
, buf
, size
);
107 crc
= crc32(~0, buf
, size
);
112 /* Clear the remaining bytes in the last word. */
113 if ((size
& 3) != 2) {
114 memset(p
, 0, (6 - size
) & 3);
118 stellaris_enet_update(s
);
123 static int stellaris_enet_can_receive(NetClientState
*nc
)
125 stellaris_enet_state
*s
= qemu_get_nic_opaque(nc
);
127 if ((s
->rctl
& SE_RCTL_RXEN
) == 0)
133 static uint64_t stellaris_enet_read(void *opaque
, hwaddr offset
,
136 stellaris_enet_state
*s
= (stellaris_enet_state
*)opaque
;
141 DPRINTF("IRQ status %02x\n", s
->ris
);
145 case 0x08: /* RCTL */
147 case 0x0c: /* TCTL */
149 case 0x10: /* DATA */
150 if (s
->rx_fifo_len
== 0) {
152 BADF("RX underflow\n");
155 s
->rx_fifo_len
= s
->rx
[s
->next_packet
].len
;
156 s
->rx_fifo
= s
->rx
[s
->next_packet
].data
;
157 DPRINTF("RX FIFO start packet len=%d\n", s
->rx_fifo_len
);
159 val
= s
->rx_fifo
[0] | (s
->rx_fifo
[1] << 8) | (s
->rx_fifo
[2] << 16)
160 | (s
->rx_fifo
[3] << 24);
163 if (s
->rx_fifo_len
<= 0) {
166 if (s
->next_packet
>= 31)
169 DPRINTF("RX done np=%d\n", s
->np
);
173 return s
->conf
.macaddr
.a
[0] | (s
->conf
.macaddr
.a
[1] << 8)
174 | (s
->conf
.macaddr
.a
[2] << 16) | (s
->conf
.macaddr
.a
[3] << 24);
176 return s
->conf
.macaddr
.a
[4] | (s
->conf
.macaddr
.a
[5] << 8);
179 case 0x20: /* MCTL */
183 case 0x28: /* MADD */
185 case 0x2c: /* MTXD */
187 case 0x30: /* MRXD */
193 case 0x3c: /* Undocuented: Timestamp? */
196 hw_error("stellaris_enet_read: Bad offset %x\n", (int)offset
);
201 static void stellaris_enet_write(void *opaque
, hwaddr offset
,
202 uint64_t value
, unsigned size
)
204 stellaris_enet_state
*s
= (stellaris_enet_state
*)opaque
;
207 case 0x00: /* IACK */
209 DPRINTF("IRQ ack %02x/%02x\n", value
, s
->ris
);
210 stellaris_enet_update(s
);
211 /* Clearing TXER also resets the TX fifo. */
212 if (value
& SE_INT_TXER
)
213 s
->tx_frame_len
= -1;
216 DPRINTF("IRQ mask %02x/%02x\n", value
, s
->ris
);
218 stellaris_enet_update(s
);
220 case 0x08: /* RCTL */
222 if (value
& SE_RCTL_RSTFIFO
) {
225 stellaris_enet_update(s
);
228 case 0x0c: /* TCTL */
231 case 0x10: /* DATA */
232 if (s
->tx_frame_len
== -1) {
233 s
->tx_frame_len
= value
& 0xffff;
234 if (s
->tx_frame_len
> 2032) {
235 DPRINTF("TX frame too long (%d)\n", s
->tx_frame_len
);
237 s
->ris
|= SE_INT_TXER
;
238 stellaris_enet_update(s
);
240 DPRINTF("Start TX frame len=%d\n", s
->tx_frame_len
);
241 /* The value written does not include the ethernet header. */
242 s
->tx_frame_len
+= 14;
243 if ((s
->tctl
& SE_TCTL_CRC
) == 0)
244 s
->tx_frame_len
+= 4;
246 s
->tx_fifo
[s
->tx_fifo_len
++] = value
>> 16;
247 s
->tx_fifo
[s
->tx_fifo_len
++] = value
>> 24;
250 s
->tx_fifo
[s
->tx_fifo_len
++] = value
;
251 s
->tx_fifo
[s
->tx_fifo_len
++] = value
>> 8;
252 s
->tx_fifo
[s
->tx_fifo_len
++] = value
>> 16;
253 s
->tx_fifo
[s
->tx_fifo_len
++] = value
>> 24;
254 if (s
->tx_fifo_len
>= s
->tx_frame_len
) {
255 /* We don't implement explicit CRC, so just chop it off. */
256 if ((s
->tctl
& SE_TCTL_CRC
) == 0)
257 s
->tx_frame_len
-= 4;
258 if ((s
->tctl
& SE_TCTL_PADEN
) && s
->tx_frame_len
< 60) {
259 memset(&s
->tx_fifo
[s
->tx_frame_len
], 0, 60 - s
->tx_frame_len
);
262 qemu_send_packet(qemu_get_queue(s
->nic
), s
->tx_fifo
,
264 s
->tx_frame_len
= -1;
265 s
->ris
|= SE_INT_TXEMP
;
266 stellaris_enet_update(s
);
267 DPRINTF("Done TX\n");
272 s
->conf
.macaddr
.a
[0] = value
;
273 s
->conf
.macaddr
.a
[1] = value
>> 8;
274 s
->conf
.macaddr
.a
[2] = value
>> 16;
275 s
->conf
.macaddr
.a
[3] = value
>> 24;
278 s
->conf
.macaddr
.a
[4] = value
;
279 s
->conf
.macaddr
.a
[5] = value
>> 8;
284 case 0x20: /* MCTL */
290 case 0x28: /* MADD */
293 case 0x2c: /* MTXD */
294 s
->mtxd
= value
& 0xff;
296 case 0x30: /* MRXD */
300 case 0x3c: /* Undocuented: Timestamp? */
304 hw_error("stellaris_enet_write: Bad offset %x\n", (int)offset
);
308 static const MemoryRegionOps stellaris_enet_ops
= {
309 .read
= stellaris_enet_read
,
310 .write
= stellaris_enet_write
,
311 .endianness
= DEVICE_NATIVE_ENDIAN
,
314 static void stellaris_enet_reset(stellaris_enet_state
*s
)
317 s
->rctl
= SE_RCTL_BADCRC
;
318 s
->im
= SE_INT_PHY
| SE_INT_MD
| SE_INT_RXER
| SE_INT_FOV
| SE_INT_TXEMP
319 | SE_INT_TXER
| SE_INT_RX
;
321 s
->tx_frame_len
= -1;
324 static void stellaris_enet_save(QEMUFile
*f
, void *opaque
)
326 stellaris_enet_state
*s
= (stellaris_enet_state
*)opaque
;
329 qemu_put_be32(f
, s
->ris
);
330 qemu_put_be32(f
, s
->im
);
331 qemu_put_be32(f
, s
->rctl
);
332 qemu_put_be32(f
, s
->tctl
);
333 qemu_put_be32(f
, s
->thr
);
334 qemu_put_be32(f
, s
->mctl
);
335 qemu_put_be32(f
, s
->mdv
);
336 qemu_put_be32(f
, s
->mtxd
);
337 qemu_put_be32(f
, s
->mrxd
);
338 qemu_put_be32(f
, s
->np
);
339 qemu_put_be32(f
, s
->tx_frame_len
);
340 qemu_put_be32(f
, s
->tx_fifo_len
);
341 qemu_put_buffer(f
, s
->tx_fifo
, sizeof(s
->tx_fifo
));
342 for (i
= 0; i
< 31; i
++) {
343 qemu_put_be32(f
, s
->rx
[i
].len
);
344 qemu_put_buffer(f
, s
->rx
[i
].data
, sizeof(s
->rx
[i
].data
));
347 qemu_put_be32(f
, s
->next_packet
);
348 qemu_put_be32(f
, s
->rx_fifo
- s
->rx
[s
->next_packet
].data
);
349 qemu_put_be32(f
, s
->rx_fifo_len
);
352 static int stellaris_enet_load(QEMUFile
*f
, void *opaque
, int version_id
)
354 stellaris_enet_state
*s
= (stellaris_enet_state
*)opaque
;
360 s
->ris
= qemu_get_be32(f
);
361 s
->im
= qemu_get_be32(f
);
362 s
->rctl
= qemu_get_be32(f
);
363 s
->tctl
= qemu_get_be32(f
);
364 s
->thr
= qemu_get_be32(f
);
365 s
->mctl
= qemu_get_be32(f
);
366 s
->mdv
= qemu_get_be32(f
);
367 s
->mtxd
= qemu_get_be32(f
);
368 s
->mrxd
= qemu_get_be32(f
);
369 s
->np
= qemu_get_be32(f
);
370 s
->tx_frame_len
= qemu_get_be32(f
);
371 s
->tx_fifo_len
= qemu_get_be32(f
);
372 qemu_get_buffer(f
, s
->tx_fifo
, sizeof(s
->tx_fifo
));
373 for (i
= 0; i
< 31; i
++) {
374 s
->rx
[i
].len
= qemu_get_be32(f
);
375 qemu_get_buffer(f
, s
->rx
[i
].data
, sizeof(s
->rx
[i
].data
));
378 s
->next_packet
= qemu_get_be32(f
);
379 s
->rx_fifo
= s
->rx
[s
->next_packet
].data
+ qemu_get_be32(f
);
380 s
->rx_fifo_len
= qemu_get_be32(f
);
385 static void stellaris_enet_cleanup(NetClientState
*nc
)
387 stellaris_enet_state
*s
= qemu_get_nic_opaque(nc
);
389 unregister_savevm(&s
->busdev
.qdev
, "stellaris_enet", s
);
391 memory_region_destroy(&s
->mmio
);
396 static NetClientInfo net_stellaris_enet_info
= {
397 .type
= NET_CLIENT_OPTIONS_KIND_NIC
,
398 .size
= sizeof(NICState
),
399 .can_receive
= stellaris_enet_can_receive
,
400 .receive
= stellaris_enet_receive
,
401 .cleanup
= stellaris_enet_cleanup
,
404 static int stellaris_enet_init(SysBusDevice
*dev
)
406 stellaris_enet_state
*s
= FROM_SYSBUS(stellaris_enet_state
, dev
);
408 memory_region_init_io(&s
->mmio
, &stellaris_enet_ops
, s
, "stellaris_enet",
410 sysbus_init_mmio(dev
, &s
->mmio
);
411 sysbus_init_irq(dev
, &s
->irq
);
412 qemu_macaddr_default_if_unset(&s
->conf
.macaddr
);
414 s
->nic
= qemu_new_nic(&net_stellaris_enet_info
, &s
->conf
,
415 object_get_typename(OBJECT(dev
)), dev
->qdev
.id
, s
);
416 qemu_format_nic_info_str(qemu_get_queue(s
->nic
), s
->conf
.macaddr
.a
);
418 stellaris_enet_reset(s
);
419 register_savevm(&s
->busdev
.qdev
, "stellaris_enet", -1, 1,
420 stellaris_enet_save
, stellaris_enet_load
, s
);
424 static Property stellaris_enet_properties
[] = {
425 DEFINE_NIC_PROPERTIES(stellaris_enet_state
, conf
),
426 DEFINE_PROP_END_OF_LIST(),
429 static void stellaris_enet_class_init(ObjectClass
*klass
, void *data
)
431 DeviceClass
*dc
= DEVICE_CLASS(klass
);
432 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
434 k
->init
= stellaris_enet_init
;
435 dc
->props
= stellaris_enet_properties
;
438 static const TypeInfo stellaris_enet_info
= {
439 .name
= "stellaris_enet",
440 .parent
= TYPE_SYS_BUS_DEVICE
,
441 .instance_size
= sizeof(stellaris_enet_state
),
442 .class_init
= stellaris_enet_class_init
,
445 static void stellaris_enet_register_types(void)
447 type_register_static(&stellaris_enet_info
);
450 type_init(stellaris_enet_register_types
)