mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
d5bf46bbe8
OpenWRT's developer guide prefers having actual patches so they an be sent upstream more easily. However, in this case, Adding proper fields also allows for `git am` to properly function. Some of these patches are quite old, and lack much traceable history. This commit tries to rectify that, by digging in the history to find where and how it was first added. It is by no means perfect and also shows some patches that should have been long gone. Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
23 lines
883 B
Diff
23 lines
883 B
Diff
From: Langhua Ye <y1248289414@outlook.com>
|
|
Subject: mtd/spi-nor/xmc: add support for XMC 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
|
|
|
|
Submitted-by: Langhua Ye <y1248289414@outlook.com>
|
|
---
|
|
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
|
|
@@ -14,6 +14,8 @@ static const struct flash_info xmc_parts
|
|
SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
|
|
{ "XM25QH128A", INFO(0x207018, 0, 64 * 1024, 256,
|
|
SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
|
|
+ { "XM25QH128C", INFO(0x204018, 0, 64 * 1024, 256,
|
|
+ SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
|
|
};
|
|
|
|
const struct spi_nor_manufacturer spi_nor_xmc = {
|