Kconfig 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. # arch/arm/plat-s3c24xx/Kconfig
  2. #
  3. # Copyright 2007 Simtec Electronics
  4. #
  5. # Licensed under GPLv2
  6. config PLAT_S3C24XX
  7. bool
  8. depends on ARCH_S3C2410
  9. default y if ARCH_S3C2410
  10. select NO_IOPORT
  11. select ARCH_REQUIRE_GPIOLIB
  12. help
  13. Base platform code for any Samsung S3C24XX device
  14. if PLAT_S3C24XX
  15. # code that is shared between a number of the s3c24xx implementations
  16. config S3C2410_CLOCK
  17. bool
  18. help
  19. Clock code for the S3C2410, and similar processors which
  20. is currently includes the S3C2410, S3C2440, S3C2442.
  21. config S3C24XX_DCLK
  22. bool
  23. help
  24. Clock code for supporting DCLK/CLKOUT on S3C24XX architectures
  25. config CPU_S3C244X
  26. bool
  27. depends on ARCH_S3C2410 && (CPU_S3C2440 || CPU_S3C2442)
  28. help
  29. Support for S3C2440 and S3C2442 Samsung Mobile CPU based systems.
  30. config S3C24XX_PWM
  31. bool "PWM device support"
  32. select HAVE_PWM
  33. help
  34. Support for exporting the PWM timer blocks via the pwm device
  35. system.
  36. config PM_SIMTEC
  37. bool
  38. help
  39. Common power management code for systems that are
  40. compatible with the Simtec style of power management
  41. config S3C2410_DMA
  42. bool "S3C2410 DMA support"
  43. depends on ARCH_S3C2410
  44. help
  45. S3C2410 DMA support. This is needed for drivers like sound which
  46. use the S3C2410's DMA system to move data to and from the
  47. peripheral blocks.
  48. config S3C2410_DMA_DEBUG
  49. bool "S3C2410 DMA support debug"
  50. depends on ARCH_S3C2410 && S3C2410_DMA
  51. help
  52. Enable debugging output for the DMA code. This option sends info
  53. to the kernel log, at priority KERN_DEBUG.
  54. config S3C24XX_ADC
  55. bool "ADC common driver support"
  56. help
  57. Core support for the ADC block found in the S3C24XX SoC systems
  58. for drivers such as the touchscreen and hwmon to use to share
  59. this resource.
  60. # SPI default pin configuration code
  61. config S3C24XX_SPI_BUS0_GPE11_GPE12_GPE13
  62. bool
  63. help
  64. SPI GPIO configuration code for BUS0 when connected to
  65. GPE11, GPE12 and GPE13.
  66. config S3C24XX_SPI_BUS1_GPG5_GPG6_GPG7
  67. bool
  68. help
  69. SPI GPIO configuration code for BUS 1 when connected to
  70. GPG5, GPG6 and GPG7.
  71. # common code for s3c24xx based machines, such as the SMDKs.
  72. config MACH_SMDK
  73. bool
  74. help
  75. Common machine code for SMDK2410 and SMDK2440
  76. endif