blob: 9fe5b13295e024cf9a4777a0688bae6b21e52665 [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>
Anton Vorontsovcbe7cbf2012-07-17 12:11:12 -070028#include <linux/version.h>
Kees Cook9ba80d92012-05-03 15:45:02 +100029#include <linux/pstore.h>
Marco Stornelli56d611a2010-05-26 14:43:54 -070030#include <linux/time.h>
31#include <linux/io.h>
32#include <linux/ioport.h>
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -070033#include <linux/platform_device.h>
Marco Stornelli13aefd72011-07-26 16:08:57 -070034#include <linux/slab.h>
Anton Vorontsov24203032012-07-17 19:49:37 -070035#include <linux/compiler.h>
Anton Vorontsov1894a252012-05-16 05:43:08 -070036#include <linux/pstore_ram.h>
Marco Stornelli56d611a2010-05-26 14:43:54 -070037
38#define RAMOOPS_KERNMSG_HDR "===="
Sergiu Iordache3e5c4fa2011-07-26 16:08:59 -070039#define MIN_MEM_SIZE 4096UL
Marco Stornelli56d611a2010-05-26 14:43:54 -070040
Sergiu Iordache3e5c4fa2011-07-26 16:08:59 -070041static ulong record_size = MIN_MEM_SIZE;
42module_param(record_size, ulong, 0400);
43MODULE_PARM_DESC(record_size,
44 "size of each dump done on oops/panic");
Marco Stornelli56d611a2010-05-26 14:43:54 -070045
Anton Vorontsovb5d38e92012-05-26 06:20:23 -070046static ulong ramoops_console_size = MIN_MEM_SIZE;
47module_param_named(console_size, ramoops_console_size, ulong, 0400);
48MODULE_PARM_DESC(console_size, "size of kernel console log");
49
Anton Vorontsova694d1b2012-07-09 17:10:44 -070050static ulong ramoops_ftrace_size = MIN_MEM_SIZE;
51module_param_named(ftrace_size, ramoops_ftrace_size, ulong, 0400);
52MODULE_PARM_DESC(ftrace_size, "size of ftrace log");
53
Marco Stornelli56d611a2010-05-26 14:43:54 -070054static ulong mem_address;
55module_param(mem_address, ulong, 0400);
56MODULE_PARM_DESC(mem_address,
57 "start of reserved RAM used to store oops/panic logs");
58
59static ulong mem_size;
60module_param(mem_size, ulong, 0400);
61MODULE_PARM_DESC(mem_size,
62 "size of reserved RAM used to store oops/panic logs");
63
64static int dump_oops = 1;
65module_param(dump_oops, int, 0600);
66MODULE_PARM_DESC(dump_oops,
67 "set to 1 to dump oopses, 0 to only dump panics (default 1)");
68
Anton Vorontsov39eb7e972012-05-17 00:15:34 -070069static int ramoops_ecc;
70module_param_named(ecc, ramoops_ecc, int, 0600);
71MODULE_PARM_DESC(ramoops_ecc,
Anton Vorontsov5ca5d4e2012-07-09 17:03:19 -070072 "if non-zero, the option enables ECC support and specifies "
73 "ECC buffer size in bytes (1 is a special value, means 16 "
74 "bytes ECC)");
Anton Vorontsov39eb7e972012-05-17 00:15:34 -070075
Kees Cook9ba80d92012-05-03 15:45:02 +100076struct ramoops_context {
Anton Vorontsov896fc1f2012-05-17 00:15:18 -070077 struct persistent_ram_zone **przs;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -070078 struct persistent_ram_zone *cprz;
Anton Vorontsova694d1b2012-07-09 17:10:44 -070079 struct persistent_ram_zone *fprz;
Marco Stornelli56d611a2010-05-26 14:43:54 -070080 phys_addr_t phys_addr;
81 unsigned long size;
Kees Cook9ba80d92012-05-03 15:45:02 +100082 size_t record_size;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -070083 size_t console_size;
Anton Vorontsova694d1b2012-07-09 17:10:44 -070084 size_t ftrace_size;
Sergiu Iordache6b4d2a22011-07-26 16:08:58 -070085 int dump_oops;
Arve Hjønnevågc31ad082012-05-22 16:33:23 -070086 struct persistent_ram_ecc_info ecc_info;
Anton Vorontsovcac2eb72012-05-26 06:20:20 -070087 unsigned int max_dump_cnt;
88 unsigned int dump_write_cnt;
Liu ShuoX57fd8352014-03-17 11:24:49 +110089 /* _read_cnt need clear on ramoops_pstore_open */
Anton Vorontsovcac2eb72012-05-26 06:20:20 -070090 unsigned int dump_read_cnt;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -070091 unsigned int console_read_cnt;
Anton Vorontsova694d1b2012-07-09 17:10:44 -070092 unsigned int ftrace_read_cnt;
Kees Cook9ba80d92012-05-03 15:45:02 +100093 struct pstore_info pstore;
94};
Marco Stornelli56d611a2010-05-26 14:43:54 -070095
Marco Stornelli13aefd72011-07-26 16:08:57 -070096static struct platform_device *dummy;
97static struct ramoops_platform_data *dummy_data;
98
Kees Cook9ba80d92012-05-03 15:45:02 +100099static int ramoops_pstore_open(struct pstore_info *psi)
Marco Stornelli56d611a2010-05-26 14:43:54 -0700100{
Kees Cook9ba80d92012-05-03 15:45:02 +1000101 struct ramoops_context *cxt = psi->data;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700102
Anton Vorontsovcac2eb72012-05-26 06:20:20 -0700103 cxt->dump_read_cnt = 0;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700104 cxt->console_read_cnt = 0;
Liu ShuoX57fd8352014-03-17 11:24:49 +1100105 cxt->ftrace_read_cnt = 0;
Kees Cook9ba80d92012-05-03 15:45:02 +1000106 return 0;
107}
108
Anton Vorontsov755d66b2012-05-26 06:20:22 -0700109static struct persistent_ram_zone *
110ramoops_get_next_prz(struct persistent_ram_zone *przs[], uint *c, uint max,
111 u64 *id,
112 enum pstore_type_id *typep, enum pstore_type_id type,
113 bool update)
114{
115 struct persistent_ram_zone *prz;
116 int i = (*c)++;
117
118 if (i >= max)
119 return NULL;
120
121 prz = przs[i];
122
123 if (update) {
124 /* Update old/shadowed buffer. */
125 persistent_ram_save_old(prz);
126 if (!persistent_ram_old_size(prz))
127 return NULL;
128 }
129
130 *typep = type;
131 *id = i;
132
133 return prz;
134}
135
Aruna Balakrishnaiah3f8f80f2013-08-16 13:58:00 -0700136static void ramoops_read_kmsg_hdr(char *buffer, struct timespec *time,
137 bool *compressed)
138{
139 char data_type;
140
141 if (sscanf(buffer, RAMOOPS_KERNMSG_HDR "%lu.%lu-%c\n",
142 &time->tv_sec, &time->tv_nsec, &data_type) == 3) {
143 if (data_type == 'C')
144 *compressed = true;
145 else
146 *compressed = false;
147 } else if (sscanf(buffer, RAMOOPS_KERNMSG_HDR "%lu.%lu\n",
148 &time->tv_sec, &time->tv_nsec) == 2) {
149 *compressed = false;
150 } else {
151 time->tv_sec = 0;
152 time->tv_nsec = 0;
153 *compressed = false;
154 }
155}
156
Kees Cook9ba80d92012-05-03 15:45:02 +1000157static ssize_t ramoops_pstore_read(u64 *id, enum pstore_type_id *type,
Seiji Aguchi755d4fe2012-11-26 16:07:44 -0800158 int *count, struct timespec *time,
Aruna Balakrishnaiah9a4e1392013-08-16 13:53:19 -0700159 char **buf, bool *compressed,
160 struct pstore_info *psi)
Kees Cook9ba80d92012-05-03 15:45:02 +1000161{
162 ssize_t size;
Arve Hjønnevågbd08ec32012-12-05 21:19:51 -0800163 ssize_t ecc_notice_size;
Kees Cook9ba80d92012-05-03 15:45:02 +1000164 struct ramoops_context *cxt = psi->data;
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700165 struct persistent_ram_zone *prz;
Kees Cook9ba80d92012-05-03 15:45:02 +1000166
Anton Vorontsov755d66b2012-05-26 06:20:22 -0700167 prz = ramoops_get_next_prz(cxt->przs, &cxt->dump_read_cnt,
168 cxt->max_dump_cnt, id, type,
169 PSTORE_TYPE_DMESG, 1);
170 if (!prz)
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700171 prz = ramoops_get_next_prz(&cxt->cprz, &cxt->console_read_cnt,
172 1, id, type, PSTORE_TYPE_CONSOLE, 0);
173 if (!prz)
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700174 prz = ramoops_get_next_prz(&cxt->fprz, &cxt->ftrace_read_cnt,
175 1, id, type, PSTORE_TYPE_FTRACE, 0);
176 if (!prz)
Anton Vorontsov755d66b2012-05-26 06:20:22 -0700177 return 0;
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700178
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700179 size = persistent_ram_old_size(prz);
Arve Hjønnevågbd08ec32012-12-05 21:19:51 -0800180
181 /* ECC correction notice */
182 ecc_notice_size = persistent_ram_ecc_string(prz, NULL, 0);
183
184 *buf = kmalloc(size + ecc_notice_size + 1, GFP_KERNEL);
Kees Cook9ba80d92012-05-03 15:45:02 +1000185 if (*buf == NULL)
186 return -ENOMEM;
Kees Cook9ba80d92012-05-03 15:45:02 +1000187
Arve Hjønnevågbd08ec32012-12-05 21:19:51 -0800188 memcpy(*buf, persistent_ram_old(prz), size);
Aruna Balakrishnaiah3f8f80f2013-08-16 13:58:00 -0700189 ramoops_read_kmsg_hdr(*buf, time, compressed);
Arve Hjønnevågbd08ec32012-12-05 21:19:51 -0800190 persistent_ram_ecc_string(prz, *buf + size, ecc_notice_size + 1);
191
192 return size + ecc_notice_size;
Kees Cook9ba80d92012-05-03 15:45:02 +1000193}
194
Aruna Balakrishnaiah3f8f80f2013-08-16 13:58:00 -0700195static size_t ramoops_write_kmsg_hdr(struct persistent_ram_zone *prz,
196 bool compressed)
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700197{
198 char *hdr;
Kees Cook1e817fb2012-11-19 10:26:16 -0800199 struct timespec timestamp;
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700200 size_t len;
201
Kees Cook1e817fb2012-11-19 10:26:16 -0800202 /* Report zeroed timestamp if called before timekeeping has resumed. */
203 if (__getnstimeofday(&timestamp)) {
204 timestamp.tv_sec = 0;
205 timestamp.tv_nsec = 0;
206 }
Aruna Balakrishnaiah3f8f80f2013-08-16 13:58:00 -0700207 hdr = kasprintf(GFP_ATOMIC, RAMOOPS_KERNMSG_HDR "%lu.%lu-%c\n",
208 (long)timestamp.tv_sec, (long)(timestamp.tv_nsec / 1000),
209 compressed ? 'C' : 'D');
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700210 WARN_ON_ONCE(!hdr);
211 len = hdr ? strlen(hdr) : 0;
212 persistent_ram_write(prz, hdr, len);
213 kfree(hdr);
214
215 return len;
216}
217
Anton Vorontsov24203032012-07-17 19:49:37 -0700218static int notrace ramoops_pstore_write_buf(enum pstore_type_id type,
219 enum kmsg_dump_reason reason,
220 u64 *id, unsigned int part,
Aruna Balakrishnaiah6bbbca72013-06-27 14:02:56 +0530221 const char *buf,
Aruna Balakrishnaiahb3b515b2013-08-16 13:52:47 -0700222 bool compressed, size_t size,
Anton Vorontsov24203032012-07-17 19:49:37 -0700223 struct pstore_info *psi)
Kees Cook9ba80d92012-05-03 15:45:02 +1000224{
Kees Cook9ba80d92012-05-03 15:45:02 +1000225 struct ramoops_context *cxt = psi->data;
Arve Hjønnevågc6289372012-12-11 17:49:24 -0800226 struct persistent_ram_zone *prz;
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700227 size_t hlen;
Kees Cook9ba80d92012-05-03 15:45:02 +1000228
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700229 if (type == PSTORE_TYPE_CONSOLE) {
230 if (!cxt->cprz)
231 return -ENOMEM;
Anton Vorontsovc2b71132012-07-09 17:10:43 -0700232 persistent_ram_write(cxt->cprz, buf, size);
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700233 return 0;
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700234 } else if (type == PSTORE_TYPE_FTRACE) {
235 if (!cxt->fprz)
236 return -ENOMEM;
237 persistent_ram_write(cxt->fprz, buf, size);
238 return 0;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700239 }
240
Kees Cook9ba80d92012-05-03 15:45:02 +1000241 if (type != PSTORE_TYPE_DMESG)
242 return -EINVAL;
243
244 /* Out of the various dmesg dump types, ramoops is currently designed
245 * to only store crash logs, rather than storing general kernel logs.
246 */
Seiji Aguchifc2d5572011-01-12 16:59:29 -0800247 if (reason != KMSG_DUMP_OOPS &&
WANG Conga3dd3322012-01-12 17:20:11 -0800248 reason != KMSG_DUMP_PANIC)
Kees Cook9ba80d92012-05-03 15:45:02 +1000249 return -EINVAL;
Seiji Aguchifc2d5572011-01-12 16:59:29 -0800250
Kees Cook9ba80d92012-05-03 15:45:02 +1000251 /* Skip Oopes when configured to do so. */
Sergiu Iordache6b4d2a22011-07-26 16:08:58 -0700252 if (reason == KMSG_DUMP_OOPS && !cxt->dump_oops)
Kees Cook9ba80d92012-05-03 15:45:02 +1000253 return -EINVAL;
254
255 /* Explicitly only take the first part of any new crash.
256 * If our buffer is larger than kmsg_bytes, this can never happen,
257 * and if our buffer is smaller than kmsg_bytes, we don't want the
258 * report split across multiple records.
259 */
260 if (part != 1)
261 return -ENOSPC;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700262
Arve Hjønnevågc6289372012-12-11 17:49:24 -0800263 if (!cxt->przs)
264 return -ENOSPC;
265
266 prz = cxt->przs[cxt->dump_write_cnt];
267
Aruna Balakrishnaiah3f8f80f2013-08-16 13:58:00 -0700268 hlen = ramoops_write_kmsg_hdr(prz, compressed);
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700269 if (size + hlen > prz->buffer_size)
270 size = prz->buffer_size - hlen;
Anton Vorontsovc2b71132012-07-09 17:10:43 -0700271 persistent_ram_write(prz, buf, size);
Marco Stornelli56d611a2010-05-26 14:43:54 -0700272
Anton Vorontsovcac2eb72012-05-26 06:20:20 -0700273 cxt->dump_write_cnt = (cxt->dump_write_cnt + 1) % cxt->max_dump_cnt;
Kees Cook9ba80d92012-05-03 15:45:02 +1000274
275 return 0;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700276}
277
Seiji Aguchi755d4fe2012-11-26 16:07:44 -0800278static int ramoops_pstore_erase(enum pstore_type_id type, u64 id, int count,
Seiji Aguchia9efd392012-11-14 20:27:28 +0000279 struct timespec time, struct pstore_info *psi)
Kees Cook9ba80d92012-05-03 15:45:02 +1000280{
Kees Cook9ba80d92012-05-03 15:45:02 +1000281 struct ramoops_context *cxt = psi->data;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700282 struct persistent_ram_zone *prz;
Kees Cook9ba80d92012-05-03 15:45:02 +1000283
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700284 switch (type) {
285 case PSTORE_TYPE_DMESG:
286 if (id >= cxt->max_dump_cnt)
287 return -EINVAL;
288 prz = cxt->przs[id];
289 break;
290 case PSTORE_TYPE_CONSOLE:
291 prz = cxt->cprz;
292 break;
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700293 case PSTORE_TYPE_FTRACE:
294 prz = cxt->fprz;
295 break;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700296 default:
Kees Cook9ba80d92012-05-03 15:45:02 +1000297 return -EINVAL;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700298 }
Kees Cook9ba80d92012-05-03 15:45:02 +1000299
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700300 persistent_ram_free_old(prz);
301 persistent_ram_zap(prz);
Kees Cook9ba80d92012-05-03 15:45:02 +1000302
303 return 0;
304}
305
306static struct ramoops_context oops_cxt = {
307 .pstore = {
308 .owner = THIS_MODULE,
309 .name = "ramoops",
310 .open = ramoops_pstore_open,
311 .read = ramoops_pstore_read,
Anton Vorontsovc2b71132012-07-09 17:10:43 -0700312 .write_buf = ramoops_pstore_write_buf,
Kees Cook9ba80d92012-05-03 15:45:02 +1000313 .erase = ramoops_pstore_erase,
314 },
315};
316
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700317static void ramoops_free_przs(struct ramoops_context *cxt)
318{
319 int i;
320
321 if (!cxt->przs)
322 return;
323
Anton Vorontsov90b58d92012-06-18 19:15:51 -0700324 for (i = 0; !IS_ERR_OR_NULL(cxt->przs[i]); i++)
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700325 persistent_ram_free(cxt->przs[i]);
326 kfree(cxt->przs);
327}
328
Greg Kroah-Hartmanf568f6c2012-12-21 15:02:05 -0800329static int ramoops_init_przs(struct device *dev, struct ramoops_context *cxt,
330 phys_addr_t *paddr, size_t dump_mem_sz)
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700331{
332 int err = -ENOMEM;
333 int i;
334
335 if (!cxt->record_size)
336 return 0;
337
Arve Hjønnevågc6289372012-12-11 17:49:24 -0800338 if (*paddr + dump_mem_sz - cxt->phys_addr > cxt->size) {
339 dev_err(dev, "no room for dumps\n");
340 return -ENOMEM;
341 }
342
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700343 cxt->max_dump_cnt = dump_mem_sz / cxt->record_size;
344 if (!cxt->max_dump_cnt)
345 return -ENOMEM;
346
347 cxt->przs = kzalloc(sizeof(*cxt->przs) * cxt->max_dump_cnt,
348 GFP_KERNEL);
349 if (!cxt->przs) {
350 dev_err(dev, "failed to initialize a prz array for dumps\n");
351 return -ENOMEM;
352 }
353
354 for (i = 0; i < cxt->max_dump_cnt; i++) {
355 size_t sz = cxt->record_size;
356
Arve Hjønnevågc31ad082012-05-22 16:33:23 -0700357 cxt->przs[i] = persistent_ram_new(*paddr, sz, 0,
358 &cxt->ecc_info);
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700359 if (IS_ERR(cxt->przs[i])) {
360 err = PTR_ERR(cxt->przs[i]);
361 dev_err(dev, "failed to request mem region (0x%zx@0x%llx): %d\n",
362 sz, (unsigned long long)*paddr, err);
363 goto fail_prz;
364 }
365 *paddr += sz;
366 }
367
368 return 0;
369fail_prz:
370 ramoops_free_przs(cxt);
371 return err;
372}
373
Greg Kroah-Hartmanf568f6c2012-12-21 15:02:05 -0800374static int ramoops_init_prz(struct device *dev, struct ramoops_context *cxt,
375 struct persistent_ram_zone **prz,
376 phys_addr_t *paddr, size_t sz, u32 sig)
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700377{
378 if (!sz)
379 return 0;
380
Arve Hjønnevågc6289372012-12-11 17:49:24 -0800381 if (*paddr + sz - cxt->phys_addr > cxt->size) {
382 dev_err(dev, "no room for mem region (0x%zx@0x%llx) in (0x%lx@0x%llx)\n",
383 sz, (unsigned long long)*paddr,
384 cxt->size, (unsigned long long)cxt->phys_addr);
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700385 return -ENOMEM;
Arve Hjønnevågc6289372012-12-11 17:49:24 -0800386 }
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700387
Arve Hjønnevågc31ad082012-05-22 16:33:23 -0700388 *prz = persistent_ram_new(*paddr, sz, sig, &cxt->ecc_info);
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700389 if (IS_ERR(*prz)) {
390 int err = PTR_ERR(*prz);
391
392 dev_err(dev, "failed to request mem region (0x%zx@0x%llx): %d\n",
393 sz, (unsigned long long)*paddr, err);
394 return err;
395 }
396
397 persistent_ram_zap(*prz);
398
399 *paddr += sz;
400
401 return 0;
402}
403
Greg Kroah-Hartmanf568f6c2012-12-21 15:02:05 -0800404static int ramoops_probe(struct platform_device *pdev)
Marco Stornelli56d611a2010-05-26 14:43:54 -0700405{
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700406 struct device *dev = &pdev->dev;
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700407 struct ramoops_platform_data *pdata = pdev->dev.platform_data;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700408 struct ramoops_context *cxt = &oops_cxt;
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700409 size_t dump_mem_sz;
410 phys_addr_t paddr;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700411 int err = -EINVAL;
412
Kees Cook9ba80d92012-05-03 15:45:02 +1000413 /* Only a single ramoops area allowed at a time, so fail extra
414 * probes.
415 */
Anton Vorontsovcac2eb72012-05-26 06:20:20 -0700416 if (cxt->max_dump_cnt)
Kees Cook9ba80d92012-05-03 15:45:02 +1000417 goto fail_out;
418
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700419 if (!pdata->mem_size || (!pdata->record_size && !pdata->console_size &&
420 !pdata->ftrace_size)) {
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700421 pr_err("The memory size and the record/console size must be "
Sergiu Iordache3e5c4fa2011-07-26 16:08:59 -0700422 "non-zero\n");
Kees Cook9ba80d92012-05-03 15:45:02 +1000423 goto fail_out;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700424 }
425
Maxime Bizon3bd11cf2013-08-30 18:06:41 +0200426 if (pdata->record_size && !is_power_of_2(pdata->record_size))
Maxime Bizonb042e472012-10-22 11:19:28 +0200427 pdata->record_size = rounddown_pow_of_two(pdata->record_size);
Maxime Bizon3bd11cf2013-08-30 18:06:41 +0200428 if (pdata->console_size && !is_power_of_2(pdata->console_size))
Maxime Bizonb042e472012-10-22 11:19:28 +0200429 pdata->console_size = rounddown_pow_of_two(pdata->console_size);
Maxime Bizon3bd11cf2013-08-30 18:06:41 +0200430 if (pdata->ftrace_size && !is_power_of_2(pdata->ftrace_size))
Maxime Bizonb042e472012-10-22 11:19:28 +0200431 pdata->ftrace_size = rounddown_pow_of_two(pdata->ftrace_size);
Marco Stornelli56d611a2010-05-26 14:43:54 -0700432
Marco Stornelli13aefd72011-07-26 16:08:57 -0700433 cxt->size = pdata->mem_size;
434 cxt->phys_addr = pdata->mem_address;
Sergiu Iordache3e5c4fa2011-07-26 16:08:59 -0700435 cxt->record_size = pdata->record_size;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700436 cxt->console_size = pdata->console_size;
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700437 cxt->ftrace_size = pdata->ftrace_size;
Sergiu Iordache6b4d2a22011-07-26 16:08:58 -0700438 cxt->dump_oops = pdata->dump_oops;
Arve Hjønnevågc31ad082012-05-22 16:33:23 -0700439 cxt->ecc_info = pdata->ecc_info;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700440
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700441 paddr = cxt->phys_addr;
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700442
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700443 dump_mem_sz = cxt->size - cxt->console_size - cxt->ftrace_size;
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700444 err = ramoops_init_przs(dev, cxt, &paddr, dump_mem_sz);
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700445 if (err)
446 goto fail_out;
447
Anton Vorontsovcbe7cbf2012-07-17 12:11:12 -0700448 err = ramoops_init_prz(dev, cxt, &cxt->cprz, &paddr,
449 cxt->console_size, 0);
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700450 if (err)
451 goto fail_init_cprz;
452
Anton Vorontsovcbe7cbf2012-07-17 12:11:12 -0700453 err = ramoops_init_prz(dev, cxt, &cxt->fprz, &paddr, cxt->ftrace_size,
454 LINUX_VERSION_CODE);
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700455 if (err)
456 goto fail_init_fprz;
457
458 if (!cxt->przs && !cxt->cprz && !cxt->fprz) {
Randy Dunlap04271932012-08-03 17:02:48 -0700459 pr_err("memory size too small, minimum is %zu\n",
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700460 cxt->console_size + cxt->record_size +
461 cxt->ftrace_size);
Wei Yongjun47110b82013-05-07 19:39:20 +0800462 err = -EINVAL;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700463 goto fail_cnt;
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700464 }
465
Kees Cook9ba80d92012-05-03 15:45:02 +1000466 cxt->pstore.data = cxt;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700467 /*
Anton Vorontsova384f6412012-07-19 15:47:11 -0700468 * Console can handle any buffer size, so prefer LOG_LINE_MAX. If we
469 * have to handle dumps, we must have at least record_size buffer. And
470 * for ftrace, bufsize is irrelevant (if bufsize is 0, buf will be
471 * ZERO_SIZE_PTR).
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700472 */
Anton Vorontsova384f6412012-07-19 15:47:11 -0700473 if (cxt->console_size)
474 cxt->pstore.bufsize = 1024; /* LOG_LINE_MAX */
475 cxt->pstore.bufsize = max(cxt->record_size, cxt->pstore.bufsize);
Kees Cook9ba80d92012-05-03 15:45:02 +1000476 cxt->pstore.buf = kmalloc(cxt->pstore.bufsize, GFP_KERNEL);
477 spin_lock_init(&cxt->pstore.buf_lock);
478 if (!cxt->pstore.buf) {
479 pr_err("cannot allocate pstore buffer\n");
Wei Yongjun47110b82013-05-07 19:39:20 +0800480 err = -ENOMEM;
Kees Cook9ba80d92012-05-03 15:45:02 +1000481 goto fail_clear;
482 }
483
Kees Cook9ba80d92012-05-03 15:45:02 +1000484 err = pstore_register(&cxt->pstore);
Marco Stornelli56d611a2010-05-26 14:43:54 -0700485 if (err) {
Kees Cook9ba80d92012-05-03 15:45:02 +1000486 pr_err("registering with pstore failed\n");
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700487 goto fail_buf;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700488 }
489
Kees Cookc7552012012-01-12 17:20:59 -0800490 /*
491 * Update the module parameter variables as well so they are visible
492 * through /sys/module/ramoops/parameters/
493 */
494 mem_size = pdata->mem_size;
495 mem_address = pdata->mem_address;
496 record_size = pdata->record_size;
497 dump_oops = pdata->dump_oops;
498
Arve Hjønnevågc31ad082012-05-22 16:33:23 -0700499 pr_info("attached 0x%lx@0x%llx, ecc: %d/%d\n",
Randy Dunlapd109a672012-05-03 15:45:03 +1000500 cxt->size, (unsigned long long)cxt->phys_addr,
Arve Hjønnevågc31ad082012-05-22 16:33:23 -0700501 cxt->ecc_info.ecc_size, cxt->ecc_info.block_size);
Kees Cook9ba80d92012-05-03 15:45:02 +1000502
Marco Stornelli56d611a2010-05-26 14:43:54 -0700503 return 0;
504
Kees Cook9ba80d92012-05-03 15:45:02 +1000505fail_buf:
506 kfree(cxt->pstore.buf);
507fail_clear:
508 cxt->pstore.bufsize = 0;
Anton Vorontsovcac2eb72012-05-26 06:20:20 -0700509 cxt->max_dump_cnt = 0;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700510fail_cnt:
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700511 kfree(cxt->fprz);
512fail_init_fprz:
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700513 kfree(cxt->cprz);
514fail_init_cprz:
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700515 ramoops_free_przs(cxt);
Kees Cook9ba80d92012-05-03 15:45:02 +1000516fail_out:
Marco Stornelli56d611a2010-05-26 14:43:54 -0700517 return err;
518}
519
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700520static int __exit ramoops_remove(struct platform_device *pdev)
Marco Stornelli56d611a2010-05-26 14:43:54 -0700521{
Kees Cook9ba80d92012-05-03 15:45:02 +1000522#if 0
523 /* TODO(kees): We cannot unload ramoops since pstore doesn't support
524 * unregistering yet.
525 */
Marco Stornelli56d611a2010-05-26 14:43:54 -0700526 struct ramoops_context *cxt = &oops_cxt;
527
Marco Stornelli56d611a2010-05-26 14:43:54 -0700528 iounmap(cxt->virt_addr);
529 release_mem_region(cxt->phys_addr, cxt->size);
Anton Vorontsovcac2eb72012-05-26 06:20:20 -0700530 cxt->max_dump_cnt = 0;
Kees Cook9ba80d92012-05-03 15:45:02 +1000531
532 /* TODO(kees): When pstore supports unregistering, call it here. */
533 kfree(cxt->pstore.buf);
534 cxt->pstore.bufsize = 0;
535
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700536 return 0;
Kees Cook9ba80d92012-05-03 15:45:02 +1000537#endif
538 return -EBUSY;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700539}
540
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700541static struct platform_driver ramoops_driver = {
Anton Vorontsov924d3712012-06-18 19:15:50 -0700542 .probe = ramoops_probe,
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700543 .remove = __exit_p(ramoops_remove),
544 .driver = {
545 .name = "ramoops",
546 .owner = THIS_MODULE,
547 },
548};
549
Anton Vorontsov924d3712012-06-18 19:15:50 -0700550static void ramoops_register_dummy(void)
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700551{
Anton Vorontsov924d3712012-06-18 19:15:50 -0700552 if (!mem_size)
553 return;
Marco Stornelli13aefd72011-07-26 16:08:57 -0700554
Anton Vorontsov924d3712012-06-18 19:15:50 -0700555 pr_info("using module parameters\n");
556
557 dummy_data = kzalloc(sizeof(*dummy_data), GFP_KERNEL);
558 if (!dummy_data) {
559 pr_info("could not allocate pdata\n");
560 return;
Marco Stornelli13aefd72011-07-26 16:08:57 -0700561 }
562
Anton Vorontsov924d3712012-06-18 19:15:50 -0700563 dummy_data->mem_size = mem_size;
564 dummy_data->mem_address = mem_address;
565 dummy_data->record_size = record_size;
566 dummy_data->console_size = ramoops_console_size;
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700567 dummy_data->ftrace_size = ramoops_ftrace_size;
Anton Vorontsov924d3712012-06-18 19:15:50 -0700568 dummy_data->dump_oops = dump_oops;
Anton Vorontsov5ca5d4e2012-07-09 17:03:19 -0700569 /*
570 * For backwards compatibility ramoops.ecc=1 means 16 bytes ECC
571 * (using 1 byte for ECC isn't much of use anyway).
572 */
Arve Hjønnevågc31ad082012-05-22 16:33:23 -0700573 dummy_data->ecc_info.ecc_size = ramoops_ecc == 1 ? 16 : ramoops_ecc;
Anton Vorontsov924d3712012-06-18 19:15:50 -0700574
575 dummy = platform_device_register_data(NULL, "ramoops", -1,
576 dummy_data, sizeof(struct ramoops_platform_data));
577 if (IS_ERR(dummy)) {
578 pr_info("could not create platform device: %ld\n",
579 PTR_ERR(dummy));
580 }
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700581}
582
Anton Vorontsov924d3712012-06-18 19:15:50 -0700583static int __init ramoops_init(void)
584{
585 ramoops_register_dummy();
586 return platform_driver_register(&ramoops_driver);
587}
588postcore_initcall(ramoops_init);
589
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700590static void __exit ramoops_exit(void)
591{
592 platform_driver_unregister(&ramoops_driver);
Jovi Zhangb4a871b2012-08-20 14:58:26 +0800593 platform_device_unregister(dummy);
Marco Stornelli13aefd72011-07-26 16:08:57 -0700594 kfree(dummy_data);
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700595}
Marco Stornelli56d611a2010-05-26 14:43:54 -0700596module_exit(ramoops_exit);
597
598MODULE_LICENSE("GPL");
599MODULE_AUTHOR("Marco Stornelli <marco.stornelli@gmail.com>");
600MODULE_DESCRIPTION("RAM Oops/Panic logger/driver");