Kconfig 1.1 KB

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