diff options
author | Paul Mackerras <paulus@samba.org> | 2009-03-06 16:27:10 +1100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2009-03-06 16:28:37 +1100 |
commit | aabbaa6036fd847c583f585c6bae82b5a033e6c7 (patch) | |
tree | 097a73e1546b7396b49031ab5a3e1d4c1e7c5598 /arch/powerpc/kernel/Makefile | |
parent | 86028598de16538f02519141756ccf4accfc29a6 (diff) | |
download | op-kernel-dev-aabbaa6036fd847c583f585c6bae82b5a033e6c7.zip op-kernel-dev-aabbaa6036fd847c583f585c6bae82b5a033e6c7.tar.gz |
perfcounters/powerpc: add support for POWER5+ processors
Impact: more hardware support
This adds the back-end for the PMU on the POWER5+ processors (i.e. GS,
including GS DD3 aka POWER5++). This doesn't use the fixed-function
PMC5 and PMC6 since they don't respect the freeze conditions and don't
generate interrupts, as on POWER6.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/Makefile')
-rw-r--r-- | arch/powerpc/kernel/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/Makefile b/arch/powerpc/kernel/Makefile index b4c6f46..49851e0 100644 --- a/arch/powerpc/kernel/Makefile +++ b/arch/powerpc/kernel/Makefile @@ -94,8 +94,8 @@ obj-$(CONFIG_AUDIT) += audit.o obj64-$(CONFIG_AUDIT) += compat_audit.o obj-$(CONFIG_DYNAMIC_FTRACE) += ftrace.o -obj-$(CONFIG_PERF_COUNTERS) += perf_counter.o ppc970-pmu.o power5-pmu.o \ - power6-pmu.o +obj-$(CONFIG_PERF_COUNTERS) += perf_counter.o ppc970-pmu.o \ + power5-pmu.o power5+-pmu.o power6-pmu.o obj-$(CONFIG_8XX_MINIMAL_FPEMU) += softemu8xx.o |