Software APIs
sram_start.h
1 // Copyright lowRISC contributors (OpenTitan project).
2 // Licensed under the Apache License, Version 2.0, see LICENSE for details.
3 // SPDX-License-Identifier: Apache-2.0
4 
5 #ifndef OPENTITAN_SW_DEVICE_SILICON_CREATOR_MANUF_LIB_SRAM_START_H_
6 #define OPENTITAN_SW_DEVICE_SILICON_CREATOR_MANUF_LIB_SRAM_START_H_
7 
8 /* Values used by the start run to inform to the host about the execution.
9  * The code will load SP will this value and return to the debugger using
10  * ebreak.
11  */
12 #define SRAM_MAGIC_SP_EXECUTION_DONE 0xcafebabe
13 #define SRAM_MAGIC_SP_CRC_ERROR 0xbaddcafe
14 
15 #endif // OPENTITAN_SW_DEVICE_SILICON_CREATOR_MANUF_LIB_SRAM_START_H_