blob: 1cd0148929ffff6abc71f699c291199444de8b00 [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 Durbin9a7d7bc2013-09-07 00:41:48 -05003
Duncan Lauried8c4f2b2014-04-22 10:46:06 -07004#ifndef _COMMON_MRC_CACHE_H_
5#define _COMMON_MRC_CACHE_H_
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -05006
7#include <stddef.h>
8#include <stdint.h>
Marshall Dawson63442892017-12-17 14:16:42 -07009#include <commonlib/region.h>
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050010
Aaron Durbin31be2c92016-12-03 22:08:20 -060011enum {
12 MRC_TRAINING_DATA,
13 MRC_VARIABLE_DATA,
14};
Furquan Shaikhcab1c012016-11-05 23:57:02 -070015
Aaron Durbin31be2c92016-12-03 22:08:20 -060016/*
17 * It's up to the caller to decide when to retrieve and stash data. There is
18 * differentiation on recovery mode CONFIG_HAS_RECOVERY_MRC_CACHE, but that's
19 * only for locating where to retrieve and save the data. If a platform doesn't
20 * want to update the data then it shouldn't stash the data for saving.
21 * Similarly, if the platform doesn't need the data for booting because of a
22 * policy don't request the data.
23 */
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050024
Aaron Durbin31be2c92016-12-03 22:08:20 -060025/* Get and stash data for saving provided the type passed in. The functions
26 * return < 0 on error, 0 on success. */
27int mrc_cache_get_current(int type, uint32_t version,
28 struct region_device *rdev);
29int mrc_cache_stash_data(int type, uint32_t version, const void *data,
30 size_t size);
Duncan Lauried8c4f2b2014-04-22 10:46:06 -070031
32#endif /* _COMMON_MRC_CACHE_H_ */