Kconfig 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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 || ARCH_S3C24A0
  9. default y
  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. # SPI default pin configuration code
  55. config S3C24XX_SPI_BUS0_GPE11_GPE12_GPE13
  56. bool
  57. help
  58. SPI GPIO configuration code for BUS0 when connected to
  59. GPE11, GPE12 and GPE13.
  60. config S3C24XX_SPI_BUS1_GPG5_GPG6_GPG7
  61. bool
  62. help
  63. SPI GPIO configuration code for BUS 1 when connected to
  64. GPG5, GPG6 and GPG7.
  65. # common code for s3c24xx based machines, such as the SMDKs.
  66. config MACH_SMDK
  67. bool
  68. help
  69. Common machine code for SMDK2410 and SMDK2440
  70. endif