1# 2# Copyright (c) 2018 Fuzhou Rockchip Electronics Co., Ltd 3# 4# SPDX-License-Identifier: (GPL-2.0+ OR MIT) 5# 6if ARCH_ROCKCHIP 7 8menuconfig RKFLASH 9 tristate "Rockchip Flash Devices Support" 10 default n 11 help 12 Enable rockchip flash devices support. 13 rkflash driver support 3-type flash devices: NANDC NAND, SFC_NOR 14 and SFC_NAND. 15 Say Y when you have a board with one of them. 16 17if RKFLASH 18 19comment "Rockchip Flash Devices" 20 21config RKSFC_NOR 22 bool "Rockchip SFC NOR flash support" 23 depends on BLK 24 help 25 This option enables support for Rockchip SFC nor devices. 26 It's block interface. 27 512Kb/sector. 28 Say y here to enable rockchip spi nor flash driver. 29 30endif # RKFLASH 31 32endif # ARCH_ROCKCHIP 33