blob: f3369483e386eb86e511a28ff23a979f211e7b5f [file] [log] [blame]
Karthikeyan Ramasubramanianb9042cb2020-08-20 16:04:58 -06001/* SPDX-License-Identifier: GPL-2.0-or-later */
2
3#include <arch/cache.h>
4#include <arch/io.h>
5#include <cf9_reset.h>
6#include <console/console.h>
7#include <drivers/spi/tpm/tpm.h>
8#include <ec/google/chromeec/ec.h>
9#include <halt.h>
10#include <intelblocks/cse.h>
11#include <security/tpm/tss.h>
John Zhaof90e3b92020-08-25 10:21:01 -070012#include <vb2_api.h>
Karthikeyan Ramasubramanianb9042cb2020-08-20 16:04:58 -060013
14void cse_board_reset(void)
15{
Jon Murphyd7b8dc92023-09-05 11:36:43 -060016 tpm_result_t rc;
Karthikeyan Ramasubramanianb9042cb2020-08-20 16:04:58 -060017 struct cr50_firmware_version version;
18
Derek Huang21896402023-09-01 07:55:40 +000019 if (CONFIG(CSE_RESET_CLEAR_EC_AP_IDLE_FLAG))
20 google_chromeec_clear_ec_ap_idle();
21
Sergii Dmytruk47e9e8c2022-11-02 00:50:03 +020022 /*
23 * Assuming that if particular TPM implementation is enabled at compile
24 * time, it's the one being used. This isn't generic code, so can
25 * probably get away with it.
26 */
Jes B. Klinkec6b041a12022-04-19 14:00:33 -070027 if (CONFIG(TPM2) && CONFIG(TPM_GOOGLE_CR50)) {
Jes Klinke5c805192020-10-14 13:24:32 -070028 /* Initialize TPM and get the cr50 firmware version. */
Jon Murphy24604812023-09-05 10:37:05 -060029 rc = tlcl_lib_init();
Jon Murphyd7b8dc92023-09-05 11:36:43 -060030 if (rc != TPM_SUCCESS) {
Jon Murphy53fc6672023-09-26 21:05:37 -060031 printk(BIOS_ERR, "tlcl_lib_init() failed: %#x\n", rc);
Jes Klinke5c805192020-10-14 13:24:32 -070032 return;
33 }
34
35 cr50_get_firmware_version(&version);
36
37 /*
38 * Cr50 firmware versions 0.[3|4].20 or newer support strap
39 * config 0xe where PLTRST from AP is connected to cr50's
40 * PLTRST# signal. So return immediately and trigger a global
41 * reset.
42 */
43 if (version.epoch != 0 || version.major > 4 ||
44 (version.major >= 3 && version.minor >= 20))
45 return;
John Zhaof90e3b92020-08-25 10:21:01 -070046 }
Jes B. Klinkec6b041a12022-04-19 14:00:33 -070047 if (CONFIG(TPM_GOOGLE_TI50)) {
48 /* All versions of Ti50 firmware support the above PLTRST wiring. */
49 return;
50 }
John Zhaof90e3b92020-08-25 10:21:01 -070051
Karthikeyan Ramasubramanianb9042cb2020-08-20 16:04:58 -060052 printk(BIOS_INFO, "Initiating request to EC to trigger cold reset\n");
53 /*
54 * Clean the data cache and set the full reset bit, so that when EC toggles
55 * SYS_RESET# pin, AP makes a trip to S5 and then to S0.
56 */
57 dcache_clean_all();
58 outb(FULL_RST, RST_CNT);
59 if (!google_chromeec_ap_reset())
60 halt();
61}