Kconfig 730 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. help
  24. Machine support for Samsung SMDKV210
  25. config MACH_SMDKC110
  26. bool "SMDKC110"
  27. select CPU_S5PV210
  28. select ARCH_SPARSEMEM_ENABLE
  29. help
  30. Machine support for Samsung SMDKC110
  31. S5PC110(MCP) is one of package option of S5PV210
  32. endchoice
  33. endif