mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 23:12:32 +00:00
a1b263698c
The updated sources bring support for the MT798x Filogic SoC family. Add builds for MT7986 with most supported storage types, each for DDR3 and DDR4 configurations. A better solution for skipping bad blocks on SPI-NAND connected via the SNFI interface has been implemented upstream, so drop local patch. Add pending patches [1] and [2] to fix boot on existing MT7622 boards. Tested on BananaPi BPi-R64 (SDMMC, eMMC, SPI-NAND), Linksys E8450 and Ubiquiti UniFi 6 LR as well as upcoming Bananapi BPi-R3 board for which support will be added in future patches. [1]: https://github.com/mtk-openwrt/arm-trusted-firmware/pulls/#3 [2]: https://github.com/mtk-openwrt/arm-trusted-firmware/pulls/#4 Signed-off-by: Daniel Golle <daniel@makrotopia.org>
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
From daaac60b504e6d5e77156ad0dc3dceca8b786e2d Mon Sep 17 00:00:00 2001
|
|
From: Daniel Golle <daniel@makrotopia.org>
|
|
Date: Sat, 27 Aug 2022 03:41:57 +0100
|
|
Subject: [PATCH] spi-nor: add more Winbond device IDs
|
|
|
|
Add device IDs for Winbond W25Q256 and W25Q512 variants.
|
|
|
|
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
|
|
---
|
|
drivers/mtd/nor/spi_nor.c | 11 +++++++++--
|
|
1 file changed, 9 insertions(+), 2 deletions(-)
|
|
|
|
--- a/drivers/mtd/nor/spi_nor.c
|
|
+++ b/drivers/mtd/nor/spi_nor.c
|
|
@@ -327,8 +327,15 @@ int spi_nor_read(unsigned int offset, ui
|
|
|
|
struct nor_device_info nor_flash_info_table[] = {
|
|
{"MX25L51245G", {0xC2, 0x20, 0x1A}, 0x4000000, 0},
|
|
- {"W25Q256JW",{0xEF,0x80, 0x19}, 0x2000000, 0},
|
|
- {"MX25U25635",{0xC2, 0x25, 0x39}, 0x2000000, 0}
|
|
+ {"W25Q256JV-IM", {0xEF, 0x70, 0x19}, 0x2000000, 0},
|
|
+ {"W25Q256JV-IQ", {0xEF, 0x40, 0x19}, 0x2000000, 0},
|
|
+ {"W25Q256JW", {0xEF, 0x60, 0x19}, 0x2000000, 0},
|
|
+ {"W25Q256JW-IM", {0xEF, 0x80, 0x19}, 0x2000000, 0},
|
|
+ {"W25Q512JV-IM", {0xEF, 0x70, 0x20}, 0x4000000, 0},
|
|
+ {"W25Q512JV-IQ", {0xEF, 0x40, 0x20}, 0x4000000, 0},
|
|
+ {"W25Q512NW-IM", {0xEF, 0x80, 0x20}, 0x4000000, 0},
|
|
+ {"W25Q512NW-IQ/IN", {0xEF, 0x60, 0x20}, 0x4000000, 0},
|
|
+ {"MX25U25635", {0xC2, 0x25, 0x39}, 0x2000000, 0}
|
|
};
|
|
|
|
|