// SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2005, Intec Automation Inc. * Copyright (C) 2014, Freescale Semiconductor, Inc. */ #include #include "core.h" static const struct flash_info boya_parts[] = { /* Boya Microelectronics Memory Series */ { "by25q64as", INFO(0x684017, 0, 64 * 1024, 128, SECT_4K) }, { "by25q128as", INFO(0x684018, 0, 64 * 1024, 256, SECT_4K) }, }; const struct spi_nor_manufacturer spi_nor_boya = { .name = "boya", .parts = boya_parts, .nparts = ARRAY_SIZE(boya_parts), };