Kconfig 998 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # arch/arm/mach-s5p64x0/Kconfig
  2. #
  3. # Copyright (c) 2009-2010 Samsung Electronics Co., Ltd.
  4. # http://www.samsung.com/
  5. #
  6. # Licensed under GPLv2
  7. if ARCH_S5P64X0
  8. config CPU_S5P6440
  9. bool
  10. select PLAT_S5P
  11. select S3C_PL330_DMA
  12. help
  13. Enable S5P6440 CPU support
  14. config CPU_S5P6450
  15. bool
  16. select PLAT_S5P
  17. select S3C_PL330_DMA
  18. help
  19. Enable S5P6450 CPU support
  20. config S5P64X0_SETUP_I2C1
  21. bool
  22. help
  23. Common setup code for i2c bus 1.
  24. # machine support
  25. config MACH_SMDK6440
  26. bool "SMDK6440"
  27. select CPU_S5P6440
  28. select S3C_DEV_I2C1
  29. select S3C_DEV_RTC
  30. select S3C_DEV_WDT
  31. select S3C64XX_DEV_SPI
  32. select SAMSUNG_DEV_ADC
  33. select SAMSUNG_DEV_TS
  34. select S5P64X0_SETUP_I2C1
  35. help
  36. Machine support for the Samsung SMDK6440
  37. config MACH_SMDK6450
  38. bool "SMDK6450"
  39. select CPU_S5P6450
  40. select S3C_DEV_I2C1
  41. select S3C_DEV_RTC
  42. select S3C_DEV_WDT
  43. select S3C64XX_DEV_SPI
  44. select SAMSUNG_DEV_ADC
  45. select SAMSUNG_DEV_TS
  46. select S5P64X0_SETUP_I2C1
  47. help
  48. Machine support for the Samsung SMDK6450
  49. endif