From patchwork Thu Feb 28 18:53:46 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 224141 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 1B76C2C02B8 for ; Fri, 1 Mar 2013 05:56:14 +1100 (EST) Received: from localhost ([::1]:59086 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UB8eK-0003LX-Ce for incoming@patchwork.ozlabs.org; Thu, 28 Feb 2013 13:56:12 -0500 Received: from eggs.gnu.org ([208.118.235.92]:47330) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UB8cW-0000rY-FP for qemu-devel@nongnu.org; Thu, 28 Feb 2013 13:54:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UB8cR-00040t-V6 for qemu-devel@nongnu.org; Thu, 28 Feb 2013 13:54:20 -0500 Received: from 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.d.1.0.0.b.8.0.1.0.0.2.ip6.arpa ([2001:8b0:1d0::1]:60819 helo=mnementh.archaic.org.uk) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UB8cR-0003yV-ND for qemu-devel@nongnu.org; Thu, 28 Feb 2013 13:54:15 -0500 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.72) (envelope-from ) id 1UB8cF-0008Ba-UV; Thu, 28 Feb 2013 18:54:03 +0000 From: Peter Maydell To: Anthony Liguori , Blue Swirl Date: Thu, 28 Feb 2013 18:53:46 +0000 Message-Id: <1362077643-31443-1-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.5 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:8b0:1d0::1 Cc: qemu-devel@nongnu.org, Paul Brook Subject: [Qemu-devel] [PULL 00/17] arm-devs queue 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 Hi; here's the arm-devs queue. Mostly this is a bunch of Peter C's patches. There's a bunch of other stuff bubbling under which will probably go into another pullreq in a couple of weeks' time (mostly series which failed review or need a little more on-list time). Please pull. thanks -- PMM The following changes since commit a4bcea3d67949c6be45992bd5092a19f163bcd4e: target-i386: Use mulu2 and muls2 (2013-02-27 19:06:28 +0000) are available in the git repository at: git://git.linaro.org/people/pmaydell/qemu-arm.git arm-devs.next for you to fetch changes up to 288f1e3f87ec24abeac38399f175fe74243f7bc5: cadence_gem: Add debug msgs for rx desc movement (2013-02-28 18:49:24 +0000) ---------------------------------------------------------------- Antoine Mathys (1): hw/ds1338: Fix conversion between 12 hours and 24 hours modes. Igor Mitsyanko (1): hw/sdhci: introduce standard SD host controller Peter Crosthwaite (13): arm: mptimer: CamelCased type names arm: arm11mpcore, a9mpcore: CamelCased type names arm: mptimer: Remove WDT distinction arm: a9mpcore: remove old_timer_status field arm: a9mpcore: Coreify the SCU vl.c: allow for repeated -sd arguments xilinx_zynq: Added SD controllers m25p80.c: Use QOM classes for part differentiation cadence_gem: Flush queued packets cadence_gem: factor out can_rx() logic replication cadence_gem: fix interrupt events cadence_gem: Don't reset rx desc pointer on rx_en cadence_gem: Add debug msgs for rx desc movement Peter Maydell (2): hw/pflash_cfi01: Make read after byte-write or erase return status hw/pflash_cfi01: Treat read in unknown command state as read default-configs/arm-softmmu.mak | 2 + hw/Makefile.objs | 1 + hw/a9mpcore.c | 157 +---- hw/a9scu.c | 164 +++++ hw/arm/Makefile.objs | 1 + hw/arm11mpcore.c | 41 +- hw/arm_mptimer.c | 112 ++-- hw/cadence_gem.c | 36 +- hw/ds1338.c | 8 +- hw/m25p80.c | 58 +- hw/petalogix_ml605_mmu.c | 3 +- hw/pflash_cfi01.c | 14 +- hw/sdhci.c | 1300 +++++++++++++++++++++++++++++++++++++++ hw/sdhci.h | 312 ++++++++++ hw/xilinx_zynq.c | 13 +- vl.c | 2 +- 16 files changed, 1935 insertions(+), 289 deletions(-) create mode 100644 hw/a9scu.c create mode 100644 hw/sdhci.c create mode 100644 hw/sdhci.h