mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-13 15:03:58 +03:00
mtd: spi-nor: Add support for zBIT ZB25VQ128
Add support for the zBIT ZB25VQ128 (128M-bit) SPI NOR flash memory chip, as used on the Xunlong Orange Pi Zero 3 board. Signed-off-by: Andre Przywara <andre.przywara@arm.com> Reviewed-by: Dragan Simic <dsimic@manjaro.org>
This commit is contained in:
@@ -224,6 +224,11 @@ config SPI_FLASH_XTX
|
||||
Add support for various XTX (XTX Technology Limited)
|
||||
SPI flash chips (XT25xxx).
|
||||
|
||||
config SPI_FLASH_ZBIT
|
||||
bool "ZBIT SPI flash support"
|
||||
help
|
||||
Add support for Zbit Semiconductor Inc. SPI flash chips (ZB25xxx).
|
||||
|
||||
endif
|
||||
|
||||
config SPI_FLASH_USE_4K_SECTORS
|
||||
|
||||
@@ -571,6 +571,11 @@ const struct flash_info spi_nor_ids[] = {
|
||||
SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) },
|
||||
{ INFO("xt25w01g", 0x0b651B, 0, 64 * 1024, 2048,
|
||||
SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) },
|
||||
#endif
|
||||
#ifdef CONFIG_SPI_FLASH_ZBIT
|
||||
/* Zbit Semiconductor Inc. */
|
||||
{ INFO("zb25vq128", 0x5e4018, 0, 64 * 1024, 256,
|
||||
SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
|
||||
#endif
|
||||
{ },
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user