aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/devices/m25p80.c
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2012-09-03 23:31:36 -0400
committerDavid Woodhouse <David.Woodhouse@intel.com>2012-09-29 10:40:19 -0400
commitb277f77e5d6cac15bedde341b571a81fb0db2260 (patch)
tree3f7368b85aeea7aa05e6918ec1f89c9cf26881de /drivers/mtd/devices/m25p80.c
parent5fe42d5bf2deac62bf2a532b30deacc007805b91 (diff)
mtd: m25p80: Disable 4KiB erase for s25sl032p, s25sl064p
Quoting from the datasheet for S25FL064P, rev. 05, Nov 18 2011, ยง 9.17: "A 64 kB[sic] sector erase (D8h) command issued on 4 kB or 8 kB erase sectors will erase all sectors in the specified 64 kB region. However, please note that a 4 kB sector erase (20h) or 8 kB sector erase (40h) command will not work on a 64 kB sector." Referring further to Table 8.1 and Table 8.2, it is clearly seen that most of the sectors are 64KiB; therefore disable this 4KiB erase support since it's valid only on first/last sectors. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/devices/m25p80.c')
-rw-r--r--drivers/mtd/devices/m25p80.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c
index 33213c780333..03838bab1f59 100644
--- a/drivers/mtd/devices/m25p80.c
+++ b/drivers/mtd/devices/m25p80.c
@@ -670,8 +670,8 @@ static const struct spi_device_id m25p_ids[] = {
670 /* Spansion -- single (large) sector size only, at least 670 /* Spansion -- single (large) sector size only, at least
671 * for the chips listed here (without boot sectors). 671 * for the chips listed here (without boot sectors).
672 */ 672 */
673 { "s25sl032p", INFO(0x010215, 0x4d00, 64 * 1024, 64, SECT_4K) }, 673 { "s25sl032p", INFO(0x010215, 0x4d00, 64 * 1024, 64, 0) },
674 { "s25sl064p", INFO(0x010216, 0x4d00, 64 * 1024, 128, SECT_4K) }, 674 { "s25sl064p", INFO(0x010216, 0x4d00, 64 * 1024, 128, 0) },
675 { "s25fl256s0", INFO(0x010219, 0x4d00, 256 * 1024, 128, 0) }, 675 { "s25fl256s0", INFO(0x010219, 0x4d00, 256 * 1024, 128, 0) },
676 { "s25fl256s1", INFO(0x010219, 0x4d01, 64 * 1024, 512, 0) }, 676 { "s25fl256s1", INFO(0x010219, 0x4d01, 64 * 1024, 512, 0) },
677 { "s25fl512s", INFO(0x010220, 0x4d00, 256 * 1024, 256, 0) }, 677 { "s25fl512s", INFO(0x010220, 0x4d00, 256 * 1024, 256, 0) },