coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
scp.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef SOC_MEDIATEK_MT8195_SCP_H
4 #define SOC_MEDIATEK_MT8195_SCP_H
5 
6 #include <soc/addressmap.h>
7 
8 #define SCP_SRAM_PDN_DISABLE_VAL 0xFFFFFFFF
9 
10 #define REG_L1TCM_SRAM_PDN (void *)(SCP_CFG_BASE + 0x2102C)
11 
12 void scp_rsi_enable(void);
13 void scp_rsi_disable(void);
14 #endif
void scp_rsi_enable(void)
Definition: scp.c:6
void scp_rsi_disable(void)
Definition: scp.c:16