Nick: kudi E-mail: none Board: - Contents: diff --git a/flashchips.c b/flashchips.c index 5b328f8..2581c35 100644 --- a/flashchips.c +++ b/flashchips.c @@ -3518,6 +3518,44 @@ const struct flashchip flashchips[] = { .voltage = {2700, 3600}, }, + { + .vendor = "Boya Microelectronics", + .name = "BY25D16A", + .bustype = BUS_SPI, + .manufacture_id = BOYA_ID, + .model_id = BOYA_BY25D16A, + .total_size = 2048, + .page_size = 256, + .feature_bits = FEATURE_WRSR_WREN, + .tested = TEST_OK_PR, + .probe = probe_spi_rdid, + .probe_timing = TIMING_ZERO, + .block_erasers = + { + { + .eraseblocks = { {4 * 1024, 512} }, + .block_erase = spi_block_erase_20, + }, { + .eraseblocks = { {32 * 1024, 64} }, + .block_erase = spi_block_erase_52, + }, { + .eraseblocks = { {64 * 1024, 32} }, + .block_erase = spi_block_erase_d8, + }, { + .eraseblocks = { {2 * 1024 * 1024, 1} }, + .block_erase = spi_block_erase_60, + }, { + .eraseblocks = { {2 * 1024 * 1024, 1} }, + .block_erase = spi_block_erase_c7, + } + }, + .printlock = spi_prettyprint_status_register_bp2_srwd, + .unlock = spi_disable_blockprotect_bp2_srwd, + .write = spi_chip_write_256, + .read = spi_chip_read, + .voltage = {2700, 3600}, + }, + { .vendor = "Bright", .name = "BM29F040", diff --git a/flashchips.h b/flashchips.h index 2ad09df..10ebe5d 100644 --- a/flashchips.h +++ b/flashchips.h @@ -208,9 +208,10 @@ #define ATMEL_AT49F080 0x23 #define ATMEL_AT49F080T 0x27 -/* Boya Microelectronics Inc.*/ +/* Boya Microelectronics Inc. / BoHong Microelectronics */ #define BOYA_ID 0x68 -#define BOYA_BY25Q128AS 0x4018 +#define BOYA_BY25Q128AS 0x4018 /* Same as BoHong Microelectronics BH25Q128AS */ +#define BOYA_BY25D16A 0x4015 /* Same as BoHong Microelectronics BH25D16A */