Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 /*
0003  * Copyright (C) 2005, Intec Automation Inc.
0004  * Copyright (C) 2014, Freescale Semiconductor, Inc.
0005  */
0006 
0007 #include <linux/mtd/spi-nor.h>
0008 
0009 #include "core.h"
0010 
0011 static const struct flash_info fujitsu_nor_parts[] = {
0012     /* Fujitsu */
0013     { "mb85rs1mt", INFO(0x047f27, 0, 128 * 1024, 1)
0014         FLAGS(SPI_NOR_NO_ERASE) },
0015 };
0016 
0017 const struct spi_nor_manufacturer spi_nor_fujitsu = {
0018     .name = "fujitsu",
0019     .parts = fujitsu_nor_parts,
0020     .nparts = ARRAY_SIZE(fujitsu_nor_parts),
0021 };