blob: 52189928ec081bb6229b421621a5e680d900c816 [file] [log] [blame]
Hari Bathinica986d72019-09-11 20:16:21 +05301/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * Firmware-Assisted Dump internal code.
4 *
5 * Copyright 2011, Mahesh Salgaonkar, IBM Corporation.
6 * Copyright 2019, Hari Bathini, IBM Corporation.
7 */
8
9#ifndef _ASM_POWERPC_FADUMP_INTERNAL_H
10#define _ASM_POWERPC_FADUMP_INTERNAL_H
11
Hari Bathini7dee93a2019-09-11 20:27:39 +053012/* Maximum number of memory regions kernel supports */
13#define FADUMP_MAX_MEM_REGS 128
14
Hari Bathinibec53192019-09-11 20:26:03 +053015#ifndef CONFIG_PRESERVE_FA_DUMP
Hari Bathinica986d72019-09-11 20:16:21 +053016
Hari Bathinica986d72019-09-11 20:16:21 +053017/* The upper limit percentage for user specified boot memory size (25%) */
18#define MAX_BOOT_MEM_RATIO 4
19
20#define memblock_num_regions(memblock_type) (memblock.memblock_type.cnt)
21
22/* Alignment per CMA requirement. */
23#define FADUMP_CMA_ALIGNMENT (PAGE_SIZE << \
24 max_t(unsigned long, MAX_ORDER - 1, \
25 pageblock_order))
26
27/* FAD commands */
28#define FADUMP_REGISTER 1
29#define FADUMP_UNREGISTER 2
30#define FADUMP_INVALIDATE 3
31
Hari Bathini0226e552019-09-11 20:18:14 +053032/*
33 * Copy the ascii values for first 8 characters from a string into u64
34 * variable at their respective indexes.
35 * e.g.
36 * The string "FADMPINF" will be converted into 0x4641444d50494e46
37 */
38static inline u64 fadump_str_to_u64(const char *str)
39{
40 u64 val = 0;
41 int i;
42
43 for (i = 0; i < sizeof(val); i++)
44 val = (*str) ? (val << 8) | *str++ : val << 8;
45 return val;
46}
47
48#define FADUMP_CPU_UNKNOWN (~((u32)0))
49
50#define FADUMP_CRASH_INFO_MAGIC fadump_str_to_u64("FADMPINF")
Hari Bathinica986d72019-09-11 20:16:21 +053051
52/* fadump crash info structure */
53struct fadump_crash_info_header {
54 u64 magic_number;
55 u64 elfcorehdr_addr;
56 u32 crashing_cpu;
57 struct pt_regs regs;
58 struct cpumask online_mask;
59};
60
Hari Bathinie4fc48f2019-09-11 20:25:05 +053061struct fadump_memory_range {
62 u64 base;
63 u64 size;
64};
65
66/* fadump memory ranges info */
Hari Bathini02c04e32020-04-20 14:26:09 +053067#define RNG_NAME_SZ 16
Hari Bathinie4fc48f2019-09-11 20:25:05 +053068struct fadump_mrange_info {
Hari Bathini02c04e32020-04-20 14:26:09 +053069 char name[RNG_NAME_SZ];
Hari Bathinie4fc48f2019-09-11 20:25:05 +053070 struct fadump_memory_range *mem_ranges;
71 u32 mem_ranges_sz;
72 u32 mem_range_cnt;
73 u32 max_mem_ranges;
Hari Bathini02c04e32020-04-20 14:26:09 +053074 bool is_static;
Hari Bathinica986d72019-09-11 20:16:21 +053075};
76
Hari Bathinid3833a72019-09-11 20:18:40 +053077/* Platform specific callback functions */
78struct fadump_ops;
79
Hari Bathinica986d72019-09-11 20:16:21 +053080/* Firmware-assisted dump configuration details. */
81struct fw_dump {
82 unsigned long reserve_dump_area_start;
83 unsigned long reserve_dump_area_size;
84 /* cmd line option during boot */
85 unsigned long reserve_bootvar;
86
87 unsigned long cpu_state_data_size;
Hari Bathini5000a172019-09-11 20:24:50 +053088 u64 cpu_state_dest_vaddr;
89 u32 cpu_state_data_version;
90 u32 cpu_state_entry_size;
91
Hari Bathinica986d72019-09-11 20:16:21 +053092 unsigned long hpte_region_size;
Hari Bathini41a65d12019-09-11 20:18:57 +053093
Hari Bathinica986d72019-09-11 20:16:21 +053094 unsigned long boot_memory_size;
Hari Bathini41a65d12019-09-11 20:18:57 +053095 u64 boot_mem_dest_addr;
Hari Bathini7dee93a2019-09-11 20:27:39 +053096 u64 boot_mem_addr[FADUMP_MAX_MEM_REGS];
97 u64 boot_mem_sz[FADUMP_MAX_MEM_REGS];
98 u64 boot_mem_top;
99 u64 boot_mem_regs_cnt;
Hari Bathinica986d72019-09-11 20:16:21 +0530100
101 unsigned long fadumphdr_addr;
Hari Bathini961cf262019-09-11 20:16:36 +0530102 unsigned long cpu_notes_buf_vaddr;
Hari Bathinica986d72019-09-11 20:16:21 +0530103 unsigned long cpu_notes_buf_size;
104
Hari Bathini7dee93a2019-09-11 20:27:39 +0530105 /*
106 * Maximum size supported by firmware to copy from source to
107 * destination address per entry.
108 */
109 u64 max_copy_size;
Hari Bathini742a2652019-09-11 20:20:57 +0530110 u64 kernel_metadata;
111
Hari Bathinica986d72019-09-11 20:16:21 +0530112 int ibm_configure_kernel_dump;
113
114 unsigned long fadump_enabled:1;
115 unsigned long fadump_supported:1;
116 unsigned long dump_active:1;
117 unsigned long dump_registered:1;
118 unsigned long nocma:1;
Hari Bathinid3833a72019-09-11 20:18:40 +0530119
120 struct fadump_ops *ops;
121};
122
123struct fadump_ops {
124 u64 (*fadump_init_mem_struct)(struct fw_dump *fadump_conf);
Hari Bathini742a2652019-09-11 20:20:57 +0530125 u64 (*fadump_get_metadata_size)(void);
126 int (*fadump_setup_metadata)(struct fw_dump *fadump_conf);
Hari Bathini7b1b3b42019-09-11 20:26:59 +0530127 u64 (*fadump_get_bootmem_min)(void);
Hari Bathinid3833a72019-09-11 20:18:40 +0530128 int (*fadump_register)(struct fw_dump *fadump_conf);
129 int (*fadump_unregister)(struct fw_dump *fadump_conf);
130 int (*fadump_invalidate)(struct fw_dump *fadump_conf);
Hari Bathini2790d012019-09-11 20:21:16 +0530131 void (*fadump_cleanup)(struct fw_dump *fadump_conf);
Hari Bathinid3833a72019-09-11 20:18:40 +0530132 int (*fadump_process)(struct fw_dump *fadump_conf);
133 void (*fadump_region_show)(struct fw_dump *fadump_conf,
134 struct seq_file *m);
135 void (*fadump_trigger)(struct fadump_crash_info_header *fdh,
136 const char *msg);
Hari Bathinica986d72019-09-11 20:16:21 +0530137};
138
Hari Bathini7f0ad112019-09-11 20:16:52 +0530139/* Helper functions */
Nick Childd2769602021-12-16 17:00:16 -0500140s32 __init fadump_setup_cpu_notes_buf(u32 num_cpus);
Hari Bathini7f0ad112019-09-11 20:16:52 +0530141void fadump_free_cpu_notes_buf(void);
Nick Childd2769602021-12-16 17:00:16 -0500142u32 *__init fadump_regs_to_elf_notes(u32 *buf, struct pt_regs *regs);
143void __init fadump_update_elfcore_header(char *bufp);
Hari Bathini7f0ad112019-09-11 20:16:52 +0530144bool is_fadump_boot_mem_contiguous(void);
145bool is_fadump_reserved_mem_contiguous(void);
146
Hari Bathinibec53192019-09-11 20:26:03 +0530147#else /* !CONFIG_PRESERVE_FA_DUMP */
148
149/* Firmware-assisted dump configuration details. */
150struct fw_dump {
151 u64 boot_mem_top;
152 u64 dump_active;
153};
154
155#endif /* CONFIG_PRESERVE_FA_DUMP */
156
Hari Bathinid3833a72019-09-11 20:18:40 +0530157#ifdef CONFIG_PPC_PSERIES
158extern void rtas_fadump_dt_scan(struct fw_dump *fadump_conf, u64 node);
159#else
160static inline void
161rtas_fadump_dt_scan(struct fw_dump *fadump_conf, u64 node) { }
162#endif
163
Hari Bathini41df5922019-09-11 20:20:26 +0530164#ifdef CONFIG_PPC_POWERNV
165extern void opal_fadump_dt_scan(struct fw_dump *fadump_conf, u64 node);
166#else
167static inline void
168opal_fadump_dt_scan(struct fw_dump *fadump_conf, u64 node) { }
169#endif
170
Hari Bathinica986d72019-09-11 20:16:21 +0530171#endif /* _ASM_POWERPC_FADUMP_INTERNAL_H */