Kconfig 750 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. select S3C_PL330_DMA
  13. select S5P_EXT_INT
  14. help
  15. Enable S5PV210 CPU support
  16. choice
  17. prompt "Select machine type"
  18. depends on ARCH_S5PV210
  19. default MACH_SMDKV210
  20. config MACH_SMDKV210
  21. bool "SMDKV210"
  22. select CPU_S5PV210
  23. select ARCH_SPARSEMEM_ENABLE
  24. help
  25. Machine support for Samsung SMDKV210
  26. config MACH_SMDKC110
  27. bool "SMDKC110"
  28. select CPU_S5PV210
  29. select ARCH_SPARSEMEM_ENABLE
  30. help
  31. Machine support for Samsung SMDKC110
  32. S5PC110(MCP) is one of package option of S5PV210
  33. endchoice
  34. endif