Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 2 | menuconfig PM_DEVFREQ |
| 3 | bool "Generic Dynamic Voltage and Frequency Scaling (DVFS) support" |
Pranith Kumar | 83fe27e | 2014-12-05 11:24:45 -0500 | [diff] [blame] | 4 | select SRCU |
Chanwoo Choi | b9c69e0 | 2017-08-24 10:42:51 +0900 | [diff] [blame] | 5 | select PM_OPP |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 6 | help |
MyungJoo Ham | 6c81f90 | 2011-11-14 23:31:35 +0100 | [diff] [blame] | 7 | A device may have a list of frequencies and voltages available. |
| 8 | devfreq, a generic DVFS framework can be registered for a device |
| 9 | in order to let the governor provided to devfreq choose an |
| 10 | operating frequency based on the device driver's policy. |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 11 | |
MyungJoo Ham | 6c81f90 | 2011-11-14 23:31:35 +0100 | [diff] [blame] | 12 | Each device may have its own governor and policy. Devfreq can |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 13 | reevaluate the device state periodically and/or based on the |
MyungJoo Ham | 6c81f90 | 2011-11-14 23:31:35 +0100 | [diff] [blame] | 14 | notification to "nb", a notifier block, of devfreq. |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 15 | |
MyungJoo Ham | 6c81f90 | 2011-11-14 23:31:35 +0100 | [diff] [blame] | 16 | Like some CPUs with CPUfreq, a device may have multiple clocks. |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 17 | However, because the clock frequencies of a single device are |
MyungJoo Ham | 6c81f90 | 2011-11-14 23:31:35 +0100 | [diff] [blame] | 18 | determined by the single device's state, an instance of devfreq |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 19 | is attached to a single device and returns a "representative" |
MyungJoo Ham | 6c81f90 | 2011-11-14 23:31:35 +0100 | [diff] [blame] | 20 | clock frequency of the device, which is also attached |
| 21 | to a device by 1-to-1. The device registering devfreq takes the |
Masanari Iida | 6b2aac4 | 2012-04-14 00:14:11 +0900 | [diff] [blame] | 22 | responsibility to "interpret" the representative frequency and |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 23 | to set its every clock accordingly with the "target" callback |
MyungJoo Ham | 6c81f90 | 2011-11-14 23:31:35 +0100 | [diff] [blame] | 24 | given to devfreq. |
| 25 | |
| 26 | When OPP is used with the devfreq device, it is recommended to |
| 27 | register devfreq's nb to the OPP's notifier head. If OPP is |
| 28 | used with the devfreq device, you may use OPP helper |
| 29 | functions defined in devfreq.h. |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 30 | |
| 31 | if PM_DEVFREQ |
| 32 | |
MyungJoo Ham | ce26c5b | 2011-10-02 00:19:34 +0200 | [diff] [blame] | 33 | comment "DEVFREQ Governors" |
| 34 | |
| 35 | config DEVFREQ_GOV_SIMPLE_ONDEMAND |
Nishanth Menon | eff607f | 2012-10-29 15:01:46 -0500 | [diff] [blame] | 36 | tristate "Simple Ondemand" |
MyungJoo Ham | ce26c5b | 2011-10-02 00:19:34 +0200 | [diff] [blame] | 37 | help |
| 38 | Chooses frequency based on the recent load on the device. Works |
| 39 | similar as ONDEMAND governor of CPUFREQ does. A device with |
| 40 | Simple-Ondemand should be able to provide busy/total counter |
| 41 | values that imply the usage rate. A device may provide tuned |
| 42 | values to the governor with data field at devfreq_add_device(). |
| 43 | |
| 44 | config DEVFREQ_GOV_PERFORMANCE |
Nishanth Menon | eff607f | 2012-10-29 15:01:46 -0500 | [diff] [blame] | 45 | tristate "Performance" |
MyungJoo Ham | ce26c5b | 2011-10-02 00:19:34 +0200 | [diff] [blame] | 46 | help |
| 47 | Sets the frequency at the maximum available frequency. |
| 48 | This governor always returns UINT_MAX as frequency so that |
| 49 | the DEVFREQ framework returns the highest frequency available |
| 50 | at any time. |
| 51 | |
| 52 | config DEVFREQ_GOV_POWERSAVE |
Nishanth Menon | eff607f | 2012-10-29 15:01:46 -0500 | [diff] [blame] | 53 | tristate "Powersave" |
MyungJoo Ham | ce26c5b | 2011-10-02 00:19:34 +0200 | [diff] [blame] | 54 | help |
| 55 | Sets the frequency at the minimum available frequency. |
| 56 | This governor always returns 0 as frequency so that |
| 57 | the DEVFREQ framework returns the lowest frequency available |
| 58 | at any time. |
| 59 | |
| 60 | config DEVFREQ_GOV_USERSPACE |
Nishanth Menon | eff607f | 2012-10-29 15:01:46 -0500 | [diff] [blame] | 61 | tristate "Userspace" |
MyungJoo Ham | ce26c5b | 2011-10-02 00:19:34 +0200 | [diff] [blame] | 62 | help |
| 63 | Sets the frequency at the user specified one. |
| 64 | This governor returns the user configured frequency if there |
| 65 | has been an input to /sys/devices/.../power/devfreq_set_freq. |
Geert Uytterhoeven | 027b693 | 2016-03-14 16:29:02 +0100 | [diff] [blame] | 66 | Otherwise, the governor does not change the frequency |
MyungJoo Ham | ce26c5b | 2011-10-02 00:19:34 +0200 | [diff] [blame] | 67 | given at the initialization. |
| 68 | |
Chanwoo Choi | 9961331 | 2016-03-22 13:44:03 +0900 | [diff] [blame] | 69 | config DEVFREQ_GOV_PASSIVE |
| 70 | tristate "Passive" |
| 71 | help |
| 72 | Sets the frequency based on the frequency of its parent devfreq |
| 73 | device. This governor does not change the frequency by itself |
| 74 | through sysfs entries. The passive governor recommends that |
| 75 | devfreq device uses the OPP table to get the frequency/voltage. |
| 76 | |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 77 | comment "DEVFREQ Drivers" |
| 78 | |
Chanwoo Choi | 0722249 | 2015-11-03 19:04:16 +0900 | [diff] [blame] | 79 | config ARM_EXYNOS_BUS_DEVFREQ |
Paul Gortmaker | 5b3c316 | 2016-06-26 03:43:49 +0900 | [diff] [blame] | 80 | tristate "ARM EXYNOS Generic Memory Bus DEVFREQ Driver" |
Krzysztof Kozlowski | 797da55 | 2016-08-19 08:36:55 +0200 | [diff] [blame] | 81 | depends on ARCH_EXYNOS || COMPILE_TEST |
Chanwoo Choi | 0722249 | 2015-11-03 19:04:16 +0900 | [diff] [blame] | 82 | select DEVFREQ_GOV_SIMPLE_ONDEMAND |
Chanwoo Choi | 403e068 | 2015-11-05 18:29:27 +0900 | [diff] [blame] | 83 | select DEVFREQ_GOV_PASSIVE |
Chanwoo Choi | 0722249 | 2015-11-03 19:04:16 +0900 | [diff] [blame] | 84 | select DEVFREQ_EVENT_EXYNOS_PPMU |
| 85 | select PM_DEVFREQ_EVENT |
Chanwoo Choi | 0722249 | 2015-11-03 19:04:16 +0900 | [diff] [blame] | 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 | |
Leonard Crestez | 5af744e | 2019-11-22 23:45:03 +0200 | [diff] [blame] | 94 | config ARM_IMX8M_DDRC_DEVFREQ |
| 95 | tristate "i.MX8M DDRC DEVFREQ Driver" |
| 96 | depends on (ARCH_MXC && HAVE_ARM_SMCCC) || \ |
| 97 | (COMPILE_TEST && HAVE_ARM_SMCCC) |
| 98 | select DEVFREQ_GOV_SIMPLE_ONDEMAND |
| 99 | select DEVFREQ_GOV_USERSPACE |
| 100 | help |
| 101 | This adds the DEVFREQ driver for the i.MX8M DDR Controller. It allows |
| 102 | adjusting DRAM frequency. |
| 103 | |
Tomeu Vizoso | 6234f38 | 2014-11-24 13:28:17 +0100 | [diff] [blame] | 104 | config ARM_TEGRA_DEVFREQ |
Dmitry Osipenko | 1ac3474 | 2019-05-02 02:38:12 +0300 | [diff] [blame] | 105 | tristate "NVIDIA Tegra30/114/124/210 DEVFREQ Driver" |
| 106 | depends on ARCH_TEGRA_3x_SOC || ARCH_TEGRA_114_SOC || \ |
| 107 | ARCH_TEGRA_132_SOC || ARCH_TEGRA_124_SOC || \ |
Dmitry Osipenko | 35f8dbc | 2019-05-02 02:38:13 +0300 | [diff] [blame] | 108 | ARCH_TEGRA_210_SOC || \ |
| 109 | COMPILE_TEST |
Arnd Bergmann | 5fdb068 | 2019-12-12 10:56:31 +0900 | [diff] [blame] | 110 | depends on COMMON_CLK |
Jisheng Zhang | 989a0fc | 2016-08-25 20:06:14 +0800 | [diff] [blame] | 111 | help |
| 112 | This adds the DEVFREQ driver for the Tegra family of SoCs. |
| 113 | It reads ACTMON counters of memory controllers and adjusts the |
| 114 | operating frequencies and voltages with OPP support. |
Tomeu Vizoso | 6234f38 | 2014-11-24 13:28:17 +0100 | [diff] [blame] | 115 | |
Dmitry Osipenko | d196175 | 2019-05-02 02:38:15 +0300 | [diff] [blame] | 116 | config ARM_TEGRA20_DEVFREQ |
| 117 | tristate "NVIDIA Tegra20 DEVFREQ Driver" |
| 118 | depends on (TEGRA_MC && TEGRA20_EMC) || COMPILE_TEST |
Arnd Bergmann | 23ca7d2 | 2019-06-28 12:32:20 +0200 | [diff] [blame] | 119 | depends on COMMON_CLK |
Dmitry Osipenko | d196175 | 2019-05-02 02:38:15 +0300 | [diff] [blame] | 120 | select DEVFREQ_GOV_SIMPLE_ONDEMAND |
Dmitry Osipenko | d196175 | 2019-05-02 02:38:15 +0300 | [diff] [blame] | 121 | help |
| 122 | This adds the DEVFREQ driver for the Tegra20 family of SoCs. |
| 123 | It reads Memory Controller counters and adjusts the operating |
| 124 | frequencies and voltages with OPP support. |
| 125 | |
Lin Huang | 5a893e3 | 2016-09-05 13:06:10 +0800 | [diff] [blame] | 126 | config ARM_RK3399_DMC_DEVFREQ |
| 127 | tristate "ARM RK3399 DMC DEVFREQ Driver" |
Chanwoo Choi | eff5d31 | 2019-12-12 11:20:30 +0900 | [diff] [blame^] | 128 | depends on (ARCH_ROCKCHIP && HAVE_ARM_SMCCC) || \ |
| 129 | (COMPILE_TEST && HAVE_ARM_SMCCC) |
Lin Huang | 5a893e3 | 2016-09-05 13:06:10 +0800 | [diff] [blame] | 130 | select DEVFREQ_EVENT_ROCKCHIP_DFI |
| 131 | select DEVFREQ_GOV_SIMPLE_ONDEMAND |
Arnd Bergmann | 54dec69 | 2016-09-15 17:44:58 +0200 | [diff] [blame] | 132 | select PM_DEVFREQ_EVENT |
Lin Huang | 5a893e3 | 2016-09-05 13:06:10 +0800 | [diff] [blame] | 133 | help |
Krzysztof Kozlowski | d96c60b | 2019-11-20 21:42:16 +0800 | [diff] [blame] | 134 | This adds the DEVFREQ driver for the RK3399 DMC(Dynamic Memory Controller). |
| 135 | It sets the frequency for the memory controller and reads the usage counts |
| 136 | from hardware. |
Lin Huang | 5a893e3 | 2016-09-05 13:06:10 +0800 | [diff] [blame] | 137 | |
Chanwoo Choi | f262f28 | 2015-01-26 13:16:27 +0900 | [diff] [blame] | 138 | source "drivers/devfreq/event/Kconfig" |
| 139 | |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 140 | endif # PM_DEVFREQ |