2018-03-02 11:45:40 +01:00
|
|
|
/*
|
2019-02-01 15:55:43 +01:00
|
|
|
* ARM SSE (Subsystems for Embedded): IoTKit, SSE-200
|
2018-03-02 11:45:40 +01:00
|
|
|
*
|
|
|
|
* Copyright (c) 2018 Linaro Limited
|
|
|
|
* Written by Peter Maydell
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
2019-02-01 15:55:41 +01:00
|
|
|
/*
|
|
|
|
* This is a model of the Arm "Subsystems for Embedded" family of
|
|
|
|
* hardware, which include the IoT Kit and the SSE-050, SSE-100 and
|
2019-02-01 15:55:43 +01:00
|
|
|
* SSE-200. Currently we model:
|
|
|
|
* - the Arm IoT Kit which is documented in
|
2018-03-02 11:45:40 +01:00
|
|
|
* http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ecm0601256/index.html
|
2019-02-01 15:55:43 +01:00
|
|
|
* - the SSE-200 which is documented in
|
|
|
|
* http://infocenter.arm.com/help/topic/com.arm.doc.101104_0100_00_en/corelink_sse200_subsystem_for_embedded_technical_reference_manual_101104_0100_00_en.pdf
|
|
|
|
*
|
|
|
|
* The IoTKit contains:
|
2018-03-02 11:45:40 +01:00
|
|
|
* a Cortex-M33
|
|
|
|
* the IDAU
|
|
|
|
* some timers and watchdogs
|
|
|
|
* two peripheral protection controllers
|
|
|
|
* a memory protection controller
|
|
|
|
* a security controller
|
|
|
|
* a bus fabric which arranges that some parts of the address
|
|
|
|
* space are secure and non-secure aliases of each other
|
2019-02-01 15:55:43 +01:00
|
|
|
* The SSE-200 additionally contains:
|
|
|
|
* a second Cortex-M33
|
|
|
|
* two Message Handling Units (MHUs)
|
|
|
|
* an optional CryptoCell (which we do not model)
|
|
|
|
* more SRAM banks with associated MPCs
|
|
|
|
* multiple Power Policy Units (PPUs)
|
|
|
|
* a control interface for an icache for each CPU
|
|
|
|
* per-CPU identity and control register blocks
|
2018-03-02 11:45:40 +01:00
|
|
|
*
|
|
|
|
* QEMU interface:
|
|
|
|
* + QOM property "memory" is a MemoryRegion containing the devices provided
|
|
|
|
* by the board model.
|
|
|
|
* + QOM property "MAINCLK" is the frequency of the main system clock
|
2019-02-01 15:55:42 +01:00
|
|
|
* + QOM property "EXP_NUMIRQ" sets the number of expansion interrupts.
|
|
|
|
* (In hardware, the SSE-200 permits the number of expansion interrupts
|
|
|
|
* for the two CPUs to be configured separately, but we restrict it to
|
|
|
|
* being the same for both, to avoid having to have separate Property
|
|
|
|
* lists for different variants. This restriction can be relaxed later
|
|
|
|
* if necessary.)
|
2019-02-21 19:17:47 +01:00
|
|
|
* + QOM property "SRAM_ADDR_WIDTH" sets the number of bits used for the
|
|
|
|
* address of each SRAM bank (and thus the total amount of internal SRAM)
|
2019-02-21 19:17:47 +01:00
|
|
|
* + QOM property "init-svtor" sets the initial value of the CPU SVTOR register
|
|
|
|
* (where it expects to load the PC and SP from the vector table on reset)
|
2019-05-17 19:40:46 +02:00
|
|
|
* + QOM properties "CPU0_FPU", "CPU0_DSP", "CPU1_FPU" and "CPU1_DSP" which
|
|
|
|
* set whether the CPUs have the FPU and DSP features present. The default
|
|
|
|
* (matching the hardware) is that for CPU0 in an IoTKit and CPU1 in an
|
|
|
|
* SSE-200 both are present; CPU0 in an SSE-200 has neither.
|
|
|
|
* Since the IoTKit has only one CPU, it does not have the CPU1_* properties.
|
2019-02-01 15:55:42 +01:00
|
|
|
* + Named GPIO inputs "EXP_IRQ" 0..n are the expansion interrupts for CPU 0,
|
|
|
|
* which are wired to its NVIC lines 32 .. n+32
|
|
|
|
* + Named GPIO inputs "EXP_CPU1_IRQ" 0..n are the expansion interrupts for
|
|
|
|
* CPU 1, which are wired to its NVIC lines 32 .. n+32
|
2018-08-24 14:17:44 +02:00
|
|
|
* + sysbus MMIO region 0 is the "AHB Slave Expansion" which allows
|
|
|
|
* bus master devices in the board model to make transactions into
|
|
|
|
* all the devices and memory areas in the IoTKit
|
2018-03-02 11:45:40 +01:00
|
|
|
* Controlling up to 4 AHB expansion PPBs which a system using the IoTKit
|
|
|
|
* might provide:
|
|
|
|
* + named GPIO outputs apb_ppcexp{0,1,2,3}_nonsec[0..15]
|
|
|
|
* + named GPIO outputs apb_ppcexp{0,1,2,3}_ap[0..15]
|
|
|
|
* + named GPIO outputs apb_ppcexp{0,1,2,3}_irq_enable
|
|
|
|
* + named GPIO outputs apb_ppcexp{0,1,2,3}_irq_clear
|
|
|
|
* + named GPIO inputs apb_ppcexp{0,1,2,3}_irq_status
|
|
|
|
* Controlling each of the 4 expansion AHB PPCs which a system using the IoTKit
|
|
|
|
* might provide:
|
|
|
|
* + named GPIO outputs ahb_ppcexp{0,1,2,3}_nonsec[0..15]
|
|
|
|
* + named GPIO outputs ahb_ppcexp{0,1,2,3}_ap[0..15]
|
|
|
|
* + named GPIO outputs ahb_ppcexp{0,1,2,3}_irq_enable
|
|
|
|
* + named GPIO outputs ahb_ppcexp{0,1,2,3}_irq_clear
|
|
|
|
* + named GPIO inputs ahb_ppcexp{0,1,2,3}_irq_status
|
2018-06-22 14:28:40 +02:00
|
|
|
* Controlling each of the 16 expansion MPCs which a system using the IoTKit
|
|
|
|
* might provide:
|
|
|
|
* + named GPIO inputs mpcexp_status[0..15]
|
2018-08-24 14:17:44 +02:00
|
|
|
* Controlling each of the 16 expansion MSCs which a system using the IoTKit
|
|
|
|
* might provide:
|
|
|
|
* + named GPIO inputs mscexp_status[0..15]
|
|
|
|
* + named GPIO outputs mscexp_clear[0..15]
|
|
|
|
* + named GPIO outputs mscexp_ns[0..15]
|
2018-03-02 11:45:40 +01:00
|
|
|
*/
|
|
|
|
|
2019-02-01 15:55:42 +01:00
|
|
|
#ifndef ARMSSE_H
|
|
|
|
#define ARMSSE_H
|
2018-03-02 11:45:40 +01:00
|
|
|
|
|
|
|
#include "hw/sysbus.h"
|
|
|
|
#include "hw/arm/armv7m.h"
|
|
|
|
#include "hw/misc/iotkit-secctl.h"
|
|
|
|
#include "hw/misc/tz-ppc.h"
|
2018-06-22 14:28:40 +02:00
|
|
|
#include "hw/misc/tz-mpc.h"
|
2018-03-02 11:45:40 +01:00
|
|
|
#include "hw/timer/cmsdk-apb-timer.h"
|
2018-08-24 14:17:41 +02:00
|
|
|
#include "hw/timer/cmsdk-apb-dualtimer.h"
|
2018-08-24 14:17:42 +02:00
|
|
|
#include "hw/watchdog/cmsdk-apb-watchdog.h"
|
2018-08-24 14:17:43 +02:00
|
|
|
#include "hw/misc/iotkit-sysctl.h"
|
|
|
|
#include "hw/misc/iotkit-sysinfo.h"
|
2019-02-01 15:55:43 +01:00
|
|
|
#include "hw/misc/armsse-cpuid.h"
|
2019-02-28 11:55:15 +01:00
|
|
|
#include "hw/misc/armsse-mhu.h"
|
2019-02-01 15:55:43 +01:00
|
|
|
#include "hw/misc/unimp.h"
|
2018-03-02 11:45:40 +01:00
|
|
|
#include "hw/or-irq.h"
|
|
|
|
#include "hw/core/split-irq.h"
|
2019-02-01 15:55:42 +01:00
|
|
|
#include "hw/cpu/cluster.h"
|
2018-03-02 11:45:40 +01:00
|
|
|
|
2019-02-01 15:55:41 +01:00
|
|
|
#define TYPE_ARMSSE "arm-sse"
|
2019-02-01 15:55:41 +01:00
|
|
|
#define ARMSSE(obj) OBJECT_CHECK(ARMSSE, (obj), TYPE_ARMSSE)
|
|
|
|
|
|
|
|
/*
|
2019-02-01 15:55:41 +01:00
|
|
|
* These type names are for specific IoTKit subsystems; other than
|
|
|
|
* instantiating them, code using these devices should always handle
|
|
|
|
* them via the ARMSSE base class, so they have no IOTKIT() etc macros.
|
2019-02-01 15:55:41 +01:00
|
|
|
*/
|
2019-02-01 15:55:41 +01:00
|
|
|
#define TYPE_IOTKIT "iotkit"
|
2019-02-01 15:55:43 +01:00
|
|
|
#define TYPE_SSE200 "sse-200"
|
2018-03-02 11:45:40 +01:00
|
|
|
|
|
|
|
/* We have an IRQ splitter and an OR gate input for each external PPC
|
|
|
|
* and the 2 internal PPCs
|
|
|
|
*/
|
|
|
|
#define NUM_EXTERNAL_PPCS (IOTS_NUM_AHB_EXP_PPC + IOTS_NUM_APB_EXP_PPC)
|
|
|
|
#define NUM_PPCS (NUM_EXTERNAL_PPCS + 2)
|
|
|
|
|
2019-02-01 15:55:42 +01:00
|
|
|
#define MAX_SRAM_BANKS 4
|
|
|
|
#if MAX_SRAM_BANKS > IOTS_NUM_MPC
|
|
|
|
#error Too many SRAM banks
|
|
|
|
#endif
|
|
|
|
|
2019-02-01 15:55:42 +01:00
|
|
|
#define SSE_MAX_CPUS 2
|
|
|
|
|
2019-02-01 15:55:43 +01:00
|
|
|
/* These define what each PPU in the ppu[] index is for */
|
|
|
|
#define CPU0CORE_PPU 0
|
|
|
|
#define CPU1CORE_PPU 1
|
|
|
|
#define DBG_PPU 2
|
|
|
|
#define RAM0_PPU 3
|
|
|
|
#define RAM1_PPU 4
|
|
|
|
#define RAM2_PPU 5
|
|
|
|
#define RAM3_PPU 6
|
|
|
|
#define NUM_PPUS 7
|
|
|
|
|
2019-02-01 15:55:41 +01:00
|
|
|
typedef struct ARMSSE {
|
2018-03-02 11:45:40 +01:00
|
|
|
/*< private >*/
|
|
|
|
SysBusDevice parent_obj;
|
|
|
|
|
|
|
|
/*< public >*/
|
2019-02-01 15:55:42 +01:00
|
|
|
ARMv7MState armv7m[SSE_MAX_CPUS];
|
2019-02-01 15:55:42 +01:00
|
|
|
CPUClusterState cluster[SSE_MAX_CPUS];
|
2018-03-02 11:45:40 +01:00
|
|
|
IoTKitSecCtl secctl;
|
|
|
|
TZPPC apb_ppc0;
|
|
|
|
TZPPC apb_ppc1;
|
2019-02-01 15:55:42 +01:00
|
|
|
TZMPC mpc[IOTS_NUM_MPC];
|
2018-03-02 11:45:40 +01:00
|
|
|
CMSDKAPBTIMER timer0;
|
|
|
|
CMSDKAPBTIMER timer1;
|
2018-08-24 14:17:42 +02:00
|
|
|
CMSDKAPBTIMER s32ktimer;
|
2018-03-02 11:45:40 +01:00
|
|
|
qemu_or_irq ppc_irq_orgate;
|
|
|
|
SplitIRQ sec_resp_splitter;
|
|
|
|
SplitIRQ ppc_irq_splitter[NUM_PPCS];
|
2018-06-22 14:28:40 +02:00
|
|
|
SplitIRQ mpc_irq_splitter[IOTS_NUM_EXP_MPC + IOTS_NUM_MPC];
|
|
|
|
qemu_or_irq mpc_irq_orgate;
|
2018-08-24 14:17:42 +02:00
|
|
|
qemu_or_irq nmi_orgate;
|
2018-03-02 11:45:40 +01:00
|
|
|
|
2019-02-01 15:55:42 +01:00
|
|
|
SplitIRQ cpu_irq_splitter[32];
|
|
|
|
|
2018-08-24 14:17:41 +02:00
|
|
|
CMSDKAPBDualTimer dualtimer;
|
2018-03-02 11:45:40 +01:00
|
|
|
|
2018-08-24 14:17:42 +02:00
|
|
|
CMSDKAPBWatchdog s32kwatchdog;
|
|
|
|
CMSDKAPBWatchdog nswatchdog;
|
|
|
|
CMSDKAPBWatchdog swatchdog;
|
|
|
|
|
2018-08-24 14:17:43 +02:00
|
|
|
IoTKitSysCtl sysctl;
|
|
|
|
IoTKitSysCtl sysinfo;
|
|
|
|
|
2019-02-28 11:55:15 +01:00
|
|
|
ARMSSEMHU mhu[2];
|
2019-02-01 15:55:43 +01:00
|
|
|
UnimplementedDeviceState ppu[NUM_PPUS];
|
2019-02-01 15:55:43 +01:00
|
|
|
UnimplementedDeviceState cachectrl[SSE_MAX_CPUS];
|
2019-02-01 15:55:43 +01:00
|
|
|
UnimplementedDeviceState cpusecctrl[SSE_MAX_CPUS];
|
2019-02-01 15:55:43 +01:00
|
|
|
|
2019-02-01 15:55:43 +01:00
|
|
|
ARMSSECPUID cpuid[SSE_MAX_CPUS];
|
|
|
|
|
2019-02-01 15:55:42 +01:00
|
|
|
/*
|
|
|
|
* 'container' holds all devices seen by all CPUs.
|
|
|
|
* 'cpu_container[i]' is the view that CPU i has: this has the
|
|
|
|
* per-CPU devices of that CPU, plus as the background 'container'
|
|
|
|
* (or an alias of it, since we can only use it directly once).
|
|
|
|
* container_alias[i] is the alias of 'container' used by CPU i+1;
|
|
|
|
* CPU 0 can use 'container' directly.
|
|
|
|
*/
|
2018-03-02 11:45:40 +01:00
|
|
|
MemoryRegion container;
|
2019-02-01 15:55:42 +01:00
|
|
|
MemoryRegion container_alias[SSE_MAX_CPUS - 1];
|
|
|
|
MemoryRegion cpu_container[SSE_MAX_CPUS];
|
2018-03-02 11:45:40 +01:00
|
|
|
MemoryRegion alias1;
|
|
|
|
MemoryRegion alias2;
|
2019-02-21 19:17:48 +01:00
|
|
|
MemoryRegion alias3[SSE_MAX_CPUS];
|
2019-02-01 15:55:42 +01:00
|
|
|
MemoryRegion sram[MAX_SRAM_BANKS];
|
2018-03-02 11:45:40 +01:00
|
|
|
|
2019-02-01 15:55:42 +01:00
|
|
|
qemu_irq *exp_irqs[SSE_MAX_CPUS];
|
2018-03-02 11:45:40 +01:00
|
|
|
qemu_irq ppc0_irq;
|
|
|
|
qemu_irq ppc1_irq;
|
|
|
|
qemu_irq sec_resp_cfg;
|
|
|
|
qemu_irq sec_resp_cfg_in;
|
|
|
|
qemu_irq nsc_cfg_in;
|
|
|
|
|
|
|
|
qemu_irq irq_status_in[NUM_EXTERNAL_PPCS];
|
2018-06-22 14:28:40 +02:00
|
|
|
qemu_irq mpcexp_status_in[IOTS_NUM_EXP_MPC];
|
2018-03-02 11:45:40 +01:00
|
|
|
|
|
|
|
uint32_t nsccfg;
|
|
|
|
|
|
|
|
/* Properties */
|
|
|
|
MemoryRegion *board_memory;
|
|
|
|
uint32_t exp_numirq;
|
|
|
|
uint32_t mainclk_frq;
|
2019-02-01 15:55:42 +01:00
|
|
|
uint32_t sram_addr_width;
|
2019-02-21 19:17:47 +01:00
|
|
|
uint32_t init_svtor;
|
2019-05-17 19:40:46 +02:00
|
|
|
bool cpu_fpu[SSE_MAX_CPUS];
|
|
|
|
bool cpu_dsp[SSE_MAX_CPUS];
|
2019-02-01 15:55:41 +01:00
|
|
|
} ARMSSE;
|
2018-03-02 11:45:40 +01:00
|
|
|
|
2019-02-01 15:55:41 +01:00
|
|
|
typedef struct ARMSSEInfo ARMSSEInfo;
|
|
|
|
|
|
|
|
typedef struct ARMSSEClass {
|
|
|
|
DeviceClass parent_class;
|
|
|
|
const ARMSSEInfo *info;
|
|
|
|
} ARMSSEClass;
|
|
|
|
|
|
|
|
#define ARMSSE_CLASS(klass) \
|
|
|
|
OBJECT_CLASS_CHECK(ARMSSEClass, (klass), TYPE_ARMSSE)
|
|
|
|
#define ARMSSE_GET_CLASS(obj) \
|
|
|
|
OBJECT_GET_CLASS(ARMSSEClass, (obj), TYPE_ARMSSE)
|
|
|
|
|
2018-03-02 11:45:40 +01:00
|
|
|
#endif
|