aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/common/mma.h
blob: 238e6ab371fd087842479000f5d56b592be25681 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * This file is part of the coreboot project.
 *
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#ifndef _SOC_MMA_H_
#define _SOC_MMA_H_

#include <stdint.h>
#include <commonlib/region.h>

struct mma_config_param {
	struct region_device test_content;
	struct region_device test_param;
};

/* Locate mma metadata in CBFS, parse, find and fill rdev for
 * mma test content and test param.
 * Returns 0 on success, < 0 on failure.
 */
int mma_locate_param(struct mma_config_param *mma_cfg);
/* Locate the MMA hob from the FSP Hob list, This is implemented
 * specific to FSP version.
 * Returns 0 on success, < 0 on failure.
 */
int fsp_locate_mma_results(const void **mma_hob, size_t *mma_hob_size);

#endif