cpufre: Kconfig: Change and Add P-State boost config name
authorYoungtae Lee <yt0729.lee@samsung.com>
Fri, 15 Jun 2018 07:58:42 +0000 (16:58 +0900)
committerlakkyung.jung <lakkyung.jung@samsung.com>
Mon, 23 Jul 2018 05:59:35 +0000 (14:59 +0900)
change P-state boost name and add mode changer

Change-Id: I4ffe10885ac81a63f0792a7c0c6491a0abb26ec6
Signed-off-by: Youngtae Lee <yt0729.lee@samsung.com>
drivers/cpufreq/Kconfig

index ad9b6034b75af7864a94ea8ddab4e3171c1b77f1..e0d324cd293f64339f35d72562de1c6b55b97dd5 100644 (file)
@@ -354,30 +354,38 @@ config QORIQ_CPUFREQ
 
 comment "P-state Boost Solutions"
 
-choice PSTATE
+choice EXYNOS_PSTATE
        prompt "P-state Boost Solution"
-       default PSTATE_DISABLE
+       default EXYNOS_PSTATE_DISABLE
+       depends on ARCH_EXYNOS
+       depends on CPU_FREQ
        help
          Default status of P-state boost is disable.
 
-config PSTATE_DISABLE
+config EXYNOS_PSTATE_DISABLE
        bool "disable"
        help
          This option sets P-state boost solution as disable.
          If in doubt, set this config.
 
-config PSTATE_EXYNOS_HAFM
+config EXYNOS_PSTATE_HAFM
        bool "Exynos HAFM"
        help
          This option sets P-state boost solution as HAFM.
          The config makes HIU just deliver frequency level and power budget
          given from CPUFreq driver and register set.
 
-config PSTATE_EXYNOS_HAFM_TB
+config EXYNOS_PSTATE_HAFM_TB
        bool "Exynos HAFM-TB"
        help
          This option sets P-state boost solution as HAFM-TB.
 
+config EXYNOS_PSTATE_MODE_CHANGER
+       bool "Exynos Mode Changer"
+       depends on HOTPLUG_CPU
+       help
+         This option sets P-state boost solution as EMC.
+
 endchoice
 
 endif