18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * Copyright (C) 2005, Intec Automation Inc. 48c2ecf20Sopenharmony_ci * Copyright (C) 2014, Freescale Semiconductor, Inc. 58c2ecf20Sopenharmony_ci */ 68c2ecf20Sopenharmony_ci 78c2ecf20Sopenharmony_ci#include <linux/mtd/spi-nor.h> 88c2ecf20Sopenharmony_ci 98c2ecf20Sopenharmony_ci#include "core.h" 108c2ecf20Sopenharmony_ci 118c2ecf20Sopenharmony_cistatic const struct flash_info fujitsu_parts[] = { 128c2ecf20Sopenharmony_ci /* Fujitsu */ 138c2ecf20Sopenharmony_ci { "mb85rs1mt", INFO(0x047f27, 0, 128 * 1024, 1, SPI_NOR_NO_ERASE) }, 148c2ecf20Sopenharmony_ci}; 158c2ecf20Sopenharmony_ci 168c2ecf20Sopenharmony_ciconst struct spi_nor_manufacturer spi_nor_fujitsu = { 178c2ecf20Sopenharmony_ci .name = "fujitsu", 188c2ecf20Sopenharmony_ci .parts = fujitsu_parts, 198c2ecf20Sopenharmony_ci .nparts = ARRAY_SIZE(fujitsu_parts), 208c2ecf20Sopenharmony_ci}; 21