mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 14:34:27 -05:00 
			
		
		
		
	Refreshed all patches. Compile-tested on: ar71xx, cns3xxx, imx6, x86_64 Runtime-tested on: ar71xx, cns3xxx, imx6, x86_64 Signed-off-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From: Robert Marko <robimarko@gmail.com>
 | 
						|
To: linux-mtd@lists.infradead.org
 | 
						|
Subject: mtd: spi-nor: Add Winbond w25q128jv support
 | 
						|
Date: Mon, 25 Jun 2018 13:17:48 +0200
 | 
						|
 | 
						|
Datasheet:
 | 
						|
http://www.winbond.com/resource-files/w25q128jv%20revf%2003272018%20plus.pdf
 | 
						|
 | 
						|
Testing done on Mikrotik Routerboard  wAP R board.
 | 
						|
It does not support Dual or Quad modes.
 | 
						|
 | 
						|
Signed-off-by: Robert Marko <robimarko@gmail.com>
 | 
						|
---
 | 
						|
 | 
						|
Changes in v2:
 | 
						|
	- Correct the title
 | 
						|
---
 | 
						|
 drivers/mtd/spi-nor/spi-nor.c | 5 +++++
 | 
						|
 1 file changed, 5 insertions(+)
 | 
						|
 | 
						|
--- a/drivers/mtd/spi-nor/spi-nor.c
 | 
						|
+++ b/drivers/mtd/spi-nor/spi-nor.c
 | 
						|
@@ -1165,6 +1165,11 @@ static const struct flash_info spi_nor_i
 | 
						|
 			SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ |
 | 
						|
 			SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB)
 | 
						|
 	},
 | 
						|
+	{
 | 
						|
+		"w25q128jv", INFO(0xef7018, 0, 64 * 1024, 256,
 | 
						|
+			SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ |
 | 
						|
+			SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB)
 | 
						|
+	},
 | 
						|
 	{ "w25q80", INFO(0xef5014, 0, 64 * 1024,  16, SECT_4K) },
 | 
						|
 	{ "w25q80bl", INFO(0xef4014, 0, 64 * 1024,  16, SECT_4K) },
 | 
						|
 	{ "w25q128", INFO(0xef4018, 0, 64 * 1024, 256, SECT_4K) },
 |