mb/google/nissa/var/rull: Add 6W and 15W DPTF parameters
[coreboot.git] / src / soc / intel / common / mma.h
blob47313401cbbd30c7cc4597000d4959dafd2dbe25
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef _SOC_MMA_H_
4 #define _SOC_MMA_H_
6 #include <types.h>
8 struct mma_config_param {
9 void *test_content;
10 size_t test_content_size;
11 void *test_param;
12 size_t test_param_size;
15 /* Locate mma metadata in CBFS, parse, find and map mma test content and test param.
16 * Returns 0 on success, < 0 on failure.
18 int mma_map_param(struct mma_config_param *mma_cfg);
19 /* Locate the MMA hob from the FSP Hob list, This is implemented
20 * specific to FSP version.
21 * Returns 0 on success, < 0 on failure.
23 int fsp_locate_mma_results(const void **mma_hob, size_t *mma_hob_size);
25 #endif