2 * Common Flash Interface support:
3 * Intel Extended Vendor Command Set (ID 0x0001)
5 * (C) 2000 Red Hat. GPL'd
7 * $Id: cfi_cmdset_0001.c,v 1.186 2005/11/23 22:07:52 nico Exp $
10 * 10/10/2000 Nicolas Pitre <nico@cam.org>
11 * - completely revamped method functions so they are aware and
12 * independent of the flash geometry (buswidth, interleave, etc.)
13 * - scalability vs code size is completely set at compile-time
14 * (see include/linux/mtd/cfi.h for selection)
15 * - optimized write buffer method
16 * 02/05/2002 Christopher Hoover <ch@hpl.hp.com>/<ch@murgatroid.com>
17 * - reworked lock/unlock/erase support for var size flash
18 * 21/03/2007 Rodolfo Giometti <giometti@linux.it>
19 * - auto unlock sectors on resume for auto locking flash on power up
22 #include <linux/module.h>
23 #include <linux/types.h>
24 #include <linux/kernel.h>
25 #include <linux/sched.h>
26 #include <linux/init.h>
28 #include <asm/byteorder.h>
30 #include <linux/errno.h>
31 #include <linux/slab.h>
32 #include <linux/delay.h>
33 #include <linux/interrupt.h>
34 #include <linux/reboot.h>
35 #include <linux/bitmap.h>
36 #include <linux/mtd/xip.h>
37 #include <linux/mtd/map.h>
38 #include <linux/mtd/mtd.h>
39 #include <linux/mtd/compatmac.h>
40 #include <linux/mtd/cfi.h>
42 /* #define CMDSET0001_DISABLE_ERASE_SUSPEND_ON_WRITE */
43 /* #define CMDSET0001_DISABLE_WRITE_SUSPEND */
45 // debugging, turns off buffer write mode if set to 1
46 #define FORCE_WORD_WRITE 0
48 #define MANUFACTURER_INTEL 0x0089
49 #define I82802AB 0x00ad
50 #define I82802AC 0x00ac
51 #define MANUFACTURER_ST 0x0020
52 #define M50LPW080 0x002F
53 #define AT49BV640D 0x02de
55 static int cfi_intelext_read (struct mtd_info *, loff_t, size_t, size_t *, u_char *);
56 static int cfi_intelext_write_words(struct mtd_info *, loff_t, size_t, size_t *, const u_char *);
57 static int cfi_intelext_write_buffers(struct mtd_info *, loff_t, size_t, size_t *, const u_char *);
58 static int cfi_intelext_writev(struct mtd_info *, const struct kvec *, unsigned long, loff_t, size_t *);
59 static int cfi_intelext_erase_varsize(struct mtd_info *, struct erase_info *);
60 static void cfi_intelext_sync (struct mtd_info *);
61 static int cfi_intelext_lock(struct mtd_info *mtd, loff_t ofs, size_t len);
62 static int cfi_intelext_unlock(struct mtd_info *mtd, loff_t ofs, size_t len);
64 static int cfi_intelext_read_fact_prot_reg (struct mtd_info *, loff_t, size_t, size_t *, u_char *);
65 static int cfi_intelext_read_user_prot_reg (struct mtd_info *, loff_t, size_t, size_t *, u_char *);
66 static int cfi_intelext_write_user_prot_reg (struct mtd_info *, loff_t, size_t, size_t *, u_char *);
67 static int cfi_intelext_lock_user_prot_reg (struct mtd_info *, loff_t, size_t);
68 static int cfi_intelext_get_fact_prot_info (struct mtd_info *,
69 struct otp_info *, size_t);
70 static int cfi_intelext_get_user_prot_info (struct mtd_info *,
71 struct otp_info *, size_t);
73 static int cfi_intelext_suspend (struct mtd_info *);
74 static void cfi_intelext_resume (struct mtd_info *);
75 static int cfi_intelext_reboot (struct notifier_block *, unsigned long, void *);
77 static void cfi_intelext_destroy(struct mtd_info *);
79 struct mtd_info *cfi_cmdset_0001(struct map_info *, int);
81 static struct mtd_info *cfi_intelext_setup (struct mtd_info *);
82 static int cfi_intelext_partition_fixup(struct mtd_info *, struct cfi_private **);
84 static int cfi_intelext_point (struct mtd_info *mtd, loff_t from, size_t len,
85 size_t *retlen, void **virt, resource_size_t *phys);
86 static void cfi_intelext_unpoint(struct mtd_info *mtd, loff_t from, size_t len);
88 static int chip_ready (struct map_info *map, struct flchip *chip, unsigned long adr, int mode);
89 static int get_chip(struct map_info *map, struct flchip *chip, unsigned long adr, int mode);
90 static void put_chip(struct map_info *map, struct flchip *chip, unsigned long adr);
96 * *********** SETUP AND PROBE BITS ***********
99 static struct mtd_chip_driver cfi_intelext_chipdrv = {
100 .probe = NULL, /* Not usable directly */
101 .destroy = cfi_intelext_destroy,
102 .name = "cfi_cmdset_0001",
103 .module = THIS_MODULE
106 /* #define DEBUG_LOCK_BITS */
107 /* #define DEBUG_CFI_FEATURES */
109 #ifdef DEBUG_CFI_FEATURES
110 static void cfi_tell_features(struct cfi_pri_intelext *extp)
113 printk(" Extended Query version %c.%c\n", extp->MajorVersion, extp->MinorVersion);
114 printk(" Feature/Command Support: %4.4X\n", extp->FeatureSupport);
115 printk(" - Chip Erase: %s\n", extp->FeatureSupport&1?"supported":"unsupported");
116 printk(" - Suspend Erase: %s\n", extp->FeatureSupport&2?"supported":"unsupported");
117 printk(" - Suspend Program: %s\n", extp->FeatureSupport&4?"supported":"unsupported");
118 printk(" - Legacy Lock/Unlock: %s\n", extp->FeatureSupport&8?"supported":"unsupported");
119 printk(" - Queued Erase: %s\n", extp->FeatureSupport&16?"supported":"unsupported");
120 printk(" - Instant block lock: %s\n", extp->FeatureSupport&32?"supported":"unsupported");
121 printk(" - Protection Bits: %s\n", extp->FeatureSupport&64?"supported":"unsupported");
122 printk(" - Page-mode read: %s\n", extp->FeatureSupport&128?"supported":"unsupported");
123 printk(" - Synchronous read: %s\n", extp->FeatureSupport&256?"supported":"unsupported");
124 printk(" - Simultaneous operations: %s\n", extp->FeatureSupport&512?"supported":"unsupported");
125 printk(" - Extended Flash Array: %s\n", extp->FeatureSupport&1024?"supported":"unsupported");
126 for (i=11; i<32; i++) {
127 if (extp->FeatureSupport & (1<<i))
128 printk(" - Unknown Bit %X: supported\n", i);
131 printk(" Supported functions after Suspend: %2.2X\n", extp->SuspendCmdSupport);
132 printk(" - Program after Erase Suspend: %s\n", extp->SuspendCmdSupport&1?"supported":"unsupported");
133 for (i=1; i<8; i++) {
134 if (extp->SuspendCmdSupport & (1<<i))
135 printk(" - Unknown Bit %X: supported\n", i);
138 printk(" Block Status Register Mask: %4.4X\n", extp->BlkStatusRegMask);
139 printk(" - Lock Bit Active: %s\n", extp->BlkStatusRegMask&1?"yes":"no");
140 printk(" - Lock-Down Bit Active: %s\n", extp->BlkStatusRegMask&2?"yes":"no");
141 for (i=2; i<3; i++) {
142 if (extp->BlkStatusRegMask & (1<<i))
143 printk(" - Unknown Bit %X Active: yes\n",i);
145 printk(" - EFA Lock Bit: %s\n", extp->BlkStatusRegMask&16?"yes":"no");
146 printk(" - EFA Lock-Down Bit: %s\n", extp->BlkStatusRegMask&32?"yes":"no");
147 for (i=6; i<16; i++) {
148 if (extp->BlkStatusRegMask & (1<<i))
149 printk(" - Unknown Bit %X Active: yes\n",i);
152 printk(" Vcc Logic Supply Optimum Program/Erase Voltage: %d.%d V\n",
153 extp->VccOptimal >> 4, extp->VccOptimal & 0xf);
154 if (extp->VppOptimal)
155 printk(" Vpp Programming Supply Optimum Program/Erase Voltage: %d.%d V\n",
156 extp->VppOptimal >> 4, extp->VppOptimal & 0xf);
160 /* Atmel chips don't use the same PRI format as Intel chips */
161 static void fixup_convert_atmel_pri(struct mtd_info *mtd, void *param)
163 struct map_info *map = mtd->priv;
164 struct cfi_private *cfi = map->fldrv_priv;
165 struct cfi_pri_intelext *extp = cfi->cmdset_priv;
166 struct cfi_pri_atmel atmel_pri;
167 uint32_t features = 0;
169 /* Reverse byteswapping */
170 extp->FeatureSupport = cpu_to_le32(extp->FeatureSupport);
171 extp->BlkStatusRegMask = cpu_to_le16(extp->BlkStatusRegMask);
172 extp->ProtRegAddr = cpu_to_le16(extp->ProtRegAddr);
174 memcpy(&atmel_pri, extp, sizeof(atmel_pri));
175 memset((char *)extp + 5, 0, sizeof(*extp) - 5);
177 printk(KERN_ERR "atmel Features: %02x\n", atmel_pri.Features);
179 if (atmel_pri.Features & 0x01) /* chip erase supported */
181 if (atmel_pri.Features & 0x02) /* erase suspend supported */
183 if (atmel_pri.Features & 0x04) /* program suspend supported */
185 if (atmel_pri.Features & 0x08) /* simultaneous operations supported */
187 if (atmel_pri.Features & 0x20) /* page mode read supported */
189 if (atmel_pri.Features & 0x40) /* queued erase supported */
191 if (atmel_pri.Features & 0x80) /* Protection bits supported */
194 extp->FeatureSupport = features;
196 /* burst write mode not supported */
197 cfi->cfiq->BufWriteTimeoutTyp = 0;
198 cfi->cfiq->BufWriteTimeoutMax = 0;
201 #ifdef CMDSET0001_DISABLE_ERASE_SUSPEND_ON_WRITE
202 /* Some Intel Strata Flash prior to FPO revision C has bugs in this area */
203 static void fixup_intel_strataflash(struct mtd_info *mtd, void* param)
205 struct map_info *map = mtd->priv;
206 struct cfi_private *cfi = map->fldrv_priv;
207 struct cfi_pri_amdstd *extp = cfi->cmdset_priv;
209 printk(KERN_WARNING "cfi_cmdset_0001: Suspend "
210 "erase on write disabled.\n");
211 extp->SuspendCmdSupport &= ~1;
215 #ifdef CMDSET0001_DISABLE_WRITE_SUSPEND
216 static void fixup_no_write_suspend(struct mtd_info *mtd, void* param)
218 struct map_info *map = mtd->priv;
219 struct cfi_private *cfi = map->fldrv_priv;
220 struct cfi_pri_intelext *cfip = cfi->cmdset_priv;
222 if (cfip && (cfip->FeatureSupport&4)) {
223 cfip->FeatureSupport &= ~4;
224 printk(KERN_WARNING "cfi_cmdset_0001: write suspend disabled\n");
229 static void fixup_st_m28w320ct(struct mtd_info *mtd, void* param)
231 struct map_info *map = mtd->priv;
232 struct cfi_private *cfi = map->fldrv_priv;
234 cfi->cfiq->BufWriteTimeoutTyp = 0; /* Not supported */
235 cfi->cfiq->BufWriteTimeoutMax = 0; /* Not supported */
238 static void fixup_st_m28w320cb(struct mtd_info *mtd, void* param)
240 struct map_info *map = mtd->priv;
241 struct cfi_private *cfi = map->fldrv_priv;
243 /* Note this is done after the region info is endian swapped */
244 cfi->cfiq->EraseRegionInfo[1] =
245 (cfi->cfiq->EraseRegionInfo[1] & 0xffff0000) | 0x3e;
248 static void fixup_use_point(struct mtd_info *mtd, void *param)
250 struct map_info *map = mtd->priv;
251 if (!mtd->point && map_is_linear(map)) {
252 mtd->point = cfi_intelext_point;
253 mtd->unpoint = cfi_intelext_unpoint;
257 static void fixup_use_write_buffers(struct mtd_info *mtd, void *param)
259 struct map_info *map = mtd->priv;
260 struct cfi_private *cfi = map->fldrv_priv;
261 if (cfi->cfiq->BufWriteTimeoutTyp) {
262 printk(KERN_INFO "Using buffer write method\n" );
263 mtd->write = cfi_intelext_write_buffers;
264 mtd->writev = cfi_intelext_writev;
269 * Some chips power-up with all sectors locked by default.
271 static void fixup_unlock_powerup_lock(struct mtd_info *mtd, void *param)
273 struct map_info *map = mtd->priv;
274 struct cfi_private *cfi = map->fldrv_priv;
275 struct cfi_pri_intelext *cfip = cfi->cmdset_priv;
277 if (cfip->FeatureSupport&32) {
278 printk(KERN_INFO "Using auto-unlock on power-up/resume\n" );
279 mtd->flags |= MTD_POWERUP_LOCK;
283 static struct cfi_fixup cfi_fixup_table[] = {
284 { CFI_MFR_ATMEL, CFI_ID_ANY, fixup_convert_atmel_pri, NULL },
285 #ifdef CMDSET0001_DISABLE_ERASE_SUSPEND_ON_WRITE
286 { CFI_MFR_ANY, CFI_ID_ANY, fixup_intel_strataflash, NULL },
288 #ifdef CMDSET0001_DISABLE_WRITE_SUSPEND
289 { CFI_MFR_ANY, CFI_ID_ANY, fixup_no_write_suspend, NULL },
291 #if !FORCE_WORD_WRITE
292 { CFI_MFR_ANY, CFI_ID_ANY, fixup_use_write_buffers, NULL },
294 { CFI_MFR_ST, 0x00ba, /* M28W320CT */ fixup_st_m28w320ct, NULL },
295 { CFI_MFR_ST, 0x00bb, /* M28W320CB */ fixup_st_m28w320cb, NULL },
296 { MANUFACTURER_INTEL, CFI_ID_ANY, fixup_unlock_powerup_lock, NULL, },
300 static struct cfi_fixup jedec_fixup_table[] = {
301 { MANUFACTURER_INTEL, I82802AB, fixup_use_fwh_lock, NULL, },
302 { MANUFACTURER_INTEL, I82802AC, fixup_use_fwh_lock, NULL, },
303 { MANUFACTURER_ST, M50LPW080, fixup_use_fwh_lock, NULL, },
306 static struct cfi_fixup fixup_table[] = {
307 /* The CFI vendor ids and the JEDEC vendor IDs appear
308 * to be common. It is like the devices id's are as
309 * well. This table is to pick all cases where
310 * we know that is the case.
312 { CFI_MFR_ANY, CFI_ID_ANY, fixup_use_point, NULL },
316 static inline struct cfi_pri_intelext *
317 read_pri_intelext(struct map_info *map, __u16 adr)
319 struct cfi_pri_intelext *extp;
320 unsigned int extp_size = sizeof(*extp);
323 extp = (struct cfi_pri_intelext *)cfi_read_pri(map, adr, extp_size, "Intel/Sharp");
327 if (extp->MajorVersion != '1' ||
328 (extp->MinorVersion < '0' || extp->MinorVersion > '5')) {
329 printk(KERN_ERR " Unknown Intel/Sharp Extended Query "
330 "version %c.%c.\n", extp->MajorVersion,
336 /* Do some byteswapping if necessary */
337 extp->FeatureSupport = le32_to_cpu(extp->FeatureSupport);
338 extp->BlkStatusRegMask = le16_to_cpu(extp->BlkStatusRegMask);
339 extp->ProtRegAddr = le16_to_cpu(extp->ProtRegAddr);
341 if (extp->MajorVersion == '1' && extp->MinorVersion >= '3') {
342 unsigned int extra_size = 0;
345 /* Protection Register info */
346 extra_size += (extp->NumProtectionFields - 1) *
347 sizeof(struct cfi_intelext_otpinfo);
349 /* Burst Read info */
351 if (extp_size < sizeof(*extp) + extra_size)
353 extra_size += extp->extra[extra_size-1];
355 /* Number of hardware-partitions */
357 if (extp_size < sizeof(*extp) + extra_size)
359 nb_parts = extp->extra[extra_size - 1];
361 /* skip the sizeof(partregion) field in CFI 1.4 */
362 if (extp->MinorVersion >= '4')
365 for (i = 0; i < nb_parts; i++) {
366 struct cfi_intelext_regioninfo *rinfo;
367 rinfo = (struct cfi_intelext_regioninfo *)&extp->extra[extra_size];
368 extra_size += sizeof(*rinfo);
369 if (extp_size < sizeof(*extp) + extra_size)
371 rinfo->NumIdentPartitions=le16_to_cpu(rinfo->NumIdentPartitions);
372 extra_size += (rinfo->NumBlockTypes - 1)
373 * sizeof(struct cfi_intelext_blockinfo);
376 if (extp->MinorVersion >= '4')
377 extra_size += sizeof(struct cfi_intelext_programming_regioninfo);
379 if (extp_size < sizeof(*extp) + extra_size) {
381 extp_size = sizeof(*extp) + extra_size;
383 if (extp_size > 4096) {
385 "%s: cfi_pri_intelext is too fat\n",
396 struct mtd_info *cfi_cmdset_0001(struct map_info *map, int primary)
398 struct cfi_private *cfi = map->fldrv_priv;
399 struct mtd_info *mtd;
402 mtd = kzalloc(sizeof(*mtd), GFP_KERNEL);
404 printk(KERN_ERR "Failed to allocate memory for MTD device\n");
408 mtd->type = MTD_NORFLASH;
410 /* Fill in the default mtd operations */
411 mtd->erase = cfi_intelext_erase_varsize;
412 mtd->read = cfi_intelext_read;
413 mtd->write = cfi_intelext_write_words;
414 mtd->sync = cfi_intelext_sync;
415 mtd->lock = cfi_intelext_lock;
416 mtd->unlock = cfi_intelext_unlock;
417 mtd->suspend = cfi_intelext_suspend;
418 mtd->resume = cfi_intelext_resume;
419 mtd->flags = MTD_CAP_NORFLASH;
420 mtd->name = map->name;
423 mtd->reboot_notifier.notifier_call = cfi_intelext_reboot;
425 if (cfi->cfi_mode == CFI_MODE_CFI) {
427 * It's a real CFI chip, not one for which the probe
428 * routine faked a CFI structure. So we read the feature
431 __u16 adr = primary?cfi->cfiq->P_ADR:cfi->cfiq->A_ADR;
432 struct cfi_pri_intelext *extp;
434 extp = read_pri_intelext(map, adr);
440 /* Install our own private info structure */
441 cfi->cmdset_priv = extp;
443 cfi_fixup(mtd, cfi_fixup_table);
445 #ifdef DEBUG_CFI_FEATURES
446 /* Tell the user about it in lots of lovely detail */
447 cfi_tell_features(extp);
450 if(extp->SuspendCmdSupport & 1) {
451 printk(KERN_NOTICE "cfi_cmdset_0001: Erase suspend on write enabled\n");
454 else if (cfi->cfi_mode == CFI_MODE_JEDEC) {
455 /* Apply jedec specific fixups */
456 cfi_fixup(mtd, jedec_fixup_table);
458 /* Apply generic fixups */
459 cfi_fixup(mtd, fixup_table);
461 for (i=0; i< cfi->numchips; i++) {
462 if (cfi->cfiq->WordWriteTimeoutTyp)
463 cfi->chips[i].word_write_time =
464 1<<cfi->cfiq->WordWriteTimeoutTyp;
466 cfi->chips[i].word_write_time = 50000;
468 if (cfi->cfiq->BufWriteTimeoutTyp)
469 cfi->chips[i].buffer_write_time =
470 1<<cfi->cfiq->BufWriteTimeoutTyp;
471 /* No default; if it isn't specified, we won't use it */
473 if (cfi->cfiq->BlockEraseTimeoutTyp)
474 cfi->chips[i].erase_time =
475 1000<<cfi->cfiq->BlockEraseTimeoutTyp;
477 cfi->chips[i].erase_time = 2000000;
479 cfi->chips[i].ref_point_counter = 0;
480 init_waitqueue_head(&(cfi->chips[i].wq));
483 map->fldrv = &cfi_intelext_chipdrv;
485 return cfi_intelext_setup(mtd);
487 struct mtd_info *cfi_cmdset_0003(struct map_info *map, int primary) __attribute__((alias("cfi_cmdset_0001")));
488 struct mtd_info *cfi_cmdset_0200(struct map_info *map, int primary) __attribute__((alias("cfi_cmdset_0001")));
489 EXPORT_SYMBOL_GPL(cfi_cmdset_0001);
490 EXPORT_SYMBOL_GPL(cfi_cmdset_0003);
491 EXPORT_SYMBOL_GPL(cfi_cmdset_0200);
493 static struct mtd_info *cfi_intelext_setup(struct mtd_info *mtd)
495 struct map_info *map = mtd->priv;
496 struct cfi_private *cfi = map->fldrv_priv;
497 unsigned long offset = 0;
499 unsigned long devsize = (1<<cfi->cfiq->DevSize) * cfi->interleave;
501 //printk(KERN_DEBUG "number of CFI chips: %d\n", cfi->numchips);
503 mtd->size = devsize * cfi->numchips;
505 mtd->numeraseregions = cfi->cfiq->NumEraseRegions * cfi->numchips;
506 mtd->eraseregions = kmalloc(sizeof(struct mtd_erase_region_info)
507 * mtd->numeraseregions, GFP_KERNEL);
508 if (!mtd->eraseregions) {
509 printk(KERN_ERR "Failed to allocate memory for MTD erase region info\n");
513 for (i=0; i<cfi->cfiq->NumEraseRegions; i++) {
514 unsigned long ernum, ersize;
515 ersize = ((cfi->cfiq->EraseRegionInfo[i] >> 8) & ~0xff) * cfi->interleave;
516 ernum = (cfi->cfiq->EraseRegionInfo[i] & 0xffff) + 1;
518 if (mtd->erasesize < ersize) {
519 mtd->erasesize = ersize;
521 for (j=0; j<cfi->numchips; j++) {
522 mtd->eraseregions[(j*cfi->cfiq->NumEraseRegions)+i].offset = (j*devsize)+offset;
523 mtd->eraseregions[(j*cfi->cfiq->NumEraseRegions)+i].erasesize = ersize;
524 mtd->eraseregions[(j*cfi->cfiq->NumEraseRegions)+i].numblocks = ernum;
525 mtd->eraseregions[(j*cfi->cfiq->NumEraseRegions)+i].lockmap = kmalloc(ernum / 8 + 1, GFP_KERNEL);
527 offset += (ersize * ernum);
530 if (offset != devsize) {
532 printk(KERN_WARNING "Sum of regions (%lx) != total size of set of interleaved chips (%lx)\n", offset, devsize);
536 for (i=0; i<mtd->numeraseregions;i++){
537 printk(KERN_DEBUG "erase region %d: offset=0x%x,size=0x%x,blocks=%d\n",
538 i,mtd->eraseregions[i].offset,
539 mtd->eraseregions[i].erasesize,
540 mtd->eraseregions[i].numblocks);
543 #ifdef CONFIG_MTD_OTP
544 mtd->read_fact_prot_reg = cfi_intelext_read_fact_prot_reg;
545 mtd->read_user_prot_reg = cfi_intelext_read_user_prot_reg;
546 mtd->write_user_prot_reg = cfi_intelext_write_user_prot_reg;
547 mtd->lock_user_prot_reg = cfi_intelext_lock_user_prot_reg;
548 mtd->get_fact_prot_info = cfi_intelext_get_fact_prot_info;
549 mtd->get_user_prot_info = cfi_intelext_get_user_prot_info;
552 /* This function has the potential to distort the reality
553 a bit and therefore should be called last. */
554 if (cfi_intelext_partition_fixup(mtd, &cfi) != 0)
557 __module_get(THIS_MODULE);
558 register_reboot_notifier(&mtd->reboot_notifier);
563 kfree(mtd->eraseregions);
566 kfree(cfi->cmdset_priv);
570 static int cfi_intelext_partition_fixup(struct mtd_info *mtd,
571 struct cfi_private **pcfi)
573 struct map_info *map = mtd->priv;
574 struct cfi_private *cfi = *pcfi;
575 struct cfi_pri_intelext *extp = cfi->cmdset_priv;
578 * Probing of multi-partition flash chips.
580 * To support multiple partitions when available, we simply arrange
581 * for each of them to have their own flchip structure even if they
582 * are on the same physical chip. This means completely recreating
583 * a new cfi_private structure right here which is a blatent code
584 * layering violation, but this is still the least intrusive
585 * arrangement at this point. This can be rearranged in the future
586 * if someone feels motivated enough. --nico
588 if (extp && extp->MajorVersion == '1' && extp->MinorVersion >= '3'
589 && extp->FeatureSupport & (1 << 9)) {
590 struct cfi_private *newcfi;
592 struct flchip_shared *shared;
593 int offs, numregions, numparts, partshift, numvirtchips, i, j;
595 /* Protection Register info */
596 offs = (extp->NumProtectionFields - 1) *
597 sizeof(struct cfi_intelext_otpinfo);
599 /* Burst Read info */
600 offs += extp->extra[offs+1]+2;
602 /* Number of partition regions */
603 numregions = extp->extra[offs];
606 /* skip the sizeof(partregion) field in CFI 1.4 */
607 if (extp->MinorVersion >= '4')
610 /* Number of hardware partitions */
612 for (i = 0; i < numregions; i++) {
613 struct cfi_intelext_regioninfo *rinfo;
614 rinfo = (struct cfi_intelext_regioninfo *)&extp->extra[offs];
615 numparts += rinfo->NumIdentPartitions;
616 offs += sizeof(*rinfo)
617 + (rinfo->NumBlockTypes - 1) *
618 sizeof(struct cfi_intelext_blockinfo);
624 /* Programming Region info */
625 if (extp->MinorVersion >= '4') {
626 struct cfi_intelext_programming_regioninfo *prinfo;
627 prinfo = (struct cfi_intelext_programming_regioninfo *)&extp->extra[offs];
628 mtd->writesize = cfi->interleave << prinfo->ProgRegShift;
629 mtd->flags &= ~MTD_BIT_WRITEABLE;
630 printk(KERN_DEBUG "%s: program region size/ctrl_valid/ctrl_inval = %d/%d/%d\n",
631 map->name, mtd->writesize,
632 cfi->interleave * prinfo->ControlValid,
633 cfi->interleave * prinfo->ControlInvalid);
637 * All functions below currently rely on all chips having
638 * the same geometry so we'll just assume that all hardware
639 * partitions are of the same size too.
641 partshift = cfi->chipshift - __ffs(numparts);
643 if ((1 << partshift) < mtd->erasesize) {
645 "%s: bad number of hw partitions (%d)\n",
650 numvirtchips = cfi->numchips * numparts;
651 newcfi = kmalloc(sizeof(struct cfi_private) + numvirtchips * sizeof(struct flchip), GFP_KERNEL);
654 shared = kmalloc(sizeof(struct flchip_shared) * cfi->numchips, GFP_KERNEL);
659 memcpy(newcfi, cfi, sizeof(struct cfi_private));
660 newcfi->numchips = numvirtchips;
661 newcfi->chipshift = partshift;
663 chip = &newcfi->chips[0];
664 for (i = 0; i < cfi->numchips; i++) {
665 shared[i].writing = shared[i].erasing = NULL;
666 spin_lock_init(&shared[i].lock);
667 for (j = 0; j < numparts; j++) {
668 *chip = cfi->chips[i];
669 chip->start += j << partshift;
670 chip->priv = &shared[i];
671 /* those should be reset too since
672 they create memory references. */
673 init_waitqueue_head(&chip->wq);
674 spin_lock_init(&chip->_spinlock);
675 chip->mutex = &chip->_spinlock;
680 printk(KERN_DEBUG "%s: %d set(s) of %d interleaved chips "
681 "--> %d partitions of %d KiB\n",
682 map->name, cfi->numchips, cfi->interleave,
683 newcfi->numchips, 1<<(newcfi->chipshift-10));
685 map->fldrv_priv = newcfi;
694 * *********** CHIP ACCESS FUNCTIONS ***********
696 static int chip_ready (struct map_info *map, struct flchip *chip, unsigned long adr, int mode)
698 DECLARE_WAITQUEUE(wait, current);
699 struct cfi_private *cfi = map->fldrv_priv;
700 map_word status, status_OK = CMD(0x80), status_PWS = CMD(0x01);
701 struct cfi_pri_intelext *cfip = cfi->cmdset_priv;
702 unsigned long timeo = jiffies + HZ;
704 switch (chip->state) {
708 status = map_read(map, adr);
709 if (map_word_andequal(map, status, status_OK, status_OK))
712 /* At this point we're fine with write operations
713 in other partitions as they don't conflict. */
714 if (chip->priv && map_word_andequal(map, status, status_PWS, status_PWS))
717 spin_unlock(chip->mutex);
719 spin_lock(chip->mutex);
720 /* Someone else might have been playing with it. */
731 !(cfip->FeatureSupport & 2) ||
732 !(mode == FL_READY || mode == FL_POINT ||
733 (mode == FL_WRITING && (cfip->SuspendCmdSupport & 1))))
738 map_write(map, CMD(0xB0), adr);
740 /* If the flash has finished erasing, then 'erase suspend'
741 * appears to make some (28F320) flash devices switch to
742 * 'read' mode. Make sure that we switch to 'read status'
743 * mode so we get the right data. --rmk
745 map_write(map, CMD(0x70), adr);
746 chip->oldstate = FL_ERASING;
747 chip->state = FL_ERASE_SUSPENDING;
748 chip->erase_suspended = 1;
750 status = map_read(map, adr);
751 if (map_word_andequal(map, status, status_OK, status_OK))
754 if (time_after(jiffies, timeo)) {
755 /* Urgh. Resume and pretend we weren't here. */
756 map_write(map, CMD(0xd0), adr);
757 /* Make sure we're in 'read status' mode if it had finished */
758 map_write(map, CMD(0x70), adr);
759 chip->state = FL_ERASING;
760 chip->oldstate = FL_READY;
761 printk(KERN_ERR "%s: Chip not ready after erase "
762 "suspended: status = 0x%lx\n", map->name, status.x[0]);
766 spin_unlock(chip->mutex);
768 spin_lock(chip->mutex);
769 /* Nobody will touch it while it's in state FL_ERASE_SUSPENDING.
770 So we can just loop here. */
772 chip->state = FL_STATUS;
775 case FL_XIP_WHILE_ERASING:
776 if (mode != FL_READY && mode != FL_POINT &&
777 (mode != FL_WRITING || !cfip || !(cfip->SuspendCmdSupport&1)))
779 chip->oldstate = chip->state;
780 chip->state = FL_READY;
784 /* The machine is rebooting now,so no one can get chip anymore */
787 /* Only if there's no operation suspended... */
788 if (mode == FL_READY && chip->oldstate == FL_READY)
793 set_current_state(TASK_UNINTERRUPTIBLE);
794 add_wait_queue(&chip->wq, &wait);
795 spin_unlock(chip->mutex);
797 remove_wait_queue(&chip->wq, &wait);
798 spin_lock(chip->mutex);
803 static int get_chip(struct map_info *map, struct flchip *chip, unsigned long adr, int mode)
806 DECLARE_WAITQUEUE(wait, current);
809 if (chip->priv && (mode == FL_WRITING || mode == FL_ERASING
810 || mode == FL_OTP_WRITE || mode == FL_SHUTDOWN)) {
812 * OK. We have possibility for contention on the write/erase
813 * operations which are global to the real chip and not per
814 * partition. So let's fight it over in the partition which
815 * currently has authority on the operation.
817 * The rules are as follows:
819 * - any write operation must own shared->writing.
821 * - any erase operation must own _both_ shared->writing and
824 * - contention arbitration is handled in the owner's context.
826 * The 'shared' struct can be read and/or written only when
829 struct flchip_shared *shared = chip->priv;
830 struct flchip *contender;
831 spin_lock(&shared->lock);
832 contender = shared->writing;
833 if (contender && contender != chip) {
835 * The engine to perform desired operation on this
836 * partition is already in use by someone else.
837 * Let's fight over it in the context of the chip
838 * currently using it. If it is possible to suspend,
839 * that other partition will do just that, otherwise
840 * it'll happily send us to sleep. In any case, when
841 * get_chip returns success we're clear to go ahead.
843 ret = spin_trylock(contender->mutex);
844 spin_unlock(&shared->lock);
847 spin_unlock(chip->mutex);
848 ret = chip_ready(map, contender, contender->start, mode);
849 spin_lock(chip->mutex);
851 if (ret == -EAGAIN) {
852 spin_unlock(contender->mutex);
856 spin_unlock(contender->mutex);
859 spin_lock(&shared->lock);
860 spin_unlock(contender->mutex);
863 /* Check if we already have suspended erase
864 * on this chip. Sleep. */
865 if (mode == FL_ERASING && shared->erasing
866 && shared->erasing->oldstate == FL_ERASING) {
867 spin_unlock(&shared->lock);
868 set_current_state(TASK_UNINTERRUPTIBLE);
869 add_wait_queue(&chip->wq, &wait);
870 spin_unlock(chip->mutex);
872 remove_wait_queue(&chip->wq, &wait);
873 spin_lock(chip->mutex);
878 shared->writing = chip;
879 if (mode == FL_ERASING)
880 shared->erasing = chip;
881 spin_unlock(&shared->lock);
883 ret = chip_ready(map, chip, adr, mode);
890 static void put_chip(struct map_info *map, struct flchip *chip, unsigned long adr)
892 struct cfi_private *cfi = map->fldrv_priv;
895 struct flchip_shared *shared = chip->priv;
896 spin_lock(&shared->lock);
897 if (shared->writing == chip && chip->oldstate == FL_READY) {
898 /* We own the ability to write, but we're done */
899 shared->writing = shared->erasing;
900 if (shared->writing && shared->writing != chip) {
901 /* give back ownership to who we loaned it from */
902 struct flchip *loaner = shared->writing;
903 spin_lock(loaner->mutex);
904 spin_unlock(&shared->lock);
905 spin_unlock(chip->mutex);
906 put_chip(map, loaner, loaner->start);
907 spin_lock(chip->mutex);
908 spin_unlock(loaner->mutex);
912 shared->erasing = NULL;
913 shared->writing = NULL;
914 } else if (shared->erasing == chip && shared->writing != chip) {
916 * We own the ability to erase without the ability
917 * to write, which means the erase was suspended
918 * and some other partition is currently writing.
919 * Don't let the switch below mess things up since
920 * we don't have ownership to resume anything.
922 spin_unlock(&shared->lock);
926 spin_unlock(&shared->lock);
929 switch(chip->oldstate) {
931 chip->state = chip->oldstate;
932 /* What if one interleaved chip has finished and the
933 other hasn't? The old code would leave the finished
934 one in READY mode. That's bad, and caused -EROFS
935 errors to be returned from do_erase_oneblock because
936 that's the only bit it checked for at the time.
937 As the state machine appears to explicitly allow
938 sending the 0x70 (Read Status) command to an erasing
939 chip and expecting it to be ignored, that's what we
941 map_write(map, CMD(0xd0), adr);
942 map_write(map, CMD(0x70), adr);
943 chip->oldstate = FL_READY;
944 chip->state = FL_ERASING;
947 case FL_XIP_WHILE_ERASING:
948 chip->state = chip->oldstate;
949 chip->oldstate = FL_READY;
955 /* We should really make set_vpp() count, rather than doing this */
959 printk(KERN_ERR "%s: put_chip() called with oldstate %d!!\n", map->name, chip->oldstate);
964 #ifdef CONFIG_MTD_XIP
967 * No interrupt what so ever can be serviced while the flash isn't in array
968 * mode. This is ensured by the xip_disable() and xip_enable() functions
969 * enclosing any code path where the flash is known not to be in array mode.
970 * And within a XIP disabled code path, only functions marked with __xipram
971 * may be called and nothing else (it's a good thing to inspect generated
972 * assembly to make sure inline functions were actually inlined and that gcc
973 * didn't emit calls to its own support functions). Also configuring MTD CFI
974 * support to a single buswidth and a single interleave is also recommended.
977 static void xip_disable(struct map_info *map, struct flchip *chip,
980 /* TODO: chips with no XIP use should ignore and return */
981 (void) map_read(map, adr); /* ensure mmu mapping is up to date */
985 static void __xipram xip_enable(struct map_info *map, struct flchip *chip,
988 struct cfi_private *cfi = map->fldrv_priv;
989 if (chip->state != FL_POINT && chip->state != FL_READY) {
990 map_write(map, CMD(0xff), adr);
991 chip->state = FL_READY;
993 (void) map_read(map, adr);
999 * When a delay is required for the flash operation to complete, the
1000 * xip_wait_for_operation() function is polling for both the given timeout
1001 * and pending (but still masked) hardware interrupts. Whenever there is an
1002 * interrupt pending then the flash erase or write operation is suspended,
1003 * array mode restored and interrupts unmasked. Task scheduling might also
1004 * happen at that point. The CPU eventually returns from the interrupt or
1005 * the call to schedule() and the suspended flash operation is resumed for
1006 * the remaining of the delay period.
1008 * Warning: this function _will_ fool interrupt latency tracing tools.
1011 static int __xipram xip_wait_for_operation(
1012 struct map_info *map, struct flchip *chip,
1013 unsigned long adr, unsigned int chip_op_time )
1015 struct cfi_private *cfi = map->fldrv_priv;
1016 struct cfi_pri_intelext *cfip = cfi->cmdset_priv;
1017 map_word status, OK = CMD(0x80);
1018 unsigned long usec, suspended, start, done;
1019 flstate_t oldstate, newstate;
1021 start = xip_currtime();
1022 usec = chip_op_time * 8;
1029 if (xip_irqpending() && cfip &&
1030 ((chip->state == FL_ERASING && (cfip->FeatureSupport&2)) ||
1031 (chip->state == FL_WRITING && (cfip->FeatureSupport&4))) &&
1032 (cfi_interleave_is_1(cfi) || chip->oldstate == FL_READY)) {
1034 * Let's suspend the erase or write operation when
1035 * supported. Note that we currently don't try to
1036 * suspend interleaved chips if there is already
1037 * another operation suspended (imagine what happens
1038 * when one chip was already done with the current
1039 * operation while another chip suspended it, then
1040 * we resume the whole thing at once). Yes, it
1044 map_write(map, CMD(0xb0), adr);
1045 map_write(map, CMD(0x70), adr);
1046 suspended = xip_currtime();
1048 if (xip_elapsed_since(suspended) > 100000) {
1050 * The chip doesn't want to suspend
1051 * after waiting for 100 msecs.
1052 * This is a critical error but there
1053 * is not much we can do here.
1057 status = map_read(map, adr);
1058 } while (!map_word_andequal(map, status, OK, OK));
1060 /* Suspend succeeded */
1061 oldstate = chip->state;
1062 if (oldstate == FL_ERASING) {
1063 if (!map_word_bitsset(map, status, CMD(0x40)))
1065 newstate = FL_XIP_WHILE_ERASING;
1066 chip->erase_suspended = 1;
1068 if (!map_word_bitsset(map, status, CMD(0x04)))
1070 newstate = FL_XIP_WHILE_WRITING;
1071 chip->write_suspended = 1;
1073 chip->state = newstate;
1074 map_write(map, CMD(0xff), adr);
1075 (void) map_read(map, adr);
1078 spin_unlock(chip->mutex);
1083 * We're back. However someone else might have
1084 * decided to go write to the chip if we are in
1085 * a suspended erase state. If so let's wait
1088 spin_lock(chip->mutex);
1089 while (chip->state != newstate) {
1090 DECLARE_WAITQUEUE(wait, current);
1091 set_current_state(TASK_UNINTERRUPTIBLE);
1092 add_wait_queue(&chip->wq, &wait);
1093 spin_unlock(chip->mutex);
1095 remove_wait_queue(&chip->wq, &wait);
1096 spin_lock(chip->mutex);
1098 /* Disallow XIP again */
1099 local_irq_disable();
1101 /* Resume the write or erase operation */
1102 map_write(map, CMD(0xd0), adr);
1103 map_write(map, CMD(0x70), adr);
1104 chip->state = oldstate;
1105 start = xip_currtime();
1106 } else if (usec >= 1000000/HZ) {
1108 * Try to save on CPU power when waiting delay
1109 * is at least a system timer tick period.
1110 * No need to be extremely accurate here.
1114 status = map_read(map, adr);
1115 done = xip_elapsed_since(start);
1116 } while (!map_word_andequal(map, status, OK, OK)
1119 return (done >= usec) ? -ETIME : 0;
1123 * The INVALIDATE_CACHED_RANGE() macro is normally used in parallel while
1124 * the flash is actively programming or erasing since we have to poll for
1125 * the operation to complete anyway. We can't do that in a generic way with
1126 * a XIP setup so do it before the actual flash operation in this case
1127 * and stub it out from INVAL_CACHE_AND_WAIT.
1129 #define XIP_INVAL_CACHED_RANGE(map, from, size) \
1130 INVALIDATE_CACHED_RANGE(map, from, size)
1132 #define INVAL_CACHE_AND_WAIT(map, chip, cmd_adr, inval_adr, inval_len, usec) \
1133 xip_wait_for_operation(map, chip, cmd_adr, usec)
1137 #define xip_disable(map, chip, adr)
1138 #define xip_enable(map, chip, adr)
1139 #define XIP_INVAL_CACHED_RANGE(x...)
1140 #define INVAL_CACHE_AND_WAIT inval_cache_and_wait_for_operation
1142 static int inval_cache_and_wait_for_operation(
1143 struct map_info *map, struct flchip *chip,
1144 unsigned long cmd_adr, unsigned long inval_adr, int inval_len,
1145 unsigned int chip_op_time)
1147 struct cfi_private *cfi = map->fldrv_priv;
1148 map_word status, status_OK = CMD(0x80);
1149 int chip_state = chip->state;
1150 unsigned int timeo, sleep_time;
1152 spin_unlock(chip->mutex);
1154 INVALIDATE_CACHED_RANGE(map, inval_adr, inval_len);
1155 spin_lock(chip->mutex);
1157 /* set our timeout to 8 times the expected delay */
1158 timeo = chip_op_time * 8;
1161 sleep_time = chip_op_time / 2;
1164 status = map_read(map, cmd_adr);
1165 if (map_word_andequal(map, status, status_OK, status_OK))
1169 map_write(map, CMD(0x70), cmd_adr);
1170 chip->state = FL_STATUS;
1174 /* OK Still waiting. Drop the lock, wait a while and retry. */
1175 spin_unlock(chip->mutex);
1176 if (sleep_time >= 1000000/HZ) {
1178 * Half of the normal delay still remaining
1179 * can be performed with a sleeping delay instead
1182 msleep(sleep_time/1000);
1183 timeo -= sleep_time;
1184 sleep_time = 1000000/HZ;
1190 spin_lock(chip->mutex);
1192 while (chip->state != chip_state) {
1193 /* Someone's suspended the operation: sleep */
1194 DECLARE_WAITQUEUE(wait, current);
1195 set_current_state(TASK_UNINTERRUPTIBLE);
1196 add_wait_queue(&chip->wq, &wait);
1197 spin_unlock(chip->mutex);
1199 remove_wait_queue(&chip->wq, &wait);
1200 spin_lock(chip->mutex);
1204 /* Done and happy. */
1205 chip->state = FL_STATUS;
1211 #define WAIT_TIMEOUT(map, chip, adr, udelay) \
1212 INVAL_CACHE_AND_WAIT(map, chip, adr, 0, 0, udelay);
1215 static int do_point_onechip (struct map_info *map, struct flchip *chip, loff_t adr, size_t len)
1217 unsigned long cmd_addr;
1218 struct cfi_private *cfi = map->fldrv_priv;
1223 /* Ensure cmd read/writes are aligned. */
1224 cmd_addr = adr & ~(map_bankwidth(map)-1);
1226 spin_lock(chip->mutex);
1228 ret = get_chip(map, chip, cmd_addr, FL_POINT);
1231 if (chip->state != FL_POINT && chip->state != FL_READY)
1232 map_write(map, CMD(0xff), cmd_addr);
1234 chip->state = FL_POINT;
1235 chip->ref_point_counter++;
1237 spin_unlock(chip->mutex);
1242 static int cfi_intelext_point(struct mtd_info *mtd, loff_t from, size_t len,
1243 size_t *retlen, void **virt, resource_size_t *phys)
1245 struct map_info *map = mtd->priv;
1246 struct cfi_private *cfi = map->fldrv_priv;
1247 unsigned long ofs, last_end = 0;
1251 if (!map->virt || (from + len > mtd->size))
1254 /* Now lock the chip(s) to POINT state */
1256 /* ofs: offset within the first chip that the first read should start */
1257 chipnum = (from >> cfi->chipshift);
1258 ofs = from - (chipnum << cfi->chipshift);
1260 *virt = map->virt + cfi->chips[chipnum].start + ofs;
1263 *phys = map->phys + cfi->chips[chipnum].start + ofs;
1266 unsigned long thislen;
1268 if (chipnum >= cfi->numchips)
1271 /* We cannot point across chips that are virtually disjoint */
1273 last_end = cfi->chips[chipnum].start;
1274 else if (cfi->chips[chipnum].start != last_end)
1277 if ((len + ofs -1) >> cfi->chipshift)
1278 thislen = (1<<cfi->chipshift) - ofs;
1282 ret = do_point_onechip(map, &cfi->chips[chipnum], ofs, thislen);
1290 last_end += 1 << cfi->chipshift;
1296 static void cfi_intelext_unpoint(struct mtd_info *mtd, loff_t from, size_t len)
1298 struct map_info *map = mtd->priv;
1299 struct cfi_private *cfi = map->fldrv_priv;
1303 /* Now unlock the chip(s) POINT state */
1305 /* ofs: offset within the first chip that the first read should start */
1306 chipnum = (from >> cfi->chipshift);
1307 ofs = from - (chipnum << cfi->chipshift);
1310 unsigned long thislen;
1311 struct flchip *chip;
1313 chip = &cfi->chips[chipnum];
1314 if (chipnum >= cfi->numchips)
1317 if ((len + ofs -1) >> cfi->chipshift)
1318 thislen = (1<<cfi->chipshift) - ofs;
1322 spin_lock(chip->mutex);
1323 if (chip->state == FL_POINT) {
1324 chip->ref_point_counter--;
1325 if(chip->ref_point_counter == 0)
1326 chip->state = FL_READY;
1328 printk(KERN_ERR "%s: Warning: unpoint called on non pointed region\n", map->name); /* Should this give an error? */
1330 put_chip(map, chip, chip->start);
1331 spin_unlock(chip->mutex);
1339 static inline int do_read_onechip(struct map_info *map, struct flchip *chip, loff_t adr, size_t len, u_char *buf)
1341 unsigned long cmd_addr;
1342 struct cfi_private *cfi = map->fldrv_priv;
1347 /* Ensure cmd read/writes are aligned. */
1348 cmd_addr = adr & ~(map_bankwidth(map)-1);
1350 spin_lock(chip->mutex);
1351 ret = get_chip(map, chip, cmd_addr, FL_READY);
1353 spin_unlock(chip->mutex);
1357 if (chip->state != FL_POINT && chip->state != FL_READY) {
1358 map_write(map, CMD(0xff), cmd_addr);
1360 chip->state = FL_READY;
1363 map_copy_from(map, buf, adr, len);
1365 put_chip(map, chip, cmd_addr);
1367 spin_unlock(chip->mutex);
1371 static int cfi_intelext_read (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf)
1373 struct map_info *map = mtd->priv;
1374 struct cfi_private *cfi = map->fldrv_priv;
1379 /* ofs: offset within the first chip that the first read should start */
1380 chipnum = (from >> cfi->chipshift);
1381 ofs = from - (chipnum << cfi->chipshift);
1386 unsigned long thislen;
1388 if (chipnum >= cfi->numchips)
1391 if ((len + ofs -1) >> cfi->chipshift)
1392 thislen = (1<<cfi->chipshift) - ofs;
1396 ret = do_read_onechip(map, &cfi->chips[chipnum], ofs, thislen, buf);
1410 static int __xipram do_write_oneword(struct map_info *map, struct flchip *chip,
1411 unsigned long adr, map_word datum, int mode)
1413 struct cfi_private *cfi = map->fldrv_priv;
1414 map_word status, write_cmd;
1421 write_cmd = (cfi->cfiq->P_ID != 0x0200) ? CMD(0x40) : CMD(0x41);
1424 write_cmd = CMD(0xc0);
1430 spin_lock(chip->mutex);
1431 ret = get_chip(map, chip, adr, mode);
1433 spin_unlock(chip->mutex);
1437 XIP_INVAL_CACHED_RANGE(map, adr, map_bankwidth(map));
1439 xip_disable(map, chip, adr);
1440 map_write(map, write_cmd, adr);
1441 map_write(map, datum, adr);
1444 ret = INVAL_CACHE_AND_WAIT(map, chip, adr,
1445 adr, map_bankwidth(map),
1446 chip->word_write_time);
1448 xip_enable(map, chip, adr);
1449 printk(KERN_ERR "%s: word write error (status timeout)\n", map->name);
1453 /* check for errors */
1454 status = map_read(map, adr);
1455 if (map_word_bitsset(map, status, CMD(0x1a))) {
1456 unsigned long chipstatus = MERGESTATUS(status);
1459 map_write(map, CMD(0x50), adr);
1460 map_write(map, CMD(0x70), adr);
1461 xip_enable(map, chip, adr);
1463 if (chipstatus & 0x02) {
1465 } else if (chipstatus & 0x08) {
1466 printk(KERN_ERR "%s: word write error (bad VPP)\n", map->name);
1469 printk(KERN_ERR "%s: word write error (status 0x%lx)\n", map->name, chipstatus);
1476 xip_enable(map, chip, adr);
1477 out: put_chip(map, chip, adr);
1478 spin_unlock(chip->mutex);
1483 static int cfi_intelext_write_words (struct mtd_info *mtd, loff_t to , size_t len, size_t *retlen, const u_char *buf)
1485 struct map_info *map = mtd->priv;
1486 struct cfi_private *cfi = map->fldrv_priv;
1495 chipnum = to >> cfi->chipshift;
1496 ofs = to - (chipnum << cfi->chipshift);
1498 /* If it's not bus-aligned, do the first byte write */
1499 if (ofs & (map_bankwidth(map)-1)) {
1500 unsigned long bus_ofs = ofs & ~(map_bankwidth(map)-1);
1501 int gap = ofs - bus_ofs;
1505 n = min_t(int, len, map_bankwidth(map)-gap);
1506 datum = map_word_ff(map);
1507 datum = map_word_load_partial(map, datum, buf, gap, n);
1509 ret = do_write_oneword(map, &cfi->chips[chipnum],
1510 bus_ofs, datum, FL_WRITING);
1519 if (ofs >> cfi->chipshift) {
1522 if (chipnum == cfi->numchips)
1527 while(len >= map_bankwidth(map)) {
1528 map_word datum = map_word_load(map, buf);
1530 ret = do_write_oneword(map, &cfi->chips[chipnum],
1531 ofs, datum, FL_WRITING);
1535 ofs += map_bankwidth(map);
1536 buf += map_bankwidth(map);
1537 (*retlen) += map_bankwidth(map);
1538 len -= map_bankwidth(map);
1540 if (ofs >> cfi->chipshift) {
1543 if (chipnum == cfi->numchips)
1548 if (len & (map_bankwidth(map)-1)) {
1551 datum = map_word_ff(map);
1552 datum = map_word_load_partial(map, datum, buf, 0, len);
1554 ret = do_write_oneword(map, &cfi->chips[chipnum],
1555 ofs, datum, FL_WRITING);
1566 static int __xipram do_write_buffer(struct map_info *map, struct flchip *chip,
1567 unsigned long adr, const struct kvec **pvec,
1568 unsigned long *pvec_seek, int len)
1570 struct cfi_private *cfi = map->fldrv_priv;
1571 map_word status, write_cmd, datum;
1572 unsigned long cmd_adr;
1573 int ret, wbufsize, word_gap, words;
1574 const struct kvec *vec;
1575 unsigned long vec_seek;
1576 unsigned long initial_adr;
1577 int initial_len = len;
1579 wbufsize = cfi_interleave(cfi) << cfi->cfiq->MaxBufWriteSize;
1582 cmd_adr = adr & ~(wbufsize-1);
1584 /* Let's determine this according to the interleave only once */
1585 write_cmd = (cfi->cfiq->P_ID != 0x0200) ? CMD(0xe8) : CMD(0xe9);
1587 spin_lock(chip->mutex);
1588 ret = get_chip(map, chip, cmd_adr, FL_WRITING);
1590 spin_unlock(chip->mutex);
1594 XIP_INVAL_CACHED_RANGE(map, initial_adr, initial_len);
1596 xip_disable(map, chip, cmd_adr);
1598 /* §4.8 of the 28FxxxJ3A datasheet says "Any time SR.4 and/or SR.5 is set
1599 [...], the device will not accept any more Write to Buffer commands".
1600 So we must check here and reset those bits if they're set. Otherwise
1601 we're just pissing in the wind */
1602 if (chip->state != FL_STATUS) {
1603 map_write(map, CMD(0x70), cmd_adr);
1604 chip->state = FL_STATUS;
1606 status = map_read(map, cmd_adr);
1607 if (map_word_bitsset(map, status, CMD(0x30))) {
1608 xip_enable(map, chip, cmd_adr);
1609 printk(KERN_WARNING "SR.4 or SR.5 bits set in buffer write (status %lx). Clearing.\n", status.x[0]);
1610 xip_disable(map, chip, cmd_adr);
1611 map_write(map, CMD(0x50), cmd_adr);
1612 map_write(map, CMD(0x70), cmd_adr);
1615 chip->state = FL_WRITING_TO_BUFFER;
1616 map_write(map, write_cmd, cmd_adr);
1617 ret = WAIT_TIMEOUT(map, chip, cmd_adr, 0);
1619 /* Argh. Not ready for write to buffer */
1620 map_word Xstatus = map_read(map, cmd_adr);
1621 map_write(map, CMD(0x70), cmd_adr);
1622 chip->state = FL_STATUS;
1623 status = map_read(map, cmd_adr);
1624 map_write(map, CMD(0x50), cmd_adr);
1625 map_write(map, CMD(0x70), cmd_adr);
1626 xip_enable(map, chip, cmd_adr);
1627 printk(KERN_ERR "%s: Chip not ready for buffer write. Xstatus = %lx, status = %lx\n",
1628 map->name, Xstatus.x[0], status.x[0]);
1632 /* Figure out the number of words to write */
1633 word_gap = (-adr & (map_bankwidth(map)-1));
1634 words = (len - word_gap + map_bankwidth(map) - 1) / map_bankwidth(map);
1638 word_gap = map_bankwidth(map) - word_gap;
1640 datum = map_word_ff(map);
1643 /* Write length of data to come */
1644 map_write(map, CMD(words), cmd_adr );
1648 vec_seek = *pvec_seek;
1650 int n = map_bankwidth(map) - word_gap;
1651 if (n > vec->iov_len - vec_seek)
1652 n = vec->iov_len - vec_seek;
1656 if (!word_gap && len < map_bankwidth(map))
1657 datum = map_word_ff(map);
1659 datum = map_word_load_partial(map, datum,
1660 vec->iov_base + vec_seek,
1665 if (!len || word_gap == map_bankwidth(map)) {
1666 map_write(map, datum, adr);
1667 adr += map_bankwidth(map);
1672 if (vec_seek == vec->iov_len) {
1678 *pvec_seek = vec_seek;
1681 map_write(map, CMD(0xd0), cmd_adr);
1682 chip->state = FL_WRITING;
1684 ret = INVAL_CACHE_AND_WAIT(map, chip, cmd_adr,
1685 initial_adr, initial_len,
1686 chip->buffer_write_time);
1688 map_write(map, CMD(0x70), cmd_adr);
1689 chip->state = FL_STATUS;
1690 xip_enable(map, chip, cmd_adr);
1691 printk(KERN_ERR "%s: buffer write error (status timeout)\n", map->name);
1695 /* check for errors */
1696 status = map_read(map, cmd_adr);
1697 if (map_word_bitsset(map, status, CMD(0x1a))) {
1698 unsigned long chipstatus = MERGESTATUS(status);
1701 map_write(map, CMD(0x50), cmd_adr);
1702 map_write(map, CMD(0x70), cmd_adr);
1703 xip_enable(map, chip, cmd_adr);
1705 if (chipstatus & 0x02) {
1707 } else if (chipstatus & 0x08) {
1708 printk(KERN_ERR "%s: buffer write error (bad VPP)\n", map->name);
1711 printk(KERN_ERR "%s: buffer write error (status 0x%lx)\n", map->name, chipstatus);
1718 xip_enable(map, chip, cmd_adr);
1719 out: put_chip(map, chip, cmd_adr);
1720 spin_unlock(chip->mutex);
1724 static int cfi_intelext_writev (struct mtd_info *mtd, const struct kvec *vecs,
1725 unsigned long count, loff_t to, size_t *retlen)
1727 struct map_info *map = mtd->priv;
1728 struct cfi_private *cfi = map->fldrv_priv;
1729 int wbufsize = cfi_interleave(cfi) << cfi->cfiq->MaxBufWriteSize;
1732 unsigned long ofs, vec_seek, i;
1735 for (i = 0; i < count; i++)
1736 len += vecs[i].iov_len;
1742 chipnum = to >> cfi->chipshift;
1743 ofs = to - (chipnum << cfi->chipshift);
1747 /* We must not cross write block boundaries */
1748 int size = wbufsize - (ofs & (wbufsize-1));
1752 ret = do_write_buffer(map, &cfi->chips[chipnum],
1753 ofs, &vecs, &vec_seek, size);
1761 if (ofs >> cfi->chipshift) {
1764 if (chipnum == cfi->numchips)
1768 /* Be nice and reschedule with the chip in a usable state for other
1777 static int cfi_intelext_write_buffers (struct mtd_info *mtd, loff_t to,
1778 size_t len, size_t *retlen, const u_char *buf)
1782 vec.iov_base = (void *) buf;
1785 return cfi_intelext_writev(mtd, &vec, 1, to, retlen);
1788 static int __xipram do_erase_oneblock(struct map_info *map, struct flchip *chip,
1789 unsigned long adr, int len, void *thunk)
1791 struct cfi_private *cfi = map->fldrv_priv;
1799 spin_lock(chip->mutex);
1800 ret = get_chip(map, chip, adr, FL_ERASING);
1802 spin_unlock(chip->mutex);
1806 XIP_INVAL_CACHED_RANGE(map, adr, len);
1808 xip_disable(map, chip, adr);
1810 /* Clear the status register first */
1811 map_write(map, CMD(0x50), adr);
1814 map_write(map, CMD(0x20), adr);
1815 map_write(map, CMD(0xD0), adr);
1816 chip->state = FL_ERASING;
1817 chip->erase_suspended = 0;
1819 ret = INVAL_CACHE_AND_WAIT(map, chip, adr,
1823 map_write(map, CMD(0x70), adr);
1824 chip->state = FL_STATUS;
1825 xip_enable(map, chip, adr);
1826 printk(KERN_ERR "%s: block erase error: (status timeout)\n", map->name);
1830 /* We've broken this before. It doesn't hurt to be safe */
1831 map_write(map, CMD(0x70), adr);
1832 chip->state = FL_STATUS;
1833 status = map_read(map, adr);
1835 /* check for errors */
1836 if (map_word_bitsset(map, status, CMD(0x3a))) {
1837 unsigned long chipstatus = MERGESTATUS(status);
1839 /* Reset the error bits */
1840 map_write(map, CMD(0x50), adr);
1841 map_write(map, CMD(0x70), adr);
1842 xip_enable(map, chip, adr);
1844 if ((chipstatus & 0x30) == 0x30) {
1845 printk(KERN_ERR "%s: block erase error: (bad command sequence, status 0x%lx)\n", map->name, chipstatus);
1847 } else if (chipstatus & 0x02) {
1848 /* Protection bit set */
1850 } else if (chipstatus & 0x8) {
1852 printk(KERN_ERR "%s: block erase error: (bad VPP)\n", map->name);
1854 } else if (chipstatus & 0x20 && retries--) {
1855 printk(KERN_DEBUG "block erase failed at 0x%08lx: status 0x%lx. Retrying...\n", adr, chipstatus);
1856 put_chip(map, chip, adr);
1857 spin_unlock(chip->mutex);
1860 printk(KERN_ERR "%s: block erase failed at 0x%08lx (status 0x%lx)\n", map->name, adr, chipstatus);
1867 xip_enable(map, chip, adr);
1868 out: put_chip(map, chip, adr);
1869 spin_unlock(chip->mutex);
1873 static int cfi_intelext_erase_varsize(struct mtd_info *mtd, struct erase_info *instr)
1875 unsigned long ofs, len;
1881 ret = cfi_varsize_frob(mtd, do_erase_oneblock, ofs, len, NULL);
1885 instr->state = MTD_ERASE_DONE;
1886 mtd_erase_callback(instr);
1891 static void cfi_intelext_sync (struct mtd_info *mtd)
1893 struct map_info *map = mtd->priv;
1894 struct cfi_private *cfi = map->fldrv_priv;
1896 struct flchip *chip;
1899 for (i=0; !ret && i<cfi->numchips; i++) {
1900 chip = &cfi->chips[i];
1902 spin_lock(chip->mutex);
1903 ret = get_chip(map, chip, chip->start, FL_SYNCING);
1906 chip->oldstate = chip->state;
1907 chip->state = FL_SYNCING;
1908 /* No need to wake_up() on this state change -
1909 * as the whole point is that nobody can do anything
1910 * with the chip now anyway.
1913 spin_unlock(chip->mutex);
1916 /* Unlock the chips again */
1918 for (i--; i >=0; i--) {
1919 chip = &cfi->chips[i];
1921 spin_lock(chip->mutex);
1923 if (chip->state == FL_SYNCING) {
1924 chip->state = chip->oldstate;
1925 chip->oldstate = FL_READY;
1928 spin_unlock(chip->mutex);
1932 static int __xipram do_getlockstatus_oneblock(struct map_info *map,
1933 struct flchip *chip,
1935 int len, void *thunk)
1937 struct cfi_private *cfi = map->fldrv_priv;
1938 int status, ofs_factor = cfi->interleave * cfi->device_type;
1941 xip_disable(map, chip, adr+(2*ofs_factor));
1942 map_write(map, CMD(0x90), adr+(2*ofs_factor));
1943 chip->state = FL_JEDEC_QUERY;
1944 status = cfi_read_query(map, adr+(2*ofs_factor));
1945 xip_enable(map, chip, 0);
1949 #ifdef DEBUG_LOCK_BITS
1950 static int __xipram do_printlockstatus_oneblock(struct map_info *map,
1951 struct flchip *chip,
1953 int len, void *thunk)
1955 printk(KERN_DEBUG "block status register for 0x%08lx is %x\n",
1956 adr, do_getlockstatus_oneblock(map, chip, adr, len, thunk));
1961 #define DO_XXLOCK_ONEBLOCK_LOCK ((void *) 1)
1962 #define DO_XXLOCK_ONEBLOCK_UNLOCK ((void *) 2)
1964 static int __xipram do_xxlock_oneblock(struct map_info *map, struct flchip *chip,
1965 unsigned long adr, int len, void *thunk)
1967 struct cfi_private *cfi = map->fldrv_priv;
1968 struct cfi_pri_intelext *extp = cfi->cmdset_priv;
1974 spin_lock(chip->mutex);
1975 ret = get_chip(map, chip, adr, FL_LOCKING);
1977 spin_unlock(chip->mutex);
1982 xip_disable(map, chip, adr);
1984 map_write(map, CMD(0x60), adr);
1985 if (thunk == DO_XXLOCK_ONEBLOCK_LOCK) {
1986 map_write(map, CMD(0x01), adr);
1987 chip->state = FL_LOCKING;
1988 } else if (thunk == DO_XXLOCK_ONEBLOCK_UNLOCK) {
1989 map_write(map, CMD(0xD0), adr);
1990 chip->state = FL_UNLOCKING;
1995 * If Instant Individual Block Locking supported then no need
1998 udelay = (!extp || !(extp->FeatureSupport & (1 << 5))) ? 1000000/HZ : 0;
2000 ret = WAIT_TIMEOUT(map, chip, adr, udelay);
2002 map_write(map, CMD(0x70), adr);
2003 chip->state = FL_STATUS;
2004 xip_enable(map, chip, adr);
2005 printk(KERN_ERR "%s: block unlock error: (status timeout)\n", map->name);
2009 xip_enable(map, chip, adr);
2010 out: put_chip(map, chip, adr);
2011 spin_unlock(chip->mutex);
2015 static int cfi_intelext_lock(struct mtd_info *mtd, loff_t ofs, size_t len)
2019 #ifdef DEBUG_LOCK_BITS
2020 printk(KERN_DEBUG "%s: lock status before, ofs=0x%08llx, len=0x%08X\n",
2021 __func__, ofs, len);
2022 cfi_varsize_frob(mtd, do_printlockstatus_oneblock,
2026 ret = cfi_varsize_frob(mtd, do_xxlock_oneblock,
2027 ofs, len, DO_XXLOCK_ONEBLOCK_LOCK);
2029 #ifdef DEBUG_LOCK_BITS
2030 printk(KERN_DEBUG "%s: lock status after, ret=%d\n",
2032 cfi_varsize_frob(mtd, do_printlockstatus_oneblock,
2039 static int cfi_intelext_unlock(struct mtd_info *mtd, loff_t ofs, size_t len)
2043 #ifdef DEBUG_LOCK_BITS
2044 printk(KERN_DEBUG "%s: lock status before, ofs=0x%08llx, len=0x%08X\n",
2045 __func__, ofs, len);
2046 cfi_varsize_frob(mtd, do_printlockstatus_oneblock,
2050 ret = cfi_varsize_frob(mtd, do_xxlock_oneblock,
2051 ofs, len, DO_XXLOCK_ONEBLOCK_UNLOCK);
2053 #ifdef DEBUG_LOCK_BITS
2054 printk(KERN_DEBUG "%s: lock status after, ret=%d\n",
2056 cfi_varsize_frob(mtd, do_printlockstatus_oneblock,
2063 #ifdef CONFIG_MTD_OTP
2065 typedef int (*otp_op_t)(struct map_info *map, struct flchip *chip,
2066 u_long data_offset, u_char *buf, u_int size,
2067 u_long prot_offset, u_int groupno, u_int groupsize);
2070 do_otp_read(struct map_info *map, struct flchip *chip, u_long offset,
2071 u_char *buf, u_int size, u_long prot, u_int grpno, u_int grpsz)
2073 struct cfi_private *cfi = map->fldrv_priv;
2076 spin_lock(chip->mutex);
2077 ret = get_chip(map, chip, chip->start, FL_JEDEC_QUERY);
2079 spin_unlock(chip->mutex);
2083 /* let's ensure we're not reading back cached data from array mode */
2084 INVALIDATE_CACHED_RANGE(map, chip->start + offset, size);
2086 xip_disable(map, chip, chip->start);
2087 if (chip->state != FL_JEDEC_QUERY) {
2088 map_write(map, CMD(0x90), chip->start);
2089 chip->state = FL_JEDEC_QUERY;
2091 map_copy_from(map, buf, chip->start + offset, size);
2092 xip_enable(map, chip, chip->start);
2094 /* then ensure we don't keep OTP data in the cache */
2095 INVALIDATE_CACHED_RANGE(map, chip->start + offset, size);
2097 put_chip(map, chip, chip->start);
2098 spin_unlock(chip->mutex);
2103 do_otp_write(struct map_info *map, struct flchip *chip, u_long offset,
2104 u_char *buf, u_int size, u_long prot, u_int grpno, u_int grpsz)
2109 unsigned long bus_ofs = offset & ~(map_bankwidth(map)-1);
2110 int gap = offset - bus_ofs;
2111 int n = min_t(int, size, map_bankwidth(map)-gap);
2112 map_word datum = map_word_ff(map);
2114 datum = map_word_load_partial(map, datum, buf, gap, n);
2115 ret = do_write_oneword(map, chip, bus_ofs, datum, FL_OTP_WRITE);
2128 do_otp_lock(struct map_info *map, struct flchip *chip, u_long offset,
2129 u_char *buf, u_int size, u_long prot, u_int grpno, u_int grpsz)
2131 struct cfi_private *cfi = map->fldrv_priv;
2134 /* make sure area matches group boundaries */
2138 datum = map_word_ff(map);
2139 datum = map_word_clr(map, datum, CMD(1 << grpno));
2140 return do_write_oneword(map, chip, prot, datum, FL_OTP_WRITE);
2143 static int cfi_intelext_otp_walk(struct mtd_info *mtd, loff_t from, size_t len,
2144 size_t *retlen, u_char *buf,
2145 otp_op_t action, int user_regs)
2147 struct map_info *map = mtd->priv;
2148 struct cfi_private *cfi = map->fldrv_priv;
2149 struct cfi_pri_intelext *extp = cfi->cmdset_priv;
2150 struct flchip *chip;
2151 struct cfi_intelext_otpinfo *otp;
2152 u_long devsize, reg_prot_offset, data_offset;
2153 u_int chip_num, chip_step, field, reg_fact_size, reg_user_size;
2154 u_int groups, groupno, groupsize, reg_fact_groups, reg_user_groups;
2159 /* Check that we actually have some OTP registers */
2160 if (!extp || !(extp->FeatureSupport & 64) || !extp->NumProtectionFields)
2163 /* we need real chips here not virtual ones */
2164 devsize = (1 << cfi->cfiq->DevSize) * cfi->interleave;
2165 chip_step = devsize >> cfi->chipshift;
2168 /* Some chips have OTP located in the _top_ partition only.
2169 For example: Intel 28F256L18T (T means top-parameter device) */
2170 if (cfi->mfr == MANUFACTURER_INTEL) {
2175 chip_num = chip_step - 1;
2179 for ( ; chip_num < cfi->numchips; chip_num += chip_step) {
2180 chip = &cfi->chips[chip_num];
2181 otp = (struct cfi_intelext_otpinfo *)&extp->extra[0];
2183 /* first OTP region */
2185 reg_prot_offset = extp->ProtRegAddr;
2186 reg_fact_groups = 1;
2187 reg_fact_size = 1 << extp->FactProtRegSize;
2188 reg_user_groups = 1;
2189 reg_user_size = 1 << extp->UserProtRegSize;
2192 /* flash geometry fixup */
2193 data_offset = reg_prot_offset + 1;
2194 data_offset *= cfi->interleave * cfi->device_type;
2195 reg_prot_offset *= cfi->interleave * cfi->device_type;
2196 reg_fact_size *= cfi->interleave;
2197 reg_user_size *= cfi->interleave;
2200 groups = reg_user_groups;
2201 groupsize = reg_user_size;
2202 /* skip over factory reg area */
2203 groupno = reg_fact_groups;
2204 data_offset += reg_fact_groups * reg_fact_size;
2206 groups = reg_fact_groups;
2207 groupsize = reg_fact_size;
2211 while (len > 0 && groups > 0) {
2214 * Special case: if action is NULL
2215 * we fill buf with otp_info records.
2217 struct otp_info *otpinfo;
2219 len -= sizeof(struct otp_info);
2222 ret = do_otp_read(map, chip,
2224 (u_char *)&lockword,
2229 otpinfo = (struct otp_info *)buf;
2230 otpinfo->start = from;
2231 otpinfo->length = groupsize;
2233 !map_word_bitsset(map, lockword,
2236 buf += sizeof(*otpinfo);
2237 *retlen += sizeof(*otpinfo);
2238 } else if (from >= groupsize) {
2240 data_offset += groupsize;
2242 int size = groupsize;
2243 data_offset += from;
2248 ret = action(map, chip, data_offset,
2249 buf, size, reg_prot_offset,
2250 groupno, groupsize);
2256 data_offset += size;
2262 /* next OTP region */
2263 if (++field == extp->NumProtectionFields)
2265 reg_prot_offset = otp->ProtRegAddr;
2266 reg_fact_groups = otp->FactGroups;
2267 reg_fact_size = 1 << otp->FactProtRegSize;
2268 reg_user_groups = otp->UserGroups;
2269 reg_user_size = 1 << otp->UserProtRegSize;
2277 static int cfi_intelext_read_fact_prot_reg(struct mtd_info *mtd, loff_t from,
2278 size_t len, size_t *retlen,
2281 return cfi_intelext_otp_walk(mtd, from, len, retlen,
2282 buf, do_otp_read, 0);
2285 static int cfi_intelext_read_user_prot_reg(struct mtd_info *mtd, loff_t from,
2286 size_t len, size_t *retlen,
2289 return cfi_intelext_otp_walk(mtd, from, len, retlen,
2290 buf, do_otp_read, 1);
2293 static int cfi_intelext_write_user_prot_reg(struct mtd_info *mtd, loff_t from,
2294 size_t len, size_t *retlen,
2297 return cfi_intelext_otp_walk(mtd, from, len, retlen,
2298 buf, do_otp_write, 1);
2301 static int cfi_intelext_lock_user_prot_reg(struct mtd_info *mtd,
2302 loff_t from, size_t len)
2305 return cfi_intelext_otp_walk(mtd, from, len, &retlen,
2306 NULL, do_otp_lock, 1);
2309 static int cfi_intelext_get_fact_prot_info(struct mtd_info *mtd,
2310 struct otp_info *buf, size_t len)
2315 ret = cfi_intelext_otp_walk(mtd, 0, len, &retlen, (u_char *)buf, NULL, 0);
2316 return ret ? : retlen;
2319 static int cfi_intelext_get_user_prot_info(struct mtd_info *mtd,
2320 struct otp_info *buf, size_t len)
2325 ret = cfi_intelext_otp_walk(mtd, 0, len, &retlen, (u_char *)buf, NULL, 1);
2326 return ret ? : retlen;
2331 static void cfi_intelext_save_locks(struct mtd_info *mtd)
2333 struct mtd_erase_region_info *region;
2334 int block, status, i;
2338 for (i = 0; i < mtd->numeraseregions; i++) {
2339 region = &mtd->eraseregions[i];
2340 if (!region->lockmap)
2343 for (block = 0; block < region->numblocks; block++){
2344 len = region->erasesize;
2345 adr = region->offset + block * len;
2347 status = cfi_varsize_frob(mtd,
2348 do_getlockstatus_oneblock, adr, len, NULL);
2350 set_bit(block, region->lockmap);
2352 clear_bit(block, region->lockmap);
2357 static int cfi_intelext_suspend(struct mtd_info *mtd)
2359 struct map_info *map = mtd->priv;
2360 struct cfi_private *cfi = map->fldrv_priv;
2361 struct cfi_pri_intelext *extp = cfi->cmdset_priv;
2363 struct flchip *chip;
2366 if ((mtd->flags & MTD_POWERUP_LOCK)
2367 && extp && (extp->FeatureSupport & (1 << 5)))
2368 cfi_intelext_save_locks(mtd);
2370 for (i=0; !ret && i<cfi->numchips; i++) {
2371 chip = &cfi->chips[i];
2373 spin_lock(chip->mutex);
2375 switch (chip->state) {
2379 case FL_JEDEC_QUERY:
2380 if (chip->oldstate == FL_READY) {
2381 /* place the chip in a known state before suspend */
2382 map_write(map, CMD(0xFF), cfi->chips[i].start);
2383 chip->oldstate = chip->state;
2384 chip->state = FL_PM_SUSPENDED;
2385 /* No need to wake_up() on this state change -
2386 * as the whole point is that nobody can do anything
2387 * with the chip now anyway.
2390 /* There seems to be an operation pending. We must wait for it. */
2391 printk(KERN_NOTICE "Flash device refused suspend due to pending operation (oldstate %d)\n", chip->oldstate);
2396 /* Should we actually wait? Once upon a time these routines weren't
2397 allowed to. Or should we return -EAGAIN, because the upper layers
2398 ought to have already shut down anything which was using the device
2399 anyway? The latter for now. */
2400 printk(KERN_NOTICE "Flash device refused suspend due to active operation (state %d)\n", chip->oldstate);
2402 case FL_PM_SUSPENDED:
2405 spin_unlock(chip->mutex);
2408 /* Unlock the chips again */
2411 for (i--; i >=0; i--) {
2412 chip = &cfi->chips[i];
2414 spin_lock(chip->mutex);
2416 if (chip->state == FL_PM_SUSPENDED) {
2417 /* No need to force it into a known state here,
2418 because we're returning failure, and it didn't
2420 chip->state = chip->oldstate;
2421 chip->oldstate = FL_READY;
2424 spin_unlock(chip->mutex);
2431 static void cfi_intelext_restore_locks(struct mtd_info *mtd)
2433 struct mtd_erase_region_info *region;
2438 for (i = 0; i < mtd->numeraseregions; i++) {
2439 region = &mtd->eraseregions[i];
2440 if (!region->lockmap)
2443 for (block = 0; block < region->numblocks; block++) {
2444 len = region->erasesize;
2445 adr = region->offset + block * len;
2447 if (!test_bit(block, region->lockmap))
2448 cfi_intelext_unlock(mtd, adr, len);
2453 static void cfi_intelext_resume(struct mtd_info *mtd)
2455 struct map_info *map = mtd->priv;
2456 struct cfi_private *cfi = map->fldrv_priv;
2457 struct cfi_pri_intelext *extp = cfi->cmdset_priv;
2459 struct flchip *chip;
2461 for (i=0; i<cfi->numchips; i++) {
2463 chip = &cfi->chips[i];
2465 spin_lock(chip->mutex);
2467 /* Go to known state. Chip may have been power cycled */
2468 if (chip->state == FL_PM_SUSPENDED) {
2469 map_write(map, CMD(0xFF), cfi->chips[i].start);
2470 chip->oldstate = chip->state = FL_READY;
2474 spin_unlock(chip->mutex);
2477 if ((mtd->flags & MTD_POWERUP_LOCK)
2478 && extp && (extp->FeatureSupport & (1 << 5)))
2479 cfi_intelext_restore_locks(mtd);
2482 static int cfi_intelext_reset(struct mtd_info *mtd)
2484 struct map_info *map = mtd->priv;
2485 struct cfi_private *cfi = map->fldrv_priv;
2488 for (i=0; i < cfi->numchips; i++) {
2489 struct flchip *chip = &cfi->chips[i];
2491 /* force the completion of any ongoing operation
2492 and switch to array mode so any bootloader in
2493 flash is accessible for soft reboot. */
2494 spin_lock(chip->mutex);
2495 ret = get_chip(map, chip, chip->start, FL_SHUTDOWN);
2497 map_write(map, CMD(0xff), chip->start);
2498 chip->state = FL_SHUTDOWN;
2500 spin_unlock(chip->mutex);
2506 static int cfi_intelext_reboot(struct notifier_block *nb, unsigned long val,
2509 struct mtd_info *mtd;
2511 mtd = container_of(nb, struct mtd_info, reboot_notifier);
2512 cfi_intelext_reset(mtd);
2516 static void cfi_intelext_destroy(struct mtd_info *mtd)
2518 struct map_info *map = mtd->priv;
2519 struct cfi_private *cfi = map->fldrv_priv;
2520 struct mtd_erase_region_info *region;
2522 cfi_intelext_reset(mtd);
2523 unregister_reboot_notifier(&mtd->reboot_notifier);
2524 kfree(cfi->cmdset_priv);
2526 kfree(cfi->chips[0].priv);
2528 for (i = 0; i < mtd->numeraseregions; i++) {
2529 region = &mtd->eraseregions[i];
2530 if (region->lockmap)
2531 kfree(region->lockmap);
2533 kfree(mtd->eraseregions);
2536 MODULE_LICENSE("GPL");
2537 MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org> et al.");
2538 MODULE_DESCRIPTION("MTD chip driver for Intel/Sharp flash chips");
2539 MODULE_ALIAS("cfi_cmdset_0003");
2540 MODULE_ALIAS("cfi_cmdset_0200");