Kconfig 830 B

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