Kconfig 972 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. help
  12. Enable S5PC100 CPU support
  13. config S5PC100_SETUP_FB_24BPP
  14. bool
  15. help
  16. Common setup code for S5PC1XX with an 24bpp RGB display helper.
  17. config S5PC100_SETUP_I2C1
  18. bool
  19. help
  20. Common setup code for i2c bus 1.
  21. config S5PC100_SETUP_SDHCI
  22. bool
  23. select S5PC100_SETUP_SDHCI_GPIO
  24. help
  25. Internal helper functions for S5PC100 based SDHCI systems
  26. config S5PC100_SETUP_SDHCI_GPIO
  27. bool
  28. help
  29. Common setup code for SDHCI gpio.
  30. config MACH_SMDKC100
  31. bool "SMDKC100"
  32. select CPU_S5PC100
  33. select S3C_DEV_FB
  34. select S3C_DEV_I2C1
  35. select S3C_DEV_HSMMC
  36. select S3C_DEV_HSMMC1
  37. select S3C_DEV_HSMMC2
  38. select S5PC100_SETUP_FB_24BPP
  39. select S5PC100_SETUP_I2C1
  40. select S5PC100_SETUP_SDHCI
  41. help
  42. Machine support for the Samsung SMDKC100
  43. endif