blob: 3acc38600cd1a2d026dfe82132696ad3d1f650dc [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Tony Luckca01d6d2010-12-28 14:25:21 -08002config PSTORE
Geliang Tangee1d2672015-10-20 00:39:03 -07003 tristate "Persistent store support"
Tony Luckca01d6d2010-12-28 14:25:21 -08004 default n
5 help
6 This option enables generic access to platform level
7 persistent storage via "pstore" filesystem that can
8 be mounted as /dev/pstore. Only useful if you have
9 a platform level driver that registers with pstore to
10 provide the data, so you probably should just go say "Y"
11 (or "M") to a platform specific persistent store driver
12 (e.g. ACPI_APEI on X86) which will select this for you.
13 If you don't have a platform persistent store driver,
14 say N.
Anton Vorontsov1894a252012-05-16 05:43:08 -070015
Vasile-Laurentiu Stanimir26fecbf2020-11-04 15:05:32 +020016config PSTORE_DEFAULT_KMSG_BYTES
17 int "Default kernel log storage space" if EXPERT
18 depends on PSTORE
19 default "10240"
20 help
21 Defines default size of pstore kernel log storage.
22 Can be enlarged if needed, not recommended to shrink it.
23
Kees Cookfe1d4752018-03-06 15:57:38 -080024config PSTORE_COMPRESS
Ard Biesheuvel438b8052023-07-12 18:23:32 +020025 bool "Pstore compression (deflate)"
Kees Cookfe1d4752018-03-06 15:57:38 -080026 depends on PSTORE
Ard Biesheuvel438b8052023-07-12 18:23:32 +020027 select ZLIB_INFLATE
28 select ZLIB_DEFLATE
29 default y
Kees Cookfe1d4752018-03-06 15:57:38 -080030 help
Ard Biesheuvel438b8052023-07-12 18:23:32 +020031 Whether pstore records should be compressed before being written to
32 the backing store. This is implemented using the zlib 'deflate'
33 algorithm, using the library implementation instead of using the full
34 blown crypto API. This reduces the risk of secondary oopses or other
35 problems while pstore is recording panic metadata.
Kees Cookfe1d4752018-03-06 15:57:38 -080036
Anton Vorontsovf29e5952012-05-26 06:20:19 -070037config PSTORE_CONSOLE
38 bool "Log kernel console messages"
39 depends on PSTORE
40 help
41 When the option is enabled, pstore will log all kernel
42 messages, even if no oops or panic happened.
43
Mark Salyzyn9d5438f2015-01-16 16:01:10 -080044config PSTORE_PMSG
45 bool "Log user space messages"
46 depends on PSTORE
John Stultz2f4fec52022-12-21 05:18:55 +000047 select RT_MUTEXES
Mark Salyzyn9d5438f2015-01-16 16:01:10 -080048 help
49 When the option is enabled, pstore will export a character
50 interface /dev/pmsg0 to log user space messages. On reboot
51 data can be retrieved from /sys/fs/pstore/pmsg-ramoops-[ID].
52
53 If unsure, say N.
54
Anton Vorontsov060287b2012-07-09 17:10:41 -070055config PSTORE_FTRACE
56 bool "Persistent function tracer"
57 depends on PSTORE
58 depends on FUNCTION_TRACER
Anton Vorontsov65f8c952012-07-17 14:26:15 -070059 depends on DEBUG_FS
Anton Vorontsov060287b2012-07-09 17:10:41 -070060 help
61 With this option kernel traces function calls into a persistent
62 ram buffer that can be decoded and dumped after reboot through
63 pstore filesystem. It can be used to determine what function
64 was last called before a reset or panic.
65
66 If unsure, say N.
67
Anton Vorontsov1894a252012-05-16 05:43:08 -070068config PSTORE_RAM
69 tristate "Log panic/oops to a RAM buffer"
Anton Vorontsov1894a252012-05-16 05:43:08 -070070 depends on PSTORE
Anton Vorontsovcddb8752012-05-17 00:15:08 -070071 depends on HAS_IOMEM
Anton Vorontsovcddb8752012-05-17 00:15:08 -070072 select REED_SOLOMON
73 select REED_SOLOMON_ENC8
74 select REED_SOLOMON_DEC8
Anton Vorontsov1894a252012-05-16 05:43:08 -070075 help
76 This enables panic and oops messages to be logged to a circular
77 buffer in RAM where it can be read back at some later point.
78
79 Note that for historical reasons, the module will be named
80 "ramoops.ko".
81
Mauro Carvalho Chehab8c27ceff32016-10-18 10:12:27 -020082 For more information, see Documentation/admin-guide/ramoops.rst.
WeiXiong Liaod26c3322020-03-25 16:54:56 +080083
84config PSTORE_ZONE
85 tristate
86 depends on PSTORE
87 help
88 The common layer for pstore/blk (and pstore/ram in the future)
89 to manage storage in zones.
WeiXiong Liao17639f62020-03-25 16:54:57 +080090
91config PSTORE_BLK
92 tristate "Log panic/oops to a block device"
93 depends on PSTORE
94 depends on BLOCK
95 select PSTORE_ZONE
96 default n
97 help
98 This enables panic and oops message to be logged to a block dev
99 where it can be read back at some later point.
100
WeiXiong Liao649304c2020-03-25 16:55:02 +0800101 For more information, see Documentation/admin-guide/pstore-blk.rst
102
WeiXiong Liao17639f62020-03-25 16:54:57 +0800103 If unsure, say N.
104
105config PSTORE_BLK_BLKDEV
106 string "block device identifier"
107 depends on PSTORE_BLK
108 default ""
109 help
110 Which block device should be used for pstore/blk.
111
WeiXiong Liaocc9c4d12020-03-25 16:55:00 +0800112 It accepts the following variants:
WeiXiong Liao17639f62020-03-25 16:54:57 +0800113 1) <hex_major><hex_minor> device number in hexadecimal representation,
114 with no leading 0x, for example b302.
WeiXiong Liaocc9c4d12020-03-25 16:55:00 +0800115 2) /dev/<disk_name> represents the device name of disk
116 3) /dev/<disk_name><decimal> represents the device name and number
WeiXiong Liao17639f62020-03-25 16:54:57 +0800117 of partition - device number of disk plus the partition number
118 4) /dev/<disk_name>p<decimal> - same as the above, this form is
119 used when disk name of partitioned disk ends with a digit.
120 5) PARTUUID=00112233-4455-6677-8899-AABBCCDDEEFF representing the
121 unique id of a partition if the partition table provides it.
122 The UUID may be either an EFI/GPT UUID, or refer to an MSDOS
123 partition using the format SSSSSSSS-PP, where SSSSSSSS is a zero-
124 filled hex representation of the 32-bit "NT disk signature", and PP
125 is a zero-filled hex representation of the 1-based partition number.
126 6) PARTUUID=<UUID>/PARTNROFF=<int> to select a partition in relation
127 to a partition with a known unique id.
128 7) <major>:<minor> major and minor number of the device separated by
129 a colon.
130
131 NOTE that, both Kconfig and module parameters can configure
132 pstore/blk, but module parameters have priority over Kconfig.
133
134config PSTORE_BLK_KMSG_SIZE
135 int "Size in Kbytes of kmsg dump log to store"
136 depends on PSTORE_BLK
137 default 64
138 help
139 This just sets size of kmsg dump (oops, panic, etc) log for
140 pstore/blk. The size is in KB and must be a multiple of 4.
141
142 NOTE that, both Kconfig and module parameters can configure
143 pstore/blk, but module parameters have priority over Kconfig.
144
145config PSTORE_BLK_MAX_REASON
146 int "Maximum kmsg dump reason to store"
147 depends on PSTORE_BLK
148 default 2
149 help
150 The maximum reason for kmsg dumps to store. The default is
151 2 (KMSG_DUMP_OOPS), see include/linux/kmsg_dump.h's
152 enum kmsg_dump_reason for more details.
153
154 NOTE that, both Kconfig and module parameters can configure
155 pstore/blk, but module parameters have priority over Kconfig.
WeiXiong Liao0dc06822020-03-25 16:54:59 +0800156
157config PSTORE_BLK_PMSG_SIZE
158 int "Size in Kbytes of pmsg to store"
159 depends on PSTORE_BLK
160 depends on PSTORE_PMSG
161 default 64
162 help
163 This just sets size of pmsg (pmsg_size) for pstore/blk. The size is
164 in KB and must be a multiple of 4.
165
166 NOTE that, both Kconfig and module parameters can configure
167 pstore/blk, but module parameters have priority over Kconfig.
WeiXiong Liaocc9c4d12020-03-25 16:55:00 +0800168
169config PSTORE_BLK_CONSOLE_SIZE
170 int "Size in Kbytes of console log to store"
171 depends on PSTORE_BLK
172 depends on PSTORE_CONSOLE
173 default 64
174 help
175 This just sets size of console log (console_size) to store via
176 pstore/blk. The size is in KB and must be a multiple of 4.
177
178 NOTE that, both Kconfig and module parameters can configure
179 pstore/blk, but module parameters have priority over Kconfig.
WeiXiong Liao34327e92020-03-25 16:55:01 +0800180
181config PSTORE_BLK_FTRACE_SIZE
182 int "Size in Kbytes of ftrace log to store"
183 depends on PSTORE_BLK
184 depends on PSTORE_FTRACE
185 default 64
186 help
187 This just sets size of ftrace log (ftrace_size) for pstore/blk. The
188 size is in KB and must be a multiple of 4.
189
190 NOTE that, both Kconfig and module parameters can configure
191 pstore/blk, but module parameters have priority over Kconfig.