[U-Boot] [PATCH] mtd: spi-nor-ids: Add Gigadevice gd25lq128 ID

This adds support for the Gigadevice gd25lq128 ID needed on the upcoming libretech-ac board.
SPI_NOR_QUAD_READ is not set since it has not been tested in Quad mode.
Signed-off-by: Neil Armstrong narmstrong@baylibre.com --- drivers/mtd/spi/spi-nor-ids.c | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/drivers/mtd/spi/spi-nor-ids.c b/drivers/mtd/spi/spi-nor-ids.c index 3215e2431d..f658528a53 100644 --- a/drivers/mtd/spi/spi-nor-ids.c +++ b/drivers/mtd/spi/spi-nor-ids.c @@ -106,6 +106,11 @@ const struct flash_info spi_nor_ids[] = { SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB) }, + { + INFO("gd25lq128", 0xc86018, 0, 64 * 1024, 256, + SECT_4K | SPI_NOR_DUAL_READ | + SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB) + }, #endif #ifdef CONFIG_SPI_FLASH_ISSI /* ISSI */ /* ISSI */

On Fri, Apr 12, 2019 at 3:20 PM Neil Armstrong narmstrong@baylibre.com wrote:
This adds support for the Gigadevice gd25lq128 ID needed on the upcoming libretech-ac board.
SPI_NOR_QUAD_READ is not set since it has not been tested in Quad mode.
Signed-off-by: Neil Armstrong narmstrong@baylibre.com
Applied to u-boot-spi/master
participants (2)
-
Jagan Teki
-
Neil Armstrong