blob: 9144eaa8ac0902dc95d2132752f195d7bcfc8331 [file] [log] [blame]
Patrick Georgiac959032020-05-05 22:49:26 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -08002
Kyösti Mälkki13f66502019-03-03 08:01:05 +02003#include <device/mmio.h>
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -08004#include <cbmem.h>
5#include <commonlib/helpers.h>
6#include <console/console.h>
Subrata Banik73b67dc2018-01-23 16:31:03 +05307#include <fsp/api.h>
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -08008#include <fsp/util.h>
Jacob Garber5cf9ccc2019-08-08 13:35:31 -06009#include <stdint.h>
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -080010#include <string.h>
11
12#define HOB_HEADER_LEN 8
13
Lee Leahyac3b0a62016-07-27 07:40:25 -070014/* GUIDs in little-endian, so they can be used with memcmp() */
Lee Leahy52d0c682016-08-01 15:47:42 -070015const uint8_t fsp_bootloader_tolum_guid[16] = {
16 0x56, 0x4f, 0xff, 0x73, 0x8e, 0xaa, 0x51, 0x44,
17 0xb3, 0x16, 0x36, 0x35, 0x36, 0x67, 0xad, 0x44,
18};
19
Lee Leahyac3b0a62016-07-27 07:40:25 -070020const uint8_t fsp_reserved_memory_guid[16] = {
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -080021 0x59, 0x97, 0xa7, 0x69, 0x73, 0x13, 0x67, 0x43,
22 0xa6, 0xc4, 0xc7, 0xf5, 0x9e, 0xfd, 0x98, 0x6e,
23};
24
Anil Kumar0dd03682021-11-24 14:31:04 -080025const uint8_t fsp_nv_storage_guid_2[16] = {
26 0x8f, 0x78, 0x66, 0x48, 0xa8, 0x6b, 0xd8, 0x47,
27 0x83, 0x6, 0xac, 0xf7, 0x7f, 0x55, 0x10, 0x46
28};
29
Lee Leahyac3b0a62016-07-27 07:40:25 -070030const uint8_t fsp_nv_storage_guid[16] = {
Ravi Sarawadi98e0ee62016-08-17 23:39:37 -070031 0x02, 0xcf, 0x1a, 0x72, 0x77, 0x4d, 0x2a, 0x4c,
32 0xb3, 0xdc, 0x27, 0x0b, 0x7b, 0xa9, 0xe4, 0xb0
33};
34
Subrata Banik73b67dc2018-01-23 16:31:03 +053035static const uint8_t uuid_fv_info[16] = {
36 0x2e, 0x72, 0x8e, 0x79, 0xb2, 0x15, 0x13, 0x4e,
37 0x8a, 0xe9, 0x6b, 0xa3, 0x0f, 0xf7, 0xf1, 0x67
38};
39
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -080040/*
41 * Utilities for walking HOBs
42 */
43
Lee Leahyac3b0a62016-07-27 07:40:25 -070044bool fsp_guid_compare(const uint8_t guid1[16], const uint8_t guid2[16])
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -080045{
Lee Leahyac3b0a62016-07-27 07:40:25 -070046 return !memcmp(guid1, guid2, 16);
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -080047}
48
Lee Leahyac3b0a62016-07-27 07:40:25 -070049const struct hob_header *fsp_next_hob(const struct hob_header *parent)
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -080050{
51 union {
52 const struct hob_header *hob;
53 uintptr_t addr;
54 } hob_walker;
55
56 hob_walker.hob = parent;
57 hob_walker.addr += parent->length;
58 return hob_walker.hob;
59}
60
61static const void *hob_header_to_struct(const struct hob_header *hob)
62{
63 union {
64 const struct hob_header *hob_hdr;
65 const void *hob_descr;
66 uintptr_t addr;
67 } hob_walker;
68
69 hob_walker.hob_hdr = hob;
70 hob_walker.addr += HOB_HEADER_LEN;
71 return hob_walker.hob_descr;
72}
73
74static const void *hob_header_to_extension_hob(const struct hob_header *hob)
75{
76 union {
77 const struct hob_header *hob_hdr;
78 const void *hob_descr;
79 uintptr_t addr;
80 } hob_walker;
81
82 hob_walker.hob_hdr = hob;
Lee Leahyac3b0a62016-07-27 07:40:25 -070083 hob_walker.addr += HOB_HEADER_LEN + 16; /* header and 16-byte GUID */
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -080084 return hob_walker.hob_descr;
85}
86
Lee Leahyac3b0a62016-07-27 07:40:25 -070087const
88struct hob_resource *fsp_hob_header_to_resource(const struct hob_header *hob)
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -080089{
90 return hob_header_to_struct(hob);
91}
92
93/*
94 * Utilities for locating and identifying HOBs
95 */
96
Arthur Heymans75c20152019-05-25 10:37:26 +020097static void *fsp_hob_list_ptr;
Lee Leahyac3b0a62016-07-27 07:40:25 -070098
99static void save_hob_list(int is_recovery)
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800100{
Aaron Durbina3a06ae2016-07-16 17:29:47 -0500101 uint32_t *cbmem_loc;
Subrata Banik097bd952017-07-24 19:09:31 +0530102 const void *hob_list;
Aaron Durbina3a06ae2016-07-16 17:29:47 -0500103 cbmem_loc = cbmem_add(CBMEM_ID_FSP_RUNTIME, sizeof(*cbmem_loc));
Martin Roth53bd26f2016-11-18 12:02:18 -0700104 if (cbmem_loc == NULL)
105 die("Error: Could not add cbmem area for hob list.\n");
Subrata Banik097bd952017-07-24 19:09:31 +0530106 hob_list = fsp_get_hob_list();
107 if (!hob_list)
108 die("Error: Could not locate hob list pointer.\n");
109 *cbmem_loc = (uintptr_t)hob_list;
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800110}
111
Lee Leahyac3b0a62016-07-27 07:40:25 -0700112ROMSTAGE_CBMEM_INIT_HOOK(save_hob_list);
113
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800114const void *fsp_get_hob_list(void)
115{
Lee Leahyac3b0a62016-07-27 07:40:25 -0700116 uint32_t *list_loc;
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800117
Lee Leahyac3b0a62016-07-27 07:40:25 -0700118 if (ENV_ROMSTAGE)
Arthur Heymans75c20152019-05-25 10:37:26 +0200119 return fsp_hob_list_ptr;
Lee Leahyac3b0a62016-07-27 07:40:25 -0700120 list_loc = cbmem_find(CBMEM_ID_FSP_RUNTIME);
Aaron Durbina3a06ae2016-07-16 17:29:47 -0500121 return (list_loc) ? (void *)(uintptr_t)(*list_loc) : NULL;
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800122}
123
Lee Leahyac3b0a62016-07-27 07:40:25 -0700124void *fsp_get_hob_list_ptr(void)
125{
Arthur Heymans75c20152019-05-25 10:37:26 +0200126 return &fsp_hob_list_ptr;
Lee Leahyac3b0a62016-07-27 07:40:25 -0700127}
128
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800129static const
Lee Leahyac3b0a62016-07-27 07:40:25 -0700130struct hob_resource *find_resource_hob_by_guid(const struct hob_header *hob,
131 const uint8_t guid[16])
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800132{
133 const struct hob_resource *res;
134
Elyes HAOUASa342f392018-10-17 10:56:26 +0200135 for (; hob->type != HOB_TYPE_END_OF_HOB_LIST;
Lee Leahyac3b0a62016-07-27 07:40:25 -0700136 hob = fsp_next_hob(hob)) {
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800137
138 if (hob->type != HOB_TYPE_RESOURCE_DESCRIPTOR)
139 continue;
140
Lee Leahyac3b0a62016-07-27 07:40:25 -0700141 res = fsp_hob_header_to_resource(hob);
142 if (fsp_guid_compare(res->owner_guid, guid))
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800143 return res;
144 }
145 return NULL;
146}
147
Lee Leahy52d0c682016-08-01 15:47:42 -0700148void fsp_print_guid(const void *base)
149{
150 uint32_t big;
151 uint16_t mid[2];
152
153 const uint8_t *id = base;
154 big = read32(id + 0);
155 mid[0] = read16(id + 4);
156 mid[1] = read16(id + 6);
157
158 printk(BIOS_SPEW, "%08x-%04x-%04x-%02x%02x%02x%02x%02x%02x%02x%02x",
159 big, mid[0], mid[1],
160 id[8], id[9], id[10], id[11], id[12], id[13], id[14], id[15]);
161}
162
163int fsp_find_range_hob(struct range_entry *re, const uint8_t guid[16])
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800164{
165 const struct hob_resource *fsp_mem;
Lee Leahyac3b0a62016-07-27 07:40:25 -0700166 const void *hob_list = fsp_get_hob_list();
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800167
Subrata Banik097bd952017-07-24 19:09:31 +0530168 if (!hob_list)
169 return -1;
170
Aaron Durbin0fcd6f92016-03-08 11:23:52 -0600171 range_entry_init(re, 0, 0, 0);
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800172
Lee Leahy52d0c682016-08-01 15:47:42 -0700173 fsp_mem = find_resource_hob_by_guid(hob_list, guid);
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800174
175 if (!fsp_mem) {
Lee Leahy52d0c682016-08-01 15:47:42 -0700176 fsp_print_guid(guid);
177 printk(BIOS_SPEW, " not found!\n");
178 return -1;
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800179 }
180
Aaron Durbin0fcd6f92016-03-08 11:23:52 -0600181 range_entry_init(re, fsp_mem->addr, fsp_mem->addr + fsp_mem->length, 0);
Lee Leahy52d0c682016-08-01 15:47:42 -0700182 return 0;
183}
184
Michael Niewöhnerbc1dbb32019-10-24 22:58:25 +0200185void fsp_find_reserved_memory(struct range_entry *re)
Lee Leahy52d0c682016-08-01 15:47:42 -0700186{
Michael Niewöhnerbc1dbb32019-10-24 22:58:25 +0200187 if (fsp_find_range_hob(re, fsp_reserved_memory_guid))
188 die("9.1: FSP_RESERVED_MEMORY_RESOURCE_HOB missing!\n");
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800189}
190
Lee Leahyac3b0a62016-07-27 07:40:25 -0700191const void *fsp_find_extension_hob_by_guid(const uint8_t *guid, size_t *size)
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800192{
Lee Leahyac3b0a62016-07-27 07:40:25 -0700193 const uint8_t *hob_guid;
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800194 const struct hob_header *hob = fsp_get_hob_list();
195
196 if (!hob)
197 return NULL;
198
Elyes HAOUASa342f392018-10-17 10:56:26 +0200199 for (; hob->type != HOB_TYPE_END_OF_HOB_LIST;
Lee Leahyac3b0a62016-07-27 07:40:25 -0700200 hob = fsp_next_hob(hob)) {
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800201
202 if (hob->type != HOB_TYPE_GUID_EXTENSION)
203 continue;
204
Lee Leahyac3b0a62016-07-27 07:40:25 -0700205 hob_guid = hob_header_to_struct(hob);
206 if (fsp_guid_compare(hob_guid, guid)) {
Alexandru Gagniuc9b2e9bd2016-02-25 14:20:38 -0800207 *size = hob->length - (HOB_HEADER_LEN + 16);
208 return hob_header_to_extension_hob(hob);
209 }
210 }
211
212 return NULL;
213}
Hannah Williams3503b3f2016-03-04 12:14:52 -0800214
Elyes HAOUAS83b62832020-08-07 15:28:51 +0200215static void display_fsp_version_info_hob(const void *hob)
Subrata Banik73b67dc2018-01-23 16:31:03 +0530216{
Ronak Kanabarc7762462020-10-01 19:22:51 +0530217#if CONFIG(DISPLAY_FSP_VERSION_INFO) || CONFIG(DISPLAY_FSP_VERSION_INFO_2)
218
219 int index, cnt, tcount;
220 char *str_ptr;
221 uint8_t vs;
Julius Wernercd49cce2019-03-05 16:53:33 -0800222#if CONFIG(DISPLAY_FSP_VERSION_INFO)
Subrata Banik73b67dc2018-01-23 16:31:03 +0530223 const FIRMWARE_VERSION_INFO *fvi;
224 const FIRMWARE_VERSION_INFO_HOB *fvih =
225 (FIRMWARE_VERSION_INFO_HOB *)hob;
Subrata Banik73b67dc2018-01-23 16:31:03 +0530226
227 fvi = (void *)&fvih[1];
228 str_ptr = (char *)((uintptr_t)fvi +
Elyes HAOUASaf56a772020-07-22 20:36:20 +0200229 (fvih->Count * sizeof(FIRMWARE_VERSION_INFO)));
Ronak Kanabarc7762462020-10-01 19:22:51 +0530230 tcount = fvih->Count;
231#elif CONFIG(DISPLAY_FSP_VERSION_INFO_2)
Subrata Banik73b67dc2018-01-23 16:31:03 +0530232
Ronak Kanabarc7762462020-10-01 19:22:51 +0530233 uint8_t *hobstart = (uint8_t *) hob;
234 hobstart += sizeof(EFI_HOB_GUID_TYPE);
235
236 const SMBIOS_TABLE_TYPE_OEM_INTEL_FVI *stfvi =
237 (SMBIOS_TABLE_TYPE_OEM_INTEL_FVI *)hobstart;
238 const INTEL_FIRMWARE_VERSION_INFO *fvi;
239
240 str_ptr = ((char *) &(stfvi->Fvi[0])) +
241 (stfvi->Count * sizeof(INTEL_FIRMWARE_VERSION_INFO));
242 tcount = stfvi->Count;
243 fvi = &stfvi->Fvi[0];
244#endif
245
246 for (index = 0; index < tcount; index++) {
Subrata Banik73b67dc2018-01-23 16:31:03 +0530247 cnt = strlen(str_ptr);
248
Ronak Kanabarc7762462020-10-01 19:22:51 +0530249#if CONFIG(DISPLAY_FSP_VERSION_INFO)
250 vs = fvi[index].VersionStringIndex;
251#elif CONFIG(DISPLAY_FSP_VERSION_INFO_2)
252 vs = fvi[index].VersionString;
253#endif
Subrata Banik73b67dc2018-01-23 16:31:03 +0530254 /* Don't show ingredient name and version if its all 0xFF */
255 if (fvi[index].Version.MajorVersion == 0xFF &&
Elyes HAOUAS365cb142019-05-19 23:31:48 +0200256 fvi[index].Version.MinorVersion == 0xFF &&
257 fvi[index].Version.Revision == 0xFF &&
258 fvi[index].Version.BuildNumber == 0xFF &&
Ronak Kanabarc7762462020-10-01 19:22:51 +0530259 vs == 0) {
Subrata Banik73b67dc2018-01-23 16:31:03 +0530260 str_ptr = (char *)((uintptr_t)str_ptr + cnt +
261 sizeof(uint8_t));
262 continue;
263 }
264 /*
Elyes HAOUAS8bffebe2018-05-27 22:45:31 +0200265 * Firmware Version String consist of 2 pieces of information
Subrata Banik73b67dc2018-01-23 16:31:03 +0530266 * 1. Component Name: string type data holds FW type name.
267 * 2. Version Information : Either a string type data or
268 * numeric field holds FW version information.
269 */
270 printk(BIOS_DEBUG, "%s = ", str_ptr);
271
Ronak Kanabarc7762462020-10-01 19:22:51 +0530272 if (!vs)
Subrata Banik73b67dc2018-01-23 16:31:03 +0530273 printk(BIOS_DEBUG, "%x.%x.%x.%x\n",
274 fvi[index].Version.MajorVersion,
275 fvi[index].Version.MinorVersion,
276 fvi[index].Version.Revision,
277 fvi[index].Version.BuildNumber);
278 else {
279 str_ptr = (char *)((uintptr_t)str_ptr + cnt +
280 sizeof(uint8_t));
281 cnt = strlen(str_ptr);
282 printk(BIOS_DEBUG, "%s\n", str_ptr);
283 }
284 str_ptr = (char *)((uintptr_t)str_ptr + cnt +
285 sizeof(uint8_t));
286 }
287#endif
288}
289
290void fsp_display_fvi_version_hob(void)
291{
292 const uint8_t *hob_uuid;
293 const struct hob_header *hob = fsp_get_hob_list();
Subrata Banik73b67dc2018-01-23 16:31:03 +0530294
295 if (!hob)
296 return;
297
Subrata Banik90557f42020-03-25 18:40:41 +0530298 printk(BIOS_DEBUG, "Display FSP Version Info HOB\n");
Elyes HAOUASa342f392018-10-17 10:56:26 +0200299 for (; hob->type != HOB_TYPE_END_OF_HOB_LIST;
Subrata Banik73b67dc2018-01-23 16:31:03 +0530300 hob = fsp_next_hob(hob)) {
301 if (hob->type != HOB_TYPE_GUID_EXTENSION)
302 continue;
303
304 hob_uuid = hob_header_to_struct(hob);
305
306 if (fsp_guid_compare(hob_uuid, uuid_fv_info)) {
Elyes HAOUAS83b62832020-08-07 15:28:51 +0200307 display_fsp_version_info_hob(hob);
Subrata Banik73b67dc2018-01-23 16:31:03 +0530308 }
309 }
310}
311
Hannah Williams3503b3f2016-03-04 12:14:52 -0800312const void *fsp_find_nv_storage_data(size_t *size)
313{
Anil Kumar0dd03682021-11-24 14:31:04 -0800314 if (CONFIG(PLATFORM_USES_FSP2_3)) {
315 const struct fsp_nvs_hob2_data_region_header *hob;
316
317 hob = (const struct fsp_nvs_hob2_data_region_header *)
318 fsp_find_extension_hob_by_guid(fsp_nv_storage_guid_2, size);
319 if (hob != NULL) {
320 *size = hob->nvs_data_length;
321 return (void *)(uintptr_t)hob->nvs_data_ptr;
322 }
323 }
Lee Leahyac3b0a62016-07-27 07:40:25 -0700324 return fsp_find_extension_hob_by_guid(fsp_nv_storage_guid, size);
Hannah Williams3503b3f2016-03-04 12:14:52 -0800325}
Michael Niewöhner68da4542019-10-19 11:57:05 +0200326
327void fsp_find_bootloader_tolum(struct range_entry *re)
328{
329 if (fsp_find_range_hob(re, fsp_bootloader_tolum_guid))
330 die("9.3: FSP_BOOTLOADER_TOLUM_HOB missing!\n");
331}