22 lines
538 B
C
22 lines
538 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2005, Intec Automation Inc.
|
|
* Copyright (C) 2014, Freescale Semiconductor, Inc.
|
|
*/
|
|
|
|
#include <linux/mtd/spi-nor.h>
|
|
|
|
#include "core.h"
|
|
|
|
static const struct flash_info xtx_parts[] = {
|
|
/* xtx (Wuhan Xinxin Semiconductor Manufacturing Corp.) */
|
|
{ "xt25f128b", INFO(0x0b4018, 0, 64 * 1024, 256,
|
|
SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
|
|
};
|
|
|
|
const struct spi_nor_manufacturer spi_nor_xtx = {
|
|
.name = "xtx",
|
|
.parts = xtx_parts,
|
|
.nparts = ARRAY_SIZE(xtx_parts),
|
|
};
|