Kconfig 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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_2416 && !CPU_S3C2440 && !CPU_S3C2442 && \
  18. !CPU_S3C2443 && CPU_S3C2412
  19. default y if CPU_S3C2412
  20. config S3C2412_DMA
  21. bool
  22. depends on CPU_S3C2412
  23. help
  24. Internal config node for S3C2412 DMA support
  25. config S3C2412_PM
  26. bool
  27. help
  28. Internal config node to apply S3C2412 power management
  29. # Note, the S3C2412 IOtiming support is in plat-s3c24xx
  30. config S3C2412_CPUFREQ
  31. bool
  32. depends on CPU_FREQ_S3C24XX && CPU_S3C2412
  33. select S3C2412_IOTIMING
  34. default y
  35. help
  36. CPU Frequency scaling support for S3C2412 and S3C2413 SoC CPUs.
  37. menu "S3C2412 Machines"
  38. config MACH_JIVE
  39. bool "Logitech Jive"
  40. select CPU_S3C2412
  41. select S3C_DEV_USB_HOST
  42. select S3C_DEV_NAND
  43. help
  44. Say Y here if you are using the Logitech Jive.
  45. config MACH_JIVE_SHOW_BOOTLOADER
  46. bool "Allow access to bootloader partitions in MTD"
  47. depends on MACH_JIVE && EXPERIMENTAL
  48. config MACH_SMDK2413
  49. bool "SMDK2413"
  50. select CPU_S3C2412
  51. select MACH_S3C2413
  52. select MACH_SMDK
  53. select S3C_DEV_USB_HOST
  54. select S3C_DEV_NAND
  55. help
  56. Say Y here if you are using an SMDK2413
  57. config MACH_S3C2413
  58. bool
  59. help
  60. Internal node for S3C2413 version of SMDK2413, so that
  61. machine_is_s3c2413() will work when MACH_SMDK2413 is
  62. selected
  63. config MACH_SMDK2412
  64. bool "SMDK2412"
  65. select MACH_SMDK2413
  66. help
  67. Say Y here if you are using an SMDK2412
  68. Note, this shares support with SMDK2413, so will automatically
  69. select MACH_SMDK2413.
  70. config MACH_VSTMS
  71. bool "VMSTMS"
  72. select CPU_S3C2412
  73. select S3C_DEV_USB_HOST
  74. select S3C_DEV_NAND
  75. help
  76. Say Y here if you are using an VSTMS board
  77. endmenu