mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-26 22:52:34 +02:00
flashchips: Add support for XMC XM25QH80B
XM25QH80B has the same ID as M45PE80, but has more features. Tested with CH341A. Change-Id: Ib51225426d8d1a381d45af3574e5ba2bf02837aa Signed-off-by: Sungbo Eo <mans0n@gorani.run> Signed-off-by: Anastasia Klimchuk <aklm@flashrom.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/63516 Reviewed-by: Nikolai Artemiev <nartemiev@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
879fa069fd
commit
9ccbf1cf43
38
flashchips.c
38
flashchips.c
@ -20789,6 +20789,44 @@ const struct flashchip flashchips[] = {
|
||||
.voltage = {3000, 3600},
|
||||
},
|
||||
|
||||
{
|
||||
.vendor = "XMC",
|
||||
.name = "XM25QH80B",
|
||||
.bustype = BUS_SPI,
|
||||
.manufacture_id = ST_ID,
|
||||
.model_id = ST_M45PE80,
|
||||
.total_size = 1024,
|
||||
.page_size = 256,
|
||||
.feature_bits = FEATURE_WRSR_WREN,
|
||||
.tested = TEST_OK_PREW,
|
||||
.probe = PROBE_SPI_RDID,
|
||||
.probe_timing = TIMING_ZERO,
|
||||
.block_erasers =
|
||||
{
|
||||
{
|
||||
.eraseblocks = { {4 * 1024, 256} },
|
||||
.block_erase = SPI_BLOCK_ERASE_20,
|
||||
}, {
|
||||
.eraseblocks = { {32 * 1024, 32} },
|
||||
.block_erase = SPI_BLOCK_ERASE_52,
|
||||
}, {
|
||||
.eraseblocks = { {64 * 1024, 16} },
|
||||
.block_erase = SPI_BLOCK_ERASE_D8,
|
||||
}, {
|
||||
.eraseblocks = { {1 * 1024 * 1024, 1} },
|
||||
.block_erase = SPI_BLOCK_ERASE_60,
|
||||
}, {
|
||||
.eraseblocks = { {1 * 1024 * 1024, 1} },
|
||||
.block_erase = SPI_BLOCK_ERASE_C7,
|
||||
}
|
||||
},
|
||||
.printlock = SPI_PRETTYPRINT_STATUS_REGISTER_BP2_SRWD,
|
||||
.unlock = SPI_DISABLE_BLOCKPROTECT,
|
||||
.write = SPI_CHIP_WRITE256,
|
||||
.read = SPI_CHIP_READ,
|
||||
.voltage = {2700, 3600},
|
||||
},
|
||||
|
||||
{
|
||||
.vendor = "XMC",
|
||||
.name = "XM25QH64C",
|
||||
|
@ -828,7 +828,7 @@
|
||||
#define ST_M45PE10 0x4011
|
||||
#define ST_M45PE20 0x4012
|
||||
#define ST_M45PE40 0x4013
|
||||
#define ST_M45PE80 0x4014
|
||||
#define ST_M45PE80 0x4014 /* Same as XM25QH80B */
|
||||
#define ST_M45PE16 0x4015
|
||||
#define XMC_XM25QH64C 0x4017
|
||||
#define XMC_XM25QU64C 0x4117
|
||||
|
Loading…
x
Reference in New Issue
Block a user