mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 02:04:19 +08:00
400b6a7b13
nvme devices report temperature information in the controller information (for limits) and in the smart log. Currently, the only means to retrieve this information is the nvme command line interface, which requires super-user privileges. At the same time, it would be desirable to be able to use NVMe temperature information for thermal control. This patch adds support to read NVMe temperatures from the kernel using the hwmon API and adds temperature zones for NVMe drives. The thermal subsystem can use this information to set thermal policies, and userspace can access it using libsensors and/or the "sensors" command. Example output from the "sensors" command: nvme0-pci-0100 Adapter: PCI adapter Composite: +39.0°C (high = +85.0°C, crit = +85.0°C) Sensor 1: +39.0°C Sensor 2: +41.0°C Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Keith Busch <kbusch@kernel.org>
28 lines
691 B
Makefile
28 lines
691 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
ccflags-y += -I$(src)
|
|
|
|
obj-$(CONFIG_NVME_CORE) += nvme-core.o
|
|
obj-$(CONFIG_BLK_DEV_NVME) += nvme.o
|
|
obj-$(CONFIG_NVME_FABRICS) += nvme-fabrics.o
|
|
obj-$(CONFIG_NVME_RDMA) += nvme-rdma.o
|
|
obj-$(CONFIG_NVME_FC) += nvme-fc.o
|
|
obj-$(CONFIG_NVME_TCP) += nvme-tcp.o
|
|
|
|
nvme-core-y := core.o
|
|
nvme-core-$(CONFIG_TRACING) += trace.o
|
|
nvme-core-$(CONFIG_NVME_MULTIPATH) += multipath.o
|
|
nvme-core-$(CONFIG_NVM) += lightnvm.o
|
|
nvme-core-$(CONFIG_FAULT_INJECTION_DEBUG_FS) += fault_inject.o
|
|
nvme-core-$(CONFIG_NVME_HWMON) += hwmon.o
|
|
|
|
nvme-y += pci.o
|
|
|
|
nvme-fabrics-y += fabrics.o
|
|
|
|
nvme-rdma-y += rdma.o
|
|
|
|
nvme-fc-y += fc.o
|
|
|
|
nvme-tcp-y += tcp.o
|