mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 17:28:15 +00:00
mtd: spi-nor: Add support for Silicon Kaiser sk25lp128
Add support for Silicon Kaiser sk25lp128 SPI NOR flash found in Pine64 PinePhone Pro and PineTab2. Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
This commit is contained in:
parent
672c97b646
commit
791e2bf9a8
2 changed files with 9 additions and 0 deletions
|
@ -176,6 +176,11 @@ config SPI_FLASH_MACRONIX
|
|||
help
|
||||
Add support for various Macronix SPI flash chips (MX25Lxxx)
|
||||
|
||||
config SPI_FLASH_SILICONKAISER
|
||||
bool "Silicon Kaiser SPI flash support"
|
||||
help
|
||||
Add support for various Silicon Kaiser SPI flash chips (SK25Lxxx)
|
||||
|
||||
config SPI_FLASH_SPANSION
|
||||
bool "Spansion SPI flash support"
|
||||
help
|
||||
|
|
|
@ -287,6 +287,10 @@ const struct flash_info spi_nor_ids[] = {
|
|||
{ INFO("mx25uw6345g", 0xc28437, 0, 64 * 1024, 128, SECT_4K | SPI_NOR_OCTAL_DTR_READ | SPI_NOR_4B_OPCODES) },
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SPI_FLASH_SILICONKAISER
|
||||
{ INFO("sk25lp128", 0x257018, 0, 64 * 1024, 256, SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SPI_FLASH_STMICRO /* STMICRO */
|
||||
/* Micron */
|
||||
{ INFO("n25q016a", 0x20bb15, 0, 64 * 1024, 32, SECT_4K | SPI_NOR_QUAD_READ) },
|
||||
|
|
Loading…
Reference in a new issue