blob: 5aa8ea8bad2db1cde0719d2bec9144d1c894b832 [file] [log] [blame]
Aurelien Jacquiotc2784002011-10-04 10:54:51 -04001#
2# For a description of the syntax of this configuration file,
3# see Documentation/kbuild/kconfig-language.txt.
4#
5
Mark Salter18d14702012-05-01 20:37:49 -04006config C6X
Aurelien Jacquiotc2784002011-10-04 10:54:51 -04007 def_bool y
8 select CLKDEV_LOOKUP
Mark Salter01ddd9a2012-08-15 12:12:16 -04009 select GENERIC_ATOMIC64
Aurelien Jacquiotc2784002011-10-04 10:54:51 -040010 select GENERIC_IRQ_SHOW
11 select HAVE_ARCH_TRACEHOOK
12 select HAVE_DMA_API_DEBUG
Aurelien Jacquiotc2784002011-10-04 10:54:51 -040013 select HAVE_MEMBLOCK
Rob Herring2ed86b12012-01-25 20:02:40 -060014 select SPARSE_IRQ
Mark Salter0bd761e2012-01-26 09:26:21 -050015 select IRQ_DOMAIN
Aurelien Jacquiotc2784002011-10-04 10:54:51 -040016 select OF
17 select OF_EARLY_FLATTREE
Anna-Maria Gleixner62204432012-05-18 16:45:46 +000018 select GENERIC_CLOCKEVENTS
David Howells786d35d2012-09-28 14:31:03 +093019 select MODULES_USE_ELF_RELA
Christoph Hellwig4605f04b2016-01-20 15:01:35 -080020 select ARCH_NO_COHERENT_DMA_MMAP
Aurelien Jacquiotc2784002011-10-04 10:54:51 -040021
22config MMU
23 def_bool n
24
Aurelien Jacquiotc2784002011-10-04 10:54:51 -040025config FPU
26 def_bool n
27
Aurelien Jacquiotc2784002011-10-04 10:54:51 -040028config RWSEM_GENERIC_SPINLOCK
29 def_bool y
30
Aurelien Jacquiotc2784002011-10-04 10:54:51 -040031config GENERIC_CALIBRATE_DELAY
32 def_bool y
33
34config GENERIC_HWEIGHT
35 def_bool y
36
Aurelien Jacquiotc2784002011-10-04 10:54:51 -040037config GENERIC_BUG
38 def_bool y
Andrew Morton8b9e6d52016-03-17 14:21:06 -070039 depends on BUG
Aurelien Jacquiotc2784002011-10-04 10:54:51 -040040
Aurelien Jacquiotc2784002011-10-04 10:54:51 -040041config C6X_BIG_KERNEL
42 bool "Build a big kernel"
43 help
44 The C6X function call instruction has a limited range of +/- 2MiB.
45 This is sufficient for most kernels, but some kernel configurations
46 with lots of compiled-in functionality may require a larger range
47 for function calls. Use this option to have the compiler generate
48 function calls with 32-bit range. This will make the kernel both
49 larger and slower.
50
51 If unsure, say N.
52
53source "init/Kconfig"
54
55# Use the generic interrupt handling code in kernel/irq/
56
57source "kernel/Kconfig.freezer"
58
59config CMDLINE_BOOL
60 bool "Default bootloader kernel arguments"
61
62config CMDLINE
63 string "Kernel command line"
64 depends on CMDLINE_BOOL
65 default "console=ttyS0,57600"
66 help
67 On some architectures there is currently no way for the boot loader
68 to pass arguments to the kernel. For these architectures, you should
69 supply some command-line options at build time by entering them
70 here.
71
72config CMDLINE_FORCE
73 bool "Force default kernel command string"
74 depends on CMDLINE_BOOL
75 default n
76 help
77 Set this to have arguments from the default kernel command string
78 override those passed by the boot loader.
79
80config CPU_BIG_ENDIAN
81 bool "Build big-endian kernel"
82 default n
83 help
84 Say Y if you plan on running a kernel in big-endian mode.
85 Note that your board must be properly built and your board
86 port must properly enable any big-endian related features
87 of your chipset/board/processor.
88
89config FORCE_MAX_ZONEORDER
90 int "Maximum zone order"
91 default "13"
92 help
93 The kernel memory allocator divides physically contiguous memory
94 blocks into "zones", where each zone is a power of two number of
95 pages. This option selects the largest power of two that the kernel
96 keeps in the memory allocator. If you need to allocate very large
97 blocks of physically contiguous memory, then you may need to
98 increase this value.
99
100 This config option is actually maximum order plus one. For example,
101 a value of 11 means that the largest free memory block is 2^10 pages.
102
103menu "Processor type and features"
104
105source "arch/c6x/platforms/Kconfig"
106
Aurelien Jacquiotc2784002011-10-04 10:54:51 -0400107config KERNEL_RAM_BASE_ADDRESS
108 hex "Virtual address of memory base"
109 default 0xe0000000 if SOC_TMS320C6455
110 default 0xe0000000 if SOC_TMS320C6457
111 default 0xe0000000 if SOC_TMS320C6472
112 default 0x80000000
113
114source "mm/Kconfig"
115
116source "kernel/Kconfig.preempt"
117
118source "kernel/Kconfig.hz"
Aurelien Jacquiotc2784002011-10-04 10:54:51 -0400119
120endmenu
121
122menu "Executable file formats"
123
124source "fs/Kconfig.binfmt"
125
126endmenu
127
128source "net/Kconfig"
129
130source "drivers/Kconfig"
131
132source "fs/Kconfig"
133
134source "security/Kconfig"
135
136source "crypto/Kconfig"
137
138source "lib/Kconfig"
139
140menu "Kernel hacking"
141
142source "lib/Kconfig.debug"
143
144config ACCESS_CHECK
145 bool "Check the user pointer address"
146 default y
147 help
148 Usually the pointer transfer from user space is checked to see if its
149 address is in the kernel space.
150
151 Say N here to disable that check to improve the performance.
152
153endmenu