2d813dfdb8cbdd0e4d782726e296cb3a75dda67a
[linux-2.6-microblaze.git] / arch / nios2 / Kconfig
1 # SPDX-License-Identifier: GPL-2.0
2 config NIOS2
3         def_bool y
4         select ARCH_NO_SWAP
5         select TIMER_OF
6         select GENERIC_ATOMIC64
7         select GENERIC_CLOCKEVENTS
8         select GENERIC_CPU_DEVICES
9         select GENERIC_IRQ_PROBE
10         select GENERIC_IRQ_SHOW
11         select GENERIC_STRNCPY_FROM_USER
12         select GENERIC_STRNLEN_USER
13         select HAVE_ARCH_TRACEHOOK
14         select HAVE_ARCH_KGDB
15         select IRQ_DOMAIN
16         select MODULES_USE_ELF_RELA
17         select OF
18         select OF_EARLY_FLATTREE
19         select SOC_BUS
20         select SPARSE_IRQ
21         select USB_ARCH_HAS_HCD if USB_SUPPORT
22         select CPU_NO_EFFICIENT_FFS
23
24 config GENERIC_CSUM
25         def_bool y
26
27 config GENERIC_HWEIGHT
28         def_bool y
29
30 config GENERIC_CALIBRATE_DELAY
31         def_bool y
32
33 config NO_IOPORT_MAP
34         def_bool y
35
36 config HAS_DMA
37         def_bool y
38
39 config FPU
40         def_bool n
41
42 config RWSEM_GENERIC_SPINLOCK
43         def_bool y
44
45 config TRACE_IRQFLAGS_SUPPORT
46         def_bool n
47
48 menu "Kernel features"
49
50 source "kernel/Kconfig.preempt"
51
52 source "kernel/Kconfig.hz"
53
54 config FORCE_MAX_ZONEORDER
55         int "Maximum zone order"
56         range 9 20
57         default "11"
58         help
59           The kernel memory allocator divides physically contiguous memory
60           blocks into "zones", where each zone is a power of two number of
61           pages.  This option selects the largest power of two that the kernel
62           keeps in the memory allocator.  If you need to allocate very large
63           blocks of physically contiguous memory, then you may need to
64           increase this value.
65
66           This config option is actually maximum order plus one. For example,
67           a value of 11 means that the largest free memory block is 2^10 pages.
68
69 endmenu
70
71 source "arch/nios2/platform/Kconfig.platform"
72
73 menu "Processor type and features"
74
75 config MMU
76         def_bool y
77
78 config NR_CPUS
79         int
80         default "1"
81
82 config NIOS2_ALIGNMENT_TRAP
83         bool "Catch alignment trap"
84         default y
85         help
86           Nios II CPUs cannot fetch/store data which is not bus aligned,
87           i.e., a 2 or 4 byte fetch must start at an address divisible by
88           2 or 4. Any non-aligned load/store instructions will be trapped and
89           emulated in software if you say Y here, which has a performance
90           impact.
91
92 comment "Boot options"
93
94 config CMDLINE_BOOL
95         bool "Default bootloader kernel arguments"
96         default y
97
98 config CMDLINE
99         string "Default kernel command string"
100         default ""
101         depends on CMDLINE_BOOL
102         help
103           On some platforms, there is currently no way for the boot loader to
104           pass arguments to the kernel. For these platforms, you can supply
105           some command-line options at build time by entering them here.  In
106           other cases you can specify kernel args so that you don't have
107           to set them up in board prom initialization routines.
108
109 config CMDLINE_FORCE
110         bool "Force default kernel command string"
111         depends on CMDLINE_BOOL
112         help
113           Set this to have arguments from the default kernel command string
114           override those passed by the boot loader.
115
116 config NIOS2_CMDLINE_IGNORE_DTB
117         bool "Ignore kernel command string from DTB"
118         depends on CMDLINE_BOOL
119         depends on !CMDLINE_FORCE
120         default y
121         help
122           Set this to ignore the bootargs property from the devicetree's
123           chosen node and fall back to CMDLINE if nothing is passed.
124
125 config NIOS2_PASS_CMDLINE
126         bool "Passed kernel command line from u-boot"
127         default n
128         help
129           Use bootargs env variable from u-boot for kernel command line.
130           will override "Default kernel command string".
131           Say N if you are unsure.
132
133 config NIOS2_BOOT_LINK_OFFSET
134         hex "Link address offset for booting"
135         default "0x00500000"
136         help
137           This option allows you to set the link address offset of the zImage.
138           This can be useful if you are on a board which has a small amount of
139           memory.
140
141 endmenu
142
143 menu "Advanced setup"
144
145 config ADVANCED_OPTIONS
146         bool "Prompt for advanced kernel configuration options"
147
148 comment "Default settings for advanced configuration options are used"
149         depends on !ADVANCED_OPTIONS
150
151 config NIOS2_KERNEL_MMU_REGION_BASE_BOOL
152         bool "Set custom kernel MMU region base address"
153         depends on ADVANCED_OPTIONS
154         help
155           This option allows you to set the virtual address of the kernel MMU region.
156
157           Say N here unless you know what you are doing.
158
159 config NIOS2_KERNEL_MMU_REGION_BASE
160         hex "Virtual base address of the kernel MMU region " if NIOS2_KERNEL_MMU_REGION_BASE_BOOL
161         default "0x80000000"
162         help
163           This option allows you to set the virtual base address of the kernel MMU region.
164
165 config NIOS2_KERNEL_REGION_BASE_BOOL
166         bool "Set custom kernel region base address"
167         depends on ADVANCED_OPTIONS
168         help
169           This option allows you to set the virtual address of the kernel region.
170
171           Say N here unless you know what you are doing.
172
173 config NIOS2_KERNEL_REGION_BASE
174         hex "Virtual base address of the kernel region " if NIOS2_KERNEL_REGION_BASE_BOOL
175         default "0xc0000000"
176
177 config NIOS2_IO_REGION_BASE_BOOL
178         bool "Set custom I/O region base address"
179         depends on ADVANCED_OPTIONS
180         help
181           This option allows you to set the virtual address of the I/O region.
182
183           Say N here unless you know what you are doing.
184
185 config NIOS2_IO_REGION_BASE
186         hex "Virtual base address of the I/O region" if NIOS2_IO_REGION_BASE_BOOL
187         default "0xe0000000"
188
189 endmenu
190
191 source "arch/nios2/Kconfig.debug"