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_piv.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_piv.h')
-rw-r--r-- | sys/dev/hwpmc/hwpmc_piv.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/hwpmc/hwpmc_piv.h b/sys/dev/hwpmc/hwpmc_piv.h index 0837b26..ebde966 100644 --- a/sys/dev/hwpmc/hwpmc_piv.h +++ b/sys/dev/hwpmc/hwpmc_piv.h @@ -33,7 +33,7 @@ /* Intel P4 PMCs */ -#define P4_NPMCS 19 /* 1 TSC + 18 PMCS */ +#define P4_NPMCS 18 #define P4_NESCR 45 #define P4_INVALID_PMC_INDEX -1 #define P4_MAX_ESCR_PER_EVENT 2 @@ -118,7 +118,8 @@ struct pmc_md_p4_pmc { * Prototypes */ -int pmc_initialize_p4(struct pmc_mdep *); /* Pentium IV PMCs */ +int pmc_p4_initialize(struct pmc_mdep *_md, int _ncpus); +void pmc_p4_finalize(struct pmc_mdep *md); #endif /* _KERNEL */ -#endif /* _MACHINE_PMC_MDEP_H */ +#endif /* _DEV_HWPMC_PIV_H_ */ |