Commit d5a4dfc3 authored by Hans de Goede's avatar Hans de Goede
Browse files

Merge branch 'platform-drivers-x86-amd-pmf' into pdx86-base

parents 568035b0 ea522b80
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -1022,6 +1022,12 @@ L: platform-driver-x86@vger.kernel.org
S:	Maintained
F:	drivers/platform/x86/amd/pmc.c
AMD PMF DRIVER
M:	Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
L:	platform-driver-x86@vger.kernel.org
S:	Maintained
F:	drivers/platform/x86/amd/pmf/
AMD HSMP DRIVER
M:	Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
R:	Carlos Bilbao <carlos.bilbao@amd.com>
+2 −0
Original line number Diff line number Diff line
@@ -3,6 +3,8 @@
# AMD x86 Platform Specific Drivers
#

source "drivers/platform/x86/amd/pmf/Kconfig"

config AMD_PMC
	tristate "AMD SoC PMC driver"
	depends on ACPI && PCI && RTC_CLASS
+1 −0
Original line number Diff line number Diff line
@@ -8,3 +8,4 @@ amd-pmc-y := pmc.o
obj-$(CONFIG_AMD_PMC)		+= amd-pmc.o
amd_hsmp-y			:= hsmp.o
obj-$(CONFIG_AMD_HSMP)		+= amd_hsmp.o
obj-$(CONFIG_AMD_PMF)		+= pmf/
+16 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
#
# AMD PMF Driver
#

config AMD_PMF
	tristate "AMD Platform Management Framework"
	depends on ACPI && PCI
	select ACPI_PLATFORM_PROFILE
	help
	  This driver provides support for the AMD Platform Management Framework.
	  The goal is to enhance end user experience by making AMD PCs smarter,
	  quiter, power efficient by adapting to user behavior and environment.

	  To compile this driver as a module, choose M here: the module will
	  be called amd_pmf.
+9 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
#
# Makefile for linux/drivers/platform/x86/amd/pmf
# AMD Platform Management Framework
#

obj-$(CONFIG_AMD_PMF) += amd-pmf.o
amd-pmf-objs := core.o acpi.o sps.o \
		auto-mode.o
Loading