1 Ramoops oops/panic logger 1 Ramoops oops/panic logger 2 ========================= 2 ========================= 3 3 4 Sergiu Iordache <sergiu@chromium.org> 4 Sergiu Iordache <sergiu@chromium.org> 5 5 6 Updated: 10 Feb 2021 !! 6 Updated: 17 November 2011 7 7 8 Introduction 8 Introduction 9 ------------ 9 ------------ 10 10 11 Ramoops is an oops/panic logger that writes it 11 Ramoops is an oops/panic logger that writes its logs to RAM before the system 12 crashes. It works by logging oopses and panics 12 crashes. It works by logging oopses and panics in a circular buffer. Ramoops 13 needs a system with persistent RAM so that the 13 needs a system with persistent RAM so that the content of that area can 14 survive after a restart. 14 survive after a restart. 15 15 16 Ramoops concepts 16 Ramoops concepts 17 ---------------- 17 ---------------- 18 18 19 Ramoops uses a predefined memory area to store 19 Ramoops uses a predefined memory area to store the dump. The start and size 20 and type of the memory area are set using thre 20 and type of the memory area are set using three variables: 21 21 22 * ``mem_address`` for the start 22 * ``mem_address`` for the start 23 * ``mem_size`` for the size. The memory size 23 * ``mem_size`` for the size. The memory size will be rounded down to a 24 power of two. 24 power of two. 25 * ``mem_type`` to specify if the memory type 25 * ``mem_type`` to specify if the memory type (default is pgprot_writecombine). 26 * ``mem_name`` to specify a memory region de << 27 line parameter. << 28 26 29 Typically the default value of ``mem_type=0`` 27 Typically the default value of ``mem_type=0`` should be used as that sets the pstore 30 mapping to pgprot_writecombine. Setting ``mem_ 28 mapping to pgprot_writecombine. Setting ``mem_type=1`` attempts to use 31 ``pgprot_noncached``, which only works on some 29 ``pgprot_noncached``, which only works on some platforms. This is because pstore 32 depends on atomic operations. At least on ARM, 30 depends on atomic operations. At least on ARM, pgprot_noncached causes the 33 memory to be mapped strongly ordered, and atom 31 memory to be mapped strongly ordered, and atomic operations on strongly ordered 34 memory are implementation defined, and won't w 32 memory are implementation defined, and won't work on many ARMs such as omaps. 35 Setting ``mem_type=2`` attempts to treat the m << 36 which enables full cache on it. This can impro << 37 33 38 The memory area is divided into ``record_size` 34 The memory area is divided into ``record_size`` chunks (also rounded down to 39 power of two) and each kmesg dump writes a ``r 35 power of two) and each kmesg dump writes a ``record_size`` chunk of 40 information. 36 information. 41 37 42 Limiting which kinds of kmsg dumps are stored 38 Limiting which kinds of kmsg dumps are stored can be controlled via 43 the ``max_reason`` value, as defined in includ 39 the ``max_reason`` value, as defined in include/linux/kmsg_dump.h's 44 ``enum kmsg_dump_reason``. For example, to sto 40 ``enum kmsg_dump_reason``. For example, to store both Oopses and Panics, 45 ``max_reason`` should be set to 2 (KMSG_DUMP_O 41 ``max_reason`` should be set to 2 (KMSG_DUMP_OOPS), to store only Panics 46 ``max_reason`` should be set to 1 (KMSG_DUMP_P 42 ``max_reason`` should be set to 1 (KMSG_DUMP_PANIC). Setting this to 0 47 (KMSG_DUMP_UNDEF), means the reason filtering 43 (KMSG_DUMP_UNDEF), means the reason filtering will be controlled by the 48 ``printk.always_kmsg_dump`` boot param: if uns 44 ``printk.always_kmsg_dump`` boot param: if unset, it'll be KMSG_DUMP_OOPS, 49 otherwise KMSG_DUMP_MAX. 45 otherwise KMSG_DUMP_MAX. 50 46 51 The module uses a counter to record multiple d 47 The module uses a counter to record multiple dumps but the counter gets reset 52 on restart (i.e. new dumps after the restart w 48 on restart (i.e. new dumps after the restart will overwrite old ones). 53 49 54 Ramoops also supports software ECC protection 50 Ramoops also supports software ECC protection of persistent memory regions. 55 This might be useful when a hardware reset was 51 This might be useful when a hardware reset was used to bring the machine back 56 to life (i.e. a watchdog triggered). In such c 52 to life (i.e. a watchdog triggered). In such cases, RAM may be somewhat 57 corrupt, but usually it is restorable. 53 corrupt, but usually it is restorable. 58 54 59 Setting the parameters 55 Setting the parameters 60 ---------------------- 56 ---------------------- 61 57 62 Setting the ramoops parameters can be done in 58 Setting the ramoops parameters can be done in several different manners: 63 59 64 A. Use the module parameters (which have the 60 A. Use the module parameters (which have the names of the variables described 65 as before). For quick debugging, you can also 61 as before). For quick debugging, you can also reserve parts of memory during 66 boot and then use the reserved memory for ram 62 boot and then use the reserved memory for ramoops. For example, assuming a 67 machine with > 128 MB of memory, the followin 63 machine with > 128 MB of memory, the following kernel command line will tell 68 the kernel to use only the first 128 MB of me 64 the kernel to use only the first 128 MB of memory, and place ECC-protected 69 ramoops region at 128 MB boundary:: 65 ramoops region at 128 MB boundary:: 70 66 71 mem=128M ramoops.mem_address=0x8000000 67 mem=128M ramoops.mem_address=0x8000000 ramoops.ecc=1 72 68 73 B. Use Device Tree bindings, as described in 69 B. Use Device Tree bindings, as described in 74 ``Documentation/devicetree/bindings/reserved- !! 70 ``Documentation/devicetree/bindings/reserved-memory/ramoops.txt``. 75 For example:: 71 For example:: 76 72 77 reserved-memory { 73 reserved-memory { 78 #address-cells = <2>; 74 #address-cells = <2>; 79 #size-cells = <2>; 75 #size-cells = <2>; 80 ranges; 76 ranges; 81 77 82 ramoops@8f000000 { 78 ramoops@8f000000 { 83 compatible = "ramoops" 79 compatible = "ramoops"; 84 reg = <0 0x8f000000 0 80 reg = <0 0x8f000000 0 0x100000>; 85 record-size = <0x4000> 81 record-size = <0x4000>; 86 console-size = <0x4000 82 console-size = <0x4000>; 87 }; 83 }; 88 }; 84 }; 89 85 90 C. Use a platform device and set the platform 86 C. Use a platform device and set the platform data. The parameters can then 91 be set through that platform data. An example 87 be set through that platform data. An example of doing that is: 92 88 93 .. code-block:: c 89 .. code-block:: c 94 90 95 #include <linux/pstore_ram.h> 91 #include <linux/pstore_ram.h> 96 [...] 92 [...] 97 93 98 static struct ramoops_platform_data ramoops_ 94 static struct ramoops_platform_data ramoops_data = { 99 .mem_size = <...>, 95 .mem_size = <...>, 100 .mem_address = <...>, 96 .mem_address = <...>, 101 .mem_type = <...>, 97 .mem_type = <...>, 102 .record_size = <...>, 98 .record_size = <...>, 103 .max_reason = <...>, 99 .max_reason = <...>, 104 .ecc = <...>, 100 .ecc = <...>, 105 }; 101 }; 106 102 107 static struct platform_device ramoops_dev = 103 static struct platform_device ramoops_dev = { 108 .name = "ramoops", 104 .name = "ramoops", 109 .dev = { 105 .dev = { 110 .platform_data = &ramoops_data 106 .platform_data = &ramoops_data, 111 }, 107 }, 112 }; 108 }; 113 109 114 [... inside a function ...] 110 [... inside a function ...] 115 int ret; 111 int ret; 116 112 117 ret = platform_device_register(&ramoops_dev) 113 ret = platform_device_register(&ramoops_dev); 118 if (ret) { 114 if (ret) { 119 printk(KERN_ERR "unable to register pl 115 printk(KERN_ERR "unable to register platform device\n"); 120 return ret; 116 return ret; 121 } 117 } 122 << 123 D. Using a region of memory reserved via ``re << 124 parameter. The address and size will be de << 125 parameter. Note, that ``reserve_mem`` may << 126 in the same location, and cannot be relied << 127 to be done, and it may not work on every m << 128 Consider this a "best effort" approach. Th << 129 takes a size, alignment and name as argume << 130 to map the memory to a label that can be r << 131 << 132 reserve_mem=2M:4096:oops ramoops.mem_ << 133 118 134 You can specify either RAM memory or periphera 119 You can specify either RAM memory or peripheral devices' memory. However, when 135 specifying RAM, be sure to reserve the memory 120 specifying RAM, be sure to reserve the memory by issuing memblock_reserve() 136 very early in the architecture code, e.g.:: 121 very early in the architecture code, e.g.:: 137 122 138 #include <linux/memblock.h> 123 #include <linux/memblock.h> 139 124 140 memblock_reserve(ramoops_data.mem_addr 125 memblock_reserve(ramoops_data.mem_address, ramoops_data.mem_size); 141 126 142 Dump format 127 Dump format 143 ----------- 128 ----------- 144 129 145 The data dump begins with a header, currently 130 The data dump begins with a header, currently defined as ``====`` followed by a 146 timestamp and a new line. The dump then contin 131 timestamp and a new line. The dump then continues with the actual data. 147 132 148 Reading the data 133 Reading the data 149 ---------------- 134 ---------------- 150 135 151 The dump data can be read from the pstore file 136 The dump data can be read from the pstore filesystem. The format for these 152 files is ``dmesg-ramoops-N``, where N is the r 137 files is ``dmesg-ramoops-N``, where N is the record number in memory. To delete 153 a stored record from RAM, simply unlink the re 138 a stored record from RAM, simply unlink the respective pstore file. 154 139 155 Persistent function tracing 140 Persistent function tracing 156 --------------------------- 141 --------------------------- 157 142 158 Persistent function tracing might be useful fo 143 Persistent function tracing might be useful for debugging software or hardware 159 related hangs. The functions call chain log is 144 related hangs. The functions call chain log is stored in a ``ftrace-ramoops`` 160 file. Here is an example of usage:: 145 file. Here is an example of usage:: 161 146 162 # mount -t debugfs debugfs /sys/kernel/debug/ 147 # mount -t debugfs debugfs /sys/kernel/debug/ 163 # echo 1 > /sys/kernel/debug/pstore/record_ft 148 # echo 1 > /sys/kernel/debug/pstore/record_ftrace 164 # reboot -f 149 # reboot -f 165 [...] 150 [...] 166 # mount -t pstore pstore /mnt/ 151 # mount -t pstore pstore /mnt/ 167 # tail /mnt/ftrace-ramoops 152 # tail /mnt/ftrace-ramoops 168 0 ffffffff8101ea64 ffffffff8101bcda native_ 153 0 ffffffff8101ea64 ffffffff8101bcda native_apic_mem_read <- disconnect_bsp_APIC+0x6a/0xc0 169 0 ffffffff8101ea44 ffffffff8101bcf6 native_ 154 0 ffffffff8101ea44 ffffffff8101bcf6 native_apic_mem_write <- disconnect_bsp_APIC+0x86/0xc0 170 0 ffffffff81020084 ffffffff8101a4b5 hpet_di 155 0 ffffffff81020084 ffffffff8101a4b5 hpet_disable <- native_machine_shutdown+0x75/0x90 171 0 ffffffff81005f94 ffffffff8101a4bb iommu_s 156 0 ffffffff81005f94 ffffffff8101a4bb iommu_shutdown_noop <- native_machine_shutdown+0x7b/0x90 172 0 ffffffff8101a6a1 ffffffff8101a437 native_ 157 0 ffffffff8101a6a1 ffffffff8101a437 native_machine_emergency_restart <- native_machine_restart+0x37/0x40 173 0 ffffffff811f9876 ffffffff8101a73a acpi_re 158 0 ffffffff811f9876 ffffffff8101a73a acpi_reboot <- native_machine_emergency_restart+0xaa/0x1e0 174 0 ffffffff8101a514 ffffffff8101a772 mach_re 159 0 ffffffff8101a514 ffffffff8101a772 mach_reboot_fixups <- native_machine_emergency_restart+0xe2/0x1e0 175 0 ffffffff811d9c54 ffffffff8101a7a0 __const 160 0 ffffffff811d9c54 ffffffff8101a7a0 __const_udelay <- native_machine_emergency_restart+0x110/0x1e0 176 0 ffffffff811d9c34 ffffffff811d9c80 __delay 161 0 ffffffff811d9c34 ffffffff811d9c80 __delay <- __const_udelay+0x30/0x40 177 0 ffffffff811d9d14 ffffffff811d9c3f delay_t 162 0 ffffffff811d9d14 ffffffff811d9c3f delay_tsc <- __delay+0xf/0x20
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.