mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 18:41:48 +00:00
89467e73d3
Loongson-3 has two groups of performance counters, they are 4 sub- registers of CP0's REG25. This patch add oprofile support. REG25, sel 0: Perf Control of group 0; REG25, sel 1: Perf Counter of group 0; REG25, sel 2: Perf Control of group 1; REG25, sel 3: Perf Counter of group 1. Signed-off-by: Huacai Chen <chenhc@lemote.com> Cc: John Crispin <john@phrozen.org> Cc: Steven J. Hill <Steven.Hill@imgtec.com> Cc: linux-mips@linux-mips.org Cc: Fuxin Zhang <zhangfx@lemote.com> Cc: Zhangjin Wu <wuzhangjin@gmail.com> Patchwork: https://patchwork.linux-mips.org/patch/8328/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
18 lines
642 B
Makefile
18 lines
642 B
Makefile
obj-$(CONFIG_OPROFILE) += oprofile.o
|
|
|
|
DRIVER_OBJS = $(addprefix ../../../drivers/oprofile/, \
|
|
oprof.o cpu_buffer.o buffer_sync.o \
|
|
event_buffer.o oprofile_files.o \
|
|
oprofilefs.o oprofile_stats.o \
|
|
timer_int.o )
|
|
|
|
oprofile-y := $(DRIVER_OBJS) common.o backtrace.o
|
|
|
|
oprofile-$(CONFIG_CPU_MIPS32) += op_model_mipsxx.o
|
|
oprofile-$(CONFIG_CPU_MIPS64) += op_model_mipsxx.o
|
|
oprofile-$(CONFIG_CPU_R10000) += op_model_mipsxx.o
|
|
oprofile-$(CONFIG_CPU_SB1) += op_model_mipsxx.o
|
|
oprofile-$(CONFIG_CPU_XLR) += op_model_mipsxx.o
|
|
oprofile-$(CONFIG_CPU_LOONGSON2) += op_model_loongson2.o
|
|
oprofile-$(CONFIG_CPU_LOONGSON3) += op_model_loongson3.o
|