Re: [Qemu-devel] [PATCH v2 0/2] QOMify AXI stream for Xilinx AXI ethernet/DMA

2012-07-16 Thread Peter Maydell
I guess I should mention that I'm assuming somebody else is going to review
this patchset. It looks generally OK to me but whether the stream API
has the details of QOM interface use right is a bit out of my area
of expertise.

-- PMM

On 10 July 2012 07:19, Peter Crosthwaite
peter.crosthwa...@petalogix.com wrote:
 Ping^2

 On Wed, Jul 4, 2012 at 10:28 AM, Peter Crosthwaite
 peter.crosthwa...@petalogix.com wrote:
 Ping!

 On Thu, Jun 28, 2012 at 8:41 PM, Peter A. G. Crosthwaite
 peter.crosthwa...@petalogix.com wrote:
 Next revision of the series for AXI-stream, rebased on anthonys refactoring 
 of the Interface system. Anthonys patch is already on the mailing list, but 
 I have included it form completeness. P2 is all the actual axi-stream 
 device land device-land stuff.

 Changed since V1:
 Rebased Anthonys patch (P1) (Heavy conflict with final phase qom-next merge)
 Rolled Interface + link bug patch (formerly P3) into P1

 Anthony Liguori (1):
   qom: Reimplement Interfaces

 Peter A. G. Crosthwaite (1):
   xilinx_axi*: Re-implemented interconnect

  hw/Makefile.objs |1 +
  hw/petalogix_ml605_mmu.c |   24 +++--
  hw/stream.c  |   23 +
  hw/stream.h  |   31 +++
  hw/xilinx.h  |   22 ++---
  hw/xilinx_axidma.c   |   74 +---
  hw/xilinx_axidma.h   |   39 
  hw/xilinx_axienet.c  |   32 ---
  include/qemu/object.h|   46 ++
  qom/object.c |  220 
 ++
  10 files changed, 255 insertions(+), 257 deletions(-)
  create mode 100644 hw/stream.c
  create mode 100644 hw/stream.h
  delete mode 100644 hw/xilinx_axidma.h

 --
 1.7.3.2





Re: [Qemu-devel] [PATCH v2 0/2] QOMify AXI stream for Xilinx AXI ethernet/DMA

2012-07-10 Thread Peter Crosthwaite
Ping^2

On Wed, Jul 4, 2012 at 10:28 AM, Peter Crosthwaite
peter.crosthwa...@petalogix.com wrote:
 Ping!

 On Thu, Jun 28, 2012 at 8:41 PM, Peter A. G. Crosthwaite
 peter.crosthwa...@petalogix.com wrote:
 Next revision of the series for AXI-stream, rebased on anthonys refactoring 
 of the Interface system. Anthonys patch is already on the mailing list, but 
 I have included it form completeness. P2 is all the actual axi-stream device 
 land device-land stuff.

 Changed since V1:
 Rebased Anthonys patch (P1) (Heavy conflict with final phase qom-next merge)
 Rolled Interface + link bug patch (formerly P3) into P1

 Anthony Liguori (1):
   qom: Reimplement Interfaces

 Peter A. G. Crosthwaite (1):
   xilinx_axi*: Re-implemented interconnect

  hw/Makefile.objs |1 +
  hw/petalogix_ml605_mmu.c |   24 +++--
  hw/stream.c  |   23 +
  hw/stream.h  |   31 +++
  hw/xilinx.h  |   22 ++---
  hw/xilinx_axidma.c   |   74 +---
  hw/xilinx_axidma.h   |   39 
  hw/xilinx_axienet.c  |   32 ---
  include/qemu/object.h|   46 ++
  qom/object.c |  220 
 ++
  10 files changed, 255 insertions(+), 257 deletions(-)
  create mode 100644 hw/stream.c
  create mode 100644 hw/stream.h
  delete mode 100644 hw/xilinx_axidma.h

 --
 1.7.3.2




Re: [Qemu-devel] [PATCH v2 0/2] QOMify AXI stream for Xilinx AXI ethernet/DMA

2012-07-03 Thread Peter Crosthwaite
Ping!

On Thu, Jun 28, 2012 at 8:41 PM, Peter A. G. Crosthwaite
peter.crosthwa...@petalogix.com wrote:
 Next revision of the series for AXI-stream, rebased on anthonys refactoring 
 of the Interface system. Anthonys patch is already on the mailing list, but I 
 have included it form completeness. P2 is all the actual axi-stream device 
 land device-land stuff.

 Changed since V1:
 Rebased Anthonys patch (P1) (Heavy conflict with final phase qom-next merge)
 Rolled Interface + link bug patch (formerly P3) into P1

 Anthony Liguori (1):
   qom: Reimplement Interfaces

 Peter A. G. Crosthwaite (1):
   xilinx_axi*: Re-implemented interconnect

  hw/Makefile.objs |1 +
  hw/petalogix_ml605_mmu.c |   24 +++--
  hw/stream.c  |   23 +
  hw/stream.h  |   31 +++
  hw/xilinx.h  |   22 ++---
  hw/xilinx_axidma.c   |   74 +---
  hw/xilinx_axidma.h   |   39 
  hw/xilinx_axienet.c  |   32 ---
  include/qemu/object.h|   46 ++
  qom/object.c |  220 
 ++
  10 files changed, 255 insertions(+), 257 deletions(-)
  create mode 100644 hw/stream.c
  create mode 100644 hw/stream.h
  delete mode 100644 hw/xilinx_axidma.h

 --
 1.7.3.2




[Qemu-devel] [PATCH v2 0/2] QOMify AXI stream for Xilinx AXI ethernet/DMA

2012-06-28 Thread Peter A. G. Crosthwaite
Next revision of the series for AXI-stream, rebased on anthonys refactoring of 
the Interface system. Anthonys patch is already on the mailing list, but I have 
included it form completeness. P2 is all the actual axi-stream device land 
device-land stuff.

Changed since V1:
Rebased Anthonys patch (P1) (Heavy conflict with final phase qom-next merge)
Rolled Interface + link bug patch (formerly P3) into P1

Anthony Liguori (1):
  qom: Reimplement Interfaces

Peter A. G. Crosthwaite (1):
  xilinx_axi*: Re-implemented interconnect

 hw/Makefile.objs |1 +
 hw/petalogix_ml605_mmu.c |   24 +++--
 hw/stream.c  |   23 +
 hw/stream.h  |   31 +++
 hw/xilinx.h  |   22 ++---
 hw/xilinx_axidma.c   |   74 +---
 hw/xilinx_axidma.h   |   39 
 hw/xilinx_axienet.c  |   32 ---
 include/qemu/object.h|   46 ++
 qom/object.c |  220 ++
 10 files changed, 255 insertions(+), 257 deletions(-)
 create mode 100644 hw/stream.c
 create mode 100644 hw/stream.h
 delete mode 100644 hw/xilinx_axidma.h

-- 
1.7.3.2