summaryrefslogtreecommitdiff
path: root/src/soc/amd/picasso/include/soc/soc_util.h
blob: 0de064324944b96a9776490daa20a26fd7cf4e21 (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
38
39
40
41
42
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __PICASSO_SOC_UTIL_H__
#define __PICASSO_SOC_UTIL_H__

#include <types.h>

enum socket_type {
	SOCKET_FP5 = 0,
	SOCKET_AM4 = 2,
	SOCKET_FT5 = 3,
};

enum silicon_type {
	SILICON_RV1,
	SILICON_PCO,
	SILICON_RV2,
	SILICON_UNKNOWN,
};

enum soc_type {
	SOC_PICASSO,
	SOC_DALI,
	SOC_POLLOCK,
	SOC_UNKNOWN,
};

enum socket_type get_socket_type(void);
enum silicon_type get_silicon_type(void);
enum soc_type get_soc_type(void);

void print_socket_type(void);
void print_silicon_type(void);
void print_soc_type(void);

/* function to determine the connectivity feature set */
bool soc_is_reduced_io_sku(void);

/* function to determine the iGPU type */
bool soc_is_raven2(void);

#endif /* __PICASSO_SOC_UTIL_H__ */