Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 HAVE_GPIO_LIB
  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 PM_SIMTEC
  21. bool
  22. help
  23. Common power management code for systems that are
  24. compatible with the Simtec style of power management
  25. config S3C2410_DMA
  26. bool "S3C2410 DMA support"
  27. depends on ARCH_S3C2410
  28. help
  29. S3C2410 DMA support. This is needed for drivers like sound which
  30. use the S3C2410's DMA system to move data to and from the
  31. peripheral blocks.
  32. config S3C2410_DMA_DEBUG
  33. bool "S3C2410 DMA support debug"
  34. depends on ARCH_S3C2410 && S3C2410_DMA
  35. help
  36. Enable debugging output for the DMA code. This option sends info
  37. to the kernel log, at priority KERN_DEBUG.
  38. config MACH_SMDK
  39. bool
  40. help
  41. Common machine code for SMDK2410 and SMDK2440
  42. endif