2024-10-21 11:14:18 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
#
|
|
|
|
# AMD HSMP Driver
|
|
|
|
#
|
|
|
|
|
|
|
|
config AMD_HSMP
|
2024-10-21 11:14:25 +00:00
|
|
|
tristate
|
|
|
|
|
|
|
|
menu "AMD HSMP Driver"
|
2025-01-30 19:48:55 +00:00
|
|
|
depends on AMD_NODE || COMPILE_TEST
|
2024-10-21 11:14:25 +00:00
|
|
|
|
|
|
|
config AMD_HSMP_ACPI
|
|
|
|
tristate "AMD HSMP ACPI device driver"
|
|
|
|
depends on ACPI
|
2025-05-22 16:38:49 +02:00
|
|
|
depends on HWMON || !HWMON
|
2024-10-21 11:14:25 +00:00
|
|
|
select AMD_HSMP
|
2024-10-21 11:14:18 +00:00
|
|
|
help
|
2024-10-21 11:14:25 +00:00
|
|
|
Host System Management Port (HSMP) interface is a mailbox interface
|
|
|
|
between the x86 core and the System Management Unit (SMU) firmware.
|
2024-10-21 11:14:18 +00:00
|
|
|
The driver provides a way for user space tools to monitor and manage
|
2024-10-21 11:14:25 +00:00
|
|
|
system management functionality on EPYC and MI300A server CPUs
|
|
|
|
from AMD.
|
|
|
|
|
|
|
|
This option supports ACPI based probing.
|
|
|
|
You may enable this, if your platform BIOS provides an ACPI object
|
|
|
|
as described in amd_hsmp.rst document.
|
2024-10-21 11:14:18 +00:00
|
|
|
|
2024-10-21 11:14:25 +00:00
|
|
|
If you choose to compile this driver as a module the module will be
|
|
|
|
called hsmp_acpi.
|
|
|
|
|
|
|
|
config AMD_HSMP_PLAT
|
|
|
|
tristate "AMD HSMP platform device driver"
|
2025-05-22 16:38:49 +02:00
|
|
|
depends on HWMON || !HWMON
|
2024-10-21 11:14:25 +00:00
|
|
|
select AMD_HSMP
|
|
|
|
help
|
2024-10-21 11:14:18 +00:00
|
|
|
Host System Management Port (HSMP) interface is a mailbox interface
|
|
|
|
between the x86 core and the System Management Unit (SMU) firmware.
|
2024-10-21 11:14:25 +00:00
|
|
|
The driver provides a way for user space tools to monitor and manage
|
|
|
|
system management functionality on EPYC and MI300A server CPUs
|
|
|
|
from AMD.
|
|
|
|
|
|
|
|
This option supports platform device based probing.
|
|
|
|
You may enable this, if your platform BIOS does not provide
|
|
|
|
HSMP ACPI object.
|
2024-10-21 11:14:18 +00:00
|
|
|
|
|
|
|
If you choose to compile this driver as a module the module will be
|
|
|
|
called amd_hsmp.
|
2024-10-21 11:14:25 +00:00
|
|
|
|
|
|
|
endmenu
|