123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 |
- /*
- * QEMU model of the Xilinx Ethernet Lite MAC.
- *
- * Copyright (c) 2009 Edgar E. Iglesias.
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
- #include "sysbus.h"
- #include "hw.h"
- #include "net.h"
- #define D(x)
- #define R_TX_BUF0 0
- #define R_TX_LEN0 (0x07f4 / 4)
- #define R_TX_GIE0 (0x07f8 / 4)
- #define R_TX_CTRL0 (0x07fc / 4)
- #define R_TX_BUF1 (0x0800 / 4)
- #define R_TX_LEN1 (0x0ff4 / 4)
- #define R_TX_CTRL1 (0x0ffc / 4)
- #define R_RX_BUF0 (0x1000 / 4)
- #define R_RX_CTRL0 (0x17fc / 4)
- #define R_RX_BUF1 (0x1800 / 4)
- #define R_RX_CTRL1 (0x1ffc / 4)
- #define R_MAX (0x2000 / 4)
- #define GIE_GIE 0x80000000
- #define CTRL_I 0x8
- #define CTRL_P 0x2
- #define CTRL_S 0x1
- struct xlx_ethlite
- {
- SysBusDevice busdev;
- qemu_irq irq;
- NICState *nic;
- NICConf conf;
- uint32_t c_tx_pingpong;
- uint32_t c_rx_pingpong;
- unsigned int txbuf;
- unsigned int rxbuf;
- uint32_t regs[R_MAX];
- };
- static inline void eth_pulse_irq(struct xlx_ethlite *s)
- {
- /* Only the first gie reg is active. */
- if (s->regs[R_TX_GIE0] & GIE_GIE) {
- qemu_irq_pulse(s->irq);
- }
- }
- static uint32_t eth_readl (void *opaque, target_phys_addr_t addr)
- {
- struct xlx_ethlite *s = opaque;
- uint32_t r = 0;
- addr >>= 2;
- switch (addr)
- {
- case R_TX_GIE0:
- case R_TX_LEN0:
- case R_TX_LEN1:
- case R_TX_CTRL1:
- case R_TX_CTRL0:
- case R_RX_CTRL1:
- case R_RX_CTRL0:
- r = s->regs[addr];
- D(qemu_log("%s %x=%x\n", __func__, addr * 4, r));
- break;
- default:
- r = tswap32(s->regs[addr]);
- break;
- }
- return r;
- }
- static void
- eth_writel (void *opaque, target_phys_addr_t addr, uint32_t value)
- {
- struct xlx_ethlite *s = opaque;
- unsigned int base = 0;
- addr >>= 2;
- switch (addr)
- {
- case R_TX_CTRL0:
- case R_TX_CTRL1:
- if (addr == R_TX_CTRL1)
- base = 0x800 / 4;
- D(qemu_log("%s addr=%x val=%x\n", __func__, addr * 4, value));
- if ((value & (CTRL_P | CTRL_S)) == CTRL_S) {
- qemu_send_packet(&s->nic->nc,
- (void *) &s->regs[base],
- s->regs[base + R_TX_LEN0]);
- D(qemu_log("eth_tx %d\n", s->regs[base + R_TX_LEN0]));
- if (s->regs[base + R_TX_CTRL0] & CTRL_I)
- eth_pulse_irq(s);
- } else if ((value & (CTRL_P | CTRL_S)) == (CTRL_P | CTRL_S)) {
- memcpy(&s->conf.macaddr.a[0], &s->regs[base], 6);
- if (s->regs[base + R_TX_CTRL0] & CTRL_I)
- eth_pulse_irq(s);
- }
- /* We are fast and get ready pretty much immediately so
- we actually never flip the S nor P bits to one. */
- s->regs[addr] = value & ~(CTRL_P | CTRL_S);
- break;
- /* Keep these native. */
- case R_TX_LEN0:
- case R_TX_LEN1:
- case R_TX_GIE0:
- case R_RX_CTRL0:
- case R_RX_CTRL1:
- D(qemu_log("%s addr=%x val=%x\n", __func__, addr * 4, value));
- s->regs[addr] = value;
- break;
- default:
- s->regs[addr] = tswap32(value);
- break;
- }
- }
- static CPUReadMemoryFunc * const eth_read[] = {
- NULL, NULL, ð_readl,
- };
- static CPUWriteMemoryFunc * const eth_write[] = {
- NULL, NULL, ð_writel,
- };
- static int eth_can_rx(VLANClientState *nc)
- {
- struct xlx_ethlite *s = DO_UPCAST(NICState, nc, nc)->opaque;
- int r;
- r = !(s->regs[R_RX_CTRL0] & CTRL_S);
- return r;
- }
- static ssize_t eth_rx(VLANClientState *nc, const uint8_t *buf, size_t size)
- {
- struct xlx_ethlite *s = DO_UPCAST(NICState, nc, nc)->opaque;
- unsigned int rxbase = s->rxbuf * (0x800 / 4);
- /* DA filter. */
- if (!(buf[0] & 0x80) && memcmp(&s->conf.macaddr.a[0], buf, 6))
- return size;
- if (s->regs[rxbase + R_RX_CTRL0] & CTRL_S) {
- D(qemu_log("ethlite lost packet %x\n", s->regs[R_RX_CTRL0]));
- return -1;
- }
- D(qemu_log("%s %d rxbase=%x\n", __func__, size, rxbase));
- memcpy(&s->regs[rxbase + R_RX_BUF0], buf, size);
- s->regs[rxbase + R_RX_CTRL0] |= CTRL_S;
- if (s->regs[rxbase + R_RX_CTRL0] & CTRL_I)
- eth_pulse_irq(s);
- /* If c_rx_pingpong was set flip buffers. */
- s->rxbuf ^= s->c_rx_pingpong;
- return size;
- }
- static void eth_cleanup(VLANClientState *nc)
- {
- struct xlx_ethlite *s = DO_UPCAST(NICState, nc, nc)->opaque;
- s->nic = NULL;
- }
- static NetClientInfo net_xilinx_ethlite_info = {
- .type = NET_CLIENT_TYPE_NIC,
- .size = sizeof(NICState),
- .can_receive = eth_can_rx,
- .receive = eth_rx,
- .cleanup = eth_cleanup,
- };
- static int xilinx_ethlite_init(SysBusDevice *dev)
- {
- struct xlx_ethlite *s = FROM_SYSBUS(typeof (*s), dev);
- int regs;
- sysbus_init_irq(dev, &s->irq);
- s->rxbuf = 0;
- regs = cpu_register_io_memory(eth_read, eth_write, s, DEVICE_NATIVE_ENDIAN);
- sysbus_init_mmio(dev, R_MAX * 4, regs);
- qemu_macaddr_default_if_unset(&s->conf.macaddr);
- s->nic = qemu_new_nic(&net_xilinx_ethlite_info, &s->conf,
- dev->qdev.info->name, dev->qdev.id, s);
- qemu_format_nic_info_str(&s->nic->nc, s->conf.macaddr.a);
- return 0;
- }
- static SysBusDeviceInfo xilinx_ethlite_info = {
- .init = xilinx_ethlite_init,
- .qdev.name = "xilinx,ethlite",
- .qdev.size = sizeof(struct xlx_ethlite),
- .qdev.props = (Property[]) {
- DEFINE_PROP_UINT32("txpingpong", struct xlx_ethlite, c_tx_pingpong, 1),
- DEFINE_PROP_UINT32("rxpingpong", struct xlx_ethlite, c_rx_pingpong, 1),
- DEFINE_NIC_PROPERTIES(struct xlx_ethlite, conf),
- DEFINE_PROP_END_OF_LIST(),
- }
- };
- static void xilinx_ethlite_register(void)
- {
- sysbus_register_withprop(&xilinx_ethlite_info);
- }
- device_init(xilinx_ethlite_register)
|