blob: ec881b3127004c97871fe97e8e606ea6faf56455 [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];
Liu ShuoXb0aa9312014-03-17 13:57:49 -0700122 if (!prz)
123 return NULL;
Anton Vorontsov755d66b2012-05-26 06:20:22 -0700124
Liu ShuoXaa9a4a12014-03-17 11:24:49 +1100125 /* Update old/shadowed buffer. */
126 if (update)
Anton Vorontsov755d66b2012-05-26 06:20:22 -0700127 persistent_ram_save_old(prz);
Liu ShuoXaa9a4a12014-03-17 11:24:49 +1100128
129 if (!persistent_ram_old_size(prz))
130 return NULL;
Anton Vorontsov755d66b2012-05-26 06:20:22 -0700131
132 *typep = type;
133 *id = i;
134
135 return prz;
136}
137
Ben Zhanga28726b2014-10-30 17:14:21 -0700138static int ramoops_read_kmsg_hdr(char *buffer, struct timespec *time,
Aruna Balakrishnaiah3f8f80f2013-08-16 13:58:00 -0700139 bool *compressed)
140{
141 char data_type;
Ben Zhanga28726b2014-10-30 17:14:21 -0700142 int header_length = 0;
Aruna Balakrishnaiah3f8f80f2013-08-16 13:58:00 -0700143
Ben Zhanga28726b2014-10-30 17:14:21 -0700144 if (sscanf(buffer, RAMOOPS_KERNMSG_HDR "%lu.%lu-%c\n%n", &time->tv_sec,
145 &time->tv_nsec, &data_type, &header_length) == 3) {
Aruna Balakrishnaiah3f8f80f2013-08-16 13:58:00 -0700146 if (data_type == 'C')
147 *compressed = true;
148 else
149 *compressed = false;
Ben Zhanga28726b2014-10-30 17:14:21 -0700150 } else if (sscanf(buffer, RAMOOPS_KERNMSG_HDR "%lu.%lu\n%n",
151 &time->tv_sec, &time->tv_nsec, &header_length) == 2) {
Aruna Balakrishnaiah3f8f80f2013-08-16 13:58:00 -0700152 *compressed = false;
153 } else {
154 time->tv_sec = 0;
155 time->tv_nsec = 0;
156 *compressed = false;
157 }
Ben Zhanga28726b2014-10-30 17:14:21 -0700158 return header_length;
Aruna Balakrishnaiah3f8f80f2013-08-16 13:58:00 -0700159}
160
Kees Cook9ba80d92012-05-03 15:45:02 +1000161static ssize_t ramoops_pstore_read(u64 *id, enum pstore_type_id *type,
Seiji Aguchi755d4fe2012-11-26 16:07:44 -0800162 int *count, struct timespec *time,
Aruna Balakrishnaiah9a4e1392013-08-16 13:53:19 -0700163 char **buf, bool *compressed,
164 struct pstore_info *psi)
Kees Cook9ba80d92012-05-03 15:45:02 +1000165{
166 ssize_t size;
Arve Hjønnevågbd08ec32012-12-05 21:19:51 -0800167 ssize_t ecc_notice_size;
Kees Cook9ba80d92012-05-03 15:45:02 +1000168 struct ramoops_context *cxt = psi->data;
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700169 struct persistent_ram_zone *prz;
Ben Zhanga28726b2014-10-30 17:14:21 -0700170 int header_length;
Kees Cook9ba80d92012-05-03 15:45:02 +1000171
Anton Vorontsov755d66b2012-05-26 06:20:22 -0700172 prz = ramoops_get_next_prz(cxt->przs, &cxt->dump_read_cnt,
173 cxt->max_dump_cnt, id, type,
174 PSTORE_TYPE_DMESG, 1);
175 if (!prz)
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700176 prz = ramoops_get_next_prz(&cxt->cprz, &cxt->console_read_cnt,
177 1, id, type, PSTORE_TYPE_CONSOLE, 0);
178 if (!prz)
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700179 prz = ramoops_get_next_prz(&cxt->fprz, &cxt->ftrace_read_cnt,
180 1, id, type, PSTORE_TYPE_FTRACE, 0);
181 if (!prz)
Anton Vorontsov755d66b2012-05-26 06:20:22 -0700182 return 0;
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700183
Ben Zhanga28726b2014-10-30 17:14:21 -0700184 if (!persistent_ram_old(prz))
185 return 0;
186
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700187 size = persistent_ram_old_size(prz);
Ben Zhanga28726b2014-10-30 17:14:21 -0700188 header_length = ramoops_read_kmsg_hdr(persistent_ram_old(prz), time,
189 compressed);
190 size -= header_length;
Arve Hjønnevågbd08ec32012-12-05 21:19:51 -0800191
192 /* ECC correction notice */
193 ecc_notice_size = persistent_ram_ecc_string(prz, NULL, 0);
194
195 *buf = kmalloc(size + ecc_notice_size + 1, GFP_KERNEL);
Kees Cook9ba80d92012-05-03 15:45:02 +1000196 if (*buf == NULL)
197 return -ENOMEM;
Kees Cook9ba80d92012-05-03 15:45:02 +1000198
Ben Zhanga28726b2014-10-30 17:14:21 -0700199 memcpy(*buf, (char *)persistent_ram_old(prz) + header_length, size);
Arve Hjønnevågbd08ec32012-12-05 21:19:51 -0800200 persistent_ram_ecc_string(prz, *buf + size, ecc_notice_size + 1);
201
202 return size + ecc_notice_size;
Kees Cook9ba80d92012-05-03 15:45:02 +1000203}
204
Aruna Balakrishnaiah3f8f80f2013-08-16 13:58:00 -0700205static size_t ramoops_write_kmsg_hdr(struct persistent_ram_zone *prz,
206 bool compressed)
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700207{
208 char *hdr;
Kees Cook1e817fb2012-11-19 10:26:16 -0800209 struct timespec timestamp;
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700210 size_t len;
211
Kees Cook1e817fb2012-11-19 10:26:16 -0800212 /* Report zeroed timestamp if called before timekeeping has resumed. */
213 if (__getnstimeofday(&timestamp)) {
214 timestamp.tv_sec = 0;
215 timestamp.tv_nsec = 0;
216 }
Aruna Balakrishnaiah3f8f80f2013-08-16 13:58:00 -0700217 hdr = kasprintf(GFP_ATOMIC, RAMOOPS_KERNMSG_HDR "%lu.%lu-%c\n",
218 (long)timestamp.tv_sec, (long)(timestamp.tv_nsec / 1000),
219 compressed ? 'C' : 'D');
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700220 WARN_ON_ONCE(!hdr);
221 len = hdr ? strlen(hdr) : 0;
222 persistent_ram_write(prz, hdr, len);
223 kfree(hdr);
224
225 return len;
226}
227
Anton Vorontsov24203032012-07-17 19:49:37 -0700228static int notrace ramoops_pstore_write_buf(enum pstore_type_id type,
229 enum kmsg_dump_reason reason,
230 u64 *id, unsigned int part,
Aruna Balakrishnaiah6bbbca72013-06-27 14:02:56 +0530231 const char *buf,
Aruna Balakrishnaiahb3b515b2013-08-16 13:52:47 -0700232 bool compressed, size_t size,
Anton Vorontsov24203032012-07-17 19:49:37 -0700233 struct pstore_info *psi)
Kees Cook9ba80d92012-05-03 15:45:02 +1000234{
Kees Cook9ba80d92012-05-03 15:45:02 +1000235 struct ramoops_context *cxt = psi->data;
Arve Hjønnevågc6289372012-12-11 17:49:24 -0800236 struct persistent_ram_zone *prz;
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700237 size_t hlen;
Kees Cook9ba80d92012-05-03 15:45:02 +1000238
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700239 if (type == PSTORE_TYPE_CONSOLE) {
240 if (!cxt->cprz)
241 return -ENOMEM;
Anton Vorontsovc2b71132012-07-09 17:10:43 -0700242 persistent_ram_write(cxt->cprz, buf, size);
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700243 return 0;
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700244 } else if (type == PSTORE_TYPE_FTRACE) {
245 if (!cxt->fprz)
246 return -ENOMEM;
247 persistent_ram_write(cxt->fprz, buf, size);
248 return 0;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700249 }
250
Kees Cook9ba80d92012-05-03 15:45:02 +1000251 if (type != PSTORE_TYPE_DMESG)
252 return -EINVAL;
253
254 /* Out of the various dmesg dump types, ramoops is currently designed
255 * to only store crash logs, rather than storing general kernel logs.
256 */
Seiji Aguchifc2d5572011-01-12 16:59:29 -0800257 if (reason != KMSG_DUMP_OOPS &&
WANG Conga3dd3322012-01-12 17:20:11 -0800258 reason != KMSG_DUMP_PANIC)
Kees Cook9ba80d92012-05-03 15:45:02 +1000259 return -EINVAL;
Seiji Aguchifc2d5572011-01-12 16:59:29 -0800260
Kees Cook9ba80d92012-05-03 15:45:02 +1000261 /* Skip Oopes when configured to do so. */
Sergiu Iordache6b4d2a22011-07-26 16:08:58 -0700262 if (reason == KMSG_DUMP_OOPS && !cxt->dump_oops)
Kees Cook9ba80d92012-05-03 15:45:02 +1000263 return -EINVAL;
264
265 /* Explicitly only take the first part of any new crash.
266 * If our buffer is larger than kmsg_bytes, this can never happen,
267 * and if our buffer is smaller than kmsg_bytes, we don't want the
268 * report split across multiple records.
269 */
270 if (part != 1)
271 return -ENOSPC;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700272
Arve Hjønnevågc6289372012-12-11 17:49:24 -0800273 if (!cxt->przs)
274 return -ENOSPC;
275
276 prz = cxt->przs[cxt->dump_write_cnt];
277
Aruna Balakrishnaiah3f8f80f2013-08-16 13:58:00 -0700278 hlen = ramoops_write_kmsg_hdr(prz, compressed);
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700279 if (size + hlen > prz->buffer_size)
280 size = prz->buffer_size - hlen;
Anton Vorontsovc2b71132012-07-09 17:10:43 -0700281 persistent_ram_write(prz, buf, size);
Marco Stornelli56d611a2010-05-26 14:43:54 -0700282
Anton Vorontsovcac2eb72012-05-26 06:20:20 -0700283 cxt->dump_write_cnt = (cxt->dump_write_cnt + 1) % cxt->max_dump_cnt;
Kees Cook9ba80d92012-05-03 15:45:02 +1000284
285 return 0;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700286}
287
Seiji Aguchi755d4fe2012-11-26 16:07:44 -0800288static int ramoops_pstore_erase(enum pstore_type_id type, u64 id, int count,
Seiji Aguchia9efd392012-11-14 20:27:28 +0000289 struct timespec time, struct pstore_info *psi)
Kees Cook9ba80d92012-05-03 15:45:02 +1000290{
Kees Cook9ba80d92012-05-03 15:45:02 +1000291 struct ramoops_context *cxt = psi->data;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700292 struct persistent_ram_zone *prz;
Kees Cook9ba80d92012-05-03 15:45:02 +1000293
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700294 switch (type) {
295 case PSTORE_TYPE_DMESG:
296 if (id >= cxt->max_dump_cnt)
297 return -EINVAL;
298 prz = cxt->przs[id];
299 break;
300 case PSTORE_TYPE_CONSOLE:
301 prz = cxt->cprz;
302 break;
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700303 case PSTORE_TYPE_FTRACE:
304 prz = cxt->fprz;
305 break;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700306 default:
Kees Cook9ba80d92012-05-03 15:45:02 +1000307 return -EINVAL;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700308 }
Kees Cook9ba80d92012-05-03 15:45:02 +1000309
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700310 persistent_ram_free_old(prz);
311 persistent_ram_zap(prz);
Kees Cook9ba80d92012-05-03 15:45:02 +1000312
313 return 0;
314}
315
316static struct ramoops_context oops_cxt = {
317 .pstore = {
318 .owner = THIS_MODULE,
319 .name = "ramoops",
320 .open = ramoops_pstore_open,
321 .read = ramoops_pstore_read,
Anton Vorontsovc2b71132012-07-09 17:10:43 -0700322 .write_buf = ramoops_pstore_write_buf,
Kees Cook9ba80d92012-05-03 15:45:02 +1000323 .erase = ramoops_pstore_erase,
324 },
325};
326
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700327static void ramoops_free_przs(struct ramoops_context *cxt)
328{
329 int i;
330
Liu ShuoX34f0ec82014-03-17 14:07:00 -0700331 cxt->max_dump_cnt = 0;
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700332 if (!cxt->przs)
333 return;
334
Anton Vorontsov90b58d92012-06-18 19:15:51 -0700335 for (i = 0; !IS_ERR_OR_NULL(cxt->przs[i]); i++)
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700336 persistent_ram_free(cxt->przs[i]);
337 kfree(cxt->przs);
338}
339
Greg Kroah-Hartmanf568f6c2012-12-21 15:02:05 -0800340static int ramoops_init_przs(struct device *dev, struct ramoops_context *cxt,
341 phys_addr_t *paddr, size_t dump_mem_sz)
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700342{
343 int err = -ENOMEM;
344 int i;
345
346 if (!cxt->record_size)
347 return 0;
348
Arve Hjønnevågc6289372012-12-11 17:49:24 -0800349 if (*paddr + dump_mem_sz - cxt->phys_addr > cxt->size) {
350 dev_err(dev, "no room for dumps\n");
351 return -ENOMEM;
352 }
353
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700354 cxt->max_dump_cnt = dump_mem_sz / cxt->record_size;
355 if (!cxt->max_dump_cnt)
356 return -ENOMEM;
357
358 cxt->przs = kzalloc(sizeof(*cxt->przs) * cxt->max_dump_cnt,
359 GFP_KERNEL);
360 if (!cxt->przs) {
361 dev_err(dev, "failed to initialize a prz array for dumps\n");
Liu ShuoX34f0ec82014-03-17 14:07:00 -0700362 goto fail_prz;
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700363 }
364
365 for (i = 0; i < cxt->max_dump_cnt; i++) {
366 size_t sz = cxt->record_size;
367
Arve Hjønnevågc31ad082012-05-22 16:33:23 -0700368 cxt->przs[i] = persistent_ram_new(*paddr, sz, 0,
369 &cxt->ecc_info);
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700370 if (IS_ERR(cxt->przs[i])) {
371 err = PTR_ERR(cxt->przs[i]);
372 dev_err(dev, "failed to request mem region (0x%zx@0x%llx): %d\n",
373 sz, (unsigned long long)*paddr, err);
374 goto fail_prz;
375 }
376 *paddr += sz;
377 }
378
379 return 0;
380fail_prz:
381 ramoops_free_przs(cxt);
382 return err;
383}
384
Greg Kroah-Hartmanf568f6c2012-12-21 15:02:05 -0800385static int ramoops_init_prz(struct device *dev, struct ramoops_context *cxt,
386 struct persistent_ram_zone **prz,
387 phys_addr_t *paddr, size_t sz, u32 sig)
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700388{
389 if (!sz)
390 return 0;
391
Arve Hjønnevågc6289372012-12-11 17:49:24 -0800392 if (*paddr + sz - cxt->phys_addr > cxt->size) {
393 dev_err(dev, "no room for mem region (0x%zx@0x%llx) in (0x%lx@0x%llx)\n",
394 sz, (unsigned long long)*paddr,
395 cxt->size, (unsigned long long)cxt->phys_addr);
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700396 return -ENOMEM;
Arve Hjønnevågc6289372012-12-11 17:49:24 -0800397 }
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700398
Arve Hjønnevågc31ad082012-05-22 16:33:23 -0700399 *prz = persistent_ram_new(*paddr, sz, sig, &cxt->ecc_info);
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700400 if (IS_ERR(*prz)) {
401 int err = PTR_ERR(*prz);
402
403 dev_err(dev, "failed to request mem region (0x%zx@0x%llx): %d\n",
404 sz, (unsigned long long)*paddr, err);
405 return err;
406 }
407
408 persistent_ram_zap(*prz);
409
410 *paddr += sz;
411
412 return 0;
413}
414
Greg Kroah-Hartmanf568f6c2012-12-21 15:02:05 -0800415static int ramoops_probe(struct platform_device *pdev)
Marco Stornelli56d611a2010-05-26 14:43:54 -0700416{
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700417 struct device *dev = &pdev->dev;
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700418 struct ramoops_platform_data *pdata = pdev->dev.platform_data;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700419 struct ramoops_context *cxt = &oops_cxt;
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700420 size_t dump_mem_sz;
421 phys_addr_t paddr;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700422 int err = -EINVAL;
423
Kees Cook9ba80d92012-05-03 15:45:02 +1000424 /* Only a single ramoops area allowed at a time, so fail extra
425 * probes.
426 */
Anton Vorontsovcac2eb72012-05-26 06:20:20 -0700427 if (cxt->max_dump_cnt)
Kees Cook9ba80d92012-05-03 15:45:02 +1000428 goto fail_out;
429
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700430 if (!pdata->mem_size || (!pdata->record_size && !pdata->console_size &&
431 !pdata->ftrace_size)) {
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700432 pr_err("The memory size and the record/console size must be "
Sergiu Iordache3e5c4fa2011-07-26 16:08:59 -0700433 "non-zero\n");
Kees Cook9ba80d92012-05-03 15:45:02 +1000434 goto fail_out;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700435 }
436
Maxime Bizon3bd11cf2013-08-30 18:06:41 +0200437 if (pdata->record_size && !is_power_of_2(pdata->record_size))
Maxime Bizonb042e472012-10-22 11:19:28 +0200438 pdata->record_size = rounddown_pow_of_two(pdata->record_size);
Maxime Bizon3bd11cf2013-08-30 18:06:41 +0200439 if (pdata->console_size && !is_power_of_2(pdata->console_size))
Maxime Bizonb042e472012-10-22 11:19:28 +0200440 pdata->console_size = rounddown_pow_of_two(pdata->console_size);
Maxime Bizon3bd11cf2013-08-30 18:06:41 +0200441 if (pdata->ftrace_size && !is_power_of_2(pdata->ftrace_size))
Maxime Bizonb042e472012-10-22 11:19:28 +0200442 pdata->ftrace_size = rounddown_pow_of_two(pdata->ftrace_size);
Marco Stornelli56d611a2010-05-26 14:43:54 -0700443
Marco Stornelli13aefd72011-07-26 16:08:57 -0700444 cxt->size = pdata->mem_size;
445 cxt->phys_addr = pdata->mem_address;
Sergiu Iordache3e5c4fa2011-07-26 16:08:59 -0700446 cxt->record_size = pdata->record_size;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700447 cxt->console_size = pdata->console_size;
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700448 cxt->ftrace_size = pdata->ftrace_size;
Sergiu Iordache6b4d2a22011-07-26 16:08:58 -0700449 cxt->dump_oops = pdata->dump_oops;
Arve Hjønnevågc31ad082012-05-22 16:33:23 -0700450 cxt->ecc_info = pdata->ecc_info;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700451
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700452 paddr = cxt->phys_addr;
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700453
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700454 dump_mem_sz = cxt->size - cxt->console_size - cxt->ftrace_size;
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700455 err = ramoops_init_przs(dev, cxt, &paddr, dump_mem_sz);
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700456 if (err)
457 goto fail_out;
458
Anton Vorontsovcbe7cbf2012-07-17 12:11:12 -0700459 err = ramoops_init_prz(dev, cxt, &cxt->cprz, &paddr,
460 cxt->console_size, 0);
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700461 if (err)
462 goto fail_init_cprz;
463
Anton Vorontsovcbe7cbf2012-07-17 12:11:12 -0700464 err = ramoops_init_prz(dev, cxt, &cxt->fprz, &paddr, cxt->ftrace_size,
465 LINUX_VERSION_CODE);
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700466 if (err)
467 goto fail_init_fprz;
468
469 if (!cxt->przs && !cxt->cprz && !cxt->fprz) {
Randy Dunlap04271932012-08-03 17:02:48 -0700470 pr_err("memory size too small, minimum is %zu\n",
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700471 cxt->console_size + cxt->record_size +
472 cxt->ftrace_size);
Wei Yongjun47110b82013-05-07 19:39:20 +0800473 err = -EINVAL;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700474 goto fail_cnt;
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700475 }
476
Kees Cook9ba80d92012-05-03 15:45:02 +1000477 cxt->pstore.data = cxt;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700478 /*
Anton Vorontsova384f6412012-07-19 15:47:11 -0700479 * Console can handle any buffer size, so prefer LOG_LINE_MAX. If we
480 * have to handle dumps, we must have at least record_size buffer. And
481 * for ftrace, bufsize is irrelevant (if bufsize is 0, buf will be
482 * ZERO_SIZE_PTR).
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700483 */
Anton Vorontsova384f6412012-07-19 15:47:11 -0700484 if (cxt->console_size)
485 cxt->pstore.bufsize = 1024; /* LOG_LINE_MAX */
486 cxt->pstore.bufsize = max(cxt->record_size, cxt->pstore.bufsize);
Kees Cook9ba80d92012-05-03 15:45:02 +1000487 cxt->pstore.buf = kmalloc(cxt->pstore.bufsize, GFP_KERNEL);
488 spin_lock_init(&cxt->pstore.buf_lock);
489 if (!cxt->pstore.buf) {
490 pr_err("cannot allocate pstore buffer\n");
Wei Yongjun47110b82013-05-07 19:39:20 +0800491 err = -ENOMEM;
Kees Cook9ba80d92012-05-03 15:45:02 +1000492 goto fail_clear;
493 }
494
Kees Cook9ba80d92012-05-03 15:45:02 +1000495 err = pstore_register(&cxt->pstore);
Marco Stornelli56d611a2010-05-26 14:43:54 -0700496 if (err) {
Kees Cook9ba80d92012-05-03 15:45:02 +1000497 pr_err("registering with pstore failed\n");
Anton Vorontsov896fc1f2012-05-17 00:15:18 -0700498 goto fail_buf;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700499 }
500
Kees Cookc7552012012-01-12 17:20:59 -0800501 /*
502 * Update the module parameter variables as well so they are visible
503 * through /sys/module/ramoops/parameters/
504 */
505 mem_size = pdata->mem_size;
506 mem_address = pdata->mem_address;
507 record_size = pdata->record_size;
508 dump_oops = pdata->dump_oops;
509
Arve Hjønnevågc31ad082012-05-22 16:33:23 -0700510 pr_info("attached 0x%lx@0x%llx, ecc: %d/%d\n",
Randy Dunlapd109a672012-05-03 15:45:03 +1000511 cxt->size, (unsigned long long)cxt->phys_addr,
Arve Hjønnevågc31ad082012-05-22 16:33:23 -0700512 cxt->ecc_info.ecc_size, cxt->ecc_info.block_size);
Kees Cook9ba80d92012-05-03 15:45:02 +1000513
Marco Stornelli56d611a2010-05-26 14:43:54 -0700514 return 0;
515
Kees Cook9ba80d92012-05-03 15:45:02 +1000516fail_buf:
517 kfree(cxt->pstore.buf);
518fail_clear:
519 cxt->pstore.bufsize = 0;
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700520fail_cnt:
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700521 kfree(cxt->fprz);
522fail_init_fprz:
Anton Vorontsovb5d38e92012-05-26 06:20:23 -0700523 kfree(cxt->cprz);
524fail_init_cprz:
Anton Vorontsovf4c5d242012-05-26 06:20:21 -0700525 ramoops_free_przs(cxt);
Kees Cook9ba80d92012-05-03 15:45:02 +1000526fail_out:
Marco Stornelli56d611a2010-05-26 14:43:54 -0700527 return err;
528}
529
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700530static int __exit ramoops_remove(struct platform_device *pdev)
Marco Stornelli56d611a2010-05-26 14:43:54 -0700531{
Kees Cook9ba80d92012-05-03 15:45:02 +1000532#if 0
533 /* TODO(kees): We cannot unload ramoops since pstore doesn't support
534 * unregistering yet.
535 */
Marco Stornelli56d611a2010-05-26 14:43:54 -0700536 struct ramoops_context *cxt = &oops_cxt;
537
Marco Stornelli56d611a2010-05-26 14:43:54 -0700538 iounmap(cxt->virt_addr);
539 release_mem_region(cxt->phys_addr, cxt->size);
Anton Vorontsovcac2eb72012-05-26 06:20:20 -0700540 cxt->max_dump_cnt = 0;
Kees Cook9ba80d92012-05-03 15:45:02 +1000541
542 /* TODO(kees): When pstore supports unregistering, call it here. */
543 kfree(cxt->pstore.buf);
544 cxt->pstore.bufsize = 0;
545
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700546 return 0;
Kees Cook9ba80d92012-05-03 15:45:02 +1000547#endif
548 return -EBUSY;
Marco Stornelli56d611a2010-05-26 14:43:54 -0700549}
550
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700551static struct platform_driver ramoops_driver = {
Anton Vorontsov924d3712012-06-18 19:15:50 -0700552 .probe = ramoops_probe,
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700553 .remove = __exit_p(ramoops_remove),
554 .driver = {
555 .name = "ramoops",
556 .owner = THIS_MODULE,
557 },
558};
559
Anton Vorontsov924d3712012-06-18 19:15:50 -0700560static void ramoops_register_dummy(void)
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700561{
Anton Vorontsov924d3712012-06-18 19:15:50 -0700562 if (!mem_size)
563 return;
Marco Stornelli13aefd72011-07-26 16:08:57 -0700564
Anton Vorontsov924d3712012-06-18 19:15:50 -0700565 pr_info("using module parameters\n");
566
567 dummy_data = kzalloc(sizeof(*dummy_data), GFP_KERNEL);
568 if (!dummy_data) {
569 pr_info("could not allocate pdata\n");
570 return;
Marco Stornelli13aefd72011-07-26 16:08:57 -0700571 }
572
Anton Vorontsov924d3712012-06-18 19:15:50 -0700573 dummy_data->mem_size = mem_size;
574 dummy_data->mem_address = mem_address;
575 dummy_data->record_size = record_size;
576 dummy_data->console_size = ramoops_console_size;
Anton Vorontsova694d1b2012-07-09 17:10:44 -0700577 dummy_data->ftrace_size = ramoops_ftrace_size;
Anton Vorontsov924d3712012-06-18 19:15:50 -0700578 dummy_data->dump_oops = dump_oops;
Anton Vorontsov5ca5d4e2012-07-09 17:03:19 -0700579 /*
580 * For backwards compatibility ramoops.ecc=1 means 16 bytes ECC
581 * (using 1 byte for ECC isn't much of use anyway).
582 */
Arve Hjønnevågc31ad082012-05-22 16:33:23 -0700583 dummy_data->ecc_info.ecc_size = ramoops_ecc == 1 ? 16 : ramoops_ecc;
Anton Vorontsov924d3712012-06-18 19:15:50 -0700584
585 dummy = platform_device_register_data(NULL, "ramoops", -1,
586 dummy_data, sizeof(struct ramoops_platform_data));
587 if (IS_ERR(dummy)) {
588 pr_info("could not create platform device: %ld\n",
589 PTR_ERR(dummy));
590 }
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700591}
592
Anton Vorontsov924d3712012-06-18 19:15:50 -0700593static int __init ramoops_init(void)
594{
595 ramoops_register_dummy();
596 return platform_driver_register(&ramoops_driver);
597}
598postcore_initcall(ramoops_init);
599
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700600static void __exit ramoops_exit(void)
601{
602 platform_driver_unregister(&ramoops_driver);
Jovi Zhangb4a871b2012-08-20 14:58:26 +0800603 platform_device_unregister(dummy);
Marco Stornelli13aefd72011-07-26 16:08:57 -0700604 kfree(dummy_data);
Kyungmin Parkc3b92ce2010-10-27 15:34:52 -0700605}
Marco Stornelli56d611a2010-05-26 14:43:54 -0700606module_exit(ramoops_exit);
607
608MODULE_LICENSE("GPL");
609MODULE_AUTHOR("Marco Stornelli <marco.stornelli@gmail.com>");
610MODULE_DESCRIPTION("RAM Oops/Panic logger/driver");