summaryrefslogtreecommitdiff
path: root/src/soc/intel/meteorlake/tcss.c
blob: 3d46f0ac2d71bb667f0f7bd6c92ec0623159733e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: GPL-2.0-only */

#include <intelblocks/tcss.h>
#include <soc/soc_chip.h>
#include <static.h>

const struct soc_tcss_ops tcss_ops = {
	.configure_aux_bias_pads = ioe_tcss_configure_aux_bias_pads_sbi,
	.valid_tbt_auth = ioe_tcss_valid_tbt_auth,
};

bool ioe_tcss_valid_tbt_auth(void)
{
	const config_t *config = config_of_soc();
	return config->tbt_authentication;
}