]> git.proxmox.com Git - mirror_qemu.git/blobdiff - hw/etraxfs_eth.c
Merge remote-tracking branch 'upstream' into memory/batch
[mirror_qemu.git] / hw / etraxfs_eth.c
index 4ae97b11eb35feccd8d8939c15267494f706561b..246a279b206e0253f2ba36bebcb352a57fa27e71 100644 (file)
  */
 
 #include <stdio.h>
-#include "hw.h"
+#include "sysbus.h"
 #include "net.h"
-
-#include "etraxfs_dma.h"
+#include "etraxfs.h"
 
 #define D(x)
 
@@ -320,17 +319,24 @@ static void mdio_cycle(struct qemu_mdio *bus)
 
 struct fs_eth
 {
-       CPUState *env;
-       qemu_irq *irq;
-       VLANClientState *vc;
+       SysBusDevice busdev;
+       MemoryRegion mmio;
+       NICState *nic;
+       NICConf conf;
        int ethregs;
 
        /* Two addrs in the filter.  */
        uint8_t macaddr[2][6];
        uint32_t regs[FS_ETH_MAX_REGS];
 
-       struct etraxfs_dma_client *dma_out;
-       struct etraxfs_dma_client *dma_in;
+       union {
+               void *vdma_out;
+               struct etraxfs_dma_client *dma_out;
+       };
+       union {
+               void *vdma_in;
+               struct etraxfs_dma_client *dma_in;
+       };
 
        /* MDIO bus.  */
        struct qemu_mdio mdio_bus;
@@ -368,7 +374,8 @@ static void eth_validate_duplex(struct fs_eth *eth)
        }
 }
 
-static uint32_t eth_readl (void *opaque, target_phys_addr_t addr)
+static uint64_t
+eth_read(void *opaque, target_phys_addr_t addr, unsigned int size)
 {
        struct fs_eth *eth = opaque;
        uint32_t r = 0;
@@ -402,8 +409,8 @@ static void eth_update_ma(struct fs_eth *eth, int ma)
        eth->macaddr[ma][i++] = eth->regs[reg] >> 8;
        eth->macaddr[ma][i++] = eth->regs[reg] >> 16;
        eth->macaddr[ma][i++] = eth->regs[reg] >> 24;
-       eth->macaddr[ma][i++] = eth->regs[reg + 4];
-       eth->macaddr[ma][i++] = eth->regs[reg + 4] >> 8;
+       eth->macaddr[ma][i++] = eth->regs[reg + 1];
+       eth->macaddr[ma][i] = eth->regs[reg + 1] >> 8;
 
        D(printf("set mac%d=%x.%x.%x.%x.%x.%x\n", ma,
                 eth->macaddr[ma][0], eth->macaddr[ma][1],
@@ -412,9 +419,11 @@ static void eth_update_ma(struct fs_eth *eth, int ma)
 }
 
 static void
-eth_writel (void *opaque, target_phys_addr_t addr, uint32_t value)
+eth_write(void *opaque, target_phys_addr_t addr,
+          uint64_t val64, unsigned int size)
 {
        struct fs_eth *eth = opaque;
+       uint32_t value = val64;
 
        addr >>= 2;
        switch (addr)
@@ -439,6 +448,7 @@ eth_writel (void *opaque, target_phys_addr_t addr, uint32_t value)
                                eth_validate_duplex(eth);
                        }
                        eth->mdio_bus.mdc = !!(value & 4);
+                       eth->regs[addr] = value;
                        break;
 
                case RW_REC_CTRL:
@@ -465,7 +475,7 @@ static int eth_match_groupaddr(struct fs_eth *eth, const unsigned char *sa)
 
        /* First bit on the wire of a MAC address signals multicast or
           physical address.  */
-       if (!m_individual && !sa[0] & 1)
+       if (!m_individual && !(sa[0] & 1))
                return 0;
 
        /* Calculate the hash index for the GA registers. */
@@ -498,21 +508,21 @@ static int eth_match_groupaddr(struct fs_eth *eth, const unsigned char *sa)
        return match;
 }
 
-static int eth_can_receive(void *opaque)
+static int eth_can_receive(VLANClientState *nc)
 {
        return 1;
 }
 
-static void eth_receive(void *opaque, const uint8_t *buf, int size)
+static ssize_t eth_receive(VLANClientState *nc, const uint8_t *buf, size_t size)
 {
        unsigned char sa_bcast[6] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
-       struct fs_eth *eth = opaque;
+       struct fs_eth *eth = DO_UPCAST(NICState, nc, nc)->opaque;
        int use_ma0 = eth->regs[RW_REC_CTRL] & 1;
        int use_ma1 = eth->regs[RW_REC_CTRL] & 2;
        int r_bcast = eth->regs[RW_REC_CTRL] & 8;
 
        if (size < 12)
-               return;
+               return -1;
 
        D(printf("%x.%x.%x.%x.%x.%x ma=%d %d bc=%d\n",
                 buf[0], buf[1], buf[2], buf[3], buf[4], buf[5],
@@ -523,10 +533,12 @@ static void eth_receive(void *opaque, const uint8_t *buf, int size)
            && (!use_ma1 || memcmp(buf, eth->macaddr[1], 6))
            && (!r_bcast || memcmp(buf, sa_bcast, 6))
            && !eth_match_groupaddr(eth, buf))
-               return;
+               return size;
 
        /* FIXME: Find another way to pass on the fake csum.  */
        etraxfs_dmac_input(eth->dma_in, (void *)buf, size + 4, 1);
+
+        return size;
 }
 
 static int eth_tx_push(void *opaque, unsigned char *buf, int len)
@@ -534,67 +546,92 @@ static int eth_tx_push(void *opaque, unsigned char *buf, int len)
        struct fs_eth *eth = opaque;
 
        D(printf("%s buf=%p len=%d\n", __func__, buf, len));
-       qemu_send_packet(eth->vc, buf, len);
+       qemu_send_packet(&eth->nic->nc, buf, len);
        return len;
 }
 
-static void eth_set_link(VLANClientState *vc)
+static void eth_set_link(VLANClientState *nc)
 {
-       struct fs_eth *eth = vc->opaque;
-       D(printf("%s %d\n", __func__, vc->link_down));
-       eth->phy.link = !vc->link_down;
+       struct fs_eth *eth = DO_UPCAST(NICState, nc, nc)->opaque;
+       D(printf("%s %d\n", __func__, nc->link_down));
+       eth->phy.link = !nc->link_down;
 }
 
-static CPUReadMemoryFunc *eth_read[] = {
-       NULL, NULL,
-       &eth_readl,
+static const MemoryRegionOps eth_ops = {
+       .read = eth_read,
+       .write = eth_write,
+       .endianness = DEVICE_LITTLE_ENDIAN,
+       .valid = {
+               .min_access_size = 4,
+               .max_access_size = 4
+       }
 };
 
-static CPUWriteMemoryFunc *eth_write[] = {
-       NULL, NULL,
-       &eth_writel,
+static void eth_cleanup(VLANClientState *nc)
+{
+       struct fs_eth *eth = DO_UPCAST(NICState, nc, nc)->opaque;
+
+        cpu_unregister_io_memory(eth->ethregs);
+
+       /* Disconnect the client.  */
+       eth->dma_out->client.push = NULL;
+       eth->dma_out->client.opaque = NULL;
+       eth->dma_in->client.opaque = NULL;
+       eth->dma_in->client.pull = NULL;
+        g_free(eth);
+}
+
+static NetClientInfo net_etraxfs_info = {
+       .type = NET_CLIENT_TYPE_NIC,
+       .size = sizeof(NICState),
+       .can_receive = eth_can_receive,
+       .receive = eth_receive,
+       .cleanup = eth_cleanup,
+       .link_status_changed = eth_set_link,
 };
 
-void *etraxfs_eth_init(NICInfo *nd, CPUState *env, 
-                      qemu_irq *irq, target_phys_addr_t base, int phyaddr)
+static int fs_eth_init(SysBusDevice *dev)
 {
-       struct etraxfs_dma_client *dma = NULL;  
-       struct fs_eth *eth = NULL;
-
-       dma = qemu_mallocz(sizeof *dma * 2);
-       if (!dma)
-               return NULL;
-
-       eth = qemu_mallocz(sizeof *eth);
-       if (!eth)
-               goto err;
-
-       dma[0].client.push = eth_tx_push;
-       dma[0].client.opaque = eth;
-       dma[1].client.opaque = eth;
-       dma[1].client.pull = NULL;
-
-       eth->env = env;
-       eth->irq = irq;
-       eth->dma_out = dma;
-       eth->dma_in = dma + 1;
-
-       /* Connect the phy.  */
-       eth->phyaddr = phyaddr & 0x1f;
-       tdk_init(&eth->phy);
-       mdio_attach(&eth->mdio_bus, &eth->phy, eth->phyaddr);
-
-       eth->ethregs = cpu_register_io_memory(0, eth_read, eth_write, eth);
-       cpu_register_physical_memory (base, 0x5c, eth->ethregs);
-
-       eth->vc = qemu_new_vlan_client(nd->vlan, nd->model, nd->name,
-                                      eth_receive, eth_can_receive, eth);
-       eth->vc->opaque = eth;
-       eth->vc->link_status_changed = eth_set_link;
-
-       return dma;
-  err:
-       qemu_free(eth);
-       qemu_free(dma);
-       return NULL;
+       struct fs_eth *s = FROM_SYSBUS(typeof(*s), dev);
+
+       if (!s->dma_out || !s->dma_in) {
+               hw_error("Unconnected ETRAX-FS Ethernet MAC.\n");
+       }
+
+       s->dma_out->client.push = eth_tx_push;
+       s->dma_out->client.opaque = s;
+       s->dma_in->client.opaque = s;
+       s->dma_in->client.pull = NULL;
+
+       memory_region_init_io(&s->mmio, &eth_ops, s, "etraxfs-eth", 0x5c);
+       sysbus_init_mmio_region(dev, &s->mmio);
+
+       qemu_macaddr_default_if_unset(&s->conf.macaddr);
+       s->nic = qemu_new_nic(&net_etraxfs_info, &s->conf,
+                             dev->qdev.info->name, dev->qdev.id, s);
+       qemu_format_nic_info_str(&s->nic->nc, s->conf.macaddr.a);
+
+       tdk_init(&s->phy);
+       mdio_attach(&s->mdio_bus, &s->phy, s->phyaddr);
+       return 0;
 }
+
+static SysBusDeviceInfo etraxfs_eth_info = {
+       .init = fs_eth_init,
+       .qdev.name  = "etraxfs-eth",
+       .qdev.size  = sizeof(struct fs_eth),
+       .qdev.props = (Property[]) {
+               DEFINE_PROP_UINT32("phyaddr", struct fs_eth, phyaddr, 1),
+               DEFINE_PROP_PTR("dma_out", struct fs_eth, vdma_out),
+               DEFINE_PROP_PTR("dma_in", struct fs_eth, vdma_in),
+               DEFINE_NIC_PROPERTIES(struct fs_eth, conf),
+               DEFINE_PROP_END_OF_LIST(),
+       }
+};
+
+static void etraxfs_eth_register(void)
+{
+       sysbus_register_withprop(&etraxfs_eth_info);
+}
+
+device_init(etraxfs_eth_register)