From: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
To: qemu-devel@nongnu.org
Cc: edgar.iglesias@xilinx.com, peter.maydell@linaro.org,
zach.pfeffer@xilinx.com, jues@xilinx.com, ozaki.ryota@gmail.com,
alistair.francis@xilinx.com, michals@xilinx.com
Subject: [Qemu-devel] [PATCH target-arm v9 00/14] Next Generation Xilinx Zynq SoC
Date: Thu, 14 May 2015 19:22:47 -0700 [thread overview]
Message-ID: <cover.1431381507.git.peter.crosthwaite@xilinx.com> (raw)
Hi Peter and all,
Xilinx's next gen SoC has been announced. This series adds a SoC and
board.
Series start with addition of ARM cortex A53 support (P1 and P2). The
Soc skeleton is then added with GIC, EMACs and UARTs added. The
pre-existing models for GEM and UART are not SoC friendly (no visible
state struct), so those are refactored for SoC.
Create a model of the EP108 board. Currently this doesn't have any
EP108 specific features but is a usable board exposing the user visible
features of the raw SoC.
See individual patches for detailed change logs.
changed since v8 (Edgar review):
Correct GIC nr of SPIs (=160)
changed since v7 (PMM review):
made GIC region sz defs board specific.
changed since v6 (Edgar review):
Added GIC region size macro
Added GIC alises
changed since v4:
Addressed PMM and Alistair Reviews
changed since v3:
Included CPU thread kick fix
Addressed Alistair review
changed since v2:
Fix CPU child prop adder
Add DTS compat string
changed since v1:
Addressed Alistair review (individual changes on resp. patches)
Changed board name to EP108
Changed naming scheme to "zynqmp" / "ZYNQMP" (Michal review)
Regards,
Peter
Peter Crosthwaite (14):
target-arm: cpu64: generalise name of A57 regs
target-arm: cpu64: Add support for Cortex-A53
arm: Introduce Xilinx ZynqMP SoC
arm: xlnx-zynqmp: Add GIC
arm: xlnx-zynqmp: Connect CPU Timers to GIC
net: cadence_gem: Clean up variable names
net: cadence_gem: Split state struct and type into header
arm: xlnx-zynqmp: Add GEM support
char: cadence_uart: Clean up variable names
char: cadence_uart: Split state struct and type into header
arm: xlnx-zynqmp: Add UART support
arm: Add xlnx-ep108 machine
arm: xlnx-ep108: Add external RAM
arm: xlnx-ep108: Add bootloading
default-configs/aarch64-softmmu.mak | 2 +-
hw/arm/Makefile.objs | 1 +
hw/arm/xlnx-ep108.c | 82 ++++++++++++++
hw/arm/xlnx-zynqmp.c | 211 ++++++++++++++++++++++++++++++++++++
hw/char/cadence_uart.c | 115 ++++++++------------
hw/net/cadence_gem.c | 95 +++++-----------
include/hw/arm/xlnx-zynqmp.h | 58 ++++++++++
include/hw/char/cadence_uart.h | 53 +++++++++
include/hw/net/cadence_gem.h | 73 +++++++++++++
target-arm/cpu64.c | 61 ++++++++++-
10 files changed, 609 insertions(+), 142 deletions(-)
create mode 100644 hw/arm/xlnx-ep108.c
create mode 100644 hw/arm/xlnx-zynqmp.c
create mode 100644 include/hw/arm/xlnx-zynqmp.h
create mode 100644 include/hw/char/cadence_uart.h
create mode 100644 include/hw/net/cadence_gem.h
--
2.4.0.3.ge0ccc3b.dirty
next reply other threads:[~2015-05-15 2:22 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-15 2:22 Peter Crosthwaite [this message]
2015-05-15 2:22 ` [Qemu-devel] [PATCH target-arm v9 01/14] target-arm: cpu64: generalise name of A57 regs Peter Crosthwaite
2015-05-15 2:22 ` [Qemu-devel] [PATCH target-arm v9 02/14] target-arm: cpu64: Add support for Cortex-A53 Peter Crosthwaite
2015-05-15 2:22 ` [Qemu-devel] [PATCH target-arm v9 03/14] arm: Introduce Xilinx ZynqMP SoC Peter Crosthwaite
2015-05-15 2:23 ` [Qemu-devel] [PATCH target-arm v9 04/14] arm: xlnx-zynqmp: Add GIC Peter Crosthwaite
2015-05-15 2:23 ` [Qemu-devel] [PATCH target-arm v9 05/14] arm: xlnx-zynqmp: Connect CPU Timers to GIC Peter Crosthwaite
2015-05-15 2:23 ` [Qemu-devel] [PATCH target-arm v9 06/14] net: cadence_gem: Clean up variable names Peter Crosthwaite
2015-05-15 2:23 ` [Qemu-devel] [PATCH target-arm v9 07/14] net: cadence_gem: Split state struct and type into header Peter Crosthwaite
2015-05-15 2:23 ` [Qemu-devel] [PATCH target-arm v9 08/14] arm: xlnx-zynqmp: Add GEM support Peter Crosthwaite
2015-05-15 2:23 ` [Qemu-devel] [PATCH target-arm v9 09/14] char: cadence_uart: Clean up variable names Peter Crosthwaite
2015-05-15 2:23 ` [Qemu-devel] [PATCH target-arm v9 10/14] char: cadence_uart: Split state struct and type into header Peter Crosthwaite
2015-05-15 2:23 ` [Qemu-devel] [PATCH target-arm v9 11/14] arm: xlnx-zynqmp: Add UART support Peter Crosthwaite
2015-05-15 2:23 ` [Qemu-devel] [PATCH target-arm v9 12/14] arm: Add xlnx-ep108 machine Peter Crosthwaite
2015-05-15 2:23 ` [Qemu-devel] [PATCH target-arm v9 13/14] arm: xlnx-ep108: Add external RAM Peter Crosthwaite
2015-05-15 2:23 ` [Qemu-devel] [PATCH target-arm v9 14/14] arm: xlnx-ep108: Add bootloading Peter Crosthwaite
2015-05-18 15:45 ` [Qemu-devel] [PATCH target-arm v9 00/14] Next Generation Xilinx Zynq SoC 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=cover.1431381507.git.peter.crosthwaite@xilinx.com \
--to=peter.crosthwaite@xilinx.com \
--cc=alistair.francis@xilinx.com \
--cc=edgar.iglesias@xilinx.com \
--cc=jues@xilinx.com \
--cc=michals@xilinx.com \
--cc=ozaki.ryota@gmail.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=zach.pfeffer@xilinx.com \
/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).