Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. 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 Support"
  36. depends on ARCH_LH7A40X
  37. help
  38. Say Y here if your bootloader sets the SROMLL bit(s) in
  39. the SDRAM controller, organizing memory as a contiguous
  40. array. This option will disable CONFIG_DISCONTIGMEM and
  41. force the kernel to manage all memory in one node.
  42. Setting this option incorrectly may prevent the kernel from
  43. booting. It is OK to leave it N.
  44. For more information, consult
  45. <file:Documentation/arm/Sharp-LH/SDRAM>.
  46. config LH7A40X_ONE_BANK_PER_NODE
  47. bool "Optimize NUMA Node Tables for Size"
  48. depends on ARCH_LH7A40X && !LH7A40X_CONTIGMEM
  49. help
  50. Say Y here to produce compact memory node tables. By
  51. default pairs of adjacent physical RAM banks are managed
  52. together in a single node, incurring some wasted overhead
  53. in the node tables, however also maintaining compatibility
  54. with systems where physical memory is truly contiguous.
  55. Setting this option incorrectly may prevent the kernel from
  56. booting. It is OK to leave it N.
  57. For more information, consult
  58. <file:Documentation/arm/Sharp-LH/SDRAM>.
  59. endmenu
  60. endif