This article covers the NXP LPC55S69-EVK board: a dual ARM Cortex-M33 running at 100 MHz with ARM TrustZone:
The LPC55S69 is of special interest because it is one of the new ARM Cortex-M33 which implements new ARM Trustzone security features: with this feature it is possible to run ‘trusted’ and ‘untrusted’ code on the same microcontroller.
The following table from ARM (https://developer.arm.com/ip-products/processors/cortex-m/cortex-m33) gives an overview of the Cortex-M33 (Armv8-M) architeture:
Feature | Cortex-M0 | Cortex-M0+ | Cortex-M1 | Cortex-M23 | Cortex-M3 | Cortex-M4 | Cortex-M33 | Cortex-M35P | Cortex-M7 |
Instruction set architecture | Armv6-M | Armv6-M | Armv6-M | Armv8-M Baseline | Armv7-M | Armv7-M | Armv8-M Mainline | Armv8-M Mainline | Armv7-M |
Thumb, Thumb-2 | Thumb, Thumb-2 | Thumb, Thumb-2 | Thumb, Thumb-2 | Thumb, Thumb-2 | Thumb, Thumb-2 | Thumb, Thumb-2 |
Thumb, Thumb-2 |
Thumb, Thumb-2 |
|
DMIPS/MHz range* | 0.87-1.27 | 0.95-1.36 | 0.8 | 0.99 | 1.25-1.89 | 1.25-1.95 | 1.5 | 1.5 | 2.14-3.23 |
CoreMark®/MHz** | 2.33 | 2.46 | 1.85 | 2.5 | 3.34 | 3.42 | 4.02 | 4.02 | 5.01 |
Pipeline stages | 3 | 2 | 3 | 2 | 3 | 3 | 3 | 3 | 6 |
Memory Protection Unit (MPU) | No | Yes (option) | No | Yes (option) (2 x) |
Yes (option) | Yes (option) | Yes (option) (2 x) |
Yes (option) (2 x) |
Yes (option) |
Maximum MPU regions | 0 | 8 | 0 | 16 | 8 | 8 | 16 | 16 | 16 |
Trace (ETM or MTB) | No | MTB (option) | No | MTB (option) or ETMv3 (option) |
ETMv3 (option) | ETMv3 (option) | MTB (option) and/or ETMv4 (option) |
MTB (option) and/or ETMv4 (option) |
ETMv4 (option) |
DSP | No | No | No | No | No | Yes | Yes (option) | Yes (option) | Yes |
Floating point hardware | No | No | No | No | No | Yes (option SP) | Yes (option SP) | Yes (option SP) | Yes (option SP + DP) |
Systick Timer | Yes (option) | Yes (option) | Yes (option) | Yes (2 x) | Yes | Yes | Yes (2 x) | Yes (2 x) | Yes |
Built-in Caches | No | No | No | No | No | No | No | Yes (option 2- 16kB | Yes (option 4-64kB |
I-cache | I-cache, D -cache) | ||||||||
Tightly Coupled Memory | No | No | Yes | No | No | No | No | No | Yes (option 0-16MB I-TCM/D-TCM) |
TrustZone for Armv8-M | No | No | No | Yes (option) | No | No | Yes (option) | Yes (option) | No |
Co-processor interface | No | No | No | No | No | No | Yes (option) | Yes (option) | No |
Bus protocol | AHB Lite | AHB Lite, Fast I/O | AHB Lite | AHB5, Fast I/O | AHB Lite, APB | AHB Lite, APB | AHB5 | AHB5 | AXI4, AHB Lite, APB, TCM |
Wake-up interrupt controller support | Yes | Yes | No | Yes | Yes | Yes | Yes | Yes | Yes |
Integrated interrupt controller | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
Maximum # external interrupts |
32 | 32 | 32 | 240 | 240 | 240 | 480 | 480 | 240 |
Hardware divide | No | No | No | Yes | Yes | Yes | Yes | Yes | Yes |
Single cycle multiply | Yes (option) | Yes (option) | No | Yes | Yes | Yes | Yes | Yes | Yes |
CMSIS Support | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
(ARM Cortex-M Comparison Table: Source ARM).
I ordered my board from Mouser for CHF 43. The board came in nice card box:
The content (apart of some stuffing material) is the board itself plus a small bag with 4 jumpers:
The board includes a LPC4322 (Link2) based debug probe:
On https://mcuxpresso.nxp.com there is the MCUXpresso SDK for the board available for download:
I have downloaded the latest version 2.5.1 (released mid of April 2019):
As IDE I’m using the NXP MCUXpresso IDE 10.3.1. The SDK gets installed by Drag&Drop into the Installed SDK’s view:
With the SDK installed, I can quickly create a new project or import example projects:
The SDK V2.5.1 comes with a FreeRTOS V10.0.1 port which runs out of the box, using the M4 port.
In the McuOnEclipse FreeRTOS port I’m already using FreeRTOS 10.2.0, so this is something I have to soon too.
The IDE comes with the NXP MCUXpresso Configuration Tools integrated.
With the graphical configuration tools I can create pin muxing and clock configurations:
The SDK comes with demos using secure + non-secure application parts. To make it easy, the projects have TrustZone settings for the compiler and linker:
I have started playing with TrustZone, but this is subject of a follow-up article.
Dealing with a ARM Cortex-M33 multicore device for sure is a bit more complex than just using an old-fashioned single Core M0+. Because of the secure and non-secure features, it might be necessary to get things back into a clean state. So this is what worked best for me:
With this I have a working and known state for my experiments.
The Easter break is coming to an end and has been interesting at least to say. The NXP LPC55S69-EVK is very appealing: the board is reasonably priced and with all the connectors it is a good way to evaluate the microcontroller. The most interesting thing is that it has a dual-core ARM-Cortex M33 with the ARM TrustZone implementation. To be able to run ‘trusted’ and ‘untrusted’ (e.g. user code) on the same device could be one of the standard models of microcontroller going forward, especially in the ‘internet of things’ area. So I think I have to explore this device and board and its capabilities in at least one follow-up article?
Happy Trusting
- - -
Originally published on April 22, 2019 by Erich Styger
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.