[coreboot-gerrit] Patch set updated for coreboot: 93773b1 spi: Add support for Winbond W25Q128FW

Mohan D'Costa (mohan@ndr.co.jp) gerrit at coreboot.org
Thu Sep 25 09:39:36 CEST 2014


Mohan D'Costa (mohan at ndr.co.jp) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6971

-gerrit

commit 93773b11c1713d8d654120ef10e5f030291a80a8
Author: Mohan D'Costa <mohan at ndr.co.jp>
Date:   Thu Sep 25 14:40:44 2014 +0900

    spi: Add support for Winbond W25Q128FW
    
    The W25Q128FW spi part is programatically equivalent
    to the other W25Q128 parts except it operates at 1.8V.
    Just add a new entry with the appropriate ID.
    
    Tested on a modified MinnowMax Board.
    
    Change-Id: Id6a426418a7f785a9d959b02a9e3d2ffc421804f
    Signed-off-by: Mohan D'Costa <mohan at ndr.co.jp>
---
 src/drivers/spi/winbond.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/src/drivers/spi/winbond.c b/src/drivers/spi/winbond.c
index 37fd0e5..0c94c6f 100644
--- a/src/drivers/spi/winbond.c
+++ b/src/drivers/spi/winbond.c
@@ -110,6 +110,14 @@ static const struct winbond_spi_flash_params winbond_spi_flash_table[] = {
 		.nr_blocks		= 256,
 		.name			= "W25Q128",
 	},
+	{
+		.id			= 0x6018,
+		.l2_page_size		= 8,
+		.pages_per_sector	= 16,
+		.sectors_per_block	= 16,
+		.nr_blocks		= 256,
+		.name			= "W25Q128FW",
+	},
 };
 
 static int winbond_write(struct spi_flash *flash,



More information about the coreboot-gerrit mailing list