This is an automated email from Gerrit. "Gennaro Tortone <[email protected]>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/9412
-- gerrit commit 545e1aa4ed4d2404ffac706833f9f55bb4f0e1f7 Author: Gennaro Tortone <[email protected]> Date: Wed Jan 28 21:20:38 2026 +0100 flash/nor/spi: Add Boya-Micro BY25Q128AS and Byte-Semi BY25Q16ES flash - Boya-Micro BY25Q128AS: 16 MB - Byte-Semi BY25Q16ES: 2MB Change-Id: Ib3caee62abc34f92321425d9427054b6a9b6ec66 Signed-off-by: Gennaro Tortone <[email protected]> diff --git a/src/flash/nor/spi.c b/src/flash/nor/spi.c index 7f03f1fead..9e1df088eb 100644 --- a/src/flash/nor/spi.c +++ b/src/flash/nor/spi.c @@ -125,6 +125,8 @@ const struct flash_device flash_devices[] = { FLASH_ID("micron mt25ql01", 0x13, 0xec, 0x12, 0xdc, 0xc7, 0x0021ba20, 0x100, 0x10000, 0x8000000), FLASH_ID("micron mt25qu01", 0x13, 0xec, 0x12, 0xdc, 0xc7, 0x0021bb20, 0x100, 0x10000, 0x8000000), FLASH_ID("micron mt25ql02", 0x13, 0xec, 0x12, 0xdc, 0xc7, 0x0022ba20, 0x100, 0x10000, 0x10000000), + FLASH_ID("bsemi by25q16es", 0x03, 0xeb, 0x02, 0xd8, 0xc7, 0x00154068, 0x100, 0x10000, 0x200000), + FLASH_ID("boya by25q128as", 0x03, 0xeb, 0x02, 0xd8, 0xc7, 0x00184068, 0x100, 0x10000, 0x10000000), FLASH_ID("win w25q80bv", 0x03, 0x00, 0x02, 0xd8, 0xc7, 0x001440ef, 0x100, 0x10000, 0x100000), FLASH_ID("win w25q16jv", 0x03, 0x00, 0x02, 0xd8, 0xc7, 0x001540ef, 0x100, 0x10000, 0x200000), FLASH_ID("win w25q16jv", 0x03, 0x00, 0x02, 0xd8, 0xc7, 0x001570ef, 0x100, 0x10000, 0x200000), /* QPI / DTR */ --
