mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-23 15:32:33 +00:00
8b3d879861
Refreshed all patches. Compile-tested on: ath79, lantiq, ipq40xx, x86_64 Runtime-tested on: ipq40xx, x86_64 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
19 lines
741 B
Diff
19 lines
741 B
Diff
From: Piotr Dymacz <pepe2k@gmail.com>
|
|
Subject: kernel/mtd: add support for EON EN25Q128
|
|
|
|
Signed-off-by: Piotr Dymacz <pepe2k@gmail.com>
|
|
---
|
|
drivers/mtd/spi-nor/spi-nor.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/mtd/spi-nor/spi-nor.c
|
|
+++ b/drivers/mtd/spi-nor/spi-nor.c
|
|
@@ -2179,6 +2179,7 @@ static const struct flash_info spi_nor_i
|
|
{ "en25q32b", INFO(0x1c3016, 0, 64 * 1024, 64, 0) },
|
|
{ "en25p64", INFO(0x1c2017, 0, 64 * 1024, 128, 0) },
|
|
{ "en25q64", INFO(0x1c3017, 0, 64 * 1024, 128, SECT_4K) },
|
|
+ { "en25q128", INFO(0x1c3018, 0, 64 * 1024, 256, SECT_4K) },
|
|
{ "en25q80a", INFO(0x1c3014, 0, 64 * 1024, 16,
|
|
SECT_4K | SPI_NOR_DUAL_READ) },
|
|
{ "en25qh32", INFO(0x1c7016, 0, 64 * 1024, 64, 0) },
|