Kconfig 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # Copyright 2007 Simtec Electronics
  2. #
  3. # Licensed under GPLv2
  4. config CPU_S3C2412
  5. bool
  6. depends on ARCH_S3C2410
  7. select CPU_ARM926T
  8. select CPU_LLSERIAL_S3C2440
  9. select S3C2412_PM if PM
  10. select S3C2412_DMA if S3C2410_DMA
  11. select S3C2410_GPIO
  12. help
  13. Support for the S3C2412 and S3C2413 SoCs from the S3C24XX line
  14. config CPU_S3C2412_ONLY
  15. bool
  16. depends on ARCH_S3C2410 && !CPU_S3C2400 && !CPU_S3C2410 && \
  17. !CPU_S3C2440 && !CPU_S3C2442 && !CPU_S3C2443 && CPU_S3C2412
  18. default y if CPU_S3C2412
  19. config S3C2412_DMA
  20. bool
  21. depends on CPU_S3C2412
  22. help
  23. Internal config node for S3C2412 DMA support
  24. config S3C2412_PM
  25. bool
  26. help
  27. Internal config node to apply S3C2412 power management
  28. # Note, the S3C2412 IOtiming support is in plat-s3c24xx
  29. config S3C2412_CPUFREQ
  30. bool
  31. depends on CPU_FREQ_S3C24XX && CPU_S3C2412
  32. select S3C2412_IOTIMING
  33. default y
  34. help
  35. CPU Frequency scaling support for S3C2412 and S3C2413 SoC CPUs.
  36. menu "S3C2412 Machines"
  37. config MACH_JIVE
  38. bool "Logitech Jive"
  39. select CPU_S3C2412
  40. select S3C_DEV_USB_HOST
  41. select S3C_DEV_NAND
  42. help
  43. Say Y here if you are using the Logitech Jive.
  44. config MACH_JIVE_SHOW_BOOTLOADER
  45. bool "Allow access to bootloader partitions in MTD"
  46. depends on MACH_JIVE && EXPERIMENTAL
  47. config MACH_SMDK2413
  48. bool "SMDK2413"
  49. select CPU_S3C2412
  50. select MACH_S3C2413
  51. select MACH_SMDK
  52. select S3C_DEV_USB_HOST
  53. select S3C_DEV_NAND
  54. help
  55. Say Y here if you are using an SMDK2413
  56. config MACH_S3C2413
  57. bool
  58. help
  59. Internal node for S3C2413 version of SMDK2413, so that
  60. machine_is_s3c2413() will work when MACH_SMDK2413 is
  61. selected
  62. config MACH_SMDK2412
  63. bool "SMDK2412"
  64. select MACH_SMDK2413
  65. help
  66. Say Y here if you are using an SMDK2412
  67. Note, this shares support with SMDK2413, so will automatically
  68. select MACH_SMDK2413.
  69. config MACH_VSTMS
  70. bool "VMSTMS"
  71. select CPU_S3C2412
  72. select S3C_DEV_USB_HOST
  73. select S3C_DEV_NAND
  74. help
  75. Say Y here if you are using an VSTMS board
  76. endmenu