1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Copyright (C) 2005, Intec Automation Inc. 4 * Copyright (C) 2014, Freescale Semiconductor, Inc. 5 */ 6 7 #include <linux/mtd/spi-nor.h> 8 9 #include "core.h" 10 11 static const struct flash_info xmc_nor_parts[] = { 12 /* XMC (Wuhan Xinxin Semiconductor Manufacturing Corp.) */ 13 { "XM25QH64A", INFO(0x207017, 0, 64 * 1024, 128) 14 NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ | 15 SPI_NOR_QUAD_READ) }, 16 { "XM25QH128A", INFO(0x207018, 0, 64 * 1024, 256) 17 NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ | 18 SPI_NOR_QUAD_READ) }, 19 }; 20 21 const struct spi_nor_manufacturer spi_nor_xmc = { 22 .name = "xmc", 23 .parts = xmc_nor_parts, 24 .nparts = ARRAY_SIZE(xmc_nor_parts), 25 }; 26