1#-------------------------------------------------------------------------------
2# Copyright (c) 2020-2023, Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6#-------------------------------------------------------------------------------
7
8# cpuarch.cmake is used to set things that related to the platform that are both
9# immutable and global, which is to say they should apply to any kind of project
10# that uses this platform. In practise this is normally compiler definitions and
11# variables related to hardware.
12
13# Set architecture and CPU
14set(TFM_SYSTEM_PROCESSOR cortex-m55)
15set(TFM_SYSTEM_ARCHITECTURE armv8.1-m.main)
16
17# RSE has a CryptoCell-312 as an accelerator.
18set(CRYPTO_HW_ACCELERATOR_TYPE cc312)
19