fujitsu.c 493 B

123456789101112131415161718192021
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (C) 2005, Intec Automation Inc.
  4. * Copyright (C) 2014, Freescale Semiconductor, Inc.
  5. */
  6. #include <linux/mtd/spi-nor.h>
  7. #include "core.h"
  8. static const struct flash_info fujitsu_nor_parts[] = {
  9. /* Fujitsu */
  10. { "mb85rs1mt", INFO(0x047f27, 0, 128 * 1024, 1)
  11. FLAGS(SPI_NOR_NO_ERASE) },
  12. };
  13. const struct spi_nor_manufacturer spi_nor_fujitsu = {
  14. .name = "fujitsu",
  15. .parts = fujitsu_nor_parts,
  16. .nparts = ARRAY_SIZE(fujitsu_nor_parts),
  17. };