1 /*
2 * Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6 #include "bsp_api.h"
7 #include "hw_sce_private.h"
8
9 /*******************************************************************************************************************//**
10 * Initialize the crypto engine
11 * @retval FSP_SUCCESS The operation completed successfully.
12 **********************************************************************************************************************/
13
HW_SCE_McuSpecificInit(void)14 fsp_err_t HW_SCE_McuSpecificInit (void)
15 {
16 // power on the SCE module
17 HW_SCE_PowerOn();
18
19 return FSP_SUCCESS;
20 }
21