Kconfig 994 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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_SDHCI
  23. bool
  24. select S5PC100_SETUP_SDHCI_GPIO
  25. help
  26. Internal helper functions for S5PC100 based SDHCI systems
  27. config S5PC100_SETUP_SDHCI_GPIO
  28. bool
  29. help
  30. Common setup code for SDHCI gpio.
  31. config MACH_SMDKC100
  32. bool "SMDKC100"
  33. select CPU_S5PC100
  34. select S3C_DEV_FB
  35. select S3C_DEV_I2C1
  36. select S3C_DEV_HSMMC
  37. select S3C_DEV_HSMMC1
  38. select S3C_DEV_HSMMC2
  39. select S5PC100_SETUP_FB_24BPP
  40. select S5PC100_SETUP_I2C1
  41. select S5PC100_SETUP_SDHCI
  42. help
  43. Machine support for the Samsung SMDKC100
  44. endif