HunZI a462d2b757
target: add phytium support (#11798)
* target: add phytium support

* kernel/video: add phytium platform ARM GPU support

* config: add EFI support to phytium armv8

* target: phytium: remove rtl8821cs driver

* target: phytium: refresh dts
2024-01-18 15:16:24 +08:00

22 lines
544 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 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),
};