mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-18 10:35:55 +00:00
3258030144
shared and generalized between our current amd64, i386 and pc98. This is just an initial step that should lead to a more complete effort. For the moment, a very simple porting of cpufreq modules, BIOS calls and the whole MD specific ISA bus part is added to the sub-tree but ideally a lot of code might be added and more shared support should grow. Sponsored by: Sandvine Incorporated Reviewed by: emaste, kib, jhb, imp Discussed on: arch MFC: 3 weeks
27 lines
500 B
Makefile
27 lines
500 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/cpufreq \
|
|
${.CURDIR}/../../${MACHINE_ARCH}/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: ${.CURDIR}/../../x86/cpufreq
|
|
|
|
SRCS+= acpi_if.h opt_acpi.h
|
|
SRCS+= est.c hwpstate.c p4tcc.c powernow.c
|
|
.endif
|
|
|
|
.if ${MACHINE} == "i386"
|
|
SRCS+= smist.c
|
|
.endif
|
|
|
|
.if ${MACHINE} == "powerpc"
|
|
.PATH: ${.CURDIR}/../../powerpc/cpufreq
|
|
SRCS+= dfs.c
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|