mb/google/brya: Create rull variant
[coreboot2.git] / src / vendorcode / google / chromeos / cse_board_reset.c
blobf3369483e386eb86e511a28ff23a979f211e7b5f
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
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>
12 #include <vb2_api.h>
14 void cse_board_reset(void)
16 tpm_result_t rc;
17 struct cr50_firmware_version version;
19 if (CONFIG(CSE_RESET_CLEAR_EC_AP_IDLE_FLAG))
20 google_chromeec_clear_ec_ap_idle();
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.
27 if (CONFIG(TPM2) && CONFIG(TPM_GOOGLE_CR50)) {
28 /* Initialize TPM and get the cr50 firmware version. */
29 rc = tlcl_lib_init();
30 if (rc != TPM_SUCCESS) {
31 printk(BIOS_ERR, "tlcl_lib_init() failed: %#x\n", rc);
32 return;
35 cr50_get_firmware_version(&version);
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.
43 if (version.epoch != 0 || version.major > 4 ||
44 (version.major >= 3 && version.minor >= 20))
45 return;
47 if (CONFIG(TPM_GOOGLE_TI50)) {
48 /* All versions of Ti50 firmware support the above PLTRST wiring. */
49 return;
52 printk(BIOS_INFO, "Initiating request to EC to trigger cold reset\n");
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.
57 dcache_clean_all();
58 outb(FULL_RST, RST_CNT);
59 if (!google_chromeec_ap_reset())
60 halt();