Kconfig 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. if ARCH_MESON6
  2. config CLKTREE_DEBUG
  3. bool "New clock tree debug support"
  4. default y
  5. help
  6. Create a node /sys/class/meson_clocktree/clkTree to get/set clocks
  7. menu "Meson Timer Setting"
  8. config MESON_TIMERA
  9. bool "Enable EE Domain Timer A"
  10. default y
  11. help
  12. Enable EE Timer A . if enable the timer is 1Mhz
  13. config MESON_TIMERB
  14. bool "Enable EE Domain Timer B"
  15. depends on !SMP || HAVE_ARM_TWD
  16. default n
  17. help
  18. Enable EE Timer B . if enable the timer is 1Mhz
  19. config MESON_TIMERC
  20. bool "Enable EE Domain Timer C"
  21. default n
  22. help
  23. Enable EE Timer C . if enable the timer is 1Mhz
  24. config MESON_TIMERD
  25. bool "Enable EE Domain Timer D"
  26. depends on !SMP || HAVE_ARM_TWD
  27. default n
  28. help
  29. Enable EE Timer D . if enable the timer is 1Mhz
  30. endmenu
  31. choice
  32. prompt "Meson Local timer select"
  33. depends on SMP
  34. default MESON_LOCAL_TIMER
  35. config MESON_LOCAL_TIMER
  36. bool "USE Meson timer "
  37. config MESON_ARM_TWD
  38. bool "USE Meson ARM TWD"
  39. select HAVE_ARM_TWD
  40. endchoice
  41. config CORE_FREQ_TRACK
  42. bool "trace for cpu frequence with kernel timestamp"
  43. default n
  44. help
  45. Create /dev/core_freq to collect cpu frequent change information with kernel timestamp
  46. config MESON6_SMP_HOTPLUG
  47. bool "Hotplug support for test"
  48. depends on SMP
  49. default n
  50. help
  51. Hotplug let cpu1 enter wfi. Wake up it via SGI by cpu0
  52. config MESON_L2CC_OPTIMIZE
  53. bool "Optimize L2 cache"
  54. depends on SMP && CACHE_L2X0
  55. default n
  56. help
  57. enable PL310 double linefill
  58. endif # ARCH_MESON36