From: Alistair Francis <alistair23@gmail.com>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, peter.crosthwaite@xilinx.com,
konstanty@ieee.org, martin.galvan@tallertechnologies.com
Subject: [Qemu-devel] [Patch v2 0/8] Netduino 2 Machine Model
Date: Fri, 19 Sep 2014 14:54:02 +1000 [thread overview]
Message-ID: <cover.1411096688.git.alistair23@gmail.com> (raw)
This patch series adds the Netduino 2 Machine to QEMU
Information on the board is avalible at:
http://www.netduino.com/netduino2/specs.htm
The git tree can be found at:
https://github.com/alistair23/qemu/tree/netduino2.2
This is based on my original patch series to add the
Netduino Plus 2 Machine to QEMU. This can be seen at:
http://lists.nongnu.org/archive/html/qemu-devel/2014-08/msg04026.html
It is also based on my RFC patches, which can be seen at:
https://lists.nongnu.org/archive/html/qemu-devel/2014-09/msg01638.html
This patch series makes some changes to the armv7m_init function
that allows the code to be reused with the Netduino 2 and the
Stellaris machines.
Some example code that runs on QEMU is avaliable at:
at: https://github.com/alistair23/CSSE3010-QEMU-Examples
I have more devices in the works, I figured I would just start
with these three
V2:
- Fix up the Timer device
- Fix up the USART device
- Change the memory region names to match the Stellaris board
Changes from RFC:
- Code cleanup thanks to Peter C's comments
- Split the Makefile configs to device level
- Changes to armv7m_init with interupt and memory passing
- See the individual patches for more details
Alistair Francis (8):
stm32f205_timer: Add the stm32f205 Timer
stm32f205_USART: Add the stm32f205 USART Controller
stm32f205_SYSCFG: Add the stm32f205 SYSCFG
target_arm: Remove memory region init from armv7m_init
target_arm: Parameterise the irq lines for armv7m_init
target_arm: Change the reset values based on the ELF entry
stm32f205: Add the stm32f205 SoC
netduino2: Add the Netduino 2 Machine
default-configs/arm-softmmu.mak | 4 +
hw/arm/Makefile.objs | 2 +
hw/arm/armv7m.c | 45 +++---
hw/arm/netduino2.c | 54 +++++++
hw/arm/stellaris.c | 25 +++-
hw/arm/stm32f205_soc.c | 155 +++++++++++++++++++++
hw/char/Makefile.objs | 1 +
hw/char/stm32f205_usart.c | 218 +++++++++++++++++++++++++++++
hw/misc/Makefile.objs | 1 +
hw/misc/stm32f205_syscfg.c | 160 +++++++++++++++++++++
hw/timer/Makefile.objs | 2 +
hw/timer/stm32f205_timer.c | 279 +++++++++++++++++++++++++++++++++++++
include/hw/arm/arm.h | 2 +-
include/hw/arm/stm32f205_soc.h | 69 +++++++++
include/hw/char/stm32f205_usart.h | 69 +++++++++
include/hw/misc/stm32f205_syscfg.h | 61 ++++++++
include/hw/timer/stm32f205_timer.h | 101 ++++++++++++++
17 files changed, 1221 insertions(+), 27 deletions(-)
create mode 100644 hw/arm/netduino2.c
create mode 100644 hw/arm/stm32f205_soc.c
create mode 100644 hw/char/stm32f205_usart.c
create mode 100644 hw/misc/stm32f205_syscfg.c
create mode 100644 hw/timer/stm32f205_timer.c
create mode 100644 include/hw/arm/stm32f205_soc.h
create mode 100644 include/hw/char/stm32f205_usart.h
create mode 100644 include/hw/misc/stm32f205_syscfg.h
create mode 100644 include/hw/timer/stm32f205_timer.h
--
1.9.1
next reply other threads:[~2014-09-19 4:54 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-19 4:54 Alistair Francis [this message]
2014-09-19 4:54 ` [Qemu-devel] [Patch v2 1/8] stm32f205_timer: Add the stm32f205 Timer Alistair Francis
2014-09-22 11:40 ` Peter Crosthwaite
2014-09-25 12:39 ` Alistair Francis
2014-09-19 4:54 ` [Qemu-devel] [Patch v2 2/8] stm32f205_USART: Add the stm32f205 USART Controller Alistair Francis
2014-09-19 4:54 ` [Qemu-devel] [Patch v2 3/8] stm32f205_SYSCFG: Add the stm32f205 SYSCFG Alistair Francis
2014-09-19 4:54 ` [Qemu-devel] [Patch v2 4/8] target_arm: Remove memory region init from armv7m_init Alistair Francis
2014-09-22 12:11 ` Peter Crosthwaite
2014-09-19 4:54 ` [Qemu-devel] [Patch v2 5/8] target_arm: Parameterise the irq lines for armv7m_init Alistair Francis
2014-09-19 4:54 ` [Qemu-devel] [Patch v2 6/8] target_arm: Change the reset values based on the ELF entry Alistair Francis
2014-09-19 4:54 ` [Qemu-devel] [Patch v2 7/8] stm32f205: Add the stm32f205 SoC Alistair Francis
2014-09-19 4:55 ` [Qemu-devel] [Patch v2 8/8] netduino2: Add the Netduino 2 Machine Alistair Francis
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.1411096688.git.alistair23@gmail.com \
--to=alistair23@gmail.com \
--cc=konstanty@ieee.org \
--cc=martin.galvan@tallertechnologies.com \
--cc=peter.crosthwaite@xilinx.com \
--cc=peter.maydell@linaro.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 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).