diff options
author | jkoshy <jkoshy@FreeBSD.org> | 2008-11-09 17:37:54 +0000 |
---|---|---|
committer | jkoshy <jkoshy@FreeBSD.org> | 2008-11-09 17:37:54 +0000 |
commit | fdb59f927ee739bbda9db671e11bf83d5a3143f3 (patch) | |
tree | 9977abc62b812534217ab29faac7edc58cae0570 /sys/dev/hwpmc/hwpmc_amd.h | |
parent | 957a6ed81ce56e8deae2eb8eb5082acf7bbfe234 (diff) | |
download | FreeBSD-src-fdb59f927ee739bbda9db671e11bf83d5a3143f3.zip FreeBSD-src-fdb59f927ee739bbda9db671e11bf83d5a3143f3.tar.gz |
- Separate PMC class dependent code from other kinds of machine
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".
Diffstat (limited to 'sys/dev/hwpmc/hwpmc_amd.h')
-rw-r--r-- | sys/dev/hwpmc/hwpmc_amd.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/dev/hwpmc/hwpmc_amd.h b/sys/dev/hwpmc/hwpmc_amd.h index aa6417b..b995dbe 100644 --- a/sys/dev/hwpmc/hwpmc_amd.h +++ b/sys/dev/hwpmc/hwpmc_amd.h @@ -44,7 +44,7 @@ #define AMD_PMC_PERFCTR_3 0xC0010007 -#define AMD_NPMCS 5 /* 1 TSC + 4 PMCs */ +#define AMD_NPMCS 4 #define AMD_PMC_COUNTERMASK 0xFF000000 #define AMD_PMC_TO_COUNTER(x) (((x) << 24) & AMD_PMC_COUNTERMASK) @@ -93,11 +93,5 @@ struct pmc_md_amd_pmc { uint32_t pm_amd_evsel; }; -/* - * Prototypes - */ - -struct pmc_mdep *pmc_amd_initialize(void); /* AMD K7/K8 PMCs */ - #endif /* _KERNEL */ #endif /* _DEV_HWPMC_AMD_H_ */ |