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