1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #include <intelblocks/tcss.h> 4 #include <soc/soc_chip.h> 5 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 }; 10 ioe_tcss_valid_tbt_auth(void)11bool ioe_tcss_valid_tbt_auth(void) 12 { 13 const config_t *config = config_of_soc(); 14 return config->tbt_authentication; 15 } 16