Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. # arch/arm/plat-samsung/Kconfig
  2. #
  3. # Copyright 2009 Simtec Electronics
  4. #
  5. # Licensed under GPLv2
  6. config PLAT_SAMSUNG
  7. bool
  8. depends on ARCH_S3C2410 || ARCH_S3C24A0 || ARCH_S3C64XX || ARCH_S5PC1XX
  9. default y
  10. help
  11. Base platform code for all Samsung SoC based systems
  12. if PLAT_SAMSUNG
  13. config SAMSUNG_CLKSRC
  14. bool
  15. help
  16. Select the clock code for the clksrc implementation
  17. used by newer systems such as the S3C64XX.
  18. # options for IRQ support
  19. config SAMSUNG_IRQ_VIC_TIMER
  20. bool
  21. help
  22. Internal configuration to build the VIC timer interrupt code.
  23. # options for gpio configuration support
  24. config S3C_GPIO_CFG_S3C24XX
  25. bool
  26. help
  27. Internal configuration to enable S3C24XX style GPIO configuration
  28. functions.
  29. config S3C_GPIO_CFG_S3C64XX
  30. bool
  31. help
  32. Internal configuration to enable S3C64XX style GPIO configuration
  33. functions.
  34. config S5P_GPIO_CFG_S5PC1XX
  35. bool
  36. help
  37. Internal configuration to enable S5PC1XX style GPIO configuration
  38. functions.
  39. config S3C_GPIO_PULL_UPDOWN
  40. bool
  41. help
  42. Internal configuration to enable the correct GPIO pull helper
  43. config S3C_GPIO_PULL_DOWN
  44. bool
  45. help
  46. Internal configuration to enable the correct GPIO pull helper
  47. config S3C_GPIO_PULL_UP
  48. bool
  49. help
  50. Internal configuration to enable the correct GPIO pull helper
  51. # device definitions to compile in
  52. config S3C_DEV_HSMMC
  53. bool
  54. help
  55. Compile in platform device definitions for HSMMC code
  56. config S3C_DEV_HSMMC1
  57. bool
  58. help
  59. Compile in platform device definitions for HSMMC channel 1
  60. config S3C_DEV_HSMMC2
  61. bool
  62. help
  63. Compile in platform device definitions for HSMMC channel 2
  64. config S3C_DEV_I2C1
  65. bool
  66. help
  67. Compile in platform device definitions for I2C channel 1
  68. config S3C_DEV_FB
  69. bool
  70. help
  71. Compile in platform device definition for framebuffer
  72. config S3C_DEV_USB_HOST
  73. bool
  74. help
  75. Compile in platform device definition for USB host.
  76. config S3C_DEV_USB_HSOTG
  77. bool
  78. help
  79. Compile in platform device definition for USB high-speed OtG
  80. config S3C_DEV_NAND
  81. bool
  82. help
  83. Compile in platform device definition for NAND controller
  84. endif