blob: 1e46b5cfe2a9298fc1e9d75cbe96351cebbabdce [file] [log] [blame]
Angel Pons32859fc2020-04-02 23:48:27 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Aaron Durbinbd74a4b2015-03-06 23:17:33 -06002
3#ifndef _STAGE_CACHE_H_
4#define _STAGE_CACHE_H_
5
Kyösti Mälkkie0165fb2021-01-09 13:30:57 +02006#include <romstage_handoff.h>
Aaron Durbinbd74a4b2015-03-06 23:17:33 -06007#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
Kyösti Mälkkie0165fb2021-01-09 13:30:57 +020042static inline int resume_from_stage_cache(void)
43{
44 if (CONFIG(NO_STAGE_CACHE))
45 return 0;
46
47 /* TBD: Replace this with acpi_is_wakeup_s3(). */
48 return romstage_handoff_is_resume();
49}
50
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060051/* Fill in parameters for the external stage cache, if utilized. */
52void stage_cache_external_region(void **base, size_t *size);
53
54/* Metadata associated with each stage. */
55struct stage_cache {
56 uint64_t load_addr;
57 uint64_t entry_addr;
Kyösti Mälkkid87e4b32017-09-05 22:43:05 +030058 uint64_t arg;
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060059};
60
61#endif /* _STAGE_CACHE_H_ */