qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v5 0/4] hw/arm: add ethernet support to Allwinner A10
@ 2014-01-30 22:02 Beniamino Galvani
  2014-01-30 22:02 ` [Qemu-devel] [PATCH v5 1/4] util/fifo8: implement push/pop of multiple bytes Beniamino Galvani
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Beniamino Galvani @ 2014-01-30 22:02 UTC (permalink / raw)
  To: qemu-devel
  Cc: Peter Maydell, Peter Crosthwaite, Stefan Hajnoczi,
	Beniamino Galvani, Andreas Färber, Li Guang

This patch series adds support for the EMAC Fast Ethernet controller
found on Allwinner SoCs to the Allwinner A10.

Changelog:
v5: Address comments from Peter Crosthwaite and Peter Maydell:
    * Move reinitialization of fifo head to a new patch
    * Remove fifo8_has_space() and add fifo8_num_free(),fifo8_num_used()
    * Improve documentation of new fifo8 functions
    * Add restriction on fifo8_pop_buf() 'max' argument as originally
      suggested by Peter C.: it must not be greater than the number of
      bytes in the fifo
    * Change license of EMAC model to GPLv2 
    * Check if tx length register is greater than data in fifo

v4: Address comments from Peter Crosthwaite and Andreas Färber:
    * Add functions for multiple bytes push/pop to Fifo8
    * Get rid of custom fifo implementation and use generic one for
      both tx and rx
    * Rename aw_emac_mdio_read -> RTL8201CP_mdio_read
    * Allow reception of new packets from net layer only when there is
      space for a full size frame
    * Change TYPE_AW_EMAC from "allwinner_emac" to "allwinner-emac"
    * Property "phyaddr" -> "phy-addr"
    * Remove trailing newlines from error_report() messages

v3: Address comments from Peter Crosthwaite and Stefan Hajnoczi:
    * Use a single, big rx fifo instead of per-packet fifo
    * Remove link_ok field from PHY state
    * Call set_link() on post_load
    * Add missing PHY registers
    * Implement reset() method
    * Rename AwEmacMii -> RTL8201CPState
    * Rename mii_{read,write} -> aw_emac_mdio_{read,write}

v2: Address Peter Crosthwaite's comments:
    * Make phy address customizable through a property
    * Call qemu_flush_queued_packets() when rx becomes possible
    * Always create EMAC instance in SoC
    * Use uint8 arrays for fifos
    * Minor cleanups

Beniamino Galvani (4):
  util/fifo8: implement push/pop of multiple bytes
  util/fifo8: clear fifo head upon reset
  hw/net: add support for Allwinner EMAC Fast Ethernet controller
  hw/arm/allwinner-a10: initialize EMAC

 default-configs/arm-softmmu.mak |    1 +
 hw/arm/allwinner-a10.c          |   16 ++
 hw/arm/cubieboard.c             |   11 +-
 hw/net/Makefile.objs            |    1 +
 hw/net/allwinner_emac.c         |  539 +++++++++++++++++++++++++++++++++++++++
 include/hw/arm/allwinner-a10.h  |    3 +
 include/hw/net/allwinner_emac.h |  210 +++++++++++++++
 include/qemu/fifo8.h            |   61 +++++
 util/fifo8.c                    |   47 ++++
 9 files changed, 887 insertions(+), 2 deletions(-)
 create mode 100644 hw/net/allwinner_emac.c
 create mode 100644 include/hw/net/allwinner_emac.h

-- 
1.7.10.4

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-02-08 14:12 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-30 22:02 [Qemu-devel] [PATCH v5 0/4] hw/arm: add ethernet support to Allwinner A10 Beniamino Galvani
2014-01-30 22:02 ` [Qemu-devel] [PATCH v5 1/4] util/fifo8: implement push/pop of multiple bytes Beniamino Galvani
2014-02-05  5:25   ` Peter Crosthwaite
2014-01-30 22:02 ` [Qemu-devel] [PATCH v5 2/4] util/fifo8: clear fifo head upon reset Beniamino Galvani
2014-02-05  5:28   ` Peter Crosthwaite
2014-01-30 22:02 ` [Qemu-devel] [PATCH v5 3/4] hw/net: add support for Allwinner EMAC Fast Ethernet controller Beniamino Galvani
2014-01-30 22:02 ` [Qemu-devel] [PATCH v5 4/4] hw/arm/allwinner-a10: initialize EMAC Beniamino Galvani
2014-02-08 14:11 ` [Qemu-devel] [PATCH v5 0/4] hw/arm: add ethernet support to Allwinner A10 Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).