You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
987 B
30 lines
987 B
5 years ago
|
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(+)
|
||
|
|
||
|
diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c
|
||
|
index f4afe123e9dc..a34fa42d47a2 100644
|
||
|
--- a/drivers/mtd/spi-nor/spi-nor.c
|
||
|
+++ b/drivers/mtd/spi-nor/spi-nor.c
|
||
|
@@ -2346,6 +2346,11 @@ static const struct flash_info spi_nor_ids[] = {
|
||
|
{ "mb85rs1mt", INFO(0x047f27, 0, 128 * 1024, 1, SPI_NOR_NO_ERASE) },
|
||
|
|
||
|
/* GigaDevice */
|
||
|
+ {
|
||
|
+ "gd25d05", 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 |
|
||
|
--
|
||
|
2.17.1
|
||
|
|