Kconfig 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. help
  12. Support for the S3C2412 and S3C2413 SoCs from the S3C24XX line
  13. config CPU_S3C2412_ONLY
  14. bool
  15. depends on ARCH_S3C2410 && !CPU_S3C2410 && \
  16. !CPU_S3C2416 && !CPU_S3C2440 && !CPU_S3C2442 && \
  17. !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. select S3C2412_PM_SLEEP
  27. help
  28. Internal config node to apply S3C2412 power management
  29. config S3C2412_PM_SLEEP
  30. bool
  31. help
  32. Internal config node to apply sleep for S3C2412 power management.
  33. Can be selected by another SoCs with similar sleep procedure.
  34. # Note, the S3C2412 IOtiming support is in plat-s3c24xx
  35. config S3C2412_CPUFREQ
  36. bool
  37. depends on CPU_FREQ_S3C24XX && CPU_S3C2412
  38. select S3C2412_IOTIMING
  39. default y
  40. help
  41. CPU Frequency scaling support for S3C2412 and S3C2413 SoC CPUs.
  42. menu "S3C2412 Machines"
  43. config MACH_JIVE
  44. bool "Logitech Jive"
  45. select CPU_S3C2412
  46. select S3C_DEV_USB_HOST
  47. select S3C_DEV_NAND
  48. help
  49. Say Y here if you are using the Logitech Jive.
  50. config MACH_JIVE_SHOW_BOOTLOADER
  51. bool "Allow access to bootloader partitions in MTD (EXPERIMENTAL)"
  52. depends on MACH_JIVE && EXPERIMENTAL
  53. config MACH_SMDK2413
  54. bool "SMDK2413"
  55. select CPU_S3C2412
  56. select MACH_S3C2413
  57. select MACH_SMDK
  58. select S3C_DEV_USB_HOST
  59. select S3C_DEV_NAND
  60. help
  61. Say Y here if you are using an SMDK2413
  62. config MACH_S3C2413
  63. bool
  64. help
  65. Internal node for S3C2413 version of SMDK2413, so that
  66. machine_is_s3c2413() will work when MACH_SMDK2413 is
  67. selected
  68. config MACH_SMDK2412
  69. bool "SMDK2412"
  70. select MACH_SMDK2413
  71. help
  72. Say Y here if you are using an SMDK2412
  73. Note, this shares support with SMDK2413, so will automatically
  74. select MACH_SMDK2413.
  75. config MACH_VSTMS
  76. bool "VMSTMS"
  77. select CPU_S3C2412
  78. select S3C_DEV_USB_HOST
  79. select S3C_DEV_NAND
  80. help
  81. Say Y here if you are using an VSTMS board
  82. endmenu