diff options
author | John Zhao <john.zhao@intel.com> | 2022-07-08 16:21:00 -0700 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-07-11 13:41:14 +0000 |
commit | b57d172fbb5265d632c031532fcc2aec156e065a (patch) | |
tree | d69ec2113e4fc9a5a8718c0929aa96571ffddaf4 /src/soc/intel | |
parent | 3c4750166f0351a5fcbfb77126d87292091f0153 (diff) |
soc/intel/meteorlake: Align TCSS functions through SBI
This change aligns the Meteor Lake TCSS functions of pad configuration
and Thunderbolt authentication through the sideband access.
BUG=b:213574324
TEST=Build platforms coreboot images successfully.
Change-Id: I393f6e1c7d322878cbb684cd95bfa2477195b23a
Signed-off-by: John Zhao <john.zhao@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/65724
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/soc/intel')
-rw-r--r-- | src/soc/intel/meteorlake/tcss.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/meteorlake/tcss.c b/src/soc/intel/meteorlake/tcss.c index c51fe6c41f..ed4941106c 100644 --- a/src/soc/intel/meteorlake/tcss.c +++ b/src/soc/intel/meteorlake/tcss.c @@ -3,6 +3,6 @@ #include <intelblocks/tcss.h> const struct soc_tcss_ops tcss_ops = { - .configure_aux_bias_pads = tcss_configure_aux_bias_pads_regbar, - .valid_tbt_auth = tcss_valid_tbt_auth, + .configure_aux_bias_pads = ioe_tcss_configure_aux_bias_pads_sbi, + .valid_tbt_auth = ioe_tcss_valid_tbt_auth, }; |