aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/devicetree/bindings/misc/ramoops.txt48
-rw-r--r--Documentation/ramoops.txt6
-rw-r--r--fs/pstore/ram.c95
3 files changed, 145 insertions, 4 deletions
diff --git a/Documentation/devicetree/bindings/misc/ramoops.txt b/Documentation/devicetree/bindings/misc/ramoops.txt
new file mode 100644
index 000000000000..cd02cec67d38
--- /dev/null
+++ b/Documentation/devicetree/bindings/misc/ramoops.txt
@@ -0,0 +1,48 @@
1Ramoops oops/panic logger
2=========================
3
4ramoops provides persistent RAM storage for oops and panics, so they can be
5recovered after a reboot. It is a backend to pstore, so this node is named
6"ramoops" after the backend, rather than "pstore" which is the subsystem.
7
8Parts of this storage may be set aside for other persistent log buffers, such
9as kernel log messages, or for optional ECC error-correction data. The total
10size of these optional buffers must fit in the reserved region.
11
12Any remaining space will be used for a circular buffer of oops and panic
13records. These records have a configurable size, with a size of 0 indicating
14that they should be disabled.
15
16At least one of "record-size", "console-size", "ftrace-size", or "pmsg-size"
17must be set non-zero, but are otherwise optional as listed below.
18
19
20Required properties:
21
22- compatible: must be "ramoops"
23
24- memory-region: phandle to a region of memory that is preserved between
25 reboots
26
27
28Optional properties:
29
30- ecc-size: enables ECC support and specifies ECC buffer size in bytes
31 (defaults to 0: no ECC)
32
33- record-size: maximum size in bytes of each dump done on oops/panic
34 (defaults to 0: disabled)
35
36- console-size: size in bytes of log buffer reserved for kernel messages
37 (defaults to 0: disabled)
38
39- ftrace-size: size in bytes of log buffer reserved for function tracing and
40 profiling (defaults to 0: disabled)
41
42- pmsg-size: size in bytes of log buffer reserved for userspace messages
43 (defaults to 0: disabled)
44
45- unbuffered: if present, use unbuffered mappings to map the reserved region
46 (defaults to buffered mappings)
47
48- no-dump-oops: if present, only dump panics (defaults to panics and oops)
diff --git a/Documentation/ramoops.txt b/Documentation/ramoops.txt
index 5d8675615e59..9264bcab4099 100644
--- a/Documentation/ramoops.txt
+++ b/Documentation/ramoops.txt
@@ -45,7 +45,7 @@ corrupt, but usually it is restorable.
45 45
462. Setting the parameters 462. Setting the parameters
47 47
48Setting the ramoops parameters can be done in 2 different manners: 48Setting the ramoops parameters can be done in 3 different manners:
49 1. Use the module parameters (which have the names of the variables described 49 1. Use the module parameters (which have the names of the variables described
50 as before). 50 as before).
51 For quick debugging, you can also reserve parts of memory during boot 51 For quick debugging, you can also reserve parts of memory during boot
@@ -54,7 +54,9 @@ Setting the ramoops parameters can be done in 2 different manners:
54 kernel to use only the first 128 MB of memory, and place ECC-protected ramoops 54 kernel to use only the first 128 MB of memory, and place ECC-protected ramoops
55 region at 128 MB boundary: 55 region at 128 MB boundary:
56 "mem=128M ramoops.mem_address=0x8000000 ramoops.ecc=1" 56 "mem=128M ramoops.mem_address=0x8000000 ramoops.ecc=1"
57 2. Use a platform device and set the platform data. The parameters can then 57 2. Use Device Tree bindings, as described in
58 Documentation/device-tree/bindings/misc/ramoops.txt.
59 3. Use a platform device and set the platform data. The parameters can then
58 be set through that platform data. An example of doing that is: 60 be set through that platform data. An example of doing that is:
59 61
60#include <linux/pstore_ram.h> 62#include <linux/pstore_ram.h>
diff --git a/fs/pstore/ram.c b/fs/pstore/ram.c
index d9668c2b43cb..47516a794011 100644
--- a/fs/pstore/ram.c
+++ b/fs/pstore/ram.c
@@ -34,6 +34,8 @@
34#include <linux/slab.h> 34#include <linux/slab.h>
35#include <linux/compiler.h> 35#include <linux/compiler.h>
36#include <linux/pstore_ram.h> 36#include <linux/pstore_ram.h>
37#include <linux/of.h>
38#include <linux/of_address.h>
37 39
38#define RAMOOPS_KERNMSG_HDR "====" 40#define RAMOOPS_KERNMSG_HDR "===="
39#define MIN_MEM_SIZE 4096UL 41#define MIN_MEM_SIZE 4096UL
@@ -458,15 +460,98 @@ static int ramoops_init_prz(struct device *dev, struct ramoops_context *cxt,
458 return 0; 460 return 0;
459} 461}
460 462
463static int ramoops_parse_dt_size(struct platform_device *pdev,
464 const char *propname, u32 *value)
465{
466 u32 val32 = 0;
467 int ret;
468
469 ret = of_property_read_u32(pdev->dev.of_node, propname, &val32);
470 if (ret < 0 && ret != -EINVAL) {
471 dev_err(&pdev->dev, "failed to parse property %s: %d\n",
472 propname, ret);
473 return ret;
474 }
475
476 if (val32 > INT_MAX) {
477 dev_err(&pdev->dev, "%s %u > INT_MAX\n", propname, val32);
478 return -EOVERFLOW;
479 }
480
481 *value = val32;
482 return 0;
483}
484
485static int ramoops_parse_dt(struct platform_device *pdev,
486 struct ramoops_platform_data *pdata)
487{
488 struct device_node *of_node = pdev->dev.of_node;
489 struct device_node *mem_region;
490 struct resource res;
491 u32 value;
492 int ret;
493
494 dev_dbg(&pdev->dev, "using Device Tree\n");
495
496 mem_region = of_parse_phandle(of_node, "memory-region", 0);
497 if (!mem_region) {
498 dev_err(&pdev->dev, "no memory-region phandle\n");
499 return -ENODEV;
500 }
501
502 ret = of_address_to_resource(mem_region, 0, &res);
503 of_node_put(mem_region);
504 if (ret) {
505 dev_err(&pdev->dev,
506 "failed to translate memory-region to resource: %d\n",
507 ret);
508 return ret;
509 }
510
511 pdata->mem_size = resource_size(&res);
512 pdata->mem_address = res.start;
513 pdata->mem_type = of_property_read_bool(of_node, "unbuffered");
514 pdata->dump_oops = !of_property_read_bool(of_node, "no-dump-oops");
515
516#define parse_size(name, field) { \
517 ret = ramoops_parse_dt_size(pdev, name, &value); \
518 if (ret < 0) \
519 return ret; \
520 field = value; \
521 }
522
523 parse_size("record-size", pdata->record_size);
524 parse_size("console-size", pdata->console_size);
525 parse_size("ftrace-size", pdata->ftrace_size);
526 parse_size("pmsg-size", pdata->pmsg_size);
527 parse_size("ecc-size", pdata->ecc_info.ecc_size);
528
529#undef parse_size
530
531 return 0;
532}
533
461static int ramoops_probe(struct platform_device *pdev) 534static int ramoops_probe(struct platform_device *pdev)
462{ 535{
463 struct device *dev = &pdev->dev; 536 struct device *dev = &pdev->dev;
464 struct ramoops_platform_data *pdata = pdev->dev.platform_data; 537 struct ramoops_platform_data *pdata = dev->platform_data;
465 struct ramoops_context *cxt = &oops_cxt; 538 struct ramoops_context *cxt = &oops_cxt;
466 size_t dump_mem_sz; 539 size_t dump_mem_sz;
467 phys_addr_t paddr; 540 phys_addr_t paddr;
468 int err = -EINVAL; 541 int err = -EINVAL;
469 542
543 if (dev_of_node(dev) && !pdata) {
544 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
545 if (!pdata) {
546 err = -ENOMEM;
547 goto fail_out;
548 }
549
550 err = ramoops_parse_dt(pdev, pdata);
551 if (err < 0)
552 goto fail_out;
553 }
554
470 /* Only a single ramoops area allowed at a time, so fail extra 555 /* Only a single ramoops area allowed at a time, so fail extra
471 * probes. 556 * probes.
472 */ 557 */
@@ -596,11 +681,17 @@ static int ramoops_remove(struct platform_device *pdev)
596 return 0; 681 return 0;
597} 682}
598 683
684static const struct of_device_id dt_match[] = {
685 { .compatible = "ramoops" },
686 {}
687};
688
599static struct platform_driver ramoops_driver = { 689static struct platform_driver ramoops_driver = {
600 .probe = ramoops_probe, 690 .probe = ramoops_probe,
601 .remove = ramoops_remove, 691 .remove = ramoops_remove,
602 .driver = { 692 .driver = {
603 .name = "ramoops", 693 .name = "ramoops",
694 .of_match_table = dt_match,
604 }, 695 },
605}; 696};
606 697