blob: 97edf9137ba188488d510b640238770574664c9c [file] [log] [blame]
Angel Pons32859fc2020-04-02 23:48:27 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Aaron Durbinbd74a4b2015-03-06 23:17:33 -06003
4#ifndef _STAGE_CACHE_H_
5#define _STAGE_CACHE_H_
6
7#include <stddef.h>
8#include <stdint.h>
9#include <program_loading.h>
10
Marshall Dawson8d6e0e02018-01-30 15:33:23 -070011/* Types of stages that may be stored in stage cache */
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060012enum {
13 STAGE_RAMSTAGE,
14 STAGE_REFCODE,
Aaron Durbind0084132016-11-29 15:52:08 -060015 STAGE_POSTCAR,
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060016};
17
Marshall Dawson8d6e0e02018-01-30 15:33:23 -070018/* Types of raw data that may be stored in stage cache */
19enum {
20 STAGE_S3_DATA,
21};
22
Kyösti Mälkki0a4457f2019-08-01 20:29:14 +030023#if CONFIG(TSEG_STAGE_CACHE) || CONFIG(CBMEM_STAGE_CACHE)
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060024/* Cache the loaded stage provided according to the parameters. */
Aaron Durbin54546c92015-08-05 00:52:13 -050025void stage_cache_add(int stage_id, const struct prog *stage);
Subrata Banik90f750b2019-06-11 17:52:06 +053026/* Load the cached stage at given location returning the stage entry point. */
27void stage_cache_load_stage(int stage_id, struct prog *stage);
Marshall Dawson8d6e0e02018-01-30 15:33:23 -070028/* Cache non-specific data or code. */
29void stage_cache_add_raw(int stage_id, const void *base, const size_t size);
30/* Get a pointer to cached raw data and its size. */
31void stage_cache_get_raw(int stage_id, void **base, size_t *size);
Kyösti Mälkkic47c6402019-08-01 08:56:35 +030032
33#else /* CONFIG_NO_STAGE_CACHE */
34
35static inline void stage_cache_add(int stage_id, const struct prog *stage) {}
36static inline void stage_cache_load_stage(int stage_id, struct prog *stage) {}
37static inline void stage_cache_add_raw(int stage_id, const void *base, const size_t size) {}
38static inline void stage_cache_get_raw(int stage_id, void **base, size_t *size) {}
39
40#endif
41
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060042/* Fill in parameters for the external stage cache, if utilized. */
43void stage_cache_external_region(void **base, size_t *size);
44
45/* Metadata associated with each stage. */
46struct stage_cache {
47 uint64_t load_addr;
48 uint64_t entry_addr;
Kyösti Mälkkid87e4b32017-09-05 22:43:05 +030049 uint64_t arg;
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060050};
51
52#endif /* _STAGE_CACHE_H_ */