diff options
| author | Conrad Meyer <cem@FreeBSD.org> | 2020-01-22 23:28:42 +0000 |
|---|---|---|
| committer | Conrad Meyer <cem@FreeBSD.org> | 2020-01-22 23:28:42 +0000 |
| commit | 4577cf3744b98d0fa7cea80c75079c3cf5155471 (patch) | |
| tree | c55562aa9675e93475e483d131cddadad2ff648f /sys/modules | |
| parent | 7ec5e1c4cd74b66192e5a34c082dc580e587f77b (diff) | |
cpufreq(4): Add support for Intel Speed Shift
Intel Speed Shift is Intel's technology to control frequency in hardware,
with hints from software.
Let's get a working version of this in the tree and we can refine it from
here.
Submitted by: bwidawsk, scottph
Reviewed by: bcr (manpages), myself
Discussed with: jhb, kib (earlier versions)
With feedback from: Greg V, gallatin, freebsdnewbie AT freenet.de
Relnotes: yes
Differential Revision: https://reviews.freebsd.org/D18028
Notes
svn path=/head/; revision=357002
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/cpufreq/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/cpufreq/Makefile b/sys/modules/cpufreq/Makefile index e9fae049ebed..4198d7d66a75 100644 --- a/sys/modules/cpufreq/Makefile +++ b/sys/modules/cpufreq/Makefile @@ -11,7 +11,7 @@ SRCS+= bus_if.h cpufreq_if.h device_if.h pci_if.h .PATH: ${SRCTOP}/sys/x86/cpufreq SRCS+= acpi_if.h opt_acpi.h -SRCS+= est.c hwpstate.c p4tcc.c powernow.c +SRCS+= est.c hwpstate_amd.c p4tcc.c powernow.c hwpstate_intel.c .endif .if ${MACHINE} == "i386" |
