summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruwe <uwe@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2007-01-27 13:39:06 +0000
committeruwe <uwe@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2007-01-27 13:39:06 +0000
commitabb9c46674353d90cae83b65193fb2ef91718bd7 (patch)
tree7e0fbfaa990cec1d2baa02aa4b77da03b9b1f3bd
parentb0524d161bf03722df286baac249be807fcd4886 (diff)
downloadflashrom-abb9c46674353d90cae83b65193fb2ef91718bd7.tar.gz
Original v2 revision: 2539
Add support for the SST 49LF160C. Signed-off-by: Alan Carvalho de Assis <acassis@gmail.com> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@87 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r--README1
-rw-r--r--flash.h1
-rw-r--r--flashchips.c2
3 files changed, 4 insertions, 0 deletions
diff --git a/README b/README
index f296834..3114ad0 100644
--- a/README
+++ b/README
@@ -110,6 +110,7 @@ SST SST-49LF040B
SST SST-49LF040
SST SST-49LF020A
SST SST-49LF080A
+SST SST-49LF160C
SST SST-49LF002A/B
SST SST-49LF003A/B
SST SST-49LF004A/B
diff --git a/flash.h b/flash.h
index 6807f75..f98bcb6 100644
--- a/flash.h
+++ b/flash.h
@@ -59,6 +59,7 @@ extern struct flashchip flashchips[];
#define SST_49LF004C 0x54 /* SST 49LF004C device */
#define SST_49LF008C 0x59 /* SST 49LF008C device */
#define SST_49LF016C 0x5C /* SST 49LF016C device */
+#define SST_49LF160C 0x4C /* SST 49LF160C device */
#define PMC_ID 0x9D /* PMC Manufacturer ID code */
#define PMC_49FL002 0x6D /* PMC 49FL002 device code */
diff --git a/flashchips.c b/flashchips.c
index 541da09..8d9944b 100644
--- a/flashchips.c
+++ b/flashchips.c
@@ -89,6 +89,8 @@ struct flashchip flashchips[] = {
probe_49lfxxxc, erase_49lfxxxc, write_49lfxxxc, NULL},
{"SST49LF016C", SST_ID, SST_49LF016C, NULL, 2048, 4 * 1024 ,
probe_49lfxxxc, erase_49lfxxxc, write_49lfxxxc, NULL},
+ {"SST49LF160C", SST_ID, SST_49LF160C, NULL, 2048, 4 * 1024 ,
+ probe_49lfxxxc, erase_49lfxxxc, write_49lfxxxc, NULL},
{"Pm49FL004", PMC_ID, PMC_49FL004, NULL, 512, 64 * 1024,
probe_jedec, erase_chip_jedec, write_49fl004,NULL},
{"W29C011", WINBOND_ID, W_29C011, NULL, 128, 128,