aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/drivers/spi/sst.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/drivers/spi/sst.c b/src/drivers/spi/sst.c
index 559969a0ba..63fae95636 100644
--- a/src/drivers/spi/sst.c
+++ b/src/drivers/spi/sst.c
@@ -78,6 +78,11 @@ static const struct sst_spi_flash_params sst_spi_flash_table[] = {
.name = "SST25VF080B",
.ops = &spi_flash_ops_write_ai,
},{
+ .idcode1 = 0x80,
+ .nr_sectors = 256,
+ .name = "SST25VF080",
+ .ops = &spi_flash_ops_write_ai,
+ },{
.idcode1 = 0x41,
.nr_sectors = 512,
.name = "SST25VF016B",
@@ -112,6 +117,16 @@ static const struct sst_spi_flash_params sst_spi_flash_table[] = {
.nr_sectors = 128,
.name = "SST25WF040",
.ops = &spi_flash_ops_write_ai,
+ },{
+ .idcode1 = 0x05,
+ .nr_sectors = 256,
+ .name = "SST25WF080",
+ .ops = &spi_flash_ops_write_ai,
+ },{
+ .idcode1 = 0x14,
+ .nr_sectors = 256,
+ .name = "SST25WF080B",
+ .ops = &spi_flash_ops_write_ai,
},
};