From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55038) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZrUcU-0000PQ-IK for qemu-devel@nongnu.org; Wed, 28 Oct 2015 13:34:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZrUcR-0004px-Az for qemu-devel@nongnu.org; Wed, 28 Oct 2015 13:34:42 -0400 Received: from mail-by2on0083.outbound.protection.outlook.com ([207.46.100.83]:62328 helo=na01-by2-obe.outbound.protection.outlook.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZrUcR-0004pH-0B for qemu-devel@nongnu.org; Wed, 28 Oct 2015 13:34:39 -0400 From: Alistair Francis Date: Wed, 28 Oct 2015 10:32:46 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain Subject: [Qemu-devel] [PATCH v3 0/5] Connect the SPI devices to ZynqMP List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, crosthwaitepeter@gmail.com Cc: edgar.iglesias@xilinx.com, peter.maydell@linaro.org, edgar.iglesias@gmail.com, alistair.francis@xilinx.com Connect the SPI devices to Xilinx's ZynqMP. I also need to make some changes to the actual SPI device to imporove the fuctionality, but for the time being this works. V3: - Don't reach into the SoC to get the SPI Bus V2: - Connect the SPI flash in the board code - Update git patches to properly indicate rename - Add sst25wf080 as a SPI flash Alistair Francis (5): m25p80.c: Add sst25wf080 SPI flash device ssi: Move ssi.h into a separate directory xilinx_spips: Seperate the state struct into a header xlnx-zynqmp: Connect the SPI devices xlnx-ep108: Connect the SPI Flash hw/arm/pxa2xx.c | 2 +- hw/arm/spitz.c | 2 +- hw/arm/stellaris.c | 2 +- hw/arm/strongarm.c | 2 +- hw/arm/tosa.c | 2 +- hw/arm/xilinx_zynq.c | 2 +- hw/arm/xlnx-ep108.c | 19 ++++++++++ hw/arm/xlnx-zynqmp.c | 37 +++++++++++++++++++ hw/arm/z2.c | 2 +- hw/block/m25p80.c | 3 +- hw/display/ads7846.c | 2 +- hw/display/ssd0323.c | 2 +- hw/microblaze/petalogix_ml605_mmu.c | 2 +- hw/misc/max111x.c | 2 +- hw/sd/ssi-sd.c | 2 +- hw/ssi/pl022.c | 2 +- hw/ssi/ssi.c | 2 +- hw/ssi/xilinx_spi.c | 2 +- hw/ssi/xilinx_spips.c | 56 ++++------------------------ include/hw/arm/xlnx-zynqmp.h | 4 ++ include/hw/{ => ssi}/ssi.h | 10 +++-- include/hw/ssi/xilinx_spips.h | 74 +++++++++++++++++++++++++++++++++++++ 22 files changed, 165 insertions(+), 68 deletions(-) rename include/hw/{ => ssi}/ssi.h (96%) create mode 100644 include/hw/ssi/xilinx_spips.h -- 2.5.0