blob: 9f25111fd55934973be421aca4ca63e41dc74da3 [file] [log] [blame]
Richard Purdie4b23aff2007-05-29 13:31:42 +01001/*
2 * MTD Oops/Panic logger
3 *
David Woodhousea1452a32010-08-08 20:58:20 +01004 * Copyright © 2007 Nokia Corporation. All rights reserved.
Richard Purdie4b23aff2007-05-29 13:31:42 +01005 *
6 * Author: Richard Purdie <rpurdie@openedhand.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 *
22 */
23
24#include <linux/kernel.h>
25#include <linux/module.h>
26#include <linux/console.h>
27#include <linux/vmalloc.h>
28#include <linux/workqueue.h>
29#include <linux/sched.h>
30#include <linux/wait.h>
Richard Purdie621e4f82008-02-06 10:17:50 +000031#include <linux/delay.h>
David Woodhousef9f7dd22008-02-07 10:50:57 +000032#include <linux/interrupt.h>
Richard Purdie4b23aff2007-05-29 13:31:42 +010033#include <linux/mtd/mtd.h>
Simon Kagstrom2e386e42009-11-03 14:19:03 +010034#include <linux/kmsg_dump.h>
Richard Purdie4b23aff2007-05-29 13:31:42 +010035
Simon Kagstrom1114e3d2009-11-03 08:08:41 +020036/* Maximum MTD partition size */
37#define MTDOOPS_MAX_MTD_SIZE (8 * 1024 * 1024)
38
Richard Purdief0482ee2008-07-26 09:22:45 +010039#define MTDOOPS_KERNMSG_MAGIC 0x5d005d00
Simon Kagstrom2e386e42009-11-03 14:19:03 +010040#define MTDOOPS_HEADER_SIZE 8
Simon Kagstrom9507b0c2009-10-29 13:41:19 +010041
42static unsigned long record_size = 4096;
43module_param(record_size, ulong, 0400);
44MODULE_PARM_DESC(record_size,
45 "record size for MTD OOPS pages in bytes (default 4096)");
Richard Purdie4b23aff2007-05-29 13:31:42 +010046
Simon Kagstrom2e386e42009-11-03 14:19:03 +010047static char mtddev[80];
48module_param_string(mtddev, mtddev, 80, 0400);
49MODULE_PARM_DESC(mtddev,
50 "name or index number of the MTD device to use");
51
52static int dump_oops = 1;
53module_param(dump_oops, int, 0600);
54MODULE_PARM_DESC(dump_oops,
55 "set to 1 to dump oopses, 0 to only dump panics (default 1)");
56
Adrian Bunk7903cba2008-04-18 13:44:11 -070057static struct mtdoops_context {
Simon Kagstrom2e386e42009-11-03 14:19:03 +010058 struct kmsg_dumper dump;
59
Richard Purdie4b23aff2007-05-29 13:31:42 +010060 int mtd_index;
Richard Purdie6ce0a8562008-01-29 11:27:11 +000061 struct work_struct work_erase;
62 struct work_struct work_write;
Richard Purdie4b23aff2007-05-29 13:31:42 +010063 struct mtd_info *mtd;
64 int oops_pages;
65 int nextpage;
66 int nextcount;
Simon Kagstrombe957452009-10-29 13:41:11 +010067 unsigned long *oops_page_used;
Richard Purdie4b23aff2007-05-29 13:31:42 +010068
69 void *oops_buf;
Richard Purdie4b23aff2007-05-29 13:31:42 +010070} oops_cxt;
71
Simon Kagstrombe957452009-10-29 13:41:11 +010072static void mark_page_used(struct mtdoops_context *cxt, int page)
73{
74 set_bit(page, cxt->oops_page_used);
75}
76
77static void mark_page_unused(struct mtdoops_context *cxt, int page)
78{
79 clear_bit(page, cxt->oops_page_used);
80}
81
82static int page_is_used(struct mtdoops_context *cxt, int page)
83{
84 return test_bit(page, cxt->oops_page_used);
85}
86
Simon Kagstrombe957452009-10-29 13:41:11 +010087static int mtdoops_erase_block(struct mtdoops_context *cxt, int offset)
Richard Purdie4b23aff2007-05-29 13:31:42 +010088{
Simon Kagstrombe957452009-10-29 13:41:11 +010089 struct mtd_info *mtd = cxt->mtd;
90 u32 start_page_offset = mtd_div_by_eb(offset, mtd) * mtd->erasesize;
Simon Kagstrom9507b0c2009-10-29 13:41:19 +010091 u32 start_page = start_page_offset / record_size;
92 u32 erase_pages = mtd->erasesize / record_size;
Richard Purdie4b23aff2007-05-29 13:31:42 +010093 struct erase_info erase;
Richard Purdie4b23aff2007-05-29 13:31:42 +010094 int ret;
Simon Kagstrombe957452009-10-29 13:41:11 +010095 int page;
Richard Purdie4b23aff2007-05-29 13:31:42 +010096
Richard Purdie4b23aff2007-05-29 13:31:42 +010097 erase.addr = offset;
Richard Purdie79dcd8e2008-01-29 10:25:55 +000098 erase.len = mtd->erasesize;
Richard Purdie4b23aff2007-05-29 13:31:42 +010099
Artem Bityutskiy7e1f0dc2011-12-23 15:25:39 +0200100 ret = mtd_erase(mtd, &erase);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100101 if (ret) {
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300102 printk(KERN_WARNING "mtdoops: erase of region [0x%llx, 0x%llx] on \"%s\" failed\n",
103 (unsigned long long)erase.addr,
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100104 (unsigned long long)erase.len, mtddev);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100105 return ret;
106 }
107
Simon Kagstrombe957452009-10-29 13:41:11 +0100108 /* Mark pages as unused */
109 for (page = start_page; page < start_page + erase_pages; page++)
110 mark_page_unused(cxt, page);
111
Richard Purdie4b23aff2007-05-29 13:31:42 +0100112 return 0;
113}
114
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000115static void mtdoops_inc_counter(struct mtdoops_context *cxt)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100116{
Richard Purdie4b23aff2007-05-29 13:31:42 +0100117 cxt->nextpage++;
Richard Purdieecd5b312008-07-26 09:17:41 +0100118 if (cxt->nextpage >= cxt->oops_pages)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100119 cxt->nextpage = 0;
120 cxt->nextcount++;
121 if (cxt->nextcount == 0xffffffff)
122 cxt->nextcount = 0;
123
Simon Kagstrombe957452009-10-29 13:41:11 +0100124 if (page_is_used(cxt, cxt->nextpage)) {
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000125 schedule_work(&cxt->work_erase);
126 return;
127 }
Richard Purdie4b23aff2007-05-29 13:31:42 +0100128
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300129 printk(KERN_DEBUG "mtdoops: ready %d, %d (no erase)\n",
130 cxt->nextpage, cxt->nextcount);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100131}
132
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000133/* Scheduled work - when we can't proceed without erasing a block */
134static void mtdoops_workfunc_erase(struct work_struct *work)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100135{
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000136 struct mtdoops_context *cxt =
137 container_of(work, struct mtdoops_context, work_erase);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100138 struct mtd_info *mtd = cxt->mtd;
139 int i = 0, j, ret, mod;
140
141 /* We were unregistered */
142 if (!mtd)
143 return;
144
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100145 mod = (cxt->nextpage * record_size) % mtd->erasesize;
Richard Purdie4b23aff2007-05-29 13:31:42 +0100146 if (mod != 0) {
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100147 cxt->nextpage = cxt->nextpage + ((mtd->erasesize - mod) / record_size);
Richard Purdieecd5b312008-07-26 09:17:41 +0100148 if (cxt->nextpage >= cxt->oops_pages)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100149 cxt->nextpage = 0;
150 }
151
Brian Norris9cb93fb2012-05-11 13:30:33 -0700152 while ((ret = mtd_block_isbad(mtd, cxt->nextpage * record_size)) > 0) {
Richard Purdie4b23aff2007-05-29 13:31:42 +0100153badblock:
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100154 printk(KERN_WARNING "mtdoops: bad block at %08lx\n",
155 cxt->nextpage * record_size);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100156 i++;
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100157 cxt->nextpage = cxt->nextpage + (mtd->erasesize / record_size);
Richard Purdieecd5b312008-07-26 09:17:41 +0100158 if (cxt->nextpage >= cxt->oops_pages)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100159 cxt->nextpage = 0;
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100160 if (i == cxt->oops_pages / (mtd->erasesize / record_size)) {
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300161 printk(KERN_ERR "mtdoops: all blocks bad!\n");
Richard Purdie4b23aff2007-05-29 13:31:42 +0100162 return;
163 }
164 }
165
Brian Norris9cb93fb2012-05-11 13:30:33 -0700166 if (ret < 0) {
167 printk(KERN_ERR "mtdoops: mtd_block_isbad failed, aborting\n");
168 return;
169 }
170
Richard Purdie4b23aff2007-05-29 13:31:42 +0100171 for (j = 0, ret = -1; (j < 3) && (ret < 0); j++)
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100172 ret = mtdoops_erase_block(cxt, cxt->nextpage * record_size);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100173
Richard Purdie2986bd22008-01-29 11:27:09 +0000174 if (ret >= 0) {
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300175 printk(KERN_DEBUG "mtdoops: ready %d, %d\n",
176 cxt->nextpage, cxt->nextcount);
Richard Purdie2986bd22008-01-29 11:27:09 +0000177 return;
Richard Purdie4b23aff2007-05-29 13:31:42 +0100178 }
179
Artem Bityutskiybb4a0982012-02-03 11:23:57 +0200180 if (ret == -EIO) {
Artem Bityutskiy5942ddb2011-12-23 19:37:38 +0200181 ret = mtd_block_markbad(mtd, cxt->nextpage * record_size);
Artem Bityutskiybb4a0982012-02-03 11:23:57 +0200182 if (ret < 0 && ret != -EOPNOTSUPP) {
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300183 printk(KERN_ERR "mtdoops: block_markbad failed, aborting\n");
Richard Purdie2986bd22008-01-29 11:27:09 +0000184 return;
185 }
186 }
187 goto badblock;
Richard Purdie4b23aff2007-05-29 13:31:42 +0100188}
189
Richard Purdie621e4f82008-02-06 10:17:50 +0000190static void mtdoops_write(struct mtdoops_context *cxt, int panic)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100191{
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000192 struct mtd_info *mtd = cxt->mtd;
193 size_t retlen;
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100194 u32 *hdr;
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000195 int ret;
Richard Purdie4b23aff2007-05-29 13:31:42 +0100196
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100197 /* Add mtdoops header to the buffer */
198 hdr = cxt->oops_buf;
199 hdr[0] = cxt->nextcount;
200 hdr[1] = MTDOOPS_KERNMSG_MAGIC;
Richard Purdie4b23aff2007-05-29 13:31:42 +0100201
Artem Bityutskiy016c1292011-12-28 17:27:18 +0200202 if (panic) {
Artem Bityutskiy7ae79d72011-12-23 18:03:17 +0200203 ret = mtd_panic_write(mtd, cxt->nextpage * record_size,
204 record_size, &retlen, cxt->oops_buf);
Artem Bityutskiy016c1292011-12-28 17:27:18 +0200205 if (ret == -EOPNOTSUPP) {
206 printk(KERN_ERR "mtdoops: Cannot write from panic without panic_write\n");
207 return;
208 }
209 } else
Artem Bityutskiyeda95cb2011-12-23 17:35:41 +0200210 ret = mtd_write(mtd, cxt->nextpage * record_size,
211 record_size, &retlen, cxt->oops_buf);
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000212
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100213 if (retlen != record_size || ret < 0)
214 printk(KERN_ERR "mtdoops: write failure at %ld (%td of %ld written), error %d\n",
215 cxt->nextpage * record_size, retlen, record_size, ret);
Simon Kagstrombe957452009-10-29 13:41:11 +0100216 mark_page_used(cxt, cxt->nextpage);
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100217 memset(cxt->oops_buf, 0xff, record_size);
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000218
219 mtdoops_inc_counter(cxt);
Richard Purdie621e4f82008-02-06 10:17:50 +0000220}
221
Richard Purdie621e4f82008-02-06 10:17:50 +0000222static void mtdoops_workfunc_write(struct work_struct *work)
223{
224 struct mtdoops_context *cxt =
225 container_of(work, struct mtdoops_context, work_write);
226
227 mtdoops_write(cxt, 0);
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300228}
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000229
230static void find_next_position(struct mtdoops_context *cxt)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100231{
232 struct mtd_info *mtd = cxt->mtd;
Richard Purdie2986bd22008-01-29 11:27:09 +0000233 int ret, page, maxpos = 0;
Richard Purdief0482ee2008-07-26 09:22:45 +0100234 u32 count[2], maxcount = 0xffffffff;
Richard Purdie4b23aff2007-05-29 13:31:42 +0100235 size_t retlen;
236
237 for (page = 0; page < cxt->oops_pages; page++) {
Artem Bityutskiybb4a0982012-02-03 11:23:57 +0200238 if (mtd_block_isbad(mtd, page * record_size))
Roman Tereshonkov3538c562011-12-02 15:07:17 +0200239 continue;
Simon Kagstrombe957452009-10-29 13:41:11 +0100240 /* Assume the page is used */
241 mark_page_used(cxt, page);
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200242 ret = mtd_read(mtd, page * record_size, MTDOOPS_HEADER_SIZE,
243 &retlen, (u_char *)&count[0]);
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100244 if (retlen != MTDOOPS_HEADER_SIZE ||
Brian Norrisd57f40542011-09-20 18:34:25 -0700245 (ret < 0 && !mtd_is_bitflip(ret))) {
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100246 printk(KERN_ERR "mtdoops: read failure at %ld (%td of %d read), err %d\n",
247 page * record_size, retlen,
248 MTDOOPS_HEADER_SIZE, ret);
Richard Purdie2986bd22008-01-29 11:27:09 +0000249 continue;
250 }
251
Simon Kagstrombe957452009-10-29 13:41:11 +0100252 if (count[0] == 0xffffffff && count[1] == 0xffffffff)
253 mark_page_unused(cxt, page);
Matthieu CASTETcd409c62012-10-19 17:29:33 +0200254 if (count[0] == 0xffffffff || count[1] != MTDOOPS_KERNMSG_MAGIC)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100255 continue;
256 if (maxcount == 0xffffffff) {
Richard Purdief0482ee2008-07-26 09:22:45 +0100257 maxcount = count[0];
Richard Purdie4b23aff2007-05-29 13:31:42 +0100258 maxpos = page;
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300259 } else if (count[0] < 0x40000000 && maxcount > 0xc0000000) {
Richard Purdief0482ee2008-07-26 09:22:45 +0100260 maxcount = count[0];
Richard Purdie4b23aff2007-05-29 13:31:42 +0100261 maxpos = page;
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300262 } else if (count[0] > maxcount && count[0] < 0xc0000000) {
Richard Purdief0482ee2008-07-26 09:22:45 +0100263 maxcount = count[0];
Richard Purdie4b23aff2007-05-29 13:31:42 +0100264 maxpos = page;
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300265 } else if (count[0] > maxcount && count[0] > 0xc0000000
266 && maxcount > 0x80000000) {
Richard Purdief0482ee2008-07-26 09:22:45 +0100267 maxcount = count[0];
Richard Purdie4b23aff2007-05-29 13:31:42 +0100268 maxpos = page;
269 }
270 }
271 if (maxcount == 0xffffffff) {
Matthieu CASTETcd409c62012-10-19 17:29:33 +0200272 cxt->nextpage = cxt->oops_pages - 1;
273 cxt->nextcount = 0;
Richard Purdie4b23aff2007-05-29 13:31:42 +0100274 }
Matthieu CASTETcd409c62012-10-19 17:29:33 +0200275 else {
276 cxt->nextpage = maxpos;
277 cxt->nextcount = maxcount;
278 }
Richard Purdie4b23aff2007-05-29 13:31:42 +0100279
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000280 mtdoops_inc_counter(cxt);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100281}
282
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100283static void mtdoops_do_dump(struct kmsg_dumper *dumper,
Kay Sieverse2ae7152012-06-15 14:07:51 +0200284 enum kmsg_dump_reason reason)
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100285{
286 struct mtdoops_context *cxt = container_of(dumper,
287 struct mtdoops_context, dump);
Seiji Aguchifc2d5572011-01-12 16:59:29 -0800288
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100289 /* Only dump oopses if dump_oops is set */
290 if (reason == KMSG_DUMP_OOPS && !dump_oops)
291 return;
292
Kay Sieverse2ae7152012-06-15 14:07:51 +0200293 kmsg_dump_get_buffer(dumper, true, cxt->oops_buf + MTDOOPS_HEADER_SIZE,
294 record_size - MTDOOPS_HEADER_SIZE, NULL);
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100295
296 /* Panics must be written immediately */
Artem Bityutskiy016c1292011-12-28 17:27:18 +0200297 if (reason != KMSG_DUMP_OOPS)
298 mtdoops_write(cxt, 1);
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100299
300 /* For other cases, schedule work to write it "nicely" */
301 schedule_work(&cxt->work_write);
302}
Richard Purdie4b23aff2007-05-29 13:31:42 +0100303
304static void mtdoops_notify_add(struct mtd_info *mtd)
305{
306 struct mtdoops_context *cxt = &oops_cxt;
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100307 u64 mtdoops_pages = div_u64(mtd->size, record_size);
308 int err;
Simon Kagstrombe957452009-10-29 13:41:11 +0100309
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100310 if (!strcmp(mtd->name, mtddev))
Adrian Huntere2a0f252009-02-16 18:21:35 +0200311 cxt->mtd_index = mtd->index;
312
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300313 if (mtd->index != cxt->mtd_index || cxt->mtd_index < 0)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100314 return;
315
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300316 if (mtd->size < mtd->erasesize * 2) {
317 printk(KERN_ERR "mtdoops: MTD partition %d not big enough for mtdoops\n",
318 mtd->index);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100319 return;
320 }
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100321 if (mtd->erasesize < record_size) {
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300322 printk(KERN_ERR "mtdoops: eraseblock size of MTD partition %d too small\n",
323 mtd->index);
Richard Purdie79dcd8e2008-01-29 10:25:55 +0000324 return;
325 }
Simon Kagstrom1114e3d2009-11-03 08:08:41 +0200326 if (mtd->size > MTDOOPS_MAX_MTD_SIZE) {
327 printk(KERN_ERR "mtdoops: mtd%d is too large (limit is %d MiB)\n",
328 mtd->index, MTDOOPS_MAX_MTD_SIZE / 1024 / 1024);
329 return;
330 }
331
Simon Kagstrombe957452009-10-29 13:41:11 +0100332 /* oops_page_used is a bit field */
333 cxt->oops_page_used = vmalloc(DIV_ROUND_UP(mtdoops_pages,
Roman Tereshonkov556f0632011-11-29 12:49:18 +0200334 BITS_PER_LONG) * sizeof(unsigned long));
Simon Kagstrombe957452009-10-29 13:41:11 +0100335 if (!cxt->oops_page_used) {
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100336 printk(KERN_ERR "mtdoops: could not allocate page array\n");
337 return;
338 }
339
Kay Sieverse2ae7152012-06-15 14:07:51 +0200340 cxt->dump.max_reason = KMSG_DUMP_OOPS;
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100341 cxt->dump.dump = mtdoops_do_dump;
342 err = kmsg_dump_register(&cxt->dump);
343 if (err) {
344 printk(KERN_ERR "mtdoops: registering kmsg dumper failed, error %d\n", err);
345 vfree(cxt->oops_page_used);
346 cxt->oops_page_used = NULL;
Simon Kagstrombe957452009-10-29 13:41:11 +0100347 return;
348 }
Simon Kagstrom1114e3d2009-11-03 08:08:41 +0200349
Richard Purdie4b23aff2007-05-29 13:31:42 +0100350 cxt->mtd = mtd;
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100351 cxt->oops_pages = (int)mtd->size / record_size;
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000352 find_next_position(cxt);
Richard Purdie79dcd8e2008-01-29 10:25:55 +0000353 printk(KERN_INFO "mtdoops: Attached to MTD device %d\n", mtd->index);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100354}
355
356static void mtdoops_notify_remove(struct mtd_info *mtd)
357{
358 struct mtdoops_context *cxt = &oops_cxt;
359
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300360 if (mtd->index != cxt->mtd_index || cxt->mtd_index < 0)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100361 return;
362
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100363 if (kmsg_dump_unregister(&cxt->dump) < 0)
364 printk(KERN_WARNING "mtdoops: could not unregister kmsg_dumper\n");
365
Richard Purdie4b23aff2007-05-29 13:31:42 +0100366 cxt->mtd = NULL;
Tejun Heo43829732012-08-20 14:51:24 -0700367 flush_work(&cxt->work_erase);
368 flush_work(&cxt->work_write);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100369}
370
Richard Purdie4b23aff2007-05-29 13:31:42 +0100371
372static struct mtd_notifier mtdoops_notifier = {
373 .add = mtdoops_notify_add,
374 .remove = mtdoops_notify_remove,
375};
376
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100377static int __init mtdoops_init(void)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100378{
379 struct mtdoops_context *cxt = &oops_cxt;
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100380 int mtd_index;
381 char *endp;
Richard Purdie4b23aff2007-05-29 13:31:42 +0100382
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100383 if (strlen(mtddev) == 0) {
384 printk(KERN_ERR "mtdoops: mtd device (mtddev=name/number) must be supplied\n");
385 return -EINVAL;
386 }
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100387 if ((record_size & 4095) != 0) {
388 printk(KERN_ERR "mtdoops: record_size must be a multiple of 4096\n");
389 return -EINVAL;
390 }
391 if (record_size < 4096) {
392 printk(KERN_ERR "mtdoops: record_size must be over 4096 bytes\n");
393 return -EINVAL;
394 }
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100395
396 /* Setup the MTD device to use */
Richard Purdie4b23aff2007-05-29 13:31:42 +0100397 cxt->mtd_index = -1;
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100398 mtd_index = simple_strtoul(mtddev, &endp, 0);
399 if (*endp == '\0')
400 cxt->mtd_index = mtd_index;
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100401
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100402 cxt->oops_buf = vmalloc(record_size);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100403 if (!cxt->oops_buf) {
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300404 printk(KERN_ERR "mtdoops: failed to allocate buffer workspace\n");
Richard Purdie4b23aff2007-05-29 13:31:42 +0100405 return -ENOMEM;
406 }
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100407 memset(cxt->oops_buf, 0xff, record_size);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100408
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000409 INIT_WORK(&cxt->work_erase, mtdoops_workfunc_erase);
410 INIT_WORK(&cxt->work_write, mtdoops_workfunc_write);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100411
Richard Purdie4b23aff2007-05-29 13:31:42 +0100412 register_mtd_user(&mtdoops_notifier);
413 return 0;
414}
415
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100416static void __exit mtdoops_exit(void)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100417{
418 struct mtdoops_context *cxt = &oops_cxt;
419
420 unregister_mtd_user(&mtdoops_notifier);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100421 vfree(cxt->oops_buf);
Simon Kagstrombe957452009-10-29 13:41:11 +0100422 vfree(cxt->oops_page_used);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100423}
424
425
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100426module_init(mtdoops_init);
427module_exit(mtdoops_exit);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100428
429MODULE_LICENSE("GPL");
430MODULE_AUTHOR("Richard Purdie <rpurdie@openedhand.com>");
431MODULE_DESCRIPTION("MTD Oops/Panic console logger/driver");