Kconfig 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. if ARCH_LH7A40X
  2. menu "LH7A40X Implementations"
  3. config MACH_KEV7A400
  4. bool "KEV7A400"
  5. select ARCH_LH7A400
  6. help
  7. Say Y here if you are using the Sharp KEV7A400 development
  8. board. This hardware is discontinued, so I'd be very
  9. suprised if you wanted this option.
  10. config MACH_LPD7A400
  11. bool "LPD7A400 Card Engine"
  12. select ARCH_LH7A400
  13. # select IDE_POLL
  14. help
  15. Say Y here if you are using Logic Product Development's
  16. LPD7A400 CardEngine. For the time being, the LPD7A400 and
  17. LPD7A404 options are mutually exclusive.
  18. config MACH_LPD7A404
  19. bool "LPD7A404 Card Engine"
  20. select ARCH_LH7A404
  21. # select IDE_POLL
  22. help
  23. Say Y here if you are using Logic Product Development's
  24. LPD7A404 CardEngine. For the time being, the LPD7A400 and
  25. LPD7A404 options are mutually exclusive.
  26. config ARCH_LH7A400
  27. bool
  28. config ARCH_LH7A404
  29. bool
  30. config LH7A40X_CONTIGMEM
  31. bool "Disable NUMA Support"
  32. depends on ARCH_LH7A40X
  33. help
  34. Say Y here if your bootloader sets the SROMLL bit(s) in
  35. the SDRAM controller, organizing memory as a contiguous
  36. array. This option will disable CONFIG_DISCONTIGMEM and
  37. force the kernel to manage all memory in one node.
  38. Setting this option incorrectly may prevent the kernel from
  39. booting. It is OK to leave it N.
  40. For more information, consult
  41. <file:Documentation/arm/Sharp-LH/SDRAM>.
  42. config LH7A40X_ONE_BANK_PER_NODE
  43. bool "Optimize NUMA Node Tables for Size"
  44. depends on ARCH_LH7A40X && !LH7A40X_CONTIGMEM
  45. help
  46. Say Y here to produce compact memory node tables. By
  47. default pairs of adjacent physical RAM banks are managed
  48. together in a single node, incurring some wasted overhead
  49. in the node tables, however also maintaining compatibility
  50. with systems where physical memory is truly contiguous.
  51. Setting this option incorrectly may prevent the kernel from
  52. booting. It is OK to leave it N.
  53. For more information, consult
  54. <file:Documentation/arm/Sharp-LH/SDRAM>.
  55. endmenu
  56. endif