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 /* I2SC Register */ 14 #define AT91_SFR_I2SCLKSEL 0x90 15 16 vaddr_t sam_sfr_base(void); 17 18 #endif 19