diff options
author | Piotr Dymacz <pepe2k@gmail.com> | 2019-01-29 18:12:51 +0100 |
---|---|---|
committer | Piotr Dymacz <pepe2k@gmail.com> | 2019-02-26 00:15:38 +0100 |
commit | 99f72c0d6264661873de418868de0003fef21086 (patch) | |
tree | 154f7b14d3581dcc318e7437c5eaa81363367546 /target/linux/ipq40xx | |
parent | bf4630e5adb40aa393f6bd4c560baf42de0f1957 (diff) | |
download | upstream-99f72c0d6264661873de418868de0003fef21086.tar.gz upstream-99f72c0d6264661873de418868de0003fef21086.tar.bz2 upstream-99f72c0d6264661873de418868de0003fef21086.zip |
ipq40xx: add support for Macronix MX35LF1GE4AB SPI NAND
Without a proper SPI NAND support (SPI NAND framework is available in
kernel >= 4.19) the only way to make such flash working is to include
it in raw/parallel NAND subsystem support and combine with mt29f staging
driver. Obviously, this approach isn't going to be accepted by upstream
(similar support for Winbond W25N01GV was rejected).
Signed-off-by: Piotr Dymacz <pepe2k@gmail.com>
Diffstat (limited to 'target/linux/ipq40xx')
-rw-r--r-- | target/linux/ipq40xx/patches-4.14/085-mtd-nand-add-macronix-mx35lf1ge4ab.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/target/linux/ipq40xx/patches-4.14/085-mtd-nand-add-macronix-mx35lf1ge4ab.patch b/target/linux/ipq40xx/patches-4.14/085-mtd-nand-add-macronix-mx35lf1ge4ab.patch new file mode 100644 index 0000000000..56316aa517 --- /dev/null +++ b/target/linux/ipq40xx/patches-4.14/085-mtd-nand-add-macronix-mx35lf1ge4ab.patch @@ -0,0 +1,13 @@ +--- a/drivers/mtd/nand/nand_ids.c ++++ b/drivers/mtd/nand/nand_ids.c +@@ -54,6 +54,10 @@ struct nand_flash_dev nand_flash_ids[] = + { .id = {0xad, 0xde, 0x94, 0xda, 0x74, 0xc4} }, + SZ_8K, SZ_8K, SZ_2M, NAND_NEED_SCRAMBLING, 6, 640, + NAND_ECC_INFO(40, SZ_1K), 4 }, ++ {"MX35LF1GE4AB 1G 3.3V 8-bit", ++ { .id = {0xc2, 0x12} }, ++ SZ_2K, SZ_128, SZ_128K, NAND_NO_SUBPAGE_WRITE, ++ 2, 64, NAND_ECC_INFO(4, SZ_512) }, + {"W25N01GV 1G 3.3V 8-bit", + { .id = {0xef, 0xaa} }, + SZ_2K, SZ_128, SZ_128K, NAND_NO_SUBPAGE_WRITE, |