drivers/mtd/spi-nor/xmc.c | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+)
Add support for XM25QH32A, XM25QH64C, XM25QU64C, XM25QH128B, XM25QH128C,
XM25QU128C, XM25QH256C. These series chips are already tested on Orange
Pi boards[1].
[1]https://github.com/orangepi-xunlong/linux-orangepi/blob/orange-pi-6.1-rk35xx/drivers/mtd/spi-nor/xmc.c
Signed-off-by: Renjun Wang <renjunw0@foxmail.com>
---
drivers/mtd/spi-nor/xmc.c | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/drivers/mtd/spi-nor/xmc.c b/drivers/mtd/spi-nor/xmc.c
index d5a06054b0dd..0532d2e2f193 100644
--- a/drivers/mtd/spi-nor/xmc.c
+++ b/drivers/mtd/spi-nor/xmc.c
@@ -10,15 +10,49 @@
static const struct flash_info xmc_nor_parts[] = {
{
+ .id = SNOR_ID(0x20, 0x70, 0x16),
+ .name = "XM25QH32A",
+ .size = SZ_4M,
+ .no_sfdp_flags = SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ,
+ }, {
.id = SNOR_ID(0x20, 0x70, 0x17),
.name = "XM25QH64A",
.size = SZ_8M,
.no_sfdp_flags = SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ,
+ }, {
+ .id = SNOR_ID(0x20, 0x40, 0x17),
+ .name = "XM25QH64C",
+ .size = SZ_8M,
+ }, {
+ .id = SNOR_ID(0x20, 0x41, 0x17),
+ .name = "XM25QU64C",
+ .size = SZ_8M,
+ .no_sfdp_flags = SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ,
}, {
.id = SNOR_ID(0x20, 0x70, 0x18),
.name = "XM25QH128A",
.size = SZ_16M,
.no_sfdp_flags = SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ,
+ }, {
+ .id = SNOR_ID(0x20, 0x60, 0x18),
+ .name = "XM25QH128B",
+ .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,
+ }, {
+ .id = SNOR_ID(0x20, 0x41, 0x18),
+ .name = "XM25QU128C",
+ .size = SZ_16M,
+ .no_sfdp_flags = SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ,
+ }, {
+ .id = SNOR_ID(0x20, 0x40, 0x19),
+ .name = "XM25QH256C",
+ .size = SZ_32M,
+ .no_sfdp_flags = SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ,
},
};
--
2.39.2
Hi, On Sat Sep 7, 2024 at 8:31 AM CEST, Renjun Wang wrote: > Add support for XM25QH32A, XM25QH64C, XM25QU64C, XM25QH128B, XM25QH128C, > XM25QU128C, XM25QH256C. These series chips are already tested on Orange > Pi boards[1]. I've just checked a few but they all had SFDP. Thus they don't need an entry in the database as it is covered by the generic driver. Also please read https://docs.kernel.org/driver-api/mtd/spi-nor.html > [1]https://github.com/orangepi-xunlong/linux-orangepi/blob/orange-pi-6.1-rk35xx/drivers/mtd/spi-nor/xmc.c That's an ancient kernel. -michael
© 2016 - 2024 Red Hat, Inc.