.. | .. |
---|
| 1 | +# SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | # |
---|
2 | 3 | # For a description of the syntax of this configuration file, |
---|
3 | | -# see Documentation/kbuild/kconfig-language.txt. |
---|
| 4 | +# see Documentation/kbuild/kconfig-language.rst. |
---|
4 | 5 | # |
---|
5 | 6 | |
---|
6 | 7 | config NDS32 |
---|
7 | | - def_bool y |
---|
| 8 | + def_bool y |
---|
| 9 | + select ARCH_32BIT_OFF_T |
---|
| 10 | + select ARCH_HAS_DMA_PREP_COHERENT |
---|
8 | 11 | select ARCH_HAS_SYNC_DMA_FOR_CPU |
---|
9 | 12 | select ARCH_HAS_SYNC_DMA_FOR_DEVICE |
---|
10 | 13 | select ARCH_WANT_FRAME_POINTERS if FTRACE |
---|
11 | 14 | select CLKSRC_MMIO |
---|
12 | 15 | select CLONE_BACKWARDS |
---|
13 | 16 | select COMMON_CLK |
---|
14 | | - select DMA_NONCOHERENT_OPS |
---|
| 17 | + select DMA_DIRECT_REMAP |
---|
15 | 18 | select GENERIC_ATOMIC64 |
---|
16 | 19 | select GENERIC_CPU_DEVICES |
---|
17 | 20 | select GENERIC_CLOCKEVENTS |
---|
18 | 21 | select GENERIC_IRQ_CHIP |
---|
19 | 22 | select GENERIC_IRQ_SHOW |
---|
| 23 | + select GENERIC_IOREMAP |
---|
20 | 24 | select GENERIC_LIB_ASHLDI3 |
---|
21 | 25 | select GENERIC_LIB_ASHRDI3 |
---|
22 | 26 | select GENERIC_LIB_CMPDI2 |
---|
.. | .. |
---|
29 | 33 | select HANDLE_DOMAIN_IRQ |
---|
30 | 34 | select HAVE_ARCH_TRACEHOOK |
---|
31 | 35 | select HAVE_DEBUG_KMEMLEAK |
---|
32 | | - select HAVE_MEMBLOCK |
---|
| 36 | + select HAVE_EXIT_THREAD |
---|
33 | 37 | select HAVE_REGS_AND_STACK_ACCESS_API |
---|
| 38 | + select HAVE_PERF_EVENTS |
---|
34 | 39 | select IRQ_DOMAIN |
---|
35 | 40 | select LOCKDEP_SUPPORT |
---|
36 | 41 | select MODULES_USE_ELF_RELA |
---|
37 | 42 | select OF |
---|
38 | 43 | select OF_EARLY_FLATTREE |
---|
39 | | - select NO_BOOTMEM |
---|
40 | 44 | select NO_IOPORT_MAP |
---|
41 | 45 | select RTC_LIB |
---|
42 | 46 | select THREAD_INFO_IN_TASK |
---|
.. | .. |
---|
44 | 48 | select HAVE_FUNCTION_GRAPH_TRACER |
---|
45 | 49 | select HAVE_FTRACE_MCOUNT_RECORD |
---|
46 | 50 | select HAVE_DYNAMIC_FTRACE |
---|
| 51 | + select SET_FS |
---|
47 | 52 | help |
---|
48 | 53 | Andes(nds32) Linux support. |
---|
49 | 54 | |
---|
.. | .. |
---|
51 | 56 | def_bool y |
---|
52 | 57 | |
---|
53 | 58 | config GENERIC_CSUM |
---|
54 | | - def_bool y |
---|
| 59 | + def_bool y |
---|
55 | 60 | |
---|
56 | 61 | config GENERIC_HWEIGHT |
---|
57 | | - def_bool y |
---|
| 62 | + def_bool y |
---|
58 | 63 | |
---|
59 | 64 | config GENERIC_LOCKBREAK |
---|
60 | | - def_bool y |
---|
61 | | - depends on PREEMPT |
---|
62 | | - |
---|
63 | | -config RWSEM_GENERIC_SPINLOCK |
---|
64 | 65 | def_bool y |
---|
| 66 | + depends on PREEMPTION |
---|
65 | 67 | |
---|
66 | 68 | config TRACE_IRQFLAGS_SUPPORT |
---|
67 | 69 | def_bool y |
---|
68 | 70 | |
---|
69 | 71 | config STACKTRACE_SUPPORT |
---|
70 | | - def_bool y |
---|
| 72 | + def_bool y |
---|
71 | 73 | |
---|
72 | 74 | config FIX_EARLYCON_MEM |
---|
73 | 75 | def_bool y |
---|
.. | .. |
---|
82 | 84 | default 1 |
---|
83 | 85 | |
---|
84 | 86 | config MMU |
---|
85 | | - def_bool y |
---|
| 87 | + def_bool y |
---|
86 | 88 | |
---|
87 | 89 | config NDS32_BUILTIN_DTB |
---|
88 | | - string "Builtin DTB" |
---|
89 | | - default "" |
---|
| 90 | + string "Builtin DTB" |
---|
| 91 | + default "" |
---|
90 | 92 | help |
---|
91 | 93 | User can use it to specify the dts of the SoC |
---|
92 | 94 | endmenu |
---|
.. | .. |
---|
94 | 96 | menu "Kernel Features" |
---|
95 | 97 | source "kernel/Kconfig.hz" |
---|
96 | 98 | endmenu |
---|
| 99 | + |
---|
| 100 | +menu "Power management options" |
---|
| 101 | +config SYS_SUPPORTS_APM_EMULATION |
---|
| 102 | + bool |
---|
| 103 | + |
---|
| 104 | +config ARCH_SUSPEND_POSSIBLE |
---|
| 105 | + def_bool y |
---|
| 106 | + |
---|
| 107 | +source "kernel/power/Kconfig" |
---|
| 108 | +endmenu |
---|