Kconfig 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. # gpio configurations
  27. config S3C24XX_GPIO_EXTRA
  28. int
  29. default 128 if S3C24XX_GPIO_EXTRA128
  30. default 64 if S3C24XX_GPIO_EXTRA64
  31. default 0
  32. config S3C24XX_GPIO_EXTRA64
  33. bool
  34. help
  35. Add an extra 64 gpio numbers to the available GPIO pool. This is
  36. available for boards that need extra gpios for external devices.
  37. config S3C24XX_GPIO_EXTRA128
  38. bool
  39. help
  40. Add an extra 128 gpio numbers to the available GPIO pool. This is
  41. available for boards that need extra gpios for external devices.
  42. config PM_SIMTEC
  43. bool
  44. help
  45. Common power management code for systems that are
  46. compatible with the Simtec style of power management
  47. config S3C2410_DMA
  48. bool "S3C2410 DMA support"
  49. depends on ARCH_S3C2410
  50. help
  51. S3C2410 DMA support. This is needed for drivers like sound which
  52. use the S3C2410's DMA system to move data to and from the
  53. peripheral blocks.
  54. config S3C2410_DMA_DEBUG
  55. bool "S3C2410 DMA support debug"
  56. depends on ARCH_S3C2410 && S3C2410_DMA
  57. help
  58. Enable debugging output for the DMA code. This option sends info
  59. to the kernel log, at priority KERN_DEBUG.
  60. config MACH_SMDK
  61. bool
  62. help
  63. Common machine code for SMDK2410 and SMDK2440
  64. endif