diff options
author | Jaehoon Park <52432979+jaehoon-sifive@users.noreply.github.com> | 2020-06-24 04:39:27 +0900 |
---|---|---|
committer | Antonio Borneo <borneo.antonio@gmail.com> | 2021-12-11 17:49:46 +0000 |
commit | fdf17dba569ac8aca0771c28b661e3722d776541 (patch) | |
tree | 576124f0b6256a00d88d01c5e8c67048a1258fa5 /src/flash/nor/spi.c | |
parent | 71ca3a134916c74bb9199d1da0941a77670c914a (diff) | |
download | riscv-openocd-fdf17dba569ac8aca0771c28b661e3722d776541.zip riscv-openocd-fdf17dba569ac8aca0771c28b661e3722d776541.tar.gz riscv-openocd-fdf17dba569ac8aca0771c28b661e3722d776541.tar.bz2 |
flash/nor/spi: add micron MT25QU01G
1Gbit SPI flash on VCU118 Rev. 2.0
Contributed to riscv-openocd in https://github.com/riscv/riscv-openocd/pull/487
Signed-off-by: Tim Newsome <tim@sifive.com>
Change-Id: I93447dd970d9901a671567fe8ab9e407432f8db9
Reviewed-on: https://review.openocd.org/c/openocd/+/6764
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
Tested-by: jenkins
Diffstat (limited to 'src/flash/nor/spi.c')
-rw-r--r-- | src/flash/nor/spi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/flash/nor/spi.c b/src/flash/nor/spi.c index 937c194..f8d5819 100644 --- a/src/flash/nor/spi.c +++ b/src/flash/nor/spi.c @@ -96,6 +96,7 @@ const struct flash_device flash_devices[] = { FLASH_ID("micron n25q256 1.8v", 0x13, 0xec, 0x12, 0xdc, 0xc7, 0x0019bb20, 0x100, 0x10000, 0x2000000), FLASH_ID("micron mt25ql512", 0x13, 0xec, 0x12, 0xdc, 0xc7, 0x0020ba20, 0x100, 0x10000, 0x4000000), 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("win w25q80bv", 0x03, 0x00, 0x02, 0xd8, 0xc7, 0x001440ef, 0x100, 0x10000, 0x100000), FLASH_ID("win w25q16jv", 0x03, 0x00, 0x02, 0xd8, 0xc7, 0x001540ef, 0x100, 0x10000, 0x200000), |