This is an automated email from Gerrit. "Jan Cumps <jcu...@gmail.com>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/8287
-- gerrit commit 29c5c39c6fbef303062e08bcd191076bb3bded70 Author: jcu...@gmail.com <jcu...@gmail.com> Date: Sun May 19 17:14:46 2024 +0200 src/flash/nor/spi.c: add XIAO RP support Add new flash driver for internal flash of xiao rp2040. It uses the GIGADEVICEGD25Q16CEIG flash chip Change-Id: I83a9bf3eb191501807aa1305c37628264486da61 Signed-off-by: jcu...@gmail.com <jcu...@gmail.com> diff --git a/src/flash/nor/spi.c b/src/flash/nor/spi.c index bf654f9f6b..0ac3febc77 100644 --- a/src/flash/nor/spi.c +++ b/src/flash/nor/spi.c @@ -184,6 +184,7 @@ const struct flash_device flash_devices[] = { 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, 0xd8, 0xc7, 0x001560ba, 0x100, 0x10000, 0x200000), + FLASH_ID("pu p32q32", 0x03, 0xeb, 0x02, 0xd8, 0xc7, 0x00156085, 0x100, 0x10000, 0x4000000), /* FRAM, no erase commands, no write page or sectors */ --