1# SPDX-License-Identifier: GPL-2.0-only 2menu "CPU Frequency Drivers" 3 4config AW_CPUFREQ_DT 5 tristate "Generic DT based cpufreq driver" 6 depends on HAVE_CLK && OF 7 select AW_CPUFREQ_DT_PLATDEV 8 select PM_OPP 9 help 10 This adds a generic DT based cpufreq driver for frequency management. 11 It supports both uniprocessor (UP) and symmetric multiprocessor (SMP) 12 systems. 13 14 If in doubt, say N. 15 16config AW_CPUFREQ_DT_PLATDEV 17 tristate 18 help 19 This adds a generic DT based cpufreq platdev driver for frequency 20 management. This creates a 'cpufreq-dt' platform device, on the 21 supported platforms. 22 23 If in doubt, say N. 24 25if ARM || ARM64 26source "$(BSP_TOP)drivers/cpufreq/Kconfig.arm" 27endif 28 29endmenu 30