mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-06-21 04:45:29 +08:00

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