Michal Simek | 575ca28 | 2009-03-27 14:25:50 +0100 | [diff] [blame] | 1 | # For a description of the syntax of this configuration file, |
| 2 | # see Documentation/kbuild/kconfig-language.txt. |
| 3 | |
| 4 | mainmenu "Linux/Microblaze Kernel Configuration" |
| 5 | |
| 6 | config MICROBLAZE |
| 7 | def_bool y |
| 8 | select HAVE_LMB |
Michal Simek | 2fd7c76 | 2009-11-16 09:40:14 +0100 | [diff] [blame] | 9 | select HAVE_FUNCTION_TRACER |
Michal Simek | 6d9e60c | 2009-11-16 09:55:08 +0100 | [diff] [blame] | 10 | select HAVE_FUNCTION_TRACE_MCOUNT_TEST |
Michal Simek | a0d3e66 | 2009-11-16 10:32:10 +0100 | [diff] [blame] | 11 | select HAVE_FUNCTION_GRAPH_TRACER |
Michal Simek | 7d241ff | 2009-12-10 14:15:44 +0100 | [diff] [blame] | 12 | select HAVE_DYNAMIC_FTRACE |
| 13 | select HAVE_FTRACE_MCOUNT_RECORD |
Julie Zhu | afc26cb | 2009-07-27 11:45:32 -0600 | [diff] [blame] | 14 | select USB_ARCH_HAS_EHCI |
Michal Simek | 6fa612b | 2009-05-11 15:49:12 +0200 | [diff] [blame] | 15 | select ARCH_WANT_OPTIONAL_GPIOLIB |
John Williams | 3540ce8 | 2009-11-24 20:27:54 +1000 | [diff] [blame] | 16 | select HAVE_OPROFILE |
Michal Simek | ccfe27d | 2010-01-14 11:21:02 +0100 | [diff] [blame] | 17 | select HAVE_DMA_ATTRS |
| 18 | select HAVE_DMA_API_DEBUG |
John Williams | 3540ce8 | 2009-11-24 20:27:54 +1000 | [diff] [blame] | 19 | select TRACING_SUPPORT |
Michal Simek | 575ca28 | 2009-03-27 14:25:50 +0100 | [diff] [blame] | 20 | |
| 21 | config SWAP |
| 22 | def_bool n |
| 23 | |
| 24 | config RWSEM_GENERIC_SPINLOCK |
| 25 | def_bool y |
| 26 | |
| 27 | config RWSEM_XCHGADD_ALGORITHM |
| 28 | bool |
| 29 | |
| 30 | config ARCH_HAS_ILOG2_U32 |
| 31 | def_bool n |
| 32 | |
| 33 | config ARCH_HAS_ILOG2_U64 |
| 34 | def_bool n |
| 35 | |
| 36 | config GENERIC_FIND_NEXT_BIT |
| 37 | def_bool y |
| 38 | |
| 39 | config GENERIC_HWEIGHT |
| 40 | def_bool y |
| 41 | |
| 42 | config GENERIC_HARDIRQS |
| 43 | def_bool y |
| 44 | |
| 45 | config GENERIC_IRQ_PROBE |
| 46 | def_bool y |
| 47 | |
| 48 | config GENERIC_CALIBRATE_DELAY |
| 49 | def_bool y |
| 50 | |
| 51 | config GENERIC_TIME |
| 52 | def_bool y |
| 53 | |
| 54 | config GENERIC_TIME_VSYSCALL |
| 55 | def_bool n |
| 56 | |
| 57 | config GENERIC_CLOCKEVENTS |
| 58 | def_bool y |
| 59 | |
| 60 | config GENERIC_HARDIRQS_NO__DO_IRQ |
| 61 | def_bool y |
| 62 | |
Michal Simek | 6fa612b | 2009-05-11 15:49:12 +0200 | [diff] [blame] | 63 | config GENERIC_GPIO |
| 64 | def_bool y |
| 65 | |
Remis Lima Baima | 14f8738 | 2009-06-18 19:55:32 +0200 | [diff] [blame] | 66 | config GENERIC_CSUM |
| 67 | def_bool y |
| 68 | |
Michal Simek | 24b45a1 | 2009-11-10 15:57:01 +0100 | [diff] [blame] | 69 | config STACKTRACE_SUPPORT |
| 70 | def_bool y |
| 71 | |
Michal Simek | bf2d809 | 2009-12-10 12:07:02 +0100 | [diff] [blame] | 72 | config LOCKDEP_SUPPORT |
| 73 | def_bool y |
| 74 | |
Michal Simek | fb5a32d | 2009-11-16 09:09:47 +0100 | [diff] [blame] | 75 | config HAVE_LATENCYTOP_SUPPORT |
| 76 | def_bool y |
| 77 | |
Michal Simek | 3c5e567 | 2009-11-30 09:26:09 +0100 | [diff] [blame] | 78 | config DTC |
| 79 | def_bool y |
| 80 | |
Michal Simek | 575ca28 | 2009-03-27 14:25:50 +0100 | [diff] [blame] | 81 | source "init/Kconfig" |
| 82 | |
| 83 | source "kernel/Kconfig.freezer" |
| 84 | |
| 85 | source "arch/microblaze/platform/Kconfig.platform" |
| 86 | |
| 87 | menu "Processor type and features" |
| 88 | |
Michal Simek | 296e260 | 2010-01-12 11:05:49 +0100 | [diff] [blame] | 89 | source "kernel/time/Kconfig" |
Michal Simek | 575ca28 | 2009-03-27 14:25:50 +0100 | [diff] [blame] | 90 | |
| 91 | source "kernel/Kconfig.preempt" |
| 92 | |
| 93 | source "kernel/Kconfig.hz" |
| 94 | |
| 95 | config MMU |
Michal Simek | a116f6d | 2009-05-26 16:30:31 +0200 | [diff] [blame] | 96 | bool "MMU support" |
| 97 | default n |
Michal Simek | 575ca28 | 2009-03-27 14:25:50 +0100 | [diff] [blame] | 98 | |
| 99 | config NO_MMU |
| 100 | bool |
| 101 | depends on !MMU |
| 102 | default y |
| 103 | |
| 104 | comment "Boot options" |
| 105 | |
| 106 | config CMDLINE_BOOL |
| 107 | bool "Default bootloader kernel arguments" |
| 108 | |
| 109 | config CMDLINE |
| 110 | string "Default kernel command string" |
| 111 | depends on CMDLINE_BOOL |
| 112 | default "console=ttyUL0,115200" |
| 113 | help |
| 114 | On some architectures there is currently no way for the boot loader |
| 115 | to pass arguments to the kernel. For these architectures, you should |
| 116 | supply some command-line options at build time by entering them |
| 117 | here. |
| 118 | |
| 119 | config CMDLINE_FORCE |
| 120 | bool "Force default kernel command string" |
| 121 | depends on CMDLINE_BOOL |
| 122 | default n |
| 123 | help |
| 124 | Set this to have arguments from the default kernel command string |
| 125 | override those passed by the boot loader. |
| 126 | |
| 127 | config OF |
| 128 | def_bool y |
Grant Likely | e169cfb | 2009-11-23 14:53:09 -0700 | [diff] [blame] | 129 | select OF_FLATTREE |
Michal Simek | 575ca28 | 2009-03-27 14:25:50 +0100 | [diff] [blame] | 130 | |
Michal Simek | 575ca28 | 2009-03-27 14:25:50 +0100 | [diff] [blame] | 131 | config PROC_DEVICETREE |
| 132 | bool "Support for device tree in /proc" |
| 133 | depends on PROC_FS |
| 134 | help |
| 135 | This option adds a device-tree directory under /proc which contains |
| 136 | an image of the device tree that the kernel copies from Open |
| 137 | Firmware or other boot firmware. If unsure, say Y here. |
| 138 | |
| 139 | endmenu |
| 140 | |
Michal Simek | a116f6d | 2009-05-26 16:30:31 +0200 | [diff] [blame] | 141 | menu "Advanced setup" |
| 142 | |
| 143 | config ADVANCED_OPTIONS |
| 144 | bool "Prompt for advanced kernel configuration options" |
Michal Simek | a116f6d | 2009-05-26 16:30:31 +0200 | [diff] [blame] | 145 | help |
| 146 | This option will enable prompting for a variety of advanced kernel |
| 147 | configuration options. These options can cause the kernel to not |
| 148 | work if they are set incorrectly, but can be used to optimize certain |
| 149 | aspects of kernel memory management. |
| 150 | |
| 151 | Unless you know what you are doing, say N here. |
| 152 | |
| 153 | comment "Default settings for advanced configuration options are used" |
| 154 | depends on !ADVANCED_OPTIONS |
| 155 | |
Michal Simek | 3a0d7a4 | 2010-02-22 12:16:08 +0100 | [diff] [blame] | 156 | config XILINX_UNCACHED_SHADOW |
| 157 | bool "Are you using uncached shadow for RAM ?" |
| 158 | depends on ADVANCED_OPTIONS && !MMU |
| 159 | default n |
| 160 | help |
| 161 | This is needed to be able to allocate uncachable memory regions. |
| 162 | The feature requires the design to define the RAM memory controller |
| 163 | window to be twice as large as the actual physical memory. |
| 164 | |
Michal Simek | a116f6d | 2009-05-26 16:30:31 +0200 | [diff] [blame] | 165 | config HIGHMEM_START_BOOL |
| 166 | bool "Set high memory pool address" |
| 167 | depends on ADVANCED_OPTIONS && HIGHMEM |
| 168 | help |
| 169 | This option allows you to set the base address of the kernel virtual |
| 170 | area used to map high memory pages. This can be useful in |
| 171 | optimizing the layout of kernel virtual memory. |
| 172 | |
| 173 | Say N here unless you know what you are doing. |
| 174 | |
| 175 | config HIGHMEM_START |
| 176 | hex "Virtual start address of high memory pool" if HIGHMEM_START_BOOL |
| 177 | depends on MMU |
| 178 | default "0xfe000000" |
| 179 | |
| 180 | config LOWMEM_SIZE_BOOL |
| 181 | bool "Set maximum low memory" |
Michal Simek | b8a8405 | 2010-02-22 11:33:07 +0100 | [diff] [blame] | 182 | depends on ADVANCED_OPTIONS && MMU |
Michal Simek | a116f6d | 2009-05-26 16:30:31 +0200 | [diff] [blame] | 183 | help |
| 184 | This option allows you to set the maximum amount of memory which |
| 185 | will be used as "low memory", that is, memory which the kernel can |
| 186 | access directly, without having to set up a kernel virtual mapping. |
| 187 | This can be useful in optimizing the layout of kernel virtual |
| 188 | memory. |
| 189 | |
| 190 | Say N here unless you know what you are doing. |
| 191 | |
| 192 | config LOWMEM_SIZE |
| 193 | hex "Maximum low memory size (in bytes)" if LOWMEM_SIZE_BOOL |
Michal Simek | a116f6d | 2009-05-26 16:30:31 +0200 | [diff] [blame] | 194 | default "0x30000000" |
| 195 | |
| 196 | config KERNEL_START_BOOL |
| 197 | bool "Set custom kernel base address" |
| 198 | depends on ADVANCED_OPTIONS |
| 199 | help |
| 200 | This option allows you to set the kernel virtual address at which |
| 201 | the kernel will map low memory (the kernel image will be linked at |
| 202 | this address). This can be useful in optimizing the virtual memory |
| 203 | layout of the system. |
| 204 | |
| 205 | Say N here unless you know what you are doing. |
| 206 | |
| 207 | config KERNEL_START |
| 208 | hex "Virtual address of kernel base" if KERNEL_START_BOOL |
| 209 | default "0xc0000000" if MMU |
| 210 | default KERNEL_BASE_ADDR if !MMU |
| 211 | |
| 212 | config TASK_SIZE_BOOL |
| 213 | bool "Set custom user task size" |
Michal Simek | b8a8405 | 2010-02-22 11:33:07 +0100 | [diff] [blame] | 214 | depends on ADVANCED_OPTIONS && MMU |
Michal Simek | a116f6d | 2009-05-26 16:30:31 +0200 | [diff] [blame] | 215 | help |
| 216 | This option allows you to set the amount of virtual address space |
| 217 | allocated to user tasks. This can be useful in optimizing the |
| 218 | virtual memory layout of the system. |
| 219 | |
| 220 | Say N here unless you know what you are doing. |
| 221 | |
| 222 | config TASK_SIZE |
| 223 | hex "Size of user task space" if TASK_SIZE_BOOL |
Michal Simek | a116f6d | 2009-05-26 16:30:31 +0200 | [diff] [blame] | 224 | default "0x80000000" |
| 225 | |
Michal Simek | a116f6d | 2009-05-26 16:30:31 +0200 | [diff] [blame] | 226 | endmenu |
| 227 | |
Michal Simek | 575ca28 | 2009-03-27 14:25:50 +0100 | [diff] [blame] | 228 | source "mm/Kconfig" |
| 229 | |
| 230 | menu "Exectuable file formats" |
| 231 | |
| 232 | source "fs/Kconfig.binfmt" |
| 233 | |
| 234 | endmenu |
| 235 | |
Michal Simek | a6475c1 | 2010-01-18 15:27:10 +0100 | [diff] [blame] | 236 | menu "Bus Options" |
| 237 | |
| 238 | config PCI |
| 239 | bool "PCI support" |
| 240 | |
| 241 | config PCI_DOMAINS |
| 242 | def_bool PCI |
| 243 | |
| 244 | config PCI_SYSCALL |
| 245 | def_bool PCI |
| 246 | |
Michal Simek | 733cc21 | 2010-01-18 15:27:11 +0100 | [diff] [blame] | 247 | config PCI_XILINX |
| 248 | bool "Xilinx PCI host bridge support" |
| 249 | depends on PCI |
| 250 | |
Michal Simek | a6475c1 | 2010-01-18 15:27:10 +0100 | [diff] [blame] | 251 | source "drivers/pci/Kconfig" |
| 252 | |
| 253 | endmenu |
| 254 | |
Michal Simek | 575ca28 | 2009-03-27 14:25:50 +0100 | [diff] [blame] | 255 | source "net/Kconfig" |
| 256 | |
| 257 | source "drivers/Kconfig" |
| 258 | |
| 259 | source "fs/Kconfig" |
| 260 | |
| 261 | source "arch/microblaze/Kconfig.debug" |
| 262 | |
| 263 | source "security/Kconfig" |
| 264 | |
| 265 | source "crypto/Kconfig" |
| 266 | |
| 267 | source "lib/Kconfig" |