forked from OpenSiFli/SiFli-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKconfig
More file actions
88 lines (75 loc) · 1.83 KB
/
Kconfig
File metadata and controls
88 lines (75 loc) · 1.83 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
menu "Chipset config"
choice
prompt "Select chipset"
default SOC_SF32LB55X
config SOC_SF32LB55X
bool "SF32LB55X"
config SOC_SF32LB58X
bool "SF32LB58X"
config SOC_SF32LB56X
bool "SF32LB56X"
config SOC_SF32LB52X
bool "SF32LB52X"
config SOC_SIMULATOR
bool "SIMULATOR"
endchoice
config BSP_CHIP_ID_COMPATIBLE
depends on SOC_SF32LB55X
bool "Support working with different LB55X chip ID"
default n
config BSP_LB55X_CHIP_ID
depends on SOC_SF32LB55X
int "LB55x CHIP ID"
default 3
choice SF32LB52X_REV_VALUE
depends on SOC_SF32LB52X
prompt "Select chip revision compatiable"
default SF32LB52X_REV_AUTO
config SF32LB52X_REV_AUTO
bool "Compatiable for all chip revision"
config SF32LB52X_REV_A
bool "Only for revision A"
config SF32LB52X_REV_B
bool "Only for revision B"
endchoice
config CFG_SUPPORT_NON_OTP
depends on SOC_SF32LB52X
bool "Factory data can be stored on platforms without OTP"
default n
config MEMCPY_NON_DMA
bool
depends on !SOC_SIMULATOR
default n
config PSRAM_CACHE_WB
bool "Enable PSRAM Cache write back"
select MEMCPY_NON_DMA if PSRAM_CACHE_WB
depends on !SOC_SIMULATOR
default n
endmenu
config HAL_USE_LIB
bool
default n
if BF0_HCPU
config CORE
string
default "HCPU"
config CPU
string
default "Cortex-M33"
endif
if BF0_LCPU
config CORE
string
default "LCPU"
config CPU
string
default "Cortex-M33"
config CPU_HAS_NO_DSP_FP
bool
default y if SOC_SF32LB52X
endif
source "$SIFLI_SDK/customer/boards/Kconfig"
source "$SIFLI_SDK/rtos/Kconfig"
source "$SIFLI_SDK/middleware/Kconfig"
source "$SIFLI_SDK/external/Kconfig"
comment "------------End of SDK configuration-------------"