blob: 6a172d338f6dcc387bfd4644f7d46709a375231a [file] [log] [blame]
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001menuconfig PM_DEVFREQ
2 bool "Generic Dynamic Voltage and Frequency Scaling (DVFS) support"
Pranith Kumar83fe27e2014-12-05 11:24:45 -05003 select SRCU
Chanwoo Choib9c69e02017-08-24 10:42:51 +09004 select PM_OPP
MyungJoo Hama3c98b82011-10-02 00:19:15 +02005 help
MyungJoo Ham6c81f902011-11-14 23:31:35 +01006 A device may have a list of frequencies and voltages available.
7 devfreq, a generic DVFS framework can be registered for a device
8 in order to let the governor provided to devfreq choose an
9 operating frequency based on the device driver's policy.
MyungJoo Hama3c98b82011-10-02 00:19:15 +020010
MyungJoo Ham6c81f902011-11-14 23:31:35 +010011 Each device may have its own governor and policy. Devfreq can
MyungJoo Hama3c98b82011-10-02 00:19:15 +020012 reevaluate the device state periodically and/or based on the
MyungJoo Ham6c81f902011-11-14 23:31:35 +010013 notification to "nb", a notifier block, of devfreq.
MyungJoo Hama3c98b82011-10-02 00:19:15 +020014
MyungJoo Ham6c81f902011-11-14 23:31:35 +010015 Like some CPUs with CPUfreq, a device may have multiple clocks.
MyungJoo Hama3c98b82011-10-02 00:19:15 +020016 However, because the clock frequencies of a single device are
MyungJoo Ham6c81f902011-11-14 23:31:35 +010017 determined by the single device's state, an instance of devfreq
MyungJoo Hama3c98b82011-10-02 00:19:15 +020018 is attached to a single device and returns a "representative"
MyungJoo Ham6c81f902011-11-14 23:31:35 +010019 clock frequency of the device, which is also attached
20 to a device by 1-to-1. The device registering devfreq takes the
Masanari Iida6b2aac42012-04-14 00:14:11 +090021 responsibility to "interpret" the representative frequency and
MyungJoo Hama3c98b82011-10-02 00:19:15 +020022 to set its every clock accordingly with the "target" callback
MyungJoo Ham6c81f902011-11-14 23:31:35 +010023 given to devfreq.
24
25 When OPP is used with the devfreq device, it is recommended to
26 register devfreq's nb to the OPP's notifier head. If OPP is
27 used with the devfreq device, you may use OPP helper
28 functions defined in devfreq.h.
MyungJoo Hama3c98b82011-10-02 00:19:15 +020029
30if PM_DEVFREQ
31
MyungJoo Hamce26c5b2011-10-02 00:19:34 +020032comment "DEVFREQ Governors"
33
34config DEVFREQ_GOV_SIMPLE_ONDEMAND
Nishanth Menoneff607f2012-10-29 15:01:46 -050035 tristate "Simple Ondemand"
MyungJoo Hamce26c5b2011-10-02 00:19:34 +020036 help
37 Chooses frequency based on the recent load on the device. Works
38 similar as ONDEMAND governor of CPUFREQ does. A device with
39 Simple-Ondemand should be able to provide busy/total counter
40 values that imply the usage rate. A device may provide tuned
41 values to the governor with data field at devfreq_add_device().
42
43config DEVFREQ_GOV_PERFORMANCE
Nishanth Menoneff607f2012-10-29 15:01:46 -050044 tristate "Performance"
MyungJoo Hamce26c5b2011-10-02 00:19:34 +020045 help
46 Sets the frequency at the maximum available frequency.
47 This governor always returns UINT_MAX as frequency so that
48 the DEVFREQ framework returns the highest frequency available
49 at any time.
50
51config DEVFREQ_GOV_POWERSAVE
Nishanth Menoneff607f2012-10-29 15:01:46 -050052 tristate "Powersave"
MyungJoo Hamce26c5b2011-10-02 00:19:34 +020053 help
54 Sets the frequency at the minimum available frequency.
55 This governor always returns 0 as frequency so that
56 the DEVFREQ framework returns the lowest frequency available
57 at any time.
58
59config DEVFREQ_GOV_USERSPACE
Nishanth Menoneff607f2012-10-29 15:01:46 -050060 tristate "Userspace"
MyungJoo Hamce26c5b2011-10-02 00:19:34 +020061 help
62 Sets the frequency at the user specified one.
63 This governor returns the user configured frequency if there
64 has been an input to /sys/devices/.../power/devfreq_set_freq.
Geert Uytterhoeven027b6932016-03-14 16:29:02 +010065 Otherwise, the governor does not change the frequency
MyungJoo Hamce26c5b2011-10-02 00:19:34 +020066 given at the initialization.
67
Chanwoo Choi99613312016-03-22 13:44:03 +090068config DEVFREQ_GOV_PASSIVE
69 tristate "Passive"
70 help
71 Sets the frequency based on the frequency of its parent devfreq
72 device. This governor does not change the frequency by itself
73 through sysfs entries. The passive governor recommends that
74 devfreq device uses the OPP table to get the frequency/voltage.
75
MyungJoo Hama3c98b82011-10-02 00:19:15 +020076comment "DEVFREQ Drivers"
77
Chanwoo Choi07222492015-11-03 19:04:16 +090078config ARM_EXYNOS_BUS_DEVFREQ
Paul Gortmaker5b3c3162016-06-26 03:43:49 +090079 tristate "ARM EXYNOS Generic Memory Bus DEVFREQ Driver"
Krzysztof Kozlowski797da552016-08-19 08:36:55 +020080 depends on ARCH_EXYNOS || COMPILE_TEST
Chanwoo Choi07222492015-11-03 19:04:16 +090081 select DEVFREQ_GOV_SIMPLE_ONDEMAND
Chanwoo Choi403e0682015-11-05 18:29:27 +090082 select DEVFREQ_GOV_PASSIVE
Chanwoo Choi07222492015-11-03 19:04:16 +090083 select DEVFREQ_EVENT_EXYNOS_PPMU
84 select PM_DEVFREQ_EVENT
85 select PM_OPP
86 help
87 This adds the common DEVFREQ driver for Exynos Memory bus. Exynos
88 Memory bus has one more group of memory bus (e.g, MIF and INT block).
89 Each memory bus group could contain many memoby bus block. It reads
90 PPMU counters of memory controllers by using DEVFREQ-event device
91 and adjusts the operating frequencies and voltages with OPP support.
92 This does not yet operate with optimal voltages.
93
Tomeu Vizoso6234f382014-11-24 13:28:17 +010094config ARM_TEGRA_DEVFREQ
Jisheng Zhang989a0fc2016-08-25 20:06:14 +080095 tristate "Tegra DEVFREQ Driver"
Stephen Rothwell290128a2016-09-14 14:22:25 +100096 depends on ARCH_TEGRA_124_SOC
Jisheng Zhang989a0fc2016-08-25 20:06:14 +080097 select DEVFREQ_GOV_SIMPLE_ONDEMAND
98 select PM_OPP
99 help
100 This adds the DEVFREQ driver for the Tegra family of SoCs.
101 It reads ACTMON counters of memory controllers and adjusts the
102 operating frequencies and voltages with OPP support.
Tomeu Vizoso6234f382014-11-24 13:28:17 +0100103
Lin Huang5a893e32016-09-05 13:06:10 +0800104config ARM_RK3399_DMC_DEVFREQ
105 tristate "ARM RK3399 DMC DEVFREQ Driver"
106 depends on ARCH_ROCKCHIP
107 select DEVFREQ_EVENT_ROCKCHIP_DFI
108 select DEVFREQ_GOV_SIMPLE_ONDEMAND
Arnd Bergmann54dec692016-09-15 17:44:58 +0200109 select PM_DEVFREQ_EVENT
Lin Huang5a893e32016-09-05 13:06:10 +0800110 select PM_OPP
111 help
112 This adds the DEVFREQ driver for the RK3399 DMC(Dynamic Memory Controller).
113 It sets the frequency for the memory controller and reads the usage counts
114 from hardware.
115
Chanwoo Choif262f282015-01-26 13:16:27 +0900116source "drivers/devfreq/event/Kconfig"
117
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200118endif # PM_DEVFREQ