Kconfig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. config CPU_S3C244X
  16. bool
  17. depends on ARCH_S3C2410 && (CPU_S3C2440 || CPU_S3C2442)
  18. help
  19. Support for S3C2440 and S3C2442 Samsung Mobile CPU based systems.
  20. config S3C24XX_PWM
  21. bool "PWM device support"
  22. select HAVE_PWM
  23. help
  24. Support for exporting the PWM timer blocks via the pwm device
  25. system.
  26. config PM_SIMTEC
  27. bool
  28. help
  29. Common power management code for systems that are
  30. compatible with the Simtec style of power management
  31. config S3C2410_DMA
  32. bool "S3C2410 DMA support"
  33. depends on ARCH_S3C2410
  34. help
  35. S3C2410 DMA support. This is needed for drivers like sound which
  36. use the S3C2410's DMA system to move data to and from the
  37. peripheral blocks.
  38. config S3C2410_DMA_DEBUG
  39. bool "S3C2410 DMA support debug"
  40. depends on ARCH_S3C2410 && S3C2410_DMA
  41. help
  42. Enable debugging output for the DMA code. This option sends info
  43. to the kernel log, at priority KERN_DEBUG.
  44. config MACH_SMDK
  45. bool
  46. help
  47. Common machine code for SMDK2410 and SMDK2440
  48. endif