# SPDX-License-Identifier: GPL-2.0 # # Kconfig for uClinux(non-paged MM) depend configurations # Hyok S. Choi <hyok.choi@samsung.com> # config [31mCONFIG_SET_MEM_PARAM[0m bool "Set flash/sdram size and base addr" help Say Y to manually set the base addresses and sizes. otherwise, the default values are assigned. config [31mCONFIG_DRAM_BASE[0m hex '(S)DRAM Base Address' if [31mCONFIG_SET_MEM_PARAM[0m default 0x00800000 config [31mCONFIG_DRAM_SIZE[0m hex '(S)DRAM SIZE' if [31mCONFIG_SET_MEM_PARAM[0m default 0x00800000 config [31mCONFIG_FLASH_MEM_BASE[0m hex 'FLASH Base Address' if [31mCONFIG_SET_MEM_PARAM[0m depends on [31mCONFIG_CPU_ARM740T[0m || [31mCONFIG_CPU_ARM946E[0m || [31mCONFIG_CPU_ARM940T[0m default 0x00400000 config [31mCONFIG_FLASH_SIZE[0m hex 'FLASH Size' if [31mCONFIG_SET_MEM_PARAM[0m depends on [31mCONFIG_CPU_ARM740T[0m || [31mCONFIG_CPU_ARM946E[0m || [31mCONFIG_CPU_ARM940T[0m default 0x00400000 config [31mCONFIG_PROCESSOR_ID[0m hex 'Hard wire the processor ID' default 0x00007700 depends on !([31mCONFIG_CPU_CP15[0m || [31mCONFIG_CPU_V7M[0m) help If processor has no CP15 register, this processor ID is used instead of the auto-probing which utilizes the register. config [31mCONFIG_REMAP_VECTORS_TO_RAM[0m bool 'Install vectors to the beginning of RAM' help The kernel needs to change the hardware exception vectors. In nommu mode, the hardware exception vectors are normally placed at address 0x00000000. However, this region may be occupied by read-only memory depending on H/W design. If the region contains read-write memory, say 'n' here. If your CPU provides a remap facility which allows the exception vectors to be mapped to writable memory, say 'n' here. Otherwise, say 'y' here. In this case, the kernel will require external support to redirect the hardware exception vectors to the writable versions located at [31mCONFIG_DRAM_BASE[0m. config [31mCONFIG_ARM_MPU[0m bool 'Use the [31mCONFIG_ARM[0m v7 PMSA Compliant [31mCONFIG_MPU[0m' depends on [31mCONFIG_CPU_V7[0m || [31mCONFIG_CPU_V7M[0m default y if [31mCONFIG_CPU_V7[0m help Some [31mCONFIG_ARM[0m systems without an [31mCONFIG_MMU[0m have instead a Memory Protection Unit ([31mCONFIG_MPU[0m) that defines the type and permissions for regions of memory. If your CPU has an [31mCONFIG_MPU[0m then you should choose 'y' here unless you know that you do not want to use the [31mCONFIG_MPU[0m. |