Kconfig 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 S3C_PL330_DMA
  11. select S5P_HRT
  12. help
  13. Enable S5P6440 CPU support
  14. config CPU_S5P6450
  15. bool
  16. select S3C_PL330_DMA
  17. select S5P_HRT
  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_PWM
  34. select SAMSUNG_DEV_TS
  35. select S5P64X0_SETUP_I2C1
  36. help
  37. Machine support for the Samsung SMDK6440
  38. config MACH_SMDK6450
  39. bool "SMDK6450"
  40. select CPU_S5P6450
  41. select S3C_DEV_I2C1
  42. select S3C_DEV_RTC
  43. select S3C_DEV_WDT
  44. select S3C64XX_DEV_SPI
  45. select SAMSUNG_DEV_ADC
  46. select SAMSUNG_DEV_PWM
  47. select SAMSUNG_DEV_TS
  48. select S5P64X0_SETUP_I2C1
  49. help
  50. Machine support for the Samsung SMDK6450
  51. endif