linuxOS_D21X/source/linux-5.10/drivers/mtd/spi-nor/puya.c
2025-08-14 15:17:16 +08:00

22 lines
517 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 puya_parts[] = {
/* PUYA (Puya Semiconductor) */
{ "PY25Q128HA", INFO(0x852018, 0, 64 * 1024, 256,
SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
};
const struct spi_nor_manufacturer spi_nor_puya = {
.name = "puya",
.parts = puya_parts,
.nparts = ARRAY_SIZE(puya_parts),
};