mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 14:34:27 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			864 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			864 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
From d68b4aa22e8c625685bfad642dd7337948dc0ad1 Mon Sep 17 00:00:00 2001
 | 
						|
From: Koen Vandeputte <koen.vandeputte@ncentric.com>
 | 
						|
Date: Mon, 6 Jan 2020 13:07:56 +0100
 | 
						|
Subject: [PATCH] mtd: spi-nor: add support for Gigadevice GD25D05
 | 
						|
 | 
						|
Signed-off-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
 | 
						|
---
 | 
						|
 drivers/mtd/spi-nor/spi-nor.c | 5 +++++
 | 
						|
 1 file changed, 5 insertions(+)
 | 
						|
 | 
						|
--- a/drivers/mtd/spi-nor/gigadevice.c
 | 
						|
+++ b/drivers/mtd/spi-nor/gigadevice.c
 | 
						|
@@ -24,6 +24,9 @@ static struct spi_nor_fixups gd25q256_fi
 | 
						|
 };
 | 
						|
 
 | 
						|
 static const struct flash_info gigadevice_parts[] = {
 | 
						|
+	{ "gd25q05", INFO(0xc84010, 0, 64 * 1024,  1,
 | 
						|
+			  SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ |
 | 
						|
+			  SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB) },
 | 
						|
 	{ "gd25q16", INFO(0xc84015, 0, 64 * 1024,  32,
 | 
						|
 			  SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ |
 | 
						|
 			  SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB) },
 |