1 /*
2 * Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7 /***********************************************************************************************************************
8 * Includes <System Includes> , "Project Includes"
9 **********************************************************************************************************************/
10 #include "bsp_api.h"
11
12 /***********************************************************************************************************************
13 * Macro definitions
14 **********************************************************************************************************************/
15
16 /***********************************************************************************************************************
17 * Typedef definitions
18 **********************************************************************************************************************/
19
20 /***********************************************************************************************************************
21 * Exported global variables (to be accessed by other files)
22 **********************************************************************************************************************/
23
24 /***********************************************************************************************************************
25 * Private global variables and functions
26 **********************************************************************************************************************/
27
28 /*******************************************************************************************************************//**
29 * Powers on and off the L3 cache way.
30 **********************************************************************************************************************/
r_bsp_cache_l3_power_ctrl(void)31 void r_bsp_cache_l3_power_ctrl (void)
32 {
33 /* Does nothing because CR52 does not have the CLUSTERPWRCTLR register. */
34 }
35