brintos

brintos / linux-shallow public Read only

0
0
Text · 5.7 KiB · 3c4862a Raw
156 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2menuconfig PM_DEVFREQ3	bool "Generic Dynamic Voltage and Frequency Scaling (DVFS) support"4	select PM_OPP5	help6	  A device may have a list of frequencies and voltages available.7	  devfreq, a generic DVFS framework can be registered for a device8	  in order to let the governor provided to devfreq choose an9	  operating frequency based on the device driver's policy.10 11	  Each device may have its own governor and policy. Devfreq can12	  reevaluate the device state periodically and/or based on the13	  notification to "nb", a notifier block, of devfreq.14 15	  Like some CPUs with CPUfreq, a device may have multiple clocks.16	  However, because the clock frequencies of a single device are17	  determined by the single device's state, an instance of devfreq18	  is attached to a single device and returns a "representative"19	  clock frequency of the device, which is also attached20	  to a device by 1-to-1. The device registering devfreq takes the21	  responsibility to "interpret" the representative frequency and22	  to set its every clock accordingly with the "target" callback23	  given to devfreq.24 25	  When OPP is used with the devfreq device, it is recommended to26	  register devfreq's nb to the OPP's notifier head.  If OPP is27	  used with the devfreq device, you may use OPP helper28	  functions defined in devfreq.h.29 30if PM_DEVFREQ31 32comment "DEVFREQ Governors"33 34config DEVFREQ_GOV_SIMPLE_ONDEMAND35	tristate "Simple Ondemand"36	help37	  Chooses frequency based on the recent load on the device. Works38	  similar as ONDEMAND governor of CPUFREQ does. A device with39	  Simple-Ondemand should be able to provide busy/total counter40	  values that imply the usage rate. A device may provide tuned41	  values to the governor with data field at devfreq_add_device().42 43config DEVFREQ_GOV_PERFORMANCE44	tristate "Performance"45	help46	  Sets the frequency at the maximum available frequency.47	  This governor always returns UINT_MAX as frequency so that48	  the DEVFREQ framework returns the highest frequency available49	  at any time.50 51config DEVFREQ_GOV_POWERSAVE52	tristate "Powersave"53	help54	  Sets the frequency at the minimum available frequency.55	  This governor always returns 0 as frequency so that56	  the DEVFREQ framework returns the lowest frequency available57	  at any time.58 59config DEVFREQ_GOV_USERSPACE60	tristate "Userspace"61	help62	  Sets the frequency at the user specified one.63	  This governor returns the user configured frequency if there64	  has been an input to /sys/devices/.../userspace/set_freq.65	  Otherwise, the governor does not change the frequency66	  given at the initialization.67 68config DEVFREQ_GOV_PASSIVE69	tristate "Passive"70	help71	  Sets the frequency based on the frequency of its parent devfreq72	  device. This governor does not change the frequency by itself73	  through sysfs entries. The passive governor recommends that74	  devfreq device uses the OPP table to get the frequency/voltage.75 76comment "DEVFREQ Drivers"77 78config ARM_EXYNOS_BUS_DEVFREQ79	tristate "ARM Exynos Generic Memory Bus DEVFREQ Driver"80	depends on ARCH_EXYNOS || COMPILE_TEST81	select DEVFREQ_GOV_SIMPLE_ONDEMAND82	select DEVFREQ_GOV_PASSIVE83	select DEVFREQ_EVENT_EXYNOS_PPMU84	select PM_DEVFREQ_EVENT85	help86	  This adds the common DEVFREQ driver for Exynos Memory bus. Exynos87	  Memory bus has one more group of memory bus (e.g, MIF and INT block).88	  Each memory bus group could contain many memoby bus block. It reads89	  PPMU counters of memory controllers by using DEVFREQ-event device90	  and adjusts the operating frequencies and voltages with OPP support.91	  This does not yet operate with optimal voltages.92 93config ARM_IMX_BUS_DEVFREQ94	tristate "i.MX Generic Bus DEVFREQ Driver"95	depends on ARCH_MXC || COMPILE_TEST96	select DEVFREQ_GOV_USERSPACE97	help98	  This adds the generic DEVFREQ driver for i.MX interconnects. It99	  allows adjusting NIC/NOC frequency.100 101config ARM_IMX8M_DDRC_DEVFREQ102	tristate "i.MX8M DDRC DEVFREQ Driver"103	depends on (ARCH_MXC && HAVE_ARM_SMCCC) || \104		(COMPILE_TEST && HAVE_ARM_SMCCC)105	select DEVFREQ_GOV_USERSPACE106	help107	  This adds the DEVFREQ driver for the i.MX8M DDR Controller. It allows108	  adjusting DRAM frequency.109 110config ARM_TEGRA_DEVFREQ111	tristate "NVIDIA Tegra30/114/124/210 DEVFREQ Driver"112	depends on ARCH_TEGRA_3x_SOC || ARCH_TEGRA_114_SOC || \113		ARCH_TEGRA_132_SOC || ARCH_TEGRA_124_SOC || \114		ARCH_TEGRA_210_SOC || \115		COMPILE_TEST116	depends on COMMON_CLK117	help118	  This adds the DEVFREQ driver for the Tegra family of SoCs.119	  It reads ACTMON counters of memory controllers and adjusts the120	  operating frequencies and voltages with OPP support.121 122config ARM_MEDIATEK_CCI_DEVFREQ123	tristate "MEDIATEK CCI DEVFREQ Driver"124	depends on ARM_MEDIATEK_CPUFREQ || COMPILE_TEST125	select DEVFREQ_GOV_PASSIVE126	help127	  This adds a devfreq driver for MediaTek Cache Coherent Interconnect128	  which is shared the same regulators with the cpu cluster. It can track129	  buck voltages and update a proper CCI frequency. Use the notification130	  to get the regulator status.131 132config ARM_RK3399_DMC_DEVFREQ133	tristate "ARM RK3399 DMC DEVFREQ Driver"134	depends on (ARCH_ROCKCHIP && HAVE_ARM_SMCCC) || \135		(COMPILE_TEST && HAVE_ARM_SMCCC)136	select DEVFREQ_EVENT_ROCKCHIP_DFI137	select DEVFREQ_GOV_SIMPLE_ONDEMAND138	select PM_DEVFREQ_EVENT139	help140	  This adds the DEVFREQ driver for the RK3399 DMC(Dynamic Memory Controller).141	  It sets the frequency for the memory controller and reads the usage counts142	  from hardware.143 144config ARM_SUN8I_A33_MBUS_DEVFREQ145	tristate "sun8i/sun50i MBUS DEVFREQ Driver"146	depends on ARCH_SUNXI || COMPILE_TEST147	depends on COMMON_CLK148	select DEVFREQ_GOV_SIMPLE_ONDEMAND149	help150	  This adds the DEVFREQ driver for the MBUS controller in some151	  Allwinner sun8i (A33 through H3) and sun50i (A64 and H5) SoCs.152 153source "drivers/devfreq/event/Kconfig"154 155endif # PM_DEVFREQ156