diff options
Diffstat (limited to 'src/soc/intel/common/basecode/include/intelbasecode')
-rw-r--r-- | src/soc/intel/common/basecode/include/intelbasecode/tom.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/soc/intel/common/basecode/include/intelbasecode/tom.h b/src/soc/intel/common/basecode/include/intelbasecode/tom.h new file mode 100644 index 0000000000..d78ecd1a60 --- /dev/null +++ b/src/soc/intel/common/basecode/include/intelbasecode/tom.h @@ -0,0 +1,14 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#ifndef SOC_INTEL_COMMON_BASECODE_TOM_H +#define SOC_INTEL_COMMON_BASECODE_TOM_H + +#include <types.h> + +/* Early caching of TOM region */ +void early_tom_enable_cache_range(void); + +/* Update the TOM if required based on the input TOM address */ +void update_tom(uint32_t addr); + +#endif |