From patchwork Wed Oct 10 00:46:33 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: 190517 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 A41B92C0085 for ; Wed, 10 Oct 2012 11:46:52 +1100 (EST) Received: from localhost ([::1]:34199 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TLkRk-0001wj-Rd for incoming@patchwork.ozlabs.org; Tue, 09 Oct 2012 20:46:48 -0400 Received: from eggs.gnu.org ([208.118.235.92]:52985) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TLkRe-0001we-CU for qemu-devel@nongnu.org; Tue, 09 Oct 2012 20:46:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TLkRd-00011C-6b for qemu-devel@nongnu.org; Tue, 09 Oct 2012 20:46:42 -0400 Received: from mail-pa0-f45.google.com ([209.85.220.45]:55865) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TLkRd-00010q-0h for qemu-devel@nongnu.org; Tue, 09 Oct 2012 20:46:41 -0400 Received: by mail-pa0-f45.google.com with SMTP id fb10so5823913pad.4 for ; Tue, 09 Oct 2012 17:46:40 -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=nls440RRj33eBh2KJafj3SYNikPYAgVr9phH+Ozw/ko=; b=ps2fdu+wgtPcaEC+fcBlURIWqlBW4iqft9JR2PjurotxBt2d34qk+krfLE/Oq3uthh XrXo5lxZ7kRluNkZkkAqhO0vLKUxKSDUEW+H9DLJ0Jr5DBSK7xx9pKE7QqSrgqQSfwLw uU4ZxRqfVtPEfmp53OxO7AYqHvzb+RZVr3jRcDbXrfv46DzNq8dr6rOWgSF08Tj+1ixY aM0ODKqP94syrFh4pxiZVqMr680r4L2N6AjcaPuFjF7v0bjPkmCghGxJqkt0kcPUoyvK DVV1EZNo5vhVNFehFo871Ars4G/F+jXPcAxUkTHKFMn75xM8zytMmFOxqACqfMRzvoaf PeyA== Received: by 10.68.135.33 with SMTP id pp1mr68975971pbb.5.1349830000074; Tue, 09 Oct 2012 17:46:40 -0700 (PDT) Received: from localhost ([124.148.20.9]) by mx.google.com with ESMTPS id jw14sm99158pbb.36.2012.10.09.17.46.37 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 09 Oct 2012 17:46:39 -0700 (PDT) From: Peter Crosthwaite To: edgar.iglesias@gmail.com, qemu-devel@nongnu.org Date: Wed, 10 Oct 2012 10:46:33 +1000 Message-Id: <1349830006-12124-1-git-send-email-peter.crosthwaite@xilinx.com> X-Mailer: git-send-email 1.7.0.4 X-Gm-Message-State: ALoCoQmHV8UrabD/qg8c79DUAOTPB+UsPk2OkHykPN/itfmqOdnV19mwf+VZ2RWrWihX+wueHIS5 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.220.45 Subject: [Qemu-devel] [PULL 0/13] Ehnahced SSI bus support + M25P80 SPI flash + Xilinx SPI controller 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 4bb26682f70a5f626cad3e0ac82bf4b6252ea7a4: Blue Swirl (1): Merge branch 'master' of git.qemu.org:/pub/git/qemu are available in the git repository at: git://developer.petalogix.com/public/qemu.git for-upstream/spi-initial.9 Peter A. G. Crosthwaite (12): ssi: Support for multiple attached devices ssi: Implemented CS behaviour ssi: Added create_slave_no_init() qdev: allow multiple qdev_init_gpio_in() calls stellaris: Removed SSI mux hw: Added generic FIFO API. m25p80: Initial implementation of SPI flash device xilinx_spi: Initial impl. of Xilinx SPI controller petalogix-ml605: added SPI controller with n25q128 xilinx_spips: Xilinx Zynq SPI cntrlr device model xilinx_zynq: Added SPI controllers + flashes MAINTAINERS: Added maintainerships for SSI Peter Crosthwaite (1): ssi: Add slave autoconnect helper MAINTAINERS | 8 + default-configs/arm-softmmu.mak | 1 + default-configs/microblaze-softmmu.mak | 2 + default-configs/microblazeel-softmmu.mak | 2 + hw/Makefile.objs | 2 + hw/ads7846.c | 7 +- hw/arm/Makefile.objs | 1 + hw/fifo.c | 78 ++++ hw/fifo.h | 99 +++++ hw/irq.c | 27 +- hw/irq.h | 11 +- hw/m25p80.c | 600 ++++++++++++++++++++++++++++++ hw/max111x.c | 7 +- hw/microblaze/Makefile.objs | 1 + hw/petalogix_ml605_mmu.c | 27 ++ hw/qdev.c | 6 +- hw/spitz.c | 8 +- hw/ssd0323.c | 7 + hw/ssi-sd.c | 7 + hw/ssi.c | 109 +++++- hw/ssi.h | 42 ++ hw/stellaris.c | 93 +---- hw/xilinx_spi.c | 385 +++++++++++++++++++ hw/xilinx_spips.c | 354 ++++++++++++++++++ hw/xilinx_zynq.c | 34 ++ hw/z2.c | 7 +- 26 files changed, 1810 insertions(+), 115 deletions(-) create mode 100644 hw/fifo.c create mode 100644 hw/fifo.h create mode 100644 hw/m25p80.c create mode 100644 hw/xilinx_spi.c create mode 100644 hw/xilinx_spips.c