/* * Copyright (c) 2022, Arm Limited. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * \file kmu_drv.h * \brief Driver for Arm KMU. */ #ifndef __KMU_DRV_H__ #define __KMU_DRV_H__ #include #include #include #ifdef __cplusplus extern "C" { #endif /* Must be at least 16 */ #define KMU_PRBG_SEED_LEN (32) #define KMU_GET_NKS(kmu_base) ( \ 1 << (uint8_t)(((kmu_base)->kmubc & KMU_KMUBC_NKS_MASK) >> KMU_KMUBC_NKS_OFF)) #define KMU_GET_NHWKSLTS(kmu_base) ( \ (uint8_t)(((kmu_base)->kmubc & KMU_KMUBC_NHWKSLTS_MASK) >> \ KMU_KMUBC_NHWKSLTS_OFF)) #define KMU_KMUBC_NKS_OFF 16u /*!< KMU Build Configuration Register Number of Key Slots bit field offset */ #define KMU_KMUBC_NKS_MASK (0x7u<