[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220518063032.2377351-3-tarumizu.kohei@fujitsu.com>
Date: Wed, 18 May 2022 15:30:26 +0900
From: Kohei Tarumizu <tarumizu.kohei@...itsu.com>
To: catalin.marinas@....com, will@...nel.org, tglx@...utronix.de,
mingo@...hat.com, bp@...en8.de, dave.hansen@...ux.intel.com,
x86@...nel.org, hpa@...or.com, gregkh@...uxfoundation.org,
rafael@...nel.org, mchehab+huawei@...nel.org, eugenis@...gle.com,
tony.luck@...el.com, pcc@...gle.com, peterz@...radead.org,
marcos@...a.pet, conor.dooley@...rochip.com,
nicolas.ferre@...rochip.com, marcan@...can.st,
linus.walleij@...aro.org, arnd@...db.de,
linux-kernel@...r.kernel.org, linux-arm-kernel@...ts.infradead.org
Cc: tarumizu.kohei@...itsu.com
Subject: [PATCH v4 2/8] drivers: base: Add Kconfig/Makefile to build hardware prefetch control core driver
Adds Kconfig/Makefile to build hardware prefetch control core driver,
and also adds a MAINTAINERS entry.
Signed-off-by: Kohei Tarumizu <tarumizu.kohei@...itsu.com>
---
MAINTAINERS | 6 ++++++
drivers/base/Kconfig | 9 +++++++++
drivers/base/Makefile | 1 +
3 files changed, 16 insertions(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index d6d879cb0afd..f188403bc2e9 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -8620,6 +8620,12 @@ F: include/linux/hwmon*.h
F: include/trace/events/hwmon*.h
K: (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
+HARDWARE PREFETCH CONTROL DRIVERS
+M: Kohei Tarumizu <tarumizu.kohei@...itsu.com>
+S: Maintained
+F: drivers/base/pfctl.c
+F: include/linux/pfctl.h
+
HARDWARE RANDOM NUMBER GENERATOR CORE
M: Matt Mackall <mpm@...enic.com>
M: Herbert Xu <herbert@...dor.apana.org.au>
diff --git a/drivers/base/Kconfig b/drivers/base/Kconfig
index 6f04b831a5c0..8f8a69e7f645 100644
--- a/drivers/base/Kconfig
+++ b/drivers/base/Kconfig
@@ -230,4 +230,13 @@ config GENERIC_ARCH_NUMA
Enable support for generic NUMA implementation. Currently, RISC-V
and ARM64 use it.
+config HWPF_CONTROL
+ bool "Hardware Prefetch Control driver"
+ help
+ This driver allows user to control CPU's Hardware Prefetch behavior.
+ If the machine supports this behavior, it provides a sysfs interface.
+
+ See Documentation/ABI/testing/sysfs-devices-system-cpu for more
+ information.
+
endmenu
diff --git a/drivers/base/Makefile b/drivers/base/Makefile
index 02f7f1358e86..13f3a0ddf3d1 100644
--- a/drivers/base/Makefile
+++ b/drivers/base/Makefile
@@ -25,6 +25,7 @@ obj-$(CONFIG_DEV_COREDUMP) += devcoredump.o
obj-$(CONFIG_GENERIC_MSI_IRQ_DOMAIN) += platform-msi.o
obj-$(CONFIG_GENERIC_ARCH_TOPOLOGY) += arch_topology.o
obj-$(CONFIG_GENERIC_ARCH_NUMA) += arch_numa.o
+obj-$(CONFIG_HWPF_CONTROL) += pfctl.o
obj-y += test/
--
2.27.0
Powered by blists - more mailing lists