2 * RAM Oops/Panic logger
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2 as published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
23 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
25 #include <linux/kernel.h>
26 #include <linux/err.h>
27 #include <linux/module.h>
28 #include <linux/version.h>
29 #include <linux/pstore.h>
30 #include <linux/time.h>
32 #include <linux/ioport.h>
33 #include <linux/platform_device.h>
34 #include <linux/slab.h>
35 #include <linux/compiler.h>
36 #include <linux/pstore_ram.h>
38 #include <linux/of_address.h>
40 #define RAMOOPS_KERNMSG_HDR "===="
41 #define MIN_MEM_SIZE 4096UL
43 static ulong record_size = MIN_MEM_SIZE;
44 module_param(record_size, ulong, 0400);
45 MODULE_PARM_DESC(record_size,
46 "size of each dump done on oops/panic");
48 static ulong ramoops_console_size = MIN_MEM_SIZE;
49 module_param_named(console_size, ramoops_console_size, ulong, 0400);
50 MODULE_PARM_DESC(console_size, "size of kernel console log");
52 static ulong ramoops_ftrace_size = MIN_MEM_SIZE;
53 module_param_named(ftrace_size, ramoops_ftrace_size, ulong, 0400);
54 MODULE_PARM_DESC(ftrace_size, "size of ftrace log");
56 static ulong ramoops_pmsg_size = MIN_MEM_SIZE;
57 module_param_named(pmsg_size, ramoops_pmsg_size, ulong, 0400);
58 MODULE_PARM_DESC(pmsg_size, "size of user space message log");
60 static unsigned long long mem_address;
61 module_param(mem_address, ullong, 0400);
62 MODULE_PARM_DESC(mem_address,
63 "start of reserved RAM used to store oops/panic logs");
65 static ulong mem_size;
66 module_param(mem_size, ulong, 0400);
67 MODULE_PARM_DESC(mem_size,
68 "size of reserved RAM used to store oops/panic logs");
70 static unsigned int mem_type;
71 module_param(mem_type, uint, 0600);
72 MODULE_PARM_DESC(mem_type,
73 "set to 1 to try to use unbuffered memory (default 0)");
75 static int dump_oops = 1;
76 module_param(dump_oops, int, 0600);
77 MODULE_PARM_DESC(dump_oops,
78 "set to 1 to dump oopses, 0 to only dump panics (default 1)");
80 static int ramoops_ecc;
81 module_param_named(ecc, ramoops_ecc, int, 0600);
82 MODULE_PARM_DESC(ramoops_ecc,
83 "if non-zero, the option enables ECC support and specifies "
84 "ECC buffer size in bytes (1 is a special value, means 16 "
87 struct ramoops_context {
88 struct persistent_ram_zone **dprzs; /* Oops dump zones */
89 struct persistent_ram_zone *cprz; /* Console zone */
90 struct persistent_ram_zone **fprzs; /* Ftrace zones */
91 struct persistent_ram_zone *mprz; /* PMSG zone */
92 phys_addr_t phys_addr;
101 struct persistent_ram_ecc_info ecc_info;
102 unsigned int max_dump_cnt;
103 unsigned int dump_write_cnt;
104 /* _read_cnt need clear on ramoops_pstore_open */
105 unsigned int dump_read_cnt;
106 unsigned int console_read_cnt;
107 unsigned int max_ftrace_cnt;
108 unsigned int ftrace_read_cnt;
109 unsigned int pmsg_read_cnt;
110 struct pstore_info pstore;
113 static struct platform_device *dummy;
114 static struct ramoops_platform_data *dummy_data;
116 static int ramoops_pstore_open(struct pstore_info *psi)
118 struct ramoops_context *cxt = psi->data;
120 cxt->dump_read_cnt = 0;
121 cxt->console_read_cnt = 0;
122 cxt->ftrace_read_cnt = 0;
123 cxt->pmsg_read_cnt = 0;
127 static struct persistent_ram_zone *
128 ramoops_get_next_prz(struct persistent_ram_zone *przs[], uint *c, uint max,
130 enum pstore_type_id *typep, enum pstore_type_id type,
133 struct persistent_ram_zone *prz;
136 /* Give up if we never existed or have hit the end. */
137 if (!przs || i >= max)
144 /* Update old/shadowed buffer. */
146 persistent_ram_save_old(prz);
148 if (!persistent_ram_old_size(prz))
157 static int ramoops_read_kmsg_hdr(char *buffer, struct timespec *time,
161 int header_length = 0;
163 if (sscanf(buffer, RAMOOPS_KERNMSG_HDR "%lu.%lu-%c\n%n", &time->tv_sec,
164 &time->tv_nsec, &data_type, &header_length) == 3) {
165 if (data_type == 'C')
169 } else if (sscanf(buffer, RAMOOPS_KERNMSG_HDR "%lu.%lu\n%n",
170 &time->tv_sec, &time->tv_nsec, &header_length) == 2) {
177 return header_length;
180 static bool prz_ok(struct persistent_ram_zone *prz)
182 return !!prz && !!(persistent_ram_old_size(prz) +
183 persistent_ram_ecc_string(prz, NULL, 0));
186 static ssize_t ftrace_log_combine(struct persistent_ram_zone *dest,
187 struct persistent_ram_zone *src)
189 size_t dest_size, src_size, total, dest_off, src_off;
190 size_t dest_idx = 0, src_idx = 0, merged_idx = 0;
192 struct pstore_ftrace_record *drec, *srec, *mrec;
193 size_t record_size = sizeof(struct pstore_ftrace_record);
195 dest_off = dest->old_log_size % record_size;
196 dest_size = dest->old_log_size - dest_off;
198 src_off = src->old_log_size % record_size;
199 src_size = src->old_log_size - src_off;
201 total = dest_size + src_size;
202 merged_buf = kmalloc(total, GFP_KERNEL);
206 drec = (struct pstore_ftrace_record *)(dest->old_log + dest_off);
207 srec = (struct pstore_ftrace_record *)(src->old_log + src_off);
208 mrec = (struct pstore_ftrace_record *)(merged_buf);
210 while (dest_size > 0 && src_size > 0) {
211 if (pstore_ftrace_read_timestamp(&drec[dest_idx]) <
212 pstore_ftrace_read_timestamp(&srec[src_idx])) {
213 mrec[merged_idx++] = drec[dest_idx++];
214 dest_size -= record_size;
216 mrec[merged_idx++] = srec[src_idx++];
217 src_size -= record_size;
221 while (dest_size > 0) {
222 mrec[merged_idx++] = drec[dest_idx++];
223 dest_size -= record_size;
226 while (src_size > 0) {
227 mrec[merged_idx++] = srec[src_idx++];
228 src_size -= record_size;
231 kfree(dest->old_log);
232 dest->old_log = merged_buf;
233 dest->old_log_size = total;
238 static ssize_t ramoops_pstore_read(struct pstore_record *record)
241 struct ramoops_context *cxt = record->psi->data;
242 struct persistent_ram_zone *prz = NULL;
243 int header_length = 0;
244 bool free_prz = false;
247 * Ramoops headers provide time stamps for PSTORE_TYPE_DMESG, but
248 * PSTORE_TYPE_CONSOLE and PSTORE_TYPE_FTRACE don't currently have
249 * valid time stamps, so it is initialized to zero.
251 record->time.tv_sec = 0;
252 record->time.tv_nsec = 0;
253 record->compressed = false;
255 /* Find the next valid persistent_ram_zone for DMESG */
256 while (cxt->dump_read_cnt < cxt->max_dump_cnt && !prz) {
257 prz = ramoops_get_next_prz(cxt->dprzs, &cxt->dump_read_cnt,
258 cxt->max_dump_cnt, &record->id,
260 PSTORE_TYPE_DMESG, 1);
263 header_length = ramoops_read_kmsg_hdr(persistent_ram_old(prz),
265 &record->compressed);
266 /* Clear and skip this DMESG record if it has no valid header */
267 if (!header_length) {
268 persistent_ram_free_old(prz);
269 persistent_ram_zap(prz);
275 prz = ramoops_get_next_prz(&cxt->cprz, &cxt->console_read_cnt,
276 1, &record->id, &record->type,
277 PSTORE_TYPE_CONSOLE, 0);
280 prz = ramoops_get_next_prz(&cxt->mprz, &cxt->pmsg_read_cnt,
281 1, &record->id, &record->type,
282 PSTORE_TYPE_PMSG, 0);
284 /* ftrace is last since it may want to dynamically allocate memory. */
286 if (!(cxt->flags & RAMOOPS_FLAG_FTRACE_PER_CPU)) {
287 prz = ramoops_get_next_prz(cxt->fprzs,
288 &cxt->ftrace_read_cnt, 1, &record->id,
289 &record->type, PSTORE_TYPE_FTRACE, 0);
292 * Build a new dummy record which combines all the
293 * per-cpu records including metadata and ecc info.
295 struct persistent_ram_zone *tmp_prz, *prz_next;
297 tmp_prz = kzalloc(sizeof(struct persistent_ram_zone),
303 while (cxt->ftrace_read_cnt < cxt->max_ftrace_cnt) {
304 prz_next = ramoops_get_next_prz(cxt->fprzs,
305 &cxt->ftrace_read_cnt,
309 PSTORE_TYPE_FTRACE, 0);
311 if (!prz_ok(prz_next))
314 tmp_prz->ecc_info = prz_next->ecc_info;
315 tmp_prz->corrected_bytes +=
316 prz_next->corrected_bytes;
317 tmp_prz->bad_blocks += prz_next->bad_blocks;
318 size = ftrace_log_combine(tmp_prz, prz_next);
332 size = persistent_ram_old_size(prz) - header_length;
334 /* ECC correction notice */
335 record->ecc_notice_size = persistent_ram_ecc_string(prz, NULL, 0);
337 record->buf = kmalloc(size + record->ecc_notice_size + 1, GFP_KERNEL);
338 if (record->buf == NULL) {
343 memcpy(record->buf, (char *)persistent_ram_old(prz) + header_length,
346 persistent_ram_ecc_string(prz, record->buf + size,
347 record->ecc_notice_size + 1);
358 static size_t ramoops_write_kmsg_hdr(struct persistent_ram_zone *prz,
362 struct timespec timestamp;
365 /* Report zeroed timestamp if called before timekeeping has resumed. */
366 if (__getnstimeofday(×tamp)) {
367 timestamp.tv_sec = 0;
368 timestamp.tv_nsec = 0;
370 hdr = kasprintf(GFP_ATOMIC, RAMOOPS_KERNMSG_HDR "%lu.%lu-%c\n",
371 (long)timestamp.tv_sec, (long)(timestamp.tv_nsec / 1000),
372 compressed ? 'C' : 'D');
374 len = hdr ? strlen(hdr) : 0;
375 persistent_ram_write(prz, hdr, len);
381 static int notrace ramoops_pstore_write(struct pstore_record *record)
383 struct ramoops_context *cxt = record->psi->data;
384 struct persistent_ram_zone *prz;
387 if (record->type == PSTORE_TYPE_CONSOLE) {
390 persistent_ram_write(cxt->cprz, record->buf, record->size);
392 } else if (record->type == PSTORE_TYPE_FTRACE) {
398 * Choose zone by if we're using per-cpu buffers.
400 if (cxt->flags & RAMOOPS_FLAG_FTRACE_PER_CPU)
401 zonenum = smp_processor_id();
405 persistent_ram_write(cxt->fprzs[zonenum], record->buf,
408 } else if (record->type == PSTORE_TYPE_PMSG) {
409 pr_warn_ratelimited("PMSG shouldn't call %s\n", __func__);
413 if (record->type != PSTORE_TYPE_DMESG)
417 * Out of the various dmesg dump types, ramoops is currently designed
418 * to only store crash logs, rather than storing general kernel logs.
420 if (record->reason != KMSG_DUMP_OOPS &&
421 record->reason != KMSG_DUMP_PANIC)
424 /* Skip Oopes when configured to do so. */
425 if (record->reason == KMSG_DUMP_OOPS && !cxt->dump_oops)
429 * Explicitly only take the first part of any new crash.
430 * If our buffer is larger than kmsg_bytes, this can never happen,
431 * and if our buffer is smaller than kmsg_bytes, we don't want the
432 * report split across multiple records.
434 if (record->part != 1)
440 prz = cxt->dprzs[cxt->dump_write_cnt];
442 /* Build header and append record contents. */
443 hlen = ramoops_write_kmsg_hdr(prz, record->compressed);
445 if (size + hlen > prz->buffer_size)
446 size = prz->buffer_size - hlen;
447 persistent_ram_write(prz, record->buf, size);
449 cxt->dump_write_cnt = (cxt->dump_write_cnt + 1) % cxt->max_dump_cnt;
454 static int notrace ramoops_pstore_write_user(struct pstore_record *record,
455 const char __user *buf)
457 if (record->type == PSTORE_TYPE_PMSG) {
458 struct ramoops_context *cxt = record->psi->data;
462 return persistent_ram_write_user(cxt->mprz, buf, record->size);
468 static int ramoops_pstore_erase(struct pstore_record *record)
470 struct ramoops_context *cxt = record->psi->data;
471 struct persistent_ram_zone *prz;
473 switch (record->type) {
474 case PSTORE_TYPE_DMESG:
475 if (record->id >= cxt->max_dump_cnt)
477 prz = cxt->dprzs[record->id];
479 case PSTORE_TYPE_CONSOLE:
482 case PSTORE_TYPE_FTRACE:
483 if (record->id >= cxt->max_ftrace_cnt)
485 prz = cxt->fprzs[record->id];
487 case PSTORE_TYPE_PMSG:
494 persistent_ram_free_old(prz);
495 persistent_ram_zap(prz);
500 static struct ramoops_context oops_cxt = {
502 .owner = THIS_MODULE,
504 .open = ramoops_pstore_open,
505 .read = ramoops_pstore_read,
506 .write = ramoops_pstore_write,
507 .write_user = ramoops_pstore_write_user,
508 .erase = ramoops_pstore_erase,
512 static void ramoops_free_przs(struct ramoops_context *cxt)
518 for (i = 0; i < cxt->max_dump_cnt; i++)
519 persistent_ram_free(cxt->dprzs[i]);
522 cxt->max_dump_cnt = 0;
525 /* Free ftrace PRZs */
527 for (i = 0; i < cxt->max_ftrace_cnt; i++)
528 persistent_ram_free(cxt->fprzs[i]);
530 cxt->max_ftrace_cnt = 0;
534 static int ramoops_init_przs(const char *name,
535 struct device *dev, struct ramoops_context *cxt,
536 struct persistent_ram_zone ***przs,
537 phys_addr_t *paddr, size_t mem_sz,
539 unsigned int *cnt, u32 sig, u32 flags)
544 struct persistent_ram_zone **prz_ar;
546 /* Allocate nothing for 0 mem_sz or 0 record_size. */
547 if (mem_sz == 0 || record_size == 0) {
553 * If we have a negative record size, calculate it based on
554 * mem_sz / *cnt. If we have a positive record size, calculate
555 * cnt from mem_sz / record_size.
557 if (record_size < 0) {
560 record_size = mem_sz / *cnt;
561 if (record_size == 0) {
562 dev_err(dev, "%s record size == 0 (%zu / %u)\n",
567 *cnt = mem_sz / record_size;
569 dev_err(dev, "%s record count == 0 (%zu / %zu)\n",
570 name, mem_sz, record_size);
575 if (*paddr + mem_sz - cxt->phys_addr > cxt->size) {
576 dev_err(dev, "no room for %s mem region (0x%zx@0x%llx) in (0x%lx@0x%llx)\n",
578 mem_sz, (unsigned long long)*paddr,
579 cxt->size, (unsigned long long)cxt->phys_addr);
583 zone_sz = mem_sz / *cnt;
585 dev_err(dev, "%s zone size == 0\n", name);
589 prz_ar = kcalloc(*cnt, sizeof(**przs), GFP_KERNEL);
593 for (i = 0; i < *cnt; i++) {
594 prz_ar[i] = persistent_ram_new(*paddr, zone_sz, sig,
596 cxt->memtype, flags);
597 if (IS_ERR(prz_ar[i])) {
598 err = PTR_ERR(prz_ar[i]);
599 dev_err(dev, "failed to request %s mem region (0x%zx@0x%llx): %d\n",
601 (unsigned long long)*paddr, err);
605 persistent_ram_free(prz_ar[i]);
621 static int ramoops_init_prz(const char *name,
622 struct device *dev, struct ramoops_context *cxt,
623 struct persistent_ram_zone **prz,
624 phys_addr_t *paddr, size_t sz, u32 sig)
629 if (*paddr + sz - cxt->phys_addr > cxt->size) {
630 dev_err(dev, "no room for %s mem region (0x%zx@0x%llx) in (0x%lx@0x%llx)\n",
631 name, sz, (unsigned long long)*paddr,
632 cxt->size, (unsigned long long)cxt->phys_addr);
636 *prz = persistent_ram_new(*paddr, sz, sig, &cxt->ecc_info,
639 int err = PTR_ERR(*prz);
641 dev_err(dev, "failed to request %s mem region (0x%zx@0x%llx): %d\n",
642 name, sz, (unsigned long long)*paddr, err);
646 persistent_ram_zap(*prz);
653 static int ramoops_parse_dt_size(struct platform_device *pdev,
654 const char *propname, u32 *value)
659 ret = of_property_read_u32(pdev->dev.of_node, propname, &val32);
660 if (ret < 0 && ret != -EINVAL) {
661 dev_err(&pdev->dev, "failed to parse property %s: %d\n",
666 if (val32 > INT_MAX) {
667 dev_err(&pdev->dev, "%s %u > INT_MAX\n", propname, val32);
675 static int ramoops_parse_dt(struct platform_device *pdev,
676 struct ramoops_platform_data *pdata)
678 struct device_node *of_node = pdev->dev.of_node;
679 struct resource *res;
683 dev_dbg(&pdev->dev, "using Device Tree\n");
685 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
688 "failed to locate DT /reserved-memory resource\n");
692 pdata->mem_size = resource_size(res);
693 pdata->mem_address = res->start;
694 pdata->mem_type = of_property_read_bool(of_node, "unbuffered");
695 pdata->dump_oops = !of_property_read_bool(of_node, "no-dump-oops");
697 #define parse_size(name, field) { \
698 ret = ramoops_parse_dt_size(pdev, name, &value); \
704 parse_size("record-size", pdata->record_size);
705 parse_size("console-size", pdata->console_size);
706 parse_size("ftrace-size", pdata->ftrace_size);
707 parse_size("pmsg-size", pdata->pmsg_size);
708 parse_size("ecc-size", pdata->ecc_info.ecc_size);
709 parse_size("flags", pdata->flags);
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_context *cxt = &oops_cxt;
725 if (dev_of_node(dev) && !pdata) {
726 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
728 pr_err("cannot allocate platform data buffer\n");
733 err = ramoops_parse_dt(pdev, pdata);
739 * Only a single ramoops area allowed at a time, so fail extra
742 if (cxt->max_dump_cnt) {
743 pr_err("already initialized\n");
747 /* Make sure we didn't get bogus platform data pointer. */
749 pr_err("NULL platform data\n");
753 if (!pdata->mem_size || (!pdata->record_size && !pdata->console_size &&
754 !pdata->ftrace_size && !pdata->pmsg_size)) {
755 pr_err("The memory size and the record/console size must be "
760 if (pdata->record_size && !is_power_of_2(pdata->record_size))
761 pdata->record_size = rounddown_pow_of_two(pdata->record_size);
762 if (pdata->console_size && !is_power_of_2(pdata->console_size))
763 pdata->console_size = rounddown_pow_of_two(pdata->console_size);
764 if (pdata->ftrace_size && !is_power_of_2(pdata->ftrace_size))
765 pdata->ftrace_size = rounddown_pow_of_two(pdata->ftrace_size);
766 if (pdata->pmsg_size && !is_power_of_2(pdata->pmsg_size))
767 pdata->pmsg_size = rounddown_pow_of_two(pdata->pmsg_size);
769 cxt->size = pdata->mem_size;
770 cxt->phys_addr = pdata->mem_address;
771 cxt->memtype = pdata->mem_type;
772 cxt->record_size = pdata->record_size;
773 cxt->console_size = pdata->console_size;
774 cxt->ftrace_size = pdata->ftrace_size;
775 cxt->pmsg_size = pdata->pmsg_size;
776 cxt->dump_oops = pdata->dump_oops;
777 cxt->flags = pdata->flags;
778 cxt->ecc_info = pdata->ecc_info;
780 paddr = cxt->phys_addr;
782 dump_mem_sz = cxt->size - cxt->console_size - cxt->ftrace_size
784 err = ramoops_init_przs("dump", dev, cxt, &cxt->dprzs, &paddr,
785 dump_mem_sz, cxt->record_size,
786 &cxt->max_dump_cnt, 0, 0);
790 err = ramoops_init_prz("console", dev, cxt, &cxt->cprz, &paddr,
791 cxt->console_size, 0);
795 cxt->max_ftrace_cnt = (cxt->flags & RAMOOPS_FLAG_FTRACE_PER_CPU)
798 err = ramoops_init_przs("ftrace", dev, cxt, &cxt->fprzs, &paddr,
799 cxt->ftrace_size, -1,
800 &cxt->max_ftrace_cnt, LINUX_VERSION_CODE,
801 (cxt->flags & RAMOOPS_FLAG_FTRACE_PER_CPU)
802 ? PRZ_FLAG_NO_LOCK : 0);
806 err = ramoops_init_prz("pmsg", dev, cxt, &cxt->mprz, &paddr,
811 cxt->pstore.data = cxt;
813 * Console can handle any buffer size, so prefer LOG_LINE_MAX. If we
814 * have to handle dumps, we must have at least record_size buffer. And
815 * for ftrace, bufsize is irrelevant (if bufsize is 0, buf will be
818 if (cxt->console_size)
819 cxt->pstore.bufsize = 1024; /* LOG_LINE_MAX */
820 cxt->pstore.bufsize = max(cxt->record_size, cxt->pstore.bufsize);
821 cxt->pstore.buf = kmalloc(cxt->pstore.bufsize, GFP_KERNEL);
822 if (!cxt->pstore.buf) {
823 pr_err("cannot allocate pstore buffer\n");
827 spin_lock_init(&cxt->pstore.buf_lock);
829 cxt->pstore.flags = PSTORE_FLAGS_DMESG;
830 if (cxt->console_size)
831 cxt->pstore.flags |= PSTORE_FLAGS_CONSOLE;
832 if (cxt->ftrace_size)
833 cxt->pstore.flags |= PSTORE_FLAGS_FTRACE;
835 cxt->pstore.flags |= PSTORE_FLAGS_PMSG;
837 err = pstore_register(&cxt->pstore);
839 pr_err("registering with pstore failed\n");
844 * Update the module parameter variables as well so they are visible
845 * through /sys/module/ramoops/parameters/
847 mem_size = pdata->mem_size;
848 mem_address = pdata->mem_address;
849 record_size = pdata->record_size;
850 dump_oops = pdata->dump_oops;
851 ramoops_console_size = pdata->console_size;
852 ramoops_pmsg_size = pdata->pmsg_size;
853 ramoops_ftrace_size = pdata->ftrace_size;
855 pr_info("attached 0x%lx@0x%llx, ecc: %d/%d\n",
856 cxt->size, (unsigned long long)cxt->phys_addr,
857 cxt->ecc_info.ecc_size, cxt->ecc_info.block_size);
862 kfree(cxt->pstore.buf);
864 cxt->pstore.bufsize = 0;
865 persistent_ram_free(cxt->mprz);
868 persistent_ram_free(cxt->cprz);
870 ramoops_free_przs(cxt);
875 static int ramoops_remove(struct platform_device *pdev)
877 struct ramoops_context *cxt = &oops_cxt;
879 pstore_unregister(&cxt->pstore);
881 kfree(cxt->pstore.buf);
882 cxt->pstore.bufsize = 0;
884 persistent_ram_free(cxt->mprz);
885 persistent_ram_free(cxt->cprz);
886 ramoops_free_przs(cxt);
891 static const struct of_device_id dt_match[] = {
892 { .compatible = "ramoops" },
896 static struct platform_driver ramoops_driver = {
897 .probe = ramoops_probe,
898 .remove = ramoops_remove,
901 .of_match_table = dt_match,
905 static void ramoops_register_dummy(void)
910 pr_info("using module parameters\n");
912 dummy_data = kzalloc(sizeof(*dummy_data), GFP_KERNEL);
914 pr_info("could not allocate pdata\n");
918 dummy_data->mem_size = mem_size;
919 dummy_data->mem_address = mem_address;
920 dummy_data->mem_type = mem_type;
921 dummy_data->record_size = record_size;
922 dummy_data->console_size = ramoops_console_size;
923 dummy_data->ftrace_size = ramoops_ftrace_size;
924 dummy_data->pmsg_size = ramoops_pmsg_size;
925 dummy_data->dump_oops = dump_oops;
926 dummy_data->flags = RAMOOPS_FLAG_FTRACE_PER_CPU;
929 * For backwards compatibility ramoops.ecc=1 means 16 bytes ECC
930 * (using 1 byte for ECC isn't much of use anyway).
932 dummy_data->ecc_info.ecc_size = ramoops_ecc == 1 ? 16 : ramoops_ecc;
934 dummy = platform_device_register_data(NULL, "ramoops", -1,
935 dummy_data, sizeof(struct ramoops_platform_data));
937 pr_info("could not create platform device: %ld\n",
942 static int __init ramoops_init(void)
944 ramoops_register_dummy();
945 return platform_driver_register(&ramoops_driver);
947 postcore_initcall(ramoops_init);
949 static void __exit ramoops_exit(void)
951 platform_driver_unregister(&ramoops_driver);
952 platform_device_unregister(dummy);
955 module_exit(ramoops_exit);
957 MODULE_LICENSE("GPL");
959 MODULE_DESCRIPTION("RAM Oops/Panic logger/driver");