[PATCH 15/20] Move Intel turbo max 3 driver to intel/ directory to improve readability.

From: Kate Hsuan
Date: Tue Aug 10 2021 - 06:01:24 EST


Signed-off-by: Kate Hsuan <hpa@xxxxxxxxxx>
---
drivers/platform/x86/Kconfig | 10 ----------
drivers/platform/x86/Makefile | 1 -
drivers/platform/x86/intel/Kconfig | 1 +
drivers/platform/x86/intel/Makefile | 3 ++-
drivers/platform/x86/intel/turbo_max_3/Kconfig | 14 ++++++++++++++
drivers/platform/x86/intel/turbo_max_3/Makefile | 6 ++++++
.../{ => intel/turbo_max_3}/intel_turbo_max_3.c | 0
7 files changed, 23 insertions(+), 12 deletions(-)
create mode 100644 drivers/platform/x86/intel/turbo_max_3/Kconfig
create mode 100644 drivers/platform/x86/intel/turbo_max_3/Makefile
rename drivers/platform/x86/{ => intel/turbo_max_3}/intel_turbo_max_3.c (100%)

diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig
index ff0a36a61404..735949c406d3 100644
--- a/drivers/platform/x86/Kconfig
+++ b/drivers/platform/x86/Kconfig
@@ -1028,16 +1028,6 @@ config INTEL_IMR



-config INTEL_TURBO_MAX_3
- bool "Intel Turbo Boost Max Technology 3.0 enumeration driver"
- depends on X86_64 && SCHED_MC_PRIO
- help
- This driver reads maximum performance ratio of each CPU and set up
- the scheduler priority metrics. In this way scheduler can prefer
- CPU with higher performance to schedule tasks.
- This driver is only required when the system is not using Hardware
- P-States (HWP). In HWP mode, priority can be read from ACPI tables.
-
config INTEL_UNCORE_FREQ_CONTROL
tristate "Intel Uncore frequency control driver"
depends on X86_64
diff --git a/drivers/platform/x86/Makefile b/drivers/platform/x86/Makefile
index 2ce50bae6b71..e3ea8bf3647b 100644
--- a/drivers/platform/x86/Makefile
+++ b/drivers/platform/x86/Makefile
@@ -115,7 +115,6 @@ obj-$(CONFIG_WIRELESS_HOTKEY) += wireless-hotkey.o
# Intel uncore drivers


-obj-$(CONFIG_INTEL_TURBO_MAX_3) += intel_turbo_max_3.o
obj-$(CONFIG_INTEL_UNCORE_FREQ_CONTROL) += intel-uncore-frequency.o


diff --git a/drivers/platform/x86/intel/Kconfig b/drivers/platform/x86/intel/Kconfig
index f6c326d33ea0..d3f1be45a25f 100644
--- a/drivers/platform/x86/intel/Kconfig
+++ b/drivers/platform/x86/intel/Kconfig
@@ -33,6 +33,7 @@ source "drivers/platform/x86/intel/ips/Kconfig"
source "drivers/platform/x86/intel/rst/Kconfig"
source "drivers/platform/x86/intel/smartconnect/Kconfig"
source "drivers/platform/x86/intel/intel_speed_select_if/Kconfig"
+source "drivers/platform/x86/intel/turbo_max_3/Kconfig"


endif # X86_PLATFORM_DRIVERS_INTEL
diff --git a/drivers/platform/x86/intel/Makefile b/drivers/platform/x86/intel/Makefile
index 972076bdcd4e..040109e2908a 100644
--- a/drivers/platform/x86/intel/Makefile
+++ b/drivers/platform/x86/intel/Makefile
@@ -33,4 +33,5 @@ obj-$(CONFIG_INTEL_TELEMETRY) += telemetry/
obj-$(CONFIG_INTEL_IPS) += ips/
obj-$(CONFIG_INTEL_RST) += rst/
obj-$(CONFIG_INTEL_SMARTCONNECT) += smartconnect/
-obj-$(CONFIG_INTEL_SPEED_SELECT_INTERFACE) += intel_speed_select_if/
\ No newline at end of file
+obj-$(CONFIG_INTEL_SPEED_SELECT_INTERFACE) += intel_speed_select_if/
+obj-$(CONFIG_INTEL_TURBO_MAX_3) += turbo_max_3/
diff --git a/drivers/platform/x86/intel/turbo_max_3/Kconfig b/drivers/platform/x86/intel/turbo_max_3/Kconfig
new file mode 100644
index 000000000000..e4518914ccc4
--- /dev/null
+++ b/drivers/platform/x86/intel/turbo_max_3/Kconfig
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: GPL-2.0-only
+#
+# Intel x86 Platform Specific Drivers
+#
+
+config INTEL_TURBO_MAX_3
+ bool "Intel Turbo Boost Max Technology 3.0 enumeration driver"
+ depends on X86_64 && SCHED_MC_PRIO
+ help
+ This driver reads maximum performance ratio of each CPU and set up
+ the scheduler priority metrics. In this way scheduler can prefer
+ CPU with higher performance to schedule tasks.
+ This driver is only required when the system is not using Hardware
+ P-States (HWP). In HWP mode, priority can be read from ACPI tables.
diff --git a/drivers/platform/x86/intel/turbo_max_3/Makefile b/drivers/platform/x86/intel/turbo_max_3/Makefile
new file mode 100644
index 000000000000..4715da45373b
--- /dev/null
+++ b/drivers/platform/x86/intel/turbo_max_3/Makefile
@@ -0,0 +1,6 @@
+# SPDX-License-Identifier: GPL-2.0-only
+#
+# Intel x86 Platform Specific Drivers
+#
+
+obj-$(CONFIG_INTEL_TURBO_MAX_3) += intel_turbo_max_3.o
diff --git a/drivers/platform/x86/intel_turbo_max_3.c b/drivers/platform/x86/intel/turbo_max_3/intel_turbo_max_3.c
similarity index 100%
rename from drivers/platform/x86/intel_turbo_max_3.c
rename to drivers/platform/x86/intel/turbo_max_3/intel_turbo_max_3.c
--
2.31.1