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