From: Peter Crosthwaite <peter.crosthwaite@petalogix.com>
To: qemu-devel@nongnu.org, edgar.iglesias@gmail.com,
blauwirbel@gmail.com, aliguori@us.ibm.com
Cc: peter.crosthwaite@petalogix.com
Subject: [Qemu-devel] [PULL 0/14] Ehnahced SSI bus support + M25P80 SPI flash + Xilinx SPI controller
Date: Fri, 5 Oct 2012 10:08:45 +1000 [thread overview]
Message-ID: <1349395739-26502-1-git-send-email-peter.crosthwaite@xilinx.com> (raw)
The following changes since commit e744c06fca438dc08271e626034e632a270c91c8:
Peter Maydell (1):
fpu/softfloat.c: Return correctly signed values from uint64_to_float32
are available in the git repository at:
git://developer.petalogix.com/public/qemu.git for-upstream/spi-initial.8
Peter A. G. Crosthwaite (13):
ssi: Support for multiple attached devices
ssi: Implemented CS behaviour
ssi: Added create_slave_no_init()
qdev: allow multiple qdev_init_gpio_in() calls
hw/stellaris: Removed gpio_out init array.
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 | 47 +++
hw/irq.c | 27 +-
hw/irq.h | 11 +-
hw/m25p80.c | 574 ++++++++++++++++++++++++++++++
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 | 111 ++-----
hw/xilinx_spi.c | 392 ++++++++++++++++++++
hw/xilinx_spips.c | 354 ++++++++++++++++++
hw/xilinx_zynq.c | 34 ++
hw/z2.c | 7 +-
26 files changed, 1746 insertions(+), 126 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
next reply other threads:[~2012-10-05 0:09 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-05 0:08 Peter Crosthwaite [this message]
2012-10-05 0:08 ` [Qemu-devel] [PATCH 01/14] ssi: Support for multiple attached devices Peter Crosthwaite
2012-10-05 0:08 ` [Qemu-devel] [PATCH 02/14] ssi: Implemented CS behaviour Peter Crosthwaite
2012-10-05 0:08 ` [Qemu-devel] [PATCH 03/14] ssi: Added create_slave_no_init() Peter Crosthwaite
2012-10-05 0:08 ` [Qemu-devel] [PATCH 04/14] qdev: allow multiple qdev_init_gpio_in() calls Peter Crosthwaite
2012-10-05 8:50 ` Peter Maydell
2012-10-05 0:08 ` [Qemu-devel] [PATCH 05/14] hw/stellaris: Removed gpio_out init array Peter Crosthwaite
2012-10-05 12:31 ` Peter Maydell
2012-10-05 14:17 ` Peter Crosthwaite
2012-10-05 0:08 ` [Qemu-devel] [PATCH 06/14] stellaris: Removed SSI mux Peter Crosthwaite
2012-10-05 12:34 ` Peter Maydell
2012-10-05 14:14 ` Peter Crosthwaite
2012-10-05 0:08 ` [Qemu-devel] [PATCH 07/14] hw: Added generic FIFO API Peter Crosthwaite
2012-10-05 12:45 ` Peter Maydell
2012-10-05 0:08 ` [Qemu-devel] [PATCH 08/14] m25p80: Initial implementation of SPI flash device Peter Crosthwaite
2012-10-05 12:22 ` Peter Maydell
2012-10-05 0:08 ` [Qemu-devel] [PATCH 09/14] xilinx_spi: Initial impl. of Xilinx SPI controller Peter Crosthwaite
2012-10-05 12:42 ` Peter Maydell
2012-10-05 12:49 ` Peter Crosthwaite
2012-10-05 12:52 ` Peter Maydell
2012-10-05 0:08 ` [Qemu-devel] [PATCH 10/14] petalogix-ml605: added SPI controller with n25q128 Peter Crosthwaite
2012-10-05 0:08 ` [Qemu-devel] [PATCH 11/14] xilinx_spips: Xilinx Zynq SPI cntrlr device model Peter Crosthwaite
2012-10-05 0:08 ` [Qemu-devel] [PATCH 12/14] xilinx_zynq: Added SPI controllers + flashes Peter Crosthwaite
2012-10-05 0:08 ` [Qemu-devel] [PATCH 13/14] MAINTAINERS: Added maintainerships for SSI Peter Crosthwaite
2012-10-05 0:08 ` [Qemu-devel] [PATCH 14/14] ssi: Add slave autoconnect helper Peter Crosthwaite
2012-10-05 12:50 ` [Qemu-devel] [PULL 0/14] Ehnahced SSI bus support + M25P80 SPI flash + Xilinx SPI controller Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1349395739-26502-1-git-send-email-peter.crosthwaite@xilinx.com \
--to=peter.crosthwaite@petalogix.com \
--cc=aliguori@us.ibm.com \
--cc=blauwirbel@gmail.com \
--cc=edgar.iglesias@gmail.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).