mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-02-15 04:42:02 +00:00
27 lines
856 B
Diff
27 lines
856 B
Diff
From f6b33d850f7f12555df2fa0e3349b33427bf5890 Mon Sep 17 00:00:00 2001
|
|
From: OpenWrt community <openwrt-devel@lists.openwrt.org>
|
|
Date: Wed, 13 Jul 2022 12:19:01 +0200
|
|
Subject: [PATCH] spi-nor/xmc.c: add xm25qh128c
|
|
|
|
The XMC XM25QH128C is a 16MB SPI NOR chip. The patch is verified on
|
|
Ruijie RG-EW3200GX PRO.
|
|
Datasheet available at https://www.xmcwh.com/uploads/435/XM25QH128C.pdf
|
|
|
|
---
|
|
drivers/mtd/spi-nor/xmc.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
--- a/drivers/mtd/spi-nor/xmc.c
|
|
+++ b/drivers/mtd/spi-nor/xmc.c
|
|
@@ -19,6 +19,11 @@ static const struct flash_info xmc_nor_p
|
|
.name = "XM25QH128A",
|
|
.size = SZ_16M,
|
|
.no_sfdp_flags = SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ,
|
|
+ }, {
|
|
+ .id = SNOR_ID(0x20, 0x40, 0x18),
|
|
+ .name = "XM25QH128C",
|
|
+ .size = SZ_16M,
|
|
+ .no_sfdp_flags = SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ,
|
|
},
|
|
};
|
|
|