aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/chips
diff options
context:
space:
mode:
authorGuillaume LECERF <glecerf@gmail.com>2010-04-24 11:58:02 -0400
committerDavid Woodhouse <David.Woodhouse@intel.com>2010-05-13 20:08:11 -0400
commit54b93a49d8dd90dfb658f21a3316527fe6195106 (patch)
tree19f8474cf5213a927325d4348bc128d110316505 /drivers/mtd/chips
parentad7026fef6c771fc88ecbcb111876fc050b1a4d0 (diff)
mtd: cfi_probe: add support for SST 0x0701 vendorname
SST 39VF160x and 39VF320x chips use vendorname id 0x0701 and alternative unlock addresses. Add support for them in cfi_probe.c. Signed-off-by: Guillaume LECERF <glecerf@gmail.com> Reviewed-by: Wolfram Sang <w.sang@pengutronix.de> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/chips')
-rw-r--r--drivers/mtd/chips/cfi_probe.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/mtd/chips/cfi_probe.c b/drivers/mtd/chips/cfi_probe.c
index 045dc100496c..b2acd32f4fbf 100644
--- a/drivers/mtd/chips/cfi_probe.c
+++ b/drivers/mtd/chips/cfi_probe.c
@@ -206,6 +206,11 @@ static int __xipram cfi_chip_setup(struct map_info *map,
206#endif 206#endif
207 } 207 }
208 208
209 if (cfi->cfiq->P_ID == P_ID_SST_OLD) {
210 addr_unlock1 = 0x5555;
211 addr_unlock2 = 0x2AAA;
212 }
213
209 /* 214 /*
210 * Note we put the device back into Read Mode BEFORE going into Auto 215 * Note we put the device back into Read Mode BEFORE going into Auto
211 * Select Mode, as some devices support nesting of modes, others 216 * Select Mode, as some devices support nesting of modes, others
@@ -271,6 +276,9 @@ static char *vendorname(__u16 vendor)
271 case P_ID_SST_PAGE: 276 case P_ID_SST_PAGE:
272 return "SST Page Write"; 277 return "SST Page Write";
273 278
279 case P_ID_SST_OLD:
280 return "SST 39VF160x/39VF320x";
281
274 case P_ID_INTEL_PERFORMANCE: 282 case P_ID_INTEL_PERFORMANCE:
275 return "Intel Performance Code"; 283 return "Intel Performance Code";
276 284