blob: 9b61496e65f531ff4f0d253e54d3f92acf6d3edc [file] [log] [blame]
Krishna Prasad Bhatd0c0fd72020-02-27 14:20:13 +05301/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2020 Google LLC.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#include <bootstate.h>
17#include <intelblocks/cse.h>
Krishna Prasad Bhat633a36a2020-02-26 15:42:17 +053018#include <console/console.h>
19#include <soc/me.h>
20#include <stdint.h>
21
22/* Host Firmware Status Register 2 */
23union me_hfsts2 {
24 uint32_t data;
25 struct {
26 uint32_t nftp_load_failure : 1;
27 uint32_t icc_prog_status : 2;
28 uint32_t invoke_mebx : 1;
29 uint32_t cpu_replaced : 1;
30 uint32_t rsvd0 : 1;
31 uint32_t mfs_failure : 1;
32 uint32_t warm_reset_rqst : 1;
33 uint32_t cpu_replaced_valid : 1;
34 uint32_t low_power_state : 1;
35 uint32_t me_power_gate : 1;
36 uint32_t ipu_needed : 1;
37 uint32_t forced_safe_boot : 1;
38 uint32_t rsvd1 : 2;
39 uint32_t listener_change : 1;
40 uint32_t status_data : 8;
41 uint32_t current_pmevent : 4;
42 uint32_t phase : 4;
43 } __packed fields;
44};
45
46/* Host Firmware Status Register 4 */
47union me_hfsts4 {
48 uint32_t data;
49 struct {
50 uint32_t rsvd0 : 9;
51 uint32_t enforcement_flow : 1;
52 uint32_t sx_resume_type : 1;
53 uint32_t rsvd1 : 1;
54 uint32_t tpms_disconnected : 1;
55 uint32_t rvsd2 : 1;
56 uint32_t fwsts_valid : 1;
57 uint32_t boot_guard_self_test : 1;
58 uint32_t rsvd3 : 16;
59 } __packed fields;
60};
61
62/* Host Firmware Status Register 5 */
63union me_hfsts5 {
64 uint32_t data;
65 struct {
66 uint32_t acm_active : 1;
67 uint32_t valid : 1;
68 uint32_t result_code_source : 1;
69 uint32_t error_status_code : 5;
70 uint32_t acm_done_sts : 1;
71 uint32_t timeout_count : 7;
72 uint32_t scrtm_indicator : 1;
73 uint32_t inc_boot_guard_acm : 4;
74 uint32_t inc_key_manifest : 4;
75 uint32_t inc_boot_policy : 4;
76 uint32_t rsvd0 : 2;
77 uint32_t start_enforcement : 1;
78 } __packed fields;
79};
80
81/* Host Firmware Status Register 6 */
82union me_hfsts6 {
83 uint32_t data;
84 struct {
85 uint32_t force_boot_guard_acm : 1;
86 uint32_t cpu_debug_disable : 1;
87 uint32_t bsp_init_disable : 1;
88 uint32_t protect_bios_env : 1;
89 uint32_t rsvd0 : 2;
90 uint32_t error_enforce_policy : 2;
91 uint32_t measured_boot : 1;
92 uint32_t verified_boot : 1;
93 uint32_t boot_guard_acmsvn : 4;
94 uint32_t kmsvn : 4;
95 uint32_t bpmsvn : 4;
96 uint32_t key_manifest_id : 4;
97 uint32_t boot_policy_status : 1;
98 uint32_t error : 1;
99 uint32_t boot_guard_disable : 1;
100 uint32_t fpf_disable : 1;
101 uint32_t fpf_soc_lock : 1;
102 uint32_t txt_support : 1;
103 } __packed fields;
104};
105
106static void dump_me_status(void *unused)
107{
108 union me_hfsts1 hfsts1;
109 union me_hfsts2 hfsts2;
110 union me_hfsts3 hfsts3;
111 union me_hfsts4 hfsts4;
112 union me_hfsts5 hfsts5;
113 union me_hfsts6 hfsts6;
114
115 if (!is_cse_enabled())
116 return;
117
118 hfsts1.data = me_read_config32(PCI_ME_HFSTS1);
119 hfsts2.data = me_read_config32(PCI_ME_HFSTS2);
120 hfsts3.data = me_read_config32(PCI_ME_HFSTS3);
121 hfsts4.data = me_read_config32(PCI_ME_HFSTS4);
122 hfsts5.data = me_read_config32(PCI_ME_HFSTS5);
123 hfsts6.data = me_read_config32(PCI_ME_HFSTS6);
124
125 printk(BIOS_DEBUG, "ME: HFSTS1 : 0x%08X\n", hfsts1.data);
126 printk(BIOS_DEBUG, "ME: HFSTS2 : 0x%08X\n", hfsts2.data);
127 printk(BIOS_DEBUG, "ME: HFSTS3 : 0x%08X\n", hfsts3.data);
128 printk(BIOS_DEBUG, "ME: HFSTS4 : 0x%08X\n", hfsts4.data);
129 printk(BIOS_DEBUG, "ME: HFSTS5 : 0x%08X\n", hfsts5.data);
130 printk(BIOS_DEBUG, "ME: HFSTS6 : 0x%08X\n", hfsts6.data);
131
132 /*
133 * Lock Descriptor, and Fuses must be programmed on a
134 * production system to indicate ME Manufacturing mode is disabled.
135 */
136 printk(BIOS_DEBUG, "ME: Manufacturing Mode : %s\n",
137 ((hfsts1.fields.spi_protection_mode == 0) &&
138 (hfsts6.fields.fpf_soc_lock == 1)) ? "NO" : "YES");
139 /*
140 * The SPI Protection Mode bit reflects SPI descriptor
141 * locked(0) or unlocked(1).
142 */
143 printk(BIOS_DEBUG, "ME: SPI Protection Mode Enabled : %s\n",
144 hfsts1.fields.spi_protection_mode ? "NO" : "YES");
145 printk(BIOS_DEBUG, "ME: FW Partition Table : %s\n",
146 hfsts1.fields.fpt_bad ? "BAD" : "OK");
147 printk(BIOS_DEBUG, "ME: Bringup Loader Failure : %s\n",
148 hfsts1.fields.ft_bup_ld_flr ? "YES" : "NO");
149 printk(BIOS_DEBUG, "ME: Firmware Init Complete : %s\n",
150 hfsts1.fields.fw_init_complete ? "YES" : "NO");
151 printk(BIOS_DEBUG, "ME: Boot Options Present : %s\n",
152 hfsts1.fields.boot_options_present ? "YES" : "NO");
153 printk(BIOS_DEBUG, "ME: Update In Progress : %s\n",
154 hfsts1.fields.update_in_progress ? "YES" : "NO");
155 printk(BIOS_DEBUG, "ME: D0i3 Support : %s\n",
156 hfsts1.fields.d0i3_support_valid ? "YES" : "NO");
157 printk(BIOS_DEBUG, "ME: Low Power State Enabled : %s\n",
158 hfsts2.fields.low_power_state ? "YES" : "NO");
159 printk(BIOS_DEBUG, "ME: CPU Replaced : %s\n",
160 hfsts2.fields.cpu_replaced ? "YES" : "NO");
161 printk(BIOS_DEBUG, "ME: CPU Replacement Valid : %s\n",
162 hfsts2.fields.cpu_replaced_valid ? "YES" : "NO");
163 printk(BIOS_DEBUG, "ME: Current Working State : %u\n",
164 hfsts1.fields.working_state);
165 printk(BIOS_DEBUG, "ME: Current Operation State : %u\n",
166 hfsts1.fields.operation_state);
167 printk(BIOS_DEBUG, "ME: Current Operation Mode : %u\n",
168 hfsts1.fields.operation_mode);
169 printk(BIOS_DEBUG, "ME: Error Code : %u\n",
170 hfsts1.fields.error_code);
171 printk(BIOS_DEBUG, "ME: Enhanced Debug Mode : %s\n",
172 hfsts1.fields.invoke_enhance_dbg_mode ? "YES" : "NO");
173 printk(BIOS_DEBUG, "ME: CPU Debug Disabled : %s\n",
174 hfsts6.fields.cpu_debug_disable ? "YES" : "NO");
175 printk(BIOS_DEBUG, "ME: TXT Support : %s\n",
176 hfsts6.fields.txt_support ? "YES" : "NO");
177}
Krishna Prasad Bhatd0c0fd72020-02-27 14:20:13 +0530178
179BOOT_STATE_INIT_ENTRY(BS_DEV_ENABLE, BS_ON_EXIT, print_me_fw_version, NULL);
Krishna Prasad Bhat633a36a2020-02-26 15:42:17 +0530180BOOT_STATE_INIT_ENTRY(BS_OS_RESUME_CHECK, BS_ON_EXIT, dump_me_status, NULL);