blob: 5cdf4168a61acbe5bee8d3cf8efdb6b2e9625c3a [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +00002/*
3 * Firmware Assisted dump: A robust mechanism to get reliable kernel crash
4 * dump with assistance from firmware. This approach does not use kexec,
5 * instead firmware assists in booting the kdump kernel while preserving
6 * memory contents. The most of the code implementation has been adapted
7 * from phyp assisted dump implementation written by Linas Vepstas and
8 * Manish Ahuja
9 *
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +000010 * Copyright 2011 IBM Corporation
11 * Author: Mahesh Salgaonkar <mahesh@linux.vnet.ibm.com>
12 */
13
14#undef DEBUG
15#define pr_fmt(fmt) "fadump: " fmt
16
17#include <linux/string.h>
18#include <linux/memblock.h>
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +000019#include <linux/delay.h>
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +000020#include <linux/seq_file.h>
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +000021#include <linux/crash_dump.h>
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +000022#include <linux/kobject.h>
23#include <linux/sysfs.h>
Hari Bathinia5818312018-08-18 02:10:56 +053024#include <linux/slab.h>
Mahesh Salgaonkara4e92ce2018-08-20 13:47:17 +053025#include <linux/cma.h>
Christophe Leroy45d0ba52019-04-26 05:59:47 +000026#include <linux/hugetlb.h>
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +000027
Michael Ellerman7644d582017-02-10 12:04:56 +110028#include <asm/debugfs.h>
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +000029#include <asm/page.h>
30#include <asm/prom.h>
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +000031#include <asm/fadump.h>
Hari Bathinica986d72019-09-11 20:16:21 +053032#include <asm/fadump-internal.h>
Stephen Rothwellcad3c832012-03-30 14:01:07 +000033#include <asm/setup.h>
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +000034
Sourabh Jainba608c42020-07-13 10:54:35 +053035/*
36 * The CPU who acquired the lock to trigger the fadump crash should
37 * wait for other CPUs to enter.
38 *
39 * The timeout is in milliseconds.
40 */
41#define CRASH_TIMEOUT 500
42
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +000043static struct fw_dump fw_dump;
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +000044
Hari Bathinib2a815a2019-09-11 20:25:49 +053045static void __init fadump_reserve_crash_area(u64 base);
46
Sourabh Jaind418b192019-12-11 21:39:07 +053047struct kobject *fadump_kobj;
48
Hari Bathinibec53192019-09-11 20:26:03 +053049#ifndef CONFIG_PRESERVE_FA_DUMP
Michael Ellerman5f987ca2020-07-27 13:44:36 +100050
51static atomic_t cpus_in_fadump;
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +000052static DEFINE_MUTEX(fadump_mutex);
Michael Ellerman5f987ca2020-07-27 13:44:36 +100053
Hari Bathini02c04e32020-04-20 14:26:09 +053054struct fadump_mrange_info crash_mrange_info = { "crash", NULL, 0, 0, 0, false };
55
56#define RESERVED_RNGS_SZ 16384 /* 16K - 128 entries */
57#define RESERVED_RNGS_CNT (RESERVED_RNGS_SZ / \
58 sizeof(struct fadump_memory_range))
59static struct fadump_memory_range rngs[RESERVED_RNGS_CNT];
60struct fadump_mrange_info reserved_mrange_info = { "reserved", rngs,
61 RESERVED_RNGS_SZ, 0,
62 RESERVED_RNGS_CNT, true };
63
64static void __init early_init_dt_scan_reserved_ranges(unsigned long node);
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +000065
Mahesh Salgaonkara4e92ce2018-08-20 13:47:17 +053066#ifdef CONFIG_CMA
Hari Bathini0226e552019-09-11 20:18:14 +053067static struct cma *fadump_cma;
68
Mahesh Salgaonkara4e92ce2018-08-20 13:47:17 +053069/*
70 * fadump_cma_init() - Initialize CMA area from a fadump reserved memory
71 *
72 * This function initializes CMA area from fadump reserved memory.
73 * The total size of fadump reserved memory covers for boot memory size
74 * + cpu data size + hpte size and metadata.
75 * Initialize only the area equivalent to boot memory size for CMA use.
76 * The reamining portion of fadump reserved memory will be not given
77 * to CMA and pages for thoes will stay reserved. boot memory size is
78 * aligned per CMA requirement to satisy cma_init_reserved_mem() call.
79 * But for some reason even if it fails we still have the memory reservation
80 * with us and we can still continue doing fadump.
81 */
82int __init fadump_cma_init(void)
83{
84 unsigned long long base, size;
85 int rc;
86
87 if (!fw_dump.fadump_enabled)
88 return 0;
89
90 /*
91 * Do not use CMA if user has provided fadump=nocma kernel parameter.
92 * Return 1 to continue with fadump old behaviour.
93 */
94 if (fw_dump.nocma)
95 return 1;
96
97 base = fw_dump.reserve_dump_area_start;
98 size = fw_dump.boot_memory_size;
99
100 if (!size)
101 return 0;
102
103 rc = cma_init_reserved_mem(base, size, 0, "fadump_cma", &fadump_cma);
104 if (rc) {
105 pr_err("Failed to init cma area for firmware-assisted dump,%d\n", rc);
106 /*
107 * Though the CMA init has failed we still have memory
108 * reservation with us. The reserved memory will be
109 * blocked from production system usage. Hence return 1,
110 * so that we can continue with fadump.
111 */
112 return 1;
113 }
114
115 /*
116 * So we now have successfully initialized cma area for fadump.
117 */
118 pr_info("Initialized 0x%lx bytes cma area at %ldMB from 0x%lx "
119 "bytes of memory reserved for firmware-assisted dump\n",
120 cma_get_size(fadump_cma),
121 (unsigned long)cma_get_base(fadump_cma) >> 20,
122 fw_dump.reserve_dump_area_size);
123 return 1;
124}
125#else
126static int __init fadump_cma_init(void) { return 1; }
127#endif /* CONFIG_CMA */
128
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000129/* Scan the Firmware Assisted dump configuration details. */
Hari Bathinif3512012019-09-11 20:19:44 +0530130int __init early_init_dt_scan_fw_dump(unsigned long node, const char *uname,
131 int depth, void *data)
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000132{
Hari Bathini02c04e32020-04-20 14:26:09 +0530133 if (depth == 0) {
134 early_init_dt_scan_reserved_ranges(node);
135 return 0;
136 }
137
Hari Bathini41df5922019-09-11 20:20:26 +0530138 if (depth != 1)
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000139 return 0;
140
Hari Bathini41df5922019-09-11 20:20:26 +0530141 if (strcmp(uname, "rtas") == 0) {
142 rtas_fadump_dt_scan(&fw_dump, node);
143 return 1;
144 }
145
146 if (strcmp(uname, "ibm,opal") == 0) {
147 opal_fadump_dt_scan(&fw_dump, node);
148 return 1;
149 }
150
151 return 0;
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000152}
153
Hari Bathinieae0dfc2017-06-01 22:51:26 +0530154/*
155 * If fadump is registered, check if the memory provided
Mahesh Salgaonkar0db68962018-08-20 13:47:32 +0530156 * falls within boot memory area and reserved memory area.
Hari Bathinieae0dfc2017-06-01 22:51:26 +0530157 */
Hari Bathinibecd91d2019-09-11 20:27:26 +0530158int is_fadump_memory_area(u64 addr, unsigned long size)
Hari Bathinieae0dfc2017-06-01 22:51:26 +0530159{
Hari Bathinibecd91d2019-09-11 20:27:26 +0530160 u64 d_start, d_end;
Mahesh Salgaonkar0db68962018-08-20 13:47:32 +0530161
Hari Bathinieae0dfc2017-06-01 22:51:26 +0530162 if (!fw_dump.dump_registered)
163 return 0;
164
Hari Bathinibecd91d2019-09-11 20:27:26 +0530165 if (!size)
166 return 0;
167
168 d_start = fw_dump.reserve_dump_area_start;
169 d_end = d_start + fw_dump.reserve_dump_area_size;
Mahesh Salgaonkar0db68962018-08-20 13:47:32 +0530170 if (((addr + size) > d_start) && (addr <= d_end))
171 return 1;
172
Hari Bathini7dee93a2019-09-11 20:27:39 +0530173 return (addr <= fw_dump.boot_mem_top);
Hari Bathinieae0dfc2017-06-01 22:51:26 +0530174}
175
Nicholas Piggin6fcd6ba2017-07-19 16:59:11 +1000176int should_fadump_crash(void)
177{
178 if (!fw_dump.dump_registered || !fw_dump.fadumphdr_addr)
179 return 0;
180 return 1;
181}
182
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +0000183int is_fadump_active(void)
184{
185 return fw_dump.dump_active;
186}
187
Hari Bathinia5a05b92017-06-01 22:52:10 +0530188/*
Hari Bathini961cf262019-09-11 20:16:36 +0530189 * Returns true, if there are no holes in memory area between d_start to d_end,
190 * false otherwise.
Hari Bathinia5a05b92017-06-01 22:52:10 +0530191 */
Hari Bathini961cf262019-09-11 20:16:36 +0530192static bool is_fadump_mem_area_contiguous(u64 d_start, u64 d_end)
Hari Bathinia5a05b92017-06-01 22:52:10 +0530193{
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700194 phys_addr_t reg_start, reg_end;
Hari Bathini961cf262019-09-11 20:16:36 +0530195 bool ret = false;
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700196 u64 i, start, end;
Hari Bathinia5a05b92017-06-01 22:52:10 +0530197
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700198 for_each_mem_range(i, &reg_start, &reg_end) {
199 start = max_t(u64, d_start, reg_start);
200 end = min_t(u64, d_end, reg_end);
Hari Bathini961cf262019-09-11 20:16:36 +0530201 if (d_start < end) {
202 /* Memory hole from d_start to start */
203 if (start > d_start)
Hari Bathinia5a05b92017-06-01 22:52:10 +0530204 break;
205
Hari Bathini961cf262019-09-11 20:16:36 +0530206 if (end == d_end) {
207 ret = true;
Hari Bathinia5a05b92017-06-01 22:52:10 +0530208 break;
209 }
210
Hari Bathini961cf262019-09-11 20:16:36 +0530211 d_start = end + 1;
Hari Bathinia5a05b92017-06-01 22:52:10 +0530212 }
213 }
214
215 return ret;
216}
217
Mahesh Salgaonkarf86593b2018-08-20 13:47:24 +0530218/*
Hari Bathini961cf262019-09-11 20:16:36 +0530219 * Returns true, if there are no holes in boot memory area,
220 * false otherwise.
221 */
Hari Bathini7f0ad112019-09-11 20:16:52 +0530222bool is_fadump_boot_mem_contiguous(void)
Hari Bathini961cf262019-09-11 20:16:36 +0530223{
Hari Bathini7dee93a2019-09-11 20:27:39 +0530224 unsigned long d_start, d_end;
225 bool ret = false;
226 int i;
227
228 for (i = 0; i < fw_dump.boot_mem_regs_cnt; i++) {
229 d_start = fw_dump.boot_mem_addr[i];
230 d_end = d_start + fw_dump.boot_mem_sz[i];
231
232 ret = is_fadump_mem_area_contiguous(d_start, d_end);
233 if (!ret)
234 break;
235 }
236
237 return ret;
Hari Bathini961cf262019-09-11 20:16:36 +0530238}
239
240/*
Mahesh Salgaonkarf86593b2018-08-20 13:47:24 +0530241 * Returns true, if there are no holes in reserved memory area,
242 * false otherwise.
243 */
Hari Bathini7f0ad112019-09-11 20:16:52 +0530244bool is_fadump_reserved_mem_contiguous(void)
Mahesh Salgaonkarf86593b2018-08-20 13:47:24 +0530245{
Hari Bathini961cf262019-09-11 20:16:36 +0530246 u64 d_start, d_end;
Mahesh Salgaonkarf86593b2018-08-20 13:47:24 +0530247
Hari Bathini961cf262019-09-11 20:16:36 +0530248 d_start = fw_dump.reserve_dump_area_start;
249 d_end = d_start + fw_dump.reserve_dump_area_size;
250 return is_fadump_mem_area_contiguous(d_start, d_end);
Mahesh Salgaonkarf86593b2018-08-20 13:47:24 +0530251}
252
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +0000253/* Print firmware assisted dump configurations for debugging purpose. */
254static void fadump_show_config(void)
255{
Hari Bathini7dee93a2019-09-11 20:27:39 +0530256 int i;
257
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +0000258 pr_debug("Support for firmware-assisted dump (fadump): %s\n",
259 (fw_dump.fadump_supported ? "present" : "no support"));
260
261 if (!fw_dump.fadump_supported)
262 return;
263
264 pr_debug("Fadump enabled : %s\n",
265 (fw_dump.fadump_enabled ? "yes" : "no"));
266 pr_debug("Dump Active : %s\n",
267 (fw_dump.dump_active ? "yes" : "no"));
268 pr_debug("Dump section sizes:\n");
269 pr_debug(" CPU state data size: %lx\n", fw_dump.cpu_state_data_size);
270 pr_debug(" HPTE region size : %lx\n", fw_dump.hpte_region_size);
Hari Bathini7dee93a2019-09-11 20:27:39 +0530271 pr_debug(" Boot memory size : %lx\n", fw_dump.boot_memory_size);
272 pr_debug(" Boot memory top : %llx\n", fw_dump.boot_mem_top);
273 pr_debug("Boot memory regions cnt: %llx\n", fw_dump.boot_mem_regs_cnt);
274 for (i = 0; i < fw_dump.boot_mem_regs_cnt; i++) {
275 pr_debug("[%03d] base = %llx, size = %llx\n", i,
276 fw_dump.boot_mem_addr[i], fw_dump.boot_mem_sz[i]);
277 }
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +0000278}
279
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000280/**
281 * fadump_calculate_reserve_size(): reserve variable boot area 5% of System RAM
282 *
283 * Function to find the largest memory size we need to reserve during early
284 * boot process. This will be the size of the memory that is required for a
285 * kernel to boot successfully.
286 *
287 * This function has been taken from phyp-assisted dump feature implementation.
288 *
289 * returns larger of 256MB or 5% rounded down to multiples of 256MB.
290 *
291 * TODO: Come up with better approach to find out more accurate memory size
292 * that is required for a kernel to boot successfully.
293 *
294 */
Hari Bathini7b1b3b42019-09-11 20:26:59 +0530295static inline u64 fadump_calculate_reserve_size(void)
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000296{
Hari Bathini7b1b3b42019-09-11 20:26:59 +0530297 u64 base, size, bootmem_min;
Hari Bathini11550dc2017-05-08 15:56:28 -0700298 int ret;
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000299
Hari Bathini81d9eca2017-05-22 15:04:23 +0530300 if (fw_dump.reserve_bootvar)
301 pr_warn("'fadump_reserve_mem=' parameter is deprecated in favor of 'crashkernel=' parameter.\n");
302
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000303 /*
Hari Bathini11550dc2017-05-08 15:56:28 -0700304 * Check if the size is specified through crashkernel= cmdline
Hari Bathinie7467dc2017-05-22 15:04:47 +0530305 * option. If yes, then use that but ignore base as fadump reserves
306 * memory at a predefined offset.
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000307 */
Hari Bathini11550dc2017-05-08 15:56:28 -0700308 ret = parse_crashkernel(boot_command_line, memblock_phys_mem_size(),
309 &size, &base);
310 if (ret == 0 && size > 0) {
Hari Bathini48a316e2017-06-02 13:00:27 +0530311 unsigned long max_size;
312
Hari Bathini81d9eca2017-05-22 15:04:23 +0530313 if (fw_dump.reserve_bootvar)
314 pr_info("Using 'crashkernel=' parameter for memory reservation.\n");
315
Hari Bathini11550dc2017-05-08 15:56:28 -0700316 fw_dump.reserve_bootvar = (unsigned long)size;
Hari Bathini48a316e2017-06-02 13:00:27 +0530317
318 /*
319 * Adjust if the boot memory size specified is above
320 * the upper limit.
321 */
322 max_size = memblock_phys_mem_size() / MAX_BOOT_MEM_RATIO;
323 if (fw_dump.reserve_bootvar > max_size) {
324 fw_dump.reserve_bootvar = max_size;
325 pr_info("Adjusted boot memory size to %luMB\n",
326 (fw_dump.reserve_bootvar >> 20));
327 }
328
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000329 return fw_dump.reserve_bootvar;
Hari Bathini81d9eca2017-05-22 15:04:23 +0530330 } else if (fw_dump.reserve_bootvar) {
331 /*
332 * 'fadump_reserve_mem=' is being used to reserve memory
333 * for firmware-assisted dump.
334 */
335 return fw_dump.reserve_bootvar;
Hari Bathini11550dc2017-05-08 15:56:28 -0700336 }
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000337
338 /* divide by 20 to get 5% of value */
Hari Bathini48a316e2017-06-02 13:00:27 +0530339 size = memblock_phys_mem_size() / 20;
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000340
341 /* round it down in multiples of 256 */
342 size = size & ~0x0FFFFFFFUL;
343
344 /* Truncate to memory_limit. We don't want to over reserve the memory.*/
345 if (memory_limit && size > memory_limit)
346 size = memory_limit;
347
Hari Bathini7b1b3b42019-09-11 20:26:59 +0530348 bootmem_min = fw_dump.ops->fadump_get_bootmem_min();
349 return (size > bootmem_min ? size : bootmem_min);
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000350}
351
352/*
353 * Calculate the total memory size required to be reserved for
354 * firmware-assisted dump registration.
355 */
356static unsigned long get_fadump_area_size(void)
357{
358 unsigned long size = 0;
359
360 size += fw_dump.cpu_state_data_size;
361 size += fw_dump.hpte_region_size;
362 size += fw_dump.boot_memory_size;
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +0000363 size += sizeof(struct fadump_crash_info_header);
364 size += sizeof(struct elfhdr); /* ELF core header.*/
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000365 size += sizeof(struct elf_phdr); /* place holder for cpu notes */
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +0000366 /* Program headers for crash memory regions. */
367 size += sizeof(struct elf_phdr) * (memblock_num_regions(memory) + 2);
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000368
369 size = PAGE_ALIGN(size);
Hari Bathini742a2652019-09-11 20:20:57 +0530370
371 /* This is to hold kernel metadata on platforms that support it */
372 size += (fw_dump.ops->fadump_get_metadata_size ?
373 fw_dump.ops->fadump_get_metadata_size() : 0);
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000374 return size;
375}
376
Hari Bathini7dee93a2019-09-11 20:27:39 +0530377static int __init add_boot_mem_region(unsigned long rstart,
378 unsigned long rsize)
379{
380 int i = fw_dump.boot_mem_regs_cnt++;
381
382 if (fw_dump.boot_mem_regs_cnt > FADUMP_MAX_MEM_REGS) {
383 fw_dump.boot_mem_regs_cnt = FADUMP_MAX_MEM_REGS;
384 return 0;
385 }
386
387 pr_debug("Added boot memory range[%d] [%#016lx-%#016lx)\n",
388 i, rstart, (rstart + rsize));
389 fw_dump.boot_mem_addr[i] = rstart;
390 fw_dump.boot_mem_sz[i] = rsize;
391 return 1;
392}
393
394/*
395 * Firmware usually has a hard limit on the data it can copy per region.
396 * Honour that by splitting a memory range into multiple regions.
397 */
398static int __init add_boot_mem_regions(unsigned long mstart,
399 unsigned long msize)
400{
401 unsigned long rstart, rsize, max_size;
402 int ret = 1;
403
404 rstart = mstart;
405 max_size = fw_dump.max_copy_size ? fw_dump.max_copy_size : msize;
406 while (msize) {
407 if (msize > max_size)
408 rsize = max_size;
409 else
410 rsize = msize;
411
412 ret = add_boot_mem_region(rstart, rsize);
413 if (!ret)
414 break;
415
416 msize -= rsize;
417 rstart += rsize;
418 }
419
420 return ret;
421}
422
423static int __init fadump_get_boot_mem_regions(void)
424{
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700425 unsigned long size, cur_size, hole_size, last_end;
Hari Bathini7dee93a2019-09-11 20:27:39 +0530426 unsigned long mem_size = fw_dump.boot_memory_size;
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700427 phys_addr_t reg_start, reg_end;
Hari Bathini7dee93a2019-09-11 20:27:39 +0530428 int ret = 1;
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700429 u64 i;
Hari Bathini7dee93a2019-09-11 20:27:39 +0530430
431 fw_dump.boot_mem_regs_cnt = 0;
432
433 last_end = 0;
434 hole_size = 0;
435 cur_size = 0;
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700436 for_each_mem_range(i, &reg_start, &reg_end) {
437 size = reg_end - reg_start;
438 hole_size += (reg_start - last_end);
Hari Bathini7dee93a2019-09-11 20:27:39 +0530439
440 if ((cur_size + size) >= mem_size) {
441 size = (mem_size - cur_size);
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700442 ret = add_boot_mem_regions(reg_start, size);
Hari Bathini7dee93a2019-09-11 20:27:39 +0530443 break;
444 }
445
446 mem_size -= size;
447 cur_size += size;
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700448 ret = add_boot_mem_regions(reg_start, size);
Hari Bathini7dee93a2019-09-11 20:27:39 +0530449 if (!ret)
450 break;
451
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700452 last_end = reg_end;
Hari Bathini7dee93a2019-09-11 20:27:39 +0530453 }
454 fw_dump.boot_mem_top = PAGE_ALIGN(fw_dump.boot_memory_size + hole_size);
455
456 return ret;
457}
458
Hari Bathini140777a2020-04-20 14:26:22 +0530459/*
460 * Returns true, if the given range overlaps with reserved memory ranges
461 * starting at idx. Also, updates idx to index of overlapping memory range
462 * with the given memory range.
463 * False, otherwise.
464 */
465static bool overlaps_reserved_ranges(u64 base, u64 end, int *idx)
466{
467 bool ret = false;
468 int i;
469
470 for (i = *idx; i < reserved_mrange_info.mem_range_cnt; i++) {
471 u64 rbase = reserved_mrange_info.mem_ranges[i].base;
472 u64 rend = rbase + reserved_mrange_info.mem_ranges[i].size;
473
474 if (end <= rbase)
475 break;
476
477 if ((end > rbase) && (base < rend)) {
478 *idx = i;
479 ret = true;
480 break;
481 }
482 }
483
484 return ret;
485}
486
487/*
488 * Locate a suitable memory area to reserve memory for FADump. While at it,
489 * lookup reserved-ranges & avoid overlap with them, as they are used by F/W.
490 */
491static u64 __init fadump_locate_reserve_mem(u64 base, u64 size)
492{
493 struct fadump_memory_range *mrngs;
494 phys_addr_t mstart, mend;
495 int idx = 0;
496 u64 i, ret = 0;
497
498 mrngs = reserved_mrange_info.mem_ranges;
499 for_each_free_mem_range(i, NUMA_NO_NODE, MEMBLOCK_NONE,
500 &mstart, &mend, NULL) {
501 pr_debug("%llu) mstart: %llx, mend: %llx, base: %llx\n",
502 i, mstart, mend, base);
503
504 if (mstart > base)
505 base = PAGE_ALIGN(mstart);
506
507 while ((mend > base) && ((mend - base) >= size)) {
508 if (!overlaps_reserved_ranges(base, base+size, &idx)) {
509 ret = base;
510 goto out;
511 }
512
513 base = mrngs[idx].base + mrngs[idx].size;
514 base = PAGE_ALIGN(base);
515 }
516 }
517
518out:
519 return ret;
520}
521
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000522int __init fadump_reserve_mem(void)
523{
Hari Bathini140777a2020-04-20 14:26:22 +0530524 u64 base, size, mem_boundary, bootmem_min;
Hari Bathini6abec122019-09-11 20:20:41 +0530525 int ret = 1;
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000526
527 if (!fw_dump.fadump_enabled)
528 return 0;
529
530 if (!fw_dump.fadump_supported) {
Hari Bathini6abec122019-09-11 20:20:41 +0530531 pr_info("Firmware-Assisted Dump is not supported on this hardware\n");
532 goto error_out;
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000533 }
Hari Bathini742a2652019-09-11 20:20:57 +0530534
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +0000535 /*
536 * Initialize boot memory size
537 * If dump is active then we have already calculated the size during
538 * first kernel.
539 */
Hari Bathinif3512012019-09-11 20:19:44 +0530540 if (!fw_dump.dump_active) {
Hari Bathini6abec122019-09-11 20:20:41 +0530541 fw_dump.boot_memory_size =
542 PAGE_ALIGN(fadump_calculate_reserve_size());
Mahesh Salgaonkara4e92ce2018-08-20 13:47:17 +0530543#ifdef CONFIG_CMA
Hari Bathini579ca1a2019-09-11 20:24:28 +0530544 if (!fw_dump.nocma) {
Mahesh Salgaonkara4e92ce2018-08-20 13:47:17 +0530545 fw_dump.boot_memory_size =
Hari Bathini140777a2020-04-20 14:26:22 +0530546 ALIGN(fw_dump.boot_memory_size,
547 FADUMP_CMA_ALIGNMENT);
Hari Bathini579ca1a2019-09-11 20:24:28 +0530548 }
Mahesh Salgaonkara4e92ce2018-08-20 13:47:17 +0530549#endif
Hari Bathini7b1b3b42019-09-11 20:26:59 +0530550
551 bootmem_min = fw_dump.ops->fadump_get_bootmem_min();
552 if (fw_dump.boot_memory_size < bootmem_min) {
553 pr_err("Can't enable fadump with boot memory size (0x%lx) less than 0x%llx\n",
554 fw_dump.boot_memory_size, bootmem_min);
555 goto error_out;
556 }
Hari Bathini7dee93a2019-09-11 20:27:39 +0530557
558 if (!fadump_get_boot_mem_regions()) {
559 pr_err("Too many holes in boot memory area to enable fadump\n");
560 goto error_out;
561 }
Mahesh Salgaonkara4e92ce2018-08-20 13:47:17 +0530562 }
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000563
564 /*
565 * Calculate the memory boundary.
566 * If memory_limit is less than actual memory boundary then reserve
567 * the memory for fadump beyond the memory_limit and adjust the
568 * memory_limit accordingly, so that the running kernel can run with
569 * specified memory_limit.
570 */
571 if (memory_limit && memory_limit < memblock_end_of_DRAM()) {
572 size = get_fadump_area_size();
573 if ((memory_limit + size) < memblock_end_of_DRAM())
574 memory_limit += size;
575 else
576 memory_limit = memblock_end_of_DRAM();
577 printk(KERN_INFO "Adjusted memory_limit for firmware-assisted"
Suzuki Poulosea84fcd42012-08-21 01:42:33 +0000578 " dump, now %#016llx\n", memory_limit);
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000579 }
580 if (memory_limit)
Hari Bathini6abec122019-09-11 20:20:41 +0530581 mem_boundary = memory_limit;
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000582 else
Hari Bathini6abec122019-09-11 20:20:41 +0530583 mem_boundary = memblock_end_of_DRAM();
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000584
Hari Bathini7dee93a2019-09-11 20:27:39 +0530585 base = fw_dump.boot_mem_top;
Hari Bathini8255da92019-09-11 20:19:28 +0530586 size = get_fadump_area_size();
587 fw_dump.reserve_dump_area_size = size;
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000588 if (fw_dump.dump_active) {
Mahesh Salgaonkarb71a6932018-04-10 19:11:16 +0530589 pr_info("Firmware-assisted dump is active.\n");
590
Hari Bathini85975382018-04-10 19:11:31 +0530591#ifdef CONFIG_HUGETLB_PAGE
592 /*
593 * FADump capture kernel doesn't care much about hugepages.
594 * In fact, handling hugepages in capture kernel is asking for
595 * trouble. So, disable HugeTLB support when fadump is active.
596 */
597 hugetlb_disabled = true;
598#endif
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000599 /*
600 * If last boot has crashed then reserve all the memory
Hari Bathinib2a815a2019-09-11 20:25:49 +0530601 * above boot memory size so that we don't touch it until
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000602 * dump is written to disk by userspace tool. This memory
Hari Bathinib2a815a2019-09-11 20:25:49 +0530603 * can be released for general use by invalidating fadump.
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000604 */
Hari Bathinib2a815a2019-09-11 20:25:49 +0530605 fadump_reserve_crash_area(base);
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +0000606
Hari Bathinif3512012019-09-11 20:19:44 +0530607 pr_debug("fadumphdr_addr = %#016lx\n", fw_dump.fadumphdr_addr);
608 pr_debug("Reserve dump area start address: 0x%lx\n",
609 fw_dump.reserve_dump_area_start);
Hari Bathini8255da92019-09-11 20:19:28 +0530610 } else {
611 /*
Hari Bathinif6e6bed2017-03-17 02:35:26 +0530612 * Reserve memory at an offset closer to bottom of the RAM to
Hari Bathini579ca1a2019-09-11 20:24:28 +0530613 * minimize the impact of memory hot-remove operation.
Hari Bathinif6e6bed2017-03-17 02:35:26 +0530614 */
Hari Bathini140777a2020-04-20 14:26:22 +0530615 base = fadump_locate_reserve_mem(base, size);
Hari Bathinif6e6bed2017-03-17 02:35:26 +0530616
Hari Bathini9a2921e2020-05-27 15:14:35 +0530617 if (!base || (base + size > mem_boundary)) {
Hari Bathini742a2652019-09-11 20:20:57 +0530618 pr_err("Failed to find memory chunk for reservation!\n");
619 goto error_out;
620 }
621 fw_dump.reserve_dump_area_start = base;
622
623 /*
624 * Calculate the kernel metadata address and register it with
625 * f/w if the platform supports.
626 */
627 if (fw_dump.ops->fadump_setup_metadata &&
628 (fw_dump.ops->fadump_setup_metadata(&fw_dump) < 0))
629 goto error_out;
630
631 if (memblock_reserve(base, size)) {
Hari Bathini6abec122019-09-11 20:20:41 +0530632 pr_err("Failed to reserve memory!\n");
633 goto error_out;
634 }
635
636 pr_info("Reserved %lldMB of memory at %#016llx (System RAM: %lldMB)\n",
637 (size >> 20), base, (memblock_phys_mem_size() >> 20));
Hari Bathinif6e6bed2017-03-17 02:35:26 +0530638
Hari Bathini6abec122019-09-11 20:20:41 +0530639 ret = fadump_cma_init();
Mahesh Salgaonkara4e92ce2018-08-20 13:47:17 +0530640 }
Hari Bathini6abec122019-09-11 20:20:41 +0530641
642 return ret;
643error_out:
644 fw_dump.fadump_enabled = 0;
645 return 0;
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000646}
647
648/* Look for fadump= cmdline option. */
649static int __init early_fadump_param(char *p)
650{
651 if (!p)
652 return 1;
653
654 if (strncmp(p, "on", 2) == 0)
655 fw_dump.fadump_enabled = 1;
656 else if (strncmp(p, "off", 3) == 0)
657 fw_dump.fadump_enabled = 0;
Mahesh Salgaonkara4e92ce2018-08-20 13:47:17 +0530658 else if (strncmp(p, "nocma", 5) == 0) {
659 fw_dump.fadump_enabled = 1;
660 fw_dump.nocma = 1;
661 }
Mahesh Salgaonkareb39c882012-02-16 01:14:22 +0000662
663 return 0;
664}
665early_param("fadump", early_fadump_param);
666
Hari Bathini81d9eca2017-05-22 15:04:23 +0530667/*
668 * Look for fadump_reserve_mem= cmdline option
669 * TODO: Remove references to 'fadump_reserve_mem=' parameter,
670 * the sooner 'crashkernel=' parameter is accustomed to.
671 */
672static int __init early_fadump_reserve_mem(char *p)
673{
674 if (p)
675 fw_dump.reserve_bootvar = memparse(p, &p);
676 return 0;
677}
678early_param("fadump_reserve_mem", early_fadump_reserve_mem);
679
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000680void crash_fadump(struct pt_regs *regs, const char *str)
681{
Sourabh Jainba608c42020-07-13 10:54:35 +0530682 unsigned int msecs;
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000683 struct fadump_crash_info_header *fdh = NULL;
Mahesh Salgaonkarf2a5e8f2016-10-24 23:51:51 +0530684 int old_cpu, this_cpu;
Sourabh Jainba608c42020-07-13 10:54:35 +0530685 /* Do not include first CPU */
686 unsigned int ncpus = num_online_cpus() - 1;
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000687
Nicholas Piggin6fcd6ba2017-07-19 16:59:11 +1000688 if (!should_fadump_crash())
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000689 return;
690
Mahesh Salgaonkarf2a5e8f2016-10-24 23:51:51 +0530691 /*
692 * old_cpu == -1 means this is the first CPU which has come here,
693 * go ahead and trigger fadump.
694 *
695 * old_cpu != -1 means some other CPU has already on it's way
696 * to trigger fadump, just keep looping here.
697 */
698 this_cpu = smp_processor_id();
699 old_cpu = cmpxchg(&crashing_cpu, -1, this_cpu);
700
701 if (old_cpu != -1) {
Sourabh Jainba608c42020-07-13 10:54:35 +0530702 atomic_inc(&cpus_in_fadump);
703
Mahesh Salgaonkarf2a5e8f2016-10-24 23:51:51 +0530704 /*
705 * We can't loop here indefinitely. Wait as long as fadump
706 * is in force. If we race with fadump un-registration this
707 * loop will break and then we go down to normal panic path
708 * and reboot. If fadump is in force the first crashing
709 * cpu will definitely trigger fadump.
710 */
711 while (fw_dump.dump_registered)
712 cpu_relax();
713 return;
714 }
715
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000716 fdh = __va(fw_dump.fadumphdr_addr);
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000717 fdh->crashing_cpu = crashing_cpu;
718 crash_save_vmcoreinfo();
719
720 if (regs)
721 fdh->regs = *regs;
722 else
723 ppc_save_regs(&fdh->regs);
724
Rasmus Villemoesa0512162016-01-20 15:00:13 -0800725 fdh->online_mask = *cpu_online_mask;
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000726
Sourabh Jainba608c42020-07-13 10:54:35 +0530727 /*
728 * If we came in via system reset, wait a while for the secondary
729 * CPUs to enter.
730 */
731 if (TRAP(&(fdh->regs)) == 0x100) {
732 msecs = CRASH_TIMEOUT;
733 while ((atomic_read(&cpus_in_fadump) < ncpus) && (--msecs > 0))
734 mdelay(1);
735 }
736
Hari Bathini41a65d12019-09-11 20:18:57 +0530737 fw_dump.ops->fadump_trigger(fdh, str);
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000738}
739
Hari Bathini7f0ad112019-09-11 20:16:52 +0530740u32 *fadump_regs_to_elf_notes(u32 *buf, struct pt_regs *regs)
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000741{
742 struct elf_prstatus prstatus;
743
744 memset(&prstatus, 0, sizeof(prstatus));
745 /*
746 * FIXME: How do i get PID? Do I really need it?
747 * prstatus.pr_pid = ????
748 */
749 elf_core_copy_kernel_regs(&prstatus.pr_reg, regs);
Hari Bathini22bd0172017-05-08 15:56:24 -0700750 buf = append_elf_note(buf, CRASH_CORE_NOTE_NAME, NT_PRSTATUS,
751 &prstatus, sizeof(prstatus));
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000752 return buf;
753}
754
Hari Bathini7f0ad112019-09-11 20:16:52 +0530755void fadump_update_elfcore_header(char *bufp)
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000756{
757 struct elfhdr *elf;
758 struct elf_phdr *phdr;
759
760 elf = (struct elfhdr *)bufp;
761 bufp += sizeof(struct elfhdr);
762
763 /* First note is a place holder for cpu notes info. */
764 phdr = (struct elf_phdr *)bufp;
765
766 if (phdr->p_type == PT_NOTE) {
Hari Bathini961cf262019-09-11 20:16:36 +0530767 phdr->p_paddr = __pa(fw_dump.cpu_notes_buf_vaddr);
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000768 phdr->p_offset = phdr->p_paddr;
769 phdr->p_filesz = fw_dump.cpu_notes_buf_size;
770 phdr->p_memsz = fw_dump.cpu_notes_buf_size;
771 }
772 return;
773}
774
Hari Bathini961cf262019-09-11 20:16:36 +0530775static void *fadump_alloc_buffer(unsigned long size)
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000776{
Hari Bathini72aa6512019-09-11 20:17:56 +0530777 unsigned long count, i;
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000778 struct page *page;
Hari Bathini72aa6512019-09-11 20:17:56 +0530779 void *vaddr;
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000780
Hari Bathini72aa6512019-09-11 20:17:56 +0530781 vaddr = alloc_pages_exact(size, GFP_KERNEL | __GFP_ZERO);
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000782 if (!vaddr)
783 return NULL;
784
Hari Bathini72aa6512019-09-11 20:17:56 +0530785 count = PAGE_ALIGN(size) / PAGE_SIZE;
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000786 page = virt_to_page(vaddr);
787 for (i = 0; i < count; i++)
Hari Bathini72aa6512019-09-11 20:17:56 +0530788 mark_page_reserved(page + i);
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000789 return vaddr;
790}
791
Hari Bathini961cf262019-09-11 20:16:36 +0530792static void fadump_free_buffer(unsigned long vaddr, unsigned long size)
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000793{
Hari Bathini72aa6512019-09-11 20:17:56 +0530794 free_reserved_area((void *)vaddr, (void *)(vaddr + size), -1, NULL);
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +0000795}
796
Hari Bathini7f0ad112019-09-11 20:16:52 +0530797s32 fadump_setup_cpu_notes_buf(u32 num_cpus)
Hari Bathini961cf262019-09-11 20:16:36 +0530798{
799 /* Allocate buffer to hold cpu crash notes. */
800 fw_dump.cpu_notes_buf_size = num_cpus * sizeof(note_buf_t);
801 fw_dump.cpu_notes_buf_size = PAGE_ALIGN(fw_dump.cpu_notes_buf_size);
802 fw_dump.cpu_notes_buf_vaddr =
803 (unsigned long)fadump_alloc_buffer(fw_dump.cpu_notes_buf_size);
804 if (!fw_dump.cpu_notes_buf_vaddr) {
805 pr_err("Failed to allocate %ld bytes for CPU notes buffer\n",
806 fw_dump.cpu_notes_buf_size);
807 return -ENOMEM;
808 }
809
810 pr_debug("Allocated buffer for cpu notes of size %ld at 0x%lx\n",
811 fw_dump.cpu_notes_buf_size,
812 fw_dump.cpu_notes_buf_vaddr);
813 return 0;
814}
815
Hari Bathini7f0ad112019-09-11 20:16:52 +0530816void fadump_free_cpu_notes_buf(void)
Hari Bathini961cf262019-09-11 20:16:36 +0530817{
818 if (!fw_dump.cpu_notes_buf_vaddr)
819 return;
820
821 fadump_free_buffer(fw_dump.cpu_notes_buf_vaddr,
822 fw_dump.cpu_notes_buf_size);
823 fw_dump.cpu_notes_buf_vaddr = 0;
824 fw_dump.cpu_notes_buf_size = 0;
825}
826
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530827static void fadump_free_mem_ranges(struct fadump_mrange_info *mrange_info)
Hari Bathini1bd6a1c2018-08-07 02:12:45 +0530828{
Hari Bathini02c04e32020-04-20 14:26:09 +0530829 if (mrange_info->is_static) {
830 mrange_info->mem_range_cnt = 0;
831 return;
832 }
833
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530834 kfree(mrange_info->mem_ranges);
Hari Bathini02c04e32020-04-20 14:26:09 +0530835 memset((void *)((u64)mrange_info + RNG_NAME_SZ), 0,
836 (sizeof(struct fadump_mrange_info) - RNG_NAME_SZ));
Hari Bathini1bd6a1c2018-08-07 02:12:45 +0530837}
838
839/*
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530840 * Allocate or reallocate mem_ranges array in incremental units
Hari Bathini1bd6a1c2018-08-07 02:12:45 +0530841 * of PAGE_SIZE.
842 */
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530843static int fadump_alloc_mem_ranges(struct fadump_mrange_info *mrange_info)
Hari Bathini1bd6a1c2018-08-07 02:12:45 +0530844{
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530845 struct fadump_memory_range *new_array;
Hari Bathini1bd6a1c2018-08-07 02:12:45 +0530846 u64 new_size;
847
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530848 new_size = mrange_info->mem_ranges_sz + PAGE_SIZE;
849 pr_debug("Allocating %llu bytes of memory for %s memory ranges\n",
850 new_size, mrange_info->name);
Hari Bathini1bd6a1c2018-08-07 02:12:45 +0530851
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530852 new_array = krealloc(mrange_info->mem_ranges, new_size, GFP_KERNEL);
Hari Bathini1bd6a1c2018-08-07 02:12:45 +0530853 if (new_array == NULL) {
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530854 pr_err("Insufficient memory for setting up %s memory ranges\n",
855 mrange_info->name);
856 fadump_free_mem_ranges(mrange_info);
Hari Bathini1bd6a1c2018-08-07 02:12:45 +0530857 return -ENOMEM;
858 }
859
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530860 mrange_info->mem_ranges = new_array;
861 mrange_info->mem_ranges_sz = new_size;
862 mrange_info->max_mem_ranges = (new_size /
863 sizeof(struct fadump_memory_range));
Hari Bathini1bd6a1c2018-08-07 02:12:45 +0530864 return 0;
865}
866
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530867static inline int fadump_add_mem_range(struct fadump_mrange_info *mrange_info,
868 u64 base, u64 end)
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +0000869{
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530870 struct fadump_memory_range *mem_ranges = mrange_info->mem_ranges;
Hari Bathiniced1bf52018-08-07 02:12:54 +0530871 bool is_adjacent = false;
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530872 u64 start, size;
Hari Bathiniced1bf52018-08-07 02:12:54 +0530873
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +0000874 if (base == end)
Hari Bathini1bd6a1c2018-08-07 02:12:45 +0530875 return 0;
876
Hari Bathiniced1bf52018-08-07 02:12:54 +0530877 /*
878 * Fold adjacent memory ranges to bring down the memory ranges/
879 * PT_LOAD segments count.
880 */
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530881 if (mrange_info->mem_range_cnt) {
882 start = mem_ranges[mrange_info->mem_range_cnt - 1].base;
883 size = mem_ranges[mrange_info->mem_range_cnt - 1].size;
Hari Bathini1bd6a1c2018-08-07 02:12:45 +0530884
Hari Bathiniced1bf52018-08-07 02:12:54 +0530885 if ((start + size) == base)
886 is_adjacent = true;
887 }
888 if (!is_adjacent) {
889 /* resize the array on reaching the limit */
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530890 if (mrange_info->mem_range_cnt == mrange_info->max_mem_ranges) {
Hari Bathiniced1bf52018-08-07 02:12:54 +0530891 int ret;
892
Hari Bathini02c04e32020-04-20 14:26:09 +0530893 if (mrange_info->is_static) {
894 pr_err("Reached array size limit for %s memory ranges\n",
895 mrange_info->name);
896 return -ENOSPC;
897 }
898
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530899 ret = fadump_alloc_mem_ranges(mrange_info);
Hari Bathiniced1bf52018-08-07 02:12:54 +0530900 if (ret)
901 return ret;
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530902
903 /* Update to the new resized array */
904 mem_ranges = mrange_info->mem_ranges;
Hari Bathiniced1bf52018-08-07 02:12:54 +0530905 }
906
907 start = base;
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530908 mem_ranges[mrange_info->mem_range_cnt].base = start;
909 mrange_info->mem_range_cnt++;
Hari Bathini1bd6a1c2018-08-07 02:12:45 +0530910 }
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +0000911
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530912 mem_ranges[mrange_info->mem_range_cnt - 1].size = (end - start);
913 pr_debug("%s_memory_range[%d] [%#016llx-%#016llx], %#llx bytes\n",
914 mrange_info->name, (mrange_info->mem_range_cnt - 1),
915 start, end - 1, (end - start));
Hari Bathini1bd6a1c2018-08-07 02:12:45 +0530916 return 0;
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +0000917}
918
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530919static int fadump_exclude_reserved_area(u64 start, u64 end)
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +0000920{
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530921 u64 ra_start, ra_end;
Hari Bathini1bd6a1c2018-08-07 02:12:45 +0530922 int ret = 0;
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +0000923
924 ra_start = fw_dump.reserve_dump_area_start;
925 ra_end = ra_start + fw_dump.reserve_dump_area_size;
926
927 if ((ra_start < end) && (ra_end > start)) {
928 if ((start < ra_start) && (end > ra_end)) {
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530929 ret = fadump_add_mem_range(&crash_mrange_info,
930 start, ra_start);
Hari Bathini1bd6a1c2018-08-07 02:12:45 +0530931 if (ret)
932 return ret;
933
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530934 ret = fadump_add_mem_range(&crash_mrange_info,
935 ra_end, end);
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +0000936 } else if (start < ra_start) {
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530937 ret = fadump_add_mem_range(&crash_mrange_info,
938 start, ra_start);
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +0000939 } else if (ra_end < end) {
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530940 ret = fadump_add_mem_range(&crash_mrange_info,
941 ra_end, end);
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +0000942 }
943 } else
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530944 ret = fadump_add_mem_range(&crash_mrange_info, start, end);
Hari Bathini1bd6a1c2018-08-07 02:12:45 +0530945
946 return ret;
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +0000947}
948
949static int fadump_init_elfcore_header(char *bufp)
950{
951 struct elfhdr *elf;
952
953 elf = (struct elfhdr *) bufp;
954 bufp += sizeof(struct elfhdr);
955 memcpy(elf->e_ident, ELFMAG, SELFMAG);
956 elf->e_ident[EI_CLASS] = ELF_CLASS;
957 elf->e_ident[EI_DATA] = ELF_DATA;
958 elf->e_ident[EI_VERSION] = EV_CURRENT;
959 elf->e_ident[EI_OSABI] = ELF_OSABI;
960 memset(elf->e_ident+EI_PAD, 0, EI_NIDENT-EI_PAD);
961 elf->e_type = ET_CORE;
962 elf->e_machine = ELF_ARCH;
963 elf->e_version = EV_CURRENT;
964 elf->e_entry = 0;
965 elf->e_phoff = sizeof(struct elfhdr);
966 elf->e_shoff = 0;
Daniel Axtensd8bced22016-09-06 15:32:42 +1000967#if defined(_CALL_ELF)
968 elf->e_flags = _CALL_ELF;
969#else
970 elf->e_flags = 0;
971#endif
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +0000972 elf->e_ehsize = sizeof(struct elfhdr);
973 elf->e_phentsize = sizeof(struct elf_phdr);
974 elf->e_phnum = 0;
975 elf->e_shentsize = 0;
976 elf->e_shnum = 0;
977 elf->e_shstrndx = 0;
978
979 return 0;
980}
981
982/*
983 * Traverse through memblock structure and setup crash memory ranges. These
984 * ranges will be used create PT_LOAD program headers in elfcore header.
985 */
Hari Bathini1bd6a1c2018-08-07 02:12:45 +0530986static int fadump_setup_crash_memory_ranges(void)
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +0000987{
Mike Rapoportb10d6bc2020-10-13 16:58:08 -0700988 u64 i, start, end;
989 int ret;
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +0000990
991 pr_debug("Setup crash memory ranges.\n");
Hari Bathinie4fc48f2019-09-11 20:25:05 +0530992 crash_mrange_info.mem_range_cnt = 0;
Hari Bathiniced1bf52018-08-07 02:12:54 +0530993
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +0000994 /*
Hari Bathini7dee93a2019-09-11 20:27:39 +0530995 * Boot memory region(s) registered with firmware are moved to
996 * different location at the time of crash. Create separate program
997 * header(s) for this memory chunk(s) with the correct offset.
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +0000998 */
Hari Bathini7dee93a2019-09-11 20:27:39 +0530999 for (i = 0; i < fw_dump.boot_mem_regs_cnt; i++) {
1000 start = fw_dump.boot_mem_addr[i];
1001 end = start + fw_dump.boot_mem_sz[i];
1002 ret = fadump_add_mem_range(&crash_mrange_info, start, end);
1003 if (ret)
1004 return ret;
1005 }
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001006
Mike Rapoportb10d6bc2020-10-13 16:58:08 -07001007 for_each_mem_range(i, &start, &end) {
Hari Bathinia77af5522017-06-01 22:50:38 +05301008 /*
Hari Bathini7dee93a2019-09-11 20:27:39 +05301009 * skip the memory chunk that is already added
1010 * (0 through boot_memory_top).
Hari Bathinia77af5522017-06-01 22:50:38 +05301011 */
Hari Bathini7dee93a2019-09-11 20:27:39 +05301012 if (start < fw_dump.boot_mem_top) {
1013 if (end > fw_dump.boot_mem_top)
1014 start = fw_dump.boot_mem_top;
Hari Bathinia77af5522017-06-01 22:50:38 +05301015 else
1016 continue;
1017 }
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001018
1019 /* add this range excluding the reserved dump area. */
Hari Bathini1bd6a1c2018-08-07 02:12:45 +05301020 ret = fadump_exclude_reserved_area(start, end);
1021 if (ret)
1022 return ret;
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001023 }
Hari Bathini1bd6a1c2018-08-07 02:12:45 +05301024
1025 return 0;
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001026}
1027
Mahesh Salgaonkard34c5f22012-02-16 01:14:53 +00001028/*
1029 * If the given physical address falls within the boot memory region then
1030 * return the relocated address that points to the dump region reserved
1031 * for saving initial boot memory contents.
1032 */
1033static inline unsigned long fadump_relocate(unsigned long paddr)
1034{
Hari Bathini7dee93a2019-09-11 20:27:39 +05301035 unsigned long raddr, rstart, rend, rlast, hole_size;
1036 int i;
1037
1038 hole_size = 0;
1039 rlast = 0;
1040 raddr = paddr;
1041 for (i = 0; i < fw_dump.boot_mem_regs_cnt; i++) {
1042 rstart = fw_dump.boot_mem_addr[i];
1043 rend = rstart + fw_dump.boot_mem_sz[i];
1044 hole_size += (rstart - rlast);
1045
1046 if (paddr >= rstart && paddr < rend) {
1047 raddr += fw_dump.boot_mem_dest_addr - hole_size;
1048 break;
1049 }
1050
1051 rlast = rend;
1052 }
1053
1054 pr_debug("vmcoreinfo: paddr = 0x%lx, raddr = 0x%lx\n", paddr, raddr);
1055 return raddr;
Mahesh Salgaonkard34c5f22012-02-16 01:14:53 +00001056}
1057
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001058static int fadump_create_elfcore_headers(char *bufp)
1059{
Hari Bathini7dee93a2019-09-11 20:27:39 +05301060 unsigned long long raddr, offset;
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001061 struct elf_phdr *phdr;
Hari Bathini7dee93a2019-09-11 20:27:39 +05301062 struct elfhdr *elf;
1063 int i, j;
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001064
1065 fadump_init_elfcore_header(bufp);
1066 elf = (struct elfhdr *)bufp;
1067 bufp += sizeof(struct elfhdr);
1068
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +00001069 /*
1070 * setup ELF PT_NOTE, place holder for cpu notes info. The notes info
1071 * will be populated during second kernel boot after crash. Hence
1072 * this PT_NOTE will always be the first elf note.
1073 *
1074 * NOTE: Any new ELF note addition should be placed after this note.
1075 */
1076 phdr = (struct elf_phdr *)bufp;
1077 bufp += sizeof(struct elf_phdr);
1078 phdr->p_type = PT_NOTE;
1079 phdr->p_flags = 0;
1080 phdr->p_vaddr = 0;
1081 phdr->p_align = 0;
1082
1083 phdr->p_offset = 0;
1084 phdr->p_paddr = 0;
1085 phdr->p_filesz = 0;
1086 phdr->p_memsz = 0;
1087
1088 (elf->e_phnum)++;
1089
Mahesh Salgaonkard34c5f22012-02-16 01:14:53 +00001090 /* setup ELF PT_NOTE for vmcoreinfo */
1091 phdr = (struct elf_phdr *)bufp;
1092 bufp += sizeof(struct elf_phdr);
1093 phdr->p_type = PT_NOTE;
1094 phdr->p_flags = 0;
1095 phdr->p_vaddr = 0;
1096 phdr->p_align = 0;
1097
1098 phdr->p_paddr = fadump_relocate(paddr_vmcoreinfo_note());
1099 phdr->p_offset = phdr->p_paddr;
Xunlei Pang5203f492017-07-12 14:33:17 -07001100 phdr->p_memsz = phdr->p_filesz = VMCOREINFO_NOTE_SIZE;
Mahesh Salgaonkard34c5f22012-02-16 01:14:53 +00001101
1102 /* Increment number of program headers. */
1103 (elf->e_phnum)++;
1104
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001105 /* setup PT_LOAD sections. */
Hari Bathini7dee93a2019-09-11 20:27:39 +05301106 j = 0;
1107 offset = 0;
1108 raddr = fw_dump.boot_mem_addr[0];
Hari Bathinie4fc48f2019-09-11 20:25:05 +05301109 for (i = 0; i < crash_mrange_info.mem_range_cnt; i++) {
1110 u64 mbase, msize;
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001111
Hari Bathinie4fc48f2019-09-11 20:25:05 +05301112 mbase = crash_mrange_info.mem_ranges[i].base;
1113 msize = crash_mrange_info.mem_ranges[i].size;
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001114 if (!msize)
1115 continue;
1116
1117 phdr = (struct elf_phdr *)bufp;
1118 bufp += sizeof(struct elf_phdr);
1119 phdr->p_type = PT_LOAD;
1120 phdr->p_flags = PF_R|PF_W|PF_X;
1121 phdr->p_offset = mbase;
1122
Hari Bathini7dee93a2019-09-11 20:27:39 +05301123 if (mbase == raddr) {
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001124 /*
Hari Bathinibecd91d2019-09-11 20:27:26 +05301125 * The entire real memory region will be moved by
1126 * firmware to the specified destination_address.
1127 * Hence set the correct offset.
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001128 */
Hari Bathini7dee93a2019-09-11 20:27:39 +05301129 phdr->p_offset = fw_dump.boot_mem_dest_addr + offset;
1130 if (j < (fw_dump.boot_mem_regs_cnt - 1)) {
1131 offset += fw_dump.boot_mem_sz[j];
1132 raddr = fw_dump.boot_mem_addr[++j];
1133 }
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001134 }
1135
1136 phdr->p_paddr = mbase;
1137 phdr->p_vaddr = (unsigned long)__va(mbase);
1138 phdr->p_filesz = msize;
1139 phdr->p_memsz = msize;
1140 phdr->p_align = 0;
1141
1142 /* Increment number of program headers. */
1143 (elf->e_phnum)++;
1144 }
1145 return 0;
1146}
1147
1148static unsigned long init_fadump_header(unsigned long addr)
1149{
1150 struct fadump_crash_info_header *fdh;
1151
1152 if (!addr)
1153 return 0;
1154
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001155 fdh = __va(addr);
1156 addr += sizeof(struct fadump_crash_info_header);
1157
1158 memset(fdh, 0, sizeof(struct fadump_crash_info_header));
1159 fdh->magic_number = FADUMP_CRASH_INFO_MAGIC;
1160 fdh->elfcorehdr_addr = addr;
Mahesh Salgaonkarebaeb5a2012-02-16 01:14:45 +00001161 /* We will set the crashing cpu id in crash_fadump() during crash. */
Hari Bathini0226e552019-09-11 20:18:14 +05301162 fdh->crashing_cpu = FADUMP_CPU_UNKNOWN;
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001163
1164 return addr;
1165}
1166
Michal Suchanek98b8cd72017-05-27 17:46:15 +02001167static int register_fadump(void)
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001168{
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001169 unsigned long addr;
1170 void *vaddr;
Hari Bathini1bd6a1c2018-08-07 02:12:45 +05301171 int ret;
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001172
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001173 /*
1174 * If no memory is reserved then we can not register for firmware-
1175 * assisted dump.
1176 */
1177 if (!fw_dump.reserve_dump_area_size)
Michal Suchanek98b8cd72017-05-27 17:46:15 +02001178 return -ENODEV;
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001179
Hari Bathini1bd6a1c2018-08-07 02:12:45 +05301180 ret = fadump_setup_crash_memory_ranges();
1181 if (ret)
1182 return ret;
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001183
Hari Bathini41a65d12019-09-11 20:18:57 +05301184 addr = fw_dump.fadumphdr_addr;
1185
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001186 /* Initialize fadump crash info header. */
1187 addr = init_fadump_header(addr);
1188 vaddr = __va(addr);
1189
1190 pr_debug("Creating ELF core headers at %#016lx\n", addr);
1191 fadump_create_elfcore_headers(vaddr);
1192
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001193 /* register the future kernel dump with firmware. */
Hari Bathini41a65d12019-09-11 20:18:57 +05301194 pr_debug("Registering for firmware-assisted kernel dump...\n");
1195 return fw_dump.ops->fadump_register(&fw_dump);
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001196}
1197
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001198void fadump_cleanup(void)
1199{
Hari Bathini2790d012019-09-11 20:21:16 +05301200 if (!fw_dump.fadump_supported)
1201 return;
1202
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001203 /* Invalidate the registration only if dump is active. */
1204 if (fw_dump.dump_active) {
Hari Bathinif3512012019-09-11 20:19:44 +05301205 pr_debug("Invalidating firmware-assisted dump registration\n");
1206 fw_dump.ops->fadump_invalidate(&fw_dump);
Mahesh Salgaonkar722cde72018-04-27 11:53:18 +05301207 } else if (fw_dump.dump_registered) {
1208 /* Un-register Firmware-assisted dump if it was registered. */
Hari Bathini41a65d12019-09-11 20:18:57 +05301209 fw_dump.ops->fadump_unregister(&fw_dump);
Hari Bathinie4fc48f2019-09-11 20:25:05 +05301210 fadump_free_mem_ranges(&crash_mrange_info);
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001211 }
Hari Bathini2790d012019-09-11 20:21:16 +05301212
1213 if (fw_dump.ops->fadump_cleanup)
1214 fw_dump.ops->fadump_cleanup(&fw_dump);
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001215}
1216
Hari Bathini68fa6472017-06-02 01:10:10 +05301217static void fadump_free_reserved_memory(unsigned long start_pfn,
1218 unsigned long end_pfn)
1219{
1220 unsigned long pfn;
1221 unsigned long time_limit = jiffies + HZ;
1222
1223 pr_info("freeing reserved memory (0x%llx - 0x%llx)\n",
1224 PFN_PHYS(start_pfn), PFN_PHYS(end_pfn));
1225
1226 for (pfn = start_pfn; pfn < end_pfn; pfn++) {
1227 free_reserved_page(pfn_to_page(pfn));
1228
1229 if (time_after(jiffies, time_limit)) {
1230 cond_resched();
1231 time_limit = jiffies + HZ;
1232 }
1233 }
1234}
1235
1236/*
1237 * Skip memory holes and free memory that was actually reserved.
1238 */
Hari Bathinidda9dbf2019-09-11 20:25:36 +05301239static void fadump_release_reserved_area(u64 start, u64 end)
Hari Bathini68fa6472017-06-02 01:10:10 +05301240{
Mike Rapoportb10d6bc2020-10-13 16:58:08 -07001241 unsigned long reg_spfn, reg_epfn;
1242 u64 tstart, tend, spfn, epfn;
1243 int i;
Hari Bathini68fa6472017-06-02 01:10:10 +05301244
Hari Bathinidda9dbf2019-09-11 20:25:36 +05301245 spfn = PHYS_PFN(start);
1246 epfn = PHYS_PFN(end);
Mike Rapoportc9118e62020-10-13 16:58:03 -07001247
1248 for_each_mem_pfn_range(i, MAX_NUMNODES, &reg_spfn, &reg_epfn, NULL) {
1249 tstart = max_t(u64, spfn, reg_spfn);
1250 tend = min_t(u64, epfn, reg_epfn);
1251
Hari Bathini68fa6472017-06-02 01:10:10 +05301252 if (tstart < tend) {
1253 fadump_free_reserved_memory(tstart, tend);
1254
Hari Bathinidda9dbf2019-09-11 20:25:36 +05301255 if (tend == epfn)
Hari Bathini68fa6472017-06-02 01:10:10 +05301256 break;
1257
Hari Bathinidda9dbf2019-09-11 20:25:36 +05301258 spfn = tend;
Hari Bathini68fa6472017-06-02 01:10:10 +05301259 }
1260 }
1261}
1262
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001263/*
Hari Bathinidda9dbf2019-09-11 20:25:36 +05301264 * Sort the mem ranges in-place and merge adjacent ranges
1265 * to minimize the memory ranges count.
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001266 */
Hari Bathinidda9dbf2019-09-11 20:25:36 +05301267static void sort_and_merge_mem_ranges(struct fadump_mrange_info *mrange_info)
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001268{
Hari Bathinidda9dbf2019-09-11 20:25:36 +05301269 struct fadump_memory_range *mem_ranges;
1270 struct fadump_memory_range tmp_range;
1271 u64 base, size;
1272 int i, j, idx;
1273
1274 if (!reserved_mrange_info.mem_range_cnt)
1275 return;
1276
1277 /* Sort the memory ranges */
1278 mem_ranges = mrange_info->mem_ranges;
1279 for (i = 0; i < mrange_info->mem_range_cnt; i++) {
1280 idx = i;
1281 for (j = (i + 1); j < mrange_info->mem_range_cnt; j++) {
1282 if (mem_ranges[idx].base > mem_ranges[j].base)
1283 idx = j;
1284 }
1285 if (idx != i) {
1286 tmp_range = mem_ranges[idx];
1287 mem_ranges[idx] = mem_ranges[i];
1288 mem_ranges[i] = tmp_range;
1289 }
1290 }
1291
1292 /* Merge adjacent reserved ranges */
1293 idx = 0;
1294 for (i = 1; i < mrange_info->mem_range_cnt; i++) {
1295 base = mem_ranges[i-1].base;
1296 size = mem_ranges[i-1].size;
1297 if (mem_ranges[i].base == (base + size))
1298 mem_ranges[idx].size += mem_ranges[i].size;
1299 else {
1300 idx++;
1301 if (i == idx)
1302 continue;
1303
1304 mem_ranges[idx] = mem_ranges[i];
1305 }
1306 }
1307 mrange_info->mem_range_cnt = idx + 1;
1308}
1309
1310/*
1311 * Scan reserved-ranges to consider them while reserving/releasing
1312 * memory for FADump.
1313 */
Hari Bathini02c04e32020-04-20 14:26:09 +05301314static void __init early_init_dt_scan_reserved_ranges(unsigned long node)
Hari Bathinidda9dbf2019-09-11 20:25:36 +05301315{
Hari Bathinidda9dbf2019-09-11 20:25:36 +05301316 const __be32 *prop;
1317 int len, ret = -1;
1318 unsigned long i;
1319
Hari Bathini02c04e32020-04-20 14:26:09 +05301320 /* reserved-ranges already scanned */
1321 if (reserved_mrange_info.mem_range_cnt != 0)
1322 return;
Hari Bathinidda9dbf2019-09-11 20:25:36 +05301323
Hari Bathini02c04e32020-04-20 14:26:09 +05301324 prop = of_get_flat_dt_prop(node, "reserved-ranges", &len);
Hari Bathinidda9dbf2019-09-11 20:25:36 +05301325 if (!prop)
Hari Bathini02c04e32020-04-20 14:26:09 +05301326 return;
Hari Bathinidda9dbf2019-09-11 20:25:36 +05301327
1328 /*
1329 * Each reserved range is an (address,size) pair, 2 cells each,
1330 * totalling 4 cells per range.
1331 */
1332 for (i = 0; i < len / (sizeof(*prop) * 4); i++) {
1333 u64 base, size;
1334
1335 base = of_read_number(prop + (i * 4) + 0, 2);
1336 size = of_read_number(prop + (i * 4) + 2, 2);
1337
1338 if (size) {
1339 ret = fadump_add_mem_range(&reserved_mrange_info,
1340 base, base + size);
1341 if (ret < 0) {
1342 pr_warn("some reserved ranges are ignored!\n");
1343 break;
1344 }
1345 }
1346 }
1347
Hari Bathini02c04e32020-04-20 14:26:09 +05301348 /* Compact reserved ranges */
1349 sort_and_merge_mem_ranges(&reserved_mrange_info);
Hari Bathinidda9dbf2019-09-11 20:25:36 +05301350}
1351
1352/*
1353 * Release the memory that was reserved during early boot to preserve the
1354 * crash'ed kernel's memory contents except reserved dump area (permanent
1355 * reservation) and reserved ranges used by F/W. The released memory will
1356 * be available for general use.
1357 */
1358static void fadump_release_memory(u64 begin, u64 end)
1359{
1360 u64 ra_start, ra_end, tstart;
1361 int i, ret;
1362
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001363 ra_start = fw_dump.reserve_dump_area_start;
1364 ra_end = ra_start + fw_dump.reserve_dump_area_size;
1365
Hari Bathini68fa6472017-06-02 01:10:10 +05301366 /*
Hari Bathini02c04e32020-04-20 14:26:09 +05301367 * If reserved ranges array limit is hit, overwrite the last reserved
1368 * memory range with reserved dump area to ensure it is excluded from
1369 * the memory being released (reused for next FADump registration).
Hari Bathini68fa6472017-06-02 01:10:10 +05301370 */
Hari Bathini02c04e32020-04-20 14:26:09 +05301371 if (reserved_mrange_info.mem_range_cnt ==
1372 reserved_mrange_info.max_mem_ranges)
1373 reserved_mrange_info.mem_range_cnt--;
Hari Bathinidda9dbf2019-09-11 20:25:36 +05301374
Hari Bathini02c04e32020-04-20 14:26:09 +05301375 ret = fadump_add_mem_range(&reserved_mrange_info, ra_start, ra_end);
1376 if (ret != 0)
Hari Bathinidda9dbf2019-09-11 20:25:36 +05301377 return;
Hari Bathinidda9dbf2019-09-11 20:25:36 +05301378
1379 /* Get the reserved ranges list in order first. */
1380 sort_and_merge_mem_ranges(&reserved_mrange_info);
1381
1382 /* Exclude reserved ranges and release remaining memory */
1383 tstart = begin;
1384 for (i = 0; i < reserved_mrange_info.mem_range_cnt; i++) {
1385 ra_start = reserved_mrange_info.mem_ranges[i].base;
1386 ra_end = ra_start + reserved_mrange_info.mem_ranges[i].size;
1387
1388 if (tstart >= ra_end)
1389 continue;
1390
1391 if (tstart < ra_start)
1392 fadump_release_reserved_area(tstart, ra_start);
1393 tstart = ra_end;
1394 }
1395
1396 if (tstart < end)
1397 fadump_release_reserved_area(tstart, end);
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001398}
1399
1400static void fadump_invalidate_release_mem(void)
1401{
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001402 mutex_lock(&fadump_mutex);
1403 if (!fw_dump.dump_active) {
1404 mutex_unlock(&fadump_mutex);
1405 return;
1406 }
1407
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001408 fadump_cleanup();
1409 mutex_unlock(&fadump_mutex);
1410
Hari Bathini7dee93a2019-09-11 20:27:39 +05301411 fadump_release_memory(fw_dump.boot_mem_top, memblock_end_of_DRAM());
Hari Bathini961cf262019-09-11 20:16:36 +05301412 fadump_free_cpu_notes_buf();
1413
Hari Bathinia4e2e2c2019-09-11 20:23:28 +05301414 /*
1415 * Setup kernel metadata and initialize the kernel dump
1416 * memory structure for FADump re-registration.
1417 */
1418 if (fw_dump.ops->fadump_setup_metadata &&
1419 (fw_dump.ops->fadump_setup_metadata(&fw_dump) < 0))
1420 pr_warn("Failed to setup kernel metadata!\n");
Hari Bathini41a65d12019-09-11 20:18:57 +05301421 fw_dump.ops->fadump_init_mem_struct(&fw_dump);
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001422}
1423
Sourabh Jaind418b192019-12-11 21:39:07 +05301424static ssize_t release_mem_store(struct kobject *kobj,
1425 struct kobj_attribute *attr,
1426 const char *buf, size_t count)
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001427{
Michal Suchanekdcdc4672017-06-26 16:06:01 +02001428 int input = -1;
1429
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001430 if (!fw_dump.dump_active)
1431 return -EPERM;
1432
Michal Suchanekdcdc4672017-06-26 16:06:01 +02001433 if (kstrtoint(buf, 0, &input))
1434 return -EINVAL;
1435
1436 if (input == 1) {
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001437 /*
1438 * Take away the '/proc/vmcore'. We are releasing the dump
1439 * memory, hence it will not be valid anymore.
1440 */
Michael Ellerman2685f822016-09-30 10:51:46 +10001441#ifdef CONFIG_PROC_VMCORE
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001442 vmcore_cleanup();
Michael Ellerman2685f822016-09-30 10:51:46 +10001443#endif
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001444 fadump_invalidate_release_mem();
1445
1446 } else
1447 return -EINVAL;
1448 return count;
1449}
1450
Sourabh Jaind418b192019-12-11 21:39:07 +05301451/* Release the reserved memory and disable the FADump */
1452static void unregister_fadump(void)
1453{
1454 fadump_cleanup();
1455 fadump_release_memory(fw_dump.reserve_dump_area_start,
1456 fw_dump.reserve_dump_area_size);
1457 fw_dump.fadump_enabled = 0;
1458 kobject_put(fadump_kobj);
1459}
1460
1461static ssize_t enabled_show(struct kobject *kobj,
1462 struct kobj_attribute *attr,
1463 char *buf)
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001464{
1465 return sprintf(buf, "%d\n", fw_dump.fadump_enabled);
1466}
1467
Sourabh Jaind8e73452019-12-11 21:39:10 +05301468static ssize_t mem_reserved_show(struct kobject *kobj,
1469 struct kobj_attribute *attr,
1470 char *buf)
1471{
1472 return sprintf(buf, "%ld\n", fw_dump.reserve_dump_area_size);
1473}
1474
Sourabh Jaind418b192019-12-11 21:39:07 +05301475static ssize_t registered_show(struct kobject *kobj,
1476 struct kobj_attribute *attr,
1477 char *buf)
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001478{
1479 return sprintf(buf, "%d\n", fw_dump.dump_registered);
1480}
1481
Sourabh Jaind418b192019-12-11 21:39:07 +05301482static ssize_t registered_store(struct kobject *kobj,
1483 struct kobj_attribute *attr,
1484 const char *buf, size_t count)
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001485{
1486 int ret = 0;
Michal Suchanekdcdc4672017-06-26 16:06:01 +02001487 int input = -1;
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001488
Hari Bathinif3512012019-09-11 20:19:44 +05301489 if (!fw_dump.fadump_enabled || fw_dump.dump_active)
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001490 return -EPERM;
1491
Michal Suchanekdcdc4672017-06-26 16:06:01 +02001492 if (kstrtoint(buf, 0, &input))
1493 return -EINVAL;
1494
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001495 mutex_lock(&fadump_mutex);
1496
Michal Suchanekdcdc4672017-06-26 16:06:01 +02001497 switch (input) {
1498 case 0:
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001499 if (fw_dump.dump_registered == 0) {
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001500 goto unlock_out;
1501 }
Hari Bathinif3512012019-09-11 20:19:44 +05301502
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001503 /* Un-register Firmware-assisted dump */
Hari Bathini41a65d12019-09-11 20:18:57 +05301504 pr_debug("Un-register firmware-assisted dump\n");
1505 fw_dump.ops->fadump_unregister(&fw_dump);
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001506 break;
Michal Suchanekdcdc4672017-06-26 16:06:01 +02001507 case 1:
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001508 if (fw_dump.dump_registered == 1) {
Hari Bathini0823c682018-09-14 19:36:02 +05301509 /* Un-register Firmware-assisted dump */
Hari Bathini41a65d12019-09-11 20:18:57 +05301510 fw_dump.ops->fadump_unregister(&fw_dump);
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001511 }
1512 /* Register Firmware-assisted dump */
Michal Suchanek98b8cd72017-05-27 17:46:15 +02001513 ret = register_fadump();
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001514 break;
1515 default:
1516 ret = -EINVAL;
1517 break;
1518 }
1519
1520unlock_out:
1521 mutex_unlock(&fadump_mutex);
1522 return ret < 0 ? ret : count;
1523}
1524
1525static int fadump_region_show(struct seq_file *m, void *private)
1526{
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001527 if (!fw_dump.fadump_enabled)
1528 return 0;
1529
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001530 mutex_lock(&fadump_mutex);
Hari Bathinif3512012019-09-11 20:19:44 +05301531 fw_dump.ops->fadump_region_show(&fw_dump, m);
1532 mutex_unlock(&fadump_mutex);
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001533 return 0;
1534}
1535
Sourabh Jaind418b192019-12-11 21:39:07 +05301536static struct kobj_attribute release_attr = __ATTR_WO(release_mem);
1537static struct kobj_attribute enable_attr = __ATTR_RO(enabled);
1538static struct kobj_attribute register_attr = __ATTR_RW(registered);
Sourabh Jaind8e73452019-12-11 21:39:10 +05301539static struct kobj_attribute mem_reserved_attr = __ATTR_RO(mem_reserved);
Sourabh Jaind418b192019-12-11 21:39:07 +05301540
1541static struct attribute *fadump_attrs[] = {
1542 &enable_attr.attr,
1543 &register_attr.attr,
Sourabh Jaind8e73452019-12-11 21:39:10 +05301544 &mem_reserved_attr.attr,
Sourabh Jaind418b192019-12-11 21:39:07 +05301545 NULL,
1546};
1547
1548ATTRIBUTE_GROUPS(fadump);
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001549
Yangtao Lif6cee262018-11-05 10:01:19 -05001550DEFINE_SHOW_ATTRIBUTE(fadump_region);
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001551
1552static void fadump_init_files(void)
1553{
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001554 int rc = 0;
1555
Sourabh Jaind418b192019-12-11 21:39:07 +05301556 fadump_kobj = kobject_create_and_add("fadump", kernel_kobj);
1557 if (!fadump_kobj) {
1558 pr_err("failed to create fadump kobject\n");
1559 return;
1560 }
Greg Kroah-Hartman860286c2020-02-09 11:58:56 +01001561
1562 debugfs_create_file("fadump_region", 0444, powerpc_debugfs_root, NULL,
1563 &fadump_region_fops);
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001564
1565 if (fw_dump.dump_active) {
Sourabh Jaind418b192019-12-11 21:39:07 +05301566 rc = sysfs_create_file(fadump_kobj, &release_attr.attr);
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001567 if (rc)
Sourabh Jaind418b192019-12-11 21:39:07 +05301568 pr_err("unable to create release_mem sysfs file (%d)\n",
1569 rc);
1570 }
1571
1572 rc = sysfs_create_groups(fadump_kobj, fadump_groups);
1573 if (rc) {
1574 pr_err("sysfs group creation failed (%d), unregistering FADump",
1575 rc);
1576 unregister_fadump();
1577 return;
1578 }
1579
1580 /*
1581 * The FADump sysfs are moved from kernel_kobj to fadump_kobj need to
1582 * create symlink at old location to maintain backward compatibility.
1583 *
1584 * - fadump_enabled -> fadump/enabled
1585 * - fadump_registered -> fadump/registered
1586 * - fadump_release_mem -> fadump/release_mem
1587 */
1588 rc = compat_only_sysfs_link_entry_to_kobj(kernel_kobj, fadump_kobj,
1589 "enabled", "fadump_enabled");
1590 if (rc) {
1591 pr_err("unable to create fadump_enabled symlink (%d)", rc);
1592 return;
1593 }
1594
1595 rc = compat_only_sysfs_link_entry_to_kobj(kernel_kobj, fadump_kobj,
1596 "registered",
1597 "fadump_registered");
1598 if (rc) {
1599 pr_err("unable to create fadump_registered symlink (%d)", rc);
1600 sysfs_remove_link(kernel_kobj, "fadump_enabled");
1601 return;
1602 }
1603
1604 if (fw_dump.dump_active) {
1605 rc = compat_only_sysfs_link_entry_to_kobj(kernel_kobj,
1606 fadump_kobj,
1607 "release_mem",
1608 "fadump_release_mem");
1609 if (rc)
1610 pr_err("unable to create fadump_release_mem symlink (%d)",
1611 rc);
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001612 }
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001613 return;
1614}
1615
1616/*
1617 * Prepare for firmware-assisted dump.
1618 */
1619int __init setup_fadump(void)
1620{
Michal Suchanek565f9bc2019-11-07 17:47:57 +01001621 if (!fw_dump.fadump_supported)
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001622 return 0;
1623
Michal Suchanek565f9bc2019-11-07 17:47:57 +01001624 fadump_init_files();
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001625 fadump_show_config();
Michal Suchanek565f9bc2019-11-07 17:47:57 +01001626
1627 if (!fw_dump.fadump_enabled)
1628 return 1;
1629
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001630 /*
1631 * If dump data is available then see if it is valid and prepare for
1632 * saving it to the disk.
1633 */
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001634 if (fw_dump.dump_active) {
1635 /*
1636 * if dump process fails then invalidate the registration
1637 * and release memory before proceeding for re-registration.
1638 */
Hari Bathinif3512012019-09-11 20:19:44 +05301639 if (fw_dump.ops->fadump_process(&fw_dump) < 0)
Mahesh Salgaonkarb500aff2012-02-16 01:15:08 +00001640 fadump_invalidate_release_mem();
1641 }
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001642 /* Initialize the kernel dump memory structure for FAD registration. */
Mahesh Salgaonkar2df173d2012-02-16 01:14:37 +00001643 else if (fw_dump.reserve_dump_area_size)
Hari Bathini41a65d12019-09-11 20:18:57 +05301644 fw_dump.ops->fadump_init_mem_struct(&fw_dump);
Hari Bathinif3512012019-09-11 20:19:44 +05301645
Mahesh Salgaonkar3ccc00a2012-02-20 02:15:03 +00001646 return 1;
1647}
1648subsys_initcall(setup_fadump);
Hari Bathinibec53192019-09-11 20:26:03 +05301649#else /* !CONFIG_PRESERVE_FA_DUMP */
1650
1651/* Scan the Firmware Assisted dump configuration details. */
1652int __init early_init_dt_scan_fw_dump(unsigned long node, const char *uname,
1653 int depth, void *data)
1654{
1655 if ((depth != 1) || (strcmp(uname, "ibm,opal") != 0))
1656 return 0;
1657
1658 opal_fadump_dt_scan(&fw_dump, node);
1659 return 1;
1660}
1661
1662/*
1663 * When dump is active but PRESERVE_FA_DUMP is enabled on the kernel,
1664 * preserve crash data. The subsequent memory preserving kernel boot
1665 * is likely to process this crash data.
1666 */
1667int __init fadump_reserve_mem(void)
1668{
1669 if (fw_dump.dump_active) {
1670 /*
1671 * If last boot has crashed then reserve all the memory
1672 * above boot memory to preserve crash data.
1673 */
1674 pr_info("Preserving crash data for processing in next boot.\n");
1675 fadump_reserve_crash_area(fw_dump.boot_mem_top);
1676 } else
1677 pr_debug("FADump-aware kernel..\n");
1678
1679 return 1;
1680}
1681#endif /* CONFIG_PRESERVE_FA_DUMP */
Hari Bathinib2a815a2019-09-11 20:25:49 +05301682
1683/* Preserve everything above the base address */
1684static void __init fadump_reserve_crash_area(u64 base)
1685{
Mike Rapoportb10d6bc2020-10-13 16:58:08 -07001686 u64 i, mstart, mend, msize;
Hari Bathinib2a815a2019-09-11 20:25:49 +05301687
Mike Rapoportb10d6bc2020-10-13 16:58:08 -07001688 for_each_mem_range(i, &mstart, &mend) {
1689 msize = mend - mstart;
Hari Bathinib2a815a2019-09-11 20:25:49 +05301690
1691 if ((mstart + msize) < base)
1692 continue;
1693
1694 if (mstart < base) {
1695 msize -= (base - mstart);
1696 mstart = base;
1697 }
1698
1699 pr_info("Reserving %lluMB of memory at %#016llx for preserving crash data",
1700 (msize >> 20), mstart);
1701 memblock_reserve(mstart, msize);
1702 }
1703}
Hari Bathinibec53192019-09-11 20:26:03 +05301704
1705unsigned long __init arch_reserved_kernel_pages(void)
1706{
1707 return memblock_reserved_size() / PAGE_SIZE;
1708}