xref: /kernel/linux/linux-6.6/drivers/mtd/spi-nor/esmt.c (revision 62306a36)
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /kernel/linux/linux-6.6/drivers/mtd/spi-nor/
162306a36Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0
262306a36Sopenharmony_ci/*
362306a36Sopenharmony_ci * Copyright (C) 2005, Intec Automation Inc.
462306a36Sopenharmony_ci * Copyright (C) 2014, Freescale Semiconductor, Inc.
562306a36Sopenharmony_ci */
662306a36Sopenharmony_ci
762306a36Sopenharmony_ci#include <linux/mtd/spi-nor.h>
862306a36Sopenharmony_ci
962306a36Sopenharmony_ci#include "core.h"
1062306a36Sopenharmony_ci
1162306a36Sopenharmony_cistatic const struct flash_info esmt_nor_parts[] = {
1262306a36Sopenharmony_ci	/* ESMT */
1362306a36Sopenharmony_ci	{ "f25l32pa", INFO(0x8c2016, 0, 64 * 1024, 64)
1462306a36Sopenharmony_ci		FLAGS(SPI_NOR_HAS_LOCK | SPI_NOR_SWP_IS_VOLATILE)
1562306a36Sopenharmony_ci		NO_SFDP_FLAGS(SECT_4K) },
1662306a36Sopenharmony_ci	{ "f25l32qa-2s", INFO(0x8c4116, 0, 64 * 1024, 64)
1762306a36Sopenharmony_ci		FLAGS(SPI_NOR_HAS_LOCK)
1862306a36Sopenharmony_ci		NO_SFDP_FLAGS(SECT_4K) },
1962306a36Sopenharmony_ci	{ "f25l64qa", INFO(0x8c4117, 0, 64 * 1024, 128)
2062306a36Sopenharmony_ci		FLAGS(SPI_NOR_HAS_LOCK)
2162306a36Sopenharmony_ci		NO_SFDP_FLAGS(SECT_4K) },
2262306a36Sopenharmony_ci};
2362306a36Sopenharmony_ci
2462306a36Sopenharmony_ciconst struct spi_nor_manufacturer spi_nor_esmt = {
2562306a36Sopenharmony_ci	.name = "esmt",
2662306a36Sopenharmony_ci	.parts = esmt_nor_parts,
2762306a36Sopenharmony_ci	.nparts = ARRAY_SIZE(esmt_nor_parts),
2862306a36Sopenharmony_ci};
29

Indexes created Thu Nov 07 10:32:03 CST 2024