blob: 5131cbccd2d343d5cb5260bc6e8e21189123997a [file] [log] [blame]
Angel Pons32859fc2020-04-02 23:48:27 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -05002
Duncan Lauried8c4f2b2014-04-22 10:46:06 -07003#ifndef _COMMON_MRC_CACHE_H_
4#define _COMMON_MRC_CACHE_H_
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -05005
6#include <stddef.h>
7#include <stdint.h>
Marshall Dawson63442892017-12-17 14:16:42 -07008#include <commonlib/region.h>
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -05009
Aaron Durbin31be2c92016-12-03 22:08:20 -060010enum {
11 MRC_TRAINING_DATA,
12 MRC_VARIABLE_DATA,
13};
Furquan Shaikhcab1c012016-11-05 23:57:02 -070014
Aaron Durbin31be2c92016-12-03 22:08:20 -060015/*
16 * It's up to the caller to decide when to retrieve and stash data. There is
17 * differentiation on recovery mode CONFIG_HAS_RECOVERY_MRC_CACHE, but that's
18 * only for locating where to retrieve and save the data. If a platform doesn't
19 * want to update the data then it shouldn't stash the data for saving.
20 * Similarly, if the platform doesn't need the data for booting because of a
21 * policy don't request the data.
22 */
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050023
Aaron Durbin31be2c92016-12-03 22:08:20 -060024/* Get and stash data for saving provided the type passed in. The functions
25 * return < 0 on error, 0 on success. */
26int mrc_cache_get_current(int type, uint32_t version,
27 struct region_device *rdev);
28int mrc_cache_stash_data(int type, uint32_t version, const void *data,
29 size_t size);
Duncan Lauried8c4f2b2014-04-22 10:46:06 -070030
31#endif /* _COMMON_MRC_CACHE_H_ */