hc
2024-09-20 cf4ce59b3b70238352c7f1729f0f7223214828ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# Copyright (c) 2018 Fuzhou Rockchip Electronics Co., Ltd
#
# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
#
if ARCH_ROCKCHIP
 
menuconfig RKFLASH
   bool "Rockchip Flash Devices support"
   default n
   help
     This enables support for Rockchip Flash Devices including Nandc Slc
     Nand, SFC SPI Nand and SFC SPI Nor.
 
     They're block interface.
 
     Say Y when you have a board with one of them.
 
if RKFLASH
 
comment "Rockchip Flash Devices"
 
config RKNANDC_NAND
   bool "Rockchip NANDC Slc Nand Devices support"
   depends on RKNAND != y
   default n
   help
     This enables support for NANDC Slc Nand Devices.
 
     It's block interface, 512Kb/sector.
 
     Say Y when you have a board with Slc Nand Flash supported by Rockchip
     Nandc controller.
 
config RKSFC_NAND
   bool "Rockchip SFC SPI Nand Devices support"
   depends on RKNAND != y
   default n
   help
     This enables support for Rockchip SFC SPI Nand Devices.
 
     It's block interface, 512Kb/sector.
 
     Say Y when you have a board with SPI Nand Flash supported by Rockchip
          Serial Flash Controller(SFC).
config RKSFC_NOR
   bool "Rockchip SFC SPI Nor Devices Support"
   depends on BLK
   help
     This enables support for Rockchip SFC SPI Nor Devices.
 
     It's block interface,512Kb/sector.
 
     Say Y when you have a board with SPI Nor Flash supported by Rockchip
     Serial Flash Controller(SFC).
 
endif # RKFLASH
 
endif # ARCH_ROCKCHIP