Kconfig 2.0 KB

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