Kconfig-nommu 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. #
  2. # Kconfig for uClinux(non-paged MM) depend configurations
  3. # Hyok S. Choi <hyok.choi@samsung.com>
  4. #
  5. config SET_MEM_PARAM
  6. bool "Set flash/sdram size and base addr"
  7. help
  8. Say Y to manually set the base addresses and sizes.
  9. otherwise, the default values are assigned.
  10. config DRAM_BASE
  11. hex '(S)DRAM Base Address' if SET_MEM_PARAM
  12. default 0x00800000
  13. config DRAM_SIZE
  14. hex '(S)DRAM SIZE' if SET_MEM_PARAM
  15. default 0x00800000
  16. config FLASH_MEM_BASE
  17. hex 'FLASH Base Address' if SET_MEM_PARAM
  18. default 0x00400000
  19. config FLASH_SIZE
  20. hex 'FLASH Size' if SET_MEM_PARAM
  21. default 0x00400000
  22. config PROCESSOR_ID
  23. hex 'Hard wire the processor ID'
  24. default 0x00007700
  25. depends on !(CPU_CP15 || CPU_V7M)
  26. help
  27. If processor has no CP15 register, this processor ID is
  28. used instead of the auto-probing which utilizes the register.
  29. config REMAP_VECTORS_TO_RAM
  30. bool 'Install vectors to the beginning of RAM'
  31. help
  32. The kernel needs to change the hardware exception vectors.
  33. In nommu mode, the hardware exception vectors are normally
  34. placed at address 0x00000000. However, this region may be
  35. occupied by read-only memory depending on H/W design.
  36. If the region contains read-write memory, say 'n' here.
  37. If your CPU provides a remap facility which allows the exception
  38. vectors to be mapped to writable memory, say 'n' here.
  39. Otherwise, say 'y' here. In this case, the kernel will require
  40. external support to redirect the hardware exception vectors to
  41. the writable versions located at DRAM_BASE.
  42. config ARM_MPU
  43. bool 'Use the ARM v7 PMSA Compliant MPU'
  44. depends on CPU_V7
  45. default y
  46. help
  47. Some ARM systems without an MMU have instead a Memory Protection
  48. Unit (MPU) that defines the type and permissions for regions of
  49. memory.
  50. If your CPU has an MPU then you should choose 'y' here unless you
  51. know that you do not want to use the MPU.