diff options
author | Ben Dooks <ben@simtec.co.uk> | 2005-02-14 11:30:35 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@mtd.linutronix.de> | 2005-05-23 06:34:00 -0400 |
commit | 88ec7c50bfeb5447d96fba55021bec2a274ea021 (patch) | |
tree | 7358c03a033f36fc0909e3e2c1663fa1e3e7fbde | |
parent | 011b2a36278cca110c70506ad85b042c2faabac2 (diff) |
[MTD] Add SST 39VF1601 (MPF+) ID
Signed-off-by: Ben Dooks <ben@simtec.co.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | drivers/mtd/chips/jedec_probe.c | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/drivers/mtd/chips/jedec_probe.c b/drivers/mtd/chips/jedec_probe.c index c2ef821b7af9..30da428eb7b9 100644 --- a/drivers/mtd/chips/jedec_probe.c +++ b/drivers/mtd/chips/jedec_probe.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | Common Flash Interface probe code. | 2 | Common Flash Interface probe code. |
3 | (C) 2000 Red Hat. GPL'd. | 3 | (C) 2000 Red Hat. GPL'd. |
4 | $Id: jedec_probe.c,v 1.62 2005/02/14 16:27:34 bjd Exp $ | 4 | $Id: jedec_probe.c,v 1.63 2005/02/14 16:30:32 bjd Exp $ |
5 | See JEDEC (http://www.jedec.org/) standard JESD21C (section 3.5) | 5 | See JEDEC (http://www.jedec.org/) standard JESD21C (section 3.5) |
6 | for the standard this probe goes back to. | 6 | for the standard this probe goes back to. |
7 | 7 | ||
@@ -142,6 +142,7 @@ | |||
142 | #define SST29LE512 0x003d | 142 | #define SST29LE512 0x003d |
143 | #define SST39LF800 0x2781 | 143 | #define SST39LF800 0x2781 |
144 | #define SST39LF160 0x2782 | 144 | #define SST39LF160 0x2782 |
145 | #define SST39VF1601 0x234b | ||
145 | #define SST39LF512 0x00D4 | 146 | #define SST39LF512 0x00D4 |
146 | #define SST39LF010 0x00D5 | 147 | #define SST39LF010 0x00D5 |
147 | #define SST39LF020 0x00D6 | 148 | #define SST39LF020 0x00D6 |
@@ -1448,6 +1449,21 @@ static const struct amd_flash_info jedec_table[] = { | |||
1448 | ERASEINFO(0x1000,256), | 1449 | ERASEINFO(0x1000,256), |
1449 | ERASEINFO(0x1000,256) | 1450 | ERASEINFO(0x1000,256) |
1450 | } | 1451 | } |
1452 | }, { | ||
1453 | .mfr_id = MANUFACTURER_SST, /* should be CFI */ | ||
1454 | .dev_id = SST39VF1601, | ||
1455 | .name = "SST 39VF1601", | ||
1456 | .uaddr = { | ||
1457 | [0] = MTD_UADDR_0x5555_0x2AAA, /* x8 */ | ||
1458 | [1] = MTD_UADDR_0x5555_0x2AAA /* x16 */ | ||
1459 | }, | ||
1460 | .DevSize = SIZE_2MiB, | ||
1461 | .CmdSet = P_ID_AMD_STD, | ||
1462 | .NumEraseRegions= 2, | ||
1463 | .regions = { | ||
1464 | ERASEINFO(0x1000,256), | ||
1465 | ERASEINFO(0x1000,256) | ||
1466 | } | ||
1451 | 1467 | ||
1452 | }, { | 1468 | }, { |
1453 | .mfr_id = MANUFACTURER_ST, /* FIXME - CFI device? */ | 1469 | .mfr_id = MANUFACTURER_ST, /* FIXME - CFI device? */ |