Merge tag 'trace-v6.11-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[linux.git] / drivers / mtd / spi-nor / xmc.c
blobd5a06054b0dd8e4c8b4454d6020b39468fc8861b
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (C) 2005, Intec Automation Inc.
4 * Copyright (C) 2014, Freescale Semiconductor, Inc.
5 */
7 #include <linux/mtd/spi-nor.h>
9 #include "core.h"
11 static const struct flash_info xmc_nor_parts[] = {
13 .id = SNOR_ID(0x20, 0x70, 0x17),
14 .name = "XM25QH64A",
15 .size = SZ_8M,
16 .no_sfdp_flags = SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ,
17 }, {
18 .id = SNOR_ID(0x20, 0x70, 0x18),
19 .name = "XM25QH128A",
20 .size = SZ_16M,
21 .no_sfdp_flags = SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ,
25 /* XMC (Wuhan Xinxin Semiconductor Manufacturing Corp.) */
26 const struct spi_nor_manufacturer spi_nor_xmc = {
27 .name = "xmc",
28 .parts = xmc_nor_parts,
29 .nparts = ARRAY_SIZE(xmc_nor_parts),