Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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 PLAT_S5P
  10. select S5P_EXT_INT
  11. select S3C_PL330_DMA
  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_SDHCI
  27. bool
  28. select S5PC100_SETUP_SDHCI_GPIO
  29. help
  30. Internal helper functions for S5PC100 based SDHCI systems
  31. config S5PC100_SETUP_SDHCI_GPIO
  32. bool
  33. help
  34. Common setup code for SDHCI gpio.
  35. config MACH_SMDKC100
  36. bool "SMDKC100"
  37. select CPU_S5PC100
  38. select SAMSUNG_DEV_ADC
  39. select S3C_DEV_FB
  40. select S3C_DEV_I2C1
  41. select SAMSUNG_DEV_IDE
  42. select S3C_DEV_HSMMC
  43. select S3C_DEV_HSMMC1
  44. select S3C_DEV_HSMMC2
  45. select SAMSUNG_DEV_TS
  46. select S3C_DEV_WDT
  47. select HAVE_S3C2410_WATCHDOG
  48. select S5PC100_SETUP_FB_24BPP
  49. select S5PC100_SETUP_I2C1
  50. select S5PC100_SETUP_IDE
  51. select S5PC100_SETUP_SDHCI
  52. help
  53. Machine support for the Samsung SMDKC100
  54. endif