From: Peter Maydell <peter.maydell@linaro.org>
To: qemu-arm@nongnu.org, qemu-devel@nongnu.org
Cc: patches@linaro.org
Subject: [Qemu-arm] [PATCH 08/19] target/arm: Add Cortex-M33
Date: Tue, 20 Feb 2018 18:03:14 +0000 [thread overview]
Message-ID: <20180220180325.29818-9-peter.maydell@linaro.org> (raw)
In-Reply-To: <20180220180325.29818-1-peter.maydell@linaro.org>
Add a Cortex-M33 definition. The M33 is an M profile CPU
which implements the ARM v8M architecture, including the
M profile Security Extension.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
target/arm/cpu.c | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/target/arm/cpu.c b/target/arm/cpu.c
index 34b5a4a00b..897003a186 100644
--- a/target/arm/cpu.c
+++ b/target/arm/cpu.c
@@ -1205,6 +1205,35 @@ static void cortex_m4_initfn(Object *obj)
cpu->id_isar5 = 0x00000000;
}
+static void cortex_m33_initfn(Object *obj)
+{
+ ARMCPU *cpu = ARM_CPU(obj);
+
+ set_feature(&cpu->env, ARM_FEATURE_V8);
+ set_feature(&cpu->env, ARM_FEATURE_M);
+ set_feature(&cpu->env, ARM_FEATURE_M_SECURITY);
+ set_feature(&cpu->env, ARM_FEATURE_THUMB_DSP);
+ cpu->midr = 0x410fd213; /* r0p3 */
+ cpu->pmsav7_dregion = 16;
+ cpu->sau_sregion = 8;
+ cpu->id_pfr0 = 0x00000030;
+ cpu->id_pfr1 = 0x00000210;
+ cpu->id_dfr0 = 0x00200000;
+ cpu->id_afr0 = 0x00000000;
+ cpu->id_mmfr0 = 0x00101F40;
+ cpu->id_mmfr1 = 0x00000000;
+ cpu->id_mmfr2 = 0x01000000;
+ cpu->id_mmfr3 = 0x00000000;
+ cpu->id_isar0 = 0x01101110;
+ cpu->id_isar1 = 0x02212000;
+ cpu->id_isar2 = 0x20232232;
+ cpu->id_isar3 = 0x01111131;
+ cpu->id_isar4 = 0x01310132;
+ cpu->id_isar5 = 0x00000000;
+ cpu->clidr = 0x00000000;
+ cpu->ctr = 0x8000c000;
+}
+
static void arm_v7m_class_init(ObjectClass *oc, void *data)
{
CPUClass *cc = CPU_CLASS(oc);
@@ -1696,6 +1725,8 @@ static const ARMCPUInfo arm_cpus[] = {
.class_init = arm_v7m_class_init },
{ .name = "cortex-m4", .initfn = cortex_m4_initfn,
.class_init = arm_v7m_class_init },
+ { .name = "cortex-m33", .initfn = cortex_m33_initfn,
+ .class_init = arm_v7m_class_init },
{ .name = "cortex-r5", .initfn = cortex_r5_initfn },
{ .name = "cortex-a7", .initfn = cortex_a7_initfn },
{ .name = "cortex-a8", .initfn = cortex_a8_initfn },
--
2.16.1
next prev parent reply other threads:[~2018-02-20 18:05 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-20 18:03 [Qemu-arm] [PATCH 00/19] Add Cortex-M33 and mps2-an505 board model Peter Maydell
2018-02-20 18:03 ` [Qemu-arm] [PATCH 01/19] loader: Add new load_ramdisk_as() Peter Maydell
2018-02-24 4:40 ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2018-02-20 18:03 ` [Qemu-arm] [PATCH 02/19] hw/arm/boot: Honour CPU's address space for image loads Peter Maydell
2018-02-24 4:56 ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2018-02-20 18:03 ` [Qemu-arm] [PATCH 03/19] hw/arm/armv7m: " Peter Maydell
2018-02-24 5:08 ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2018-02-20 18:03 ` [Qemu-arm] [PATCH 04/19] target/arm: Define an IDAU interface Peter Maydell
2018-02-27 19:32 ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2018-02-20 18:03 ` [Qemu-arm] [PATCH 05/19] armv7m: Forward idau property to CPU object Peter Maydell
2018-02-27 19:53 ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2018-03-01 16:00 ` [Qemu-devel] [Qemu-arm] " Peter Maydell
2018-02-20 18:03 ` [Qemu-arm] [PATCH 06/19] target/arm: Define init-svtor property for the reset secure VTOR value Peter Maydell
2018-02-27 20:18 ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2018-03-01 12:40 ` Peter Maydell
2018-02-20 18:03 ` [Qemu-arm] [PATCH 07/19] armv7m: Forward init-svtor property to CPU object Peter Maydell
2018-02-27 20:26 ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2018-02-20 18:03 ` Peter Maydell [this message]
2018-02-27 20:47 ` [Qemu-devel] [PATCH 08/19] target/arm: Add Cortex-M33 Richard Henderson
2018-02-20 18:03 ` [Qemu-arm] [PATCH 09/19] hw/misc/unimp: Move struct to header file Peter Maydell
2018-02-20 18:27 ` [Qemu-devel] " Philippe Mathieu-Daudé
2018-02-27 20:50 ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2018-02-20 18:03 ` [Qemu-arm] [PATCH 10/19] include/hw/or-irq.h: Add missing include guard Peter Maydell
2018-02-20 18:25 ` [Qemu-devel] " Philippe Mathieu-Daudé
2018-02-27 20:51 ` [Qemu-arm] " Richard Henderson
2018-02-20 18:03 ` [Qemu-arm] [PATCH 11/19] qdev: Add new qdev_init_gpio_in_named_with_opaque() Peter Maydell
2018-02-20 18:26 ` Philippe Mathieu-Daudé
2018-02-27 20:52 ` [Qemu-devel] " Richard Henderson
2018-02-20 18:03 ` [Qemu-arm] [PATCH 12/19] hw/core/split-irq: Device that splits IRQ lines Peter Maydell
2018-02-27 20:58 ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2018-02-20 18:03 ` [Qemu-arm] [PATCH 13/19] hw/misc/mps2-fpgaio: FPGA control block for MPS2 AN505 Peter Maydell
2018-02-27 21:11 ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2018-02-20 18:03 ` [Qemu-arm] [PATCH 14/19] hw/misc/tz-ppc: Model TrustZone peripheral protection controller Peter Maydell
2018-02-27 21:36 ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2018-02-20 18:03 ` [Qemu-arm] [PATCH 15/19] hw/misc/iotkit-secctl: Arm IoT Kit security controller initial skeleton Peter Maydell
2018-02-27 21:44 ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2018-03-01 12:44 ` Peter Maydell
2018-02-20 18:03 ` [Qemu-arm] [PATCH 16/19] hw/misc/iotkit-secctl: Add handling for PPCs Peter Maydell
2018-02-27 21:54 ` [Qemu-devel] " Richard Henderson
2018-02-20 18:03 ` [Qemu-arm] [PATCH 17/19] hw/misc/iotkit-secctl: Add remaining simple registers Peter Maydell
2018-02-27 22:00 ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2018-03-01 12:47 ` Peter Maydell
2018-02-20 18:03 ` [Qemu-arm] [PATCH 18/19] hw/arm/iotkit: Model Arm IOT Kit Peter Maydell
2018-02-27 22:49 ` [Qemu-arm] [Qemu-devel] " Richard Henderson
2018-02-20 18:03 ` [Qemu-arm] [PATCH 19/19] mps2-an505: New board model: MPS2 with AN505 Cortex-M33 FPGA image Peter Maydell
2018-02-21 10:30 ` [Qemu-arm] [Qemu-devel] " Igor Mammedov
2018-03-01 12:50 ` Peter Maydell
2018-02-27 22:50 ` Richard Henderson
2018-02-22 19:03 ` [Qemu-arm] [Qemu-devel] [PATCH 00/19] Add Cortex-M33 and mps2-an505 board model no-reply
2018-02-22 19:11 ` Peter Maydell
2018-02-22 21:55 ` [Qemu-arm] " Eric Blake
2018-02-24 6:19 ` no-reply
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=20180220180325.29818-9-peter.maydell@linaro.org \
--to=peter.maydell@linaro.org \
--cc=patches@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 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).