1 // SPDX-License-Identifier: GPL-2.0-only
3 * RAM Oops/Panic logger
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11 #include <linux/kernel.h>
12 #include <linux/err.h>
13 #include <linux/module.h>
14 #include <linux/version.h>
15 #include <linux/pstore.h>
17 #include <linux/ioport.h>
18 #include <linux/platform_device.h>
19 #include <linux/slab.h>
20 #include <linux/compiler.h>
21 #include <linux/pstore_ram.h>
23 #include <linux/of_address.h>
25 #define RAMOOPS_KERNMSG_HDR "===="
26 #define MIN_MEM_SIZE 4096UL
28 static ulong record_size = MIN_MEM_SIZE;
29 module_param(record_size, ulong, 0400);
30 MODULE_PARM_DESC(record_size,
31 "size of each dump done on oops/panic");
33 static ulong ramoops_console_size = MIN_MEM_SIZE;
34 module_param_named(console_size, ramoops_console_size, ulong, 0400);
35 MODULE_PARM_DESC(console_size, "size of kernel console log");
37 static ulong ramoops_ftrace_size = MIN_MEM_SIZE;
38 module_param_named(ftrace_size, ramoops_ftrace_size, ulong, 0400);
39 MODULE_PARM_DESC(ftrace_size, "size of ftrace log");
41 static ulong ramoops_pmsg_size = MIN_MEM_SIZE;
42 module_param_named(pmsg_size, ramoops_pmsg_size, ulong, 0400);
43 MODULE_PARM_DESC(pmsg_size, "size of user space message log");
45 static unsigned long long mem_address;
46 module_param_hw(mem_address, ullong, other, 0400);
47 MODULE_PARM_DESC(mem_address,
48 "start of reserved RAM used to store oops/panic logs");
50 static ulong mem_size;
51 module_param(mem_size, ulong, 0400);
52 MODULE_PARM_DESC(mem_size,
53 "size of reserved RAM used to store oops/panic logs");
55 static unsigned int mem_type;
56 module_param(mem_type, uint, 0600);
57 MODULE_PARM_DESC(mem_type,
58 "set to 1 to try to use unbuffered memory (default 0)");
60 static int dump_oops = 1;
61 module_param(dump_oops, int, 0600);
62 MODULE_PARM_DESC(dump_oops,
63 "set to 1 to dump oopses, 0 to only dump panics (default 1)");
65 static int ramoops_ecc;
66 module_param_named(ecc, ramoops_ecc, int, 0600);
67 MODULE_PARM_DESC(ramoops_ecc,
68 "if non-zero, the option enables ECC support and specifies "
69 "ECC buffer size in bytes (1 is a special value, means 16 "
72 struct ramoops_context {
73 struct persistent_ram_zone **dprzs; /* Oops dump zones */
74 struct persistent_ram_zone *cprz; /* Console zone */
75 struct persistent_ram_zone **fprzs; /* Ftrace zones */
76 struct persistent_ram_zone *mprz; /* PMSG zone */
77 phys_addr_t phys_addr;
86 struct persistent_ram_ecc_info ecc_info;
87 unsigned int max_dump_cnt;
88 unsigned int dump_write_cnt;
89 /* _read_cnt need clear on ramoops_pstore_open */
90 unsigned int dump_read_cnt;
91 unsigned int console_read_cnt;
92 unsigned int max_ftrace_cnt;
93 unsigned int ftrace_read_cnt;
94 unsigned int pmsg_read_cnt;
95 struct pstore_info pstore;
98 static struct platform_device *dummy;
100 static int ramoops_pstore_open(struct pstore_info *psi)
102 struct ramoops_context *cxt = psi->data;
104 cxt->dump_read_cnt = 0;
105 cxt->console_read_cnt = 0;
106 cxt->ftrace_read_cnt = 0;
107 cxt->pmsg_read_cnt = 0;
111 static struct persistent_ram_zone *
112 ramoops_get_next_prz(struct persistent_ram_zone *przs[], int id,
113 struct pstore_record *record)
115 struct persistent_ram_zone *prz;
117 /* Give up if we never existed or have hit the end. */
125 /* Update old/shadowed buffer. */
126 if (prz->type == PSTORE_TYPE_DMESG)
127 persistent_ram_save_old(prz);
129 if (!persistent_ram_old_size(prz))
132 record->type = prz->type;
138 static int ramoops_read_kmsg_hdr(char *buffer, struct timespec64 *time,
142 int header_length = 0;
144 if (sscanf(buffer, RAMOOPS_KERNMSG_HDR "%lld.%lu-%c\n%n",
145 (time64_t *)&time->tv_sec, &time->tv_nsec, &data_type,
146 &header_length) == 3) {
147 if (data_type == 'C')
151 } else if (sscanf(buffer, RAMOOPS_KERNMSG_HDR "%lld.%lu\n%n",
152 (time64_t *)&time->tv_sec, &time->tv_nsec,
153 &header_length) == 2) {
160 return header_length;
163 static bool prz_ok(struct persistent_ram_zone *prz)
165 return !!prz && !!(persistent_ram_old_size(prz) +
166 persistent_ram_ecc_string(prz, NULL, 0));
169 static ssize_t ftrace_log_combine(struct persistent_ram_zone *dest,
170 struct persistent_ram_zone *src)
172 size_t dest_size, src_size, total, dest_off, src_off;
173 size_t dest_idx = 0, src_idx = 0, merged_idx = 0;
175 struct pstore_ftrace_record *drec, *srec, *mrec;
176 size_t record_size = sizeof(struct pstore_ftrace_record);
178 dest_off = dest->old_log_size % record_size;
179 dest_size = dest->old_log_size - dest_off;
181 src_off = src->old_log_size % record_size;
182 src_size = src->old_log_size - src_off;
184 total = dest_size + src_size;
185 merged_buf = kmalloc(total, GFP_KERNEL);
189 drec = (struct pstore_ftrace_record *)(dest->old_log + dest_off);
190 srec = (struct pstore_ftrace_record *)(src->old_log + src_off);
191 mrec = (struct pstore_ftrace_record *)(merged_buf);
193 while (dest_size > 0 && src_size > 0) {
194 if (pstore_ftrace_read_timestamp(&drec[dest_idx]) <
195 pstore_ftrace_read_timestamp(&srec[src_idx])) {
196 mrec[merged_idx++] = drec[dest_idx++];
197 dest_size -= record_size;
199 mrec[merged_idx++] = srec[src_idx++];
200 src_size -= record_size;
204 while (dest_size > 0) {
205 mrec[merged_idx++] = drec[dest_idx++];
206 dest_size -= record_size;
209 while (src_size > 0) {
210 mrec[merged_idx++] = srec[src_idx++];
211 src_size -= record_size;
214 kfree(dest->old_log);
215 dest->old_log = merged_buf;
216 dest->old_log_size = total;
221 static ssize_t ramoops_pstore_read(struct pstore_record *record)
224 struct ramoops_context *cxt = record->psi->data;
225 struct persistent_ram_zone *prz = NULL;
226 int header_length = 0;
227 bool free_prz = false;
230 * Ramoops headers provide time stamps for PSTORE_TYPE_DMESG, but
231 * PSTORE_TYPE_CONSOLE and PSTORE_TYPE_FTRACE don't currently have
232 * valid time stamps, so it is initialized to zero.
234 record->time.tv_sec = 0;
235 record->time.tv_nsec = 0;
236 record->compressed = false;
238 /* Find the next valid persistent_ram_zone for DMESG */
239 while (cxt->dump_read_cnt < cxt->max_dump_cnt && !prz) {
240 prz = ramoops_get_next_prz(cxt->dprzs, cxt->dump_read_cnt++,
244 header_length = ramoops_read_kmsg_hdr(persistent_ram_old(prz),
246 &record->compressed);
247 /* Clear and skip this DMESG record if it has no valid header */
248 if (!header_length) {
249 persistent_ram_free_old(prz);
250 persistent_ram_zap(prz);
255 if (!prz_ok(prz) && !cxt->console_read_cnt++)
256 prz = ramoops_get_next_prz(&cxt->cprz, 0 /* single */, record);
258 if (!prz_ok(prz) && !cxt->pmsg_read_cnt++)
259 prz = ramoops_get_next_prz(&cxt->mprz, 0 /* single */, record);
261 /* ftrace is last since it may want to dynamically allocate memory. */
263 if (!(cxt->flags & RAMOOPS_FLAG_FTRACE_PER_CPU) &&
264 !cxt->ftrace_read_cnt++) {
265 prz = ramoops_get_next_prz(cxt->fprzs, 0 /* single */,
269 * Build a new dummy record which combines all the
270 * per-cpu records including metadata and ecc info.
272 struct persistent_ram_zone *tmp_prz, *prz_next;
274 tmp_prz = kzalloc(sizeof(struct persistent_ram_zone),
281 while (cxt->ftrace_read_cnt < cxt->max_ftrace_cnt) {
282 prz_next = ramoops_get_next_prz(cxt->fprzs,
283 cxt->ftrace_read_cnt++, record);
285 if (!prz_ok(prz_next))
288 tmp_prz->ecc_info = prz_next->ecc_info;
289 tmp_prz->corrected_bytes +=
290 prz_next->corrected_bytes;
291 tmp_prz->bad_blocks += prz_next->bad_blocks;
292 size = ftrace_log_combine(tmp_prz, prz_next);
305 size = persistent_ram_old_size(prz) - header_length;
307 /* ECC correction notice */
308 record->ecc_notice_size = persistent_ram_ecc_string(prz, NULL, 0);
310 record->buf = kmalloc(size + record->ecc_notice_size + 1, GFP_KERNEL);
311 if (record->buf == NULL) {
316 memcpy(record->buf, (char *)persistent_ram_old(prz) + header_length,
319 persistent_ram_ecc_string(prz, record->buf + size,
320 record->ecc_notice_size + 1);
331 static size_t ramoops_write_kmsg_hdr(struct persistent_ram_zone *prz,
332 struct pstore_record *record)
334 char hdr[36]; /* "===="(4), %lld(20), "."(1), %06lu(6), "-%c\n"(3) */
337 len = scnprintf(hdr, sizeof(hdr),
338 RAMOOPS_KERNMSG_HDR "%lld.%06lu-%c\n",
339 (time64_t)record->time.tv_sec,
340 record->time.tv_nsec / 1000,
341 record->compressed ? 'C' : 'D');
342 persistent_ram_write(prz, hdr, len);
347 static int notrace ramoops_pstore_write(struct pstore_record *record)
349 struct ramoops_context *cxt = record->psi->data;
350 struct persistent_ram_zone *prz;
353 if (record->type == PSTORE_TYPE_CONSOLE) {
356 persistent_ram_write(cxt->cprz, record->buf, record->size);
358 } else if (record->type == PSTORE_TYPE_FTRACE) {
364 * Choose zone by if we're using per-cpu buffers.
366 if (cxt->flags & RAMOOPS_FLAG_FTRACE_PER_CPU)
367 zonenum = smp_processor_id();
371 persistent_ram_write(cxt->fprzs[zonenum], record->buf,
374 } else if (record->type == PSTORE_TYPE_PMSG) {
375 pr_warn_ratelimited("PMSG shouldn't call %s\n", __func__);
379 if (record->type != PSTORE_TYPE_DMESG)
383 * Out of the various dmesg dump types, ramoops is currently designed
384 * to only store crash logs, rather than storing general kernel logs.
386 if (record->reason != KMSG_DUMP_OOPS &&
387 record->reason != KMSG_DUMP_PANIC)
390 /* Skip Oopes when configured to do so. */
391 if (record->reason == KMSG_DUMP_OOPS && !cxt->dump_oops)
395 * Explicitly only take the first part of any new crash.
396 * If our buffer is larger than kmsg_bytes, this can never happen,
397 * and if our buffer is smaller than kmsg_bytes, we don't want the
398 * report split across multiple records.
400 if (record->part != 1)
406 prz = cxt->dprzs[cxt->dump_write_cnt];
408 /* Build header and append record contents. */
409 hlen = ramoops_write_kmsg_hdr(prz, record);
414 if (size + hlen > prz->buffer_size)
415 size = prz->buffer_size - hlen;
416 persistent_ram_write(prz, record->buf, size);
418 cxt->dump_write_cnt = (cxt->dump_write_cnt + 1) % cxt->max_dump_cnt;
423 static int notrace ramoops_pstore_write_user(struct pstore_record *record,
424 const char __user *buf)
426 if (record->type == PSTORE_TYPE_PMSG) {
427 struct ramoops_context *cxt = record->psi->data;
431 return persistent_ram_write_user(cxt->mprz, buf, record->size);
437 static int ramoops_pstore_erase(struct pstore_record *record)
439 struct ramoops_context *cxt = record->psi->data;
440 struct persistent_ram_zone *prz;
442 switch (record->type) {
443 case PSTORE_TYPE_DMESG:
444 if (record->id >= cxt->max_dump_cnt)
446 prz = cxt->dprzs[record->id];
448 case PSTORE_TYPE_CONSOLE:
451 case PSTORE_TYPE_FTRACE:
452 if (record->id >= cxt->max_ftrace_cnt)
454 prz = cxt->fprzs[record->id];
456 case PSTORE_TYPE_PMSG:
463 persistent_ram_free_old(prz);
464 persistent_ram_zap(prz);
469 static struct ramoops_context oops_cxt = {
471 .owner = THIS_MODULE,
473 .open = ramoops_pstore_open,
474 .read = ramoops_pstore_read,
475 .write = ramoops_pstore_write,
476 .write_user = ramoops_pstore_write_user,
477 .erase = ramoops_pstore_erase,
481 static void ramoops_free_przs(struct ramoops_context *cxt)
487 for (i = 0; i < cxt->max_dump_cnt; i++)
488 persistent_ram_free(cxt->dprzs[i]);
491 cxt->max_dump_cnt = 0;
494 /* Free ftrace PRZs */
496 for (i = 0; i < cxt->max_ftrace_cnt; i++)
497 persistent_ram_free(cxt->fprzs[i]);
499 cxt->max_ftrace_cnt = 0;
503 static int ramoops_init_przs(const char *name,
504 struct device *dev, struct ramoops_context *cxt,
505 struct persistent_ram_zone ***przs,
506 phys_addr_t *paddr, size_t mem_sz,
508 unsigned int *cnt, u32 sig, u32 flags)
513 struct persistent_ram_zone **prz_ar;
515 /* Allocate nothing for 0 mem_sz or 0 record_size. */
516 if (mem_sz == 0 || record_size == 0) {
522 * If we have a negative record size, calculate it based on
523 * mem_sz / *cnt. If we have a positive record size, calculate
524 * cnt from mem_sz / record_size.
526 if (record_size < 0) {
529 record_size = mem_sz / *cnt;
530 if (record_size == 0) {
531 dev_err(dev, "%s record size == 0 (%zu / %u)\n",
536 *cnt = mem_sz / record_size;
538 dev_err(dev, "%s record count == 0 (%zu / %zu)\n",
539 name, mem_sz, record_size);
544 if (*paddr + mem_sz - cxt->phys_addr > cxt->size) {
545 dev_err(dev, "no room for %s mem region (0x%zx@0x%llx) in (0x%lx@0x%llx)\n",
547 mem_sz, (unsigned long long)*paddr,
548 cxt->size, (unsigned long long)cxt->phys_addr);
552 zone_sz = mem_sz / *cnt;
554 dev_err(dev, "%s zone size == 0\n", name);
558 prz_ar = kcalloc(*cnt, sizeof(**przs), GFP_KERNEL);
562 for (i = 0; i < *cnt; i++) {
566 label = kasprintf(GFP_KERNEL, "ramoops:%s", name);
568 label = kasprintf(GFP_KERNEL, "ramoops:%s(%d/%d)",
570 prz_ar[i] = persistent_ram_new(*paddr, zone_sz, sig,
572 cxt->memtype, flags, label);
573 if (IS_ERR(prz_ar[i])) {
574 err = PTR_ERR(prz_ar[i]);
575 dev_err(dev, "failed to request %s mem region (0x%zx@0x%llx): %d\n",
577 (unsigned long long)*paddr, err);
581 persistent_ram_free(prz_ar[i]);
587 prz_ar[i]->type = pstore_name_to_type(name);
598 static int ramoops_init_prz(const char *name,
599 struct device *dev, struct ramoops_context *cxt,
600 struct persistent_ram_zone **prz,
601 phys_addr_t *paddr, size_t sz, u32 sig)
608 if (*paddr + sz - cxt->phys_addr > cxt->size) {
609 dev_err(dev, "no room for %s mem region (0x%zx@0x%llx) in (0x%lx@0x%llx)\n",
610 name, sz, (unsigned long long)*paddr,
611 cxt->size, (unsigned long long)cxt->phys_addr);
615 label = kasprintf(GFP_KERNEL, "ramoops:%s", name);
616 *prz = persistent_ram_new(*paddr, sz, sig, &cxt->ecc_info,
617 cxt->memtype, PRZ_FLAG_ZAP_OLD, label);
619 int err = PTR_ERR(*prz);
621 dev_err(dev, "failed to request %s mem region (0x%zx@0x%llx): %d\n",
622 name, sz, (unsigned long long)*paddr, err);
627 (*prz)->type = pstore_name_to_type(name);
632 static int ramoops_parse_dt_size(struct platform_device *pdev,
633 const char *propname, u32 *value)
638 ret = of_property_read_u32(pdev->dev.of_node, propname, &val32);
639 if (ret < 0 && ret != -EINVAL) {
640 dev_err(&pdev->dev, "failed to parse property %s: %d\n",
645 if (val32 > INT_MAX) {
646 dev_err(&pdev->dev, "%s %u > INT_MAX\n", propname, val32);
654 static int ramoops_parse_dt(struct platform_device *pdev,
655 struct ramoops_platform_data *pdata)
657 struct device_node *of_node = pdev->dev.of_node;
658 struct device_node *parent_node;
659 struct resource *res;
663 dev_dbg(&pdev->dev, "using Device Tree\n");
665 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
668 "failed to locate DT /reserved-memory resource\n");
672 pdata->mem_size = resource_size(res);
673 pdata->mem_address = res->start;
674 pdata->mem_type = of_property_read_bool(of_node, "unbuffered");
675 pdata->dump_oops = !of_property_read_bool(of_node, "no-dump-oops");
677 #define parse_size(name, field) { \
678 ret = ramoops_parse_dt_size(pdev, name, &value); \
684 parse_size("record-size", pdata->record_size);
685 parse_size("console-size", pdata->console_size);
686 parse_size("ftrace-size", pdata->ftrace_size);
687 parse_size("pmsg-size", pdata->pmsg_size);
688 parse_size("ecc-size", pdata->ecc_info.ecc_size);
689 parse_size("flags", pdata->flags);
694 * Some old Chromebooks relied on the kernel setting the
695 * console_size and pmsg_size to the record size since that's
696 * what the downstream kernel did. These same Chromebooks had
697 * "ramoops" straight under the root node which isn't
698 * according to the current upstream bindings (though it was
699 * arguably acceptable under a prior version of the bindings).
700 * Let's make those old Chromebooks work by detecting that
701 * we're not a child of "reserved-memory" and mimicking the
704 parent_node = of_get_parent(of_node);
705 if (!of_node_name_eq(parent_node, "reserved-memory") &&
706 !pdata->console_size && !pdata->ftrace_size &&
707 !pdata->pmsg_size && !pdata->ecc_info.ecc_size) {
708 pdata->console_size = pdata->record_size;
709 pdata->pmsg_size = pdata->record_size;
711 of_node_put(parent_node);
716 static int ramoops_probe(struct platform_device *pdev)
718 struct device *dev = &pdev->dev;
719 struct ramoops_platform_data *pdata = dev->platform_data;
720 struct ramoops_platform_data pdata_local;
721 struct ramoops_context *cxt = &oops_cxt;
727 * Only a single ramoops area allowed at a time, so fail extra
730 if (cxt->max_dump_cnt) {
731 pr_err("already initialized\n");
735 if (dev_of_node(dev) && !pdata) {
736 pdata = &pdata_local;
737 memset(pdata, 0, sizeof(*pdata));
739 err = ramoops_parse_dt(pdev, pdata);
744 /* Make sure we didn't get bogus platform data pointer. */
746 pr_err("NULL platform data\n");
750 if (!pdata->mem_size || (!pdata->record_size && !pdata->console_size &&
751 !pdata->ftrace_size && !pdata->pmsg_size)) {
752 pr_err("The memory size and the record/console size must be "
757 if (pdata->record_size && !is_power_of_2(pdata->record_size))
758 pdata->record_size = rounddown_pow_of_two(pdata->record_size);
759 if (pdata->console_size && !is_power_of_2(pdata->console_size))
760 pdata->console_size = rounddown_pow_of_two(pdata->console_size);
761 if (pdata->ftrace_size && !is_power_of_2(pdata->ftrace_size))
762 pdata->ftrace_size = rounddown_pow_of_two(pdata->ftrace_size);
763 if (pdata->pmsg_size && !is_power_of_2(pdata->pmsg_size))
764 pdata->pmsg_size = rounddown_pow_of_two(pdata->pmsg_size);
766 cxt->size = pdata->mem_size;
767 cxt->phys_addr = pdata->mem_address;
768 cxt->memtype = pdata->mem_type;
769 cxt->record_size = pdata->record_size;
770 cxt->console_size = pdata->console_size;
771 cxt->ftrace_size = pdata->ftrace_size;
772 cxt->pmsg_size = pdata->pmsg_size;
773 cxt->dump_oops = pdata->dump_oops;
774 cxt->flags = pdata->flags;
775 cxt->ecc_info = pdata->ecc_info;
777 paddr = cxt->phys_addr;
779 dump_mem_sz = cxt->size - cxt->console_size - cxt->ftrace_size
781 err = ramoops_init_przs("dmesg", dev, cxt, &cxt->dprzs, &paddr,
782 dump_mem_sz, cxt->record_size,
783 &cxt->max_dump_cnt, 0, 0);
787 err = ramoops_init_prz("console", dev, cxt, &cxt->cprz, &paddr,
788 cxt->console_size, 0);
792 cxt->max_ftrace_cnt = (cxt->flags & RAMOOPS_FLAG_FTRACE_PER_CPU)
795 err = ramoops_init_przs("ftrace", dev, cxt, &cxt->fprzs, &paddr,
796 cxt->ftrace_size, -1,
797 &cxt->max_ftrace_cnt, LINUX_VERSION_CODE,
798 (cxt->flags & RAMOOPS_FLAG_FTRACE_PER_CPU)
799 ? PRZ_FLAG_NO_LOCK : 0);
803 err = ramoops_init_prz("pmsg", dev, cxt, &cxt->mprz, &paddr,
808 cxt->pstore.data = cxt;
810 * Prepare frontend flags based on which areas are initialized.
811 * For ramoops_init_przs() cases, the "max count" variable tells
812 * if there are regions present. For ramoops_init_prz() cases,
813 * the single region size is how to check.
815 cxt->pstore.flags = 0;
816 if (cxt->max_dump_cnt)
817 cxt->pstore.flags |= PSTORE_FLAGS_DMESG;
818 if (cxt->console_size)
819 cxt->pstore.flags |= PSTORE_FLAGS_CONSOLE;
820 if (cxt->max_ftrace_cnt)
821 cxt->pstore.flags |= PSTORE_FLAGS_FTRACE;
823 cxt->pstore.flags |= PSTORE_FLAGS_PMSG;
826 * Since bufsize is only used for dmesg crash dumps, it
827 * must match the size of the dprz record (after PRZ header
828 * and ECC bytes have been accounted for).
830 if (cxt->pstore.flags & PSTORE_FLAGS_DMESG) {
831 cxt->pstore.bufsize = cxt->dprzs[0]->buffer_size;
832 cxt->pstore.buf = kzalloc(cxt->pstore.bufsize, GFP_KERNEL);
833 if (!cxt->pstore.buf) {
834 pr_err("cannot allocate pstore crash dump buffer\n");
840 err = pstore_register(&cxt->pstore);
842 pr_err("registering with pstore failed\n");
847 * Update the module parameter variables as well so they are visible
848 * through /sys/module/ramoops/parameters/
850 mem_size = pdata->mem_size;
851 mem_address = pdata->mem_address;
852 record_size = pdata->record_size;
853 dump_oops = pdata->dump_oops;
854 ramoops_console_size = pdata->console_size;
855 ramoops_pmsg_size = pdata->pmsg_size;
856 ramoops_ftrace_size = pdata->ftrace_size;
858 pr_info("using 0x%lx@0x%llx, ecc: %d\n",
859 cxt->size, (unsigned long long)cxt->phys_addr,
860 cxt->ecc_info.ecc_size);
865 kfree(cxt->pstore.buf);
867 cxt->pstore.bufsize = 0;
868 persistent_ram_free(cxt->mprz);
871 persistent_ram_free(cxt->cprz);
873 ramoops_free_przs(cxt);
878 static int ramoops_remove(struct platform_device *pdev)
880 struct ramoops_context *cxt = &oops_cxt;
882 pstore_unregister(&cxt->pstore);
884 kfree(cxt->pstore.buf);
885 cxt->pstore.bufsize = 0;
887 persistent_ram_free(cxt->mprz);
888 persistent_ram_free(cxt->cprz);
889 ramoops_free_przs(cxt);
894 static const struct of_device_id dt_match[] = {
895 { .compatible = "ramoops" },
899 static struct platform_driver ramoops_driver = {
900 .probe = ramoops_probe,
901 .remove = ramoops_remove,
904 .of_match_table = dt_match,
908 static inline void ramoops_unregister_dummy(void)
910 platform_device_unregister(dummy);
914 static void __init ramoops_register_dummy(void)
916 struct ramoops_platform_data pdata;
919 * Prepare a dummy platform data structure to carry the module
920 * parameters. If mem_size isn't set, then there are no module
921 * parameters, and we can skip this.
926 pr_info("using module parameters\n");
928 memset(&pdata, 0, sizeof(pdata));
929 pdata.mem_size = mem_size;
930 pdata.mem_address = mem_address;
931 pdata.mem_type = mem_type;
932 pdata.record_size = record_size;
933 pdata.console_size = ramoops_console_size;
934 pdata.ftrace_size = ramoops_ftrace_size;
935 pdata.pmsg_size = ramoops_pmsg_size;
936 pdata.dump_oops = dump_oops;
937 pdata.flags = RAMOOPS_FLAG_FTRACE_PER_CPU;
940 * For backwards compatibility ramoops.ecc=1 means 16 bytes ECC
941 * (using 1 byte for ECC isn't much of use anyway).
943 pdata.ecc_info.ecc_size = ramoops_ecc == 1 ? 16 : ramoops_ecc;
945 dummy = platform_device_register_data(NULL, "ramoops", -1,
946 &pdata, sizeof(pdata));
948 pr_info("could not create platform device: %ld\n",
951 ramoops_unregister_dummy();
955 static int __init ramoops_init(void)
959 ramoops_register_dummy();
960 ret = platform_driver_register(&ramoops_driver);
962 ramoops_unregister_dummy();
966 postcore_initcall(ramoops_init);
968 static void __exit ramoops_exit(void)
970 platform_driver_unregister(&ramoops_driver);
971 ramoops_unregister_dummy();
973 module_exit(ramoops_exit);
975 MODULE_LICENSE("GPL");
977 MODULE_DESCRIPTION("RAM Oops/Panic logger/driver");