Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 2 | config PSTORE |
Geliang Tang | ee1d267 | 2015-10-20 00:39:03 -0700 | [diff] [blame] | 3 | tristate "Persistent store support" |
Arnd Bergmann | 58eb5b67 | 2018-03-15 16:34:08 +0100 | [diff] [blame] | 4 | select CRYPTO if PSTORE_COMPRESS |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 5 | default n |
| 6 | help |
| 7 | This option enables generic access to platform level |
| 8 | persistent storage via "pstore" filesystem that can |
| 9 | be mounted as /dev/pstore. Only useful if you have |
| 10 | a platform level driver that registers with pstore to |
| 11 | provide the data, so you probably should just go say "Y" |
| 12 | (or "M") to a platform specific persistent store driver |
| 13 | (e.g. ACPI_APEI on X86) which will select this for you. |
| 14 | If you don't have a platform persistent store driver, |
| 15 | say N. |
Anton Vorontsov | 1894a25 | 2012-05-16 05:43:08 -0700 | [diff] [blame] | 16 | |
Vasile-Laurentiu Stanimir | 26fecbf | 2020-11-04 15:05:32 +0200 | [diff] [blame] | 17 | config PSTORE_DEFAULT_KMSG_BYTES |
| 18 | int "Default kernel log storage space" if EXPERT |
| 19 | depends on PSTORE |
| 20 | default "10240" |
| 21 | help |
| 22 | Defines default size of pstore kernel log storage. |
| 23 | Can be enlarged if needed, not recommended to shrink it. |
| 24 | |
Geliang Tang | cb3bee0 | 2018-03-09 18:51:07 +0800 | [diff] [blame] | 25 | config PSTORE_DEFLATE_COMPRESS |
Arnd Bergmann | 58eb5b67 | 2018-03-15 16:34:08 +0100 | [diff] [blame] | 26 | tristate "DEFLATE (ZLIB) compression" |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 27 | default y |
| 28 | depends on PSTORE |
Geliang Tang | cb3bee0 | 2018-03-09 18:51:07 +0800 | [diff] [blame] | 29 | select CRYPTO_DEFLATE |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 30 | help |
Geliang Tang | cb3bee0 | 2018-03-09 18:51:07 +0800 | [diff] [blame] | 31 | This option enables DEFLATE (also known as ZLIB) compression |
| 32 | algorithm support. |
Geliang Tang | 8cfc8dd | 2016-02-18 22:04:22 +0800 | [diff] [blame] | 33 | |
| 34 | config PSTORE_LZO_COMPRESS |
Arnd Bergmann | 58eb5b67 | 2018-03-15 16:34:08 +0100 | [diff] [blame] | 35 | tristate "LZO compression" |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 36 | depends on PSTORE |
Geliang Tang | cb3bee0 | 2018-03-09 18:51:07 +0800 | [diff] [blame] | 37 | select CRYPTO_LZO |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 38 | help |
| 39 | This option enables LZO compression algorithm support. |
Geliang Tang | 8cfc8dd | 2016-02-18 22:04:22 +0800 | [diff] [blame] | 40 | |
| 41 | config PSTORE_LZ4_COMPRESS |
Arnd Bergmann | 58eb5b67 | 2018-03-15 16:34:08 +0100 | [diff] [blame] | 42 | tristate "LZ4 compression" |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 43 | depends on PSTORE |
Geliang Tang | cb3bee0 | 2018-03-09 18:51:07 +0800 | [diff] [blame] | 44 | select CRYPTO_LZ4 |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 45 | help |
| 46 | This option enables LZ4 compression algorithm support. |
Geliang Tang | 239b716 | 2018-02-13 14:40:39 +0800 | [diff] [blame] | 47 | |
| 48 | config PSTORE_LZ4HC_COMPRESS |
Arnd Bergmann | 58eb5b67 | 2018-03-15 16:34:08 +0100 | [diff] [blame] | 49 | tristate "LZ4HC compression" |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 50 | depends on PSTORE |
Geliang Tang | cb3bee0 | 2018-03-09 18:51:07 +0800 | [diff] [blame] | 51 | select CRYPTO_LZ4HC |
Geliang Tang | 239b716 | 2018-02-13 14:40:39 +0800 | [diff] [blame] | 52 | help |
| 53 | This option enables LZ4HC (high compression) mode algorithm. |
| 54 | |
| 55 | config PSTORE_842_COMPRESS |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 56 | bool "842 compression" |
| 57 | depends on PSTORE |
Geliang Tang | cb3bee0 | 2018-03-09 18:51:07 +0800 | [diff] [blame] | 58 | select CRYPTO_842 |
Geliang Tang | 239b716 | 2018-02-13 14:40:39 +0800 | [diff] [blame] | 59 | help |
| 60 | This option enables 842 compression algorithm support. |
| 61 | |
Geliang Tang | 1021bcf | 2018-08-01 19:23:37 +0800 | [diff] [blame] | 62 | config PSTORE_ZSTD_COMPRESS |
| 63 | bool "zstd compression" |
| 64 | depends on PSTORE |
| 65 | select CRYPTO_ZSTD |
| 66 | help |
| 67 | This option enables zstd compression algorithm support. |
| 68 | |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 69 | config PSTORE_COMPRESS |
| 70 | def_bool y |
| 71 | depends on PSTORE |
Geliang Tang | cb3bee0 | 2018-03-09 18:51:07 +0800 | [diff] [blame] | 72 | depends on PSTORE_DEFLATE_COMPRESS || PSTORE_LZO_COMPRESS || \ |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 73 | PSTORE_LZ4_COMPRESS || PSTORE_LZ4HC_COMPRESS || \ |
Geliang Tang | 1021bcf | 2018-08-01 19:23:37 +0800 | [diff] [blame] | 74 | PSTORE_842_COMPRESS || PSTORE_ZSTD_COMPRESS |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 75 | |
| 76 | choice |
| 77 | prompt "Default pstore compression algorithm" |
| 78 | depends on PSTORE_COMPRESS |
| 79 | help |
| 80 | This option chooses the default active compression algorithm. |
| 81 | This change be changed at boot with "pstore.compress=..." on |
| 82 | the kernel command line. |
| 83 | |
Geliang Tang | 1021bcf | 2018-08-01 19:23:37 +0800 | [diff] [blame] | 84 | Currently, pstore has support for 6 compression algorithms: |
| 85 | deflate, lzo, lz4, lz4hc, 842 and zstd. |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 86 | |
Geliang Tang | cb3bee0 | 2018-03-09 18:51:07 +0800 | [diff] [blame] | 87 | The default compression algorithm is deflate. |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 88 | |
Geliang Tang | cb3bee0 | 2018-03-09 18:51:07 +0800 | [diff] [blame] | 89 | config PSTORE_DEFLATE_COMPRESS_DEFAULT |
Arnd Bergmann | 58eb5b67 | 2018-03-15 16:34:08 +0100 | [diff] [blame] | 90 | bool "deflate" if PSTORE_DEFLATE_COMPRESS |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 91 | |
| 92 | config PSTORE_LZO_COMPRESS_DEFAULT |
Arnd Bergmann | 58eb5b67 | 2018-03-15 16:34:08 +0100 | [diff] [blame] | 93 | bool "lzo" if PSTORE_LZO_COMPRESS |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 94 | |
| 95 | config PSTORE_LZ4_COMPRESS_DEFAULT |
Arnd Bergmann | 58eb5b67 | 2018-03-15 16:34:08 +0100 | [diff] [blame] | 96 | bool "lz4" if PSTORE_LZ4_COMPRESS |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 97 | |
| 98 | config PSTORE_LZ4HC_COMPRESS_DEFAULT |
Arnd Bergmann | 58eb5b67 | 2018-03-15 16:34:08 +0100 | [diff] [blame] | 99 | bool "lz4hc" if PSTORE_LZ4HC_COMPRESS |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 100 | |
| 101 | config PSTORE_842_COMPRESS_DEFAULT |
Arnd Bergmann | 58eb5b67 | 2018-03-15 16:34:08 +0100 | [diff] [blame] | 102 | bool "842" if PSTORE_842_COMPRESS |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 103 | |
Geliang Tang | 1021bcf | 2018-08-01 19:23:37 +0800 | [diff] [blame] | 104 | config PSTORE_ZSTD_COMPRESS_DEFAULT |
| 105 | bool "zstd" if PSTORE_ZSTD_COMPRESS |
| 106 | |
Geliang Tang | 8cfc8dd | 2016-02-18 22:04:22 +0800 | [diff] [blame] | 107 | endchoice |
| 108 | |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 109 | config PSTORE_COMPRESS_DEFAULT |
| 110 | string |
| 111 | depends on PSTORE_COMPRESS |
Geliang Tang | cb3bee0 | 2018-03-09 18:51:07 +0800 | [diff] [blame] | 112 | default "deflate" if PSTORE_DEFLATE_COMPRESS_DEFAULT |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 113 | default "lzo" if PSTORE_LZO_COMPRESS_DEFAULT |
| 114 | default "lz4" if PSTORE_LZ4_COMPRESS_DEFAULT |
| 115 | default "lz4hc" if PSTORE_LZ4HC_COMPRESS_DEFAULT |
| 116 | default "842" if PSTORE_842_COMPRESS_DEFAULT |
Geliang Tang | 1021bcf | 2018-08-01 19:23:37 +0800 | [diff] [blame] | 117 | default "zstd" if PSTORE_ZSTD_COMPRESS_DEFAULT |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 118 | |
Anton Vorontsov | f29e595 | 2012-05-26 06:20:19 -0700 | [diff] [blame] | 119 | config PSTORE_CONSOLE |
| 120 | bool "Log kernel console messages" |
| 121 | depends on PSTORE |
| 122 | help |
| 123 | When the option is enabled, pstore will log all kernel |
| 124 | messages, even if no oops or panic happened. |
| 125 | |
Mark Salyzyn | 9d5438f | 2015-01-16 16:01:10 -0800 | [diff] [blame] | 126 | config PSTORE_PMSG |
| 127 | bool "Log user space messages" |
| 128 | depends on PSTORE |
| 129 | help |
| 130 | When the option is enabled, pstore will export a character |
| 131 | interface /dev/pmsg0 to log user space messages. On reboot |
| 132 | data can be retrieved from /sys/fs/pstore/pmsg-ramoops-[ID]. |
| 133 | |
| 134 | If unsure, say N. |
| 135 | |
Anton Vorontsov | 060287b | 2012-07-09 17:10:41 -0700 | [diff] [blame] | 136 | config PSTORE_FTRACE |
| 137 | bool "Persistent function tracer" |
| 138 | depends on PSTORE |
| 139 | depends on FUNCTION_TRACER |
Anton Vorontsov | 65f8c95 | 2012-07-17 14:26:15 -0700 | [diff] [blame] | 140 | depends on DEBUG_FS |
Anton Vorontsov | 060287b | 2012-07-09 17:10:41 -0700 | [diff] [blame] | 141 | help |
| 142 | With this option kernel traces function calls into a persistent |
| 143 | ram buffer that can be decoded and dumped after reboot through |
| 144 | pstore filesystem. It can be used to determine what function |
| 145 | was last called before a reset or panic. |
| 146 | |
| 147 | If unsure, say N. |
| 148 | |
Anton Vorontsov | 1894a25 | 2012-05-16 05:43:08 -0700 | [diff] [blame] | 149 | config PSTORE_RAM |
| 150 | tristate "Log panic/oops to a RAM buffer" |
Anton Vorontsov | 1894a25 | 2012-05-16 05:43:08 -0700 | [diff] [blame] | 151 | depends on PSTORE |
Anton Vorontsov | cddb875 | 2012-05-17 00:15:08 -0700 | [diff] [blame] | 152 | depends on HAS_IOMEM |
Anton Vorontsov | cddb875 | 2012-05-17 00:15:08 -0700 | [diff] [blame] | 153 | select REED_SOLOMON |
| 154 | select REED_SOLOMON_ENC8 |
| 155 | select REED_SOLOMON_DEC8 |
Anton Vorontsov | 1894a25 | 2012-05-16 05:43:08 -0700 | [diff] [blame] | 156 | help |
| 157 | This enables panic and oops messages to be logged to a circular |
| 158 | buffer in RAM where it can be read back at some later point. |
| 159 | |
| 160 | Note that for historical reasons, the module will be named |
| 161 | "ramoops.ko". |
| 162 | |
Mauro Carvalho Chehab | 8c27ceff3 | 2016-10-18 10:12:27 -0200 | [diff] [blame] | 163 | For more information, see Documentation/admin-guide/ramoops.rst. |
WeiXiong Liao | d26c332 | 2020-03-25 16:54:56 +0800 | [diff] [blame] | 164 | |
| 165 | config PSTORE_ZONE |
| 166 | tristate |
| 167 | depends on PSTORE |
| 168 | help |
| 169 | The common layer for pstore/blk (and pstore/ram in the future) |
| 170 | to manage storage in zones. |
WeiXiong Liao | 17639f6 | 2020-03-25 16:54:57 +0800 | [diff] [blame] | 171 | |
| 172 | config PSTORE_BLK |
| 173 | tristate "Log panic/oops to a block device" |
| 174 | depends on PSTORE |
| 175 | depends on BLOCK |
| 176 | select PSTORE_ZONE |
| 177 | default n |
| 178 | help |
| 179 | This enables panic and oops message to be logged to a block dev |
| 180 | where it can be read back at some later point. |
| 181 | |
WeiXiong Liao | 649304c | 2020-03-25 16:55:02 +0800 | [diff] [blame] | 182 | For more information, see Documentation/admin-guide/pstore-blk.rst |
| 183 | |
WeiXiong Liao | 17639f6 | 2020-03-25 16:54:57 +0800 | [diff] [blame] | 184 | If unsure, say N. |
| 185 | |
| 186 | config PSTORE_BLK_BLKDEV |
| 187 | string "block device identifier" |
| 188 | depends on PSTORE_BLK |
| 189 | default "" |
| 190 | help |
| 191 | Which block device should be used for pstore/blk. |
| 192 | |
WeiXiong Liao | cc9c4d1 | 2020-03-25 16:55:00 +0800 | [diff] [blame] | 193 | It accepts the following variants: |
WeiXiong Liao | 17639f6 | 2020-03-25 16:54:57 +0800 | [diff] [blame] | 194 | 1) <hex_major><hex_minor> device number in hexadecimal representation, |
| 195 | with no leading 0x, for example b302. |
WeiXiong Liao | cc9c4d1 | 2020-03-25 16:55:00 +0800 | [diff] [blame] | 196 | 2) /dev/<disk_name> represents the device name of disk |
| 197 | 3) /dev/<disk_name><decimal> represents the device name and number |
WeiXiong Liao | 17639f6 | 2020-03-25 16:54:57 +0800 | [diff] [blame] | 198 | of partition - device number of disk plus the partition number |
| 199 | 4) /dev/<disk_name>p<decimal> - same as the above, this form is |
| 200 | used when disk name of partitioned disk ends with a digit. |
| 201 | 5) PARTUUID=00112233-4455-6677-8899-AABBCCDDEEFF representing the |
| 202 | unique id of a partition if the partition table provides it. |
| 203 | The UUID may be either an EFI/GPT UUID, or refer to an MSDOS |
| 204 | partition using the format SSSSSSSS-PP, where SSSSSSSS is a zero- |
| 205 | filled hex representation of the 32-bit "NT disk signature", and PP |
| 206 | is a zero-filled hex representation of the 1-based partition number. |
| 207 | 6) PARTUUID=<UUID>/PARTNROFF=<int> to select a partition in relation |
| 208 | to a partition with a known unique id. |
| 209 | 7) <major>:<minor> major and minor number of the device separated by |
| 210 | a colon. |
| 211 | |
| 212 | NOTE that, both Kconfig and module parameters can configure |
| 213 | pstore/blk, but module parameters have priority over Kconfig. |
| 214 | |
| 215 | config PSTORE_BLK_KMSG_SIZE |
| 216 | int "Size in Kbytes of kmsg dump log to store" |
| 217 | depends on PSTORE_BLK |
| 218 | default 64 |
| 219 | help |
| 220 | This just sets size of kmsg dump (oops, panic, etc) log for |
| 221 | pstore/blk. The size is in KB and must be a multiple of 4. |
| 222 | |
| 223 | NOTE that, both Kconfig and module parameters can configure |
| 224 | pstore/blk, but module parameters have priority over Kconfig. |
| 225 | |
| 226 | config PSTORE_BLK_MAX_REASON |
| 227 | int "Maximum kmsg dump reason to store" |
| 228 | depends on PSTORE_BLK |
| 229 | default 2 |
| 230 | help |
| 231 | The maximum reason for kmsg dumps to store. The default is |
| 232 | 2 (KMSG_DUMP_OOPS), see include/linux/kmsg_dump.h's |
| 233 | enum kmsg_dump_reason for more details. |
| 234 | |
| 235 | NOTE that, both Kconfig and module parameters can configure |
| 236 | pstore/blk, but module parameters have priority over Kconfig. |
WeiXiong Liao | 0dc0682 | 2020-03-25 16:54:59 +0800 | [diff] [blame] | 237 | |
| 238 | config PSTORE_BLK_PMSG_SIZE |
| 239 | int "Size in Kbytes of pmsg to store" |
| 240 | depends on PSTORE_BLK |
| 241 | depends on PSTORE_PMSG |
| 242 | default 64 |
| 243 | help |
| 244 | This just sets size of pmsg (pmsg_size) for pstore/blk. The size is |
| 245 | in KB and must be a multiple of 4. |
| 246 | |
| 247 | NOTE that, both Kconfig and module parameters can configure |
| 248 | pstore/blk, but module parameters have priority over Kconfig. |
WeiXiong Liao | cc9c4d1 | 2020-03-25 16:55:00 +0800 | [diff] [blame] | 249 | |
| 250 | config PSTORE_BLK_CONSOLE_SIZE |
| 251 | int "Size in Kbytes of console log to store" |
| 252 | depends on PSTORE_BLK |
| 253 | depends on PSTORE_CONSOLE |
| 254 | default 64 |
| 255 | help |
| 256 | This just sets size of console log (console_size) to store via |
| 257 | pstore/blk. The size is in KB and must be a multiple of 4. |
| 258 | |
| 259 | NOTE that, both Kconfig and module parameters can configure |
| 260 | pstore/blk, but module parameters have priority over Kconfig. |
WeiXiong Liao | 34327e9 | 2020-03-25 16:55:01 +0800 | [diff] [blame] | 261 | |
| 262 | config PSTORE_BLK_FTRACE_SIZE |
| 263 | int "Size in Kbytes of ftrace log to store" |
| 264 | depends on PSTORE_BLK |
| 265 | depends on PSTORE_FTRACE |
| 266 | default 64 |
| 267 | help |
| 268 | This just sets size of ftrace log (ftrace_size) for pstore/blk. The |
| 269 | size is in KB and must be a multiple of 4. |
| 270 | |
| 271 | NOTE that, both Kconfig and module parameters can configure |
| 272 | pstore/blk, but module parameters have priority over Kconfig. |