Kconfig 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. # Copyright 2009 Samsung Electronics Co.
  2. # Byungho Min <bhmin@samsung.com>
  3. #
  4. # Licensed under GPLv2
  5. # Configuration options for the S5PC100 CPU
  6. if ARCH_S5PC100
  7. config CPU_S5PC100
  8. bool
  9. select S5P_EXT_INT
  10. select SAMSUNG_DMADEV
  11. select SAMSUNG_HRT
  12. help
  13. Enable S5PC100 CPU support
  14. config S5PC100_SETUP_FB_24BPP
  15. bool
  16. help
  17. Common setup code for S5PC1XX with an 24bpp RGB display helper.
  18. config S5PC100_SETUP_I2C1
  19. bool
  20. help
  21. Common setup code for i2c bus 1.
  22. config S5PC100_SETUP_IDE
  23. bool
  24. help
  25. Common setup code for S5PC100 IDE GPIO configurations
  26. config S5PC100_SETUP_KEYPAD
  27. bool
  28. help
  29. Common setup code for KEYPAD GPIO configurations.
  30. config S5PC100_SETUP_SDHCI
  31. bool
  32. select S5PC100_SETUP_SDHCI_GPIO
  33. help
  34. Internal helper functions for S5PC100 based SDHCI systems
  35. config S5PC100_SETUP_SDHCI_GPIO
  36. bool
  37. help
  38. Common setup code for SDHCI gpio.
  39. config S5PC100_SETUP_SPI
  40. bool
  41. help
  42. Common setup code for SPI GPIO configurations.
  43. config MACH_SMDKC100
  44. bool "SMDKC100"
  45. select CPU_S5PC100
  46. select S3C_DEV_FB
  47. select S3C_DEV_HSMMC
  48. select S3C_DEV_HSMMC1
  49. select S3C_DEV_HSMMC2
  50. select S3C_DEV_I2C1
  51. select S3C_DEV_RTC
  52. select S3C_DEV_WDT
  53. select S5PC100_SETUP_FB_24BPP
  54. select S5PC100_SETUP_I2C1
  55. select S5PC100_SETUP_IDE
  56. select S5PC100_SETUP_KEYPAD
  57. select S5PC100_SETUP_SDHCI
  58. select S5P_DEV_FIMC0
  59. select S5P_DEV_FIMC1
  60. select S5P_DEV_FIMC2
  61. select SAMSUNG_DEV_ADC
  62. select SAMSUNG_DEV_BACKLIGHT
  63. select SAMSUNG_DEV_IDE
  64. select SAMSUNG_DEV_KEYPAD
  65. select SAMSUNG_DEV_PWM
  66. select SAMSUNG_DEV_TS
  67. help
  68. Machine support for the Samsung SMDKC100
  69. endif