Kconfig 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 CPU_S3C244X
  22. bool
  23. depends on ARCH_S3C2410 && (CPU_S3C2440 || CPU_S3C2442)
  24. help
  25. Support for S3C2440 and S3C2442 Samsung Mobile CPU based systems.
  26. config S3C24XX_PWM
  27. bool "PWM device support"
  28. select HAVE_PWM
  29. help
  30. Support for exporting the PWM timer blocks via the pwm device
  31. system.
  32. config PM_SIMTEC
  33. bool
  34. help
  35. Common power management code for systems that are
  36. compatible with the Simtec style of power management
  37. config S3C2410_DMA
  38. bool "S3C2410 DMA support"
  39. depends on ARCH_S3C2410
  40. help
  41. S3C2410 DMA support. This is needed for drivers like sound which
  42. use the S3C2410's DMA system to move data to and from the
  43. peripheral blocks.
  44. config S3C2410_DMA_DEBUG
  45. bool "S3C2410 DMA support debug"
  46. depends on ARCH_S3C2410 && S3C2410_DMA
  47. help
  48. Enable debugging output for the DMA code. This option sends info
  49. to the kernel log, at priority KERN_DEBUG.
  50. # SPI default pin configuration code
  51. config S3C24XX_SPI_BUS0_GPE11_GPE12_GPE13
  52. bool
  53. help
  54. SPI GPIO configuration code for BUS0 when connected to
  55. GPE11, GPE12 and GPE13.
  56. config S3C24XX_SPI_BUS1_GPG5_GPG6_GPG7
  57. bool
  58. help
  59. SPI GPIO configuration code for BUS 1 when connected to
  60. GPG5, GPG6 and GPG7.
  61. # common code for s3c24xx based machines, such as the SMDKs.
  62. config MACH_SMDK
  63. bool
  64. help
  65. Common machine code for SMDK2410 and SMDK2440
  66. endif