Merge tag 'dt-3.13-4' of git://git.infradead.org/linux-mvebu into next/dt
[linux-2.6.git] / arch / unicore32 / Kconfig
blob82cdd8906f3d6ff70e3317a78ae00c08a0bed39e
1 config UNICORE32
2         def_bool y
3         select HAVE_MEMBLOCK
4         select HAVE_GENERIC_DMA_COHERENT
5         select HAVE_DMA_ATTRS
6         select HAVE_KERNEL_GZIP
7         select HAVE_KERNEL_BZIP2
8         select GENERIC_ATOMIC64
9         select HAVE_KERNEL_LZO
10         select HAVE_KERNEL_LZMA
11         select VIRT_TO_BUS
12         select ARCH_HAVE_CUSTOM_GPIO_H
13         select GENERIC_FIND_FIRST_BIT
14         select GENERIC_IRQ_PROBE
15         select GENERIC_IRQ_SHOW
16         select ARCH_WANT_FRAME_POINTERS
17         select GENERIC_IOMAP
18         select MODULES_USE_ELF_REL
19         help
20           UniCore-32 is 32-bit Instruction Set Architecture,
21           including a series of low-power-consumption RISC chip
22           designs licensed by PKUnity Ltd.
23           Please see web page at <http://www.pkunity.com/>.
25 config GENERIC_CSUM
26         def_bool y
28 config NO_IOPORT
29         bool
31 config STACKTRACE_SUPPORT
32         def_bool y
34 config HAVE_LATENCYTOP_SUPPORT
35         def_bool y
37 config LOCKDEP_SUPPORT
38         def_bool y
40 config RWSEM_GENERIC_SPINLOCK
41         def_bool y
43 config RWSEM_XCHGADD_ALGORITHM
44         bool
46 config ARCH_HAS_ILOG2_U32
47         bool
49 config ARCH_HAS_ILOG2_U64
50         bool
52 config ARCH_HAS_CPUFREQ
53         bool
55 config GENERIC_HWEIGHT
56         def_bool y
58 config GENERIC_CALIBRATE_DELAY
59         def_bool y
61 config ARCH_MAY_HAVE_PC_FDC
62         bool
64 config ZONE_DMA
65         def_bool y
67 config NEED_DMA_MAP_STATE
68        def_bool y
70 source "init/Kconfig"
72 source "kernel/Kconfig.freezer"
74 menu "System Type"
76 config MMU
77         def_bool y
79 config ARCH_FPGA
80         bool
82 config ARCH_PUV3
83         def_bool y
84         select CPU_UCV2
85         select GENERIC_CLOCKEVENTS
86         select HAVE_CLK
87         select ARCH_REQUIRE_GPIOLIB
88         select ARCH_HAS_CPUFREQ
90 # CONFIGs for ARCH_PUV3
92 if ARCH_PUV3
94 choice
95         prompt "Board Selection"
96         default PUV3_DB0913
98 config PUV3_FPGA_DLX200
99         select ARCH_FPGA
100         bool "FPGA board"
102 config PUV3_DB0913
103         bool "DEBUG board (0913)"
105 config PUV3_NB0916
106         bool "NetBook board (0916)"
107         select PWM
108         select PWM_PUV3
110 config PUV3_SMW0919
111         bool "Security Mini-Workstation board (0919)"
113 endchoice
115 config PUV3_PM
116         def_bool y if !ARCH_FPGA
118 endif
120 source "arch/unicore32/mm/Kconfig"
122 comment "Floating poing support"
124 config UNICORE_FPU_F64
125         def_bool y if !ARCH_FPGA
127 endmenu
129 menu "Bus support"
131 config PCI
132         bool "PCI Support"
133         help
134           Find out whether you have a PCI motherboard. PCI is the name of a
135           bus system, i.e. the way the CPU talks to the other stuff inside
136           your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or
137           VESA. If you have PCI, say Y, otherwise N.
139 source "drivers/pci/Kconfig"
141 source "drivers/pcmcia/Kconfig"
143 endmenu
145 menu "Kernel Features"
147 source "kernel/Kconfig.preempt"
149 source "kernel/Kconfig.hz"
151 source "mm/Kconfig"
153 config LEDS
154         def_bool y
155         depends on GPIOLIB
157 config ALIGNMENT_TRAP
158         def_bool y
159         help
160           Unicore processors can not fetch/store information which is not
161           naturally aligned on the bus, i.e., a 4 byte fetch must start at an
162           address divisible by 4. On 32-bit Unicore processors, these non-aligned
163           fetch/store instructions will be emulated in software if you say
164           here, which has a severe performance impact. This is necessary for
165           correct operation of some network protocols. With an IP-only
166           configuration it is safe to say N, otherwise say Y.
168 endmenu
170 menu "Boot options"
172 config CMDLINE
173         string "Default kernel command string"
174         default ""
176 config CMDLINE_FORCE
177         bool "Always use the default kernel command string"
178         depends on CMDLINE != ""
179         help
180           Always use the default kernel command string, even if the boot
181           loader passes other arguments to the kernel.
182           This is useful if you cannot or don't want to change the
183           command-line options your boot loader passes to the kernel.
185           If unsure, say N.
187 endmenu
189 menu "Userspace binary formats"
191 source "fs/Kconfig.binfmt"
193 endmenu
195 menu "Power management options"
197 source "kernel/power/Kconfig"
199 if ARCH_HAS_CPUFREQ
200 source "drivers/cpufreq/Kconfig"
201 endif
203 config ARCH_SUSPEND_POSSIBLE
204         def_bool y if !ARCH_FPGA
206 config ARCH_HIBERNATION_POSSIBLE
207         def_bool y if !ARCH_FPGA
209 endmenu
211 source "net/Kconfig"
213 if ARCH_PUV3
215 config PUV3_GPIO
216         bool
217         depends on !ARCH_FPGA
218         select GPIO_SYSFS
219         default y
221 if PUV3_NB0916
223 menu "PKUnity NetBook-0916 Features"
225 config I2C_BATTERY_BQ27200
226         tristate "I2C Battery BQ27200 Support"
227         select I2C_PUV3
228         select POWER_SUPPLY
229         select BATTERY_BQ27x00
231 config I2C_EEPROM_AT24
232         tristate "I2C EEPROMs AT24 support"
233         select I2C_PUV3
234         select EEPROM_AT24
236 config LCD_BACKLIGHT
237         tristate "LCD Backlight support"
238         select BACKLIGHT_LCD_SUPPORT
239         select BACKLIGHT_PWM
241 endmenu
243 endif
245 endif
247 source "drivers/Kconfig"
249 source "fs/Kconfig"
251 source "arch/unicore32/Kconfig.debug"
253 source "security/Kconfig"
255 source "crypto/Kconfig"
257 source "lib/Kconfig"