diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-01-24 13:31:34 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-01-24 13:31:34 -0500 |
| commit | b8be634e01b400fa2528848ad0cd6a5580a15bc4 (patch) | |
| tree | f36da264249540727a60e13a54d1d44c8821b48d | |
| parent | 298a4c3a57fed38df365a6807728d1930a72c728 (diff) | |
| parent | f5e2bae0aad03164ffc7ce9dfeee6608e2c87dba (diff) | |
Merge git://git.infradead.org/~dwmw2/mtd-2.6.33
* git://git.infradead.org/~dwmw2/mtd-2.6.33:
mtd: tests: fix read, speed and stress tests on NOR flash
mtd: Really add ARM pismo support
kmsg_dump: Dump on crash_kexec as well
| -rw-r--r-- | drivers/mtd/maps/Kconfig | 17 | ||||
| -rw-r--r-- | drivers/mtd/maps/pismo.c | 320 | ||||
| -rw-r--r-- | drivers/mtd/mtdoops.c | 2 | ||||
| -rw-r--r-- | drivers/mtd/tests/mtd_readtest.c | 6 | ||||
| -rw-r--r-- | drivers/mtd/tests/mtd_speedtest.c | 7 | ||||
| -rw-r--r-- | drivers/mtd/tests/mtd_stresstest.c | 6 | ||||
| -rw-r--r-- | include/linux/kmsg_dump.h | 1 | ||||
| -rw-r--r-- | include/linux/mtd/pismo.h | 17 | ||||
| -rw-r--r-- | kernel/kexec.c | 4 | ||||
| -rw-r--r-- | kernel/panic.c | 3 | ||||
| -rw-r--r-- | kernel/printk.c | 1 |
11 files changed, 379 insertions, 5 deletions
diff --git a/drivers/mtd/maps/Kconfig b/drivers/mtd/maps/Kconfig index 4c364d44ad59..2de0cc823d60 100644 --- a/drivers/mtd/maps/Kconfig +++ b/drivers/mtd/maps/Kconfig | |||
| @@ -549,4 +549,21 @@ config MTD_VMU | |||
| 549 | To build this as a module select M here, the module will be called | 549 | To build this as a module select M here, the module will be called |
| 550 | vmu-flash. | 550 | vmu-flash. |
| 551 | 551 | ||
| 552 | config MTD_PISMO | ||
| 553 | tristate "MTD discovery driver for PISMO modules" | ||
| 554 | depends on I2C | ||
| 555 | depends on ARCH_VERSATILE | ||
| 556 | help | ||
| 557 | This driver allows for discovery of PISMO modules - see | ||
| 558 | <http://www.pismoworld.org/>. These are small modules containing | ||
| 559 | up to five memory devices (eg, SRAM, flash, DOC) described by an | ||
| 560 | I2C EEPROM. | ||
| 561 | |||
| 562 | This driver does not create any MTD maps itself; instead it | ||
| 563 | creates MTD physmap and MTD SRAM platform devices. If you | ||
| 564 | enable this option, you should consider enabling MTD_PHYSMAP | ||
| 565 | and/or MTD_PLATRAM according to the devices on your module. | ||
| 566 | |||
| 567 | When built as a module, it will be called pismo.ko | ||
| 568 | |||
| 552 | endmenu | 569 | endmenu |
diff --git a/drivers/mtd/maps/pismo.c b/drivers/mtd/maps/pismo.c new file mode 100644 index 000000000000..c48cad271f5d --- /dev/null +++ b/drivers/mtd/maps/pismo.c | |||
| @@ -0,0 +1,320 @@ | |||
| 1 | /* | ||
| 2 | * PISMO memory driver - http://www.pismoworld.org/ | ||
| 3 | * | ||
| 4 | * For ARM Realview and Versatile platforms | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; either version 2 of the License. | ||
| 9 | */ | ||
| 10 | #include <linux/init.h> | ||
| 11 | #include <linux/module.h> | ||
| 12 | #include <linux/i2c.h> | ||
| 13 | #include <linux/platform_device.h> | ||
| 14 | #include <linux/spinlock.h> | ||
| 15 | #include <linux/mutex.h> | ||
| 16 | #include <linux/mtd/physmap.h> | ||
| 17 | #include <linux/mtd/plat-ram.h> | ||
| 18 | #include <linux/mtd/pismo.h> | ||
| 19 | |||
| 20 | #define PISMO_NUM_CS 5 | ||
| 21 | |||
| 22 | struct pismo_cs_block { | ||
| 23 | u8 type; | ||
| 24 | u8 width; | ||
| 25 | __le16 access; | ||
| 26 | __le32 size; | ||
| 27 | u32 reserved[2]; | ||
| 28 | char device[32]; | ||
| 29 | } __packed; | ||
| 30 | |||
| 31 | struct pismo_eeprom { | ||
| 32 | struct pismo_cs_block cs[PISMO_NUM_CS]; | ||
| 33 | char board[15]; | ||
| 34 | u8 sum; | ||
| 35 | } __packed; | ||
| 36 | |||
| 37 | struct pismo_mem { | ||
| 38 | phys_addr_t base; | ||
| 39 | u32 size; | ||
| 40 | u16 access; | ||
| 41 | u8 width; | ||
| 42 | u8 type; | ||
| 43 | }; | ||
| 44 | |||
| 45 | struct pismo_data { | ||
| 46 | struct i2c_client *client; | ||
| 47 | void (*vpp)(void *, int); | ||
| 48 | void *vpp_data; | ||
| 49 | struct platform_device *dev[PISMO_NUM_CS]; | ||
| 50 | }; | ||
| 51 | |||
| 52 | /* FIXME: set_vpp could do with a better calling convention */ | ||
| 53 | static struct pismo_data *vpp_pismo; | ||
| 54 | static DEFINE_MUTEX(pismo_mutex); | ||
| 55 | |||
| 56 | static int pismo_setvpp_probe_fix(struct pismo_data *pismo) | ||
| 57 | { | ||
| 58 | mutex_lock(&pismo_mutex); | ||
| 59 | if (vpp_pismo) { | ||
| 60 | mutex_unlock(&pismo_mutex); | ||
| 61 | kfree(pismo); | ||
| 62 | return -EBUSY; | ||
| 63 | } | ||
| 64 | vpp_pismo = pismo; | ||
| 65 | mutex_unlock(&pismo_mutex); | ||
| 66 | return 0; | ||
| 67 | } | ||
| 68 | |||
| 69 | static void pismo_setvpp_remove_fix(struct pismo_data *pismo) | ||
| 70 | { | ||
| 71 | mutex_lock(&pismo_mutex); | ||
| 72 | if (vpp_pismo == pismo) | ||
| 73 | vpp_pismo = NULL; | ||
| 74 | mutex_unlock(&pismo_mutex); | ||
| 75 | } | ||
| 76 | |||
| 77 | static void pismo_set_vpp(struct map_info *map, int on) | ||
| 78 | { | ||
| 79 | struct pismo_data *pismo = vpp_pismo; | ||
| 80 | |||
| 81 | pismo->vpp(pismo->vpp_data, on); | ||
| 82 | } | ||
| 83 | /* end of hack */ | ||
| 84 | |||
| 85 | |||
| 86 | static unsigned int __devinit pismo_width_to_bytes(unsigned int width) | ||
| 87 | { | ||
| 88 | width &= 15; | ||
| 89 | if (width > 2) | ||
| 90 | return 0; | ||
| 91 | return 1 << width; | ||
| 92 | } | ||
| 93 | |||
| 94 | static int __devinit pismo_eeprom_read(struct i2c_client *client, void *buf, | ||
| 95 | u8 addr, size_t size) | ||
| 96 | { | ||
| 97 | int ret; | ||
| 98 | struct i2c_msg msg[] = { | ||
| 99 | { | ||
| 100 | .addr = client->addr, | ||
| 101 | .len = sizeof(addr), | ||
| 102 | .buf = &addr, | ||
| 103 | }, { | ||
| 104 | .addr = client->addr, | ||
| 105 | .flags = I2C_M_RD, | ||
| 106 | .len = size, | ||
| 107 | .buf = buf, | ||
| 108 | }, | ||
| 109 | }; | ||
| 110 | |||
| 111 | ret = i2c_transfer(client->adapter, msg, ARRAY_SIZE(msg)); | ||
| 112 | |||
| 113 | return ret == ARRAY_SIZE(msg) ? size : -EIO; | ||
| 114 | } | ||
| 115 | |||
| 116 | static int __devinit pismo_add_device(struct pismo_data *pismo, int i, | ||
| 117 | struct pismo_mem *region, const char *name, void *pdata, size_t psize) | ||
| 118 | { | ||
| 119 | struct platform_device *dev; | ||
| 120 | struct resource res = { }; | ||
| 121 | phys_addr_t base = region.base; | ||
| 122 | int ret; | ||
| 123 | |||
| 124 | if (base == ~0) | ||
| 125 | return -ENXIO; | ||
| 126 | |||
| 127 | res.start = base; | ||
| 128 | res.end = base + region->size - 1; | ||
| 129 | res.flags = IORESOURCE_MEM; | ||
| 130 | |||
| 131 | dev = platform_device_alloc(name, i); | ||
| 132 | if (!dev) | ||
| 133 | return -ENOMEM; | ||
| 134 | dev->dev.parent = &pismo->client->dev; | ||
| 135 | |||
| 136 | do { | ||
| 137 | ret = platform_device_add_resources(dev, &res, 1); | ||
| 138 | if (ret) | ||
| 139 | break; | ||
| 140 | |||
| 141 | ret = platform_device_add_data(dev, pdata, psize); | ||
| 142 | if (ret) | ||
| 143 | break; | ||
| 144 | |||
| 145 | ret = platform_device_add(dev); | ||
| 146 | if (ret) | ||
| 147 | break; | ||
| 148 | |||
| 149 | pismo->dev[i] = dev; | ||
| 150 | return 0; | ||
| 151 | } while (0); | ||
| 152 | |||
| 153 | platform_device_put(dev); | ||
| 154 | return ret; | ||
| 155 | } | ||
| 156 | |||
| 157 | static int __devinit pismo_add_nor(struct pismo_data *pismo, int i, | ||
| 158 | struct pismo_mem *region) | ||
| 159 | { | ||
| 160 | struct physmap_flash_data data = { | ||
| 161 | .width = region->width, | ||
| 162 | }; | ||
| 163 | |||
| 164 | if (pismo->vpp) | ||
| 165 | data.set_vpp = pismo_set_vpp; | ||
| 166 | |||
| 167 | return pismo_add_device(pismo, i, region, "physmap-flash", | ||
| 168 | &data, sizeof(data)); | ||
| 169 | } | ||
| 170 | |||
| 171 | static int __devinit pismo_add_sram(struct pismo_data *pismo, int i, | ||
| 172 | struct pismo_mem *region) | ||
| 173 | { | ||
| 174 | struct platdata_mtd_ram data = { | ||
| 175 | .bankwidth = region->width, | ||
| 176 | }; | ||
| 177 | |||
| 178 | return pismo_add_device(pismo, i, region, "mtd-ram", | ||
| 179 | &data, sizeof(data)); | ||
| 180 | } | ||
| 181 | |||
| 182 | static void __devinit pismo_add_one(struct pismo_data *pismo, int i, | ||
| 183 | const struct pismo_cs_block *cs, phys_addr_t base) | ||
| 184 | { | ||
| 185 | struct device *dev = &pismo->client->dev; | ||
| 186 | struct pismo_mem region; | ||
| 187 | |||
| 188 | region.base = base; | ||
| 189 | region.type = cs->type; | ||
| 190 | region.width = pismo_width_to_bytes(cs->width); | ||
| 191 | region.access = le16_to_cpu(cs->access); | ||
| 192 | region.size = le32_to_cpu(cs->size); | ||
| 193 | |||
| 194 | if (region.width == 0) { | ||
| 195 | dev_err(dev, "cs%u: bad width: %02x, ignoring\n", i, cs->width); | ||
| 196 | return; | ||
| 197 | } | ||
| 198 | |||
| 199 | /* | ||
| 200 | * FIXME: may need to the platforms memory controller here, but at | ||
| 201 | * the moment we assume that it has already been correctly setup. | ||
| 202 | * The memory controller can also tell us the base address as well. | ||
| 203 | */ | ||
| 204 | |||
| 205 | dev_info(dev, "cs%u: %.32s: type %02x access %u00ps size %uK\n", | ||
| 206 | i, cs->device, region.type, region.access, region.size / 1024); | ||
| 207 | |||
| 208 | switch (region.type) { | ||
| 209 | case 0: | ||
| 210 | break; | ||
| 211 | case 1: | ||
| 212 | /* static DOC */ | ||
| 213 | break; | ||
| 214 | case 2: | ||
| 215 | /* static NOR */ | ||
| 216 | pismo_add_nor(pismo, i, ®ion); | ||
| 217 | break; | ||
| 218 | case 3: | ||
| 219 | /* static RAM */ | ||
| 220 | pismo_add_sram(pismo, i, ®ion); | ||
| 221 | break; | ||
| 222 | } | ||
| 223 | } | ||
| 224 | |||
| 225 | static int __devexit pismo_remove(struct i2c_client *client) | ||
| 226 | { | ||
| 227 | struct pismo_data *pismo = i2c_get_clientdata(client); | ||
| 228 | int i; | ||
| 229 | |||
| 230 | for (i = 0; i < ARRAY_SIZE(pismo->dev); i++) | ||
| 231 | platform_device_unregister(pismo->dev[i]); | ||
| 232 | |||
| 233 | /* FIXME: set_vpp needs saner arguments */ | ||
| 234 | pismo_setvpp_remove_fix(pismo); | ||
| 235 | |||
| 236 | kfree(pismo); | ||
| 237 | |||
| 238 | return 0; | ||
| 239 | } | ||
| 240 | |||
| 241 | static int __devinit pismo_probe(struct i2c_client *client, | ||
| 242 | const struct i2c_device_id *id) | ||
| 243 | { | ||
| 244 | struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent); | ||
| 245 | struct pismo_pdata *pdata = client->dev.platform_data; | ||
| 246 | struct pismo_eeprom eeprom; | ||
| 247 | struct pismo_data *pismo; | ||
| 248 | int ret, i; | ||
| 249 | |||
| 250 | if (!i2c_check_functionality(adapter, I2C_FUNC_I2C)) { | ||
| 251 | dev_err(&client->dev, "functionality mismatch\n"); | ||
| 252 | return -EIO; | ||
| 253 | } | ||
| 254 | |||
| 255 | pismo = kzalloc(sizeof(*pismo), GFP_KERNEL); | ||
| 256 | if (!pismo) | ||
| 257 | return -ENOMEM; | ||
| 258 | |||
| 259 | /* FIXME: set_vpp needs saner arguments */ | ||
| 260 | ret = pismo_setvpp_probe_fix(pismo); | ||
| 261 | if (ret) | ||
| 262 | return ret; | ||
| 263 | |||
| 264 | pismo->client = client; | ||
| 265 | if (pdata) { | ||
| 266 | pismo->vpp = pdata->set_vpp; | ||
| 267 | pismo->vpp_data = pdata->vpp_data; | ||
| 268 | } | ||
| 269 | i2c_set_clientdata(client, pismo); | ||
| 270 | |||
| 271 | ret = pismo_eeprom_read(client, &eeprom, 0, sizeof(eeprom)); | ||
| 272 | if (ret < 0) { | ||
| 273 | dev_err(&client->dev, "error reading EEPROM: %d\n", ret); | ||
| 274 | return ret; | ||
| 275 | } | ||
| 276 | |||
| 277 | dev_info(&client->dev, "%.15s board found\n", eeprom.board); | ||
| 278 | |||
| 279 | for (i = 0; i < ARRAY_SIZE(eeprom.cs); i++) | ||
| 280 | if (eeprom.cs[i].type != 0xff) | ||
| 281 | pismo_add_one(pismo, i, &eeprom.cs[i], | ||
| 282 | pdata->cs_addrs[i]); | ||
| 283 | |||
| 284 | return 0; | ||
| 285 | } | ||
| 286 | |||
| 287 | static const struct i2c_device_id pismo_id[] = { | ||
| 288 | { "pismo" }, | ||
| 289 | { }, | ||
| 290 | }; | ||
| 291 | MODULE_DEVICE_TABLE(i2c, pismo_id); | ||
| 292 | |||
| 293 | static struct i2c_driver pismo_driver = { | ||
| 294 | .driver = { | ||
| 295 | .name = "pismo", | ||
| 296 | .owner = THIS_MODULE, | ||
| 297 | }, | ||
| 298 | .probe = pismo_probe, | ||
| 299 | .remove = __devexit_p(pismo_remove), | ||
| 300 | .id_table = pismo_id, | ||
| 301 | }; | ||
| 302 | |||
| 303 | static int __init pismo_init(void) | ||
| 304 | { | ||
| 305 | BUILD_BUG_ON(sizeof(struct pismo_cs_block) != 48); | ||
| 306 | BUILD_BUG_ON(sizeof(struct pismo_eeprom) != 256); | ||
| 307 | |||
| 308 | return i2c_add_driver(&pismo_driver); | ||
| 309 | } | ||
| 310 | module_init(pismo_init); | ||
| 311 | |||
| 312 | static void __exit pismo_exit(void) | ||
| 313 | { | ||
| 314 | i2c_del_driver(&pismo_driver); | ||
| 315 | } | ||
| 316 | module_exit(pismo_exit); | ||
| 317 | |||
| 318 | MODULE_AUTHOR("Russell King <linux@arm.linux.org.uk>"); | ||
| 319 | MODULE_DESCRIPTION("PISMO memory driver"); | ||
| 320 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/mtd/mtdoops.c b/drivers/mtd/mtdoops.c index a714ec482761..92e12df0917f 100644 --- a/drivers/mtd/mtdoops.c +++ b/drivers/mtd/mtdoops.c | |||
| @@ -322,7 +322,7 @@ static void mtdoops_do_dump(struct kmsg_dumper *dumper, | |||
| 322 | memcpy(dst + l1_cpy, s2 + s2_start, l2_cpy); | 322 | memcpy(dst + l1_cpy, s2 + s2_start, l2_cpy); |
| 323 | 323 | ||
| 324 | /* Panics must be written immediately */ | 324 | /* Panics must be written immediately */ |
| 325 | if (reason == KMSG_DUMP_PANIC) { | 325 | if (reason != KMSG_DUMP_OOPS) { |
| 326 | if (!cxt->mtd->panic_write) | 326 | if (!cxt->mtd->panic_write) |
| 327 | printk(KERN_ERR "mtdoops: Cannot write from panic without panic_write\n"); | 327 | printk(KERN_ERR "mtdoops: Cannot write from panic without panic_write\n"); |
| 328 | else | 328 | else |
diff --git a/drivers/mtd/tests/mtd_readtest.c b/drivers/mtd/tests/mtd_readtest.c index 79fc4530987b..25c5dd03a837 100644 --- a/drivers/mtd/tests/mtd_readtest.c +++ b/drivers/mtd/tests/mtd_readtest.c | |||
| @@ -147,6 +147,10 @@ static int scan_for_bad_eraseblocks(void) | |||
| 147 | } | 147 | } |
| 148 | memset(bbt, 0 , ebcnt); | 148 | memset(bbt, 0 , ebcnt); |
| 149 | 149 | ||
| 150 | /* NOR flash does not implement block_isbad */ | ||
| 151 | if (mtd->block_isbad == NULL) | ||
| 152 | return 0; | ||
| 153 | |||
| 150 | printk(PRINT_PREF "scanning for bad eraseblocks\n"); | 154 | printk(PRINT_PREF "scanning for bad eraseblocks\n"); |
| 151 | for (i = 0; i < ebcnt; ++i) { | 155 | for (i = 0; i < ebcnt; ++i) { |
| 152 | bbt[i] = is_block_bad(i) ? 1 : 0; | 156 | bbt[i] = is_block_bad(i) ? 1 : 0; |
| @@ -184,7 +188,7 @@ static int __init mtd_readtest_init(void) | |||
| 184 | tmp = mtd->size; | 188 | tmp = mtd->size; |
| 185 | do_div(tmp, mtd->erasesize); | 189 | do_div(tmp, mtd->erasesize); |
| 186 | ebcnt = tmp; | 190 | ebcnt = tmp; |
| 187 | pgcnt = mtd->erasesize / mtd->writesize; | 191 | pgcnt = mtd->erasesize / pgsize; |
| 188 | 192 | ||
| 189 | printk(PRINT_PREF "MTD device size %llu, eraseblock size %u, " | 193 | printk(PRINT_PREF "MTD device size %llu, eraseblock size %u, " |
| 190 | "page size %u, count of eraseblocks %u, pages per " | 194 | "page size %u, count of eraseblocks %u, pages per " |
diff --git a/drivers/mtd/tests/mtd_speedtest.c b/drivers/mtd/tests/mtd_speedtest.c index 141363a7e805..7fbb51d4eabe 100644 --- a/drivers/mtd/tests/mtd_speedtest.c +++ b/drivers/mtd/tests/mtd_speedtest.c | |||
| @@ -301,6 +301,10 @@ static int scan_for_bad_eraseblocks(void) | |||
| 301 | } | 301 | } |
| 302 | memset(bbt, 0 , ebcnt); | 302 | memset(bbt, 0 , ebcnt); |
| 303 | 303 | ||
| 304 | /* NOR flash does not implement block_isbad */ | ||
| 305 | if (mtd->block_isbad == NULL) | ||
| 306 | goto out; | ||
| 307 | |||
| 304 | printk(PRINT_PREF "scanning for bad eraseblocks\n"); | 308 | printk(PRINT_PREF "scanning for bad eraseblocks\n"); |
| 305 | for (i = 0; i < ebcnt; ++i) { | 309 | for (i = 0; i < ebcnt; ++i) { |
| 306 | bbt[i] = is_block_bad(i) ? 1 : 0; | 310 | bbt[i] = is_block_bad(i) ? 1 : 0; |
| @@ -309,6 +313,7 @@ static int scan_for_bad_eraseblocks(void) | |||
| 309 | cond_resched(); | 313 | cond_resched(); |
| 310 | } | 314 | } |
| 311 | printk(PRINT_PREF "scanned %d eraseblocks, %d are bad\n", i, bad); | 315 | printk(PRINT_PREF "scanned %d eraseblocks, %d are bad\n", i, bad); |
| 316 | out: | ||
| 312 | goodebcnt = ebcnt - bad; | 317 | goodebcnt = ebcnt - bad; |
| 313 | return 0; | 318 | return 0; |
| 314 | } | 319 | } |
| @@ -340,7 +345,7 @@ static int __init mtd_speedtest_init(void) | |||
| 340 | tmp = mtd->size; | 345 | tmp = mtd->size; |
| 341 | do_div(tmp, mtd->erasesize); | 346 | do_div(tmp, mtd->erasesize); |
| 342 | ebcnt = tmp; | 347 | ebcnt = tmp; |
| 343 | pgcnt = mtd->erasesize / mtd->writesize; | 348 | pgcnt = mtd->erasesize / pgsize; |
| 344 | 349 | ||
| 345 | printk(PRINT_PREF "MTD device size %llu, eraseblock size %u, " | 350 | printk(PRINT_PREF "MTD device size %llu, eraseblock size %u, " |
| 346 | "page size %u, count of eraseblocks %u, pages per " | 351 | "page size %u, count of eraseblocks %u, pages per " |
diff --git a/drivers/mtd/tests/mtd_stresstest.c b/drivers/mtd/tests/mtd_stresstest.c index 63920476b57a..a99d3cd737d8 100644 --- a/drivers/mtd/tests/mtd_stresstest.c +++ b/drivers/mtd/tests/mtd_stresstest.c | |||
| @@ -227,6 +227,10 @@ static int scan_for_bad_eraseblocks(void) | |||
| 227 | } | 227 | } |
| 228 | memset(bbt, 0 , ebcnt); | 228 | memset(bbt, 0 , ebcnt); |
| 229 | 229 | ||
| 230 | /* NOR flash does not implement block_isbad */ | ||
| 231 | if (mtd->block_isbad == NULL) | ||
| 232 | return 0; | ||
| 233 | |||
| 230 | printk(PRINT_PREF "scanning for bad eraseblocks\n"); | 234 | printk(PRINT_PREF "scanning for bad eraseblocks\n"); |
| 231 | for (i = 0; i < ebcnt; ++i) { | 235 | for (i = 0; i < ebcnt; ++i) { |
| 232 | bbt[i] = is_block_bad(i) ? 1 : 0; | 236 | bbt[i] = is_block_bad(i) ? 1 : 0; |
| @@ -265,7 +269,7 @@ static int __init mtd_stresstest_init(void) | |||
| 265 | tmp = mtd->size; | 269 | tmp = mtd->size; |
| 266 | do_div(tmp, mtd->erasesize); | 270 | do_div(tmp, mtd->erasesize); |
| 267 | ebcnt = tmp; | 271 | ebcnt = tmp; |
| 268 | pgcnt = mtd->erasesize / mtd->writesize; | 272 | pgcnt = mtd->erasesize / pgsize; |
| 269 | 273 | ||
| 270 | printk(PRINT_PREF "MTD device size %llu, eraseblock size %u, " | 274 | printk(PRINT_PREF "MTD device size %llu, eraseblock size %u, " |
| 271 | "page size %u, count of eraseblocks %u, pages per " | 275 | "page size %u, count of eraseblocks %u, pages per " |
diff --git a/include/linux/kmsg_dump.h b/include/linux/kmsg_dump.h index e32aa268efac..24b44145a886 100644 --- a/include/linux/kmsg_dump.h +++ b/include/linux/kmsg_dump.h | |||
| @@ -17,6 +17,7 @@ | |||
| 17 | enum kmsg_dump_reason { | 17 | enum kmsg_dump_reason { |
| 18 | KMSG_DUMP_OOPS, | 18 | KMSG_DUMP_OOPS, |
| 19 | KMSG_DUMP_PANIC, | 19 | KMSG_DUMP_PANIC, |
| 20 | KMSG_DUMP_KEXEC, | ||
| 20 | }; | 21 | }; |
| 21 | 22 | ||
| 22 | /** | 23 | /** |
diff --git a/include/linux/mtd/pismo.h b/include/linux/mtd/pismo.h new file mode 100644 index 000000000000..8dfb7e1421c5 --- /dev/null +++ b/include/linux/mtd/pismo.h | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | /* | ||
| 2 | * PISMO memory driver - http://www.pismoworld.org/ | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License as published by | ||
| 6 | * the Free Software Foundation; either version 2 of the License. | ||
| 7 | */ | ||
| 8 | #ifndef __LINUX_MTD_PISMO_H | ||
| 9 | #define __LINUX_MTD_PISMO_H | ||
| 10 | |||
| 11 | struct pismo_pdata { | ||
| 12 | void (*set_vpp)(void *, int); | ||
| 13 | void *vpp_data; | ||
| 14 | phys_addr_t cs_addrs[5]; | ||
| 15 | }; | ||
| 16 | |||
| 17 | #endif | ||
diff --git a/kernel/kexec.c b/kernel/kexec.c index a9a93d9ee7a7..ef077fb73155 100644 --- a/kernel/kexec.c +++ b/kernel/kexec.c | |||
| @@ -32,6 +32,7 @@ | |||
| 32 | #include <linux/console.h> | 32 | #include <linux/console.h> |
| 33 | #include <linux/vmalloc.h> | 33 | #include <linux/vmalloc.h> |
| 34 | #include <linux/swap.h> | 34 | #include <linux/swap.h> |
| 35 | #include <linux/kmsg_dump.h> | ||
| 35 | 36 | ||
| 36 | #include <asm/page.h> | 37 | #include <asm/page.h> |
| 37 | #include <asm/uaccess.h> | 38 | #include <asm/uaccess.h> |
| @@ -1074,6 +1075,9 @@ void crash_kexec(struct pt_regs *regs) | |||
| 1074 | if (mutex_trylock(&kexec_mutex)) { | 1075 | if (mutex_trylock(&kexec_mutex)) { |
| 1075 | if (kexec_crash_image) { | 1076 | if (kexec_crash_image) { |
| 1076 | struct pt_regs fixed_regs; | 1077 | struct pt_regs fixed_regs; |
| 1078 | |||
| 1079 | kmsg_dump(KMSG_DUMP_KEXEC); | ||
| 1080 | |||
| 1077 | crash_setup_regs(&fixed_regs, regs); | 1081 | crash_setup_regs(&fixed_regs, regs); |
| 1078 | crash_save_vmcoreinfo(); | 1082 | crash_save_vmcoreinfo(); |
| 1079 | machine_crash_shutdown(&fixed_regs); | 1083 | machine_crash_shutdown(&fixed_regs); |
diff --git a/kernel/panic.c b/kernel/panic.c index 5827f7b97254..c787333282b8 100644 --- a/kernel/panic.c +++ b/kernel/panic.c | |||
| @@ -75,7 +75,6 @@ NORET_TYPE void panic(const char * fmt, ...) | |||
| 75 | dump_stack(); | 75 | dump_stack(); |
| 76 | #endif | 76 | #endif |
| 77 | 77 | ||
| 78 | kmsg_dump(KMSG_DUMP_PANIC); | ||
| 79 | /* | 78 | /* |
| 80 | * If we have crashed and we have a crash kernel loaded let it handle | 79 | * If we have crashed and we have a crash kernel loaded let it handle |
| 81 | * everything else. | 80 | * everything else. |
| @@ -83,6 +82,8 @@ NORET_TYPE void panic(const char * fmt, ...) | |||
| 83 | */ | 82 | */ |
| 84 | crash_kexec(NULL); | 83 | crash_kexec(NULL); |
| 85 | 84 | ||
| 85 | kmsg_dump(KMSG_DUMP_PANIC); | ||
| 86 | |||
| 86 | /* | 87 | /* |
| 87 | * Note smp_send_stop is the usual smp shutdown function, which | 88 | * Note smp_send_stop is the usual smp shutdown function, which |
| 88 | * unfortunately means it may not be hardened to work in a panic | 89 | * unfortunately means it may not be hardened to work in a panic |
diff --git a/kernel/printk.c b/kernel/printk.c index 17463ca2e229..1751c456b71f 100644 --- a/kernel/printk.c +++ b/kernel/printk.c | |||
| @@ -1467,6 +1467,7 @@ EXPORT_SYMBOL_GPL(kmsg_dump_unregister); | |||
| 1467 | static const char const *kmsg_reasons[] = { | 1467 | static const char const *kmsg_reasons[] = { |
| 1468 | [KMSG_DUMP_OOPS] = "oops", | 1468 | [KMSG_DUMP_OOPS] = "oops", |
| 1469 | [KMSG_DUMP_PANIC] = "panic", | 1469 | [KMSG_DUMP_PANIC] = "panic", |
| 1470 | [KMSG_DUMP_KEXEC] = "kexec", | ||
| 1470 | }; | 1471 | }; |
| 1471 | 1472 | ||
| 1472 | static const char *kmsg_to_str(enum kmsg_dump_reason reason) | 1473 | static const char *kmsg_to_str(enum kmsg_dump_reason reason) |
