1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <arch/bert_storage.h>
4 #include <console/console.h>
6 #include <cpu/intel/cpu_ids.h>
8 #include <device/pci_ops.h>
9 #include <intelblocks/crashlog.h>
10 #include <intelblocks/pmc_ipc.h>
11 #include <soc/crashlog.h>
12 #include <soc/iomap.h>
13 #include <soc/pci_devs.h>
16 #define CONTROL_INTERFACE_OFFSET 0x5
17 #define CRASHLOG_NODES_COUNT 0x2 /* Crashlog record of PUNIT & Uncore of SoC-N Die */
18 #define CRASHLOG_PUNIT_STORAGE_OFF_MASK BIT(24)
19 #define CRASHLOG_RE_ARM_STATUS_MASK BIT(25)
20 #define CRASHLOG_CONSUMED_MASK BIT(31)
22 /* global crashLog info */
23 static bool m_pmc_crashLog_support
;
24 static bool m_pmc_crashLog_present
;
25 static bool m_cpu_crashLog_support
;
26 static bool m_cpu_crashLog_present
;
27 static u32 m_pmc_crashLog_size
;
28 static u32 m_cpu_crashLog_size
;
29 static u32 cpu_crash_version
;
30 static pmc_ipc_discovery_buf_t discovery_buf
;
31 static pmc_crashlog_desc_table_t descriptor_table
;
32 static tel_crashlog_devsc_cap_t cpu_cl_devsc_cap
;
33 static cpu_crashlog_discovery_table_t cpu_cl_disc_tab
;
34 static uintptr_t disc_tab_addr
;
36 static u64
get_disc_tab_header(void)
38 return read64p(disc_tab_addr
);
41 /* Get the SRAM BAR. */
42 static uintptr_t get_sram_bar(pci_devfn_t sram_devfn
)
45 const struct device
*dev
;
48 dev
= pcidev_path_on_root(sram_devfn
);
50 printk(BIOS_ERR
, "device: 0x%x not found!\n", sram_devfn
);
54 res
= probe_resource(dev
, PCI_BASE_ADDRESS_0
);
56 printk(BIOS_ERR
, "SOC SRAM device not found!\n");
60 /* Get the base address of the resource */
66 static void configure_sram(const struct device
*sram_dev
, uintptr_t base_addr
)
68 pci_update_config16(sram_dev
, PCI_COMMAND
, ~(PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
), 0);
70 /* Program BAR 0 and enable command register memory space decoding */
71 pci_write_config32(sram_dev
, PCI_BASE_ADDRESS_0
, base_addr
);
72 pci_or_config16(sram_dev
, PCI_COMMAND
, PCI_COMMAND_MEMORY
);
75 void cl_get_pmc_sram_data(cl_node_t
*head
)
77 uintptr_t pmc_sram_base
= cl_get_cpu_tmp_bar();
78 uintptr_t ioe_sram_base
= get_sram_bar(PCI_DEVFN_IOE_SRAM
);
79 u32 pmc_crashLog_size
= cl_get_pmc_record_size();
80 cl_node_t
*cl_cur
= head
;
82 if (!pmc_crashLog_size
) {
83 printk(BIOS_ERR
, "No PMC crashlog records\n");
88 printk(BIOS_ERR
, "PMC SRAM base not valid\n");
93 printk(BIOS_ERR
, "IOE SRAM base not valid\n");
97 configure_sram(PCI_DEV_IOE_SRAM
, ioe_sram_base
);
99 if (!cl_pmc_sram_has_mmio_access())
102 if (!cl_ioe_sram_has_mmio_access())
105 printk(BIOS_DEBUG
, "PMC crashLog size : 0x%x\n", pmc_crashLog_size
);
108 while (cl_cur
&& cl_cur
->next
) {
109 cl_cur
= cl_cur
->next
;
112 /* process crashlog records */
113 for (int i
= 0; i
< descriptor_table
.numb_regions
+ 1; i
++) {
114 uintptr_t sram_base
= 0;
115 bool pmc_sram
= true;
116 printk(BIOS_DEBUG
, "Region[0x%x].Tag=0x%x offset=0x%x, size=0x%x\n",
118 descriptor_table
.regions
[i
].bits
.assign_tag
,
119 descriptor_table
.regions
[i
].bits
.offset
,
120 descriptor_table
.regions
[i
].bits
.size
);
122 if (!descriptor_table
.regions
[i
].bits
.size
)
126 * Region with metadata TAG contains information about BDF entry for SOC PMC SRAM
127 * and IOE SRAM. We don't need to parse this as we already define BDFs in
128 * soc/pci_devs.h for these SRAMs. Also we need to skip this region as it does not
129 * contain any crashlog data.
131 if (descriptor_table
.regions
[i
].bits
.assign_tag
==
132 CRASHLOG_DESCRIPTOR_TABLE_TAG_META
) {
133 pmc_crashLog_size
-= descriptor_table
.regions
[i
].bits
.size
*
135 printk(BIOS_DEBUG
, "Found metadata tag. PMC crashlog size adjusted to: 0x%x\n",
139 if (descriptor_table
.regions
[i
].bits
.assign_tag
==
140 CRASHLOG_DESCRIPTOR_TABLE_TAG_SOC
)
141 sram_base
= pmc_sram_base
;
142 else if (descriptor_table
.regions
[i
].bits
.assign_tag
==
143 CRASHLOG_DESCRIPTOR_TABLE_TAG_IOE
)
144 sram_base
= ioe_sram_base
;
148 cl_node_t
*cl_node
= malloc_cl_node(descriptor_table
.regions
[i
].bits
.size
);
151 printk(BIOS_DEBUG
, "failed to allocate cl_node [region = %d]\n", i
);
152 goto pmc_send_re_arm_after_reset
;
155 if (cl_copy_data_from_sram(sram_base
,
156 descriptor_table
.regions
[i
].bits
.offset
,
157 descriptor_table
.regions
[i
].bits
.size
,
161 cl_cur
->next
= cl_node
;
162 cl_cur
= cl_cur
->next
;
164 /* coping data from sram failed */
165 pmc_crashLog_size
-= descriptor_table
.regions
[i
].bits
.size
*
167 printk(BIOS_DEBUG
, "PMC crashlog size adjusted to: 0x%x\n",
170 free_cl_node(cl_node
);
175 update_new_pmc_crashlog_size(&pmc_crashLog_size
);
177 pmc_send_re_arm_after_reset
:
178 /* when bit 7 of discov cmd resp is set -> bit 2 of size field */
179 cl_pmc_re_arm_after_reset();
181 /* Clear the SSRAM region after copying the error log */
185 bool pmc_cl_discovery(void)
187 uintptr_t bar_addr
= 0, desc_table_addr
= 0;
189 const struct pmc_ipc_buffer req
= { 0 };
190 struct pmc_ipc_buffer res
;
194 cmd_reg
= pmc_make_ipc_cmd(PMC_IPC_CMD_CRASHLOG
,
195 PMC_IPC_CMD_ID_CRASHLOG_DISCOVERY
,
196 PMC_IPC_CMD_SIZE_SHIFT
);
197 printk(BIOS_DEBUG
, "cmd_reg from pmc_make_ipc_cmd %d in %s\n", cmd_reg
, __func__
);
199 r
= pmc_send_ipc_cmd(cmd_reg
, &req
, &res
);
202 printk(BIOS_ERR
, "pmc_send_ipc_cmd failed in %s\n", __func__
);
205 discovery_buf
.conv_val_64_bits
= ((u64
)res
.buf
[1] << 32) | res
.buf
[0];
207 if ((discovery_buf
.conv_bits64
.supported
!= 1) ||
208 (discovery_buf
.conv_bits64
.discov_mechanism
== 0) ||
209 (discovery_buf
.conv_bits64
.crash_dis_sts
== 1)) {
210 printk(BIOS_INFO
, "PCH crashlog feature not supported.\n");
211 m_pmc_crashLog_support
= false;
212 m_pmc_crashLog_size
= 0;
213 printk(BIOS_DEBUG
, "discovery_buf supported: %d, mechanism: %d, CrashDisSts: %d\n",
214 discovery_buf
.conv_bits64
.supported
,
215 discovery_buf
.conv_bits64
.discov_mechanism
,
216 discovery_buf
.conv_bits64
.crash_dis_sts
);
220 printk(BIOS_INFO
, "PMC crashlog feature is supported.\n");
221 m_pmc_crashLog_support
= true;
223 /* Program BAR 0 and enable command register memory space decoding */
224 bar_addr
= get_sram_bar(PCI_DEVFN_SRAM
);
226 printk(BIOS_ERR
, "PCH SRAM not available, crashlog feature can't be enabled.\n");
230 configure_sram(PCI_DEV_SRAM
, bar_addr
);
232 desc_table_addr
= bar_addr
+ discovery_buf
.conv_bits64
.desc_tabl_offset
;
233 m_pmc_crashLog_size
= pmc_cl_gen_descriptor_table(desc_table_addr
,
235 printk(BIOS_DEBUG
, "PMC CrashLog size in discovery mode: 0x%X\n",
236 m_pmc_crashLog_size
);
237 m_pmc_crashLog_present
= m_pmc_crashLog_size
> 0;
242 uintptr_t cl_get_cpu_bar_addr(void)
244 uintptr_t base_addr
= 0;
245 if (cpu_cl_devsc_cap
.discovery_data
.fields
.t_bir_q
== TEL_DVSEC_TBIR_BAR0
) {
246 base_addr
= pci_read_config32(PCI_DEV_TELEMETRY
, PCI_BASE_ADDRESS_0
) &
247 ~PCI_BASE_ADDRESS_MEM_ATTR_MASK
;
248 } else if (cpu_cl_devsc_cap
.discovery_data
.fields
.t_bir_q
== TEL_DVSEC_TBIR_BAR1
) {
249 base_addr
= pci_read_config32(PCI_DEV_TELEMETRY
, PCI_BASE_ADDRESS_1
) &
250 ~PCI_BASE_ADDRESS_MEM_ATTR_MASK
;
252 printk(BIOS_ERR
, "Invalid TEL_CFG_BAR value %d, discovery failure expected.\n",
253 cpu_cl_devsc_cap
.discovery_data
.fields
.t_bir_q
);
259 uintptr_t cl_get_cpu_tmp_bar(void)
261 return get_sram_bar(PCI_DEVFN_SRAM
);
264 bool cl_pmc_sram_has_mmio_access(void)
266 if (pci_read_config16(PCI_DEV_SRAM
, PCI_VENDOR_ID
) == 0xFFFF) {
267 printk(BIOS_ERR
, "PMC SSRAM PCI device disabled. Can be enabled in device tree.\n");
274 bool cl_ioe_sram_has_mmio_access(void)
276 if (pci_read_config16(PCI_DEV_IOE_SRAM
, PCI_VENDOR_ID
) == 0xFFFF) {
277 printk(BIOS_ERR
, "IOE SSRAM PCI device disabled. Can be enabled in device tree.\n");
283 static bool cpu_cl_get_capability(tel_crashlog_devsc_cap_t
*cl_devsc_cap
)
285 cl_devsc_cap
->cap_data
.data
= pci_read_config32(PCI_DEV_TELEMETRY
,
286 TEL_DVSEC_OFFSET
+ TEL_DVSEC_PCIE_CAP_ID
);
287 if (cl_devsc_cap
->cap_data
.fields
.pcie_cap_id
!= TELEMETRY_EXTENDED_CAP_ID
) {
288 printk(BIOS_DEBUG
, "Read ID for Telemetry: 0x%x differs from expected: 0x%x\n",
289 cl_devsc_cap
->cap_data
.fields
.pcie_cap_id
, TELEMETRY_EXTENDED_CAP_ID
);
293 /* walk through the entries until crashLog entry */
294 cl_devsc_cap
->devsc_data
.data_32
[1] = pci_read_config32(PCI_DEV_TELEMETRY
, TEL_DVSEV_ID
);
296 while (cl_devsc_cap
->devsc_data
.fields
.devsc_id
!= CRASHLOG_DVSEC_ID
) {
297 if (cl_devsc_cap
->cap_data
.fields
.next_cap_offset
== 0
298 || cl_devsc_cap
->cap_data
.fields
.next_cap_offset
== 0xFFFF) {
299 printk(BIOS_DEBUG
, "Read invalid pcie_cap_id value: 0x%x\n",
300 cl_devsc_cap
->cap_data
.fields
.pcie_cap_id
);
303 new_offset
= cl_devsc_cap
->cap_data
.fields
.next_cap_offset
;
304 cl_devsc_cap
->cap_data
.data
= pci_read_config32(PCI_DEV_TELEMETRY
,
305 new_offset
+ TEL_DVSEC_PCIE_CAP_ID
);
306 cl_devsc_cap
->devsc_data
.data_32
[1] = pci_read_config32(PCI_DEV_TELEMETRY
,
307 new_offset
+ TEL_DVSEV_ID
);
309 cpu_crash_version
= cl_devsc_cap
->devsc_data
.fields
.devsc_ver
;
311 cl_devsc_cap
->discovery_data
.data
= pci_read_config32(PCI_DEV_TELEMETRY
, new_offset
312 + TEL_DVSEV_DISCOVERY_TABLE_OFFSET
);
317 static u32
get_disc_table_offset(void)
319 u32 offset
= cpu_cl_devsc_cap
.discovery_data
.fields
.discovery_table_offset
;
320 if (cpu_get_cpuid() >= CPUID_METEORLAKE_B0
) {
322 printk(BIOS_DEBUG
, "adjusted cpu discovery table offset: 0x%x\n", offset
);
328 static bool is_crashlog_data_valid(u32 dw0
)
330 return (dw0
!= 0x0 && dw0
!= INVALID_CRASHLOG_RECORD
);
333 static bool cpu_cl_gen_discovery_table(void)
335 uintptr_t bar_addr
= cl_get_cpu_bar_addr();
340 disc_tab_addr
= bar_addr
+ get_disc_table_offset();
341 memset(&cpu_cl_disc_tab
, 0, sizeof(cpu_crashlog_discovery_table_t
));
342 cpu_cl_disc_tab
.header
.data
= get_disc_tab_header();
343 /* Check both 32 bit header data and status register for non-zero values */
344 if ((!is_crashlog_data_valid(cpu_cl_disc_tab
.header
.data
& 0xFFFFFFFF)) &&
345 (!is_crashlog_data_valid((cpu_cl_disc_tab
.header
.data
) >> 32)))
349 cpu_cl_disc_tab
.header
.fields
.count
= CRASHLOG_NODES_COUNT
;
350 printk(BIOS_DEBUG
, "cpu_crashlog_discovery_table buffer count: 0x%x\n",
351 cpu_cl_disc_tab
.header
.fields
.count
);
352 for (int i
= 0; i
< cpu_cl_disc_tab
.header
.fields
.count
; i
++) {
353 cur_offset
= 8 + 24 * i
;
354 u32 cl_buffer_size
= read32p(disc_tab_addr
+ cur_offset
+ 4);
355 /* Check for buffer size */
356 if (!(is_crashlog_data_valid(cl_buffer_size
)))
359 u32 dw0
= read32p(disc_tab_addr
+ cur_offset
);
360 if (dw0
& CRASHLOG_CONSUMED_MASK
) {
361 printk(BIOS_DEBUG
, "cpu crashlog records already consumed."
362 "id: 0x%x dw0: 0x%x\n", i
, dw0
);
366 cpu_cl_disc_tab
.buffers
[i
].data
= read64p(disc_tab_addr
+ cur_offset
);
367 printk(BIOS_DEBUG
, "cpu_crashlog_discovery_table buffer: 0x%x size: "
368 "0x%x offset: 0x%x\n", i
, cpu_cl_disc_tab
.buffers
[i
].fields
.size
,
369 cpu_cl_disc_tab
.buffers
[i
].fields
.offset
);
370 m_cpu_crashLog_size
+= cpu_cl_disc_tab
.buffers
[i
].fields
.size
* sizeof(u32
);
373 if (m_cpu_crashLog_size
> 0)
374 m_cpu_crashLog_present
= true;
376 m_cpu_crashLog_present
= false;
381 bool cpu_cl_discovery(void)
383 memset(&cpu_cl_devsc_cap
, 0, sizeof(tel_crashlog_devsc_cap_t
));
385 if (!cpu_cl_get_capability(&cpu_cl_devsc_cap
)) {
386 printk(BIOS_ERR
, "CPU crashlog capability not found.\n");
387 m_cpu_crashLog_support
= false;
391 m_cpu_crashLog_support
= true;
393 if (!cpu_cl_gen_discovery_table()) {
394 printk(BIOS_ERR
, "CPU crashlog discovery table not valid.\n");
395 m_cpu_crashLog_present
= false;
402 void reset_discovery_buffers(void)
404 memset(&discovery_buf
, 0, sizeof(pmc_ipc_discovery_buf_t
));
405 memset(&descriptor_table
, 0, sizeof(pmc_crashlog_desc_table_t
));
406 memset(&cpu_cl_devsc_cap
, 0, sizeof(tel_crashlog_devsc_cap_t
));
409 int cl_get_total_data_size(void)
411 printk(BIOS_DEBUG
, "crashlog size:pmc-0x%x, cpu-0x%x\n",
412 m_pmc_crashLog_size
, m_cpu_crashLog_size
);
413 return m_pmc_crashLog_size
+ m_cpu_crashLog_size
;
416 static uintptr_t get_control_status_interface(void)
419 return (disc_tab_addr
+ CONTROL_INTERFACE_OFFSET
* sizeof(u32
));
423 int cpu_cl_clear_data(void)
428 static bool wait_and_check(u32 bit_mask
)
433 cpu_cl_disc_tab
.header
.data
= get_disc_tab_header();
434 udelay(CPU_CRASHLOG_WAIT_STALL
);
436 } while (((cpu_cl_disc_tab
.header
.data
& bit_mask
) == 0) &&
437 ((stall_cnt
* CPU_CRASHLOG_WAIT_STALL
) < CPU_CRASHLOG_WAIT_TIMEOUT
));
439 return (cpu_cl_disc_tab
.header
.data
& bit_mask
);
442 void cpu_cl_rearm(void)
444 uintptr_t ctrl_sts_intfc_addr
= get_control_status_interface();
446 if (!ctrl_sts_intfc_addr
) {
447 printk(BIOS_ERR
, "CPU crashlog control and status interface address not valid\n");
451 /* Rearm the CPU crashlog. Crashlog does not get collected if rearming fails */
452 cl_punit_control_interface_t punit_ctrl_intfc
;
453 memset(&punit_ctrl_intfc
, 0, sizeof(cl_punit_control_interface_t
));
454 punit_ctrl_intfc
.fields
.set_re_arm
= 1;
455 write32p(ctrl_sts_intfc_addr
, punit_ctrl_intfc
.data
);
457 if (!wait_and_check(CRASHLOG_RE_ARM_STATUS_MASK
))
458 printk(BIOS_ERR
, "CPU crashlog re_arm not asserted\n");
460 printk(BIOS_DEBUG
, "CPU crashlog re_arm asserted\n");
463 void cpu_cl_cleanup(void)
465 /* Perform any SOC specific cleanup after reading the crashlog data from SRAM */
466 uintptr_t ctrl_sts_intfc_addr
= get_control_status_interface();
468 if (!ctrl_sts_intfc_addr
) {
469 printk(BIOS_ERR
, "CPU crashlog control and status interface address not valid\n");
473 /* If storage-off is supported, turn off the PUNIT SRAM
474 * stroage to save power. This clears crashlog records also.
477 if (!cpu_cl_disc_tab
.header
.fields
.storage_off_support
) {
478 printk(BIOS_INFO
, "CPU crashlog storage_off not supported\n");
482 cl_punit_control_interface_t punit_ctrl_intfc
;
483 memset(&punit_ctrl_intfc
, 0, sizeof(cl_punit_control_interface_t
));
484 punit_ctrl_intfc
.fields
.set_storage_off
= 1;
485 write32p(ctrl_sts_intfc_addr
, punit_ctrl_intfc
.data
);
487 if (!wait_and_check(CRASHLOG_PUNIT_STORAGE_OFF_MASK
))
488 printk(BIOS_ERR
, "CPU crashlog storage_off not asserted\n");
490 printk(BIOS_DEBUG
, "CPU crashlog storage_off asserted\n");
493 pmc_ipc_discovery_buf_t
cl_get_pmc_discovery_buf(void)
495 return discovery_buf
;
498 pmc_crashlog_desc_table_t
cl_get_pmc_descriptor_table(void)
500 return descriptor_table
;
503 int cl_get_pmc_record_size(void)
505 return m_pmc_crashLog_size
;
508 int cl_get_cpu_record_size(void)
510 return m_cpu_crashLog_size
;
513 bool cl_cpu_data_present(void)
515 return m_cpu_crashLog_present
;
518 bool cl_pmc_data_present(void)
520 return m_pmc_crashLog_present
;
523 bool cpu_crashlog_support(void)
525 return m_cpu_crashLog_support
;
528 bool pmc_crashlog_support(void)
530 return m_pmc_crashLog_support
;
533 void update_new_pmc_crashlog_size(u32
*pmc_crash_size
)
535 m_pmc_crashLog_size
= *pmc_crash_size
;
538 cpu_crashlog_discovery_table_t
cl_get_cpu_discovery_table(void)
540 return cpu_cl_disc_tab
;
543 void update_new_cpu_crashlog_size(u32
*cpu_crash_size
)
545 m_cpu_crashLog_size
= *cpu_crash_size
;