blob: 28cb85998b26e7d41d6390695c0ced1b5c2f4adb [file] [log] [blame]
Aaron Durbinbd74a4b2015-03-06 23:17:33 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2015 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060014 */
15
16#ifndef _STAGE_CACHE_H_
17#define _STAGE_CACHE_H_
18
19#include <stddef.h>
20#include <stdint.h>
21#include <program_loading.h>
22
Marshall Dawson8d6e0e02018-01-30 15:33:23 -070023/* Types of stages that may be stored in stage cache */
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060024enum {
25 STAGE_RAMSTAGE,
26 STAGE_REFCODE,
Aaron Durbind0084132016-11-29 15:52:08 -060027 STAGE_POSTCAR,
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060028};
29
Marshall Dawson8d6e0e02018-01-30 15:33:23 -070030/* Types of raw data that may be stored in stage cache */
31enum {
32 STAGE_S3_DATA,
33};
34
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060035/* Cache the loaded stage provided according to the parameters. */
Aaron Durbin54546c92015-08-05 00:52:13 -050036void stage_cache_add(int stage_id, const struct prog *stage);
Marshall Dawson8d6e0e02018-01-30 15:33:23 -070037/* Cache non-specific data or code. */
38void stage_cache_add_raw(int stage_id, const void *base, const size_t size);
39/* Get a pointer to cached raw data and its size. */
40void stage_cache_get_raw(int stage_id, void **base, size_t *size);
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060041/* Load the cached stage at given location returning the stage entry point. */
42void stage_cache_load_stage(int stage_id, struct prog *stage);
43/* Fill in parameters for the external stage cache, if utilized. */
44void stage_cache_external_region(void **base, size_t *size);
45
46/* Metadata associated with each stage. */
47struct stage_cache {
48 uint64_t load_addr;
49 uint64_t entry_addr;
Kyösti Mälkkid87e4b32017-09-05 22:43:05 +030050 uint64_t arg;
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060051};
52
53#endif /* _STAGE_CACHE_H_ */