blob: fa8cef2cca3af73044cec32e409302895ea4891d [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;
89 unsigned int dump_read_cnt;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -070090 unsigned int console_read_cnt;
Anton Vorontsova694d1b2012-07-09 17:10:44 -070091 unsigned int ftrace_read_cnt;
Kees Cook9ba80d92012-05-03 15:45:02 +100092 struct pstore_info pstore;
93};
Marco Stornelli56d611a2010-05-26 14:43:54 -070094
Marco Stornelli13aefd72011-07-26 16:08:57 -070095static struct platform_device *dummy;
96static struct ramoops_platform_data *dummy_data;
97
Kees Cook9ba80d92012-05-03 15:45:02 +100098static int ramoops_pstore_open(struct pstore_info *psi)
Marco Stornelli56d611a2010-05-26 14:43:54 -070099{
Kees Cook9ba80d92012-05-03 15:45:02 +1000100 struct ramoops_context *cxt = psi->data;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700101
Anton Vorontsovcac2eb72012-05-26 06:20:20 -0700102 cxt->dump_read_cnt = 0;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700103 cxt->console_read_cnt = 0;
Kees Cook9ba80d92012-05-03 15:45:02 +1000104 return 0;
105}
106
Anton Vorontsov755d66b2012-05-26 06:20:22 -0700107static struct persistent_ram_zone *
108ramoops_get_next_prz(struct persistent_ram_zone *przs[], uint *c, uint max,
109 u64 *id,
110 enum pstore_type_id *typep, enum pstore_type_id type,
111 bool update)
112{
113 struct persistent_ram_zone *prz;
114 int i = (*c)++;
115
116 if (i >= max)
117 return NULL;
118
119 prz = przs[i];
120
121 if (update) {
122 /* Update old/shadowed buffer. */
123 persistent_ram_save_old(prz);
124 if (!persistent_ram_old_size(prz))
125 return NULL;
126 }
127
128 *typep = type;
129 *id = i;
130
131 return prz;
132}
133
Aruna Balakrishnaiah3f8f80f2013-08-16 13:58:00 -0700134static void ramoops_read_kmsg_hdr(char *buffer, struct timespec *time,
135 bool *compressed)
136{
137 char data_type;
138
139 if (sscanf(buffer, RAMOOPS_KERNMSG_HDR "%lu.%lu-%c\n",
140 &time->tv_sec, &time->tv_nsec, &data_type) == 3) {
141 if (data_type == 'C')
142 *compressed = true;
143 else
144 *compressed = false;
145 } else if (sscanf(buffer, RAMOOPS_KERNMSG_HDR "%lu.%lu\n",
146 &time->tv_sec, &time->tv_nsec) == 2) {
147 *compressed = false;
148 } else {
149 time->tv_sec = 0;
150 time->tv_nsec = 0;
151 *compressed = false;
152 }
153}
154
Kees Cook9ba80d92012-05-03 15:45:02 +1000155static ssize_t ramoops_pstore_read(u64 *id, enum pstore_type_id *type,
Seiji Aguchi755d4fe2012-11-26 16:07:44 -0800156 int *count, struct timespec *time,
Aruna Balakrishnaiah9a4e1392013-08-16 13:53:19 -0700157 char **buf, bool *compressed,
158 struct pstore_info *psi)
Kees Cook9ba80d92012-05-03 15:45:02 +1000159{
160 ssize_t size;
Arve Hjønnevågbd08ec32012-12-05 21:19:51 -0800161 ssize_t ecc_notice_size;
Kees Cook9ba80d92012-05-03 15:45:02 +1000162 struct ramoops_context *cxt = psi->data;
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700163 struct persistent_ram_zone *prz;
Kees Cook9ba80d92012-05-03 15:45:02 +1000164
Anton Vorontsov755d66b2012-05-26 06:20:22 -0700165 prz = ramoops_get_next_prz(cxt->przs, &cxt->dump_read_cnt,
166 cxt->max_dump_cnt, id, type,
167 PSTORE_TYPE_DMESG, 1);
168 if (!prz)
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700169 prz = ramoops_get_next_prz(&cxt->cprz, &cxt->console_read_cnt,
170 1, id, type, PSTORE_TYPE_CONSOLE, 0);
171 if (!prz)
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700172 prz = ramoops_get_next_prz(&cxt->fprz, &cxt->ftrace_read_cnt,
173 1, id, type, PSTORE_TYPE_FTRACE, 0);
174 if (!prz)
Anton Vorontsov755d66b2012-05-26 06:20:22 -0700175 return 0;
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700176
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700177 size = persistent_ram_old_size(prz);
Arve Hjønnevågbd08ec32012-12-05 21:19:51 -0800178
179 /* ECC correction notice */
180 ecc_notice_size = persistent_ram_ecc_string(prz, NULL, 0);
181
182 *buf = kmalloc(size + ecc_notice_size + 1, GFP_KERNEL);
Kees Cook9ba80d92012-05-03 15:45:02 +1000183 if (*buf == NULL)
184 return -ENOMEM;
Kees Cook9ba80d92012-05-03 15:45:02 +1000185
Arve Hjønnevågbd08ec32012-12-05 21:19:51 -0800186 memcpy(*buf, persistent_ram_old(prz), size);
Aruna Balakrishnaiah3f8f80f2013-08-16 13:58:00 -0700187 ramoops_read_kmsg_hdr(*buf, time, compressed);
Arve Hjønnevågbd08ec32012-12-05 21:19:51 -0800188 persistent_ram_ecc_string(prz, *buf + size, ecc_notice_size + 1);
189
190 return size + ecc_notice_size;
Kees Cook9ba80d92012-05-03 15:45:02 +1000191}
192
Aruna Balakrishnaiah3f8f80f2013-08-16 13:58:00 -0700193static size_t ramoops_write_kmsg_hdr(struct persistent_ram_zone *prz,
194 bool compressed)
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700195{
196 char *hdr;
Kees Cook1e817fb2012-11-19 10:26:16 -0800197 struct timespec timestamp;
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700198 size_t len;
199
Kees Cook1e817fb2012-11-19 10:26:16 -0800200 /* Report zeroed timestamp if called before timekeeping has resumed. */
201 if (__getnstimeofday(&timestamp)) {
202 timestamp.tv_sec = 0;
203 timestamp.tv_nsec = 0;
204 }
Aruna Balakrishnaiah3f8f80f2013-08-16 13:58:00 -0700205 hdr = kasprintf(GFP_ATOMIC, RAMOOPS_KERNMSG_HDR "%lu.%lu-%c\n",
206 (long)timestamp.tv_sec, (long)(timestamp.tv_nsec / 1000),
207 compressed ? 'C' : 'D');
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700208 WARN_ON_ONCE(!hdr);
209 len = hdr ? strlen(hdr) : 0;
210 persistent_ram_write(prz, hdr, len);
211 kfree(hdr);
212
213 return len;
214}
215
Anton Vorontsov24203032012-07-17 19:49:37 -0700216static int notrace ramoops_pstore_write_buf(enum pstore_type_id type,
217 enum kmsg_dump_reason reason,
218 u64 *id, unsigned int part,
Aruna Balakrishnaiah6bbbca72013-06-27 14:02:56 +0530219 const char *buf,
Aruna Balakrishnaiahb3b515b2013-08-16 13:52:47 -0700220 bool compressed, size_t size,
Anton Vorontsov24203032012-07-17 19:49:37 -0700221 struct pstore_info *psi)
Kees Cook9ba80d92012-05-03 15:45:02 +1000222{
Kees Cook9ba80d92012-05-03 15:45:02 +1000223 struct ramoops_context *cxt = psi->data;
Arve Hjønnevågc6289372012-12-11 17:49:24 -0800224 struct persistent_ram_zone *prz;
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700225 size_t hlen;
Kees Cook9ba80d92012-05-03 15:45:02 +1000226
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700227 if (type == PSTORE_TYPE_CONSOLE) {
228 if (!cxt->cprz)
229 return -ENOMEM;
Anton Vorontsovc2b71132012-07-09 17:10:43 -0700230 persistent_ram_write(cxt->cprz, buf, size);
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700231 return 0;
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700232 } else if (type == PSTORE_TYPE_FTRACE) {
233 if (!cxt->fprz)
234 return -ENOMEM;
235 persistent_ram_write(cxt->fprz, buf, size);
236 return 0;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700237 }
238
Kees Cook9ba80d92012-05-03 15:45:02 +1000239 if (type != PSTORE_TYPE_DMESG)
240 return -EINVAL;
241
242 /* Out of the various dmesg dump types, ramoops is currently designed
243 * to only store crash logs, rather than storing general kernel logs.
244 */
Seiji Aguchifc2d5572011-01-12 16:59:29 -0800245 if (reason != KMSG_DUMP_OOPS &&
WANG Conga3dd3322012-01-12 17:20:11 -0800246 reason != KMSG_DUMP_PANIC)
Kees Cook9ba80d92012-05-03 15:45:02 +1000247 return -EINVAL;
Seiji Aguchifc2d5572011-01-12 16:59:29 -0800248
Kees Cook9ba80d92012-05-03 15:45:02 +1000249 /* Skip Oopes when configured to do so. */
Sergiu Iordache6b4d2a22011-07-26 16:08:58 -0700250 if (reason == KMSG_DUMP_OOPS && !cxt->dump_oops)
Kees Cook9ba80d92012-05-03 15:45:02 +1000251 return -EINVAL;
252
253 /* Explicitly only take the first part of any new crash.
254 * If our buffer is larger than kmsg_bytes, this can never happen,
255 * and if our buffer is smaller than kmsg_bytes, we don't want the
256 * report split across multiple records.
257 */
258 if (part != 1)
259 return -ENOSPC;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700260
Arve Hjønnevågc6289372012-12-11 17:49:24 -0800261 if (!cxt->przs)
262 return -ENOSPC;
263
264 prz = cxt->przs[cxt->dump_write_cnt];
265
Aruna Balakrishnaiah3f8f80f2013-08-16 13:58:00 -0700266 hlen = ramoops_write_kmsg_hdr(prz, compressed);
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700267 if (size + hlen > prz->buffer_size)
268 size = prz->buffer_size - hlen;
Anton Vorontsovc2b71132012-07-09 17:10:43 -0700269 persistent_ram_write(prz, buf, size);
Marco Stornelli56d611a2010-05-26 14:43:54 -0700270
Anton Vorontsovcac2eb72012-05-26 06:20:20 -0700271 cxt->dump_write_cnt = (cxt->dump_write_cnt + 1) % cxt->max_dump_cnt;
Kees Cook9ba80d92012-05-03 15:45:02 +1000272
273 return 0;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700274}
275
Seiji Aguchi755d4fe2012-11-26 16:07:44 -0800276static int ramoops_pstore_erase(enum pstore_type_id type, u64 id, int count,
Seiji Aguchia9efd392012-11-14 20:27:28 +0000277 struct timespec time, struct pstore_info *psi)
Kees Cook9ba80d92012-05-03 15:45:02 +1000278{
Kees Cook9ba80d92012-05-03 15:45:02 +1000279 struct ramoops_context *cxt = psi->data;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700280 struct persistent_ram_zone *prz;
Kees Cook9ba80d92012-05-03 15:45:02 +1000281
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700282 switch (type) {
283 case PSTORE_TYPE_DMESG:
284 if (id >= cxt->max_dump_cnt)
285 return -EINVAL;
286 prz = cxt->przs[id];
287 break;
288 case PSTORE_TYPE_CONSOLE:
289 prz = cxt->cprz;
290 break;
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700291 case PSTORE_TYPE_FTRACE:
292 prz = cxt->fprz;
293 break;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700294 default:
Kees Cook9ba80d92012-05-03 15:45:02 +1000295 return -EINVAL;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700296 }
Kees Cook9ba80d92012-05-03 15:45:02 +1000297
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700298 persistent_ram_free_old(prz);
299 persistent_ram_zap(prz);
Kees Cook9ba80d92012-05-03 15:45:02 +1000300
301 return 0;
302}
303
304static struct ramoops_context oops_cxt = {
305 .pstore = {
306 .owner = THIS_MODULE,
307 .name = "ramoops",
308 .open = ramoops_pstore_open,
309 .read = ramoops_pstore_read,
Anton Vorontsovc2b71132012-07-09 17:10:43 -0700310 .write_buf = ramoops_pstore_write_buf,
Kees Cook9ba80d92012-05-03 15:45:02 +1000311 .erase = ramoops_pstore_erase,
312 },
313};
314
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700315static void ramoops_free_przs(struct ramoops_context *cxt)
316{
317 int i;
318
319 if (!cxt->przs)
320 return;
321
Anton Vorontsov90b58d92012-06-18 19:15:51 -0700322 for (i = 0; !IS_ERR_OR_NULL(cxt->przs[i]); i++)
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700323 persistent_ram_free(cxt->przs[i]);
324 kfree(cxt->przs);
325}
326
Greg Kroah-Hartmanf568f6c2012-12-21 15:02:05 -0800327static int ramoops_init_przs(struct device *dev, struct ramoops_context *cxt,
328 phys_addr_t *paddr, size_t dump_mem_sz)
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700329{
330 int err = -ENOMEM;
331 int i;
332
333 if (!cxt->record_size)
334 return 0;
335
Arve Hjønnevågc6289372012-12-11 17:49:24 -0800336 if (*paddr + dump_mem_sz - cxt->phys_addr > cxt->size) {
337 dev_err(dev, "no room for dumps\n");
338 return -ENOMEM;
339 }
340
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700341 cxt->max_dump_cnt = dump_mem_sz / cxt->record_size;
342 if (!cxt->max_dump_cnt)
343 return -ENOMEM;
344
345 cxt->przs = kzalloc(sizeof(*cxt->przs) * cxt->max_dump_cnt,
346 GFP_KERNEL);
347 if (!cxt->przs) {
348 dev_err(dev, "failed to initialize a prz array for dumps\n");
349 return -ENOMEM;
350 }
351
352 for (i = 0; i < cxt->max_dump_cnt; i++) {
353 size_t sz = cxt->record_size;
354
Arve Hjønnevågc31ad082012-05-22 16:33:23 -0700355 cxt->przs[i] = persistent_ram_new(*paddr, sz, 0,
356 &cxt->ecc_info);
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700357 if (IS_ERR(cxt->przs[i])) {
358 err = PTR_ERR(cxt->przs[i]);
359 dev_err(dev, "failed to request mem region (0x%zx@0x%llx): %d\n",
360 sz, (unsigned long long)*paddr, err);
361 goto fail_prz;
362 }
363 *paddr += sz;
364 }
365
366 return 0;
367fail_prz:
368 ramoops_free_przs(cxt);
369 return err;
370}
371
Greg Kroah-Hartmanf568f6c2012-12-21 15:02:05 -0800372static int ramoops_init_prz(struct device *dev, struct ramoops_context *cxt,
373 struct persistent_ram_zone **prz,
374 phys_addr_t *paddr, size_t sz, u32 sig)
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700375{
376 if (!sz)
377 return 0;
378
Arve Hjønnevågc6289372012-12-11 17:49:24 -0800379 if (*paddr + sz - cxt->phys_addr > cxt->size) {
380 dev_err(dev, "no room for mem region (0x%zx@0x%llx) in (0x%lx@0x%llx)\n",
381 sz, (unsigned long long)*paddr,
382 cxt->size, (unsigned long long)cxt->phys_addr);
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700383 return -ENOMEM;
Arve Hjønnevågc6289372012-12-11 17:49:24 -0800384 }
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700385
Arve Hjønnevågc31ad082012-05-22 16:33:23 -0700386 *prz = persistent_ram_new(*paddr, sz, sig, &cxt->ecc_info);
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700387 if (IS_ERR(*prz)) {
388 int err = PTR_ERR(*prz);
389
390 dev_err(dev, "failed to request mem region (0x%zx@0x%llx): %d\n",
391 sz, (unsigned long long)*paddr, err);
392 return err;
393 }
394
395 persistent_ram_zap(*prz);
396
397 *paddr += sz;
398
399 return 0;
400}
401
Greg Kroah-Hartmanf568f6c2012-12-21 15:02:05 -0800402static int ramoops_probe(struct platform_device *pdev)
Marco Stornelli56d611a2010-05-26 14:43:54 -0700403{
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700404 struct device *dev = &pdev->dev;
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700405 struct ramoops_platform_data *pdata = pdev->dev.platform_data;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700406 struct ramoops_context *cxt = &oops_cxt;
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700407 size_t dump_mem_sz;
408 phys_addr_t paddr;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700409 int err = -EINVAL;
410
Kees Cook9ba80d92012-05-03 15:45:02 +1000411 /* Only a single ramoops area allowed at a time, so fail extra
412 * probes.
413 */
Anton Vorontsovcac2eb72012-05-26 06:20:20 -0700414 if (cxt->max_dump_cnt)
Kees Cook9ba80d92012-05-03 15:45:02 +1000415 goto fail_out;
416
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700417 if (!pdata->mem_size || (!pdata->record_size && !pdata->console_size &&
418 !pdata->ftrace_size)) {
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700419 pr_err("The memory size and the record/console size must be "
Sergiu Iordache3e5c4fa2011-07-26 16:08:59 -0700420 "non-zero\n");
Kees Cook9ba80d92012-05-03 15:45:02 +1000421 goto fail_out;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700422 }
423
Maxime Bizon3bd11cf2013-08-30 18:06:41 +0200424 if (pdata->record_size && !is_power_of_2(pdata->record_size))
Maxime Bizonb042e472012-10-22 11:19:28 +0200425 pdata->record_size = rounddown_pow_of_two(pdata->record_size);
Maxime Bizon3bd11cf2013-08-30 18:06:41 +0200426 if (pdata->console_size && !is_power_of_2(pdata->console_size))
Maxime Bizonb042e472012-10-22 11:19:28 +0200427 pdata->console_size = rounddown_pow_of_two(pdata->console_size);
Maxime Bizon3bd11cf2013-08-30 18:06:41 +0200428 if (pdata->ftrace_size && !is_power_of_2(pdata->ftrace_size))
Maxime Bizonb042e472012-10-22 11:19:28 +0200429 pdata->ftrace_size = rounddown_pow_of_two(pdata->ftrace_size);
Marco Stornelli56d611a2010-05-26 14:43:54 -0700430
Anton Vorontsovcac2eb72012-05-26 06:20:20 -0700431 cxt->dump_read_cnt = 0;
Marco Stornelli13aefd72011-07-26 16:08:57 -0700432 cxt->size = pdata->mem_size;
433 cxt->phys_addr = pdata->mem_address;
Sergiu Iordache3e5c4fa2011-07-26 16:08:59 -0700434 cxt->record_size = pdata->record_size;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700435 cxt->console_size = pdata->console_size;
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700436 cxt->ftrace_size = pdata->ftrace_size;
Sergiu Iordache6b4d2a22011-07-26 16:08:58 -0700437 cxt->dump_oops = pdata->dump_oops;
Arve Hjønnevågc31ad082012-05-22 16:33:23 -0700438 cxt->ecc_info = pdata->ecc_info;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700439
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700440 paddr = cxt->phys_addr;
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700441
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700442 dump_mem_sz = cxt->size - cxt->console_size - cxt->ftrace_size;
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700443 err = ramoops_init_przs(dev, cxt, &paddr, dump_mem_sz);
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700444 if (err)
445 goto fail_out;
446
Anton Vorontsovcbe7cbf2012-07-17 12:11:12 -0700447 err = ramoops_init_prz(dev, cxt, &cxt->cprz, &paddr,
448 cxt->console_size, 0);
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700449 if (err)
450 goto fail_init_cprz;
451
Anton Vorontsovcbe7cbf2012-07-17 12:11:12 -0700452 err = ramoops_init_prz(dev, cxt, &cxt->fprz, &paddr, cxt->ftrace_size,
453 LINUX_VERSION_CODE);
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700454 if (err)
455 goto fail_init_fprz;
456
457 if (!cxt->przs && !cxt->cprz && !cxt->fprz) {
Randy Dunlap04271932012-08-03 17:02:48 -0700458 pr_err("memory size too small, minimum is %zu\n",
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700459 cxt->console_size + cxt->record_size +
460 cxt->ftrace_size);
Wei Yongjun47110b82013-05-07 19:39:20 +0800461 err = -EINVAL;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700462 goto fail_cnt;
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700463 }
464
Kees Cook9ba80d92012-05-03 15:45:02 +1000465 cxt->pstore.data = cxt;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700466 /*
Anton Vorontsova384f6412012-07-19 15:47:11 -0700467 * Console can handle any buffer size, so prefer LOG_LINE_MAX. If we
468 * have to handle dumps, we must have at least record_size buffer. And
469 * for ftrace, bufsize is irrelevant (if bufsize is 0, buf will be
470 * ZERO_SIZE_PTR).
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700471 */
Anton Vorontsova384f6412012-07-19 15:47:11 -0700472 if (cxt->console_size)
473 cxt->pstore.bufsize = 1024; /* LOG_LINE_MAX */
474 cxt->pstore.bufsize = max(cxt->record_size, cxt->pstore.bufsize);
Kees Cook9ba80d92012-05-03 15:45:02 +1000475 cxt->pstore.buf = kmalloc(cxt->pstore.bufsize, GFP_KERNEL);
476 spin_lock_init(&cxt->pstore.buf_lock);
477 if (!cxt->pstore.buf) {
478 pr_err("cannot allocate pstore buffer\n");
Wei Yongjun47110b82013-05-07 19:39:20 +0800479 err = -ENOMEM;
Kees Cook9ba80d92012-05-03 15:45:02 +1000480 goto fail_clear;
481 }
482
Kees Cook9ba80d92012-05-03 15:45:02 +1000483 err = pstore_register(&cxt->pstore);
Marco Stornelli56d611a2010-05-26 14:43:54 -0700484 if (err) {
Kees Cook9ba80d92012-05-03 15:45:02 +1000485 pr_err("registering with pstore failed\n");
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700486 goto fail_buf;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700487 }
488
Kees Cookc7552012012-01-12 17:20:59 -0800489 /*
490 * Update the module parameter variables as well so they are visible
491 * through /sys/module/ramoops/parameters/
492 */
493 mem_size = pdata->mem_size;
494 mem_address = pdata->mem_address;
495 record_size = pdata->record_size;
496 dump_oops = pdata->dump_oops;
497
Arve Hjønnevågc31ad082012-05-22 16:33:23 -0700498 pr_info("attached 0x%lx@0x%llx, ecc: %d/%d\n",
Randy Dunlapd109a672012-05-03 15:45:03 +1000499 cxt->size, (unsigned long long)cxt->phys_addr,
Arve Hjønnevågc31ad082012-05-22 16:33:23 -0700500 cxt->ecc_info.ecc_size, cxt->ecc_info.block_size);
Kees Cook9ba80d92012-05-03 15:45:02 +1000501
Marco Stornelli56d611a2010-05-26 14:43:54 -0700502 return 0;
503
Kees Cook9ba80d92012-05-03 15:45:02 +1000504fail_buf:
505 kfree(cxt->pstore.buf);
506fail_clear:
507 cxt->pstore.bufsize = 0;
Anton Vorontsovcac2eb72012-05-26 06:20:20 -0700508 cxt->max_dump_cnt = 0;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700509fail_cnt:
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700510 kfree(cxt->fprz);
511fail_init_fprz:
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700512 kfree(cxt->cprz);
513fail_init_cprz:
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700514 ramoops_free_przs(cxt);
Kees Cook9ba80d92012-05-03 15:45:02 +1000515fail_out:
Marco Stornelli56d611a2010-05-26 14:43:54 -0700516 return err;
517}
518
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700519static int __exit ramoops_remove(struct platform_device *pdev)
Marco Stornelli56d611a2010-05-26 14:43:54 -0700520{
Kees Cook9ba80d92012-05-03 15:45:02 +1000521#if 0
522 /* TODO(kees): We cannot unload ramoops since pstore doesn't support
523 * unregistering yet.
524 */
Marco Stornelli56d611a2010-05-26 14:43:54 -0700525 struct ramoops_context *cxt = &oops_cxt;
526
Marco Stornelli56d611a2010-05-26 14:43:54 -0700527 iounmap(cxt->virt_addr);
528 release_mem_region(cxt->phys_addr, cxt->size);
Anton Vorontsovcac2eb72012-05-26 06:20:20 -0700529 cxt->max_dump_cnt = 0;
Kees Cook9ba80d92012-05-03 15:45:02 +1000530
531 /* TODO(kees): When pstore supports unregistering, call it here. */
532 kfree(cxt->pstore.buf);
533 cxt->pstore.bufsize = 0;
534
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700535 return 0;
Kees Cook9ba80d92012-05-03 15:45:02 +1000536#endif
537 return -EBUSY;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700538}
539
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700540static struct platform_driver ramoops_driver = {
Anton Vorontsov924d3712012-06-18 19:15:50 -0700541 .probe = ramoops_probe,
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700542 .remove = __exit_p(ramoops_remove),
543 .driver = {
544 .name = "ramoops",
545 .owner = THIS_MODULE,
546 },
547};
548
Anton Vorontsov924d3712012-06-18 19:15:50 -0700549static void ramoops_register_dummy(void)
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700550{
Anton Vorontsov924d3712012-06-18 19:15:50 -0700551 if (!mem_size)
552 return;
Marco Stornelli13aefd72011-07-26 16:08:57 -0700553
Anton Vorontsov924d3712012-06-18 19:15:50 -0700554 pr_info("using module parameters\n");
555
556 dummy_data = kzalloc(sizeof(*dummy_data), GFP_KERNEL);
557 if (!dummy_data) {
558 pr_info("could not allocate pdata\n");
559 return;
Marco Stornelli13aefd72011-07-26 16:08:57 -0700560 }
561
Anton Vorontsov924d3712012-06-18 19:15:50 -0700562 dummy_data->mem_size = mem_size;
563 dummy_data->mem_address = mem_address;
564 dummy_data->record_size = record_size;
565 dummy_data->console_size = ramoops_console_size;
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700566 dummy_data->ftrace_size = ramoops_ftrace_size;
Anton Vorontsov924d3712012-06-18 19:15:50 -0700567 dummy_data->dump_oops = dump_oops;
Anton Vorontsov5ca5d4e2012-07-09 17:03:19 -0700568 /*
569 * For backwards compatibility ramoops.ecc=1 means 16 bytes ECC
570 * (using 1 byte for ECC isn't much of use anyway).
571 */
Arve Hjønnevågc31ad082012-05-22 16:33:23 -0700572 dummy_data->ecc_info.ecc_size = ramoops_ecc == 1 ? 16 : ramoops_ecc;
Anton Vorontsov924d3712012-06-18 19:15:50 -0700573
574 dummy = platform_device_register_data(NULL, "ramoops", -1,
575 dummy_data, sizeof(struct ramoops_platform_data));
576 if (IS_ERR(dummy)) {
577 pr_info("could not create platform device: %ld\n",
578 PTR_ERR(dummy));
579 }
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700580}
581
Anton Vorontsov924d3712012-06-18 19:15:50 -0700582static int __init ramoops_init(void)
583{
584 ramoops_register_dummy();
585 return platform_driver_register(&ramoops_driver);
586}
587postcore_initcall(ramoops_init);
588
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700589static void __exit ramoops_exit(void)
590{
591 platform_driver_unregister(&ramoops_driver);
Jovi Zhangb4a871b2012-08-20 14:58:26 +0800592 platform_device_unregister(dummy);
Marco Stornelli13aefd72011-07-26 16:08:57 -0700593 kfree(dummy_data);
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700594}
Marco Stornelli56d611a2010-05-26 14:43:54 -0700595module_exit(ramoops_exit);
596
597MODULE_LICENSE("GPL");
598MODULE_AUTHOR("Marco Stornelli <marco.stornelli@gmail.com>");
599MODULE_DESCRIPTION("RAM Oops/Panic logger/driver");