4577cf3744
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
27 lines
512 B
Makefile
27 lines
512 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/cpufreq \
|
|
${SRCTOP}/sys/${MACHINE_CPUARCH}/cpufreq
|
|
|
|
KMOD= cpufreq
|
|
SRCS= ichss.c
|
|
SRCS+= bus_if.h cpufreq_if.h device_if.h pci_if.h
|
|
|
|
.if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
|
|
.PATH: ${SRCTOP}/sys/x86/cpufreq
|
|
|
|
SRCS+= acpi_if.h opt_acpi.h
|
|
SRCS+= est.c hwpstate_amd.c p4tcc.c powernow.c hwpstate_intel.c
|
|
.endif
|
|
|
|
.if ${MACHINE} == "i386"
|
|
SRCS+= smist.c
|
|
.endif
|
|
|
|
.if ${MACHINE} == "powerpc"
|
|
.PATH: ${SRCTOP}/sys/powerpc/cpufreq
|
|
SRCS+= dfs.c
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|