From: Peter Maydell <peter.maydell@linaro.org>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/42] target-arm queue
Date: Mon, 29 Apr 2019 17:59:48 +0100 [thread overview]
Message-ID: <20190429170030.11323-1-peter.maydell@linaro.org> (raw)
First pullreq for arm of the 4.1 series, since I'm back from
holiday now. This is mostly my M-profile FPU series and Philippe's
devices.h cleanup. I have a pile of other patchsets to work through
in my to-review folder, but 42 patches is definitely quite
big enough to send now...
thanks
-- PMM
The following changes since commit 413a99a92c13ec408dcf2adaa87918dc81e890c8:
Add Nios II semihosting support. (2019-04-29 16:09:51 +0100)
are available in the Git repository at:
https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20190429
for you to fetch changes up to 437cc27ddfded3bbab6afd5ac1761e0e195edba7:
hw/devices: Move SMSC 91C111 declaration into a new header (2019-04-29 17:57:21 +0100)
----------------------------------------------------------------
target-arm queue:
* remove "bag of random stuff" hw/devices.h header
* implement FPU for Cortex-M and enable it for Cortex-M4 and -M33
* hw/dma: Compile the bcm2835_dma device as common object
* configure: Remove --source-path option
* hw/ssi/xilinx_spips: Avoid variable length array
* hw/arm/smmuv3: Remove SMMUNotifierNode
----------------------------------------------------------------
Eric Auger (1):
hw/arm/smmuv3: Remove SMMUNotifierNode
Peter Maydell (28):
hw/ssi/xilinx_spips: Avoid variable length array
configure: Remove --source-path option
target/arm: Make sure M-profile FPSCR RES0 bits are not settable
hw/intc/armv7m_nvic: Allow reading of M-profile MVFR* registers
target/arm: Implement dummy versions of M-profile FP-related registers
target/arm: Disable most VFP sysregs for M-profile
target/arm: Honour M-profile FP enable bits
target/arm: Decode FP instructions for M profile
target/arm: Clear CONTROL_S.SFPA in SG insn if FPU present
target/arm: Handle SFPA and FPCA bits in reads and writes of CONTROL
target/arm/helper: don't return early for STKOF faults during stacking
target/arm: Handle floating point registers in exception entry
target/arm: Implement v7m_update_fpccr()
target/arm: Clear CONTROL.SFPA in BXNS and BLXNS
target/arm: Clean excReturn bits when tail chaining
target/arm: Allow for floating point in callee stack integrity check
target/arm: Handle floating point registers in exception return
target/arm: Move NS TBFLAG from bit 19 to bit 6
target/arm: Overlap VECSTRIDE and XSCALE_CPAR TB flags
target/arm: Set FPCCR.S when executing M-profile floating point insns
target/arm: Activate M-profile floating point context when FPCCR.ASPEN is set
target/arm: New helper function arm_v7m_mmu_idx_all()
target/arm: New function armv7m_nvic_set_pending_lazyfp()
target/arm: Add lazy-FP-stacking support to v7m_stack_write()
target/arm: Implement M-profile lazy FP state preservation
target/arm: Implement VLSTM for v7M CPUs with an FPU
target/arm: Implement VLLDM for v7M CPUs with an FPU
target/arm: Enable FPU for Cortex-M4 and Cortex-M33
Philippe Mathieu-Daudé (13):
hw/dma: Compile the bcm2835_dma device as common object
hw/arm/aspeed: Use TYPE_TMP105/TYPE_PCA9552 instead of hardcoded string
hw/arm/nseries: Use TYPE_TMP105 instead of hardcoded string
hw/display/tc6393xb: Remove unused functions
hw/devices: Move TC6393XB declarations into a new header
hw/devices: Move Blizzard declarations into a new header
hw/devices: Move CBus declarations into a new header
hw/devices: Move Gamepad declarations into a new header
hw/devices: Move TI touchscreen declarations into a new header
hw/devices: Move LAN9118 declarations into a new header
hw/net/ne2000-isa: Add guards to the header
hw/net/lan9118: Export TYPE_LAN9118 and use it instead of hardcoded string
hw/devices: Move SMSC 91C111 declaration into a new header
configure | 10 +-
hw/dma/Makefile.objs | 2 +-
include/hw/arm/omap.h | 6 +-
include/hw/arm/smmu-common.h | 8 +-
include/hw/devices.h | 62 ---
include/hw/display/blizzard.h | 22 ++
include/hw/display/tc6393xb.h | 24 ++
include/hw/input/gamepad.h | 19 +
include/hw/input/tsc2xxx.h | 36 ++
include/hw/misc/cbus.h | 32 ++
include/hw/net/lan9118.h | 21 +
include/hw/net/ne2000-isa.h | 6 +
include/hw/net/smc91c111.h | 19 +
include/qemu/typedefs.h | 1 -
target/arm/cpu.h | 95 ++++-
target/arm/helper.h | 5 +
target/arm/translate.h | 3 +
hw/arm/aspeed.c | 13 +-
hw/arm/exynos4_boards.c | 3 +-
hw/arm/gumstix.c | 2 +-
hw/arm/integratorcp.c | 2 +-
hw/arm/kzm.c | 2 +-
hw/arm/mainstone.c | 2 +-
hw/arm/mps2-tz.c | 3 +-
hw/arm/mps2.c | 2 +-
hw/arm/nseries.c | 7 +-
hw/arm/palm.c | 2 +-
hw/arm/realview.c | 3 +-
hw/arm/smmu-common.c | 6 +-
hw/arm/smmuv3.c | 28 +-
hw/arm/stellaris.c | 2 +-
hw/arm/tosa.c | 2 +-
hw/arm/versatilepb.c | 2 +-
hw/arm/vexpress.c | 2 +-
hw/display/blizzard.c | 2 +-
hw/display/tc6393xb.c | 18 +-
hw/input/stellaris_input.c | 2 +-
hw/input/tsc2005.c | 2 +-
hw/input/tsc210x.c | 4 +-
hw/intc/armv7m_nvic.c | 261 +++++++++++++
hw/misc/cbus.c | 2 +-
hw/net/lan9118.c | 3 +-
hw/net/smc91c111.c | 2 +-
hw/ssi/xilinx_spips.c | 6 +-
target/arm/cpu.c | 20 +
target/arm/helper.c | 873 +++++++++++++++++++++++++++++++++++++++---
target/arm/machine.c | 16 +
target/arm/translate.c | 150 +++++++-
target/arm/vfp_helper.c | 8 +
MAINTAINERS | 7 +
50 files changed, 1595 insertions(+), 235 deletions(-)
delete mode 100644 include/hw/devices.h
create mode 100644 include/hw/display/blizzard.h
create mode 100644 include/hw/display/tc6393xb.h
create mode 100644 include/hw/input/gamepad.h
create mode 100644 include/hw/input/tsc2xxx.h
create mode 100644 include/hw/misc/cbus.h
create mode 100644 include/hw/net/lan9118.h
create mode 100644 include/hw/net/smc91c111.h
next reply other threads:[~2019-04-29 17:00 UTC|newest]
Thread overview: 94+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-29 16:59 Peter Maydell [this message]
2019-04-29 16:59 ` [Qemu-devel] [PULL 00/42] target-arm queue Peter Maydell
2019-04-29 16:59 ` [Qemu-devel] [PULL 01/42] hw/arm/smmuv3: Remove SMMUNotifierNode Peter Maydell
2019-04-29 16:59 ` Peter Maydell
2019-04-29 16:59 ` [Qemu-devel] [PULL 02/42] hw/ssi/xilinx_spips: Avoid variable length array Peter Maydell
2019-04-29 16:59 ` Peter Maydell
2019-04-29 16:59 ` [Qemu-devel] [PULL 03/42] configure: Remove --source-path option Peter Maydell
2019-04-29 16:59 ` Peter Maydell
2019-04-29 16:59 ` [Qemu-devel] [PULL 04/42] target/arm: Make sure M-profile FPSCR RES0 bits are not settable Peter Maydell
2019-04-29 16:59 ` Peter Maydell
2019-04-29 16:59 ` [Qemu-devel] [PULL 05/42] hw/intc/armv7m_nvic: Allow reading of M-profile MVFR* registers Peter Maydell
2019-04-29 16:59 ` Peter Maydell
2019-04-29 16:59 ` [Qemu-devel] [PULL 06/42] target/arm: Implement dummy versions of M-profile FP-related registers Peter Maydell
2019-04-29 16:59 ` Peter Maydell
2019-04-29 16:59 ` [Qemu-devel] [PULL 07/42] target/arm: Disable most VFP sysregs for M-profile Peter Maydell
2019-04-29 16:59 ` Peter Maydell
2019-04-29 16:59 ` [Qemu-devel] [PULL 08/42] target/arm: Honour M-profile FP enable bits Peter Maydell
2019-04-29 16:59 ` Peter Maydell
2019-04-29 16:59 ` [Qemu-devel] [PULL 09/42] target/arm: Decode FP instructions for M profile Peter Maydell
2019-04-29 16:59 ` Peter Maydell
2019-04-29 16:59 ` [Qemu-devel] [PULL 10/42] target/arm: Clear CONTROL_S.SFPA in SG insn if FPU present Peter Maydell
2019-04-29 16:59 ` Peter Maydell
2019-04-29 16:59 ` [Qemu-devel] [PULL 11/42] target/arm: Handle SFPA and FPCA bits in reads and writes of CONTROL Peter Maydell
2019-04-29 16:59 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 12/42] target/arm/helper: don't return early for STKOF faults during stacking Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 13/42] target/arm: Handle floating point registers in exception entry Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 14/42] target/arm: Implement v7m_update_fpccr() Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 15/42] target/arm: Clear CONTROL.SFPA in BXNS and BLXNS Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 16/42] target/arm: Clean excReturn bits when tail chaining Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 17/42] target/arm: Allow for floating point in callee stack integrity check Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 18/42] target/arm: Handle floating point registers in exception return Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 19/42] target/arm: Move NS TBFLAG from bit 19 to bit 6 Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 20/42] target/arm: Overlap VECSTRIDE and XSCALE_CPAR TB flags Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 21/42] target/arm: Set FPCCR.S when executing M-profile floating point insns Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 22/42] target/arm: Activate M-profile floating point context when FPCCR.ASPEN is set Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 23/42] target/arm: New helper function arm_v7m_mmu_idx_all() Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 24/42] target/arm: New function armv7m_nvic_set_pending_lazyfp() Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 25/42] target/arm: Add lazy-FP-stacking support to v7m_stack_write() Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 26/42] target/arm: Implement M-profile lazy FP state preservation Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 27/42] target/arm: Implement VLSTM for v7M CPUs with an FPU Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 28/42] target/arm: Implement VLLDM " Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 29/42] target/arm: Enable FPU for Cortex-M4 and Cortex-M33 Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 30/42] hw/dma: Compile the bcm2835_dma device as common object Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 31/42] hw/arm/aspeed: Use TYPE_TMP105/TYPE_PCA9552 instead of hardcoded string Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 32/42] hw/arm/nseries: Use TYPE_TMP105 " Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 33/42] hw/display/tc6393xb: Remove unused functions Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 34/42] hw/devices: Move TC6393XB declarations into a new header Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 35/42] hw/devices: Move Blizzard " Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 36/42] hw/devices: Move CBus " Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 37/42] hw/devices: Move Gamepad " Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 38/42] hw/devices: Move TI touchscreen " Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 39/42] hw/devices: Move LAN9118 " Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 40/42] hw/net/ne2000-isa: Add guards to the header Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 41/42] hw/net/lan9118: Export TYPE_LAN9118 and use it instead of hardcoded string Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 17:00 ` [Qemu-devel] [PULL 42/42] hw/devices: Move SMSC 91C111 declaration into a new header Peter Maydell
2019-04-29 17:00 ` Peter Maydell
2019-04-29 18:10 ` [Qemu-devel] [PULL 00/42] target-arm queue Peter Maydell
2019-04-29 18:10 ` Peter Maydell
-- strict thread matches above, loose matches on Subject: below --
2018-03-01 11:23 Peter Maydell
2018-03-01 13:00 ` no-reply
2018-03-01 14:45 ` Peter Maydell
2018-03-02 0:52 ` Fam Zheng
2018-03-01 13:01 ` no-reply
2018-03-01 17:08 ` 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=20190429170030.11323-1-peter.maydell@linaro.org \
--to=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).