Skip to content
Snippets Groups Projects
Commit 48af005b authored by Gabor Juhos's avatar Gabor Juhos
Browse files

generic: fix pm25lv SPI flash support

SVN-Revision: 22804
parent a80b9af0
No related branches found
No related tags found
No related merge requests found
......@@ -5,8 +5,8 @@
{ "mx25l12855e", 0xc22618, 0, 64 * 1024, 256, },
+ /* PMC -- pm25x "blocks" are 32K, sectors are 4K */
+ { "pm25lv512", 0, 32 * 1024, 2, SECT_4K },
+ { "pm25lv010", 0, 32 * 1024, 4, SECT_4K },
+ { "pm25lv512", 0, 0, 32 * 1024, 2, SECT_4K },
+ { "pm25lv010", 0, 0, 32 * 1024, 4, SECT_4K },
+
/* Spansion -- single (large) sector size only, at least
* for the chips listed here (without boot sectors).
......
......@@ -9,5 +9,5 @@
+ { "en25p64", 0x1c2017, 0, 64 * 1024, 128, },
+
/* PMC -- pm25x "blocks" are 32K, sectors are 4K */
{ "pm25lv512", 0, 32 * 1024, 2, SECT_4K },
{ "pm25lv010", 0, 32 * 1024, 4, SECT_4K },
{ "pm25lv512", 0, 0, 32 * 1024, 2, SECT_4K },
{ "pm25lv010", 0, 0, 32 * 1024, 4, SECT_4K },
......@@ -10,8 +10,8 @@
+ { "640s33b", 0x898913, 0, 64 * 1024, 128, },
+
/* PMC -- pm25x "blocks" are 32K, sectors are 4K */
{ "pm25lv512", 0, 32 * 1024, 2, SECT_4K },
{ "pm25lv010", 0, 32 * 1024, 4, SECT_4K },
{ "pm25lv512", 0, 0, 32 * 1024, 2, SECT_4K },
{ "pm25lv010", 0, 0, 32 * 1024, 4, SECT_4K },
@@ -784,11 +789,12 @@ static int __devinit m25p_probe(struct s
dev_set_drvdata(&spi->dev, flash);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment