xref: /optee_os/core/arch/arm/plat-sam/sam_sfr.h (revision 2391d619a7d07dbc2526a2a6b8ba01a44589becb)
1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (c) 2021, Bootlin
4  */
5 
6 #ifndef SAM_SFR_H
7 #define SAM_SFR_H
8 
9 #include <util.h>
10 
11 /* L2 cache RAM used as an internal SRAM */
12 #define AT91_SFR_L2CC_HRAMC		0x58
13 
14 vaddr_t sam_sfr_base(void);
15 
16 #endif
17