blob: 227df24387df5e2951bab272bc693c5dff696bc2 [file] [log] [blame]
Thomas Gleixner2b27bdc2019-05-29 16:57:50 -07001// SPDX-License-Identifier: GPL-2.0-only
Richard Purdie4b23aff2007-05-29 13:31:42 +01002/*
3 * MTD Oops/Panic logger
4 *
David Woodhousea1452a32010-08-08 20:58:20 +01005 * Copyright © 2007 Nokia Corporation. All rights reserved.
Richard Purdie4b23aff2007-05-29 13:31:42 +01006 *
7 * Author: Richard Purdie <rpurdie@openedhand.com>
Richard Purdie4b23aff2007-05-29 13:31:42 +01008 */
9
10#include <linux/kernel.h>
11#include <linux/module.h>
12#include <linux/console.h>
13#include <linux/vmalloc.h>
14#include <linux/workqueue.h>
15#include <linux/sched.h>
16#include <linux/wait.h>
Richard Purdie621e4f82008-02-06 10:17:50 +000017#include <linux/delay.h>
David Woodhousef9f7dd22008-02-07 10:50:57 +000018#include <linux/interrupt.h>
Richard Purdie4b23aff2007-05-29 13:31:42 +010019#include <linux/mtd/mtd.h>
Simon Kagstrom2e386e42009-11-03 14:19:03 +010020#include <linux/kmsg_dump.h>
Richard Purdie4b23aff2007-05-29 13:31:42 +010021
Simon Kagstrom1114e3d2009-11-03 08:08:41 +020022/* Maximum MTD partition size */
23#define MTDOOPS_MAX_MTD_SIZE (8 * 1024 * 1024)
24
Richard Purdief0482ee2008-07-26 09:22:45 +010025#define MTDOOPS_KERNMSG_MAGIC 0x5d005d00
Simon Kagstrom2e386e42009-11-03 14:19:03 +010026#define MTDOOPS_HEADER_SIZE 8
Simon Kagstrom9507b0c2009-10-29 13:41:19 +010027
28static unsigned long record_size = 4096;
29module_param(record_size, ulong, 0400);
30MODULE_PARM_DESC(record_size,
31 "record size for MTD OOPS pages in bytes (default 4096)");
Richard Purdie4b23aff2007-05-29 13:31:42 +010032
Simon Kagstrom2e386e42009-11-03 14:19:03 +010033static char mtddev[80];
34module_param_string(mtddev, mtddev, 80, 0400);
35MODULE_PARM_DESC(mtddev,
36 "name or index number of the MTD device to use");
37
38static int dump_oops = 1;
39module_param(dump_oops, int, 0600);
40MODULE_PARM_DESC(dump_oops,
41 "set to 1 to dump oopses, 0 to only dump panics (default 1)");
42
Adrian Bunk7903cba2008-04-18 13:44:11 -070043static struct mtdoops_context {
Simon Kagstrom2e386e42009-11-03 14:19:03 +010044 struct kmsg_dumper dump;
45
Richard Purdie4b23aff2007-05-29 13:31:42 +010046 int mtd_index;
Richard Purdie6ce0a8562008-01-29 11:27:11 +000047 struct work_struct work_erase;
48 struct work_struct work_write;
Richard Purdie4b23aff2007-05-29 13:31:42 +010049 struct mtd_info *mtd;
50 int oops_pages;
51 int nextpage;
52 int nextcount;
Simon Kagstrombe957452009-10-29 13:41:11 +010053 unsigned long *oops_page_used;
Richard Purdie4b23aff2007-05-29 13:31:42 +010054
John Ogness40ddbba2021-03-03 11:15:15 +010055 unsigned long oops_buf_busy;
Richard Purdie4b23aff2007-05-29 13:31:42 +010056 void *oops_buf;
Richard Purdie4b23aff2007-05-29 13:31:42 +010057} oops_cxt;
58
Simon Kagstrombe957452009-10-29 13:41:11 +010059static void mark_page_used(struct mtdoops_context *cxt, int page)
60{
61 set_bit(page, cxt->oops_page_used);
62}
63
64static void mark_page_unused(struct mtdoops_context *cxt, int page)
65{
66 clear_bit(page, cxt->oops_page_used);
67}
68
69static int page_is_used(struct mtdoops_context *cxt, int page)
70{
71 return test_bit(page, cxt->oops_page_used);
72}
73
Simon Kagstrombe957452009-10-29 13:41:11 +010074static int mtdoops_erase_block(struct mtdoops_context *cxt, int offset)
Richard Purdie4b23aff2007-05-29 13:31:42 +010075{
Simon Kagstrombe957452009-10-29 13:41:11 +010076 struct mtd_info *mtd = cxt->mtd;
77 u32 start_page_offset = mtd_div_by_eb(offset, mtd) * mtd->erasesize;
Simon Kagstrom9507b0c2009-10-29 13:41:19 +010078 u32 start_page = start_page_offset / record_size;
79 u32 erase_pages = mtd->erasesize / record_size;
Richard Purdie4b23aff2007-05-29 13:31:42 +010080 struct erase_info erase;
Richard Purdie4b23aff2007-05-29 13:31:42 +010081 int ret;
Simon Kagstrombe957452009-10-29 13:41:11 +010082 int page;
Richard Purdie4b23aff2007-05-29 13:31:42 +010083
Richard Purdie4b23aff2007-05-29 13:31:42 +010084 erase.addr = offset;
Richard Purdie79dcd8e2008-01-29 10:25:55 +000085 erase.len = mtd->erasesize;
Richard Purdie4b23aff2007-05-29 13:31:42 +010086
Artem Bityutskiy7e1f0dc2011-12-23 15:25:39 +020087 ret = mtd_erase(mtd, &erase);
Richard Purdie4b23aff2007-05-29 13:31:42 +010088 if (ret) {
Artem Bityutskiya15b1242009-10-11 13:40:40 +030089 printk(KERN_WARNING "mtdoops: erase of region [0x%llx, 0x%llx] on \"%s\" failed\n",
90 (unsigned long long)erase.addr,
Simon Kagstrom2e386e42009-11-03 14:19:03 +010091 (unsigned long long)erase.len, mtddev);
Richard Purdie4b23aff2007-05-29 13:31:42 +010092 return ret;
93 }
94
Simon Kagstrombe957452009-10-29 13:41:11 +010095 /* Mark pages as unused */
96 for (page = start_page; page < start_page + erase_pages; page++)
97 mark_page_unused(cxt, page);
98
Richard Purdie4b23aff2007-05-29 13:31:42 +010099 return 0;
100}
101
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000102static void mtdoops_inc_counter(struct mtdoops_context *cxt)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100103{
Richard Purdie4b23aff2007-05-29 13:31:42 +0100104 cxt->nextpage++;
Richard Purdieecd5b312008-07-26 09:17:41 +0100105 if (cxt->nextpage >= cxt->oops_pages)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100106 cxt->nextpage = 0;
107 cxt->nextcount++;
108 if (cxt->nextcount == 0xffffffff)
109 cxt->nextcount = 0;
110
Simon Kagstrombe957452009-10-29 13:41:11 +0100111 if (page_is_used(cxt, cxt->nextpage)) {
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000112 schedule_work(&cxt->work_erase);
113 return;
114 }
Richard Purdie4b23aff2007-05-29 13:31:42 +0100115
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300116 printk(KERN_DEBUG "mtdoops: ready %d, %d (no erase)\n",
117 cxt->nextpage, cxt->nextcount);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100118}
119
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000120/* Scheduled work - when we can't proceed without erasing a block */
121static void mtdoops_workfunc_erase(struct work_struct *work)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100122{
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000123 struct mtdoops_context *cxt =
124 container_of(work, struct mtdoops_context, work_erase);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100125 struct mtd_info *mtd = cxt->mtd;
126 int i = 0, j, ret, mod;
127
128 /* We were unregistered */
129 if (!mtd)
130 return;
131
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100132 mod = (cxt->nextpage * record_size) % mtd->erasesize;
Richard Purdie4b23aff2007-05-29 13:31:42 +0100133 if (mod != 0) {
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100134 cxt->nextpage = cxt->nextpage + ((mtd->erasesize - mod) / record_size);
Richard Purdieecd5b312008-07-26 09:17:41 +0100135 if (cxt->nextpage >= cxt->oops_pages)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100136 cxt->nextpage = 0;
137 }
138
Brian Norris9cb93fb2012-05-11 13:30:33 -0700139 while ((ret = mtd_block_isbad(mtd, cxt->nextpage * record_size)) > 0) {
Richard Purdie4b23aff2007-05-29 13:31:42 +0100140badblock:
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100141 printk(KERN_WARNING "mtdoops: bad block at %08lx\n",
142 cxt->nextpage * record_size);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100143 i++;
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100144 cxt->nextpage = cxt->nextpage + (mtd->erasesize / record_size);
Richard Purdieecd5b312008-07-26 09:17:41 +0100145 if (cxt->nextpage >= cxt->oops_pages)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100146 cxt->nextpage = 0;
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100147 if (i == cxt->oops_pages / (mtd->erasesize / record_size)) {
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300148 printk(KERN_ERR "mtdoops: all blocks bad!\n");
Richard Purdie4b23aff2007-05-29 13:31:42 +0100149 return;
150 }
151 }
152
Brian Norris9cb93fb2012-05-11 13:30:33 -0700153 if (ret < 0) {
154 printk(KERN_ERR "mtdoops: mtd_block_isbad failed, aborting\n");
155 return;
156 }
157
Richard Purdie4b23aff2007-05-29 13:31:42 +0100158 for (j = 0, ret = -1; (j < 3) && (ret < 0); j++)
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100159 ret = mtdoops_erase_block(cxt, cxt->nextpage * record_size);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100160
Richard Purdie2986bd22008-01-29 11:27:09 +0000161 if (ret >= 0) {
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300162 printk(KERN_DEBUG "mtdoops: ready %d, %d\n",
163 cxt->nextpage, cxt->nextcount);
Richard Purdie2986bd22008-01-29 11:27:09 +0000164 return;
Richard Purdie4b23aff2007-05-29 13:31:42 +0100165 }
166
Artem Bityutskiybb4a0982012-02-03 11:23:57 +0200167 if (ret == -EIO) {
Artem Bityutskiy5942ddb2011-12-23 19:37:38 +0200168 ret = mtd_block_markbad(mtd, cxt->nextpage * record_size);
Artem Bityutskiybb4a0982012-02-03 11:23:57 +0200169 if (ret < 0 && ret != -EOPNOTSUPP) {
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300170 printk(KERN_ERR "mtdoops: block_markbad failed, aborting\n");
Richard Purdie2986bd22008-01-29 11:27:09 +0000171 return;
172 }
173 }
174 goto badblock;
Richard Purdie4b23aff2007-05-29 13:31:42 +0100175}
176
Richard Purdie621e4f82008-02-06 10:17:50 +0000177static void mtdoops_write(struct mtdoops_context *cxt, int panic)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100178{
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000179 struct mtd_info *mtd = cxt->mtd;
180 size_t retlen;
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100181 u32 *hdr;
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000182 int ret;
Richard Purdie4b23aff2007-05-29 13:31:42 +0100183
John Ogness40ddbba2021-03-03 11:15:15 +0100184 if (test_and_set_bit(0, &cxt->oops_buf_busy))
185 return;
186
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100187 /* Add mtdoops header to the buffer */
188 hdr = cxt->oops_buf;
189 hdr[0] = cxt->nextcount;
190 hdr[1] = MTDOOPS_KERNMSG_MAGIC;
Richard Purdie4b23aff2007-05-29 13:31:42 +0100191
Artem Bityutskiy016c1292011-12-28 17:27:18 +0200192 if (panic) {
Artem Bityutskiy7ae79d72011-12-23 18:03:17 +0200193 ret = mtd_panic_write(mtd, cxt->nextpage * record_size,
194 record_size, &retlen, cxt->oops_buf);
Artem Bityutskiy016c1292011-12-28 17:27:18 +0200195 if (ret == -EOPNOTSUPP) {
196 printk(KERN_ERR "mtdoops: Cannot write from panic without panic_write\n");
John Ogness40ddbba2021-03-03 11:15:15 +0100197 goto out;
Artem Bityutskiy016c1292011-12-28 17:27:18 +0200198 }
199 } else
Artem Bityutskiyeda95cb2011-12-23 17:35:41 +0200200 ret = mtd_write(mtd, cxt->nextpage * record_size,
201 record_size, &retlen, cxt->oops_buf);
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000202
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100203 if (retlen != record_size || ret < 0)
204 printk(KERN_ERR "mtdoops: write failure at %ld (%td of %ld written), error %d\n",
205 cxt->nextpage * record_size, retlen, record_size, ret);
Simon Kagstrombe957452009-10-29 13:41:11 +0100206 mark_page_used(cxt, cxt->nextpage);
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100207 memset(cxt->oops_buf, 0xff, record_size);
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000208
209 mtdoops_inc_counter(cxt);
John Ogness40ddbba2021-03-03 11:15:15 +0100210out:
211 clear_bit(0, &cxt->oops_buf_busy);
Richard Purdie621e4f82008-02-06 10:17:50 +0000212}
213
Richard Purdie621e4f82008-02-06 10:17:50 +0000214static void mtdoops_workfunc_write(struct work_struct *work)
215{
216 struct mtdoops_context *cxt =
217 container_of(work, struct mtdoops_context, work_write);
218
219 mtdoops_write(cxt, 0);
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300220}
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000221
222static void find_next_position(struct mtdoops_context *cxt)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100223{
224 struct mtd_info *mtd = cxt->mtd;
Richard Purdie2986bd22008-01-29 11:27:09 +0000225 int ret, page, maxpos = 0;
Richard Purdief0482ee2008-07-26 09:22:45 +0100226 u32 count[2], maxcount = 0xffffffff;
Richard Purdie4b23aff2007-05-29 13:31:42 +0100227 size_t retlen;
228
229 for (page = 0; page < cxt->oops_pages; page++) {
Artem Bityutskiybb4a0982012-02-03 11:23:57 +0200230 if (mtd_block_isbad(mtd, page * record_size))
Roman Tereshonkov3538c562011-12-02 15:07:17 +0200231 continue;
Simon Kagstrombe957452009-10-29 13:41:11 +0100232 /* Assume the page is used */
233 mark_page_used(cxt, page);
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200234 ret = mtd_read(mtd, page * record_size, MTDOOPS_HEADER_SIZE,
235 &retlen, (u_char *)&count[0]);
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100236 if (retlen != MTDOOPS_HEADER_SIZE ||
Brian Norrisd57f40542011-09-20 18:34:25 -0700237 (ret < 0 && !mtd_is_bitflip(ret))) {
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100238 printk(KERN_ERR "mtdoops: read failure at %ld (%td of %d read), err %d\n",
239 page * record_size, retlen,
240 MTDOOPS_HEADER_SIZE, ret);
Richard Purdie2986bd22008-01-29 11:27:09 +0000241 continue;
242 }
243
Simon Kagstrombe957452009-10-29 13:41:11 +0100244 if (count[0] == 0xffffffff && count[1] == 0xffffffff)
245 mark_page_unused(cxt, page);
Matthieu CASTETcd409c62012-10-19 17:29:33 +0200246 if (count[0] == 0xffffffff || count[1] != MTDOOPS_KERNMSG_MAGIC)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100247 continue;
248 if (maxcount == 0xffffffff) {
Richard Purdief0482ee2008-07-26 09:22:45 +0100249 maxcount = count[0];
Richard Purdie4b23aff2007-05-29 13:31:42 +0100250 maxpos = page;
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300251 } else if (count[0] < 0x40000000 && maxcount > 0xc0000000) {
Richard Purdief0482ee2008-07-26 09:22:45 +0100252 maxcount = count[0];
Richard Purdie4b23aff2007-05-29 13:31:42 +0100253 maxpos = page;
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300254 } else if (count[0] > maxcount && count[0] < 0xc0000000) {
Richard Purdief0482ee2008-07-26 09:22:45 +0100255 maxcount = count[0];
Richard Purdie4b23aff2007-05-29 13:31:42 +0100256 maxpos = page;
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300257 } else if (count[0] > maxcount && count[0] > 0xc0000000
258 && maxcount > 0x80000000) {
Richard Purdief0482ee2008-07-26 09:22:45 +0100259 maxcount = count[0];
Richard Purdie4b23aff2007-05-29 13:31:42 +0100260 maxpos = page;
261 }
262 }
263 if (maxcount == 0xffffffff) {
Matthieu CASTETcd409c62012-10-19 17:29:33 +0200264 cxt->nextpage = cxt->oops_pages - 1;
265 cxt->nextcount = 0;
Richard Purdie4b23aff2007-05-29 13:31:42 +0100266 }
Matthieu CASTETcd409c62012-10-19 17:29:33 +0200267 else {
268 cxt->nextpage = maxpos;
269 cxt->nextcount = maxcount;
270 }
Richard Purdie4b23aff2007-05-29 13:31:42 +0100271
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000272 mtdoops_inc_counter(cxt);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100273}
274
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100275static void mtdoops_do_dump(struct kmsg_dumper *dumper,
Kay Sieverse2ae7152012-06-15 14:07:51 +0200276 enum kmsg_dump_reason reason)
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100277{
278 struct mtdoops_context *cxt = container_of(dumper,
279 struct mtdoops_context, dump);
John Ognessf9f3f022021-03-03 11:15:25 +0100280 struct kmsg_dump_iter iter;
Seiji Aguchifc2d5572011-01-12 16:59:29 -0800281
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100282 /* Only dump oopses if dump_oops is set */
283 if (reason == KMSG_DUMP_OOPS && !dump_oops)
284 return;
285
John Ognessf9f3f022021-03-03 11:15:25 +0100286 kmsg_dump_rewind(&iter);
287
John Ogness40ddbba2021-03-03 11:15:15 +0100288 if (test_and_set_bit(0, &cxt->oops_buf_busy))
289 return;
John Ognessf9f3f022021-03-03 11:15:25 +0100290 kmsg_dump_get_buffer(&iter, true, cxt->oops_buf + MTDOOPS_HEADER_SIZE,
Kay Sieverse2ae7152012-06-15 14:07:51 +0200291 record_size - MTDOOPS_HEADER_SIZE, NULL);
John Ogness40ddbba2021-03-03 11:15:15 +0100292 clear_bit(0, &cxt->oops_buf_busy);
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100293
Mark Tomlinsonc1cf1d52020-09-03 15:42:17 +1200294 if (reason != KMSG_DUMP_OOPS) {
295 /* Panics must be written immediately */
Artem Bityutskiy016c1292011-12-28 17:27:18 +0200296 mtdoops_write(cxt, 1);
Mark Tomlinsonc1cf1d52020-09-03 15:42:17 +1200297 } else {
298 /* For other cases, schedule work to write it "nicely" */
299 schedule_work(&cxt->work_write);
300 }
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100301}
Richard Purdie4b23aff2007-05-29 13:31:42 +0100302
303static void mtdoops_notify_add(struct mtd_info *mtd)
304{
305 struct mtdoops_context *cxt = &oops_cxt;
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100306 u64 mtdoops_pages = div_u64(mtd->size, record_size);
307 int err;
Simon Kagstrombe957452009-10-29 13:41:11 +0100308
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100309 if (!strcmp(mtd->name, mtddev))
Adrian Huntere2a0f252009-02-16 18:21:35 +0200310 cxt->mtd_index = mtd->index;
311
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300312 if (mtd->index != cxt->mtd_index || cxt->mtd_index < 0)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100313 return;
314
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300315 if (mtd->size < mtd->erasesize * 2) {
316 printk(KERN_ERR "mtdoops: MTD partition %d not big enough for mtdoops\n",
317 mtd->index);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100318 return;
319 }
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100320 if (mtd->erasesize < record_size) {
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300321 printk(KERN_ERR "mtdoops: eraseblock size of MTD partition %d too small\n",
322 mtd->index);
Richard Purdie79dcd8e2008-01-29 10:25:55 +0000323 return;
324 }
Simon Kagstrom1114e3d2009-11-03 08:08:41 +0200325 if (mtd->size > MTDOOPS_MAX_MTD_SIZE) {
326 printk(KERN_ERR "mtdoops: mtd%d is too large (limit is %d MiB)\n",
327 mtd->index, MTDOOPS_MAX_MTD_SIZE / 1024 / 1024);
328 return;
329 }
330
Simon Kagstrombe957452009-10-29 13:41:11 +0100331 /* oops_page_used is a bit field */
Kees Cook42bc47b2018-06-12 14:27:11 -0700332 cxt->oops_page_used =
333 vmalloc(array_size(sizeof(unsigned long),
334 DIV_ROUND_UP(mtdoops_pages,
335 BITS_PER_LONG)));
Simon Kagstrombe957452009-10-29 13:41:11 +0100336 if (!cxt->oops_page_used) {
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100337 printk(KERN_ERR "mtdoops: could not allocate page array\n");
338 return;
339 }
340
Kay Sieverse2ae7152012-06-15 14:07:51 +0200341 cxt->dump.max_reason = KMSG_DUMP_OOPS;
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100342 cxt->dump.dump = mtdoops_do_dump;
343 err = kmsg_dump_register(&cxt->dump);
344 if (err) {
345 printk(KERN_ERR "mtdoops: registering kmsg dumper failed, error %d\n", err);
346 vfree(cxt->oops_page_used);
347 cxt->oops_page_used = NULL;
Simon Kagstrombe957452009-10-29 13:41:11 +0100348 return;
349 }
Simon Kagstrom1114e3d2009-11-03 08:08:41 +0200350
Richard Purdie4b23aff2007-05-29 13:31:42 +0100351 cxt->mtd = mtd;
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100352 cxt->oops_pages = (int)mtd->size / record_size;
Richard Purdie6ce0a8562008-01-29 11:27:11 +0000353 find_next_position(cxt);
Richard Purdie79dcd8e2008-01-29 10:25:55 +0000354 printk(KERN_INFO "mtdoops: Attached to MTD device %d\n", mtd->index);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100355}
356
357static void mtdoops_notify_remove(struct mtd_info *mtd)
358{
359 struct mtdoops_context *cxt = &oops_cxt;
360
Artem Bityutskiya15b1242009-10-11 13:40:40 +0300361 if (mtd->index != cxt->mtd_index || cxt->mtd_index < 0)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100362 return;
363
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100364 if (kmsg_dump_unregister(&cxt->dump) < 0)
365 printk(KERN_WARNING "mtdoops: could not unregister kmsg_dumper\n");
366
Richard Purdie4b23aff2007-05-29 13:31:42 +0100367 cxt->mtd = NULL;
Tejun Heo43829732012-08-20 14:51:24 -0700368 flush_work(&cxt->work_erase);
369 flush_work(&cxt->work_write);
Richard Purdie4b23aff2007-05-29 13:31:42 +0100370}
371
Richard Purdie4b23aff2007-05-29 13:31:42 +0100372
373static struct mtd_notifier mtdoops_notifier = {
374 .add = mtdoops_notify_add,
375 .remove = mtdoops_notify_remove,
376};
377
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100378static int __init mtdoops_init(void)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100379{
380 struct mtdoops_context *cxt = &oops_cxt;
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100381 int mtd_index;
382 char *endp;
Richard Purdie4b23aff2007-05-29 13:31:42 +0100383
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100384 if (strlen(mtddev) == 0) {
385 printk(KERN_ERR "mtdoops: mtd device (mtddev=name/number) must be supplied\n");
386 return -EINVAL;
387 }
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100388 if ((record_size & 4095) != 0) {
389 printk(KERN_ERR "mtdoops: record_size must be a multiple of 4096\n");
390 return -EINVAL;
391 }
392 if (record_size < 4096) {
393 printk(KERN_ERR "mtdoops: record_size must be over 4096 bytes\n");
394 return -EINVAL;
395 }
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100396
397 /* Setup the MTD device to use */
Richard Purdie4b23aff2007-05-29 13:31:42 +0100398 cxt->mtd_index = -1;
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100399 mtd_index = simple_strtoul(mtddev, &endp, 0);
400 if (*endp == '\0')
401 cxt->mtd_index = mtd_index;
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100402
Simon Kagstrom9507b0c2009-10-29 13:41:19 +0100403 cxt->oops_buf = vmalloc(record_size);
Zhen Lei313ea212021-06-10 10:12:01 +0800404 if (!cxt->oops_buf)
Richard Purdie4b23aff2007-05-29 13:31:42 +0100405 return -ENOMEM;
Simon Kagstrom2e386e42009-11-03 14:19:03 +0100406 memset(cxt->oops_buf, 0xff, record_size);
John Ogness40ddbba2021-03-03 11:15:15 +0100407 cxt->oops_buf_busy = 0;
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");