aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/picasso/include/soc/soc_util.h
blob: 9077195a8809bb3f35c55c990448c934756f496e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __PICASSO_SOC_UTIL_H__
#define __PICASSO_SOC_UTIL_H__

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

void print_socket_type(void);

int soc_is_pollock(void);
int soc_is_dali(void);
int soc_is_picasso(void);
int soc_is_raven2(void);
int soc_is_zen_plus(void);

#endif /* __PICASSO_SOC_UTIL_H__ */