mb/system76/cml-u/dt: Make use of chipset devicetree
[coreboot.git] / src / soc / intel / meteorlake / tcss.c
blob7509504eea7d82a9a17ef7699c5e4bf1c19050b0
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <intelblocks/tcss.h>
4 #include <soc/soc_chip.h>
6 const struct soc_tcss_ops tcss_ops = {
7 .configure_aux_bias_pads = ioe_tcss_configure_aux_bias_pads_sbi,
8 .valid_tbt_auth = ioe_tcss_valid_tbt_auth,
9 };
11 bool ioe_tcss_valid_tbt_auth(void)
13 const config_t *config = config_of_soc();
14 return config->tbt_authentication;