blob: bfa01e4dee3a1a692dd3ebc006874df625fac165 [file] [log] [blame]
Sridhar Siricillaf87ff332019-09-12 17:18:20 +05301/* SPDX-License-Identifier: GPL-2.0-only */
Elyes HAOUAS944da482021-02-01 21:30:13 +01002
Krishna P Bhat De3178a12022-04-21 16:40:06 +05303#include <acpi/acpi.h>
Krishna P Bhat De3178a12022-04-21 16:40:06 +05304#include <bootstate.h>
Rizwan Qureshiec321092019-09-06 20:28:43 +05305#include <cbfs.h>
Rizwan Qureshiec321092019-09-06 20:28:43 +05306#include <commonlib/region.h>
Elyes Haouasdef74aa2022-10-31 13:44:40 +01007#include <console/console.h>
8#include <cpu/cpu.h>
Subrata Banik65a6d172023-08-13 13:03:50 +00009#include <crc_byte.h>
Krishna Prasad Bhatb58fd2d2023-06-12 15:04:08 +053010#include <elog.h>
Rizwan Qureshiec321092019-09-06 20:28:43 +053011#include <fmap.h>
Elyes Haouasdef74aa2022-10-31 13:44:40 +010012#include <intelbasecode/debug_feature.h>
Sridhar Siricillaf87ff332019-09-12 17:18:20 +053013#include <intelblocks/cse.h>
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +053014#include <intelblocks/cse_layout.h>
Subrata Banikda527ec2022-11-24 15:42:35 +053015#include <intelblocks/spi.h>
Sridhar Siricilla87e36c42020-05-03 19:08:18 +053016#include <security/vboot/misc.h>
Elyes Haouasdef74aa2022-10-31 13:44:40 +010017#include <security/vboot/vboot_common.h>
Rizwan Qureshiec321092019-09-06 20:28:43 +053018#include <soc/intel/common/reset.h>
Krishna P Bhat De3178a12022-04-21 16:40:06 +053019#include <timestamp.h>
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +053020
Dinesh Gehlota9232d82023-06-10 11:53:47 +000021#include "cse_lite_cmos.h"
22
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +053023#define BPDT_HEADER_SZ sizeof(struct bpdt_header)
24#define BPDT_ENTRY_SZ sizeof(struct bpdt_entry)
25#define SUBPART_HEADER_SZ sizeof(struct subpart_hdr)
26#define SUBPART_ENTRY_SZ sizeof(struct subpart_entry)
27#define SUBPART_MANIFEST_HDR_SZ sizeof(struct subpart_entry_manifest_header)
Rizwan Qureshiec321092019-09-06 20:28:43 +053028
Sridhar Siricillaf87ff332019-09-12 17:18:20 +053029/* Converts bp index to boot partition string */
30#define GET_BP_STR(bp_index) (bp_index ? "RW" : "RO")
31
Rizwan Qureshiec321092019-09-06 20:28:43 +053032/* CSE RW boot partition signature */
33#define CSE_RW_SIGNATURE 0x000055aa
34
35/* CSE RW boot partition signature size */
36#define CSE_RW_SIGN_SIZE sizeof(uint32_t)
37
Sridhar Siricillaf87ff332019-09-12 17:18:20 +053038/*
Sridhar Siricilla99dbca32020-05-12 21:05:04 +053039 * CSE Firmware supports 3 boot partitions. For CSE Lite SKU, only 2 boot partitions are
Sridhar Siricillaf87ff332019-09-12 17:18:20 +053040 * used and 3rd boot partition is set to BP_STATUS_PARTITION_NOT_PRESENT.
Sridhar Siricilla99dbca32020-05-12 21:05:04 +053041 * CSE Lite SKU Image Layout:
Angel Pons2e8e0602022-08-13 19:50:28 +020042 * +------------+ +----+------+----+ +-----+------+-----+
43 * | CSE REGION | => | RO | DATA | RW | => | BP1 | DATA | BP2 |
44 * +------------+ +----+------+----+ +-----+------+-----+
Sridhar Siricillaf87ff332019-09-12 17:18:20 +053045 */
46#define CSE_MAX_BOOT_PARTITIONS 3
47
Sridhar Siricilla99dbca32020-05-12 21:05:04 +053048/* CSE Lite SKU's valid bootable partition identifiers */
Sridhar Siricillaf87ff332019-09-12 17:18:20 +053049enum boot_partition_id {
Rizwan Qureshiec321092019-09-06 20:28:43 +053050 /* RO(BP1) contains recovery/minimal boot firmware */
Sridhar Siricillaf87ff332019-09-12 17:18:20 +053051 RO = 0,
52
Rizwan Qureshiec321092019-09-06 20:28:43 +053053 /* RW(BP2) contains fully functional CSE firmware */
Sridhar Siricillaf87ff332019-09-12 17:18:20 +053054 RW = 1
55};
56
57/*
58 * Boot partition status.
59 * The status is returned in response to MKHI_BUP_COMMON_GET_BOOT_PARTITION_INFO cmd.
60 */
61enum bp_status {
62 /* This value is returned when a partition has no errors */
63 BP_STATUS_SUCCESS = 0,
64
65 /*
66 * This value is returned when a partition should be present based on layout, but it is
67 * not valid.
68 */
69 BP_STATUS_GENERAL_FAILURE = 1,
70
71 /* This value is returned when a partition is not present per initial image layout */
72 BP_STATUS_PARTITION_NOT_PRESENT = 2,
73
Sridhar Siricilla2f6d5552020-04-19 23:39:02 +053074 /*
75 * This value is returned when unexpected issues are detected in CSE Data area
76 * and CSE TCB-SVN downgrade scenario.
77 */
78 BP_STATUS_DATA_FAILURE = 3,
Sridhar Siricillaf87ff332019-09-12 17:18:20 +053079};
80
81/*
82 * Boot Partition Info Flags
83 * The flags are returned in response to MKHI_BUP_COMMON_GET_BOOT_PARTITION_INFO cmd.
84 */
85enum bp_info_flags {
86
87 /* Redundancy Enabled: It indicates CSE supports RO(BP1) and RW(BP2) regions */
88 BP_INFO_REDUNDANCY_EN = 1 << 0,
89
90 /* It indicates RO(BP1) supports Minimal Recovery Mode */
91 BP_INFO_MIN_RECOV_MODE_EN = 1 << 1,
92
93 /*
94 * Read-only Config Enabled: It indicates HW protection to CSE RO region is enabled.
95 * The option is relevant only if the BP_INFO_MIN_RECOV_MODE_EN flag is enabled.
96 */
97 BP_INFO_READ_ONLY_CFG = 1 << 2,
98};
99
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530100/* CSE boot partition entry info */
101struct cse_bp_entry {
102 /* Boot partition version */
103 struct fw_version fw_ver;
104
105 /* Boot partition status */
106 uint32_t status;
107
108 /* Starting offset of the partition within CSE region */
109 uint32_t start_offset;
110
111 /* Ending offset of the partition within CSE region */
112 uint32_t end_offset;
113 uint8_t reserved[12];
114} __packed;
115
116/* CSE boot partition info */
117struct cse_bp_info {
118 /* Number of boot partitions */
119 uint8_t total_number_of_bp;
120
121 /* Current boot partition */
122 uint8_t current_bp;
123
124 /* Next boot partition */
125 uint8_t next_bp;
126
127 /* Boot Partition Info Flags */
128 uint8_t flags;
129
130 /* Boot Partition Entry Info */
131 struct cse_bp_entry bp_entries[CSE_MAX_BOOT_PARTITIONS];
132} __packed;
133
134struct get_bp_info_rsp {
135 struct mkhi_hdr hdr;
136 struct cse_bp_info bp_info;
137} __packed;
138
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530139static struct get_bp_info_rsp cse_bp_info_rsp;
140
Dinesh Gehlota9232d82023-06-10 11:53:47 +0000141enum cse_fw_state {
142 /* The CMOS and CBMEM have the current fw version. */
143 CSE_FW_WARM_BOOT,
144
145 /* The CMOS has the current fw version, and the CBMEM is wiped out. */
146 CSE_FW_COLD_BOOT,
147
148 /* The CMOS and CBMEM are not initialized or not same as running firmware version.*/
149 CSE_FW_INVALID,
150};
151
Sridhar Siricilla52479c72022-03-30 09:25:49 +0530152static const char * const cse_regions[] = {"RO", "RW"};
Bora Guvendikf33c9bf2021-11-05 23:09:25 -0700153
Subrata Banik65a6d172023-08-13 13:03:50 +0000154static struct cse_specific_info cse_info;
155
Subrata Banikda527ec2022-11-24 15:42:35 +0530156void cse_log_ro_write_protection_info(bool mfg_mode)
157{
158 bool cse_ro_wp_en = is_spi_wp_cse_ro_en();
159
160 printk(BIOS_DEBUG, "ME: WP for RO is enabled : %s\n",
161 cse_ro_wp_en ? "YES" : "NO");
162
163 if (cse_ro_wp_en) {
164 uint32_t base, limit;
165 spi_get_wp_cse_ro_range(&base, &limit);
166 printk(BIOS_DEBUG, "ME: RO write protection scope - Start=0x%X, End=0x%X\n",
167 base, limit);
168 }
169
170 /*
171 * If manufacturing mode is disabled, but CSE RO is not write protected,
172 * log error.
173 */
174 if (!mfg_mode && !cse_ro_wp_en)
175 printk(BIOS_ERR, "ME: Write protection for CSE RO is not enabled\n");
176}
177
Sridhar Siricilladd7d51d2023-01-10 15:05:07 +0530178enum cb_err cse_get_boot_performance_data(struct cse_boot_perf_rsp *boot_perf_rsp)
Bora Guvendikf33c9bf2021-11-05 23:09:25 -0700179{
180 struct cse_boot_perf_req {
181 struct mkhi_hdr hdr;
182 uint32_t reserved;
183 } __packed;
184
185 struct cse_boot_perf_req req = {
186 .hdr.group_id = MKHI_GROUP_ID_BUP_COMMON,
187 .hdr.command = MKHI_BUP_COMMON_GET_BOOT_PERF_DATA,
188 .reserved = 0,
189 };
190
191 size_t resp_size = sizeof(struct cse_boot_perf_rsp);
192
Sridhar Siricilla6836da22022-02-23 23:36:45 +0530193 if (heci_send_receive(&req, sizeof(req), boot_perf_rsp, &resp_size,
Bora Guvendikf33c9bf2021-11-05 23:09:25 -0700194 HECI_MKHI_ADDR)) {
195 printk(BIOS_ERR, "cse_lite: Could not get boot performance data\n");
Sridhar Siricilladd7d51d2023-01-10 15:05:07 +0530196 return CB_ERR;
Bora Guvendikf33c9bf2021-11-05 23:09:25 -0700197 }
198
199 if (boot_perf_rsp->hdr.result) {
200 printk(BIOS_ERR, "cse_lite: Get boot performance data resp failed: %d\n",
201 boot_perf_rsp->hdr.result);
Sridhar Siricilladd7d51d2023-01-10 15:05:07 +0530202 return CB_ERR;
Bora Guvendikf33c9bf2021-11-05 23:09:25 -0700203 }
204
Sridhar Siricilladd7d51d2023-01-10 15:05:07 +0530205 return CB_SUCCESS;
Bora Guvendikf33c9bf2021-11-05 23:09:25 -0700206}
207
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530208static const struct cse_bp_info *cse_get_bp_info_from_rsp(void)
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530209{
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530210 return &cse_bp_info_rsp.bp_info;
211}
212
213static uint8_t cse_get_current_bp(void)
214{
215 const struct cse_bp_info *cse_bp_info = cse_get_bp_info_from_rsp();
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530216 return cse_bp_info->current_bp;
217}
218
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530219static const struct cse_bp_entry *cse_get_bp_entry(enum boot_partition_id bp)
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530220{
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530221 const struct cse_bp_info *cse_bp_info = cse_get_bp_info_from_rsp();
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530222 return &cse_bp_info->bp_entries[bp];
223}
224
Dinesh Gehlota9232d82023-06-10 11:53:47 +0000225static bool is_cse_fpt_info_valid(const struct cse_specific_info *info)
Subrata Banik65a6d172023-08-13 13:03:50 +0000226{
227 uint32_t crc = ~CRC(info, offsetof(struct cse_specific_info, crc), crc32_byte);
228
229 /*
230 * Authenticate the CBMEM persistent data.
231 *
232 * The underlying assumption is that an event (i.e., CSE upgrade/downgrade) which
233 * could change the values stored in this region has to also trigger the global
234 * reset. Hence, CBMEM persistent data won't be available any time after such
235 * event (global reset or cold reset) being initiated.
236 *
237 * During warm boot scenarios CBMEM contents remain persistent hence, we don't
238 * want to override the existing data in CBMEM to avoid any additional boot latency.
239 */
240 if (info->crc != crc)
241 return false;
242
243 return true;
244}
245
Dinesh Gehlota9232d82023-06-10 11:53:47 +0000246static void store_cse_info_crc(struct cse_specific_info *info)
Subrata Banik65a6d172023-08-13 13:03:50 +0000247{
248 info->crc = ~CRC(info, offsetof(struct cse_specific_info, crc), crc32_byte);
249}
250
Dinesh Gehlota9232d82023-06-10 11:53:47 +0000251static enum cse_fw_state get_cse_state(const struct fw_version *cur_cse_fw_ver,
252 struct fw_version *cmos_cse_fw_ver, const struct fw_version *cbmem_cse_fw_ver)
253{
254 enum cse_fw_state state = CSE_FW_WARM_BOOT;
255 size_t size = sizeof(struct fw_version);
256 /*
257 * Compare if stored CSE version (from the previous boot) is same as current
258 * running CSE version.
259 */
260 if (memcmp(cmos_cse_fw_ver, cur_cse_fw_ver, size)) {
261 /*
262 * CMOS CSE versioin is invalid, possibly two scenarios
263 * 1. CSE FW update
264 * 2. First boot
265 */
266 state = CSE_FW_INVALID;
267 } else {
268 /*
269 * Check if current running CSE version is same as previous stored CSE
270 * version aka CBMEM region is still valid.
271 */
272 if (memcmp(cbmem_cse_fw_ver, cur_cse_fw_ver, size))
273 state = CSE_FW_COLD_BOOT;
274 }
275 return state;
276}
277
Subrata Banik65a6d172023-08-13 13:03:50 +0000278/*
279 * Helper function that stores current CSE firmware version to CBMEM memory,
280 * except during recovery mode.
281 */
Krishna P Bhat D64ec6a72023-09-21 22:19:47 +0530282static void cse_store_rw_fw_version(void)
Subrata Banik65a6d172023-08-13 13:03:50 +0000283{
Krishna P Bhat D64ec6a72023-09-21 22:19:47 +0530284 const struct cse_bp_entry *cse_bp;
285 cse_bp = cse_get_bp_entry(RW);
286
Subrata Banik65a6d172023-08-13 13:03:50 +0000287 if (vboot_recovery_mode_enabled())
288 return;
289
290 if (CONFIG(SOC_INTEL_CSE_LITE_SYNC_IN_ROMSTAGE)) {
Dinesh Gehlota9232d82023-06-10 11:53:47 +0000291 /* update current CSE version and return */
292 memcpy(&(cse_info.cse_fwp_version.cur_cse_fw_version),
293 &(cse_bp->fw_ver), sizeof(struct fw_version));
Subrata Banik65a6d172023-08-13 13:03:50 +0000294 return;
295 }
296
Dinesh Gehlota9232d82023-06-10 11:53:47 +0000297 struct cse_specific_info *cse_info_in_cbmem = cbmem_add(CBMEM_ID_CSE_INFO,
298 sizeof(*cse_info_in_cbmem));
299 if (!cse_info_in_cbmem)
Subrata Banik65a6d172023-08-13 13:03:50 +0000300 return;
301
302 /* Avoid CBMEM update if CBMEM already has persistent data */
Dinesh Gehlota9232d82023-06-10 11:53:47 +0000303 if (is_cse_fpt_info_valid(cse_info_in_cbmem))
Subrata Banik65a6d172023-08-13 13:03:50 +0000304 return;
305
Dinesh Gehlota9232d82023-06-10 11:53:47 +0000306 struct cse_specific_info cse_info_in_cmos;
307 cmos_read_fw_partition_info(&cse_info_in_cmos);
Subrata Banik65a6d172023-08-13 13:03:50 +0000308
Dinesh Gehlota9232d82023-06-10 11:53:47 +0000309 /* Get current cse firmware state */
310 enum cse_fw_state fw_state = get_cse_state(&(cse_bp->fw_ver),
311 &(cse_info_in_cmos.cse_fwp_version.cur_cse_fw_version),
312 &(cse_info_in_cbmem->cse_fwp_version.cur_cse_fw_version));
313
314 /* Reset CBMEM data and update current CSE version */
315 memset(cse_info_in_cbmem, 0, sizeof(*cse_info_in_cbmem));
316 memcpy(&(cse_info_in_cbmem->cse_fwp_version.cur_cse_fw_version),
317 &(cse_bp->fw_ver), sizeof(struct fw_version));
Subrata Banik65a6d172023-08-13 13:03:50 +0000318
319 /* Update the CRC */
Dinesh Gehlota9232d82023-06-10 11:53:47 +0000320 store_cse_info_crc(cse_info_in_cbmem);
321
322 if (fw_state == CSE_FW_INVALID) {
323 /*
324 * Current CMOS data is outdated, which could be due to CSE update or
325 * rollback, hence, need to update CMOS with current CSE FPT versions.
326 */
327 cmos_write_fw_partition_info(cse_info_in_cbmem);
328 }
Subrata Banik65a6d172023-08-13 13:03:50 +0000329}
330
331#if CONFIG(SOC_INTEL_CSE_LITE_SYNC_IN_ROMSTAGE)
332/* Function to copy PRERAM CSE specific info to pertinent CBMEM. */
333static void preram_cse_info_sync_to_cbmem(int is_recovery)
334{
335 if (vboot_recovery_mode_enabled() || !CONFIG(SOC_INTEL_STORE_CSE_FW_VERSION))
336 return;
337
Dinesh Gehlota9232d82023-06-10 11:53:47 +0000338 struct cse_specific_info *cse_info_in_cbmem = cbmem_add(CBMEM_ID_CSE_INFO,
339 sizeof(*cse_info_in_cbmem));
340 if (!cse_info_in_cbmem)
Subrata Banik65a6d172023-08-13 13:03:50 +0000341 return;
342
Dinesh Gehlota9232d82023-06-10 11:53:47 +0000343 /* Warm Reboot: Avoid sync into CBMEM if CBMEM already has persistent data */
344 if (is_cse_fpt_info_valid(cse_info_in_cbmem))
Subrata Banik65a6d172023-08-13 13:03:50 +0000345 return;
346
Dinesh Gehlota9232d82023-06-10 11:53:47 +0000347 /* Update CBMEM with PRERAM CSE specific info and update the CRC */
348 memcpy(cse_info_in_cbmem, &cse_info, sizeof(struct cse_specific_info));
349 store_cse_info_crc(cse_info_in_cbmem);
Subrata Banik65a6d172023-08-13 13:03:50 +0000350
Dinesh Gehlota9232d82023-06-10 11:53:47 +0000351 struct cse_specific_info cse_info_in_cmos;
352 cmos_read_fw_partition_info(&cse_info_in_cmos);
353
354 if (!memcmp(&(cse_info_in_cmos.cse_fwp_version.cur_cse_fw_version),
355 &(cse_info_in_cbmem->cse_fwp_version.cur_cse_fw_version),
356 sizeof(struct fw_version))) {
357 /* Cold Reboot: Avoid sync into CMOS if CMOS already has persistent data */
358 if (is_cse_fpt_info_valid(&cse_info_in_cmos))
359 return;
360 }
361
362 /*
363 * Current CMOS data is outdated, which could be due to CSE update or
364 * rollback, hence, need to update CMOS with current CSE FPT versions.
365 */
366 cmos_write_fw_partition_info(cse_info_in_cbmem);
Subrata Banik65a6d172023-08-13 13:03:50 +0000367}
368
369CBMEM_CREATION_HOOK(preram_cse_info_sync_to_cbmem);
370#endif
371
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530372static void cse_print_boot_partition_info(void)
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530373{
374 const struct cse_bp_entry *cse_bp;
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530375 const struct cse_bp_info *cse_bp_info = cse_get_bp_info_from_rsp();
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530376
Sridhar Siricilla9f71b172020-06-01 14:50:52 +0530377 printk(BIOS_DEBUG, "cse_lite: Number of partitions = %d\n",
378 cse_bp_info->total_number_of_bp);
379 printk(BIOS_DEBUG, "cse_lite: Current partition = %s\n",
380 GET_BP_STR(cse_bp_info->current_bp));
381 printk(BIOS_DEBUG, "cse_lite: Next partition = %s\n", GET_BP_STR(cse_bp_info->next_bp));
382 printk(BIOS_DEBUG, "cse_lite: Flags = 0x%x\n", cse_bp_info->flags);
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530383
384 /* Log version info of RO & RW partitions */
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530385 cse_bp = cse_get_bp_entry(RO);
Sridhar Siricilla9f71b172020-06-01 14:50:52 +0530386 printk(BIOS_DEBUG, "cse_lite: %s version = %d.%d.%d.%d (Status=0x%x, Start=0x%x, End=0x%x)\n",
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530387 GET_BP_STR(RO), cse_bp->fw_ver.major, cse_bp->fw_ver.minor,
388 cse_bp->fw_ver.hotfix, cse_bp->fw_ver.build,
389 cse_bp->status, cse_bp->start_offset,
390 cse_bp->end_offset);
391
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530392 cse_bp = cse_get_bp_entry(RW);
Sridhar Siricilla9f71b172020-06-01 14:50:52 +0530393 printk(BIOS_DEBUG, "cse_lite: %s version = %d.%d.%d.%d (Status=0x%x, Start=0x%x, End=0x%x)\n",
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530394 GET_BP_STR(RW), cse_bp->fw_ver.major, cse_bp->fw_ver.minor,
395 cse_bp->fw_ver.hotfix, cse_bp->fw_ver.build,
396 cse_bp->status, cse_bp->start_offset,
397 cse_bp->end_offset);
398}
399
400/*
401 * Checks prerequisites for MKHI_BUP_COMMON_GET_BOOT_PARTITION_INFO and
402 * MKHI_BUP_COMMON_SET_BOOT_PARTITION_INFO HECI commands.
403 * It allows execution of the Boot Partition commands in below scenarios:
404 * - When CSE boots from RW partition (COM: Normal and CWS: Normal)
405 * - When CSE boots from RO partition (COM: Soft Temp Disable and CWS: Normal)
406 * - After HMRFPO_ENABLE command is issued to CSE (COM: SECOVER_MEI_MSG and CWS: Normal)
Rizwan Qureshiec321092019-09-06 20:28:43 +0530407 * The prerequisite check should be handled in cse_get_bp_info() and
408 * cse_set_next_boot_partition() since the CSE's current operation mode is changed between these
409 * cmd handler calls.
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530410 */
411static bool cse_is_bp_cmd_info_possible(void)
412{
413 if (cse_is_hfs1_cws_normal()) {
414 if (cse_is_hfs1_com_normal())
415 return true;
416 if (cse_is_hfs1_com_secover_mei_msg())
417 return true;
418 if (cse_is_hfs1_com_soft_temp_disable())
419 return true;
420 }
421 return false;
422}
423
Krishna Prasad Bhat4f062ec2023-09-21 23:33:34 +0530424static struct get_bp_info_rsp *sync_cse_bp_info_to_cbmem(void)
425{
426 struct get_bp_info_rsp *cse_bp_info_in_cbmem = cbmem_find(CBMEM_ID_CSE_BP_INFO);
427
428 if (cse_bp_info_in_cbmem != NULL)
429 return cse_bp_info_in_cbmem;
430
431 cse_bp_info_in_cbmem = cbmem_add(CBMEM_ID_CSE_BP_INFO,
432 sizeof(struct get_bp_info_rsp));
433
434 if (!cse_bp_info_in_cbmem) {
435 printk(BIOS_ERR, "Unable to store Boot Parition Info in cbmem\n");
436 return NULL;
437 }
438
439 /* Copy the CSE Boot Partition Info command response to cbmem */
440 memcpy(cse_bp_info_in_cbmem, &cse_bp_info_rsp, sizeof(struct get_bp_info_rsp));
441
442 return cse_bp_info_in_cbmem;
443}
444
445static bool is_cse_bp_info_valid(struct get_bp_info_rsp *bp_info_rsp)
446{
447 /*
448 * In case the cse_bp_info_rsp header group ID, command is incorrect or is_resp is 0,
449 * then return false to indicate cse_bp_info is not valid.
450 */
451 return (bp_info_rsp->hdr.group_id != MKHI_GROUP_ID_BUP_COMMON ||
452 bp_info_rsp->hdr.command != MKHI_BUP_COMMON_GET_BOOT_PARTITION_INFO ||
453 !bp_info_rsp->hdr.is_resp) ? false : true;
454}
455
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530456static enum cb_err cse_get_bp_info(void)
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530457{
458 struct get_bp_info_req {
459 struct mkhi_hdr hdr;
460 uint8_t reserved[4];
461 } __packed;
462
463 struct get_bp_info_req info_req = {
464 .hdr.group_id = MKHI_GROUP_ID_BUP_COMMON,
465 .hdr.command = MKHI_BUP_COMMON_GET_BOOT_PARTITION_INFO,
466 .reserved = {0},
467 };
468
Krishna Prasad Bhat4f062ec2023-09-21 23:33:34 +0530469 /*
470 * If SOC_INTEL_CSE_LITE_SYNC_IN_RAMSTAGE config is selected and memory has been
471 * initialized, check if there is cse bp info response stored in cbmem. Once the data
472 * is validated, copy it to the global cse_bp_info_rsp so that it can be used by other
473 * functions. In case, data is not available in cbmem or invalid, continue to send the
474 * GET_BOOT_PARTITION_INFO command, else return.
475 */
476 if (CONFIG(SOC_INTEL_CSE_LITE_SYNC_IN_RAMSTAGE) && cbmem_online()) {
477 struct get_bp_info_rsp *cse_bp_info_in_cbmem = sync_cse_bp_info_to_cbmem();
478 if (cse_bp_info_in_cbmem) {
479 if (is_cse_bp_info_valid(cse_bp_info_in_cbmem)) {
480 memcpy(&cse_bp_info_rsp, cse_bp_info_in_cbmem,
481 sizeof(struct get_bp_info_rsp));
482 return CB_SUCCESS;
483 }
484 }
485 } else {
486 /*
487 * If SOC_INTEL_CSE_LITE_SYNC_IN_ROMSTAGE config is selected, check if the
488 * global cse bp info response stored in global cse_bp_info_rsp is valid.
489 * In case, it is not valid, continue to send the GET_BOOT_PARTITION_INFO
490 * command, else return.
491 */
492 if (is_cse_bp_info_valid(&cse_bp_info_rsp))
493 return CB_SUCCESS;
494 }
495
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530496 if (!cse_is_bp_cmd_info_possible()) {
Sridhar Siricilla9f71b172020-06-01 14:50:52 +0530497 printk(BIOS_ERR, "cse_lite: CSE does not meet prerequisites\n");
Sridhar Siricilla4b6e8ca2023-01-10 14:43:18 +0530498 return CB_ERR;
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530499 }
500
501 size_t resp_size = sizeof(struct get_bp_info_rsp);
502
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530503 if (heci_send_receive(&info_req, sizeof(info_req), &cse_bp_info_rsp, &resp_size,
Rizwan Qureshi957857d2021-08-30 16:43:57 +0530504 HECI_MKHI_ADDR)) {
Sridhar Siricilla9f71b172020-06-01 14:50:52 +0530505 printk(BIOS_ERR, "cse_lite: Could not get partition info\n");
Sridhar Siricilla4b6e8ca2023-01-10 14:43:18 +0530506 return CB_ERR;
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530507 }
508
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530509 if (cse_bp_info_rsp.hdr.result) {
Sridhar Siricilla9f71b172020-06-01 14:50:52 +0530510 printk(BIOS_ERR, "cse_lite: Get partition info resp failed: %d\n",
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530511 cse_bp_info_rsp.hdr.result);
Sridhar Siricilla4b6e8ca2023-01-10 14:43:18 +0530512 return CB_ERR;
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530513 }
514
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530515 cse_print_boot_partition_info();
Sridhar Siricilla4b6e8ca2023-01-10 14:43:18 +0530516 return CB_SUCCESS;
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530517}
Krishna Prasad Bhat4f062ec2023-09-21 23:33:34 +0530518
519void cse_fill_bp_info(void)
520{
521 if (vboot_recovery_mode_enabled())
522 return;
523
524 if (cse_get_bp_info() != CB_SUCCESS)
525 cse_trigger_vboot_recovery(CSE_COMMUNICATION_ERROR);
526}
527
528/* Function to copy PRERAM CSE BP info to pertinent CBMEM. */
529static void preram_cse_bp_info_sync_to_cbmem(int is_recovery)
530{
531 if (vboot_recovery_mode_enabled())
532 return;
533
534 sync_cse_bp_info_to_cbmem();
535}
536
537CBMEM_CREATION_HOOK(preram_cse_bp_info_sync_to_cbmem);
538
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530539/*
540 * It sends HECI command to notify CSE about its next boot partition. When coreboot wants
541 * CSE to boot from certain partition (BP1 <RO> or BP2 <RW>), then this command can be used.
542 * The CSE's valid bootable partitions are BP1(RO) and BP2(RW).
543 * This function must be used before EOP.
544 * Returns false on failure and true on success.
545 */
Sridhar Siricilla8f9c1532023-01-10 14:38:51 +0530546static enum cb_err cse_set_next_boot_partition(enum boot_partition_id bp)
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530547{
548 struct set_boot_partition_info_req {
549 struct mkhi_hdr hdr;
550 uint8_t next_bp;
551 uint8_t reserved[3];
552 } __packed;
553
554 struct set_boot_partition_info_req switch_req = {
555 .hdr.group_id = MKHI_GROUP_ID_BUP_COMMON,
556 .hdr.command = MKHI_BUP_COMMON_SET_BOOT_PARTITION_INFO,
557 .next_bp = bp,
558 .reserved = {0},
559 };
560
561 if (bp != RO && bp != RW) {
Sridhar Siricilla9f71b172020-06-01 14:50:52 +0530562 printk(BIOS_ERR, "cse_lite: Incorrect partition id(%d) is provided", bp);
Sridhar Siricilla8f9c1532023-01-10 14:38:51 +0530563 return CB_ERR_ARG;
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530564 }
565
Sridhar Siricilla9f71b172020-06-01 14:50:52 +0530566 printk(BIOS_INFO, "cse_lite: Set Boot Partition Info Command (%s)\n", GET_BP_STR(bp));
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530567
568 if (!cse_is_bp_cmd_info_possible()) {
Sridhar Siricilla9f71b172020-06-01 14:50:52 +0530569 printk(BIOS_ERR, "cse_lite: CSE does not meet prerequisites\n");
Sridhar Siricilla8f9c1532023-01-10 14:38:51 +0530570 return CB_ERR;
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530571 }
572
573 struct mkhi_hdr switch_resp;
574 size_t sw_resp_sz = sizeof(struct mkhi_hdr);
575
Sridhar Siricilla6836da22022-02-23 23:36:45 +0530576 if (heci_send_receive(&switch_req, sizeof(switch_req), &switch_resp, &sw_resp_sz,
Rizwan Qureshi957857d2021-08-30 16:43:57 +0530577 HECI_MKHI_ADDR))
Sridhar Siricilla8f9c1532023-01-10 14:38:51 +0530578 return CB_ERR;
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530579
580 if (switch_resp.result) {
Sridhar Siricilla9f71b172020-06-01 14:50:52 +0530581 printk(BIOS_ERR, "cse_lite: Set Boot Partition Info Response Failed: %d\n",
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530582 switch_resp.result);
Sridhar Siricilla8f9c1532023-01-10 14:38:51 +0530583 return CB_ERR;
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530584 }
585
Sridhar Siricilla8f9c1532023-01-10 14:38:51 +0530586 return CB_SUCCESS;
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530587}
588
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530589static enum cb_err cse_data_clear_request(void)
V Sowmyaf9905522020-11-12 20:19:04 +0530590{
591 struct data_clr_request {
592 struct mkhi_hdr hdr;
593 uint8_t reserved[4];
594 } __packed;
595
596 struct data_clr_request data_clr_rq = {
597 .hdr.group_id = MKHI_GROUP_ID_BUP_COMMON,
598 .hdr.command = MKHI_BUP_COMMON_DATA_CLEAR,
599 .reserved = {0},
600 };
601
602 if (!cse_is_hfs1_cws_normal() || !cse_is_hfs1_com_soft_temp_disable() ||
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530603 cse_get_current_bp() != RO) {
V Sowmyaf9905522020-11-12 20:19:04 +0530604 printk(BIOS_ERR, "cse_lite: CSE doesn't meet DATA CLEAR cmd prerequisites\n");
Sridhar Siricilla8f9c1532023-01-10 14:38:51 +0530605 return CB_ERR;
V Sowmyaf9905522020-11-12 20:19:04 +0530606 }
607
608 printk(BIOS_DEBUG, "cse_lite: Sending DATA CLEAR HECI command\n");
609
610 struct mkhi_hdr data_clr_rsp;
611 size_t data_clr_rsp_sz = sizeof(data_clr_rsp);
612
Sridhar Siricilla6836da22022-02-23 23:36:45 +0530613 if (heci_send_receive(&data_clr_rq, sizeof(data_clr_rq), &data_clr_rsp,
Rizwan Qureshi957857d2021-08-30 16:43:57 +0530614 &data_clr_rsp_sz, HECI_MKHI_ADDR)) {
Sridhar Siricilla8f9c1532023-01-10 14:38:51 +0530615 return CB_ERR;
V Sowmyaf9905522020-11-12 20:19:04 +0530616 }
617
618 if (data_clr_rsp.result) {
619 printk(BIOS_ERR, "cse_lite: CSE DATA CLEAR command response failed: %d\n",
620 data_clr_rsp.result);
Sridhar Siricilla8f9c1532023-01-10 14:38:51 +0530621 return CB_ERR;
V Sowmyaf9905522020-11-12 20:19:04 +0530622 }
623
Sridhar Siricilla8f9c1532023-01-10 14:38:51 +0530624 return CB_SUCCESS;
V Sowmyaf9905522020-11-12 20:19:04 +0530625}
Sridhar Siricilla361e3642020-10-18 20:14:07 +0530626
Karthikeyan Ramasubramanianf9cc6372020-08-04 16:38:58 -0600627__weak void cse_board_reset(void)
628{
629 /* Default weak implementation, does nothing. */
630}
631
Jeremy Compostella08b5200d2023-01-19 11:32:25 -0700632__weak void cse_fw_update_misc_oper(void)
633{
634 /* Default weak implementation, does nothing. */
635}
636
Rizwan Qureshiec321092019-09-06 20:28:43 +0530637/* Set the CSE's next boot partition and issues system reset */
Sridhar Siricilla8f9c1532023-01-10 14:38:51 +0530638static enum cb_err cse_set_and_boot_from_next_bp(enum boot_partition_id bp)
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530639{
Sridhar Siricilla8f9c1532023-01-10 14:38:51 +0530640 if (cse_set_next_boot_partition(bp) != CB_SUCCESS)
641 return CB_ERR;
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530642
Karthikeyan Ramasubramanianf9cc6372020-08-04 16:38:58 -0600643 /* Allow the board to perform a reset for CSE RO<->RW jump */
644 cse_board_reset();
645
646 /* If board does not perform the reset, then perform global_reset */
Furquan Shaikhb13bd1e2020-09-21 22:44:27 +0000647 do_global_reset();
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530648
Rizwan Qureshiec321092019-09-06 20:28:43 +0530649 die("cse_lite: Failed to reset the system\n");
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530650
651 /* Control never reaches here */
Sridhar Siricilla8f9c1532023-01-10 14:38:51 +0530652 return CB_ERR;
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530653}
654
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530655static enum cb_err cse_boot_to_rw(void)
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530656{
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530657 if (cse_get_current_bp() == RW)
Sridhar Siricilla8f9c1532023-01-10 14:38:51 +0530658 return CB_SUCCESS;
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530659
Rizwan Qureshiec321092019-09-06 20:28:43 +0530660 return cse_set_and_boot_from_next_bp(RW);
661}
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530662
V Sowmyaf9905522020-11-12 20:19:04 +0530663/* Check if CSE RW data partition is valid or not */
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530664static bool cse_is_rw_dp_valid(void)
V Sowmyaf9905522020-11-12 20:19:04 +0530665{
666 const struct cse_bp_entry *rw_bp;
667
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530668 rw_bp = cse_get_bp_entry(RW);
V Sowmyaf9905522020-11-12 20:19:04 +0530669 return rw_bp->status != BP_STATUS_DATA_FAILURE;
670}
671
672/*
673 * It returns true if RW partition doesn't indicate BP_STATUS_DATA_FAILURE
674 * otherwise false if any operation fails.
675 */
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530676static enum cb_err cse_fix_data_failure_err(void)
V Sowmyaf9905522020-11-12 20:19:04 +0530677{
678 /*
679 * If RW partition status indicates BP_STATUS_DATA_FAILURE,
680 * - Send DATA CLEAR HECI command to CSE
681 * - Send SET BOOT PARTITION INFO(RW) command to set CSE's next partition
682 * - Issue GLOBAL RESET HECI command.
683 */
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530684 if (cse_is_rw_dp_valid())
Sridhar Siricilla8f9c1532023-01-10 14:38:51 +0530685 return CB_SUCCESS;
V Sowmyaf9905522020-11-12 20:19:04 +0530686
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530687 if (cse_data_clear_request() != CB_SUCCESS)
Sridhar Siricilla8f9c1532023-01-10 14:38:51 +0530688 return CB_ERR;
V Sowmyaf9905522020-11-12 20:19:04 +0530689
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530690 return cse_boot_to_rw();
V Sowmyaf9905522020-11-12 20:19:04 +0530691}
692
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530693static const struct fw_version *cse_get_bp_entry_version(enum boot_partition_id bp)
V Sowmyaf9905522020-11-12 20:19:04 +0530694{
695 const struct cse_bp_entry *cse_bp;
696
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530697 cse_bp = cse_get_bp_entry(bp);
V Sowmyaf9905522020-11-12 20:19:04 +0530698 return &cse_bp->fw_ver;
699}
700
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530701static const struct fw_version *cse_get_rw_version(void)
V Sowmyaf9905522020-11-12 20:19:04 +0530702{
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530703 return cse_get_bp_entry_version(RW);
V Sowmyaf9905522020-11-12 20:19:04 +0530704}
705
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530706static void cse_get_bp_entry_range(enum boot_partition_id bp, uint32_t *start_offset,
707 uint32_t *end_offset)
V Sowmyaf9905522020-11-12 20:19:04 +0530708{
709 const struct cse_bp_entry *cse_bp;
710
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530711 cse_bp = cse_get_bp_entry(bp);
V Sowmyaf9905522020-11-12 20:19:04 +0530712
713 if (start_offset)
714 *start_offset = cse_bp->start_offset;
715
716 if (end_offset)
717 *end_offset = cse_bp->end_offset;
718
719}
720
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530721static bool cse_is_rw_bp_status_valid(void)
V Sowmyaf9905522020-11-12 20:19:04 +0530722{
723 const struct cse_bp_entry *rw_bp;
724
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530725 rw_bp = cse_get_bp_entry(RW);
V Sowmyaf9905522020-11-12 20:19:04 +0530726
727 if (rw_bp->status == BP_STATUS_PARTITION_NOT_PRESENT ||
728 rw_bp->status == BP_STATUS_GENERAL_FAILURE) {
729 printk(BIOS_ERR, "cse_lite: RW BP (status:%u) is not valid\n", rw_bp->status);
730 return false;
731 }
732 return true;
733}
734
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530735static enum cb_err cse_boot_to_ro(void)
Rizwan Qureshiec321092019-09-06 20:28:43 +0530736{
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530737 if (cse_get_current_bp() == RO)
Sridhar Siricillaad6d3122023-01-10 14:59:35 +0530738 return CB_SUCCESS;
Rizwan Qureshiec321092019-09-06 20:28:43 +0530739
740 return cse_set_and_boot_from_next_bp(RO);
741}
742
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +0530743static enum cb_err cse_get_rw_rdev(struct region_device *rdev)
Rizwan Qureshiec321092019-09-06 20:28:43 +0530744{
745 if (fmap_locate_area_as_rdev_rw(CONFIG_SOC_INTEL_CSE_FMAP_NAME, rdev) < 0) {
746 printk(BIOS_ERR, "cse_lite: Failed to locate %s in FMAP\n",
Sridhar Siricilla361e3642020-10-18 20:14:07 +0530747 CONFIG_SOC_INTEL_CSE_FMAP_NAME);
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +0530748 return CB_ERR;
Rizwan Qureshiec321092019-09-06 20:28:43 +0530749 }
750
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +0530751 return CB_SUCCESS;
Rizwan Qureshiec321092019-09-06 20:28:43 +0530752}
753
Rizwan Qureshiec321092019-09-06 20:28:43 +0530754static bool cse_is_rw_bp_sign_valid(const struct region_device *target_rdev)
755{
756 uint32_t cse_bp_sign;
757
758 if (rdev_readat(target_rdev, &cse_bp_sign, 0, CSE_RW_SIGN_SIZE) != CSE_RW_SIGN_SIZE) {
759 printk(BIOS_ERR, "cse_lite: Failed to read RW boot partition signature\n");
760 return false;
761 }
762
763 return cse_bp_sign == CSE_RW_SIGNATURE;
764}
765
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530766static enum cb_err cse_get_target_rdev(struct region_device *target_rdev)
Rizwan Qureshiec321092019-09-06 20:28:43 +0530767{
768 struct region_device cse_region_rdev;
769 size_t size;
770 uint32_t start_offset;
771 uint32_t end_offset;
772
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +0530773 if (cse_get_rw_rdev(&cse_region_rdev) != CB_SUCCESS)
774 return CB_ERR;
Rizwan Qureshiec321092019-09-06 20:28:43 +0530775
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530776 cse_get_bp_entry_range(RW, &start_offset, &end_offset);
Rizwan Qureshiec321092019-09-06 20:28:43 +0530777 size = end_offset + 1 - start_offset;
778
779 if (rdev_chain(target_rdev, &cse_region_rdev, start_offset, size))
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +0530780 return CB_ERR;
Rizwan Qureshiec321092019-09-06 20:28:43 +0530781
782 printk(BIOS_DEBUG, "cse_lite: CSE RW partition: offset = 0x%x, size = 0x%x\n",
Elyes Haouas9018dee2022-11-18 15:07:33 +0100783 (uint32_t)start_offset, (uint32_t)size);
Rizwan Qureshiec321092019-09-06 20:28:43 +0530784
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +0530785 return CB_SUCCESS;
Rizwan Qureshiec321092019-09-06 20:28:43 +0530786}
787
Rizwan Qureshiec321092019-09-06 20:28:43 +0530788/*
Sridhar Siricillab9277ba2021-11-27 13:57:40 +0530789 * Compare versions of CSE CBFS sub-component and CSE sub-component partition
790 * In case of CSE component comparison:
Rizwan Qureshiec321092019-09-06 20:28:43 +0530791 * If ver_cmp_status = 0, no update is required
792 * If ver_cmp_status < 0, coreboot downgrades CSE RW region
793 * If ver_cmp_status > 0, coreboot upgrades CSE RW region
794 */
Sridhar Siricillab9277ba2021-11-27 13:57:40 +0530795static int cse_compare_sub_part_version(const struct fw_version *a, const struct fw_version *b)
Sridhar Siricillaf87ff332019-09-12 17:18:20 +0530796{
Furquan Shaikhc45e0be2021-10-06 23:28:03 -0700797 if (a->major != b->major)
798 return a->major - b->major;
799 else if (a->minor != b->minor)
800 return a->minor - b->minor;
801 else if (a->hotfix != b->hotfix)
802 return a->hotfix - b->hotfix;
Rizwan Qureshiec321092019-09-06 20:28:43 +0530803 else
Furquan Shaikhc45e0be2021-10-06 23:28:03 -0700804 return a->build - b->build;
Sridhar Siricilla361e3642020-10-18 20:14:07 +0530805}
806
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +0530807static enum cb_err cse_erase_rw_region(const struct region_device *target_rdev)
Rizwan Qureshiec321092019-09-06 20:28:43 +0530808{
Rizwan Qureshiec321092019-09-06 20:28:43 +0530809 if (rdev_eraseat(target_rdev, 0, region_device_sz(target_rdev)) < 0) {
810 printk(BIOS_ERR, "cse_lite: CSE RW partition could not be erased\n");
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +0530811 return CB_ERR;
Rizwan Qureshiec321092019-09-06 20:28:43 +0530812 }
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +0530813 return CB_SUCCESS;
Rizwan Qureshiec321092019-09-06 20:28:43 +0530814}
815
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +0530816static enum cb_err cse_copy_rw(const struct region_device *target_rdev, const void *buf,
Sridhar Siricilla361e3642020-10-18 20:14:07 +0530817 size_t offset, size_t size)
Rizwan Qureshiec321092019-09-06 20:28:43 +0530818{
819 if (rdev_writeat(target_rdev, buf, offset, size) < 0) {
820 printk(BIOS_ERR, "cse_lite: Failed to update CSE firmware\n");
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +0530821 return CB_ERR;
Rizwan Qureshiec321092019-09-06 20:28:43 +0530822 }
823
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +0530824 return CB_SUCCESS;
Rizwan Qureshiec321092019-09-06 20:28:43 +0530825}
826
Furquan Shaikhc45e0be2021-10-06 23:28:03 -0700827enum cse_update_status {
828 CSE_UPDATE_NOT_REQUIRED,
829 CSE_UPDATE_UPGRADE,
830 CSE_UPDATE_DOWNGRADE,
831 CSE_UPDATE_CORRUPTED,
832 CSE_UPDATE_METADATA_ERROR,
833};
Rizwan Qureshiec321092019-09-06 20:28:43 +0530834
Furquan Shaikhd2da8702021-10-07 00:08:59 -0700835static bool read_ver_field(const char *start, char **curr, size_t size, uint16_t *ver_field)
836{
837 if ((*curr - start) >= size) {
838 printk(BIOS_ERR, "cse_lite: Version string read overflow!\n");
839 return false;
840 }
841
842 *ver_field = skip_atoi(curr);
843 (*curr)++;
844 return true;
845}
Sridhar Siricilla2f6d5552020-04-19 23:39:02 +0530846
Ashish Kumar Mishra2ee71622023-04-25 17:23:21 +0530847static enum cb_err get_cse_ver_from_cbfs(struct fw_version *cbfs_rw_version)
848{
849 char *version_str, *cbfs_ptr;
850 size_t size;
851
852 if (cbfs_rw_version == NULL)
853 return CB_ERR;
854
855 cbfs_ptr = cbfs_map(CONFIG_SOC_INTEL_CSE_RW_VERSION_CBFS_NAME, &size);
856 version_str = cbfs_ptr;
857 if (!version_str) {
858 printk(BIOS_ERR, "cse_lite: Failed to get %s\n",
859 CONFIG_SOC_INTEL_CSE_RW_VERSION_CBFS_NAME);
860 return CB_ERR;
861 }
862
863 if (!read_ver_field(version_str, &cbfs_ptr, size, &cbfs_rw_version->major) ||
864 !read_ver_field(version_str, &cbfs_ptr, size, &cbfs_rw_version->minor) ||
865 !read_ver_field(version_str, &cbfs_ptr, size, &cbfs_rw_version->hotfix) ||
866 !read_ver_field(version_str, &cbfs_ptr, size, &cbfs_rw_version->build)) {
867 cbfs_unmap(version_str);
868 return CB_ERR;
869 }
870
871 cbfs_unmap(version_str);
872 return CB_SUCCESS;
873}
874
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530875static enum cse_update_status cse_check_update_status(struct region_device *target_rdev)
Rizwan Qureshiec321092019-09-06 20:28:43 +0530876{
Furquan Shaikhc45e0be2021-10-06 23:28:03 -0700877 int ret;
Furquan Shaikhd2da8702021-10-07 00:08:59 -0700878 struct fw_version cbfs_rw_version;
Furquan Shaikhc45e0be2021-10-06 23:28:03 -0700879
880 if (!cse_is_rw_bp_sign_valid(target_rdev))
881 return CSE_UPDATE_CORRUPTED;
882
Ashish Kumar Mishra2ee71622023-04-25 17:23:21 +0530883 if (get_cse_ver_from_cbfs(&cbfs_rw_version) == CB_ERR)
Furquan Shaikhd2da8702021-10-07 00:08:59 -0700884 return CSE_UPDATE_METADATA_ERROR;
Furquan Shaikhc45e0be2021-10-06 23:28:03 -0700885
886 printk(BIOS_DEBUG, "cse_lite: CSE CBFS RW version : %d.%d.%d.%d\n",
Furquan Shaikhd2da8702021-10-07 00:08:59 -0700887 cbfs_rw_version.major,
888 cbfs_rw_version.minor,
889 cbfs_rw_version.hotfix,
890 cbfs_rw_version.build);
Furquan Shaikhc45e0be2021-10-06 23:28:03 -0700891
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530892 ret = cse_compare_sub_part_version(&cbfs_rw_version, cse_get_rw_version());
Furquan Shaikhc45e0be2021-10-06 23:28:03 -0700893 if (ret == 0)
894 return CSE_UPDATE_NOT_REQUIRED;
895 else if (ret < 0)
896 return CSE_UPDATE_DOWNGRADE;
897 else
898 return CSE_UPDATE_UPGRADE;
Rizwan Qureshiec321092019-09-06 20:28:43 +0530899}
900
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +0530901static enum cb_err cse_write_rw_region(const struct region_device *target_rdev,
Sridhar Siricilla361e3642020-10-18 20:14:07 +0530902 const void *cse_cbfs_rw, const size_t cse_cbfs_rw_sz)
Rizwan Qureshiec321092019-09-06 20:28:43 +0530903{
Rizwan Qureshiec321092019-09-06 20:28:43 +0530904 /* Points to CSE CBFS RW image after boot partition signature */
905 uint8_t *cse_cbfs_rw_wo_sign = (uint8_t *)cse_cbfs_rw + CSE_RW_SIGN_SIZE;
906
907 /* Size of CSE CBFS RW image without boot partition signature */
Sridhar Siricilla361e3642020-10-18 20:14:07 +0530908 uint32_t cse_cbfs_rw_wo_sign_sz = cse_cbfs_rw_sz - CSE_RW_SIGN_SIZE;
Rizwan Qureshiec321092019-09-06 20:28:43 +0530909
910 /* Update except CSE RW signature */
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +0530911 if (cse_copy_rw(target_rdev, cse_cbfs_rw_wo_sign, CSE_RW_SIGN_SIZE,
912 cse_cbfs_rw_wo_sign_sz) != CB_SUCCESS)
913 return CB_ERR;
Rizwan Qureshiec321092019-09-06 20:28:43 +0530914
915 /* Update CSE RW signature to indicate update is complete */
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +0530916 if (cse_copy_rw(target_rdev, (void *)cse_cbfs_rw, 0, CSE_RW_SIGN_SIZE) != CB_SUCCESS)
917 return CB_ERR;
Rizwan Qureshiec321092019-09-06 20:28:43 +0530918
919 printk(BIOS_INFO, "cse_lite: CSE RW Update Successful\n");
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +0530920 return CB_SUCCESS;
Rizwan Qureshiec321092019-09-06 20:28:43 +0530921}
922
Sridhar Siricilla0aa1ac42022-03-09 20:35:32 +0530923static bool is_cse_fw_update_enabled(void)
924{
925 if (!CONFIG(SOC_INTEL_CSE_RW_UPDATE))
926 return false;
927
928 if (CONFIG(SOC_INTEL_COMMON_BASECODE_DEBUG_FEATURE))
929 return !is_debug_cse_fw_update_disable();
930
931 return true;
932}
933
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530934static enum csme_failure_reason cse_update_rw(const void *cse_cbfs_rw, const size_t cse_blob_sz,
Sridhar Siricilla361e3642020-10-18 20:14:07 +0530935 struct region_device *target_rdev)
936{
Sridhar Siricillaabeb6882020-12-07 15:55:10 +0530937 if (region_device_sz(target_rdev) < cse_blob_sz) {
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +0530938 printk(BIOS_ERR, "RW update does not fit. CSE RW flash region size: %zx,"
939 "Update blob size:%zx\n", region_device_sz(target_rdev), cse_blob_sz);
Sridhar Siricillaabeb6882020-12-07 15:55:10 +0530940 return CSE_LITE_SKU_LAYOUT_MISMATCH_ERROR;
941 }
Sridhar Siricilla361e3642020-10-18 20:14:07 +0530942
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +0530943 if (cse_erase_rw_region(target_rdev) != CB_SUCCESS)
Sridhar Siricilla361e3642020-10-18 20:14:07 +0530944 return CSE_LITE_SKU_FW_UPDATE_ERROR;
945
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +0530946 if (cse_write_rw_region(target_rdev, cse_cbfs_rw, cse_blob_sz) != CB_SUCCESS)
Sridhar Siricilla361e3642020-10-18 20:14:07 +0530947 return CSE_LITE_SKU_FW_UPDATE_ERROR;
948
Tim Wawrzynczake380a432021-06-18 09:54:55 -0600949 return CSE_NO_ERROR;
Sridhar Siricilla361e3642020-10-18 20:14:07 +0530950}
951
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530952static enum cb_err cse_prep_for_rw_update(enum cse_update_status status)
Rizwan Qureshiec321092019-09-06 20:28:43 +0530953{
Krishna Prasad Bhatb58fd2d2023-06-12 15:04:08 +0530954 if (status == CSE_UPDATE_CORRUPTED)
955 elog_add_event(ELOG_TYPE_PSR_DATA_LOST);
Rizwan Qureshiec321092019-09-06 20:28:43 +0530956 /*
957 * To set CSE's operation mode to HMRFPO mode:
958 * 1. Ensure CSE to boot from RO(BP1)
959 * 2. Send HMRFPO_ENABLE command to CSE
960 */
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530961 if (cse_boot_to_ro() != CB_SUCCESS)
Sridhar Siricillaad6d3122023-01-10 14:59:35 +0530962 return CB_ERR;
Rizwan Qureshiec321092019-09-06 20:28:43 +0530963
Furquan Shaikhc45e0be2021-10-06 23:28:03 -0700964 if ((status == CSE_UPDATE_DOWNGRADE) || (status == CSE_UPDATE_CORRUPTED)) {
Anil Kumar7b2edc32023-04-18 11:03:34 -0700965 /* Reset the PSR backup command status in CMOS */
966 if (CONFIG(SOC_INTEL_CSE_LITE_PSR))
967 update_psr_backup_status(PSR_BACKUP_PENDING);
968
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530969 if (cse_data_clear_request() != CB_SUCCESS) {
Furquan Shaikhc45e0be2021-10-06 23:28:03 -0700970 printk(BIOS_ERR, "cse_lite: CSE data clear failed!\n");
Krishna Prasad Bhat6ba83482023-08-03 12:15:32 +0530971 return CB_ERR;
Furquan Shaikhc45e0be2021-10-06 23:28:03 -0700972 }
Sridhar Siricilla2f6d5552020-04-19 23:39:02 +0530973 }
974
Rizwan Qureshiec321092019-09-06 20:28:43 +0530975 return cse_hmrfpo_enable();
976}
977
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530978static enum csme_failure_reason cse_trigger_fw_update(enum cse_update_status status,
979 struct region_device *target_rdev)
Rizwan Qureshiec321092019-09-06 20:28:43 +0530980{
Sridhar Siricilla361e3642020-10-18 20:14:07 +0530981 enum csme_failure_reason rv;
Krishna P Bhat D75a423e2022-04-20 15:50:06 +0530982 void *cse_cbfs_rw = NULL;
Julius Werner18881f992021-04-13 15:28:12 -0700983 size_t size;
Rizwan Qureshiec321092019-09-06 20:28:43 +0530984
Krishna P Bhat D75a423e2022-04-20 15:50:06 +0530985 if (CONFIG(SOC_INTEL_CSE_LITE_COMPRESS_ME_RW)) {
Rizwan Qureshid81d80c2023-09-29 07:31:17 +0530986 cse_cbfs_rw = cbfs_cbmem_alloc(CONFIG_SOC_INTEL_CSE_RW_CBFS_NAME,
987 CBMEM_ID_CSE_UPDATE, &size);
Krishna P Bhat D75a423e2022-04-20 15:50:06 +0530988 } else {
Rizwan Qureshid81d80c2023-09-29 07:31:17 +0530989 cse_cbfs_rw = cbfs_map(CONFIG_SOC_INTEL_CSE_RW_CBFS_NAME, &size);
Krishna P Bhat D75a423e2022-04-20 15:50:06 +0530990 }
Rizwan Qureshid81d80c2023-09-29 07:31:17 +0530991
Sridhar Siricilla361e3642020-10-18 20:14:07 +0530992 if (!cse_cbfs_rw) {
993 printk(BIOS_ERR, "cse_lite: CSE CBFS RW blob could not be mapped\n");
994 return CSE_LITE_SKU_RW_BLOB_NOT_FOUND;
995 }
996
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +0530997 if (cse_prep_for_rw_update(status) != CB_SUCCESS) {
Tim Wawrzynczake380a432021-06-18 09:54:55 -0600998 rv = CSE_COMMUNICATION_ERROR;
Sridhar Siricilla361e3642020-10-18 20:14:07 +0530999 goto error_exit;
1000 }
1001
Jeremy Compostella08b5200d2023-01-19 11:32:25 -07001002 cse_fw_update_misc_oper();
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301003 rv = cse_update_rw(cse_cbfs_rw, size, target_rdev);
Sridhar Siricilla361e3642020-10-18 20:14:07 +05301004
1005error_exit:
Julius Werner18881f992021-04-13 15:28:12 -07001006 cbfs_unmap(cse_cbfs_rw);
Sridhar Siricilla361e3642020-10-18 20:14:07 +05301007 return rv;
Rizwan Qureshiec321092019-09-06 20:28:43 +05301008}
1009
Anil Kumar7b2edc32023-04-18 11:03:34 -07001010static bool is_psr_data_backed_up(void)
1011{
1012 /* Track PSR backup status in CMOS */
1013 return (get_psr_backup_status() == PSR_BACKUP_DONE);
1014}
1015
Anil Kumara2d10bb2023-05-01 11:44:47 -07001016static bool is_psr_supported(void)
1017{
1018 uint32_t feature_status;
1019
1020 /*
1021 * Check if SoC has support for PSR feature typically PSR feature
1022 * is only supported by vpro SKU
1023 *
1024 */
1025 if (cse_get_fw_feature_state(&feature_status) != CB_SUCCESS) {
1026 printk(BIOS_ERR, "cse_get_fw_feature_state command failed !\n");
1027 return false;
1028 }
1029
1030 if (!(feature_status & ME_FW_FEATURE_PSR)) {
1031 printk(BIOS_DEBUG, "PSR is not supported in this SKU !\n");
1032 return false;
1033 }
1034
1035 return true;
1036}
1037
Anil Kumar7b2edc32023-04-18 11:03:34 -07001038/*
1039 * PSR data needs to be backed up prior to downgrade. So switch the CSE boot mode to RW, send
1040 * PSR back-up command to CSE and update the PSR back-up state in CMOS.
1041 */
1042static void backup_psr_data(void)
1043{
1044 printk(BIOS_DEBUG, "cse_lite: Initiate PSR data backup flow\n");
1045 /* Switch CSE to RW to send PSR_HECI_FW_DOWNGRADE_BACKUP command */
Krishna Prasad Bhatb58fd2d2023-06-12 15:04:08 +05301046 if (cse_boot_to_rw() != CB_SUCCESS) {
1047 elog_add_event(ELOG_TYPE_PSR_DATA_LOST);
Anil Kumar7b2edc32023-04-18 11:03:34 -07001048 goto update_and_exit;
Krishna Prasad Bhatb58fd2d2023-06-12 15:04:08 +05301049 }
Anil Kumar7b2edc32023-04-18 11:03:34 -07001050 /*
Anil Kumara2d10bb2023-05-01 11:44:47 -07001051 * The function to check for PSR feature support can only be called after
1052 * switching to RW partition. The command MKHI_FWCAPS_GET_FW_FEATURE_STATE
1053 * that gives feature state is supported by a process that is loaded only
1054 * when CSE boots from RW.
1055 *
1056 */
1057 if (!is_psr_supported())
1058 goto update_and_exit;
1059
1060 /*
Anil Kumar7b2edc32023-04-18 11:03:34 -07001061 * Prerequisites:
1062 * 1) HFSTS1 Current Working State is Normal
1063 * 2) HFSTS1 Current Operation Mode is Normal
1064 */
1065 if (!cse_is_hfs1_cws_normal() || !cse_is_hfs1_com_normal()) {
1066 printk(BIOS_DEBUG, "cse_lite: PSR_HECI_FW_DOWNGRADE_BACKUP command "
1067 "prerequisites not met!\n");
Krishna Prasad Bhatb58fd2d2023-06-12 15:04:08 +05301068 elog_add_event(ELOG_TYPE_PSR_DATA_LOST);
Anil Kumar7b2edc32023-04-18 11:03:34 -07001069 goto update_and_exit;
1070 }
1071
1072 /* Send PSR_HECI_FW_DOWNGRADE_BACKUP command */
1073 struct psr_heci_fw_downgrade_backup_req {
1074 struct psr_heci_header header;
1075 } __packed;
1076
1077 struct psr_heci_fw_downgrade_backup_req req = {
1078 .header.command = PSR_HECI_FW_DOWNGRADE_BACKUP,
1079 };
1080
1081 struct psr_heci_fw_downgrade_backup_res {
1082 struct psr_heci_header header;
1083 uint32_t status;
1084 } __packed;
1085
1086 struct psr_heci_fw_downgrade_backup_res backup_psr_resp;
1087 size_t resp_size = sizeof(backup_psr_resp);
1088
1089 printk(BIOS_DEBUG, "cse_lite: Send PSR_HECI_FW_DOWNGRADE_BACKUP command\n");
1090 if (heci_send_receive(&req, sizeof(req),
Krishna Prasad Bhatb58fd2d2023-06-12 15:04:08 +05301091 &backup_psr_resp, &resp_size, HECI_PSR_ADDR)) {
Anil Kumar7b2edc32023-04-18 11:03:34 -07001092 printk(BIOS_ERR, "cse_lite: could not backup PSR data\n");
Krishna Prasad Bhatb58fd2d2023-06-12 15:04:08 +05301093 elog_add_event_byte(ELOG_TYPE_PSR_DATA_BACKUP, ELOG_PSR_DATA_BACKUP_FAILED);
1094 } else {
1095 if (backup_psr_resp.status != PSR_STATUS_SUCCESS) {
Anil Kumar7b2edc32023-04-18 11:03:34 -07001096 printk(BIOS_ERR, "cse_lite: PSR_HECI_FW_DOWNGRADE_BACKUP command "
1097 "returned %u\n", backup_psr_resp.status);
Krishna Prasad Bhatb58fd2d2023-06-12 15:04:08 +05301098 elog_add_event_byte(ELOG_TYPE_PSR_DATA_BACKUP,
1099 ELOG_PSR_DATA_BACKUP_FAILED);
1100 } else {
1101 elog_add_event_byte(ELOG_TYPE_PSR_DATA_BACKUP,
1102 ELOG_PSR_DATA_BACKUP_SUCCESS);
1103 }
1104 }
Anil Kumar7b2edc32023-04-18 11:03:34 -07001105
1106update_and_exit:
1107 /*
1108 * An attempt to send PSR back-up command has been made. Update this info in CMOS and
1109 * send success once backup_psr_data() has been called. We do not want to put the system
1110 * into recovery for PSR data backup command pre-requisites not being met.
Krishna Prasad Bhatb58fd2d2023-06-12 15:04:08 +05301111 * We cannot do much if CSE fails to backup the PSR data, except create an event log.
Anil Kumar7b2edc32023-04-18 11:03:34 -07001112 */
1113 update_psr_backup_status(PSR_BACKUP_DONE);
1114 return;
1115}
1116
1117static void initiate_psr_data_backup(void)
1118{
1119 if (is_psr_data_backed_up())
1120 return;
1121
1122 backup_psr_data();
1123}
1124
Anil Kumare46af3f2023-10-03 21:31:53 -07001125/*
1126 * Check if a CSE Firmware update is required
1127 * returns true if an update is required, false otherwise
1128 */
1129bool is_cse_fw_update_required(void)
1130{
1131 struct fw_version cbfs_rw_version;
1132
1133 if (!is_cse_fw_update_enabled())
1134 return false;
1135
1136 /*
1137 * First, check if cse_bp_info_rsp global structure is populated.
1138 * If not, it implies that cse_fill_bp_info() function is not called.
1139 */
1140 if (!is_cse_bp_info_valid(&cse_bp_info_rsp))
1141 return false;
1142
1143 if (get_cse_ver_from_cbfs(&cbfs_rw_version) == CB_ERR)
1144 return false;
1145
1146 return !!cse_compare_sub_part_version(&cbfs_rw_version, cse_get_rw_version());
1147}
1148
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301149static uint8_t cse_fw_update(void)
Rizwan Qureshiec321092019-09-06 20:28:43 +05301150{
1151 struct region_device target_rdev;
Furquan Shaikhc45e0be2021-10-06 23:28:03 -07001152 enum cse_update_status status;
Rizwan Qureshiec321092019-09-06 20:28:43 +05301153
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301154 if (cse_get_target_rdev(&target_rdev) != CB_SUCCESS) {
Rizwan Qureshiec321092019-09-06 20:28:43 +05301155 printk(BIOS_ERR, "cse_lite: Failed to get CSE RW Partition\n");
1156 return CSE_LITE_SKU_RW_ACCESS_ERROR;
1157 }
1158
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301159 status = cse_check_update_status(&target_rdev);
Furquan Shaikhc45e0be2021-10-06 23:28:03 -07001160 if (status == CSE_UPDATE_NOT_REQUIRED)
1161 return CSE_NO_ERROR;
1162 if (status == CSE_UPDATE_METADATA_ERROR)
1163 return CSE_LITE_SKU_RW_METADATA_NOT_FOUND;
Anil Kumar7b2edc32023-04-18 11:03:34 -07001164 if (CONFIG(SOC_INTEL_CSE_LITE_PSR) && status == CSE_UPDATE_DOWNGRADE)
1165 initiate_psr_data_backup();
Rizwan Qureshiec321092019-09-06 20:28:43 +05301166
Furquan Shaikhc45e0be2021-10-06 23:28:03 -07001167 printk(BIOS_DEBUG, "cse_lite: CSE RW update is initiated\n");
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301168 return cse_trigger_fw_update(status, &target_rdev);
Sridhar Siricillaf87ff332019-09-12 17:18:20 +05301169}
1170
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301171static const char *cse_sub_part_str(enum bpdt_entry_type type)
1172{
1173 switch (type) {
1174 case IOM_FW:
1175 return "IOM";
1176 case NPHY_FW:
1177 return "NPHY";
1178 default:
1179 return "Unknown";
1180 }
1181}
1182
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301183static enum cb_err cse_locate_area_as_rdev_rw(size_t bp, struct region_device *cse_rdev)
Sridhar Siricilla52479c72022-03-30 09:25:49 +05301184{
1185 struct region_device cse_region_rdev;
1186 uint32_t size;
1187 uint32_t start_offset;
1188 uint32_t end_offset;
1189
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +05301190 if (cse_get_rw_rdev(&cse_region_rdev) != CB_SUCCESS)
1191 return CB_ERR;
Sridhar Siricilla52479c72022-03-30 09:25:49 +05301192
1193 if (!strcmp(cse_regions[bp], "RO"))
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301194 cse_get_bp_entry_range(RO, &start_offset, &end_offset);
Sridhar Siricilla52479c72022-03-30 09:25:49 +05301195 else
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301196 cse_get_bp_entry_range(RW, &start_offset, &end_offset);
Sridhar Siricilla52479c72022-03-30 09:25:49 +05301197
1198 size = end_offset + 1 - start_offset;
1199
1200 if (rdev_chain(cse_rdev, &cse_region_rdev, start_offset, size))
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +05301201 return CB_ERR;
Sridhar Siricilla52479c72022-03-30 09:25:49 +05301202
1203 printk(BIOS_DEBUG, "cse_lite: CSE %s partition: offset = 0x%x, size = 0x%x\n",
1204 cse_regions[bp], start_offset, size);
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +05301205 return CB_SUCCESS;
Sridhar Siricilla52479c72022-03-30 09:25:49 +05301206}
1207
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301208static enum cb_err cse_sub_part_get_target_rdev(struct region_device *target_rdev, size_t bp,
1209 enum bpdt_entry_type type)
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301210{
1211 struct bpdt_header bpdt_hdr;
1212 struct region_device cse_rdev;
1213 struct bpdt_entry bpdt_entries[MAX_SUBPARTS];
1214 uint8_t i;
1215
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301216 if (cse_locate_area_as_rdev_rw(bp, &cse_rdev) != CB_SUCCESS) {
Sridhar Siricilla52479c72022-03-30 09:25:49 +05301217 printk(BIOS_ERR, "cse_lite: Failed to locate %s in the CSE Region\n",
1218 cse_regions[bp]);
Sridhar Siricillaad6d3122023-01-10 14:59:35 +05301219 return CB_ERR;
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301220 }
1221
1222 if ((rdev_readat(&cse_rdev, &bpdt_hdr, 0, BPDT_HEADER_SZ)) != BPDT_HEADER_SZ) {
1223 printk(BIOS_ERR, "cse_lite: Failed to read BPDT header from CSE region\n");
Sridhar Siricillaad6d3122023-01-10 14:59:35 +05301224 return CB_ERR;
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301225 }
1226
1227 if ((rdev_readat(&cse_rdev, bpdt_entries, BPDT_HEADER_SZ,
1228 (bpdt_hdr.descriptor_count * BPDT_ENTRY_SZ))) !=
1229 (bpdt_hdr.descriptor_count * BPDT_ENTRY_SZ)) {
1230 printk(BIOS_ERR, "cse_lite: Failed to read BPDT entries from CSE region\n");
Sridhar Siricillaad6d3122023-01-10 14:59:35 +05301231 return CB_ERR;
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301232 }
1233
1234 /* walk through BPDT entries to identify sub-partition's payload offset and size */
1235 for (i = 0; i < bpdt_hdr.descriptor_count; i++) {
1236 if (bpdt_entries[i].type == type) {
1237 printk(BIOS_INFO, "cse_lite: Sub-partition %s- offset = 0x%x,"
1238 "size = 0x%x\n", cse_sub_part_str(type), bpdt_entries[i].offset,
1239 bpdt_entries[i].size);
1240
1241 if (rdev_chain(target_rdev, &cse_rdev, bpdt_entries[i].offset,
1242 bpdt_entries[i].size))
Sridhar Siricillaad6d3122023-01-10 14:59:35 +05301243 return CB_ERR;
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301244 else
Sridhar Siricillaad6d3122023-01-10 14:59:35 +05301245 return CB_SUCCESS;
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301246 }
1247 }
1248
1249 printk(BIOS_ERR, "cse_lite: Sub-partition %s is not found\n", cse_sub_part_str(type));
Sridhar Siricillaad6d3122023-01-10 14:59:35 +05301250 return CB_ERR;
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301251}
1252
Sridhar Siricillaad6d3122023-01-10 14:59:35 +05301253static enum cb_err cse_get_sub_part_fw_version(enum bpdt_entry_type type,
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301254 const struct region_device *rdev,
1255 struct fw_version *fw_ver)
1256{
1257 struct subpart_entry subpart_entry;
1258 struct subpart_entry_manifest_header man_hdr;
1259
1260 if ((rdev_readat(rdev, &subpart_entry, SUBPART_HEADER_SZ, SUBPART_ENTRY_SZ))
1261 != SUBPART_ENTRY_SZ) {
1262 printk(BIOS_ERR, "cse_lite: Failed to read %s sub partition entry\n",
1263 cse_sub_part_str(type));
Sridhar Siricillaad6d3122023-01-10 14:59:35 +05301264 return CB_ERR;
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301265 }
1266
1267 if ((rdev_readat(rdev, &man_hdr, subpart_entry.offset_bytes, SUBPART_MANIFEST_HDR_SZ))
1268 != SUBPART_MANIFEST_HDR_SZ) {
1269 printk(BIOS_ERR, "cse_lite: Failed to read %s Sub part entry #0 manifest\n",
1270 cse_sub_part_str(type));
Sridhar Siricillaad6d3122023-01-10 14:59:35 +05301271 return CB_ERR;
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301272 }
1273
1274 fw_ver->major = man_hdr.binary_version.major;
1275 fw_ver->minor = man_hdr.binary_version.minor;
1276 fw_ver->hotfix = man_hdr.binary_version.hotfix;
1277 fw_ver->build = man_hdr.binary_version.build;
1278
Sridhar Siricillaad6d3122023-01-10 14:59:35 +05301279 return CB_SUCCESS;
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301280}
1281
1282static void cse_sub_part_get_source_fw_version(void *subpart_cbfs_rw, struct fw_version *fw_ver)
1283{
1284 uint8_t *ptr = (uint8_t *)subpart_cbfs_rw;
1285 struct subpart_entry *subpart_entry;
1286 struct subpart_entry_manifest_header *man_hdr;
1287
Elyes Haouas9018dee2022-11-18 15:07:33 +01001288 subpart_entry = (struct subpart_entry *)(ptr + SUBPART_HEADER_SZ);
1289 man_hdr = (struct subpart_entry_manifest_header *)(ptr + subpart_entry->offset_bytes);
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301290
1291 fw_ver->major = man_hdr->binary_version.major;
1292 fw_ver->minor = man_hdr->binary_version.minor;
1293 fw_ver->hotfix = man_hdr->binary_version.hotfix;
1294 fw_ver->build = man_hdr->binary_version.build;
1295}
1296
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301297static enum cb_err cse_prep_for_component_update(void)
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301298{
1299 /*
1300 * To set CSE's operation mode to HMRFPO mode:
1301 * 1. Ensure CSE to boot from RO(BP1)
1302 * 2. Send HMRFPO_ENABLE command to CSE
1303 */
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301304 if (cse_boot_to_ro() != CB_SUCCESS)
Sridhar Siricillaad6d3122023-01-10 14:59:35 +05301305 return CB_ERR;
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301306
1307 return cse_hmrfpo_enable();
1308}
1309
Sridhar Siricilla0ae7a8b2023-01-10 17:12:01 +05301310static enum csme_failure_reason cse_sub_part_trigger_update(enum bpdt_entry_type type,
1311 uint8_t bp, const void *subpart_cbfs_rw, const size_t blob_sz,
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301312 struct region_device *target_rdev)
1313{
1314 if (region_device_sz(target_rdev) < blob_sz) {
1315 printk(BIOS_ERR, "cse_lite: %s Target sub-partition size: %zx, "
1316 "smaller than blob size:%zx, abort update\n",
1317 cse_sub_part_str(type), region_device_sz(target_rdev), blob_sz);
1318 return CSE_LITE_SKU_SUB_PART_LAYOUT_MISMATCH_ERROR;
1319 }
1320
1321 /* Erase CSE Lite sub-partition */
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +05301322 if (cse_erase_rw_region(target_rdev) != CB_SUCCESS)
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301323 return CSE_LITE_SKU_SUB_PART_UPDATE_FAIL;
1324
1325 /* Update CSE Lite sub-partition */
Sridhar Siricilla2e6c5592023-01-10 16:16:57 +05301326 if (cse_copy_rw(target_rdev, (void *)subpart_cbfs_rw, 0, blob_sz) != CB_SUCCESS)
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301327 return CSE_LITE_SKU_SUB_PART_UPDATE_FAIL;
1328
1329 printk(BIOS_INFO, "cse_lite: CSE %s %s Update successful\n", GET_BP_STR(bp),
1330 cse_sub_part_str(type));
1331
1332 return CSE_LITE_SKU_PART_UPDATE_SUCCESS;
1333}
1334
Sridhar Siricilla0ae7a8b2023-01-10 17:12:01 +05301335static enum csme_failure_reason handle_cse_sub_part_fw_update_rv(enum csme_failure_reason rv)
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301336{
1337 switch (rv) {
1338 case CSE_LITE_SKU_PART_UPDATE_SUCCESS:
1339 case CSE_LITE_SKU_SUB_PART_UPDATE_NOT_REQ:
1340 return rv;
1341 default:
1342 cse_trigger_vboot_recovery(rv);
1343 }
1344 /* Control never reaches here */
1345 return rv;
1346}
1347
1348static enum csme_failure_reason cse_sub_part_fw_component_update(enum bpdt_entry_type type,
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301349 const char *name)
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301350{
1351 struct region_device target_rdev;
1352 struct fw_version target_fw_ver, source_fw_ver;
1353 enum csme_failure_reason rv;
1354 size_t size;
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301355
1356 void *subpart_cbfs_rw = cbfs_map(name, &size);
1357 if (!subpart_cbfs_rw) {
1358 printk(BIOS_ERR, "cse_lite: Not able to map %s CBFS file\n",
1359 cse_sub_part_str(type));
1360 return CSE_LITE_SKU_SUB_PART_BLOB_ACCESS_ERR;
1361 }
1362
1363 cse_sub_part_get_source_fw_version(subpart_cbfs_rw, &source_fw_ver);
1364 printk(BIOS_INFO, "cse_lite: CBFS %s FW Version: %x.%x.%x.%x\n", cse_sub_part_str(type),
1365 source_fw_ver.major, source_fw_ver.minor, source_fw_ver.hotfix,
1366 source_fw_ver.build);
1367
1368 /* Trigger sub-partition update in CSE RO and CSE RW */
1369 for (size_t bp = 0; bp < ARRAY_SIZE(cse_regions); bp++) {
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301370 if (cse_sub_part_get_target_rdev(&target_rdev, bp, type) != CB_SUCCESS) {
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301371 rv = CSE_LITE_SKU_SUB_PART_ACCESS_ERR;
1372 goto error_exit;
1373 }
1374
Sridhar Siricillaad6d3122023-01-10 14:59:35 +05301375 if (cse_get_sub_part_fw_version(type, &target_rdev, &target_fw_ver) != CB_SUCCESS) {
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301376 rv = CSE_LITE_SKU_SUB_PART_ACCESS_ERR;
1377 goto error_exit;
1378 }
1379
1380 printk(BIOS_INFO, "cse_lite: %s %s FW Version: %x.%x.%x.%x\n", cse_regions[bp],
1381 cse_sub_part_str(type), target_fw_ver.major,
1382 target_fw_ver.minor, target_fw_ver.hotfix, target_fw_ver.build);
1383
1384 if (!cse_compare_sub_part_version(&target_fw_ver, &source_fw_ver)) {
1385 printk(BIOS_INFO, "cse_lite: %s %s update is not required\n",
1386 cse_regions[bp], cse_sub_part_str(type));
1387 rv = CSE_LITE_SKU_SUB_PART_UPDATE_NOT_REQ;
1388 continue;
1389 }
1390
1391 printk(BIOS_INFO, "CSE %s %s Update initiated\n", GET_BP_STR(bp),
1392 cse_sub_part_str(type));
1393
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301394 if (cse_prep_for_component_update() != CB_SUCCESS) {
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301395 rv = CSE_LITE_SKU_SUB_PART_ACCESS_ERR;
1396 goto error_exit;
1397 }
1398
1399 rv = cse_sub_part_trigger_update(type, bp, subpart_cbfs_rw,
1400 size, &target_rdev);
1401
1402 if (rv != CSE_LITE_SKU_PART_UPDATE_SUCCESS)
1403 goto error_exit;
1404 }
1405error_exit:
1406 cbfs_unmap(subpart_cbfs_rw);
1407 return rv;
1408}
1409
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301410static enum csme_failure_reason cse_sub_part_fw_update(void)
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301411{
1412 if (skip_cse_sub_part_update()) {
1413 printk(BIOS_INFO, "CSE Sub-partition update not required\n");
1414 return CSE_LITE_SKU_SUB_PART_UPDATE_NOT_REQ;
1415 }
1416
Sridhar Siricilla0ae7a8b2023-01-10 17:12:01 +05301417 enum csme_failure_reason rv;
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301418 rv = cse_sub_part_fw_component_update(IOM_FW, CONFIG_SOC_INTEL_CSE_IOM_CBFS_NAME);
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301419
1420 handle_cse_sub_part_fw_update_rv(rv);
1421
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301422 rv = cse_sub_part_fw_component_update(NPHY_FW, CONFIG_SOC_INTEL_CSE_NPHY_CBFS_NAME);
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301423
1424 return handle_cse_sub_part_fw_update_rv(rv);
1425}
1426
Subrata Banik5ff01182023-04-20 11:08:17 +05301427static void do_cse_fw_sync(void)
Sridhar Siricillaf87ff332019-09-12 17:18:20 +05301428{
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301429 /*
1430 * If system is in recovery mode, skip CSE Lite update if CSE sub-partition update
1431 * is not enabled and continue to update CSE sub-partitions.
1432 */
1433 if (vboot_recovery_mode_enabled() && !CONFIG(SOC_INTEL_CSE_SUB_PART_UPDATE)) {
Sridhar Siricilla9f71b172020-06-01 14:50:52 +05301434 printk(BIOS_DEBUG, "cse_lite: Skip switching to RW in the recovery path\n");
Sridhar Siricillaf87ff332019-09-12 17:18:20 +05301435 return;
1436 }
1437
Sridhar Siricilla99dbca32020-05-12 21:05:04 +05301438 /* If CSE SKU type is not Lite, skip enabling CSE Lite SKU */
1439 if (!cse_is_hfs3_fw_sku_lite()) {
Sridhar Siricilla9f71b172020-06-01 14:50:52 +05301440 printk(BIOS_ERR, "cse_lite: Not a CSE Lite SKU\n");
Sridhar Siricillaf87ff332019-09-12 17:18:20 +05301441 return;
1442 }
1443
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301444 if (cse_get_bp_info() != CB_SUCCESS) {
Sridhar Siricilla9f71b172020-06-01 14:50:52 +05301445 printk(BIOS_ERR, "cse_lite: Failed to get CSE boot partition info\n");
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301446
1447 /* If system is in recovery mode, don't trigger recovery again */
1448 if (!vboot_recovery_mode_enabled()) {
1449 cse_trigger_vboot_recovery(CSE_COMMUNICATION_ERROR);
1450 } else {
1451 printk(BIOS_ERR, "cse_lite: System is already in Recovery Mode, "
1452 "so no action\n");
1453 return;
1454 }
1455 }
1456
Krishna P Bhat D64ec6a72023-09-21 22:19:47 +05301457 /* Store the CSE RW Firmware Version into CBMEM */
1458 if (CONFIG(SOC_INTEL_STORE_CSE_FW_VERSION))
1459 cse_store_rw_fw_version();
1460
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301461 /*
1462 * If system is in recovery mode, CSE Lite update has to be skipped but CSE
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301463 * sub-partitions like NPHY and IOM have to be updated. If CSE sub-partition update
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301464 * fails during recovery, just continue to boot.
1465 */
1466 if (CONFIG(SOC_INTEL_CSE_SUB_PART_UPDATE) && vboot_recovery_mode_enabled()) {
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301467 if (cse_sub_part_fw_update() == CSE_LITE_SKU_PART_UPDATE_SUCCESS) {
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301468 cse_board_reset();
1469 do_global_reset();
1470 die("ERROR: GLOBAL RESET Failed to reset the system\n");
1471 }
1472
1473 return;
Sridhar Siricillaf87ff332019-09-12 17:18:20 +05301474 }
1475
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301476 if (cse_fix_data_failure_err() != CB_SUCCESS)
Tim Wawrzynczak09635f42021-06-18 10:08:47 -06001477 cse_trigger_vboot_recovery(CSE_LITE_SKU_DATA_WIPE_ERROR);
Sridhar Siricilla2f6d5552020-04-19 23:39:02 +05301478
Sridhar Siricilla361e3642020-10-18 20:14:07 +05301479 /*
Dinesh Gehlota9232d82023-06-10 11:53:47 +00001480 * CSE firmware update is skipped if SOC_INTEL_CSE_RW_UPDATE is not defined and
Sridhar Siricilla0aa1ac42022-03-09 20:35:32 +05301481 * runtime debug control flag is not enabled. The driver triggers recovery if CSE CBFS
1482 * RW metadata or CSE CBFS RW blob is not available.
Sridhar Siricilla361e3642020-10-18 20:14:07 +05301483 */
Sridhar Siricilla0aa1ac42022-03-09 20:35:32 +05301484 if (is_cse_fw_update_enabled()) {
Sridhar Siricilla4c2890d2020-12-09 00:28:30 +05301485 uint8_t rv;
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301486 rv = cse_fw_update();
Sridhar Siricilla4c2890d2020-12-09 00:28:30 +05301487 if (rv)
Tim Wawrzynczak09635f42021-06-18 10:08:47 -06001488 cse_trigger_vboot_recovery(rv);
Sridhar Siricilla4c2890d2020-12-09 00:28:30 +05301489 }
Sridhar Siricillaf87ff332019-09-12 17:18:20 +05301490
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301491 if (CONFIG(SOC_INTEL_CSE_SUB_PART_UPDATE))
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301492 cse_sub_part_fw_update();
Krishna Prasad Bhat333edcc2021-11-26 06:52:27 +05301493
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301494 if (!cse_is_rw_bp_status_valid())
Tim Wawrzynczakf2801f42021-06-22 11:25:14 -06001495 cse_trigger_vboot_recovery(CSE_LITE_SKU_RW_JUMP_ERROR);
Sridahr Siricilla54b03562021-06-18 10:59:30 +05301496
Krishna Prasad Bhatc3c71c372023-08-07 21:48:23 +05301497 if (cse_boot_to_rw() != CB_SUCCESS) {
Sridhar Siricilla9f71b172020-06-01 14:50:52 +05301498 printk(BIOS_ERR, "cse_lite: Failed to switch to RW\n");
Tim Wawrzynczak09635f42021-06-18 10:08:47 -06001499 cse_trigger_vboot_recovery(CSE_LITE_SKU_RW_SWITCH_ERROR);
Sridhar Siricillaf87ff332019-09-12 17:18:20 +05301500 }
Sridhar Siricillaf87ff332019-09-12 17:18:20 +05301501}
Krishna P Bhat De3178a12022-04-21 16:40:06 +05301502
Subrata Banik5ff01182023-04-20 11:08:17 +05301503void cse_fw_sync(void)
1504{
1505 timestamp_add_now(TS_CSE_FW_SYNC_START);
1506 do_cse_fw_sync();
1507 timestamp_add_now(TS_CSE_FW_SYNC_END);
1508}
1509
Subrata Banik7f66adb2023-04-14 00:35:38 +05301510static enum cb_err send_get_fpt_partition_info_cmd(enum fpt_partition_id id,
1511 struct fw_version_resp *resp)
1512{
1513 enum cse_tx_rx_status ret;
1514 struct fw_version_msg {
1515 struct mkhi_hdr hdr;
1516 enum fpt_partition_id partition_id;
1517 } __packed msg = {
1518 .hdr = {
1519 .group_id = MKHI_GROUP_ID_GEN,
1520 .command = GEN_GET_IMAGE_FW_VERSION,
1521 },
1522 .partition_id = id,
1523 };
1524
1525 /*
1526 * Prerequisites:
1527 * 1) HFSTS1 CWS is Normal
1528 * 2) HFSTS1 COM is Normal
1529 * 3) Only sent after DID (accomplished by compiling this into ramstage)
1530 */
1531
1532 if (cse_is_hfs1_com_soft_temp_disable() || !cse_is_hfs1_cws_normal() ||
1533 !cse_is_hfs1_com_normal()) {
1534 printk(BIOS_ERR,
1535 "HECI: Prerequisites not met for Get Image Firmware Version command\n");
1536 return CB_ERR;
1537 }
1538
1539 size_t resp_size = sizeof(struct fw_version_resp);
1540 ret = heci_send_receive(&msg, sizeof(msg), resp, &resp_size, HECI_MKHI_ADDR);
1541
1542 if (ret || resp->hdr.result) {
1543 printk(BIOS_ERR, "CSE: Failed to get partition information for %d: 0x%x\n",
1544 id, resp->hdr.result);
1545 return CB_ERR;
1546 }
1547
1548 return CB_SUCCESS;
1549}
1550
Subrata Banik044fc9f2023-04-14 02:34:37 +05301551static enum cb_err cse_get_fpt_partition_info(enum fpt_partition_id id,
1552 struct fw_version_resp *resp)
Subrata Banik7f66adb2023-04-14 00:35:38 +05301553{
1554 if (vboot_recovery_mode_enabled()) {
1555 printk(BIOS_WARNING,
1556 "CSE: Skip sending Get Image Info command during recovery mode!\n");
1557 return CB_ERR;
1558 }
1559
1560 if (id == FPT_PARTITION_NAME_ISHC && !CONFIG(DRIVERS_INTEL_ISH)) {
1561 printk(BIOS_WARNING, "CSE: Info request denied, no ISH partition\n");
1562 return CB_ERR;
1563 }
1564
1565 return send_get_fpt_partition_info_cmd(id, resp);
1566}
1567
Dinesh Gehlota9232d82023-06-10 11:53:47 +00001568static bool is_ish_version_valid(struct cse_fw_ish_version_info *version)
1569{
1570 const struct fw_version invalid_fw = {0, 0, 0, 0};
1571 if (!memcmp(&version->cur_ish_fw_version, &invalid_fw, sizeof(struct fw_version)))
1572 return false;
1573 return true;
1574}
1575
Subrata Banikb1b7c532023-04-14 01:36:13 +05301576/*
1577 * Helper function to read ISH version from CSE FPT using HECI command.
1578 *
1579 * The HECI command only be executed after memory has been initialized.
1580 * This is because the command relies on resources that are not available
1581 * until DRAM initialization command has been sent.
1582 */
1583static void store_ish_version(void)
1584{
1585 if (!ENV_RAMSTAGE)
1586 return;
1587
1588 if (vboot_recovery_mode_enabled())
1589 return;
1590
Dinesh Gehlota9232d82023-06-10 11:53:47 +00001591 struct cse_specific_info *cse_info_in_cbmem = cbmem_find(CBMEM_ID_CSE_INFO);
1592 if (cse_info_in_cbmem == NULL)
Subrata Banikb1b7c532023-04-14 01:36:13 +05301593 return;
1594
Dinesh Gehlota9232d82023-06-10 11:53:47 +00001595 struct cse_specific_info cse_info_in_cmos;
1596 cmos_read_fw_partition_info(&cse_info_in_cmos);
Subrata Banik88512b02023-08-17 15:44:52 +00001597
Dinesh Gehlota9232d82023-06-10 11:53:47 +00001598 struct cse_fw_partition_info *cbmem_version = &(cse_info_in_cbmem->cse_fwp_version);
1599 struct cse_fw_partition_info *cmos_version = &(cse_info_in_cmos.cse_fwp_version);
Subrata Banikb1b7c532023-04-14 01:36:13 +05301600
Dinesh Gehlota9232d82023-06-10 11:53:47 +00001601 /* Get current cse firmware state */
1602 enum cse_fw_state fw_state = get_cse_state(
1603 &(cbmem_version->cur_cse_fw_version),
1604 &(cmos_version->ish_partition_info.prev_cse_fw_version),
1605 &(cbmem_version->ish_partition_info.prev_cse_fw_version));
Subrata Banikb1b7c532023-04-14 01:36:13 +05301606
Dinesh Gehlota9232d82023-06-10 11:53:47 +00001607 if (fw_state == CSE_FW_WARM_BOOT) {
1608 return;
1609 } else {
1610 if (fw_state == CSE_FW_COLD_BOOT &&
1611 is_ish_version_valid(&(cmos_version->ish_partition_info))) {
1612 /* CMOS data is persistent across cold boots */
1613 memcpy(&(cse_info_in_cbmem->cse_fwp_version.ish_partition_info),
1614 &(cse_info_in_cmos.cse_fwp_version.ish_partition_info),
1615 sizeof(struct cse_fw_ish_version_info));
1616 store_cse_info_crc(cse_info_in_cbmem);
1617 } else {
1618 /*
1619 * Current running CSE version is different than previous stored CSE version
1620 * which could be due to CSE update or rollback, hence, need to send ISHC
1621 * partition info cmd to know the currently running ISH version.
1622 */
1623 struct fw_version_resp resp;
1624 if (cse_get_fpt_partition_info(FPT_PARTITION_NAME_ISHC,
1625 &resp) == CB_SUCCESS) {
1626 /* Update stored CSE version with current cse version */
1627 memcpy(&(cbmem_version->ish_partition_info.prev_cse_fw_version),
1628 &(cbmem_version->cur_cse_fw_version), sizeof(struct fw_version));
Subrata Banik88512b02023-08-17 15:44:52 +00001629
Dinesh Gehlota9232d82023-06-10 11:53:47 +00001630 /* Retrieve and update current ish version */
1631 memcpy(&(cbmem_version->ish_partition_info.cur_ish_fw_version),
1632 &(resp.manifest_data.version), sizeof(struct fw_version));
1633
1634 /* Update the CRC */
1635 store_cse_info_crc(cse_info_in_cbmem);
1636
1637 /* Update CMOS with current CSE FPT versions.*/
1638 cmos_write_fw_partition_info(cse_info_in_cbmem);
1639 }
Subrata Banikb1b7c532023-04-14 01:36:13 +05301640 }
1641 }
1642}
1643
Subrata Banikfc313d62023-04-14 01:31:29 +05301644static void ramstage_cse_misc_ops(void *unused)
Krishna P Bhat De3178a12022-04-21 16:40:06 +05301645{
Subrata Banikdb7b35a2023-04-19 20:48:01 +05301646 if (acpi_get_sleep_type() == ACPI_S3)
1647 return;
Krishna P Bhat De3178a12022-04-21 16:40:06 +05301648
Subrata Banik5ff01182023-04-20 11:08:17 +05301649 if (CONFIG(SOC_INTEL_CSE_LITE_SYNC_IN_RAMSTAGE))
Krishna P Bhat De3178a12022-04-21 16:40:06 +05301650 cse_fw_sync();
Subrata Banikfc313d62023-04-14 01:31:29 +05301651
1652 /*
Subrata Banik3c06f1e2023-06-13 02:12:30 +05301653 * Store the ISH RW Firmware Version into CBMEM if ISH partition
Subrata Banikfc313d62023-04-14 01:31:29 +05301654 * is available
1655 */
Subrata Banikf27a41f2023-06-13 10:32:09 +05301656 if (soc_is_ish_partition_enabled())
Subrata Banikb1b7c532023-04-14 01:36:13 +05301657 store_ish_version();
Krishna P Bhat De3178a12022-04-21 16:40:06 +05301658}
1659
Subrata Banikfc313d62023-04-14 01:31:29 +05301660BOOT_STATE_INIT_ENTRY(BS_PRE_DEVICE, BS_ON_EXIT, ramstage_cse_misc_ops, NULL);