From: Peter Crosthwaite <crosthwaitepeter@gmail.com>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, crosthwaite.peter@gmail.com,
qemu-arm@nongnu.org, pbonzini@redhat.com,
alistair.francis@xilinx.com
Subject: [Qemu-devel] [PATCH v6 0/6] Connect the SPI devices to ZynqMP
Date: Sat, 19 Dec 2015 21:43:32 -0800 [thread overview]
Message-ID: <cover.1450570397.git.crosthwaite.peter@gmail.com> (raw)
Hi All,
This is a modification of Alistair's ZynqMP SPI work, which proposes a
solution to the SoC bus-aliasing problem. Patch 1 is the big change,
and patches 5 and 6 demo the capability.
I have only tested this -S as I do not have images that test SPI handy,
but qtree looks correct with the new SPI flashes.
V6:
Allow use of QOM paths for referencing qbusses
Use Alias to implement bus pinout.
Regards,
Peter
Original Cover from Alistair:
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.
V5:
- Fix a typo
- Use a qdev API to rename the SPI bus
V4:
- Rebase
- Rename the SPI busses so that they can all be accessed from the SoC
- Only create one SPI flash device
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: Separate the state struct into a header
xlnx-zynqmp: Connect the SPI devices
xlnx-ep108: Connect the SPI Flash
Peter Crosthwaite (1):
qdev: get_child_bus(): Use QOM lookup if available
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 | 16 +++++++++
hw/arm/xlnx-zynqmp.c | 30 ++++++++++++++++
hw/arm/z2.c | 2 +-
hw/block/m25p80.c | 3 +-
hw/core/qdev.c | 6 ++++
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 | 48 +++----------------------
include/hw/arm/xlnx-zynqmp.h | 3 ++
include/hw/{ => ssi}/ssi.h | 10 +++---
include/hw/ssi/xilinx_spips.h | 72 +++++++++++++++++++++++++++++++++++++
23 files changed, 155 insertions(+), 63 deletions(-)
rename include/hw/{ => ssi}/ssi.h (96%)
create mode 100644 include/hw/ssi/xilinx_spips.h
--
1.9.1
next reply other threads:[~2015-12-20 5:44 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-20 5:43 Peter Crosthwaite [this message]
2015-12-20 5:43 ` [Qemu-arm] [PATCH v6 1/6] qdev: get_child_bus(): Use QOM lookup if available Peter Crosthwaite
2015-12-20 5:43 ` [Qemu-devel] " Peter Crosthwaite
2016-01-07 0:18 ` Alistair Francis
2016-01-07 0:25 ` [Qemu-arm] " Peter Crosthwaite
2016-01-07 0:25 ` Peter Crosthwaite
2016-01-08 0:04 ` Alistair Francis
2016-01-07 16:04 ` [Qemu-arm] " Peter Maydell
2016-01-07 16:04 ` [Qemu-devel] " Peter Maydell
2015-12-20 5:43 ` [Qemu-devel] [PATCH v6 2/6] m25p80.c: Add sst25wf080 SPI flash device Peter Crosthwaite
2015-12-20 5:43 ` [Qemu-devel] [PATCH v6 3/6] ssi: Move ssi.h into a separate directory Peter Crosthwaite
2015-12-20 5:43 ` [Qemu-devel] [PATCH v6 4/6] xilinx_spips: Separate the state struct into a header Peter Crosthwaite
2015-12-20 5:43 ` [Qemu-arm] [PATCH v6 5/6] xlnx-zynqmp: Connect the SPI devices Peter Crosthwaite
2015-12-20 5:43 ` [Qemu-devel] " Peter Crosthwaite
2016-01-07 15:55 ` [Qemu-arm] " Peter Maydell
2016-01-07 15:55 ` [Qemu-devel] " Peter Maydell
2016-01-15 15:21 ` [Qemu-arm] " Peter Maydell
2016-01-15 15:21 ` [Qemu-devel] " Peter Maydell
2016-01-15 21:32 ` [Qemu-arm] " Alistair Francis
2016-01-15 21:32 ` Alistair Francis
2015-12-20 5:43 ` [Qemu-arm] [PATCH v6 6/6] xlnx-ep108: Connect the SPI Flash Peter Crosthwaite
2015-12-20 5:43 ` [Qemu-devel] " Peter Crosthwaite
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=cover.1450570397.git.crosthwaite.peter@gmail.com \
--to=crosthwaitepeter@gmail.com \
--cc=alistair.francis@xilinx.com \
--cc=crosthwaite.peter@gmail.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.