Kconfig 708 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # arch/arm/mach-s5pv210/Kconfig
  2. #
  3. # Copyright (c) 2010 Samsung Electronics Co., Ltd.
  4. # http://www.samsung.com/
  5. #
  6. # Licensed under GPLv2
  7. # Configuration options for the S5PV210/S5PC110
  8. if ARCH_S5PV210
  9. config CPU_S5PV210
  10. bool
  11. select PLAT_S5P
  12. help
  13. Enable S5PV210 CPU support
  14. choice
  15. prompt "Select machine type"
  16. depends on ARCH_S5PV210
  17. default MACH_SMDKV210
  18. config MACH_SMDKV210
  19. bool "SMDKV210"
  20. select CPU_S5PV210
  21. select ARCH_SPARSEMEM_ENABLE
  22. help
  23. Machine support for Samsung SMDKV210
  24. config MACH_SMDKC110
  25. bool "SMDKC110"
  26. select CPU_S5PV210
  27. select ARCH_SPARSEMEM_ENABLE
  28. help
  29. Machine support for Samsung SMDKC110
  30. S5PC110(MCP) is one of package option of S5PV210
  31. endchoice
  32. endif