blob: e443c9c6914f2e9fd668479fac87dcf22ee06d4b [file] [log] [blame]
Marco Stornelli56d611a2010-05-26 14:43:54 -07001/*
2 * RAM Oops/Panic logger
3 *
4 * Copyright (C) 2010 Marco Stornelli <marco.stornelli@gmail.com>
Kees Cook9ba80d92012-05-03 15:45:02 +10005 * Copyright (C) 2011 Kees Cook <keescook@chromium.org>
Marco Stornelli56d611a2010-05-26 14:43:54 -07006 *
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.
10 *
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.
15 *
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
19 * 02110-1301 USA
20 *
21 */
22
Marco Stornelli01692562011-07-26 16:08:57 -070023#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24
Marco Stornelli56d611a2010-05-26 14:43:54 -070025#include <linux/kernel.h>
James Bottomley83c1b312011-07-29 17:11:32 +040026#include <linux/err.h>
Marco Stornelli56d611a2010-05-26 14:43:54 -070027#include <linux/module.h>
Kees Cook9ba80d92012-05-03 15:45:02 +100028#include <linux/pstore.h>
Marco Stornelli56d611a2010-05-26 14:43:54 -070029#include <linux/time.h>
30#include <linux/io.h>
31#include <linux/ioport.h>
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -070032#include <linux/platform_device.h>
Marco Stornelli13aefd72011-07-26 16:08:57 -070033#include <linux/slab.h>
Anton Vorontsov1894a252012-05-16 05:43:08 -070034#include <linux/pstore_ram.h>
Marco Stornelli56d611a2010-05-26 14:43:54 -070035
36#define RAMOOPS_KERNMSG_HDR "===="
Sergiu Iordache3e5c4fa2011-07-26 16:08:59 -070037#define MIN_MEM_SIZE 4096UL
Marco Stornelli56d611a2010-05-26 14:43:54 -070038
Sergiu Iordache3e5c4fa2011-07-26 16:08:59 -070039static ulong record_size = MIN_MEM_SIZE;
40module_param(record_size, ulong, 0400);
41MODULE_PARM_DESC(record_size,
42 "size of each dump done on oops/panic");
Marco Stornelli56d611a2010-05-26 14:43:54 -070043
44static ulong mem_address;
45module_param(mem_address, ulong, 0400);
46MODULE_PARM_DESC(mem_address,
47 "start of reserved RAM used to store oops/panic logs");
48
49static ulong mem_size;
50module_param(mem_size, ulong, 0400);
51MODULE_PARM_DESC(mem_size,
52 "size of reserved RAM used to store oops/panic logs");
53
54static int dump_oops = 1;
55module_param(dump_oops, int, 0600);
56MODULE_PARM_DESC(dump_oops,
57 "set to 1 to dump oopses, 0 to only dump panics (default 1)");
58
Kees Cook9ba80d92012-05-03 15:45:02 +100059struct ramoops_context {
Marco Stornelli56d611a2010-05-26 14:43:54 -070060 void *virt_addr;
61 phys_addr_t phys_addr;
62 unsigned long size;
Kees Cook9ba80d92012-05-03 15:45:02 +100063 size_t record_size;
Sergiu Iordache6b4d2a22011-07-26 16:08:58 -070064 int dump_oops;
Kees Cook9ba80d92012-05-03 15:45:02 +100065 unsigned int count;
66 unsigned int max_count;
67 unsigned int read_count;
68 struct pstore_info pstore;
69};
Marco Stornelli56d611a2010-05-26 14:43:54 -070070
Marco Stornelli13aefd72011-07-26 16:08:57 -070071static struct platform_device *dummy;
72static struct ramoops_platform_data *dummy_data;
73
Kees Cook9ba80d92012-05-03 15:45:02 +100074static int ramoops_pstore_open(struct pstore_info *psi)
Marco Stornelli56d611a2010-05-26 14:43:54 -070075{
Kees Cook9ba80d92012-05-03 15:45:02 +100076 struct ramoops_context *cxt = psi->data;
Marco Stornelli56d611a2010-05-26 14:43:54 -070077
Kees Cook9ba80d92012-05-03 15:45:02 +100078 cxt->read_count = 0;
79 return 0;
80}
81
82static ssize_t ramoops_pstore_read(u64 *id, enum pstore_type_id *type,
83 struct timespec *time,
84 char **buf,
85 struct pstore_info *psi)
86{
87 ssize_t size;
88 char *rambuf;
89 struct ramoops_context *cxt = psi->data;
90
91 if (cxt->read_count >= cxt->max_count)
92 return -EINVAL;
93 *id = cxt->read_count++;
94 /* Only supports dmesg output so far. */
95 *type = PSTORE_TYPE_DMESG;
96 /* TODO(kees): Bogus time for the moment. */
97 time->tv_sec = 0;
98 time->tv_nsec = 0;
99
100 rambuf = cxt->virt_addr + (*id * cxt->record_size);
101 size = strnlen(rambuf, cxt->record_size);
102 *buf = kmalloc(size, GFP_KERNEL);
103 if (*buf == NULL)
104 return -ENOMEM;
105 memcpy(*buf, rambuf, size);
106
107 return size;
108}
109
110static int ramoops_pstore_write(enum pstore_type_id type,
111 enum kmsg_dump_reason reason,
112 u64 *id,
113 unsigned int part,
114 size_t size, struct pstore_info *psi)
115{
116 char *buf;
117 size_t res;
118 struct timeval timestamp;
119 struct ramoops_context *cxt = psi->data;
120 size_t available = cxt->record_size;
121
122 /* Currently ramoops is designed to only store dmesg dumps. */
123 if (type != PSTORE_TYPE_DMESG)
124 return -EINVAL;
125
126 /* Out of the various dmesg dump types, ramoops is currently designed
127 * to only store crash logs, rather than storing general kernel logs.
128 */
Seiji Aguchifc2d5572011-01-12 16:59:29 -0800129 if (reason != KMSG_DUMP_OOPS &&
WANG Conga3dd3322012-01-12 17:20:11 -0800130 reason != KMSG_DUMP_PANIC)
Kees Cook9ba80d92012-05-03 15:45:02 +1000131 return -EINVAL;
Seiji Aguchifc2d5572011-01-12 16:59:29 -0800132
Kees Cook9ba80d92012-05-03 15:45:02 +1000133 /* Skip Oopes when configured to do so. */
Sergiu Iordache6b4d2a22011-07-26 16:08:58 -0700134 if (reason == KMSG_DUMP_OOPS && !cxt->dump_oops)
Kees Cook9ba80d92012-05-03 15:45:02 +1000135 return -EINVAL;
136
137 /* Explicitly only take the first part of any new crash.
138 * If our buffer is larger than kmsg_bytes, this can never happen,
139 * and if our buffer is smaller than kmsg_bytes, we don't want the
140 * report split across multiple records.
141 */
142 if (part != 1)
143 return -ENOSPC;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700144
Sergiu Iordache3e5c4fa2011-07-26 16:08:59 -0700145 buf = cxt->virt_addr + (cxt->count * cxt->record_size);
Ahmed S. Darwish1873bb82010-12-25 11:57:09 +0200146
Marco Stornelli56d611a2010-05-26 14:43:54 -0700147 res = sprintf(buf, "%s", RAMOOPS_KERNMSG_HDR);
148 buf += res;
Kees Cook9ba80d92012-05-03 15:45:02 +1000149 available -= res;
150
Marco Stornelli56d611a2010-05-26 14:43:54 -0700151 do_gettimeofday(&timestamp);
152 res = sprintf(buf, "%lu.%lu\n", (long)timestamp.tv_sec, (long)timestamp.tv_usec);
153 buf += res;
Kees Cook9ba80d92012-05-03 15:45:02 +1000154 available -= res;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700155
Kees Cook9ba80d92012-05-03 15:45:02 +1000156 if (size > available)
157 size = available;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700158
Kees Cook9ba80d92012-05-03 15:45:02 +1000159 memcpy(buf, cxt->pstore.buf, size);
160 memset(buf + size, '\0', available - size);
Marco Stornelli56d611a2010-05-26 14:43:54 -0700161
162 cxt->count = (cxt->count + 1) % cxt->max_count;
Kees Cook9ba80d92012-05-03 15:45:02 +1000163
164 return 0;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700165}
166
Kees Cook9ba80d92012-05-03 15:45:02 +1000167static int ramoops_pstore_erase(enum pstore_type_id type, u64 id,
168 struct pstore_info *psi)
169{
170 char *buf;
171 struct ramoops_context *cxt = psi->data;
172
173 if (id >= cxt->max_count)
174 return -EINVAL;
175
176 buf = cxt->virt_addr + (id * cxt->record_size);
177 memset(buf, '\0', cxt->record_size);
178
179 return 0;
180}
181
182static struct ramoops_context oops_cxt = {
183 .pstore = {
184 .owner = THIS_MODULE,
185 .name = "ramoops",
186 .open = ramoops_pstore_open,
187 .read = ramoops_pstore_read,
188 .write = ramoops_pstore_write,
189 .erase = ramoops_pstore_erase,
190 },
191};
192
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700193static int __init ramoops_probe(struct platform_device *pdev)
Marco Stornelli56d611a2010-05-26 14:43:54 -0700194{
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700195 struct ramoops_platform_data *pdata = pdev->dev.platform_data;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700196 struct ramoops_context *cxt = &oops_cxt;
197 int err = -EINVAL;
198
Kees Cook9ba80d92012-05-03 15:45:02 +1000199 /* Only a single ramoops area allowed at a time, so fail extra
200 * probes.
201 */
202 if (cxt->max_count)
203 goto fail_out;
204
Sergiu Iordache3e5c4fa2011-07-26 16:08:59 -0700205 if (!pdata->mem_size || !pdata->record_size) {
206 pr_err("The memory size and the record size must be "
207 "non-zero\n");
Kees Cook9ba80d92012-05-03 15:45:02 +1000208 goto fail_out;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700209 }
210
Marco Stornellifdb59502012-01-12 17:20:58 -0800211 pdata->mem_size = rounddown_pow_of_two(pdata->mem_size);
212 pdata->record_size = rounddown_pow_of_two(pdata->record_size);
Marco Stornelli56d611a2010-05-26 14:43:54 -0700213
Sergiu Iordache3e5c4fa2011-07-26 16:08:59 -0700214 /* Check for the minimum memory size */
215 if (pdata->mem_size < MIN_MEM_SIZE &&
216 pdata->record_size < MIN_MEM_SIZE) {
Kees Cook9ba80d92012-05-03 15:45:02 +1000217 pr_err("memory size too small, minimum is %lu\n",
218 MIN_MEM_SIZE);
219 goto fail_out;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700220 }
221
Sergiu Iordache3e5c4fa2011-07-26 16:08:59 -0700222 if (pdata->mem_size < pdata->record_size) {
223 pr_err("The memory size must be larger than the "
224 "records size\n");
Kees Cook9ba80d92012-05-03 15:45:02 +1000225 goto fail_out;
Sergiu Iordache3e5c4fa2011-07-26 16:08:59 -0700226 }
227
228 cxt->max_count = pdata->mem_size / pdata->record_size;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700229 cxt->count = 0;
Marco Stornelli13aefd72011-07-26 16:08:57 -0700230 cxt->size = pdata->mem_size;
231 cxt->phys_addr = pdata->mem_address;
Sergiu Iordache3e5c4fa2011-07-26 16:08:59 -0700232 cxt->record_size = pdata->record_size;
Sergiu Iordache6b4d2a22011-07-26 16:08:58 -0700233 cxt->dump_oops = pdata->dump_oops;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700234
Kees Cook9ba80d92012-05-03 15:45:02 +1000235 cxt->pstore.data = cxt;
236 cxt->pstore.bufsize = cxt->record_size;
237 cxt->pstore.buf = kmalloc(cxt->pstore.bufsize, GFP_KERNEL);
238 spin_lock_init(&cxt->pstore.buf_lock);
239 if (!cxt->pstore.buf) {
240 pr_err("cannot allocate pstore buffer\n");
241 goto fail_clear;
242 }
243
Marco Stornelli56d611a2010-05-26 14:43:54 -0700244 if (!request_mem_region(cxt->phys_addr, cxt->size, "ramoops")) {
Kees Cook9ba80d92012-05-03 15:45:02 +1000245 pr_err("request mem region (0x%lx@0x%llx) failed\n",
Randy Dunlapd109a672012-05-03 15:45:03 +1000246 cxt->size, (unsigned long long)cxt->phys_addr);
Marco Stornelli56d611a2010-05-26 14:43:54 -0700247 err = -EINVAL;
Kees Cook9ba80d92012-05-03 15:45:02 +1000248 goto fail_buf;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700249 }
250
251 cxt->virt_addr = ioremap(cxt->phys_addr, cxt->size);
252 if (!cxt->virt_addr) {
Marco Stornelli01692562011-07-26 16:08:57 -0700253 pr_err("ioremap failed\n");
Kees Cook9ba80d92012-05-03 15:45:02 +1000254 goto fail_mem_region;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700255 }
256
Kees Cook9ba80d92012-05-03 15:45:02 +1000257 err = pstore_register(&cxt->pstore);
Marco Stornelli56d611a2010-05-26 14:43:54 -0700258 if (err) {
Kees Cook9ba80d92012-05-03 15:45:02 +1000259 pr_err("registering with pstore failed\n");
260 goto fail_iounmap;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700261 }
262
Kees Cookc7552012012-01-12 17:20:59 -0800263 /*
264 * Update the module parameter variables as well so they are visible
265 * through /sys/module/ramoops/parameters/
266 */
267 mem_size = pdata->mem_size;
268 mem_address = pdata->mem_address;
269 record_size = pdata->record_size;
270 dump_oops = pdata->dump_oops;
271
Kees Cook9ba80d92012-05-03 15:45:02 +1000272 pr_info("attached 0x%lx@0x%llx (%ux0x%zx)\n",
Randy Dunlapd109a672012-05-03 15:45:03 +1000273 cxt->size, (unsigned long long)cxt->phys_addr,
274 cxt->max_count, cxt->record_size);
Kees Cook9ba80d92012-05-03 15:45:02 +1000275
Marco Stornelli56d611a2010-05-26 14:43:54 -0700276 return 0;
277
Kees Cook9ba80d92012-05-03 15:45:02 +1000278fail_iounmap:
Marco Stornelli56d611a2010-05-26 14:43:54 -0700279 iounmap(cxt->virt_addr);
Kees Cook9ba80d92012-05-03 15:45:02 +1000280fail_mem_region:
Marco Stornelli56d611a2010-05-26 14:43:54 -0700281 release_mem_region(cxt->phys_addr, cxt->size);
Kees Cook9ba80d92012-05-03 15:45:02 +1000282fail_buf:
283 kfree(cxt->pstore.buf);
284fail_clear:
285 cxt->pstore.bufsize = 0;
286 cxt->max_count = 0;
287fail_out:
Marco Stornelli56d611a2010-05-26 14:43:54 -0700288 return err;
289}
290
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700291static int __exit ramoops_remove(struct platform_device *pdev)
Marco Stornelli56d611a2010-05-26 14:43:54 -0700292{
Kees Cook9ba80d92012-05-03 15:45:02 +1000293#if 0
294 /* TODO(kees): We cannot unload ramoops since pstore doesn't support
295 * unregistering yet.
296 */
Marco Stornelli56d611a2010-05-26 14:43:54 -0700297 struct ramoops_context *cxt = &oops_cxt;
298
Marco Stornelli56d611a2010-05-26 14:43:54 -0700299 iounmap(cxt->virt_addr);
300 release_mem_region(cxt->phys_addr, cxt->size);
Kees Cook9ba80d92012-05-03 15:45:02 +1000301 cxt->max_count = 0;
302
303 /* TODO(kees): When pstore supports unregistering, call it here. */
304 kfree(cxt->pstore.buf);
305 cxt->pstore.bufsize = 0;
306
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700307 return 0;
Kees Cook9ba80d92012-05-03 15:45:02 +1000308#endif
309 return -EBUSY;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700310}
311
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700312static struct platform_driver ramoops_driver = {
313 .remove = __exit_p(ramoops_remove),
314 .driver = {
315 .name = "ramoops",
316 .owner = THIS_MODULE,
317 },
318};
319
320static int __init ramoops_init(void)
321{
Marco Stornelli13aefd72011-07-26 16:08:57 -0700322 int ret;
323 ret = platform_driver_probe(&ramoops_driver, ramoops_probe);
324 if (ret == -ENODEV) {
325 /*
326 * If we didn't find a platform device, we use module parameters
327 * building platform data on the fly.
328 */
Marco Stornelli01692562011-07-26 16:08:57 -0700329 pr_info("platform device not found, using module parameters\n");
Marco Stornelli13aefd72011-07-26 16:08:57 -0700330 dummy_data = kzalloc(sizeof(struct ramoops_platform_data),
331 GFP_KERNEL);
332 if (!dummy_data)
333 return -ENOMEM;
334 dummy_data->mem_size = mem_size;
335 dummy_data->mem_address = mem_address;
Sergiu Iordache3e5c4fa2011-07-26 16:08:59 -0700336 dummy_data->record_size = record_size;
Sergiu Iordache6b4d2a22011-07-26 16:08:58 -0700337 dummy_data->dump_oops = dump_oops;
Marco Stornelli13aefd72011-07-26 16:08:57 -0700338 dummy = platform_create_bundle(&ramoops_driver, ramoops_probe,
339 NULL, 0, dummy_data,
340 sizeof(struct ramoops_platform_data));
341
342 if (IS_ERR(dummy))
343 ret = PTR_ERR(dummy);
344 else
345 ret = 0;
346 }
347
348 return ret;
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700349}
350
351static void __exit ramoops_exit(void)
352{
353 platform_driver_unregister(&ramoops_driver);
Marco Stornelli13aefd72011-07-26 16:08:57 -0700354 kfree(dummy_data);
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700355}
Marco Stornelli56d611a2010-05-26 14:43:54 -0700356
357module_init(ramoops_init);
358module_exit(ramoops_exit);
359
360MODULE_LICENSE("GPL");
361MODULE_AUTHOR("Marco Stornelli <marco.stornelli@gmail.com>");
362MODULE_DESCRIPTION("RAM Oops/Panic logger/driver");