MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / arch / arm / Kconfig-nommu
blobccf645c6ddbd009960a847501b29b6ef400cbed0
2 # Kconfig for uClinux(non-paged MM) depend configurations
3 # Hyok S. Choi <hyok.choi@samsung.com>
4
6 config PROCESSOR_ID
7         hex 'Hard processor ID'
8         default 0x00007700
9         depends on !CPU_CP15
10         help
11           Hard set the processor ID to this value. If the processor has no
12           CP15 register then the kernel cannot probe the processor ID, and
13           so hard setting the value is the only option.
15 config SET_MEM_PARAM
16         bool "Set flash/sdram size and base addr"
17         help
18          Say Y to manually set the base addresses and sizes.
19          otherwise, the default values are assigned.
21 config DRAM_BASE
22         hex '(S)DRAM Base Address' if SET_MEM_PARAM
23         default 0x00800000
25 config DRAM_SIZE
26         hex '(S)DRAM SIZE' if SET_MEM_PARAM
27         default 0x00800000
29 config FLASH_MEM_BASE
30         hex 'FLASH Base Address' if SET_MEM_PARAM
31         default 0x00400000
33 config FLASH_SIZE
34         hex 'FLASH Size' if SET_MEM_PARAM
35         default 0x00400000
37 config REMAP_VECTORS_TO_RAM
38         bool 'Install vectors to the begining of RAM' if DRAM_BASE
39         depends on DRAM_BASE
40         help
41           The kernel needs to change the hardware exception vectors.
42           In nommu mode, the hardware exception vectors are normally
43           placed at address 0x00000000. However, this region may be
44           occupied by read-only memory depending on H/W design.
46           If the region contains read-write memory, say 'n' here.
48           If your CPU provides a remap facility which allows the exception
49           vectors to be mapped to writable memory, say 'n' here.
51           Otherwise, say 'y' here.  In this case, the kernel will require
52           external support to redirect the hardware exception vectors to
53           the writable versions located at DRAM_BASE.