]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/devfreq/Kconfig
Merge branch 'akpm' (patches from Andrew)
[mirror_ubuntu-jammy-kernel.git] / drivers / devfreq / Kconfig
CommitLineData
ec8f24b7 1# SPDX-License-Identifier: GPL-2.0-only
a3c98b8b
MH
2menuconfig PM_DEVFREQ
3 bool "Generic Dynamic Voltage and Frequency Scaling (DVFS) support"
83fe27ea 4 select SRCU
b9c69e04 5 select PM_OPP
a3c98b8b 6 help
6c81f905
MH
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.
a3c98b8b 11
6c81f905 12 Each device may have its own governor and policy. Devfreq can
a3c98b8b 13 reevaluate the device state periodically and/or based on the
6c81f905 14 notification to "nb", a notifier block, of devfreq.
a3c98b8b 15
6c81f905 16 Like some CPUs with CPUfreq, a device may have multiple clocks.
a3c98b8b 17 However, because the clock frequencies of a single device are
6c81f905 18 determined by the single device's state, an instance of devfreq
a3c98b8b 19 is attached to a single device and returns a "representative"
6c81f905
MH
20 clock frequency of the device, which is also attached
21 to a device by 1-to-1. The device registering devfreq takes the
6b2aac42 22 responsibility to "interpret" the representative frequency and
a3c98b8b 23 to set its every clock accordingly with the "target" callback
6c81f905
MH
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.
a3c98b8b
MH
30
31if PM_DEVFREQ
32
ce26c5bb
MH
33comment "DEVFREQ Governors"
34
35config DEVFREQ_GOV_SIMPLE_ONDEMAND
eff607fd 36 tristate "Simple Ondemand"
ce26c5bb
MH
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
44config DEVFREQ_GOV_PERFORMANCE
eff607fd 45 tristate "Performance"
ce26c5bb
MH
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
52config DEVFREQ_GOV_POWERSAVE
eff607fd 53 tristate "Powersave"
ce26c5bb
MH
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
60config DEVFREQ_GOV_USERSPACE
eff607fd 61 tristate "Userspace"
ce26c5bb
MH
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.
027b6934 66 Otherwise, the governor does not change the frequency
ce26c5bb
MH
67 given at the initialization.
68
99613311
CC
69config 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
a3c98b8b
MH
77comment "DEVFREQ Drivers"
78
0722249a 79config ARM_EXYNOS_BUS_DEVFREQ
91d7f3f8 80 tristate "ARM Exynos Generic Memory Bus DEVFREQ Driver"
797da559 81 depends on ARCH_EXYNOS || COMPILE_TEST
0722249a 82 select DEVFREQ_GOV_SIMPLE_ONDEMAND
403e0689 83 select DEVFREQ_GOV_PASSIVE
0722249a
CC
84 select DEVFREQ_EVENT_EXYNOS_PPMU
85 select PM_DEVFREQ_EVENT
0722249a
CC
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
5173a975
LC
94config ARM_IMX_BUS_DEVFREQ
95 tristate "i.MX Generic Bus DEVFREQ Driver"
96 depends on ARCH_MXC || COMPILE_TEST
97 select DEVFREQ_GOV_USERSPACE
98 help
99 This adds the generic DEVFREQ driver for i.MX interconnects. It
100 allows adjusting NIC/NOC frequency.
101
5af744eb
LC
102config ARM_IMX8M_DDRC_DEVFREQ
103 tristate "i.MX8M DDRC DEVFREQ Driver"
104 depends on (ARCH_MXC && HAVE_ARM_SMCCC) || \
105 (COMPILE_TEST && HAVE_ARM_SMCCC)
106 select DEVFREQ_GOV_SIMPLE_ONDEMAND
107 select DEVFREQ_GOV_USERSPACE
108 help
109 This adds the DEVFREQ driver for the i.MX8M DDR Controller. It allows
110 adjusting DRAM frequency.
111
6234f380 112config ARM_TEGRA_DEVFREQ
1ac34748
DO
113 tristate "NVIDIA Tegra30/114/124/210 DEVFREQ Driver"
114 depends on ARCH_TEGRA_3x_SOC || ARCH_TEGRA_114_SOC || \
115 ARCH_TEGRA_132_SOC || ARCH_TEGRA_124_SOC || \
35f8dbc7
DO
116 ARCH_TEGRA_210_SOC || \
117 COMPILE_TEST
5fdb0684 118 depends on COMMON_CLK
989a0fc7
JZ
119 help
120 This adds the DEVFREQ driver for the Tegra family of SoCs.
121 It reads ACTMON counters of memory controllers and adjusts the
122 operating frequencies and voltages with OPP support.
6234f380 123
d196175e
DO
124config ARM_TEGRA20_DEVFREQ
125 tristate "NVIDIA Tegra20 DEVFREQ Driver"
126 depends on (TEGRA_MC && TEGRA20_EMC) || COMPILE_TEST
23ca7d25 127 depends on COMMON_CLK
d196175e 128 select DEVFREQ_GOV_SIMPLE_ONDEMAND
d196175e
DO
129 help
130 This adds the DEVFREQ driver for the Tegra20 family of SoCs.
131 It reads Memory Controller counters and adjusts the operating
132 frequencies and voltages with OPP support.
133
5a893e31
LH
134config ARM_RK3399_DMC_DEVFREQ
135 tristate "ARM RK3399 DMC DEVFREQ Driver"
eff5d31f
CC
136 depends on (ARCH_ROCKCHIP && HAVE_ARM_SMCCC) || \
137 (COMPILE_TEST && HAVE_ARM_SMCCC)
5a893e31
LH
138 select DEVFREQ_EVENT_ROCKCHIP_DFI
139 select DEVFREQ_GOV_SIMPLE_ONDEMAND
54dec69b 140 select PM_DEVFREQ_EVENT
5a893e31 141 help
d96c60b4
KK
142 This adds the DEVFREQ driver for the RK3399 DMC(Dynamic Memory Controller).
143 It sets the frequency for the memory controller and reads the usage counts
144 from hardware.
5a893e31 145
f262f28c
CC
146source "drivers/devfreq/event/Kconfig"
147
a3c98b8b 148endif # PM_DEVFREQ