lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Tue, 10 Aug 2021 17:58:27 +0800 From: Kate Hsuan <hpa@...hat.com> To: Hans de Goede <hdegoede@...hat.com>, Mark Gross <mgross@...ux.intel.com>, Alex Hung <alex.hung@...onical.com>, Sujith Thomas <sujith.thomas@...el.com>, Rajneesh Bhardwaj <irenic.rajneesh@...il.com>, David E Box <david.e.box@...el.com>, Zha Qipeng <qipeng.zha@...el.com>, Mika Westerberg <mika.westerberg@...ux.intel.com>, Srinivas Pandruvada <srinivas.pandruvada@...ux.intel.com>, AceLan Kao <acelan.kao@...onical.com>, Jithu Joseph <jithu.joseph@...el.com>, Maurice Ma <maurice.ma@...el.com>, Andy Shevchenko <andriy.shevchenko@...ux.intel.com>, Dan Carpenter <dan.carpenter@...cle.com>, Daniel Scally <djrscally@...il.com>, linux-kernel@...r.kernel.org, Dell.Client.Kernel@...l.com Cc: platform-driver-x86@...r.kernel.org, Kate Hsuan <hpa@...hat.com> Subject: [PATCH 15/20] Move Intel turbo max 3 driver to intel/ directory to improve readability. Signed-off-by: Kate Hsuan <hpa@...hat.com> --- 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
Powered by blists - more mailing lists