From patchwork Fri Aug 10 03:16:09 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Peter A. G. Crosthwaite" X-Patchwork-Id: 176349 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 6BA592C00B4 for ; Fri, 10 Aug 2012 13:17:32 +1000 (EST) Received: from localhost ([::1]:52010 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Szfj8-0001HB-Ei for incoming@patchwork.ozlabs.org; Thu, 09 Aug 2012 23:17:30 -0400 Received: from eggs.gnu.org ([208.118.235.92]:34869) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Szfj1-0001H3-E0 for qemu-devel@nongnu.org; Thu, 09 Aug 2012 23:17:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Szfiz-0006Vb-Cu for qemu-devel@nongnu.org; Thu, 09 Aug 2012 23:17:23 -0400 Received: from mail-yx0-f173.google.com ([209.85.213.173]:45220) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Szfiz-0006VX-8g for qemu-devel@nongnu.org; Thu, 09 Aug 2012 23:17:21 -0400 Received: by yenm4 with SMTP id m4so1139436yen.4 for ; Thu, 09 Aug 2012 20:17:20 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:subject:date:message-id:x-mailer:x-gm-message-state; bh=4QSR06sqG2+2/orU8I6yuXOl2adgdEhQHwAa+zjwRu4=; b=KXIJ1DsnU7EWk8V2m4i6s/h7Hsac9s5Z8P9ZtOjHG7K6buf+eKbIMc57jgjUFy6xVL i7x5hCaXgrZpCc1eO/lrbNTM2lwxI/PHiNVDYfgP1w/7rbtPFUdMXN7J6MpeUXFTFrcv 1nF67M1Vbr59qhyeUHIyoH3VMAJydkRrPOQbkRHVCfCm1R3DQT5sKUbMW6/Ke96gNUEl 5Fa9UIYvNt9N411uw22ZwavN2v/Ewzn7NsLePSzGsxEXFhIRhSTE1a9eXw7s//jHqZqy o3sYUA0gcppgzyRB/ddAOSW72cs24tYusJilgMFBHA3QhZO1cvBswsL6vDgI68rJ6iPb xeRg== Received: by 10.66.89.234 with SMTP id br10mr3004082pab.25.1344568640269; Thu, 09 Aug 2012 20:17:20 -0700 (PDT) Received: from localhost ([124.148.20.9]) by mx.google.com with ESMTPS id pg9sm2383832pbb.26.2012.08.09.20.17.17 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 09 Aug 2012 20:17:19 -0700 (PDT) From: "Peter A. G. Crosthwaite" To: peter.crosthwaite@petalogix.com, qemu-devel@nongnu.org, pbonzini@redhat.com, aliguori@us.ibm.com, edgar.iglesias@gmail.com Date: Fri, 10 Aug 2012 13:16:09 +1000 Message-Id: <1344568571-11755-1-git-send-email-peter.crosthwaite@petalogix.com> X-Mailer: git-send-email 1.7.0.4 X-Gm-Message-State: ALoCoQlzzIRmC53Da81TI8nn07TdPHD74Fu08MQ1N2iwVPAZ4CNEZNz9CJ4lAPHKyBBFheMsa3TD X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.213.173 Subject: [Qemu-devel] [PULL 0/2] QOMify AXI stream for Xilinx AXI ethernet/DMA X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The following changes since commit 3d1d9652978ac5a32a0beb4bdf6065ca39440d89: Bruce Rogers (1): handle device help before accelerator set up are available in the git repository at: git://developer.petalogix.com/public/qemu.git for-upstream/axi-stream.next 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