Commit 86e5a520 authored by Wu Zhangjin's avatar Wu Zhangjin Committed by Ralf Baechle

MIPS: Oprofile: Loongson: Unify macro for setting events

Unified macro for counter0 and counter1 to set the event in the control
register.  This will be needed by Perf.
Signed-off-by: default avatarWu Zhangjin <wuzhangjin@gmail.com>
Cc: linux-mips@linux-mips.org
Patchwork: http://patchwork.linux-mips.org/patch/1200/Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 0103d23f
...@@ -24,8 +24,8 @@ ...@@ -24,8 +24,8 @@
*/ */
#define LOONGSON2_CPU_TYPE "mips/loongson2" #define LOONGSON2_CPU_TYPE "mips/loongson2"
#define LOONGSON2_COUNTER1_EVENT(event) ((event & 0x0f) << 5) #define LOONGSON2_PERFCTRL_EVENT(idx, event) \
#define LOONGSON2_COUNTER2_EVENT(event) ((event & 0x0f) << 9) (((event) & 0x0f) << ((idx) ? 9 : 5))
#define LOONGSON2_PERFCNT_EXL (1UL << 0) #define LOONGSON2_PERFCNT_EXL (1UL << 0)
#define LOONGSON2_PERFCNT_KERNEL (1UL << 1) #define LOONGSON2_PERFCNT_KERNEL (1UL << 1)
...@@ -60,12 +60,12 @@ static void loongson2_reg_setup(struct op_counter_config *cfg) ...@@ -60,12 +60,12 @@ static void loongson2_reg_setup(struct op_counter_config *cfg)
/* Compute the performance counter ctrl word. */ /* Compute the performance counter ctrl word. */
/* For now count kernel and user mode */ /* For now count kernel and user mode */
if (cfg[0].enabled) { if (cfg[0].enabled) {
ctrl |= LOONGSON2_COUNTER1_EVENT(cfg[0].event); ctrl |= LOONGSON2_PERFCTRL_EVENT(0, cfg[0].event);
reg.reset_counter1 = 0x80000000ULL - cfg[0].count; reg.reset_counter1 = 0x80000000ULL - cfg[0].count;
} }
if (cfg[1].enabled) { if (cfg[1].enabled) {
ctrl |= LOONGSON2_COUNTER2_EVENT(cfg[1].event); ctrl |= LOONGSON2_PERFCTRL_EVENT(1, cfg[1].event);
reg.reset_counter2 = (0x80000000ULL - cfg[1].count); reg.reset_counter2 = (0x80000000ULL - cfg[1].count);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment