Add support for Winbond W25Q128FW (16 MB, low voltage) FLASH chip
authorPiotr Dymacz <pepe2k@gmail.com>
Thu, 11 Aug 2016 11:33:30 +0000 (13:33 +0200)
committerPiotr Dymacz <pepe2k@gmail.com>
Thu, 11 Aug 2016 11:33:30 +0000 (13:33 +0200)
README.md
READMEPL.md
u-boot/common/flash.c

index 4145fcc7e8cc85c9af3d9fbdb26574a886d3d166..779702e891b99cf8668e399f09566861673e4c44 100644 (file)
--- a/README.md
+++ b/README.md
@@ -321,6 +321,7 @@ Currently supported FLASH types:
 **16 MiB**:
 
 - Winbond W25Q128 (16 MB, JEDEC ID: EF 4018)*
+- Winbond W25Q128FW (16 MB, JEDEC ID: EF 6018, 1,8 V)*
 - Macronix MX25L128 (16 MB, JEDEC ID: C2 2018, C2 2618)
 - Spansion S25FL127S (16 MB, JEDEC ID: 01 2018)*
 - Micron N25Q128 (16 MB, JEDEC ID: 20 BA18)
index d5185abee27971197a109bfc4e476b36861d9ab4..1f23818046763c717732fccfb60bc71b8c2330a8 100644 (file)
@@ -312,6 +312,7 @@ Pełna lista obsługiwanych kości FLASH:
 **16 MiB**:
 
 - Winbond W25Q128 (16 MB, JEDEC ID: EF 4018)*
+- Winbond W25Q128FW (16 MB, JEDEC ID: EF 6018, 1,8 V)*
 - Macronix MX25L128 (16 MB, JEDEC ID: C2 2018, C2 2618)
 - Spansion S25FL127S (16 MB, JEDEC ID: 01 2018)*
 - Micron N25Q128 (16 MB, JEDEC ID: 20 BA18)
index 1477a50c2b3ed25d27446ec920e92a2d735f1cfe..4e92b2e2e0d18f1ff007493b49af946d60166c05 100644 (file)
@@ -46,6 +46,7 @@ const spi_nor_ids_info_t spi_nor_ids[] = {
        { "N25Q128",   0x20BA18, SIZE_16MiB, SIZE_64KiB, 256, SPI_FLASH_CMD_ES_64KB },
        { "S25FL127S", 0x012018, SIZE_16MiB, SIZE_64KiB, 256, SPI_FLASH_CMD_ES_64KB },
        { "W25Q128",   0xEF4018, SIZE_16MiB, SIZE_64KiB, 256, SPI_FLASH_CMD_ES_64KB },
+       { "W25Q128FW", 0xEF6018, SIZE_16MiB, SIZE_64KiB, 256, SPI_FLASH_CMD_ES_64KB },
 };
 
 const u32 spi_nor_ids_count = sizeof(spi_nor_ids) / sizeof(spi_nor_ids_info_t);