ramoops.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  22. #include <linux/kernel.h>
  23. #include <linux/err.h>
  24. #include <linux/module.h>
  25. #include <linux/kmsg_dump.h>
  26. #include <linux/time.h>
  27. #include <linux/err.h>
  28. #include <linux/io.h>
  29. #include <linux/ioport.h>
  30. #include <linux/platform_device.h>
  31. #include <linux/slab.h>
  32. #include <linux/ramoops.h>
  33. #define RAMOOPS_KERNMSG_HDR "===="
  34. #define MIN_MEM_SIZE 4096UL
  35. static ulong record_size = MIN_MEM_SIZE;
  36. module_param(record_size, ulong, 0400);
  37. MODULE_PARM_DESC(record_size,
  38. "size of each dump done on oops/panic");
  39. static ulong mem_address;
  40. module_param(mem_address, ulong, 0400);
  41. MODULE_PARM_DESC(mem_address,
  42. "start of reserved RAM used to store oops/panic logs");
  43. static ulong mem_size;
  44. module_param(mem_size, ulong, 0400);
  45. MODULE_PARM_DESC(mem_size,
  46. "size of reserved RAM used to store oops/panic logs");
  47. static int dump_oops = 1;
  48. module_param(dump_oops, int, 0600);
  49. MODULE_PARM_DESC(dump_oops,
  50. "set to 1 to dump oopses, 0 to only dump panics (default 1)");
  51. static struct ramoops_context {
  52. struct kmsg_dumper dump;
  53. void *virt_addr;
  54. phys_addr_t phys_addr;
  55. unsigned long size;
  56. unsigned long record_size;
  57. int dump_oops;
  58. int count;
  59. int max_count;
  60. } oops_cxt;
  61. static struct platform_device *dummy;
  62. static struct ramoops_platform_data *dummy_data;
  63. static void ramoops_do_dump(struct kmsg_dumper *dumper,
  64. enum kmsg_dump_reason reason, const char *s1, unsigned long l1,
  65. const char *s2, unsigned long l2)
  66. {
  67. struct ramoops_context *cxt = container_of(dumper,
  68. struct ramoops_context, dump);
  69. unsigned long s1_start, s2_start;
  70. unsigned long l1_cpy, l2_cpy;
  71. int res, hdr_size;
  72. char *buf, *buf_orig;
  73. struct timeval timestamp;
  74. if (reason != KMSG_DUMP_OOPS &&
  75. reason != KMSG_DUMP_PANIC &&
  76. reason != KMSG_DUMP_KEXEC)
  77. return;
  78. /* Only dump oopses if dump_oops is set */
  79. if (reason == KMSG_DUMP_OOPS && !cxt->dump_oops)
  80. return;
  81. buf = cxt->virt_addr + (cxt->count * cxt->record_size);
  82. buf_orig = buf;
  83. memset(buf, '\0', cxt->record_size);
  84. res = sprintf(buf, "%s", RAMOOPS_KERNMSG_HDR);
  85. buf += res;
  86. do_gettimeofday(&timestamp);
  87. res = sprintf(buf, "%lu.%lu\n", (long)timestamp.tv_sec, (long)timestamp.tv_usec);
  88. buf += res;
  89. hdr_size = buf - buf_orig;
  90. l2_cpy = min(l2, cxt->record_size - hdr_size);
  91. l1_cpy = min(l1, cxt->record_size - hdr_size - l2_cpy);
  92. s2_start = l2 - l2_cpy;
  93. s1_start = l1 - l1_cpy;
  94. memcpy(buf, s1 + s1_start, l1_cpy);
  95. memcpy(buf + l1_cpy, s2 + s2_start, l2_cpy);
  96. cxt->count = (cxt->count + 1) % cxt->max_count;
  97. }
  98. static int __init ramoops_probe(struct platform_device *pdev)
  99. {
  100. struct ramoops_platform_data *pdata = pdev->dev.platform_data;
  101. struct ramoops_context *cxt = &oops_cxt;
  102. int err = -EINVAL;
  103. if (!pdata->mem_size || !pdata->record_size) {
  104. pr_err("The memory size and the record size must be "
  105. "non-zero\n");
  106. goto fail3;
  107. }
  108. rounddown_pow_of_two(pdata->mem_size);
  109. rounddown_pow_of_two(pdata->record_size);
  110. /* Check for the minimum memory size */
  111. if (pdata->mem_size < MIN_MEM_SIZE &&
  112. pdata->record_size < MIN_MEM_SIZE) {
  113. pr_err("memory size too small, minium is %lu\n", MIN_MEM_SIZE);
  114. goto fail3;
  115. }
  116. if (pdata->mem_size < pdata->record_size) {
  117. pr_err("The memory size must be larger than the "
  118. "records size\n");
  119. goto fail3;
  120. }
  121. cxt->max_count = pdata->mem_size / pdata->record_size;
  122. cxt->count = 0;
  123. cxt->size = pdata->mem_size;
  124. cxt->phys_addr = pdata->mem_address;
  125. cxt->record_size = pdata->record_size;
  126. cxt->dump_oops = pdata->dump_oops;
  127. /*
  128. * Update the module parameter variables as well so they are visible
  129. * through /sys/module/ramoops/parameters/
  130. */
  131. mem_size = pdata->mem_size;
  132. mem_address = pdata->mem_address;
  133. record_size = pdata->record_size;
  134. dump_oops = pdata->dump_oops;
  135. if (!request_mem_region(cxt->phys_addr, cxt->size, "ramoops")) {
  136. pr_err("request mem region failed\n");
  137. err = -EINVAL;
  138. goto fail3;
  139. }
  140. cxt->virt_addr = ioremap(cxt->phys_addr, cxt->size);
  141. if (!cxt->virt_addr) {
  142. pr_err("ioremap failed\n");
  143. goto fail2;
  144. }
  145. cxt->dump.dump = ramoops_do_dump;
  146. err = kmsg_dump_register(&cxt->dump);
  147. if (err) {
  148. pr_err("registering kmsg dumper failed\n");
  149. goto fail1;
  150. }
  151. return 0;
  152. fail1:
  153. iounmap(cxt->virt_addr);
  154. fail2:
  155. release_mem_region(cxt->phys_addr, cxt->size);
  156. fail3:
  157. return err;
  158. }
  159. static int __exit ramoops_remove(struct platform_device *pdev)
  160. {
  161. struct ramoops_context *cxt = &oops_cxt;
  162. if (kmsg_dump_unregister(&cxt->dump) < 0)
  163. pr_warn("could not unregister kmsg_dumper\n");
  164. iounmap(cxt->virt_addr);
  165. release_mem_region(cxt->phys_addr, cxt->size);
  166. return 0;
  167. }
  168. static struct platform_driver ramoops_driver = {
  169. .remove = __exit_p(ramoops_remove),
  170. .driver = {
  171. .name = "ramoops",
  172. .owner = THIS_MODULE,
  173. },
  174. };
  175. static int __init ramoops_init(void)
  176. {
  177. int ret;
  178. ret = platform_driver_probe(&ramoops_driver, ramoops_probe);
  179. if (ret == -ENODEV) {
  180. /*
  181. * If we didn't find a platform device, we use module parameters
  182. * building platform data on the fly.
  183. */
  184. pr_info("platform device not found, using module parameters\n");
  185. dummy_data = kzalloc(sizeof(struct ramoops_platform_data),
  186. GFP_KERNEL);
  187. if (!dummy_data)
  188. return -ENOMEM;
  189. dummy_data->mem_size = mem_size;
  190. dummy_data->mem_address = mem_address;
  191. dummy_data->record_size = record_size;
  192. dummy_data->dump_oops = dump_oops;
  193. dummy = platform_create_bundle(&ramoops_driver, ramoops_probe,
  194. NULL, 0, dummy_data,
  195. sizeof(struct ramoops_platform_data));
  196. if (IS_ERR(dummy))
  197. ret = PTR_ERR(dummy);
  198. else
  199. ret = 0;
  200. }
  201. return ret;
  202. }
  203. static void __exit ramoops_exit(void)
  204. {
  205. platform_driver_unregister(&ramoops_driver);
  206. kfree(dummy_data);
  207. }
  208. module_init(ramoops_init);
  209. module_exit(ramoops_exit);
  210. MODULE_LICENSE("GPL");
  211. MODULE_AUTHOR("Marco Stornelli <marco.stornelli@gmail.com>");
  212. MODULE_DESCRIPTION("RAM Oops/Panic logger/driver");