aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/chips
diff options
context:
space:
mode:
authorDavid Anders <dave123_aml@yahoo.com>2006-10-19 12:33:19 -0400
committerDavid Woodhouse <dwmw2@infradead.org>2006-10-21 11:43:53 -0400
commita86aaa6ddf32b0401e64e74174042866e0fb3e20 (patch)
treee1f11950cce73d371a189fcf2687b35923d40e3e /drivers/mtd/chips
parentd29ebdbee4c196adddf9f412e6ea1f211656744f (diff)
[MTD] NOR: leave Intel chips in read-array mode on suspend
During some testing with several samsung s3c24xx based devices it was discovered that often the cfi_cmdset_0001.c would not leave the chip in read-array mode on suspend. this is an issue if the same flash chip is used for the bootloader that needs to be read on resume. Signed-off-by: David Anders <danders@amltd.com> Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd/chips')
-rw-r--r--drivers/mtd/chips/cfi_cmdset_0001.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mtd/chips/cfi_cmdset_0001.c b/drivers/mtd/chips/cfi_cmdset_0001.c
index 7ea49a0d5ec3..e24973636e61 100644
--- a/drivers/mtd/chips/cfi_cmdset_0001.c
+++ b/drivers/mtd/chips/cfi_cmdset_0001.c
@@ -2224,6 +2224,8 @@ static int cfi_intelext_suspend(struct mtd_info *mtd)
2224 case FL_CFI_QUERY: 2224 case FL_CFI_QUERY:
2225 case FL_JEDEC_QUERY: 2225 case FL_JEDEC_QUERY:
2226 if (chip->oldstate == FL_READY) { 2226 if (chip->oldstate == FL_READY) {
2227 /* place the chip in a known state before suspend */
2228 map_write(map, CMD(0xFF), cfi->chips[i].start);
2227 chip->oldstate = chip->state; 2229 chip->oldstate = chip->state;
2228 chip->state = FL_PM_SUSPENDED; 2230 chip->state = FL_PM_SUSPENDED;
2229 /* No need to wake_up() on this state change - 2231 /* No need to wake_up() on this state change -