Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 1 | /* |
| 2 | * MTD Oops/Panic logger |
| 3 | * |
David Woodhouse | a1452a3 | 2010-08-08 20:58:20 +0100 | [diff] [blame] | 4 | * Copyright © 2007 Nokia Corporation. All rights reserved. |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 5 | * |
| 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 Purdie | 621e4f8 | 2008-02-06 10:17:50 +0000 | [diff] [blame] | 31 | #include <linux/delay.h> |
David Woodhouse | f9f7dd2 | 2008-02-07 10:50:57 +0000 | [diff] [blame] | 32 | #include <linux/interrupt.h> |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 33 | #include <linux/mtd/mtd.h> |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 34 | #include <linux/kmsg_dump.h> |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 35 | |
Simon Kagstrom | 1114e3d | 2009-11-03 08:08:41 +0200 | [diff] [blame] | 36 | /* Maximum MTD partition size */ |
| 37 | #define MTDOOPS_MAX_MTD_SIZE (8 * 1024 * 1024) |
| 38 | |
Richard Purdie | f0482ee | 2008-07-26 09:22:45 +0100 | [diff] [blame] | 39 | #define MTDOOPS_KERNMSG_MAGIC 0x5d005d00 |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 40 | #define MTDOOPS_HEADER_SIZE 8 |
Simon Kagstrom | 9507b0c | 2009-10-29 13:41:19 +0100 | [diff] [blame] | 41 | |
| 42 | static unsigned long record_size = 4096; |
| 43 | module_param(record_size, ulong, 0400); |
| 44 | MODULE_PARM_DESC(record_size, |
| 45 | "record size for MTD OOPS pages in bytes (default 4096)"); |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 46 | |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 47 | static char mtddev[80]; |
| 48 | module_param_string(mtddev, mtddev, 80, 0400); |
| 49 | MODULE_PARM_DESC(mtddev, |
| 50 | "name or index number of the MTD device to use"); |
| 51 | |
| 52 | static int dump_oops = 1; |
| 53 | module_param(dump_oops, int, 0600); |
| 54 | MODULE_PARM_DESC(dump_oops, |
| 55 | "set to 1 to dump oopses, 0 to only dump panics (default 1)"); |
| 56 | |
Adrian Bunk | 7903cba | 2008-04-18 13:44:11 -0700 | [diff] [blame] | 57 | static struct mtdoops_context { |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 58 | struct kmsg_dumper dump; |
| 59 | |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 60 | int mtd_index; |
Richard Purdie | 6ce0a85 | 2008-01-29 11:27:11 +0000 | [diff] [blame] | 61 | struct work_struct work_erase; |
| 62 | struct work_struct work_write; |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 63 | struct mtd_info *mtd; |
| 64 | int oops_pages; |
| 65 | int nextpage; |
| 66 | int nextcount; |
Simon Kagstrom | be95745 | 2009-10-29 13:41:11 +0100 | [diff] [blame] | 67 | unsigned long *oops_page_used; |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 68 | |
| 69 | void *oops_buf; |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 70 | } oops_cxt; |
| 71 | |
Simon Kagstrom | be95745 | 2009-10-29 13:41:11 +0100 | [diff] [blame] | 72 | static void mark_page_used(struct mtdoops_context *cxt, int page) |
| 73 | { |
| 74 | set_bit(page, cxt->oops_page_used); |
| 75 | } |
| 76 | |
| 77 | static void mark_page_unused(struct mtdoops_context *cxt, int page) |
| 78 | { |
| 79 | clear_bit(page, cxt->oops_page_used); |
| 80 | } |
| 81 | |
| 82 | static int page_is_used(struct mtdoops_context *cxt, int page) |
| 83 | { |
| 84 | return test_bit(page, cxt->oops_page_used); |
| 85 | } |
| 86 | |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 87 | static void mtdoops_erase_callback(struct erase_info *done) |
| 88 | { |
| 89 | wait_queue_head_t *wait_q = (wait_queue_head_t *)done->priv; |
| 90 | wake_up(wait_q); |
| 91 | } |
| 92 | |
Simon Kagstrom | be95745 | 2009-10-29 13:41:11 +0100 | [diff] [blame] | 93 | static int mtdoops_erase_block(struct mtdoops_context *cxt, int offset) |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 94 | { |
Simon Kagstrom | be95745 | 2009-10-29 13:41:11 +0100 | [diff] [blame] | 95 | struct mtd_info *mtd = cxt->mtd; |
| 96 | u32 start_page_offset = mtd_div_by_eb(offset, mtd) * mtd->erasesize; |
Simon Kagstrom | 9507b0c | 2009-10-29 13:41:19 +0100 | [diff] [blame] | 97 | u32 start_page = start_page_offset / record_size; |
| 98 | u32 erase_pages = mtd->erasesize / record_size; |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 99 | struct erase_info erase; |
| 100 | DECLARE_WAITQUEUE(wait, current); |
| 101 | wait_queue_head_t wait_q; |
| 102 | int ret; |
Simon Kagstrom | be95745 | 2009-10-29 13:41:11 +0100 | [diff] [blame] | 103 | int page; |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 104 | |
| 105 | init_waitqueue_head(&wait_q); |
| 106 | erase.mtd = mtd; |
| 107 | erase.callback = mtdoops_erase_callback; |
| 108 | erase.addr = offset; |
Richard Purdie | 79dcd8e | 2008-01-29 10:25:55 +0000 | [diff] [blame] | 109 | erase.len = mtd->erasesize; |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 110 | erase.priv = (u_long)&wait_q; |
| 111 | |
| 112 | set_current_state(TASK_INTERRUPTIBLE); |
| 113 | add_wait_queue(&wait_q, &wait); |
| 114 | |
| 115 | ret = mtd->erase(mtd, &erase); |
| 116 | if (ret) { |
| 117 | set_current_state(TASK_RUNNING); |
| 118 | remove_wait_queue(&wait_q, &wait); |
Artem Bityutskiy | a15b124 | 2009-10-11 13:40:40 +0300 | [diff] [blame] | 119 | printk(KERN_WARNING "mtdoops: erase of region [0x%llx, 0x%llx] on \"%s\" failed\n", |
| 120 | (unsigned long long)erase.addr, |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 121 | (unsigned long long)erase.len, mtddev); |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 122 | return ret; |
| 123 | } |
| 124 | |
| 125 | schedule(); /* Wait for erase to finish. */ |
| 126 | remove_wait_queue(&wait_q, &wait); |
| 127 | |
Simon Kagstrom | be95745 | 2009-10-29 13:41:11 +0100 | [diff] [blame] | 128 | /* Mark pages as unused */ |
| 129 | for (page = start_page; page < start_page + erase_pages; page++) |
| 130 | mark_page_unused(cxt, page); |
| 131 | |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 132 | return 0; |
| 133 | } |
| 134 | |
Richard Purdie | 6ce0a85 | 2008-01-29 11:27:11 +0000 | [diff] [blame] | 135 | static void mtdoops_inc_counter(struct mtdoops_context *cxt) |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 136 | { |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 137 | cxt->nextpage++; |
Richard Purdie | ecd5b31 | 2008-07-26 09:17:41 +0100 | [diff] [blame] | 138 | if (cxt->nextpage >= cxt->oops_pages) |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 139 | cxt->nextpage = 0; |
| 140 | cxt->nextcount++; |
| 141 | if (cxt->nextcount == 0xffffffff) |
| 142 | cxt->nextcount = 0; |
| 143 | |
Simon Kagstrom | be95745 | 2009-10-29 13:41:11 +0100 | [diff] [blame] | 144 | if (page_is_used(cxt, cxt->nextpage)) { |
Richard Purdie | 6ce0a85 | 2008-01-29 11:27:11 +0000 | [diff] [blame] | 145 | schedule_work(&cxt->work_erase); |
| 146 | return; |
| 147 | } |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 148 | |
Artem Bityutskiy | a15b124 | 2009-10-11 13:40:40 +0300 | [diff] [blame] | 149 | printk(KERN_DEBUG "mtdoops: ready %d, %d (no erase)\n", |
| 150 | cxt->nextpage, cxt->nextcount); |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 151 | } |
| 152 | |
Richard Purdie | 6ce0a85 | 2008-01-29 11:27:11 +0000 | [diff] [blame] | 153 | /* Scheduled work - when we can't proceed without erasing a block */ |
| 154 | static void mtdoops_workfunc_erase(struct work_struct *work) |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 155 | { |
Richard Purdie | 6ce0a85 | 2008-01-29 11:27:11 +0000 | [diff] [blame] | 156 | struct mtdoops_context *cxt = |
| 157 | container_of(work, struct mtdoops_context, work_erase); |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 158 | struct mtd_info *mtd = cxt->mtd; |
| 159 | int i = 0, j, ret, mod; |
| 160 | |
| 161 | /* We were unregistered */ |
| 162 | if (!mtd) |
| 163 | return; |
| 164 | |
Simon Kagstrom | 9507b0c | 2009-10-29 13:41:19 +0100 | [diff] [blame] | 165 | mod = (cxt->nextpage * record_size) % mtd->erasesize; |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 166 | if (mod != 0) { |
Simon Kagstrom | 9507b0c | 2009-10-29 13:41:19 +0100 | [diff] [blame] | 167 | cxt->nextpage = cxt->nextpage + ((mtd->erasesize - mod) / record_size); |
Richard Purdie | ecd5b31 | 2008-07-26 09:17:41 +0100 | [diff] [blame] | 168 | if (cxt->nextpage >= cxt->oops_pages) |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 169 | cxt->nextpage = 0; |
| 170 | } |
| 171 | |
Richard Purdie | 2986bd2 | 2008-01-29 11:27:09 +0000 | [diff] [blame] | 172 | while (mtd->block_isbad) { |
Simon Kagstrom | 9507b0c | 2009-10-29 13:41:19 +0100 | [diff] [blame] | 173 | ret = mtd->block_isbad(mtd, cxt->nextpage * record_size); |
Richard Purdie | 2986bd2 | 2008-01-29 11:27:09 +0000 | [diff] [blame] | 174 | if (!ret) |
| 175 | break; |
| 176 | if (ret < 0) { |
Artem Bityutskiy | a15b124 | 2009-10-11 13:40:40 +0300 | [diff] [blame] | 177 | printk(KERN_ERR "mtdoops: block_isbad failed, aborting\n"); |
Richard Purdie | 2986bd2 | 2008-01-29 11:27:09 +0000 | [diff] [blame] | 178 | return; |
| 179 | } |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 180 | badblock: |
Simon Kagstrom | 9507b0c | 2009-10-29 13:41:19 +0100 | [diff] [blame] | 181 | printk(KERN_WARNING "mtdoops: bad block at %08lx\n", |
| 182 | cxt->nextpage * record_size); |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 183 | i++; |
Simon Kagstrom | 9507b0c | 2009-10-29 13:41:19 +0100 | [diff] [blame] | 184 | cxt->nextpage = cxt->nextpage + (mtd->erasesize / record_size); |
Richard Purdie | ecd5b31 | 2008-07-26 09:17:41 +0100 | [diff] [blame] | 185 | if (cxt->nextpage >= cxt->oops_pages) |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 186 | cxt->nextpage = 0; |
Simon Kagstrom | 9507b0c | 2009-10-29 13:41:19 +0100 | [diff] [blame] | 187 | if (i == cxt->oops_pages / (mtd->erasesize / record_size)) { |
Artem Bityutskiy | a15b124 | 2009-10-11 13:40:40 +0300 | [diff] [blame] | 188 | printk(KERN_ERR "mtdoops: all blocks bad!\n"); |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 189 | return; |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | for (j = 0, ret = -1; (j < 3) && (ret < 0); j++) |
Simon Kagstrom | 9507b0c | 2009-10-29 13:41:19 +0100 | [diff] [blame] | 194 | ret = mtdoops_erase_block(cxt, cxt->nextpage * record_size); |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 195 | |
Richard Purdie | 2986bd2 | 2008-01-29 11:27:09 +0000 | [diff] [blame] | 196 | if (ret >= 0) { |
Artem Bityutskiy | a15b124 | 2009-10-11 13:40:40 +0300 | [diff] [blame] | 197 | printk(KERN_DEBUG "mtdoops: ready %d, %d\n", |
| 198 | cxt->nextpage, cxt->nextcount); |
Richard Purdie | 2986bd2 | 2008-01-29 11:27:09 +0000 | [diff] [blame] | 199 | return; |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 200 | } |
| 201 | |
Artem Bityutskiy | a15b124 | 2009-10-11 13:40:40 +0300 | [diff] [blame] | 202 | if (mtd->block_markbad && ret == -EIO) { |
Simon Kagstrom | 9507b0c | 2009-10-29 13:41:19 +0100 | [diff] [blame] | 203 | ret = mtd->block_markbad(mtd, cxt->nextpage * record_size); |
Richard Purdie | 2986bd2 | 2008-01-29 11:27:09 +0000 | [diff] [blame] | 204 | if (ret < 0) { |
Artem Bityutskiy | a15b124 | 2009-10-11 13:40:40 +0300 | [diff] [blame] | 205 | printk(KERN_ERR "mtdoops: block_markbad failed, aborting\n"); |
Richard Purdie | 2986bd2 | 2008-01-29 11:27:09 +0000 | [diff] [blame] | 206 | return; |
| 207 | } |
| 208 | } |
| 209 | goto badblock; |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 210 | } |
| 211 | |
Richard Purdie | 621e4f8 | 2008-02-06 10:17:50 +0000 | [diff] [blame] | 212 | static void mtdoops_write(struct mtdoops_context *cxt, int panic) |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 213 | { |
Richard Purdie | 6ce0a85 | 2008-01-29 11:27:11 +0000 | [diff] [blame] | 214 | struct mtd_info *mtd = cxt->mtd; |
| 215 | size_t retlen; |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 216 | u32 *hdr; |
Richard Purdie | 6ce0a85 | 2008-01-29 11:27:11 +0000 | [diff] [blame] | 217 | int ret; |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 218 | |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 219 | /* Add mtdoops header to the buffer */ |
| 220 | hdr = cxt->oops_buf; |
| 221 | hdr[0] = cxt->nextcount; |
| 222 | hdr[1] = MTDOOPS_KERNMSG_MAGIC; |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 223 | |
Richard Purdie | 621e4f8 | 2008-02-06 10:17:50 +0000 | [diff] [blame] | 224 | if (panic) |
Simon Kagstrom | 9507b0c | 2009-10-29 13:41:19 +0100 | [diff] [blame] | 225 | ret = mtd->panic_write(mtd, cxt->nextpage * record_size, |
| 226 | record_size, &retlen, cxt->oops_buf); |
Richard Purdie | 621e4f8 | 2008-02-06 10:17:50 +0000 | [diff] [blame] | 227 | else |
Simon Kagstrom | 9507b0c | 2009-10-29 13:41:19 +0100 | [diff] [blame] | 228 | ret = mtd->write(mtd, cxt->nextpage * record_size, |
| 229 | record_size, &retlen, cxt->oops_buf); |
Richard Purdie | 6ce0a85 | 2008-01-29 11:27:11 +0000 | [diff] [blame] | 230 | |
Simon Kagstrom | 9507b0c | 2009-10-29 13:41:19 +0100 | [diff] [blame] | 231 | if (retlen != record_size || ret < 0) |
| 232 | printk(KERN_ERR "mtdoops: write failure at %ld (%td of %ld written), error %d\n", |
| 233 | cxt->nextpage * record_size, retlen, record_size, ret); |
Simon Kagstrom | be95745 | 2009-10-29 13:41:11 +0100 | [diff] [blame] | 234 | mark_page_used(cxt, cxt->nextpage); |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 235 | memset(cxt->oops_buf, 0xff, record_size); |
Richard Purdie | 6ce0a85 | 2008-01-29 11:27:11 +0000 | [diff] [blame] | 236 | |
| 237 | mtdoops_inc_counter(cxt); |
Richard Purdie | 621e4f8 | 2008-02-06 10:17:50 +0000 | [diff] [blame] | 238 | } |
| 239 | |
Richard Purdie | 621e4f8 | 2008-02-06 10:17:50 +0000 | [diff] [blame] | 240 | static void mtdoops_workfunc_write(struct work_struct *work) |
| 241 | { |
| 242 | struct mtdoops_context *cxt = |
| 243 | container_of(work, struct mtdoops_context, work_write); |
| 244 | |
| 245 | mtdoops_write(cxt, 0); |
Artem Bityutskiy | a15b124 | 2009-10-11 13:40:40 +0300 | [diff] [blame] | 246 | } |
Richard Purdie | 6ce0a85 | 2008-01-29 11:27:11 +0000 | [diff] [blame] | 247 | |
| 248 | static void find_next_position(struct mtdoops_context *cxt) |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 249 | { |
| 250 | struct mtd_info *mtd = cxt->mtd; |
Richard Purdie | 2986bd2 | 2008-01-29 11:27:09 +0000 | [diff] [blame] | 251 | int ret, page, maxpos = 0; |
Richard Purdie | f0482ee | 2008-07-26 09:22:45 +0100 | [diff] [blame] | 252 | u32 count[2], maxcount = 0xffffffff; |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 253 | size_t retlen; |
| 254 | |
| 255 | for (page = 0; page < cxt->oops_pages; page++) { |
Roman Tereshonkov | 3538c56 | 2011-12-02 15:07:17 +0200 | [diff] [blame] | 256 | if (mtd->block_isbad && |
| 257 | mtd->block_isbad(mtd, page * record_size)) |
| 258 | continue; |
Simon Kagstrom | be95745 | 2009-10-29 13:41:11 +0100 | [diff] [blame] | 259 | /* Assume the page is used */ |
| 260 | mark_page_used(cxt, page); |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 261 | ret = mtd->read(mtd, page * record_size, MTDOOPS_HEADER_SIZE, |
| 262 | &retlen, (u_char *) &count[0]); |
| 263 | if (retlen != MTDOOPS_HEADER_SIZE || |
Brian Norris | d57f4054 | 2011-09-20 18:34:25 -0700 | [diff] [blame] | 264 | (ret < 0 && !mtd_is_bitflip(ret))) { |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 265 | printk(KERN_ERR "mtdoops: read failure at %ld (%td of %d read), err %d\n", |
| 266 | page * record_size, retlen, |
| 267 | MTDOOPS_HEADER_SIZE, ret); |
Richard Purdie | 2986bd2 | 2008-01-29 11:27:09 +0000 | [diff] [blame] | 268 | continue; |
| 269 | } |
| 270 | |
Simon Kagstrom | be95745 | 2009-10-29 13:41:11 +0100 | [diff] [blame] | 271 | if (count[0] == 0xffffffff && count[1] == 0xffffffff) |
| 272 | mark_page_unused(cxt, page); |
Richard Purdie | f0482ee | 2008-07-26 09:22:45 +0100 | [diff] [blame] | 273 | if (count[0] == 0xffffffff) |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 274 | continue; |
| 275 | if (maxcount == 0xffffffff) { |
Richard Purdie | f0482ee | 2008-07-26 09:22:45 +0100 | [diff] [blame] | 276 | maxcount = count[0]; |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 277 | maxpos = page; |
Artem Bityutskiy | a15b124 | 2009-10-11 13:40:40 +0300 | [diff] [blame] | 278 | } else if (count[0] < 0x40000000 && maxcount > 0xc0000000) { |
Richard Purdie | f0482ee | 2008-07-26 09:22:45 +0100 | [diff] [blame] | 279 | maxcount = count[0]; |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 280 | maxpos = page; |
Artem Bityutskiy | a15b124 | 2009-10-11 13:40:40 +0300 | [diff] [blame] | 281 | } else if (count[0] > maxcount && count[0] < 0xc0000000) { |
Richard Purdie | f0482ee | 2008-07-26 09:22:45 +0100 | [diff] [blame] | 282 | maxcount = count[0]; |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 283 | maxpos = page; |
Artem Bityutskiy | a15b124 | 2009-10-11 13:40:40 +0300 | [diff] [blame] | 284 | } else if (count[0] > maxcount && count[0] > 0xc0000000 |
| 285 | && maxcount > 0x80000000) { |
Richard Purdie | f0482ee | 2008-07-26 09:22:45 +0100 | [diff] [blame] | 286 | maxcount = count[0]; |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 287 | maxpos = page; |
| 288 | } |
| 289 | } |
| 290 | if (maxcount == 0xffffffff) { |
| 291 | cxt->nextpage = 0; |
| 292 | cxt->nextcount = 1; |
Richard Purdie | 43b5693 | 2008-07-26 09:25:18 +0100 | [diff] [blame] | 293 | schedule_work(&cxt->work_erase); |
Richard Purdie | 6ce0a85 | 2008-01-29 11:27:11 +0000 | [diff] [blame] | 294 | return; |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 295 | } |
| 296 | |
| 297 | cxt->nextpage = maxpos; |
| 298 | cxt->nextcount = maxcount; |
| 299 | |
Richard Purdie | 6ce0a85 | 2008-01-29 11:27:11 +0000 | [diff] [blame] | 300 | mtdoops_inc_counter(cxt); |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 301 | } |
| 302 | |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 303 | static void mtdoops_do_dump(struct kmsg_dumper *dumper, |
| 304 | enum kmsg_dump_reason reason, const char *s1, unsigned long l1, |
| 305 | const char *s2, unsigned long l2) |
| 306 | { |
| 307 | struct mtdoops_context *cxt = container_of(dumper, |
| 308 | struct mtdoops_context, dump); |
| 309 | unsigned long s1_start, s2_start; |
| 310 | unsigned long l1_cpy, l2_cpy; |
| 311 | char *dst; |
| 312 | |
Seiji Aguchi | fc2d557 | 2011-01-12 16:59:29 -0800 | [diff] [blame] | 313 | if (reason != KMSG_DUMP_OOPS && |
| 314 | reason != KMSG_DUMP_PANIC && |
| 315 | reason != KMSG_DUMP_KEXEC) |
| 316 | return; |
| 317 | |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 318 | /* Only dump oopses if dump_oops is set */ |
| 319 | if (reason == KMSG_DUMP_OOPS && !dump_oops) |
| 320 | return; |
| 321 | |
| 322 | dst = cxt->oops_buf + MTDOOPS_HEADER_SIZE; /* Skip the header */ |
| 323 | l2_cpy = min(l2, record_size - MTDOOPS_HEADER_SIZE); |
| 324 | l1_cpy = min(l1, record_size - MTDOOPS_HEADER_SIZE - l2_cpy); |
| 325 | |
| 326 | s2_start = l2 - l2_cpy; |
| 327 | s1_start = l1 - l1_cpy; |
| 328 | |
| 329 | memcpy(dst, s1 + s1_start, l1_cpy); |
| 330 | memcpy(dst + l1_cpy, s2 + s2_start, l2_cpy); |
| 331 | |
| 332 | /* Panics must be written immediately */ |
KOSAKI Motohiro | 0f4bd46 | 2009-12-22 03:15:43 +0000 | [diff] [blame] | 333 | if (reason != KMSG_DUMP_OOPS) { |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 334 | if (!cxt->mtd->panic_write) |
| 335 | printk(KERN_ERR "mtdoops: Cannot write from panic without panic_write\n"); |
| 336 | else |
| 337 | mtdoops_write(cxt, 1); |
| 338 | return; |
| 339 | } |
| 340 | |
| 341 | /* For other cases, schedule work to write it "nicely" */ |
| 342 | schedule_work(&cxt->work_write); |
| 343 | } |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 344 | |
| 345 | static void mtdoops_notify_add(struct mtd_info *mtd) |
| 346 | { |
| 347 | struct mtdoops_context *cxt = &oops_cxt; |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 348 | u64 mtdoops_pages = div_u64(mtd->size, record_size); |
| 349 | int err; |
Simon Kagstrom | be95745 | 2009-10-29 13:41:11 +0100 | [diff] [blame] | 350 | |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 351 | if (!strcmp(mtd->name, mtddev)) |
Adrian Hunter | e2a0f25 | 2009-02-16 18:21:35 +0200 | [diff] [blame] | 352 | cxt->mtd_index = mtd->index; |
| 353 | |
Artem Bityutskiy | a15b124 | 2009-10-11 13:40:40 +0300 | [diff] [blame] | 354 | if (mtd->index != cxt->mtd_index || cxt->mtd_index < 0) |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 355 | return; |
| 356 | |
Artem Bityutskiy | a15b124 | 2009-10-11 13:40:40 +0300 | [diff] [blame] | 357 | if (mtd->size < mtd->erasesize * 2) { |
| 358 | printk(KERN_ERR "mtdoops: MTD partition %d not big enough for mtdoops\n", |
| 359 | mtd->index); |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 360 | return; |
| 361 | } |
Simon Kagstrom | 9507b0c | 2009-10-29 13:41:19 +0100 | [diff] [blame] | 362 | if (mtd->erasesize < record_size) { |
Artem Bityutskiy | a15b124 | 2009-10-11 13:40:40 +0300 | [diff] [blame] | 363 | printk(KERN_ERR "mtdoops: eraseblock size of MTD partition %d too small\n", |
| 364 | mtd->index); |
Richard Purdie | 79dcd8e | 2008-01-29 10:25:55 +0000 | [diff] [blame] | 365 | return; |
| 366 | } |
Simon Kagstrom | 1114e3d | 2009-11-03 08:08:41 +0200 | [diff] [blame] | 367 | if (mtd->size > MTDOOPS_MAX_MTD_SIZE) { |
| 368 | printk(KERN_ERR "mtdoops: mtd%d is too large (limit is %d MiB)\n", |
| 369 | mtd->index, MTDOOPS_MAX_MTD_SIZE / 1024 / 1024); |
| 370 | return; |
| 371 | } |
| 372 | |
Simon Kagstrom | be95745 | 2009-10-29 13:41:11 +0100 | [diff] [blame] | 373 | /* oops_page_used is a bit field */ |
| 374 | cxt->oops_page_used = vmalloc(DIV_ROUND_UP(mtdoops_pages, |
Roman Tereshonkov | 556f063 | 2011-11-29 12:49:18 +0200 | [diff] [blame^] | 375 | BITS_PER_LONG) * sizeof(unsigned long)); |
Simon Kagstrom | be95745 | 2009-10-29 13:41:11 +0100 | [diff] [blame] | 376 | if (!cxt->oops_page_used) { |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 377 | printk(KERN_ERR "mtdoops: could not allocate page array\n"); |
| 378 | return; |
| 379 | } |
| 380 | |
| 381 | cxt->dump.dump = mtdoops_do_dump; |
| 382 | err = kmsg_dump_register(&cxt->dump); |
| 383 | if (err) { |
| 384 | printk(KERN_ERR "mtdoops: registering kmsg dumper failed, error %d\n", err); |
| 385 | vfree(cxt->oops_page_used); |
| 386 | cxt->oops_page_used = NULL; |
Simon Kagstrom | be95745 | 2009-10-29 13:41:11 +0100 | [diff] [blame] | 387 | return; |
| 388 | } |
Simon Kagstrom | 1114e3d | 2009-11-03 08:08:41 +0200 | [diff] [blame] | 389 | |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 390 | cxt->mtd = mtd; |
Simon Kagstrom | 9507b0c | 2009-10-29 13:41:19 +0100 | [diff] [blame] | 391 | cxt->oops_pages = (int)mtd->size / record_size; |
Richard Purdie | 6ce0a85 | 2008-01-29 11:27:11 +0000 | [diff] [blame] | 392 | find_next_position(cxt); |
Richard Purdie | 79dcd8e | 2008-01-29 10:25:55 +0000 | [diff] [blame] | 393 | printk(KERN_INFO "mtdoops: Attached to MTD device %d\n", mtd->index); |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 394 | } |
| 395 | |
| 396 | static void mtdoops_notify_remove(struct mtd_info *mtd) |
| 397 | { |
| 398 | struct mtdoops_context *cxt = &oops_cxt; |
| 399 | |
Artem Bityutskiy | a15b124 | 2009-10-11 13:40:40 +0300 | [diff] [blame] | 400 | if (mtd->index != cxt->mtd_index || cxt->mtd_index < 0) |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 401 | return; |
| 402 | |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 403 | if (kmsg_dump_unregister(&cxt->dump) < 0) |
| 404 | printk(KERN_WARNING "mtdoops: could not unregister kmsg_dumper\n"); |
| 405 | |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 406 | cxt->mtd = NULL; |
Tejun Heo | 75c52a4 | 2010-12-11 17:51:44 +0100 | [diff] [blame] | 407 | flush_work_sync(&cxt->work_erase); |
| 408 | flush_work_sync(&cxt->work_write); |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 409 | } |
| 410 | |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 411 | |
| 412 | static struct mtd_notifier mtdoops_notifier = { |
| 413 | .add = mtdoops_notify_add, |
| 414 | .remove = mtdoops_notify_remove, |
| 415 | }; |
| 416 | |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 417 | static int __init mtdoops_init(void) |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 418 | { |
| 419 | struct mtdoops_context *cxt = &oops_cxt; |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 420 | int mtd_index; |
| 421 | char *endp; |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 422 | |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 423 | if (strlen(mtddev) == 0) { |
| 424 | printk(KERN_ERR "mtdoops: mtd device (mtddev=name/number) must be supplied\n"); |
| 425 | return -EINVAL; |
| 426 | } |
Simon Kagstrom | 9507b0c | 2009-10-29 13:41:19 +0100 | [diff] [blame] | 427 | if ((record_size & 4095) != 0) { |
| 428 | printk(KERN_ERR "mtdoops: record_size must be a multiple of 4096\n"); |
| 429 | return -EINVAL; |
| 430 | } |
| 431 | if (record_size < 4096) { |
| 432 | printk(KERN_ERR "mtdoops: record_size must be over 4096 bytes\n"); |
| 433 | return -EINVAL; |
| 434 | } |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 435 | |
| 436 | /* Setup the MTD device to use */ |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 437 | cxt->mtd_index = -1; |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 438 | mtd_index = simple_strtoul(mtddev, &endp, 0); |
| 439 | if (*endp == '\0') |
| 440 | cxt->mtd_index = mtd_index; |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 441 | |
Simon Kagstrom | 9507b0c | 2009-10-29 13:41:19 +0100 | [diff] [blame] | 442 | cxt->oops_buf = vmalloc(record_size); |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 443 | if (!cxt->oops_buf) { |
Artem Bityutskiy | a15b124 | 2009-10-11 13:40:40 +0300 | [diff] [blame] | 444 | printk(KERN_ERR "mtdoops: failed to allocate buffer workspace\n"); |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 445 | return -ENOMEM; |
| 446 | } |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 447 | memset(cxt->oops_buf, 0xff, record_size); |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 448 | |
Richard Purdie | 6ce0a85 | 2008-01-29 11:27:11 +0000 | [diff] [blame] | 449 | INIT_WORK(&cxt->work_erase, mtdoops_workfunc_erase); |
| 450 | INIT_WORK(&cxt->work_write, mtdoops_workfunc_write); |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 451 | |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 452 | register_mtd_user(&mtdoops_notifier); |
| 453 | return 0; |
| 454 | } |
| 455 | |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 456 | static void __exit mtdoops_exit(void) |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 457 | { |
| 458 | struct mtdoops_context *cxt = &oops_cxt; |
| 459 | |
| 460 | unregister_mtd_user(&mtdoops_notifier); |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 461 | vfree(cxt->oops_buf); |
Simon Kagstrom | be95745 | 2009-10-29 13:41:11 +0100 | [diff] [blame] | 462 | vfree(cxt->oops_page_used); |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 463 | } |
| 464 | |
| 465 | |
Simon Kagstrom | 2e386e4 | 2009-11-03 14:19:03 +0100 | [diff] [blame] | 466 | module_init(mtdoops_init); |
| 467 | module_exit(mtdoops_exit); |
Richard Purdie | 4b23aff | 2007-05-29 13:31:42 +0100 | [diff] [blame] | 468 | |
| 469 | MODULE_LICENSE("GPL"); |
| 470 | MODULE_AUTHOR("Richard Purdie <rpurdie@openedhand.com>"); |
| 471 | MODULE_DESCRIPTION("MTD Oops/Panic console logger/driver"); |