blob: ed339b83f5af3ee918b53fb7b02d4533012be203 [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001#
2# For a description of the syntax of this configuration file,
3# see Documentation/kbuild/kconfig-language.txt.
4#
5
Mike Frysinger53f8a252007-11-15 15:48:01 +08006mainmenu "Blackfin Kernel Configuration"
Bryan Wu1394f032007-05-06 14:50:22 -07007
Alan Jenkins9e1b9b82009-11-07 21:03:54 +00008config SYMBOL_PREFIX
9 string
10 default "_"
11
Bryan Wu1394f032007-05-06 14:50:22 -070012config MMU
Mike Frysingerbac7d892009-06-07 03:46:06 -040013 def_bool n
Bryan Wu1394f032007-05-06 14:50:22 -070014
15config FPU
Mike Frysingerbac7d892009-06-07 03:46:06 -040016 def_bool n
Bryan Wu1394f032007-05-06 14:50:22 -070017
18config RWSEM_GENERIC_SPINLOCK
Mike Frysingerbac7d892009-06-07 03:46:06 -040019 def_bool y
Bryan Wu1394f032007-05-06 14:50:22 -070020
21config RWSEM_XCHGADD_ALGORITHM
Mike Frysingerbac7d892009-06-07 03:46:06 -040022 def_bool n
Bryan Wu1394f032007-05-06 14:50:22 -070023
24config BLACKFIN
Mike Frysingerbac7d892009-06-07 03:46:06 -040025 def_bool y
Mike Frysinger652afdc2010-01-25 22:12:32 +000026 select HAVE_ARCH_KGDB
Mike Frysinger1ee76d72009-06-10 04:45:29 -040027 select HAVE_FUNCTION_GRAPH_TRACER
Mike Frysinger1c873be2009-06-09 07:25:09 -040028 select HAVE_FUNCTION_TRACER
Mike Frysingeraebfef02010-01-22 07:35:20 -050029 select HAVE_FUNCTION_TRACE_MCOUNT_TEST
Sam Ravnborgec7748b2008-02-09 10:46:40 +010030 select HAVE_IDE
Barry Songd86bfb12010-01-07 04:11:17 +000031 select HAVE_KERNEL_GZIP if RAMKERNEL
32 select HAVE_KERNEL_BZIP2 if RAMKERNEL
33 select HAVE_KERNEL_LZMA if RAMKERNEL
Mathieu Desnoyers42d4b832008-02-02 15:10:34 -050034 select HAVE_OPROFILE
Michael Hennericha4f0b32c2008-11-18 17:48:22 +080035 select ARCH_WANT_OPTIONAL_GPIOLIB
Bryan Wu1394f032007-05-06 14:50:22 -070036
Mike Frysingerddf9dda2009-06-13 07:42:58 -040037config GENERIC_CSUM
38 def_bool y
39
Mike Frysinger70f12562009-06-07 17:18:25 -040040config GENERIC_BUG
41 def_bool y
42 depends on BUG
43
Aubrey Lie3defff2007-05-21 18:09:11 +080044config ZONE_DMA
Mike Frysingerbac7d892009-06-07 03:46:06 -040045 def_bool y
Aubrey Lie3defff2007-05-21 18:09:11 +080046
Bryan Wu1394f032007-05-06 14:50:22 -070047config GENERIC_FIND_NEXT_BIT
Mike Frysingerbac7d892009-06-07 03:46:06 -040048 def_bool y
Bryan Wu1394f032007-05-06 14:50:22 -070049
Bryan Wu1394f032007-05-06 14:50:22 -070050config GENERIC_HARDIRQS
Mike Frysingerbac7d892009-06-07 03:46:06 -040051 def_bool y
Bryan Wu1394f032007-05-06 14:50:22 -070052
53config GENERIC_IRQ_PROBE
Mike Frysingerbac7d892009-06-07 03:46:06 -040054 def_bool y
Bryan Wu1394f032007-05-06 14:50:22 -070055
Michael Hennerich796dada2009-09-30 07:54:40 +000056config GENERIC_HARDIRQS_NO__DO_IRQ
57 def_bool y
58
Michael Hennerichb2d15832007-07-24 15:46:36 +080059config GENERIC_GPIO
Mike Frysingerbac7d892009-06-07 03:46:06 -040060 def_bool y
Bryan Wu1394f032007-05-06 14:50:22 -070061
62config FORCE_MAX_ZONEORDER
63 int
64 default "14"
65
66config GENERIC_CALIBRATE_DELAY
Mike Frysingerbac7d892009-06-07 03:46:06 -040067 def_bool y
Bryan Wu1394f032007-05-06 14:50:22 -070068
Mike Frysinger6fa68e72009-06-08 18:45:01 -040069config LOCKDEP_SUPPORT
70 def_bool y
71
Mike Frysingerc7b412f2009-06-08 18:44:45 -040072config STACKTRACE_SUPPORT
73 def_bool y
74
Mike Frysinger8f860012009-06-08 12:49:48 -040075config TRACE_IRQFLAGS_SUPPORT
76 def_bool y
Bryan Wu1394f032007-05-06 14:50:22 -070077
Bryan Wu1394f032007-05-06 14:50:22 -070078source "init/Kconfig"
Matt Helsleydc52ddc2008-10-18 20:27:21 -070079
Bryan Wu1394f032007-05-06 14:50:22 -070080source "kernel/Kconfig.preempt"
81
Matt Helsleydc52ddc2008-10-18 20:27:21 -070082source "kernel/Kconfig.freezer"
83
Bryan Wu1394f032007-05-06 14:50:22 -070084menu "Blackfin Processor Options"
85
86comment "Processor and Board Settings"
87
88choice
89 prompt "CPU"
90 default BF533
91
Bryan Wu2f6f4bc2008-11-18 17:48:21 +080092config BF512
93 bool "BF512"
94 help
95 BF512 Processor Support.
96
97config BF514
98 bool "BF514"
99 help
100 BF514 Processor Support.
101
102config BF516
103 bool "BF516"
104 help
105 BF516 Processor Support.
106
107config BF518
108 bool "BF518"
109 help
110 BF518 Processor Support.
111
Michael Hennerich59003142007-10-21 16:54:27 +0800112config BF522
113 bool "BF522"
114 help
115 BF522 Processor Support.
116
Mike Frysinger1545a112007-12-24 16:54:48 +0800117config BF523
118 bool "BF523"
119 help
120 BF523 Processor Support.
121
122config BF524
123 bool "BF524"
124 help
125 BF524 Processor Support.
126
Michael Hennerich59003142007-10-21 16:54:27 +0800127config BF525
128 bool "BF525"
129 help
130 BF525 Processor Support.
131
Mike Frysinger1545a112007-12-24 16:54:48 +0800132config BF526
133 bool "BF526"
134 help
135 BF526 Processor Support.
136
Michael Hennerich59003142007-10-21 16:54:27 +0800137config BF527
138 bool "BF527"
139 help
140 BF527 Processor Support.
141
Bryan Wu1394f032007-05-06 14:50:22 -0700142config BF531
143 bool "BF531"
144 help
145 BF531 Processor Support.
146
147config BF532
148 bool "BF532"
149 help
150 BF532 Processor Support.
151
152config BF533
153 bool "BF533"
154 help
155 BF533 Processor Support.
156
157config BF534
158 bool "BF534"
159 help
160 BF534 Processor Support.
161
162config BF536
163 bool "BF536"
164 help
165 BF536 Processor Support.
166
167config BF537
168 bool "BF537"
169 help
170 BF537 Processor Support.
171
Michael Hennerichdc26aec2008-11-18 17:48:22 +0800172config BF538
173 bool "BF538"
174 help
175 BF538 Processor Support.
176
177config BF539
178 bool "BF539"
179 help
180 BF539 Processor Support.
181
Mike Frysinger5df326a2009-11-16 23:49:41 +0000182config BF542_std
Roy Huang24a07a12007-07-12 22:41:45 +0800183 bool "BF542"
184 help
185 BF542 Processor Support.
186
Mike Frysinger2f89c062009-02-04 16:49:45 +0800187config BF542M
188 bool "BF542m"
189 help
190 BF542 Processor Support.
191
Mike Frysinger5df326a2009-11-16 23:49:41 +0000192config BF544_std
Roy Huang24a07a12007-07-12 22:41:45 +0800193 bool "BF544"
194 help
195 BF544 Processor Support.
196
Mike Frysinger2f89c062009-02-04 16:49:45 +0800197config BF544M
198 bool "BF544m"
199 help
200 BF544 Processor Support.
201
Mike Frysinger5df326a2009-11-16 23:49:41 +0000202config BF547_std
Mike Frysinger7c7fd172007-11-15 21:10:21 +0800203 bool "BF547"
204 help
205 BF547 Processor Support.
206
Mike Frysinger2f89c062009-02-04 16:49:45 +0800207config BF547M
208 bool "BF547m"
209 help
210 BF547 Processor Support.
211
Mike Frysinger5df326a2009-11-16 23:49:41 +0000212config BF548_std
Roy Huang24a07a12007-07-12 22:41:45 +0800213 bool "BF548"
214 help
215 BF548 Processor Support.
216
Mike Frysinger2f89c062009-02-04 16:49:45 +0800217config BF548M
218 bool "BF548m"
219 help
220 BF548 Processor Support.
221
Mike Frysinger5df326a2009-11-16 23:49:41 +0000222config BF549_std
Roy Huang24a07a12007-07-12 22:41:45 +0800223 bool "BF549"
224 help
225 BF549 Processor Support.
226
Mike Frysinger2f89c062009-02-04 16:49:45 +0800227config BF549M
228 bool "BF549m"
229 help
230 BF549 Processor Support.
231
Bryan Wu1394f032007-05-06 14:50:22 -0700232config BF561
233 bool "BF561"
234 help
Mike Frysingercd88b4d2008-10-09 12:03:22 +0800235 BF561 Processor Support.
Bryan Wu1394f032007-05-06 14:50:22 -0700236
237endchoice
238
Graf Yang46fa5ee2009-01-07 23:14:39 +0800239config SMP
240 depends on BF561
Yi Li0d152c22009-12-28 10:21:49 +0000241 select TICKSOURCE_CORETMR
Graf Yang46fa5ee2009-01-07 23:14:39 +0800242 bool "Symmetric multi-processing support"
243 ---help---
244 This enables support for systems with more than one CPU,
245 like the dual core BF561. If you have a system with only one
246 CPU, say N. If you have a system with more than one CPU, say Y.
247
248 If you don't know what to do here, say N.
249
250config NR_CPUS
251 int
252 depends on SMP
253 default 2 if BF561
254
Graf Yang0b39db22009-12-28 11:13:51 +0000255config HOTPLUG_CPU
256 bool "Support for hot-pluggable CPUs"
257 depends on SMP && HOTPLUG
258 default y
259
Graf Yang46fa5ee2009-01-07 23:14:39 +0800260config IRQ_PER_CPU
261 bool
262 depends on SMP
263 default y
264
Graf Yangead9b112009-12-14 08:01:08 +0000265config HAVE_LEGACY_PER_CPU_AREA
266 def_bool y
267 depends on SMP
268
Mike Frysinger0c0497c2008-10-09 17:32:28 +0800269config BF_REV_MIN
270 int
Mike Frysinger2f89c062009-02-04 16:49:45 +0800271 default 0 if (BF51x || BF52x || (BF54x && !BF54xM))
Mike Frysinger0c0497c2008-10-09 17:32:28 +0800272 default 2 if (BF537 || BF536 || BF534)
Mike Frysinger2f89c062009-02-04 16:49:45 +0800273 default 3 if (BF561 || BF533 || BF532 || BF531 || BF54xM)
Bryan Wu2f6f4bc2008-11-18 17:48:21 +0800274 default 4 if (BF538 || BF539)
Mike Frysinger0c0497c2008-10-09 17:32:28 +0800275
276config BF_REV_MAX
277 int
Mike Frysinger2f89c062009-02-04 16:49:45 +0800278 default 2 if (BF51x || BF52x || (BF54x && !BF54xM))
279 default 3 if (BF537 || BF536 || BF534 || BF54xM)
Bryan Wu2f6f4bc2008-11-18 17:48:21 +0800280 default 5 if (BF561 || BF538 || BF539)
Mike Frysinger0c0497c2008-10-09 17:32:28 +0800281 default 6 if (BF533 || BF532 || BF531)
282
Bryan Wu1394f032007-05-06 14:50:22 -0700283choice
284 prompt "Silicon Rev"
Mike Frysingerf8b55652009-04-13 21:58:34 +0000285 default BF_REV_0_0 if (BF51x || BF52x)
286 default BF_REV_0_2 if (BF534 || BF536 || BF537 || (BF54x && !BF54xM))
Mike Frysinger2f89c062009-02-04 16:49:45 +0800287 default BF_REV_0_3 if (BF531 || BF532 || BF533 || BF54xM || BF561)
Roy Huang24a07a12007-07-12 22:41:45 +0800288
289config BF_REV_0_0
290 bool "0.0"
Mike Frysinger2f89c062009-02-04 16:49:45 +0800291 depends on (BF51x || BF52x || (BF54x && !BF54xM))
Michael Hennerich59003142007-10-21 16:54:27 +0800292
293config BF_REV_0_1
Mike Frysingerd07f4382007-11-15 15:49:17 +0800294 bool "0.1"
Mike Frysinger3d15f302009-06-15 16:21:44 +0000295 depends on (BF51x || BF52x || (BF54x && !BF54xM))
Bryan Wu1394f032007-05-06 14:50:22 -0700296
297config BF_REV_0_2
298 bool "0.2"
Mike Frysinger2f89c062009-02-04 16:49:45 +0800299 depends on (BF52x || BF537 || BF536 || BF534 || (BF54x && !BF54xM))
Bryan Wu1394f032007-05-06 14:50:22 -0700300
301config BF_REV_0_3
302 bool "0.3"
Mike Frysinger2f89c062009-02-04 16:49:45 +0800303 depends on (BF54xM || BF561 || BF537 || BF536 || BF534 || BF533 || BF532 || BF531)
Bryan Wu1394f032007-05-06 14:50:22 -0700304
305config BF_REV_0_4
306 bool "0.4"
Michael Hennerichdc26aec2008-11-18 17:48:22 +0800307 depends on (BF561 || BF533 || BF532 || BF531 || BF538 || BF539)
Bryan Wu1394f032007-05-06 14:50:22 -0700308
309config BF_REV_0_5
310 bool "0.5"
Michael Hennerichdc26aec2008-11-18 17:48:22 +0800311 depends on (BF561 || BF533 || BF532 || BF531 || BF538 || BF539)
Bryan Wu1394f032007-05-06 14:50:22 -0700312
Mike Frysinger49f72532008-10-09 12:06:27 +0800313config BF_REV_0_6
314 bool "0.6"
315 depends on (BF533 || BF532 || BF531)
316
Jie Zhangde3025f2007-06-25 18:04:12 +0800317config BF_REV_ANY
318 bool "any"
319
320config BF_REV_NONE
321 bool "none"
322
Bryan Wu1394f032007-05-06 14:50:22 -0700323endchoice
324
Roy Huang24a07a12007-07-12 22:41:45 +0800325config BF53x
326 bool
327 depends on (BF531 || BF532 || BF533 || BF534 || BF536 || BF537)
328 default y
329
Bryan Wu1394f032007-05-06 14:50:22 -0700330config MEM_GENERIC_BOARD
331 bool
332 depends on GENERIC_BOARD
333 default y
334
335config MEM_MT48LC64M4A2FB_7E
336 bool
337 depends on (BFIN533_STAMP)
338 default y
339
340config MEM_MT48LC16M16A2TG_75
341 bool
342 depends on (BFIN533_EZKIT || BFIN561_EZKIT \
Harald Krapfenbauer60584342009-09-10 15:12:08 +0000343 || BFIN533_BLUETECHNIX_CM || BFIN537_BLUETECHNIX_CM_E \
344 || BFIN537_BLUETECHNIX_CM_U || H8606_HVSISTEMAS \
345 || BFIN527_BLUETECHNIX_CM)
Bryan Wu1394f032007-05-06 14:50:22 -0700346 default y
347
348config MEM_MT48LC32M8A2_75
349 bool
Michael Hennerichdc26aec2008-11-18 17:48:22 +0800350 depends on (BFIN537_STAMP || PNAV10 || BFIN538_EZKIT)
Bryan Wu1394f032007-05-06 14:50:22 -0700351 default y
352
353config MEM_MT48LC8M32B2B5_7
354 bool
355 depends on (BFIN561_BLUETECHNIX_CM)
356 default y
357
Michael Hennerich59003142007-10-21 16:54:27 +0800358config MEM_MT48LC32M16A2TG_75
359 bool
Michael Hennerich6924dfb2009-12-07 13:41:28 +0000360 depends on (BFIN527_EZKIT || BFIN527_EZKIT_V2 || BFIN532_IP0X || BLACKSTAMP)
Michael Hennerich59003142007-10-21 16:54:27 +0800361 default y
362
Sonic Zhang49345402009-01-07 23:14:38 +0800363config MEM_MT48LC32M8A2_75
364 bool
365 depends on (BFIN518F_EZBRD)
366 default y
367
Graf Yangee48efb2009-06-18 04:32:04 +0000368config MEM_MT48H32M16LFCJ_75
369 bool
370 depends on (BFIN526_EZBRD)
371 default y
372
Bryan Wu2f6f4bc2008-11-18 17:48:21 +0800373source "arch/blackfin/mach-bf518/Kconfig"
Michael Hennerich59003142007-10-21 16:54:27 +0800374source "arch/blackfin/mach-bf527/Kconfig"
Bryan Wu1394f032007-05-06 14:50:22 -0700375source "arch/blackfin/mach-bf533/Kconfig"
376source "arch/blackfin/mach-bf561/Kconfig"
377source "arch/blackfin/mach-bf537/Kconfig"
Michael Hennerichdc26aec2008-11-18 17:48:22 +0800378source "arch/blackfin/mach-bf538/Kconfig"
Roy Huang24a07a12007-07-12 22:41:45 +0800379source "arch/blackfin/mach-bf548/Kconfig"
Bryan Wu1394f032007-05-06 14:50:22 -0700380
381menu "Board customizations"
382
383config CMDLINE_BOOL
384 bool "Default bootloader kernel arguments"
385
386config CMDLINE
387 string "Initial kernel command string"
388 depends on CMDLINE_BOOL
389 default "console=ttyBF0,57600"
390 help
391 If you don't have a boot loader capable of passing a command line string
392 to the kernel, you may specify one here. As a minimum, you should specify
393 the memory size and the root device (e.g., mem=8M, root=/dev/nfs).
394
Mike Frysinger5f004c22008-04-25 02:11:24 +0800395config BOOT_LOAD
396 hex "Kernel load address for booting"
397 default "0x1000"
398 range 0x1000 0x20000000
399 help
400 This option allows you to set the load address of the kernel.
401 This can be useful if you are on a board which has a small amount
402 of memory or you wish to reserve some memory at the beginning of
403 the address space.
404
405 Note that you need to keep this value above 4k (0x1000) as this
406 memory region is used to capture NULL pointer references as well
407 as some core kernel functions.
408
Michael Hennerich8cc71172008-10-13 14:45:06 +0800409config ROM_BASE
410 hex "Kernel ROM Base"
Mike Frysinger86249912008-11-18 17:48:22 +0800411 depends on ROMKERNEL
Barry Songd86bfb12010-01-07 04:11:17 +0000412 default "0x20040040"
Michael Hennerich8cc71172008-10-13 14:45:06 +0800413 range 0x20000000 0x20400000 if !(BF54x || BF561)
414 range 0x20000000 0x30000000 if (BF54x || BF561)
415 help
Barry Songd86bfb12010-01-07 04:11:17 +0000416 Make sure your ROM base does not include any file-header
417 information that is prepended to the kernel.
418
419 For example, the bootable U-Boot format (created with
420 mkimage) has a 64 byte header (0x40). So while the image
421 you write to flash might start at say 0x20080000, you have
422 to add 0x40 to get the kernel's ROM base as it will come
423 after the header.
Michael Hennerich8cc71172008-10-13 14:45:06 +0800424
Robin Getzf16295e2007-08-03 18:07:17 +0800425comment "Clock/PLL Setup"
Bryan Wu1394f032007-05-06 14:50:22 -0700426
427config CLKIN_HZ
Sonic Zhang2fb6cb42008-04-25 04:39:28 +0800428 int "Frequency of the crystal on the board in Hz"
Mike Frysinger5d1617b2008-04-24 05:03:26 +0800429 default "10000000" if BFIN532_IP0X
Mike Frysingerd0cb9b42009-06-11 21:52:35 +0000430 default "11059200" if BFIN533_STAMP
431 default "24576000" if PNAV10
432 default "25000000" # most people use this
433 default "27000000" if BFIN533_EZKIT
434 default "30000000" if BFIN561_EZKIT
Bryan Wu1394f032007-05-06 14:50:22 -0700435 help
436 The frequency of CLKIN crystal oscillator on the board in Hz.
Sonic Zhang2fb6cb42008-04-25 04:39:28 +0800437 Warning: This value should match the crystal on the board. Otherwise,
438 peripherals won't work properly.
Bryan Wu1394f032007-05-06 14:50:22 -0700439
Robin Getzf16295e2007-08-03 18:07:17 +0800440config BFIN_KERNEL_CLOCK
441 bool "Re-program Clocks while Kernel boots?"
442 default n
443 help
444 This option decides if kernel clocks are re-programed from the
445 bootloader settings. If the clocks are not set, the SDRAM settings
446 are also not changed, and the Bootloader does 100% of the hardware
447 configuration.
448
449config PLL_BYPASS
Mike Frysingere4e9a7a2007-11-15 20:39:34 +0800450 bool "Bypass PLL"
451 depends on BFIN_KERNEL_CLOCK
452 default n
Robin Getzf16295e2007-08-03 18:07:17 +0800453
454config CLKIN_HALF
455 bool "Half Clock In"
456 depends on BFIN_KERNEL_CLOCK && (! PLL_BYPASS)
457 default n
458 help
459 If this is set the clock will be divided by 2, before it goes to the PLL.
460
461config VCO_MULT
462 int "VCO Multiplier"
463 depends on BFIN_KERNEL_CLOCK && (! PLL_BYPASS)
464 range 1 64
465 default "22" if BFIN533_EZKIT
466 default "45" if BFIN533_STAMP
Michael Hennerich6924dfb2009-12-07 13:41:28 +0000467 default "20" if (BFIN537_STAMP || BFIN527_EZKIT || BFIN527_EZKIT_V2 || BFIN548_EZKIT || BFIN548_BLUETECHNIX_CM || BFIN538_EZKIT)
Robin Getzf16295e2007-08-03 18:07:17 +0800468 default "22" if BFIN533_BLUETECHNIX_CM
Harald Krapfenbauer60584342009-09-10 15:12:08 +0000469 default "20" if (BFIN537_BLUETECHNIX_CM_E || BFIN537_BLUETECHNIX_CM_U || BFIN527_BLUETECHNIX_CM || BFIN561_BLUETECHNIX_CM)
Robin Getzf16295e2007-08-03 18:07:17 +0800470 default "20" if BFIN561_EZKIT
Bryan Wu2f6f4bc2008-11-18 17:48:21 +0800471 default "16" if (H8606_HVSISTEMAS || BLACKSTAMP || BFIN526_EZBRD || BFIN518F_EZBRD)
Robin Getzf16295e2007-08-03 18:07:17 +0800472 help
473 This controls the frequency of the on-chip PLL. This can be between 1 and 64.
474 PLL Frequency = (Crystal Frequency) * (this setting)
475
476choice
477 prompt "Core Clock Divider"
478 depends on BFIN_KERNEL_CLOCK
479 default CCLK_DIV_1
480 help
481 This sets the frequency of the core. It can be 1, 2, 4 or 8
482 Core Frequency = (PLL frequency) / (this setting)
483
484config CCLK_DIV_1
485 bool "1"
486
487config CCLK_DIV_2
488 bool "2"
489
490config CCLK_DIV_4
491 bool "4"
492
493config CCLK_DIV_8
494 bool "8"
495endchoice
496
497config SCLK_DIV
498 int "System Clock Divider"
499 depends on BFIN_KERNEL_CLOCK
500 range 1 15
Mike Frysinger5f004c22008-04-25 02:11:24 +0800501 default 5
Robin Getzf16295e2007-08-03 18:07:17 +0800502 help
503 This sets the frequency of the system clock (including SDRAM or DDR).
504 This can be between 1 and 15
505 System Clock = (PLL frequency) / (this setting)
506
Mike Frysinger5f004c22008-04-25 02:11:24 +0800507choice
508 prompt "DDR SDRAM Chip Type"
509 depends on BFIN_KERNEL_CLOCK
510 depends on BF54x
511 default MEM_MT46V32M16_5B
512
513config MEM_MT46V32M16_6T
514 bool "MT46V32M16_6T"
515
516config MEM_MT46V32M16_5B
517 bool "MT46V32M16_5B"
518endchoice
519
Michael Hennerich73feb5c2009-01-07 23:14:39 +0800520choice
521 prompt "DDR/SDRAM Timing"
522 depends on BFIN_KERNEL_CLOCK
523 default BFIN_KERNEL_CLOCK_MEMINIT_CALC
524 help
525 This option allows you to specify Blackfin SDRAM/DDR Timing parameters
526 The calculated SDRAM timing parameters may not be 100%
527 accurate - This option is therefore marked experimental.
528
529config BFIN_KERNEL_CLOCK_MEMINIT_CALC
530 bool "Calculate Timings (EXPERIMENTAL)"
531 depends on EXPERIMENTAL
532
533config BFIN_KERNEL_CLOCK_MEMINIT_SPEC
534 bool "Provide accurate Timings based on target SCLK"
535 help
536 Please consult the Blackfin Hardware Reference Manuals as well
537 as the memory device datasheet.
538 http://docs.blackfin.uclinux.org/doku.php?id=bfin:sdram
539endchoice
540
541menu "Memory Init Control"
542 depends on BFIN_KERNEL_CLOCK_MEMINIT_SPEC
543
544config MEM_DDRCTL0
545 depends on BF54x
546 hex "DDRCTL0"
547 default 0x0
548
549config MEM_DDRCTL1
550 depends on BF54x
551 hex "DDRCTL1"
552 default 0x0
553
554config MEM_DDRCTL2
555 depends on BF54x
556 hex "DDRCTL2"
557 default 0x0
558
559config MEM_EBIU_DDRQUE
560 depends on BF54x
561 hex "DDRQUE"
562 default 0x0
563
564config MEM_SDRRC
565 depends on !BF54x
566 hex "SDRRC"
567 default 0x0
568
569config MEM_SDGCTL
570 depends on !BF54x
571 hex "SDGCTL"
572 default 0x0
573endmenu
574
Robin Getzf16295e2007-08-03 18:07:17 +0800575#
576# Max & Min Speeds for various Chips
577#
578config MAX_VCO_HZ
579 int
Bryan Wu2f6f4bc2008-11-18 17:48:21 +0800580 default 400000000 if BF512
581 default 400000000 if BF514
582 default 400000000 if BF516
583 default 400000000 if BF518
Mike Frysinger7b062632009-08-11 21:27:09 +0000584 default 400000000 if BF522
585 default 600000000 if BF523
Mike Frysinger1545a112007-12-24 16:54:48 +0800586 default 400000000 if BF524
Robin Getzf16295e2007-08-03 18:07:17 +0800587 default 600000000 if BF525
Mike Frysinger1545a112007-12-24 16:54:48 +0800588 default 400000000 if BF526
Robin Getzf16295e2007-08-03 18:07:17 +0800589 default 600000000 if BF527
590 default 400000000 if BF531
591 default 400000000 if BF532
592 default 750000000 if BF533
593 default 500000000 if BF534
594 default 400000000 if BF536
595 default 600000000 if BF537
Robin Getzf72eecb2007-11-21 16:29:20 +0800596 default 533333333 if BF538
597 default 533333333 if BF539
Robin Getzf16295e2007-08-03 18:07:17 +0800598 default 600000000 if BF542
Robin Getzf72eecb2007-11-21 16:29:20 +0800599 default 533333333 if BF544
Mike Frysinger1545a112007-12-24 16:54:48 +0800600 default 600000000 if BF547
601 default 600000000 if BF548
Robin Getzf72eecb2007-11-21 16:29:20 +0800602 default 533333333 if BF549
Robin Getzf16295e2007-08-03 18:07:17 +0800603 default 600000000 if BF561
604
605config MIN_VCO_HZ
606 int
607 default 50000000
608
609config MAX_SCLK_HZ
610 int
Robin Getzf72eecb2007-11-21 16:29:20 +0800611 default 133333333
Robin Getzf16295e2007-08-03 18:07:17 +0800612
613config MIN_SCLK_HZ
614 int
615 default 27000000
616
617comment "Kernel Timer/Scheduler"
618
619source kernel/Kconfig.hz
620
Vitja Makarov8b5f79f2008-02-29 12:24:23 +0800621config GENERIC_TIME
john stultz10f03f12009-09-15 21:17:19 -0700622 def_bool y
Vitja Makarov8b5f79f2008-02-29 12:24:23 +0800623
624config GENERIC_CLOCKEVENTS
625 bool "Generic clock events"
Vitja Makarov8b5f79f2008-02-29 12:24:23 +0800626 default y
627
Yi Li0d152c22009-12-28 10:21:49 +0000628menu "Clock event device"
Graf Yang1fa9be72009-05-15 11:01:59 +0000629 depends on GENERIC_CLOCKEVENTS
Graf Yang1fa9be72009-05-15 11:01:59 +0000630config TICKSOURCE_GPTMR0
Yi Li0d152c22009-12-28 10:21:49 +0000631 bool "GPTimer0"
632 depends on !SMP
Graf Yang1fa9be72009-05-15 11:01:59 +0000633 select BFIN_GPTIMERS
Graf Yang1fa9be72009-05-15 11:01:59 +0000634
635config TICKSOURCE_CORETMR
Yi Li0d152c22009-12-28 10:21:49 +0000636 bool "Core timer"
637 default y
638endmenu
Graf Yang1fa9be72009-05-15 11:01:59 +0000639
Yi Li0d152c22009-12-28 10:21:49 +0000640menu "Clock souce"
Vitja Makarov8b5f79f2008-02-29 12:24:23 +0800641 depends on GENERIC_CLOCKEVENTS
Yi Li0d152c22009-12-28 10:21:49 +0000642config CYCLES_CLOCKSOURCE
643 bool "CYCLES"
644 default y
Vitja Makarov8b5f79f2008-02-29 12:24:23 +0800645 depends on !BFIN_SCRATCH_REG_CYCLES
Graf Yang1fa9be72009-05-15 11:01:59 +0000646 depends on !SMP
Vitja Makarov8b5f79f2008-02-29 12:24:23 +0800647 help
648 If you say Y here, you will enable support for using the 'cycles'
649 registers as a clock source. Doing so means you will be unable to
650 safely write to the 'cycles' register during runtime. You will
651 still be able to read it (such as for performance monitoring), but
652 writing the registers will most likely crash the kernel.
653
Graf Yang1fa9be72009-05-15 11:01:59 +0000654config GPTMR0_CLOCKSOURCE
Yi Li0d152c22009-12-28 10:21:49 +0000655 bool "GPTimer0"
Mike Frysinger3aca47c2009-06-18 19:40:47 +0000656 select BFIN_GPTIMERS
Graf Yang1fa9be72009-05-15 11:01:59 +0000657 depends on !TICKSOURCE_GPTMR0
Yi Li0d152c22009-12-28 10:21:49 +0000658endmenu
Graf Yang1fa9be72009-05-15 11:01:59 +0000659
john stultz10f03f12009-09-15 21:17:19 -0700660config ARCH_USES_GETTIMEOFFSET
661 depends on !GENERIC_CLOCKEVENTS
662 def_bool y
663
Vitja Makarov8b5f79f2008-02-29 12:24:23 +0800664source kernel/time/Kconfig
665
Mike Frysinger5f004c22008-04-25 02:11:24 +0800666comment "Misc"
Sonic Zhang971d5bc2008-01-27 16:32:31 +0800667
Mike Frysingerf0b5d122007-08-05 17:03:59 +0800668choice
669 prompt "Blackfin Exception Scratch Register"
670 default BFIN_SCRATCH_REG_RETN
671 help
672 Select the resource to reserve for the Exception handler:
673 - RETN: Non-Maskable Interrupt (NMI)
674 - RETE: Exception Return (JTAG/ICE)
675 - CYCLES: Performance counter
676
677 If you are unsure, please select "RETN".
678
679config BFIN_SCRATCH_REG_RETN
680 bool "RETN"
681 help
682 Use the RETN register in the Blackfin exception handler
683 as a stack scratch register. This means you cannot
684 safely use NMI on the Blackfin while running Linux, but
685 you can debug the system with a JTAG ICE and use the
686 CYCLES performance registers.
687
688 If you are unsure, please select "RETN".
689
690config BFIN_SCRATCH_REG_RETE
691 bool "RETE"
692 help
693 Use the RETE register in the Blackfin exception handler
694 as a stack scratch register. This means you cannot
695 safely use a JTAG ICE while debugging a Blackfin board,
696 but you can safely use the CYCLES performance registers
697 and the NMI.
698
699 If you are unsure, please select "RETN".
700
701config BFIN_SCRATCH_REG_CYCLES
702 bool "CYCLES"
703 help
704 Use the CYCLES register in the Blackfin exception handler
705 as a stack scratch register. This means you cannot
706 safely use the CYCLES performance registers on a Blackfin
707 board at anytime, but you can debug the system with a JTAG
708 ICE and use the NMI.
709
710 If you are unsure, please select "RETN".
711
712endchoice
713
Bryan Wu1394f032007-05-06 14:50:22 -0700714endmenu
715
716
717menu "Blackfin Kernel Optimizations"
Graf Yang46fa5ee2009-01-07 23:14:39 +0800718 depends on !SMP
Bryan Wu1394f032007-05-06 14:50:22 -0700719
Bryan Wu1394f032007-05-06 14:50:22 -0700720comment "Memory Optimizations"
721
722config I_ENTRY_L1
723 bool "Locate interrupt entry code in L1 Memory"
724 default y
725 help
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200726 If enabled, interrupt entry code (STORE/RESTORE CONTEXT) is linked
727 into L1 instruction memory. (less latency)
Bryan Wu1394f032007-05-06 14:50:22 -0700728
729config EXCPT_IRQ_SYSC_L1
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200730 bool "Locate entire ASM lowlevel exception / interrupt - Syscall and CPLB handler code in L1 Memory"
Bryan Wu1394f032007-05-06 14:50:22 -0700731 default y
732 help
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200733 If enabled, the entire ASM lowlevel exception and interrupt entry code
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800734 (STORE/RESTORE CONTEXT) is linked into L1 instruction memory.
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200735 (less latency)
Bryan Wu1394f032007-05-06 14:50:22 -0700736
737config DO_IRQ_L1
738 bool "Locate frequently called do_irq dispatcher function in L1 Memory"
739 default y
740 help
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200741 If enabled, the frequently called do_irq dispatcher function is linked
742 into L1 instruction memory. (less latency)
Bryan Wu1394f032007-05-06 14:50:22 -0700743
744config CORE_TIMER_IRQ_L1
745 bool "Locate frequently called timer_interrupt() function in L1 Memory"
746 default y
747 help
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200748 If enabled, the frequently called timer_interrupt() function is linked
749 into L1 instruction memory. (less latency)
Bryan Wu1394f032007-05-06 14:50:22 -0700750
751config IDLE_L1
752 bool "Locate frequently idle function in L1 Memory"
753 default y
754 help
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200755 If enabled, the frequently called idle function is linked
756 into L1 instruction memory. (less latency)
Bryan Wu1394f032007-05-06 14:50:22 -0700757
758config SCHEDULE_L1
759 bool "Locate kernel schedule function in L1 Memory"
760 default y
761 help
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200762 If enabled, the frequently called kernel schedule is linked
763 into L1 instruction memory. (less latency)
Bryan Wu1394f032007-05-06 14:50:22 -0700764
765config ARITHMETIC_OPS_L1
766 bool "Locate kernel owned arithmetic functions in L1 Memory"
767 default y
768 help
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200769 If enabled, arithmetic functions are linked
770 into L1 instruction memory. (less latency)
Bryan Wu1394f032007-05-06 14:50:22 -0700771
772config ACCESS_OK_L1
773 bool "Locate access_ok function in L1 Memory"
774 default y
775 help
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200776 If enabled, the access_ok function is linked
777 into L1 instruction memory. (less latency)
Bryan Wu1394f032007-05-06 14:50:22 -0700778
779config MEMSET_L1
780 bool "Locate memset function in L1 Memory"
781 default y
782 help
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200783 If enabled, the memset function is linked
784 into L1 instruction memory. (less latency)
Bryan Wu1394f032007-05-06 14:50:22 -0700785
786config MEMCPY_L1
787 bool "Locate memcpy function in L1 Memory"
788 default y
789 help
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200790 If enabled, the memcpy function is linked
791 into L1 instruction memory. (less latency)
Bryan Wu1394f032007-05-06 14:50:22 -0700792
793config SYS_BFIN_SPINLOCK_L1
794 bool "Locate sys_bfin_spinlock function in L1 Memory"
795 default y
796 help
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200797 If enabled, sys_bfin_spinlock function is linked
798 into L1 instruction memory. (less latency)
Bryan Wu1394f032007-05-06 14:50:22 -0700799
800config IP_CHECKSUM_L1
801 bool "Locate IP Checksum function in L1 Memory"
802 default n
803 help
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200804 If enabled, the IP Checksum function is linked
805 into L1 instruction memory. (less latency)
Bryan Wu1394f032007-05-06 14:50:22 -0700806
807config CACHELINE_ALIGNED_L1
808 bool "Locate cacheline_aligned data to L1 Data Memory"
Michael Hennerich157cc5a2007-07-12 16:20:21 +0800809 default y if !BF54x
810 default n if BF54x
Bryan Wu1394f032007-05-06 14:50:22 -0700811 depends on !BF531
812 help
Matt LaPlante692105b2009-01-26 11:12:25 +0100813 If enabled, cacheline_aligned data is linked
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200814 into L1 data memory. (less latency)
Bryan Wu1394f032007-05-06 14:50:22 -0700815
816config SYSCALL_TAB_L1
817 bool "Locate Syscall Table L1 Data Memory"
818 default n
819 depends on !BF531
820 help
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200821 If enabled, the Syscall LUT is linked
822 into L1 data memory. (less latency)
Bryan Wu1394f032007-05-06 14:50:22 -0700823
824config CPLB_SWITCH_TAB_L1
825 bool "Locate CPLB Switch Tables L1 Data Memory"
826 default n
827 depends on !BF531
828 help
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200829 If enabled, the CPLB Switch Tables are linked
830 into L1 data memory. (less latency)
Bryan Wu1394f032007-05-06 14:50:22 -0700831
Graf Yangca87b7a2008-10-08 17:30:01 +0800832config APP_STACK_L1
833 bool "Support locating application stack in L1 Scratch Memory"
834 default y
835 help
836 If enabled the application stack can be located in L1
837 scratch memory (less latency).
838
839 Currently only works with FLAT binaries.
840
Mike Frysinger6ad2b842008-10-28 11:03:09 +0800841config EXCEPTION_L1_SCRATCH
842 bool "Locate exception stack in L1 Scratch Memory"
843 default n
Graf Yangf82e0a02009-04-08 08:30:22 +0000844 depends on !APP_STACK_L1
Mike Frysinger6ad2b842008-10-28 11:03:09 +0800845 help
846 Whenever an exception occurs, use the L1 Scratch memory for
847 stack storage. You cannot place the stacks of FLAT binaries
848 in L1 when using this option.
849
850 If you don't use L1 Scratch, then you should say Y here.
851
Robin Getz251383c2008-08-14 15:12:55 +0800852comment "Speed Optimizations"
853config BFIN_INS_LOWOVERHEAD
854 bool "ins[bwl] low overhead, higher interrupt latency"
855 default y
856 help
857 Reads on the Blackfin are speculative. In Blackfin terms, this means
858 they can be interrupted at any time (even after they have been issued
859 on to the external bus), and re-issued after the interrupt occurs.
860 For memory - this is not a big deal, since memory does not change if
861 it sees a read.
862
863 If a FIFO is sitting on the end of the read, it will see two reads,
864 when the core only sees one since the FIFO receives both the read
865 which is cancelled (and not delivered to the core) and the one which
866 is re-issued (which is delivered to the core).
867
868 To solve this, interrupts are turned off before reads occur to
869 I/O space. This option controls which the overhead/latency of
870 controlling interrupts during this time
871 "n" turns interrupts off every read
872 (higher overhead, but lower interrupt latency)
873 "y" turns interrupts off every loop
874 (low overhead, but longer interrupt latency)
875
876 default behavior is to leave this set to on (type "Y"). If you are experiencing
877 interrupt latency issues, it is safe and OK to turn this off.
878
Bryan Wu1394f032007-05-06 14:50:22 -0700879endmenu
880
Bryan Wu1394f032007-05-06 14:50:22 -0700881choice
882 prompt "Kernel executes from"
883 help
884 Choose the memory type that the kernel will be running in.
885
886config RAMKERNEL
887 bool "RAM"
888 help
889 The kernel will be resident in RAM when running.
890
891config ROMKERNEL
892 bool "ROM"
893 help
894 The kernel will be resident in FLASH/ROM when running.
895
896endchoice
897
898source "mm/Kconfig"
899
Mike Frysinger780431e2007-10-21 23:37:54 +0800900config BFIN_GPTIMERS
901 tristate "Enable Blackfin General Purpose Timers API"
902 default n
903 help
904 Enable support for the General Purpose Timers API. If you
905 are unsure, say N.
906
907 To compile this driver as a module, choose M here: the module
Pavel Machek4737f092009-06-05 00:44:53 +0200908 will be called gptimers.
Mike Frysinger780431e2007-10-21 23:37:54 +0800909
Bryan Wu1394f032007-05-06 14:50:22 -0700910choice
Mike Frysingerd292b002008-10-28 11:15:36 +0800911 prompt "Uncached DMA region"
Bryan Wu1394f032007-05-06 14:50:22 -0700912 default DMA_UNCACHED_1M
Cliff Cai86ad7932008-05-17 16:36:52 +0800913config DMA_UNCACHED_4M
914 bool "Enable 4M DMA region"
Bryan Wu1394f032007-05-06 14:50:22 -0700915config DMA_UNCACHED_2M
916 bool "Enable 2M DMA region"
917config DMA_UNCACHED_1M
918 bool "Enable 1M DMA region"
Barry Songc45c0652009-12-02 09:13:36 +0000919config DMA_UNCACHED_512K
920 bool "Enable 512K DMA region"
921config DMA_UNCACHED_256K
922 bool "Enable 256K DMA region"
923config DMA_UNCACHED_128K
924 bool "Enable 128K DMA region"
Bryan Wu1394f032007-05-06 14:50:22 -0700925config DMA_UNCACHED_NONE
926 bool "Disable DMA region"
927endchoice
928
929
930comment "Cache Support"
Jie Zhang41ba6532009-06-16 09:48:33 +0000931
Robin Getz3bebca22007-10-10 23:55:26 +0800932config BFIN_ICACHE
Bryan Wu1394f032007-05-06 14:50:22 -0700933 bool "Enable ICACHE"
Jie Zhang41ba6532009-06-16 09:48:33 +0000934 default y
Jie Zhang41ba6532009-06-16 09:48:33 +0000935config BFIN_EXTMEM_ICACHEABLE
936 bool "Enable ICACHE for external memory"
937 depends on BFIN_ICACHE
938 default y
939config BFIN_L2_ICACHEABLE
940 bool "Enable ICACHE for L2 SRAM"
941 depends on BFIN_ICACHE
942 depends on BF54x || BF561
943 default n
944
Robin Getz3bebca22007-10-10 23:55:26 +0800945config BFIN_DCACHE
Bryan Wu1394f032007-05-06 14:50:22 -0700946 bool "Enable DCACHE"
Jie Zhang41ba6532009-06-16 09:48:33 +0000947 default y
Robin Getz3bebca22007-10-10 23:55:26 +0800948config BFIN_DCACHE_BANKA
Bryan Wu1394f032007-05-06 14:50:22 -0700949 bool "Enable only 16k BankA DCACHE - BankB is SRAM"
Robin Getz3bebca22007-10-10 23:55:26 +0800950 depends on BFIN_DCACHE && !BF531
Bryan Wu1394f032007-05-06 14:50:22 -0700951 default n
Jie Zhang41ba6532009-06-16 09:48:33 +0000952config BFIN_EXTMEM_DCACHEABLE
953 bool "Enable DCACHE for external memory"
Robin Getz3bebca22007-10-10 23:55:26 +0800954 depends on BFIN_DCACHE
Jie Zhang41ba6532009-06-16 09:48:33 +0000955 default y
Graf Yang5ba76672009-05-07 04:09:15 +0000956choice
Jie Zhang41ba6532009-06-16 09:48:33 +0000957 prompt "External memory DCACHE policy"
958 depends on BFIN_EXTMEM_DCACHEABLE
959 default BFIN_EXTMEM_WRITEBACK if !SMP
960 default BFIN_EXTMEM_WRITETHROUGH if SMP
961config BFIN_EXTMEM_WRITEBACK
Graf Yang5ba76672009-05-07 04:09:15 +0000962 bool "Write back"
963 depends on !SMP
Jie Zhang41ba6532009-06-16 09:48:33 +0000964 help
965 Write Back Policy:
966 Cached data will be written back to SDRAM only when needed.
967 This can give a nice increase in performance, but beware of
968 broken drivers that do not properly invalidate/flush their
969 cache.
Graf Yang5ba76672009-05-07 04:09:15 +0000970
Jie Zhang41ba6532009-06-16 09:48:33 +0000971 Write Through Policy:
972 Cached data will always be written back to SDRAM when the
973 cache is updated. This is a completely safe setting, but
974 performance is worse than Write Back.
975
976 If you are unsure of the options and you want to be safe,
977 then go with Write Through.
978
979config BFIN_EXTMEM_WRITETHROUGH
Graf Yang5ba76672009-05-07 04:09:15 +0000980 bool "Write through"
Jie Zhang41ba6532009-06-16 09:48:33 +0000981 help
982 Write Back Policy:
983 Cached data will be written back to SDRAM only when needed.
984 This can give a nice increase in performance, but beware of
985 broken drivers that do not properly invalidate/flush their
986 cache.
Graf Yang5ba76672009-05-07 04:09:15 +0000987
Jie Zhang41ba6532009-06-16 09:48:33 +0000988 Write Through Policy:
989 Cached data will always be written back to SDRAM when the
990 cache is updated. This is a completely safe setting, but
991 performance is worse than Write Back.
992
993 If you are unsure of the options and you want to be safe,
994 then go with Write Through.
Graf Yang5ba76672009-05-07 04:09:15 +0000995
996endchoice
Sonic Zhangf099f392008-10-09 14:11:57 +0800997
Jie Zhang41ba6532009-06-16 09:48:33 +0000998config BFIN_L2_DCACHEABLE
999 bool "Enable DCACHE for L2 SRAM"
1000 depends on BFIN_DCACHE
Sonic Zhang9c954f82009-06-30 09:48:03 +00001001 depends on (BF54x || BF561) && !SMP
Jie Zhang41ba6532009-06-16 09:48:33 +00001002 default n
1003choice
1004 prompt "L2 SRAM DCACHE policy"
1005 depends on BFIN_L2_DCACHEABLE
1006 default BFIN_L2_WRITEBACK
1007config BFIN_L2_WRITEBACK
1008 bool "Write back"
Jie Zhang41ba6532009-06-16 09:48:33 +00001009
1010config BFIN_L2_WRITETHROUGH
1011 bool "Write through"
Jie Zhang41ba6532009-06-16 09:48:33 +00001012endchoice
1013
1014
1015comment "Memory Protection Unit"
Bernd Schmidtb97b8a92008-01-27 18:39:16 +08001016config MPU
1017 bool "Enable the memory protection unit (EXPERIMENTAL)"
1018 default n
1019 help
1020 Use the processor's MPU to protect applications from accessing
1021 memory they do not own. This comes at a performance penalty
1022 and is recommended only for debugging.
1023
Matt LaPlante692105b2009-01-26 11:12:25 +01001024comment "Asynchronous Memory Configuration"
Bryan Wu1394f032007-05-06 14:50:22 -07001025
Mike Frysingerddf416b2007-10-10 18:06:47 +08001026menu "EBIU_AMGCTL Global Control"
Bryan Wu1394f032007-05-06 14:50:22 -07001027config C_AMCKEN
1028 bool "Enable CLKOUT"
1029 default y
1030
1031config C_CDPRIO
1032 bool "DMA has priority over core for ext. accesses"
1033 default n
1034
1035config C_B0PEN
1036 depends on BF561
1037 bool "Bank 0 16 bit packing enable"
1038 default y
1039
1040config C_B1PEN
1041 depends on BF561
1042 bool "Bank 1 16 bit packing enable"
1043 default y
1044
1045config C_B2PEN
1046 depends on BF561
1047 bool "Bank 2 16 bit packing enable"
1048 default y
1049
1050config C_B3PEN
1051 depends on BF561
1052 bool "Bank 3 16 bit packing enable"
1053 default n
1054
1055choice
Matt LaPlante692105b2009-01-26 11:12:25 +01001056 prompt "Enable Asynchronous Memory Banks"
Bryan Wu1394f032007-05-06 14:50:22 -07001057 default C_AMBEN_ALL
1058
1059config C_AMBEN
1060 bool "Disable All Banks"
1061
1062config C_AMBEN_B0
1063 bool "Enable Bank 0"
1064
1065config C_AMBEN_B0_B1
1066 bool "Enable Bank 0 & 1"
1067
1068config C_AMBEN_B0_B1_B2
1069 bool "Enable Bank 0 & 1 & 2"
1070
1071config C_AMBEN_ALL
1072 bool "Enable All Banks"
1073endchoice
1074endmenu
1075
1076menu "EBIU_AMBCTL Control"
1077config BANK_0
Mike Frysingerc8342f82009-03-31 00:18:35 +00001078 hex "Bank 0 (AMBCTL0.L)"
Bryan Wu1394f032007-05-06 14:50:22 -07001079 default 0x7BB0
Mike Frysingerc8342f82009-03-31 00:18:35 +00001080 help
1081 These are the low 16 bits of the EBIU_AMBCTL0 MMR which are
1082 used to control the Asynchronous Memory Bank 0 settings.
Bryan Wu1394f032007-05-06 14:50:22 -07001083
1084config BANK_1
Mike Frysingerc8342f82009-03-31 00:18:35 +00001085 hex "Bank 1 (AMBCTL0.H)"
Bryan Wu1394f032007-05-06 14:50:22 -07001086 default 0x7BB0
Michael Hennerich197fba52008-05-07 17:03:27 +08001087 default 0x5558 if BF54x
Mike Frysingerc8342f82009-03-31 00:18:35 +00001088 help
1089 These are the high 16 bits of the EBIU_AMBCTL0 MMR which are
1090 used to control the Asynchronous Memory Bank 1 settings.
Bryan Wu1394f032007-05-06 14:50:22 -07001091
1092config BANK_2
Mike Frysingerc8342f82009-03-31 00:18:35 +00001093 hex "Bank 2 (AMBCTL1.L)"
Bryan Wu1394f032007-05-06 14:50:22 -07001094 default 0x7BB0
Mike Frysingerc8342f82009-03-31 00:18:35 +00001095 help
1096 These are the low 16 bits of the EBIU_AMBCTL1 MMR which are
1097 used to control the Asynchronous Memory Bank 2 settings.
Bryan Wu1394f032007-05-06 14:50:22 -07001098
1099config BANK_3
Mike Frysingerc8342f82009-03-31 00:18:35 +00001100 hex "Bank 3 (AMBCTL1.H)"
Bryan Wu1394f032007-05-06 14:50:22 -07001101 default 0x99B3
Mike Frysingerc8342f82009-03-31 00:18:35 +00001102 help
1103 These are the high 16 bits of the EBIU_AMBCTL1 MMR which are
1104 used to control the Asynchronous Memory Bank 3 settings.
1105
Bryan Wu1394f032007-05-06 14:50:22 -07001106endmenu
1107
Sonic Zhange40540b2007-11-21 23:49:52 +08001108config EBIU_MBSCTLVAL
1109 hex "EBIU Bank Select Control Register"
1110 depends on BF54x
1111 default 0
1112
1113config EBIU_MODEVAL
1114 hex "Flash Memory Mode Control Register"
1115 depends on BF54x
1116 default 1
1117
1118config EBIU_FCTLVAL
1119 hex "Flash Memory Bank Control Register"
1120 depends on BF54x
1121 default 6
Bryan Wu1394f032007-05-06 14:50:22 -07001122endmenu
1123
1124#############################################################################
1125menu "Bus options (PCI, PCMCIA, EISA, MCA, ISA)"
1126
1127config PCI
1128 bool "PCI support"
Adrian Bunka95ca3b2008-08-27 10:55:05 +08001129 depends on BROKEN
Bryan Wu1394f032007-05-06 14:50:22 -07001130 help
1131 Support for PCI bus.
1132
1133source "drivers/pci/Kconfig"
1134
Bryan Wu1394f032007-05-06 14:50:22 -07001135source "drivers/pcmcia/Kconfig"
1136
1137source "drivers/pci/hotplug/Kconfig"
1138
1139endmenu
1140
1141menu "Executable file formats"
1142
1143source "fs/Kconfig.binfmt"
1144
1145endmenu
1146
1147menu "Power management options"
Graf Yangad461632009-08-07 03:52:54 +00001148
Bryan Wu1394f032007-05-06 14:50:22 -07001149source "kernel/power/Kconfig"
1150
Johannes Bergf4cb5702007-12-08 02:14:00 +01001151config ARCH_SUSPEND_POSSIBLE
1152 def_bool y
Johannes Bergf4cb5702007-12-08 02:14:00 +01001153
Bryan Wu1394f032007-05-06 14:50:22 -07001154choice
Michael Hennerich1efc80b2008-07-19 16:57:32 +08001155 prompt "Standby Power Saving Mode"
Bryan Wu1394f032007-05-06 14:50:22 -07001156 depends on PM
Michael Hennerichcfefe3c2008-02-09 04:12:37 +08001157 default PM_BFIN_SLEEP_DEEPER
1158config PM_BFIN_SLEEP_DEEPER
1159 bool "Sleep Deeper"
Bryan Wu1394f032007-05-06 14:50:22 -07001160 help
Michael Hennerichcfefe3c2008-02-09 04:12:37 +08001161 Sleep "Deeper" Mode (High Power Savings) - This mode reduces dynamic
1162 power dissipation by disabling the clock to the processor core (CCLK).
1163 Furthermore, Standby sets the internal power supply voltage (VDDINT)
1164 to 0.85 V to provide the greatest power savings, while preserving the
1165 processor state.
1166 The PLL and system clock (SCLK) continue to operate at a very low
1167 frequency of about 3.3 MHz. To preserve data integrity in the SDRAM,
1168 the SDRAM is put into Self Refresh Mode. Typically an external event
1169 such as GPIO interrupt or RTC activity wakes up the processor.
1170 Various Peripherals such as UART, SPORT, PPI may not function as
1171 normal during Sleep Deeper, due to the reduced SCLK frequency.
1172 When in the sleep mode, system DMA access to L1 memory is not supported.
Bryan Wu1394f032007-05-06 14:50:22 -07001173
Michael Hennerich1efc80b2008-07-19 16:57:32 +08001174 If unsure, select "Sleep Deeper".
1175
Michael Hennerichcfefe3c2008-02-09 04:12:37 +08001176config PM_BFIN_SLEEP
1177 bool "Sleep"
1178 help
1179 Sleep Mode (High Power Savings) - The sleep mode reduces power
1180 dissipation by disabling the clock to the processor core (CCLK).
1181 The PLL and system clock (SCLK), however, continue to operate in
1182 this mode. Typically an external event or RTC activity will wake
Michael Hennerich1efc80b2008-07-19 16:57:32 +08001183 up the processor. When in the sleep mode, system DMA access to L1
1184 memory is not supported.
1185
1186 If unsure, select "Sleep Deeper".
Bryan Wu1394f032007-05-06 14:50:22 -07001187endchoice
1188
Michael Hennerichcfefe3c2008-02-09 04:12:37 +08001189config PM_WAKEUP_BY_GPIO
Michael Hennerich1efc80b2008-07-19 16:57:32 +08001190 bool "Allow Wakeup from Standby by GPIO"
Michael Hennerichff19fed2009-03-04 17:35:51 +08001191 depends on PM && !BF54x
Bryan Wu1394f032007-05-06 14:50:22 -07001192
1193config PM_WAKEUP_GPIO_NUMBER
Michael Hennerich1efc80b2008-07-19 16:57:32 +08001194 int "GPIO number"
Bryan Wu1394f032007-05-06 14:50:22 -07001195 range 0 47
1196 depends on PM_WAKEUP_BY_GPIO
Mike Frysingerd1a33362008-11-18 17:48:22 +08001197 default 2
Bryan Wu1394f032007-05-06 14:50:22 -07001198
1199choice
1200 prompt "GPIO Polarity"
1201 depends on PM_WAKEUP_BY_GPIO
1202 default PM_WAKEUP_GPIO_POLAR_H
1203config PM_WAKEUP_GPIO_POLAR_H
1204 bool "Active High"
1205config PM_WAKEUP_GPIO_POLAR_L
1206 bool "Active Low"
1207config PM_WAKEUP_GPIO_POLAR_EDGE_F
1208 bool "Falling EDGE"
1209config PM_WAKEUP_GPIO_POLAR_EDGE_R
1210 bool "Rising EDGE"
1211config PM_WAKEUP_GPIO_POLAR_EDGE_B
1212 bool "Both EDGE"
1213endchoice
1214
Michael Hennerich1efc80b2008-07-19 16:57:32 +08001215comment "Possible Suspend Mem / Hibernate Wake-Up Sources"
1216 depends on PM
1217
Michael Hennerich1efc80b2008-07-19 16:57:32 +08001218config PM_BFIN_WAKE_PH6
1219 bool "Allow Wake-Up from on-chip PHY or PH6 GP"
Bryan Wu2f6f4bc2008-11-18 17:48:21 +08001220 depends on PM && (BF51x || BF52x || BF534 || BF536 || BF537)
Michael Hennerich1efc80b2008-07-19 16:57:32 +08001221 default n
1222 help
1223 Enable PHY and PH6 GP Wake-Up (Voltage Regulator Power-Up)
1224
Michael Hennerich1efc80b2008-07-19 16:57:32 +08001225config PM_BFIN_WAKE_GP
1226 bool "Allow Wake-Up from GPIOs"
1227 depends on PM && BF54x
1228 default n
1229 help
1230 Enable General-Purpose Wake-Up (Voltage Regulator Power-Up)
Michael Hennerich19986282009-03-05 16:45:55 +08001231 (all processors, except ADSP-BF549). This option sets
1232 the general-purpose wake-up enable (GPWE) control bit to enable
1233 wake-up upon detection of an active low signal on the /GPW (PH7) pin.
1234 On ADSP-BF549 this option enables the the same functionality on the
1235 /MRXON pin also PH7.
1236
Bryan Wu1394f032007-05-06 14:50:22 -07001237endmenu
1238
Bryan Wu1394f032007-05-06 14:50:22 -07001239menu "CPU Frequency scaling"
Graf Yangad461632009-08-07 03:52:54 +00001240 depends on !SMP
Bryan Wu1394f032007-05-06 14:50:22 -07001241
1242source "drivers/cpufreq/Kconfig"
1243
Michael Hennerich5ad2ca52008-11-18 17:48:22 +08001244config BFIN_CPU_FREQ
1245 bool
1246 depends on CPU_FREQ
1247 select CPU_FREQ_TABLE
1248 default y
1249
Michael Hennerich14b03202008-05-07 11:41:26 +08001250config CPU_VOLTAGE
1251 bool "CPU Voltage scaling"
Michael Hennerich73feb5c2009-01-07 23:14:39 +08001252 depends on EXPERIMENTAL
Michael Hennerich14b03202008-05-07 11:41:26 +08001253 depends on CPU_FREQ
1254 default n
1255 help
1256 Say Y here if you want CPU voltage scaling according to the CPU frequency.
1257 This option violates the PLL BYPASS recommendation in the Blackfin Processor
Michael Hennerich73feb5c2009-01-07 23:14:39 +08001258 manuals. There is a theoretical risk that during VDDINT transitions
Michael Hennerich14b03202008-05-07 11:41:26 +08001259 the PLL may unlock.
1260
Bryan Wu1394f032007-05-06 14:50:22 -07001261endmenu
1262
Bryan Wu1394f032007-05-06 14:50:22 -07001263source "net/Kconfig"
1264
1265source "drivers/Kconfig"
1266
Mike Frysinger872d0242009-10-06 04:49:07 +00001267source "drivers/firmware/Kconfig"
1268
Bryan Wu1394f032007-05-06 14:50:22 -07001269source "fs/Kconfig"
1270
Mike Frysinger74ce8322007-11-21 23:50:49 +08001271source "arch/blackfin/Kconfig.debug"
Bryan Wu1394f032007-05-06 14:50:22 -07001272
1273source "security/Kconfig"
1274
1275source "crypto/Kconfig"
1276
1277source "lib/Kconfig"