summaryrefslogtreecommitdiff
path: root/src/soc/intel/xeon_sp/skx/include/soc/soc_util.h
blob: fd0d4e2fbb88516da3ee5b179d23aaf89cf70340 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef _SOC_UTIL_H_
#define _SOC_UTIL_H_

#include <hob_iiouds.h>
#include <hob_memmap.h>

struct iiostack_resource {
	uint8_t     no_of_stacks;
	STACK_RES   res[CONFIG_MAX_SOCKET * MAX_IIO_STACK];
};

uint8_t get_iiostack_info(struct iiostack_resource *info);

void config_reset_cpl3_csrs(void);

const struct SystemMemoryMapHob *get_system_memory_map(void);

void set_bios_init_completion(void);
int soc_get_stack_for_port(int port);

#endif /* _SOC_UTIL_H_ */