Kconfig 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. config S5PV210_SETUP_I2C1
  16. bool
  17. help
  18. Common setup code for i2c bus 1.
  19. config S5PV210_SETUP_I2C2
  20. bool
  21. help
  22. Common setup code for i2c bus 2.
  23. config S5PV210_SETUP_FB_24BPP
  24. bool
  25. help
  26. Common setup code for S5PV210 with an 24bpp RGB display helper.
  27. config S5PV210_SETUP_SDHCI
  28. bool
  29. select S5PV210_SETUP_SDHCI_GPIO
  30. help
  31. Internal helper functions for S5PV210 based SDHCI systems
  32. config S5PV210_SETUP_SDHCI_GPIO
  33. bool
  34. help
  35. Common setup code for SDHCI gpio.
  36. # machine support
  37. config MACH_AQUILA
  38. bool "Samsung Aquila"
  39. select CPU_S5PV210
  40. select ARCH_SPARSEMEM_ENABLE
  41. select S5PV210_SETUP_FB_24BPP
  42. select S3C_DEV_FB
  43. help
  44. Machine support for the Samsung Aquila target based on S5PC110 SoC
  45. config MACH_GONI
  46. bool "GONI"
  47. select CPU_S5PV210
  48. select ARCH_SPARSEMEM_ENABLE
  49. help
  50. Machine support for Samsung GONI board
  51. S5PC110(MCP) is one of package option of S5PV210
  52. config MACH_SMDKV210
  53. bool "SMDKV210"
  54. select CPU_S5PV210
  55. select ARCH_SPARSEMEM_ENABLE
  56. help
  57. Machine support for Samsung SMDKV210
  58. config MACH_SMDKC110
  59. bool "SMDKC110"
  60. select CPU_S5PV210
  61. select ARCH_SPARSEMEM_ENABLE
  62. help
  63. Machine support for Samsung SMDKC110
  64. S5PC110(MCP) is one of package option of S5PV210
  65. endif