Linux Audio

Check our new training course

Loading...
Note: File does not exist in v5.4.
 1#
 2# CPU Frequency scaling
 3#
 4
 5config MIPS_EXTERNAL_TIMER
 6	bool
 7
 8config MIPS_CPUFREQ
 9	bool
10	default y
11	depends on CPU_SUPPORTS_CPUFREQ && MIPS_EXTERNAL_TIMER
12
13if MIPS_CPUFREQ
14
15menu "CPU Frequency scaling"
16
17source "drivers/cpufreq/Kconfig"
18
19if CPU_FREQ
20
21comment "CPUFreq processor drivers"
22
23config LOONGSON2_CPUFREQ
24	tristate "Loongson2 CPUFreq Driver"
25	select CPU_FREQ_TABLE
26	depends on MIPS_CPUFREQ
27	help
28	  This option adds a CPUFreq driver for loongson processors which
29	  support software configurable cpu frequency.
30
31	  Loongson2F and it's successors support this feature.
32
33	  For details, take a look at <file:Documentation/cpu-freq/>.
34
35	  If in doubt, say N.
36
37endif	# CPU_FREQ
38
39endmenu
40
41endif	# MIPS_CPUFREQ