ramoops.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /*
  2. * RAM Oops/Panic logger
  3. *
  4. * Copyright (C) 2010 Marco Stornelli <marco.stornelli@gmail.com>
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * version 2 as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  18. * 02110-1301 USA
  19. *
  20. */
  21. #include <linux/kernel.h>
  22. #include <linux/module.h>
  23. #include <linux/kmsg_dump.h>
  24. #include <linux/time.h>
  25. #include <linux/io.h>
  26. #include <linux/ioport.h>
  27. #include <linux/platform_device.h>
  28. #include <linux/ramoops.h>
  29. #define RAMOOPS_KERNMSG_HDR "===="
  30. #define RECORD_SIZE 4096UL
  31. static ulong mem_address;
  32. module_param(mem_address, ulong, 0400);
  33. MODULE_PARM_DESC(mem_address,
  34. "start of reserved RAM used to store oops/panic logs");
  35. static ulong mem_size;
  36. module_param(mem_size, ulong, 0400);
  37. MODULE_PARM_DESC(mem_size,
  38. "size of reserved RAM used to store oops/panic logs");
  39. static int dump_oops = 1;
  40. module_param(dump_oops, int, 0600);
  41. MODULE_PARM_DESC(dump_oops,
  42. "set to 1 to dump oopses, 0 to only dump panics (default 1)");
  43. static struct ramoops_context {
  44. struct kmsg_dumper dump;
  45. void *virt_addr;
  46. phys_addr_t phys_addr;
  47. unsigned long size;
  48. int count;
  49. int max_count;
  50. } oops_cxt;
  51. static void ramoops_do_dump(struct kmsg_dumper *dumper,
  52. enum kmsg_dump_reason reason, const char *s1, unsigned long l1,
  53. const char *s2, unsigned long l2)
  54. {
  55. struct ramoops_context *cxt = container_of(dumper,
  56. struct ramoops_context, dump);
  57. unsigned long s1_start, s2_start;
  58. unsigned long l1_cpy, l2_cpy;
  59. int res, hdr_size;
  60. char *buf, *buf_orig;
  61. struct timeval timestamp;
  62. if (reason != KMSG_DUMP_OOPS &&
  63. reason != KMSG_DUMP_PANIC &&
  64. reason != KMSG_DUMP_KEXEC)
  65. return;
  66. /* Only dump oopses if dump_oops is set */
  67. if (reason == KMSG_DUMP_OOPS && !dump_oops)
  68. return;
  69. buf = cxt->virt_addr + (cxt->count * RECORD_SIZE);
  70. buf_orig = buf;
  71. memset(buf, '\0', RECORD_SIZE);
  72. res = sprintf(buf, "%s", RAMOOPS_KERNMSG_HDR);
  73. buf += res;
  74. do_gettimeofday(&timestamp);
  75. res = sprintf(buf, "%lu.%lu\n", (long)timestamp.tv_sec, (long)timestamp.tv_usec);
  76. buf += res;
  77. hdr_size = buf - buf_orig;
  78. l2_cpy = min(l2, RECORD_SIZE - hdr_size);
  79. l1_cpy = min(l1, RECORD_SIZE - hdr_size - l2_cpy);
  80. s2_start = l2 - l2_cpy;
  81. s1_start = l1 - l1_cpy;
  82. memcpy(buf, s1 + s1_start, l1_cpy);
  83. memcpy(buf + l1_cpy, s2 + s2_start, l2_cpy);
  84. cxt->count = (cxt->count + 1) % cxt->max_count;
  85. }
  86. static int __init ramoops_probe(struct platform_device *pdev)
  87. {
  88. struct ramoops_platform_data *pdata = pdev->dev.platform_data;
  89. struct ramoops_context *cxt = &oops_cxt;
  90. int err = -EINVAL;
  91. if (pdata) {
  92. mem_size = pdata->mem_size;
  93. mem_address = pdata->mem_address;
  94. }
  95. if (!mem_size) {
  96. printk(KERN_ERR "ramoops: invalid size specification");
  97. goto fail3;
  98. }
  99. rounddown_pow_of_two(mem_size);
  100. if (mem_size < RECORD_SIZE) {
  101. printk(KERN_ERR "ramoops: size too small");
  102. goto fail3;
  103. }
  104. cxt->max_count = mem_size / RECORD_SIZE;
  105. cxt->count = 0;
  106. cxt->size = mem_size;
  107. cxt->phys_addr = mem_address;
  108. if (!request_mem_region(cxt->phys_addr, cxt->size, "ramoops")) {
  109. printk(KERN_ERR "ramoops: request mem region failed");
  110. err = -EINVAL;
  111. goto fail3;
  112. }
  113. cxt->virt_addr = ioremap(cxt->phys_addr, cxt->size);
  114. if (!cxt->virt_addr) {
  115. printk(KERN_ERR "ramoops: ioremap failed");
  116. goto fail2;
  117. }
  118. cxt->dump.dump = ramoops_do_dump;
  119. err = kmsg_dump_register(&cxt->dump);
  120. if (err) {
  121. printk(KERN_ERR "ramoops: registering kmsg dumper failed");
  122. goto fail1;
  123. }
  124. return 0;
  125. fail1:
  126. iounmap(cxt->virt_addr);
  127. fail2:
  128. release_mem_region(cxt->phys_addr, cxt->size);
  129. fail3:
  130. return err;
  131. }
  132. static int __exit ramoops_remove(struct platform_device *pdev)
  133. {
  134. struct ramoops_context *cxt = &oops_cxt;
  135. if (kmsg_dump_unregister(&cxt->dump) < 0)
  136. printk(KERN_WARNING "ramoops: could not unregister kmsg_dumper");
  137. iounmap(cxt->virt_addr);
  138. release_mem_region(cxt->phys_addr, cxt->size);
  139. return 0;
  140. }
  141. static struct platform_driver ramoops_driver = {
  142. .remove = __exit_p(ramoops_remove),
  143. .driver = {
  144. .name = "ramoops",
  145. .owner = THIS_MODULE,
  146. },
  147. };
  148. static int __init ramoops_init(void)
  149. {
  150. return platform_driver_probe(&ramoops_driver, ramoops_probe);
  151. }
  152. static void __exit ramoops_exit(void)
  153. {
  154. platform_driver_unregister(&ramoops_driver);
  155. }
  156. module_init(ramoops_init);
  157. module_exit(ramoops_exit);
  158. MODULE_LICENSE("GPL");
  159. MODULE_AUTHOR("Marco Stornelli <marco.stornelli@gmail.com>");
  160. MODULE_DESCRIPTION("RAM Oops/Panic logger/driver");