e829eb6d61
dependencies. A 'struct pmc_classdep' structure describes operations on PMCs; 'struct pmc_mdep' contains one or more 'struct pmc_classdep' structures depending on the CPU in question. Inside PMC class dependent code, row indices are relative to the PMCs supported by the PMC class; MI code in "hwpmc_mod.c" translates global row indices before invoking class dependent operations. - Augment the OP_GETCPUINFO request with the number of PMCs present in a PMC class. - Move code common to Intel CPUs to file "hwpmc_intel.c". - Move TSC handling to file "hwpmc_tsc.c".
39 lines
683 B
Makefile
39 lines
683 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
.PATH: ${.CURDIR}/../../dev/hwpmc
|
|
|
|
KMOD= hwpmc
|
|
|
|
SRCS= hwpmc_mod.c hwpmc_logging.c vnode_if.h
|
|
|
|
.if ${MACHINE_ARCH} == "amd64"
|
|
SRCS+= hwpmc_amd.c hwpmc_intel.c hwpmc_piv.c hwpmc_tsc.c hwpmc_x86.c
|
|
SRCS+= device_if.h bus_if.h
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "arm"
|
|
SRCS+= hwpmc_arm.c
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
SRCS+= hwpmc_amd.c hwpmc_intel.c hwpmc_piv.c hwpmc_ppro.c hwpmc_pentium.c
|
|
SRCS+= hwpmc_tsc.c hwpmc_x86.c
|
|
SRCS+= device_if.h bus_if.h
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "ia64"
|
|
SRCS+= hwpmc_ia64.c
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "powerpc"
|
|
SRCS+= hwpmc_powerpc.c
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "sparc64"
|
|
SRCS+= hwpmc_sparc64.c
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|