123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- if ARCH_MESON6
- config CLKTREE_DEBUG
- bool "New clock tree debug support"
- default y
- help
- Create a node /sys/class/meson_clocktree/clkTree to get/set clocks
- menu "Meson Timer Setting"
- config MESON_TIMERA
- bool "Enable EE Domain Timer A"
- default y
- help
- Enable EE Timer A . if enable the timer is 1Mhz
- config MESON_TIMERB
- bool "Enable EE Domain Timer B"
- depends on !SMP || HAVE_ARM_TWD
- default n
- help
- Enable EE Timer B . if enable the timer is 1Mhz
- config MESON_TIMERC
- bool "Enable EE Domain Timer C"
- default n
- help
- Enable EE Timer C . if enable the timer is 1Mhz
- config MESON_TIMERD
- bool "Enable EE Domain Timer D"
- depends on !SMP || HAVE_ARM_TWD
- default n
- help
- Enable EE Timer D . if enable the timer is 1Mhz
- endmenu
- choice
- prompt "Meson Local timer select"
- depends on SMP
- default MESON_LOCAL_TIMER
- config MESON_LOCAL_TIMER
- bool "USE Meson timer "
- config MESON_ARM_TWD
- bool "USE Meson ARM TWD"
- select HAVE_ARM_TWD
- endchoice
- config CORE_FREQ_TRACK
- bool "trace for cpu frequence with kernel timestamp"
- default n
- help
- Create /dev/core_freq to collect cpu frequent change information with kernel timestamp
- config MESON6_SMP_HOTPLUG
- bool "Hotplug support for test"
- depends on SMP
- default n
- help
- Hotplug let cpu1 enter wfi. Wake up it via SGI by cpu0
- config MESON_L2CC_OPTIMIZE
- bool "Optimize L2 cache"
- depends on SMP && CACHE_L2X0
- default n
- help
- enable PL310 double linefill
-
- endif # ARCH_MESON36
|