// SPDX-License-Identifier: GPL-2.0 #include #include "core.h" static const struct flash_info xtx_parts[] = { /* XTX Technology (Shenzhen) Limited */ { "xt25f128b", INFO(0x0B4018, 0, 64 * 1024, 256, SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) }, }; const struct spi_nor_manufacturer spi_nor_xtx = { .name = "xtx", .parts = xtx_parts, .nparts = ARRAY_SIZE(xtx_parts), };