2010-11-08 18:28:07 +00:00
|
|
|
--- a/drivers/mtd/chips/cfi_cmdset_0002.c
|
|
|
|
+++ b/drivers/mtd/chips/cfi_cmdset_0002.c
|
2012-03-02 13:18:56 +00:00
|
|
|
@@ -371,9 +371,34 @@ static struct cfi_fixup fixup_table[] =
|
2010-12-08 21:20:40 +00:00
|
|
|
static void cfi_fixup_major_minor(struct cfi_private *cfi,
|
|
|
|
struct cfi_pri_amdstd *extp)
|
2010-11-08 18:28:07 +00:00
|
|
|
{
|
|
|
|
- if (cfi->mfr == CFI_MFR_SAMSUNG && cfi->id == 0x257e &&
|
|
|
|
- extp->MajorVersion == '0')
|
2010-12-08 21:20:40 +00:00
|
|
|
- extp->MajorVersion = '1';
|
|
|
|
+ /* Manufacturers are defined in include/linux/mtd/cfi.h */
|
|
|
|
+
|
2010-11-08 18:28:07 +00:00
|
|
|
+ if (cfi->mfr == CFI_MFR_SAMSUNG &&
|
2010-12-08 21:20:40 +00:00
|
|
|
+ extp->MajorVersion == '0') {
|
|
|
|
+ printk(" Fixed Samsung's Amd/Fujitsu Extended Query version from %c.%c",
|
|
|
|
+ extp->MajorVersion, extp->MinorVersion);
|
2010-11-08 18:28:07 +00:00
|
|
|
+
|
2010-12-08 21:20:40 +00:00
|
|
|
+ extp->MajorVersion = '1';
|
|
|
|
+ extp->MinorVersion = '0';
|
2010-11-08 18:28:07 +00:00
|
|
|
+
|
2010-12-08 21:20:40 +00:00
|
|
|
+ printk(" to %c.%c.\n",
|
|
|
|
+ extp->MajorVersion, extp->MinorVersion);
|
2010-11-08 18:28:07 +00:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (cfi->mfr == CFI_MFR_SAMSUNG &&
|
2010-12-08 21:20:40 +00:00
|
|
|
+ extp->MajorVersion == '3' && extp->MinorVersion == '3') {
|
|
|
|
+ printk(KERN_NOTICE " Newer Samsung flash detected, "
|
|
|
|
+ "should be compatible with Amd/Fujitsu.\n");
|
2010-11-08 18:28:07 +00:00
|
|
|
+
|
2010-12-08 21:20:40 +00:00
|
|
|
+ printk(" Fixed Samsung's Amd/Fujitsu Extended Query version from %c.%c",
|
|
|
|
+ extp->MajorVersion, extp->MinorVersion);
|
2010-11-08 18:28:07 +00:00
|
|
|
+
|
2010-12-08 21:20:40 +00:00
|
|
|
+ extp->MajorVersion = '1'; // set to 1.3
|
|
|
|
+ extp->MinorVersion = '3';
|
2010-11-08 18:28:07 +00:00
|
|
|
+
|
2010-12-08 21:20:40 +00:00
|
|
|
+ printk(" to %c.%c.\n",
|
|
|
|
+ extp->MajorVersion, extp->MinorVersion);
|
2010-11-08 18:28:07 +00:00
|
|
|
+ }
|
|
|
|
}
|
|
|
|
|
|
|
|
struct mtd_info *cfi_cmdset_0002(struct map_info *map, int primary)
|