This is an automated email from Gerrit. "Nikolay Dimitrov <nikolay.dimit...@retrohub.org>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/7849
-- gerrit commit f140c151facde6e755039f4852ce0ec41a245f90 Author: Nikolay Dimitrov <nikolay.dimit...@retrohub.org> Date: Thu Aug 3 23:50:55 2023 +0300 flash/nor/spi: add zetta zd25q16 * Zetta 16 Mbit (2 MiB) SPI flash * Tested on Olimex RP2040-PICO30 and Neo6502 boards Change-Id: I02224dd7a72a9b72f01b31edbd958daa23f28956 Signed-off-by: Nikolay Dimitrov <nikolay.dimit...@retrohub.org> diff --git a/src/flash/nor/spi.c b/src/flash/nor/spi.c index 3bcaa9f613..d559567441 100644 --- a/src/flash/nor/spi.c +++ b/src/flash/nor/spi.c @@ -171,6 +171,7 @@ const struct flash_device flash_devices[] = { FLASH_ID("xtx xt25q32b", 0x03, 0x0b, 0x02, 0xd8, 0xc7, 0x0016600b, 0x100, 0x10000, 0x400000), /* exists ? */ FLASH_ID("xtx xt25q64b", 0x03, 0x0b, 0x02, 0xd8, 0xc7, 0x0017600b, 0x100, 0x10000, 0x800000), FLASH_ID("xtx xt25q128b", 0x03, 0x0b, 0x02, 0xd8, 0xc7, 0x0018600b, 0x100, 0x10000, 0x1000000), + FLASH_ID("zetta zd25q16", 0x03, 0x00, 0x02, 0x20, 0xc7, 0x001560ba, 0x100, 0x1000, 0x200000), /* FRAM, no erase commands, no write page or sectors */ FRAM_ID("fu mb85rs16n", 0x03, 0, 0x02, 0x00010104, 0x800), --