1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Firmware-Assisted Dump support on POWER platform (OPAL).
5 * Copyright 2019, Hari Bathini, IBM Corporation.
8 #define pr_fmt(fmt) "opal fadump: " fmt
10 #include <linux/string.h>
11 #include <linux/seq_file.h>
13 #include <linux/of_fdt.h>
14 #include <linux/libfdt.h>
16 #include <linux/crash_dump.h>
20 #include <asm/fadump-internal.h>
22 #include "opal-fadump.h"
25 #ifdef CONFIG_PRESERVE_FA_DUMP
27 * When dump is active but PRESERVE_FA_DUMP is enabled on the kernel,
28 * ensure crash data is preserved in hope that the subsequent memory
29 * preserving kernel boot is going to process this crash data.
31 void __init
opal_fadump_dt_scan(struct fw_dump
*fadump_conf
, u64 node
)
33 const struct opal_fadump_mem_struct
*opal_fdm_active
;
39 dn
= of_get_flat_dt_subnode_by_name(node
, "dump");
40 if (dn
== -FDT_ERR_NOTFOUND
)
44 * Check if dump has been initiated on last reboot.
46 prop
= of_get_flat_dt_prop(dn
, "mpipl-boot", NULL
);
50 ret
= opal_mpipl_query_tag(OPAL_MPIPL_TAG_KERNEL
, &addr
);
51 if ((ret
!= OPAL_SUCCESS
) || !addr
) {
52 pr_debug("Could not get Kernel metadata (%lld)\n", ret
);
57 * Preserve memory only if kernel memory regions are registered
60 addr
= be64_to_cpu(addr
);
61 pr_debug("Kernel metadata addr: %llx\n", addr
);
62 opal_fdm_active
= (void *)addr
;
63 if (opal_fdm_active
->registered_regions
== 0)
66 ret
= opal_mpipl_query_tag(OPAL_MPIPL_TAG_BOOT_MEM
, &addr
);
67 if ((ret
!= OPAL_SUCCESS
) || !addr
) {
68 pr_err("Failed to get boot memory tag (%lld)\n", ret
);
73 * Memory below this address can be used for booting a
74 * capture kernel or petitboot kernel. Preserve everything
75 * above this address for processing crashdump.
77 fadump_conf
->boot_mem_top
= be64_to_cpu(addr
);
78 pr_debug("Preserve everything above %llx\n", fadump_conf
->boot_mem_top
);
80 pr_info("Firmware-assisted dump is active.\n");
81 fadump_conf
->dump_active
= 1;
84 #else /* CONFIG_PRESERVE_FA_DUMP */
85 static const struct opal_fadump_mem_struct
*opal_fdm_active
;
86 static const struct opal_mpipl_fadump
*opal_cpu_metadata
;
87 static struct opal_fadump_mem_struct
*opal_fdm
;
89 #ifdef CONFIG_OPAL_CORE
90 extern bool kernel_initiated
;
93 static int opal_fadump_unregister(struct fw_dump
*fadump_conf
);
95 static void opal_fadump_update_config(struct fw_dump
*fadump_conf
,
96 const struct opal_fadump_mem_struct
*fdm
)
98 pr_debug("Boot memory regions count: %d\n", fdm
->region_cnt
);
101 * The destination address of the first boot memory region is the
102 * destination address of boot memory regions.
104 fadump_conf
->boot_mem_dest_addr
= fdm
->rgn
[0].dest
;
105 pr_debug("Destination address of boot memory regions: %#016llx\n",
106 fadump_conf
->boot_mem_dest_addr
);
108 fadump_conf
->fadumphdr_addr
= fdm
->fadumphdr_addr
;
112 * This function is called in the capture kernel to get configuration details
113 * from metadata setup by the first kernel.
115 static void opal_fadump_get_config(struct fw_dump
*fadump_conf
,
116 const struct opal_fadump_mem_struct
*fdm
)
118 unsigned long base
, size
, last_end
, hole_size
;
121 if (!fadump_conf
->dump_active
)
126 fadump_conf
->boot_memory_size
= 0;
128 pr_debug("Boot memory regions:\n");
129 for (i
= 0; i
< fdm
->region_cnt
; i
++) {
130 base
= fdm
->rgn
[i
].src
;
131 size
= fdm
->rgn
[i
].size
;
132 pr_debug("\t[%03d] base: 0x%lx, size: 0x%lx\n", i
, base
, size
);
134 fadump_conf
->boot_mem_addr
[i
] = base
;
135 fadump_conf
->boot_mem_sz
[i
] = size
;
136 fadump_conf
->boot_memory_size
+= size
;
137 hole_size
+= (base
- last_end
);
139 last_end
= base
+ size
;
143 * Start address of reserve dump area (permanent reservation) for
144 * re-registering FADump after dump capture.
146 fadump_conf
->reserve_dump_area_start
= fdm
->rgn
[0].dest
;
149 * Rarely, but it can so happen that system crashes before all
150 * boot memory regions are registered for MPIPL. In such
151 * cases, warn that the vmcore may not be accurate and proceed
152 * anyway as that is the best bet considering free pages, cache
153 * pages, user pages, etc are usually filtered out.
155 * Hope the memory that could not be preserved only has pages
156 * that are usually filtered out while saving the vmcore.
158 if (fdm
->region_cnt
> fdm
->registered_regions
) {
159 pr_warn("Not all memory regions were saved!!!\n");
160 pr_warn(" Unsaved memory regions:\n");
161 i
= fdm
->registered_regions
;
162 while (i
< fdm
->region_cnt
) {
163 pr_warn("\t[%03d] base: 0x%llx, size: 0x%llx\n",
164 i
, fdm
->rgn
[i
].src
, fdm
->rgn
[i
].size
);
168 pr_warn("If the unsaved regions only contain pages that are filtered out (eg. free/user pages), the vmcore should still be usable.\n");
169 pr_warn("WARNING: If the unsaved regions contain kernel pages, the vmcore will be corrupted.\n");
172 fadump_conf
->boot_mem_top
= (fadump_conf
->boot_memory_size
+ hole_size
);
173 fadump_conf
->boot_mem_regs_cnt
= fdm
->region_cnt
;
174 opal_fadump_update_config(fadump_conf
, fdm
);
177 /* Initialize kernel metadata */
178 static void opal_fadump_init_metadata(struct opal_fadump_mem_struct
*fdm
)
180 fdm
->version
= OPAL_FADUMP_VERSION
;
182 fdm
->registered_regions
= 0;
183 fdm
->fadumphdr_addr
= 0;
186 static u64
opal_fadump_init_mem_struct(struct fw_dump
*fadump_conf
)
188 u64 addr
= fadump_conf
->reserve_dump_area_start
;
191 opal_fdm
= __va(fadump_conf
->kernel_metadata
);
192 opal_fadump_init_metadata(opal_fdm
);
194 /* Boot memory regions */
195 for (i
= 0; i
< fadump_conf
->boot_mem_regs_cnt
; i
++) {
196 opal_fdm
->rgn
[i
].src
= fadump_conf
->boot_mem_addr
[i
];
197 opal_fdm
->rgn
[i
].dest
= addr
;
198 opal_fdm
->rgn
[i
].size
= fadump_conf
->boot_mem_sz
[i
];
200 opal_fdm
->region_cnt
++;
201 addr
+= fadump_conf
->boot_mem_sz
[i
];
205 * Kernel metadata is passed to f/w and retrieved in capture kerenl.
206 * So, use it to save fadump header address instead of calculating it.
208 opal_fdm
->fadumphdr_addr
= (opal_fdm
->rgn
[0].dest
+
209 fadump_conf
->boot_memory_size
);
211 opal_fadump_update_config(fadump_conf
, opal_fdm
);
216 static u64
opal_fadump_get_metadata_size(void)
218 return PAGE_ALIGN(sizeof(struct opal_fadump_mem_struct
));
221 static int opal_fadump_setup_metadata(struct fw_dump
*fadump_conf
)
227 * Use the last page(s) in FADump memory reservation for
230 fadump_conf
->kernel_metadata
= (fadump_conf
->reserve_dump_area_start
+
231 fadump_conf
->reserve_dump_area_size
-
232 opal_fadump_get_metadata_size());
233 pr_info("Kernel metadata addr: %llx\n", fadump_conf
->kernel_metadata
);
235 /* Initialize kernel metadata before registering the address with f/w */
236 opal_fdm
= __va(fadump_conf
->kernel_metadata
);
237 opal_fadump_init_metadata(opal_fdm
);
240 * Register metadata address with f/w. Can be retrieved in
241 * the capture kernel.
243 ret
= opal_mpipl_register_tag(OPAL_MPIPL_TAG_KERNEL
,
244 fadump_conf
->kernel_metadata
);
245 if (ret
!= OPAL_SUCCESS
) {
246 pr_err("Failed to set kernel metadata tag!\n");
251 * Register boot memory top address with f/w. Should be retrieved
252 * by a kernel that intends to preserve crash'ed kernel's memory.
254 ret
= opal_mpipl_register_tag(OPAL_MPIPL_TAG_BOOT_MEM
,
255 fadump_conf
->boot_mem_top
);
256 if (ret
!= OPAL_SUCCESS
) {
257 pr_err("Failed to set boot memory tag!\n");
264 static u64
opal_fadump_get_bootmem_min(void)
266 return OPAL_FADUMP_MIN_BOOT_MEM
;
269 static int opal_fadump_register(struct fw_dump
*fadump_conf
)
271 s64 rc
= OPAL_PARAMETER
;
274 for (i
= 0; i
< opal_fdm
->region_cnt
; i
++) {
275 rc
= opal_mpipl_update(OPAL_MPIPL_ADD_RANGE
,
276 opal_fdm
->rgn
[i
].src
,
277 opal_fdm
->rgn
[i
].dest
,
278 opal_fdm
->rgn
[i
].size
);
279 if (rc
!= OPAL_SUCCESS
)
282 opal_fdm
->registered_regions
++;
287 pr_info("Registration is successful!\n");
288 fadump_conf
->dump_registered
= 1;
292 /* If MAX regions limit in f/w is hit, warn and proceed. */
293 pr_warn("%d regions could not be registered for MPIPL as MAX limit is reached!\n",
294 (opal_fdm
->region_cnt
- opal_fdm
->registered_regions
));
295 fadump_conf
->dump_registered
= 1;
299 pr_err("Failed to register. Parameter Error(%lld).\n", rc
);
302 pr_err("Support not available.\n");
303 fadump_conf
->fadump_supported
= 0;
304 fadump_conf
->fadump_enabled
= 0;
307 pr_err("Failed to register. Unknown Error(%lld).\n", rc
);
312 * If some regions were registered before OPAL_MPIPL_ADD_RANGE
313 * OPAL call failed, unregister all regions.
315 if ((err
< 0) && (opal_fdm
->registered_regions
> 0))
316 opal_fadump_unregister(fadump_conf
);
321 static int opal_fadump_unregister(struct fw_dump
*fadump_conf
)
325 rc
= opal_mpipl_update(OPAL_MPIPL_REMOVE_ALL
, 0, 0, 0);
327 pr_err("Failed to un-register - unexpected Error(%lld).\n", rc
);
331 opal_fdm
->registered_regions
= 0;
332 fadump_conf
->dump_registered
= 0;
336 static int opal_fadump_invalidate(struct fw_dump
*fadump_conf
)
340 rc
= opal_mpipl_update(OPAL_MPIPL_FREE_PRESERVED_MEMORY
, 0, 0, 0);
342 pr_err("Failed to invalidate - unexpected Error(%lld).\n", rc
);
346 fadump_conf
->dump_active
= 0;
347 opal_fdm_active
= NULL
;
351 static void opal_fadump_cleanup(struct fw_dump
*fadump_conf
)
355 ret
= opal_mpipl_register_tag(OPAL_MPIPL_TAG_KERNEL
, 0);
356 if (ret
!= OPAL_SUCCESS
)
357 pr_warn("Could not reset (%llu) kernel metadata tag!\n", ret
);
361 * Verify if CPU state data is available. If available, do a bit of sanity
362 * checking before processing this data.
364 static bool __init
is_opal_fadump_cpu_data_valid(struct fw_dump
*fadump_conf
)
366 if (!opal_cpu_metadata
)
369 fadump_conf
->cpu_state_data_version
=
370 be32_to_cpu(opal_cpu_metadata
->cpu_data_version
);
371 fadump_conf
->cpu_state_entry_size
=
372 be32_to_cpu(opal_cpu_metadata
->cpu_data_size
);
373 fadump_conf
->cpu_state_dest_vaddr
=
374 (u64
)__va(be64_to_cpu(opal_cpu_metadata
->region
[0].dest
));
375 fadump_conf
->cpu_state_data_size
=
376 be64_to_cpu(opal_cpu_metadata
->region
[0].size
);
378 if (fadump_conf
->cpu_state_data_version
!= HDAT_FADUMP_CPU_DATA_VER
) {
379 pr_warn("Supported CPU state data version: %u, found: %d!\n",
380 HDAT_FADUMP_CPU_DATA_VER
,
381 fadump_conf
->cpu_state_data_version
);
382 pr_warn("WARNING: F/W using newer CPU state data format!!\n");
385 if ((fadump_conf
->cpu_state_dest_vaddr
== 0) ||
386 (fadump_conf
->cpu_state_entry_size
== 0) ||
387 (fadump_conf
->cpu_state_entry_size
>
388 fadump_conf
->cpu_state_data_size
)) {
389 pr_err("CPU state data is invalid. Ignoring!\n");
397 * Convert CPU state data saved at the time of crash into ELF notes.
399 * While the crashing CPU's register data is saved by the kernel, CPU state
400 * data for all CPUs is saved by f/w. In CPU state data provided by f/w,
401 * each register entry is of 16 bytes, a numerical identifier along with
402 * a GPR/SPR flag in the first 8 bytes and the register value in the next
403 * 8 bytes. For more details refer to F/W documentation. If this data is
404 * missing or in unsupported format, append crashing CPU's register data
405 * saved by the kernel in the PT_NOTE, to have something to work with in
409 opal_fadump_build_cpu_notes(struct fw_dump
*fadump_conf
,
410 struct fadump_crash_info_header
*fdh
)
412 u32 thread_pir
, size_per_thread
, regs_offset
, regs_cnt
, reg_esize
;
413 struct hdat_fadump_thread_hdr
*thdr
;
414 bool is_cpu_data_valid
= false;
415 u32 num_cpus
= 1, *note_buf
;
420 if (is_opal_fadump_cpu_data_valid(fadump_conf
)) {
421 size_per_thread
= fadump_conf
->cpu_state_entry_size
;
422 num_cpus
= (fadump_conf
->cpu_state_data_size
/ size_per_thread
);
423 bufp
= __va(fadump_conf
->cpu_state_dest_vaddr
);
424 is_cpu_data_valid
= true;
427 rc
= fadump_setup_cpu_notes_buf(num_cpus
);
431 note_buf
= (u32
*)fadump_conf
->cpu_notes_buf_vaddr
;
432 if (!is_cpu_data_valid
)
436 * Offset for register entries, entry size and registers count is
437 * duplicated in every thread header in keeping with HDAT format.
438 * Use these values from the first thread header.
440 thdr
= (struct hdat_fadump_thread_hdr
*)bufp
;
441 regs_offset
= (offsetof(struct hdat_fadump_thread_hdr
, offset
) +
442 be32_to_cpu(thdr
->offset
));
443 reg_esize
= be32_to_cpu(thdr
->esize
);
444 regs_cnt
= be32_to_cpu(thdr
->ecnt
);
446 pr_debug("--------CPU State Data------------\n");
447 pr_debug("NumCpus : %u\n", num_cpus
);
448 pr_debug("\tOffset: %u, Entry size: %u, Cnt: %u\n",
449 regs_offset
, reg_esize
, regs_cnt
);
451 for (i
= 0; i
< num_cpus
; i
++, bufp
+= size_per_thread
) {
452 thdr
= (struct hdat_fadump_thread_hdr
*)bufp
;
454 thread_pir
= be32_to_cpu(thdr
->pir
);
455 pr_debug("[%04d] PIR: 0x%x, core state: 0x%02x\n",
456 i
, thread_pir
, thdr
->core_state
);
459 * If this is kernel initiated crash, crashing_cpu would be set
460 * appropriately and register data of the crashing CPU saved by
461 * crashing kernel. Add this saved register data of crashing CPU
462 * to elf notes and populate the pt_regs for the remaining CPUs
463 * from register state data provided by firmware.
465 if (fdh
->crashing_cpu
== thread_pir
) {
466 note_buf
= fadump_regs_to_elf_notes(note_buf
,
468 pr_debug("Crashing CPU PIR: 0x%x - R1 : 0x%lx, NIP : 0x%lx\n",
469 fdh
->crashing_cpu
, fdh
->regs
.gpr
[1],
475 * Register state data of MAX cores is provided by firmware,
476 * but some of this cores may not be active. So, while
477 * processing register state data, check core state and
478 * skip threads that belong to inactive cores.
480 if (thdr
->core_state
== HDAT_FADUMP_CORE_INACTIVE
)
483 opal_fadump_read_regs((bufp
+ regs_offset
), regs_cnt
,
484 reg_esize
, true, ®s
);
485 note_buf
= fadump_regs_to_elf_notes(note_buf
, ®s
);
486 pr_debug("CPU PIR: 0x%x - R1 : 0x%lx, NIP : 0x%lx\n",
487 thread_pir
, regs
.gpr
[1], regs
.nip
);
492 * CPU state data is invalid/unsupported. Try appending crashing CPU's
493 * register data, if it is saved by the kernel.
495 if (fadump_conf
->cpu_notes_buf_vaddr
== (u64
)note_buf
) {
496 if (fdh
->crashing_cpu
== FADUMP_CPU_UNKNOWN
) {
497 fadump_free_cpu_notes_buf();
501 pr_warn("WARNING: appending only crashing CPU's register data\n");
502 note_buf
= fadump_regs_to_elf_notes(note_buf
, &(fdh
->regs
));
505 final_note(note_buf
);
507 pr_debug("Updating elfcore header (%llx) with cpu notes\n",
508 fdh
->elfcorehdr_addr
);
509 fadump_update_elfcore_header(__va(fdh
->elfcorehdr_addr
));
513 static int __init
opal_fadump_process(struct fw_dump
*fadump_conf
)
515 struct fadump_crash_info_header
*fdh
;
518 if (!opal_fdm_active
|| !fadump_conf
->fadumphdr_addr
)
521 /* Validate the fadump crash info header */
522 fdh
= __va(fadump_conf
->fadumphdr_addr
);
523 if (fdh
->magic_number
!= FADUMP_CRASH_INFO_MAGIC
) {
524 pr_err("Crash info header is not valid.\n");
528 #ifdef CONFIG_OPAL_CORE
530 * If this is a kernel initiated crash, crashing_cpu would be set
531 * appropriately and register data of the crashing CPU saved by
532 * crashing kernel. Add this saved register data of crashing CPU
533 * to elf notes and populate the pt_regs for the remaining CPUs
534 * from register state data provided by firmware.
536 if (fdh
->crashing_cpu
!= FADUMP_CPU_UNKNOWN
)
537 kernel_initiated
= true;
540 rc
= opal_fadump_build_cpu_notes(fadump_conf
, fdh
);
545 * We are done validating dump info and elfcore header is now ready
546 * to be exported. set elfcorehdr_addr so that vmcore module will
547 * export the elfcore header through '/proc/vmcore'.
549 elfcorehdr_addr
= fdh
->elfcorehdr_addr
;
554 static void opal_fadump_region_show(struct fw_dump
*fadump_conf
,
557 const struct opal_fadump_mem_struct
*fdm_ptr
;
558 u64 dumped_bytes
= 0;
561 if (fadump_conf
->dump_active
)
562 fdm_ptr
= opal_fdm_active
;
566 for (i
= 0; i
< fdm_ptr
->region_cnt
; i
++) {
568 * Only regions that are registered for MPIPL
569 * would have dump data.
571 if ((fadump_conf
->dump_active
) &&
572 (i
< fdm_ptr
->registered_regions
))
573 dumped_bytes
= fdm_ptr
->rgn
[i
].size
;
575 seq_printf(m
, "DUMP: Src: %#016llx, Dest: %#016llx, ",
576 fdm_ptr
->rgn
[i
].src
, fdm_ptr
->rgn
[i
].dest
);
577 seq_printf(m
, "Size: %#llx, Dumped: %#llx bytes\n",
578 fdm_ptr
->rgn
[i
].size
, dumped_bytes
);
581 /* Dump is active. Show reserved area start address. */
582 if (fadump_conf
->dump_active
) {
583 seq_printf(m
, "\nMemory above %#016lx is reserved for saving crash dump\n",
584 fadump_conf
->reserve_dump_area_start
);
588 static void opal_fadump_trigger(struct fadump_crash_info_header
*fdh
,
594 * Unlike on pSeries platform, logical CPU number is not provided
595 * with architected register state data. So, store the crashing
596 * CPU's PIR instead to plug the appropriate register data for
597 * crashing CPU in the vmcore file.
599 fdh
->crashing_cpu
= (u32
)mfspr(SPRN_PIR
);
601 rc
= opal_cec_reboot2(OPAL_REBOOT_MPIPL
, msg
);
602 if (rc
== OPAL_UNSUPPORTED
) {
603 pr_emerg("Reboot type %d not supported.\n",
605 } else if (rc
== OPAL_HARDWARE
)
606 pr_emerg("No backend support for MPIPL!\n");
609 static struct fadump_ops opal_fadump_ops
= {
610 .fadump_init_mem_struct
= opal_fadump_init_mem_struct
,
611 .fadump_get_metadata_size
= opal_fadump_get_metadata_size
,
612 .fadump_setup_metadata
= opal_fadump_setup_metadata
,
613 .fadump_get_bootmem_min
= opal_fadump_get_bootmem_min
,
614 .fadump_register
= opal_fadump_register
,
615 .fadump_unregister
= opal_fadump_unregister
,
616 .fadump_invalidate
= opal_fadump_invalidate
,
617 .fadump_cleanup
= opal_fadump_cleanup
,
618 .fadump_process
= opal_fadump_process
,
619 .fadump_region_show
= opal_fadump_region_show
,
620 .fadump_trigger
= opal_fadump_trigger
,
623 void __init
opal_fadump_dt_scan(struct fw_dump
*fadump_conf
, u64 node
)
632 * Check if Firmware-Assisted Dump is supported. if yes, check
633 * if dump has been initiated on last reboot.
635 dn
= of_get_flat_dt_subnode_by_name(node
, "dump");
636 if (dn
== -FDT_ERR_NOTFOUND
) {
637 pr_debug("FADump support is missing!\n");
641 if (!of_flat_dt_is_compatible(dn
, "ibm,opal-dump")) {
642 pr_err("Support missing for this f/w version!\n");
646 prop
= of_get_flat_dt_prop(dn
, "fw-load-area", &len
);
649 * Each f/w load area is an (address,size) pair,
650 * 2 cells each, totalling 4 cells per range.
652 for (i
= 0; i
< len
/ (sizeof(*prop
) * 4); i
++) {
655 base
= of_read_number(prop
+ (i
* 4) + 0, 2);
657 end
+= of_read_number(prop
+ (i
* 4) + 2, 2);
658 if (end
> OPAL_FADUMP_MIN_BOOT_MEM
) {
659 pr_err("F/W load area: 0x%llx-0x%llx\n",
661 pr_err("F/W version not supported!\n");
667 fadump_conf
->ops
= &opal_fadump_ops
;
668 fadump_conf
->fadump_supported
= 1;
671 * Firmware supports 32-bit field for size. Align it to PAGE_SIZE
672 * and request firmware to copy multiple kernel boot memory regions.
674 fadump_conf
->max_copy_size
= ALIGN_DOWN(U32_MAX
, PAGE_SIZE
);
677 * Check if dump has been initiated on last reboot.
679 prop
= of_get_flat_dt_prop(dn
, "mpipl-boot", NULL
);
683 ret
= opal_mpipl_query_tag(OPAL_MPIPL_TAG_KERNEL
, &addr
);
684 if ((ret
!= OPAL_SUCCESS
) || !addr
) {
685 pr_err("Failed to get Kernel metadata (%lld)\n", ret
);
689 addr
= be64_to_cpu(addr
);
690 pr_debug("Kernel metadata addr: %llx\n", addr
);
692 opal_fdm_active
= __va(addr
);
693 if (opal_fdm_active
->version
!= OPAL_FADUMP_VERSION
) {
694 pr_warn("Supported kernel metadata version: %u, found: %d!\n",
695 OPAL_FADUMP_VERSION
, opal_fdm_active
->version
);
696 pr_warn("WARNING: Kernel metadata format mismatch identified! Core file maybe corrupted..\n");
699 /* Kernel regions not registered with f/w for MPIPL */
700 if (opal_fdm_active
->registered_regions
== 0) {
701 opal_fdm_active
= NULL
;
705 ret
= opal_mpipl_query_tag(OPAL_MPIPL_TAG_CPU
, &addr
);
707 addr
= be64_to_cpu(addr
);
708 pr_debug("CPU metadata addr: %llx\n", addr
);
709 opal_cpu_metadata
= __va(addr
);
712 pr_info("Firmware-assisted dump is active.\n");
713 fadump_conf
->dump_active
= 1;
714 opal_fadump_get_config(fadump_conf
, opal_fdm_active
);
716 #endif /* !CONFIG_PRESERVE_FA_DUMP */