1979f8671SMichael Cree /* 2979f8671SMichael Cree * Hardware performance events for the Alpha. 3979f8671SMichael Cree * 4979f8671SMichael Cree * We implement HW counts on the EV67 and subsequent CPUs only. 5979f8671SMichael Cree * 6979f8671SMichael Cree * (C) 2010 Michael J. Cree 7979f8671SMichael Cree * 8979f8671SMichael Cree * Somewhat based on the Sparc code, and to a lesser extent the PowerPC and 9979f8671SMichael Cree * ARM code, which are copyright by their respective authors. 10979f8671SMichael Cree */ 11979f8671SMichael Cree 12979f8671SMichael Cree #include <linux/perf_event.h> 13979f8671SMichael Cree #include <linux/kprobes.h> 14979f8671SMichael Cree #include <linux/kernel.h> 15979f8671SMichael Cree #include <linux/kdebug.h> 16979f8671SMichael Cree #include <linux/mutex.h> 17004417a6SPeter Zijlstra #include <linux/init.h> 18979f8671SMichael Cree 19979f8671SMichael Cree #include <asm/hwrpb.h> 20*60063497SArun Sharma #include <linux/atomic.h> 21979f8671SMichael Cree #include <asm/irq.h> 22979f8671SMichael Cree #include <asm/irq_regs.h> 23979f8671SMichael Cree #include <asm/pal.h> 24979f8671SMichael Cree #include <asm/wrperfmon.h> 25979f8671SMichael Cree #include <asm/hw_irq.h> 26979f8671SMichael Cree 27979f8671SMichael Cree 28979f8671SMichael Cree /* The maximum number of PMCs on any Alpha CPU whatsoever. */ 29979f8671SMichael Cree #define MAX_HWEVENTS 3 30979f8671SMichael Cree #define PMC_NO_INDEX -1 31979f8671SMichael Cree 32979f8671SMichael Cree /* For tracking PMCs and the hw events they monitor on each CPU. */ 33979f8671SMichael Cree struct cpu_hw_events { 34979f8671SMichael Cree int enabled; 35979f8671SMichael Cree /* Number of events scheduled; also number entries valid in arrays below. */ 36979f8671SMichael Cree int n_events; 37979f8671SMichael Cree /* Number events added since last hw_perf_disable(). */ 38979f8671SMichael Cree int n_added; 39979f8671SMichael Cree /* Events currently scheduled. */ 40979f8671SMichael Cree struct perf_event *event[MAX_HWEVENTS]; 41979f8671SMichael Cree /* Event type of each scheduled event. */ 42979f8671SMichael Cree unsigned long evtype[MAX_HWEVENTS]; 43979f8671SMichael Cree /* Current index of each scheduled event; if not yet determined 44979f8671SMichael Cree * contains PMC_NO_INDEX. 45979f8671SMichael Cree */ 46979f8671SMichael Cree int current_idx[MAX_HWEVENTS]; 47979f8671SMichael Cree /* The active PMCs' config for easy use with wrperfmon(). */ 48979f8671SMichael Cree unsigned long config; 49979f8671SMichael Cree /* The active counters' indices for easy use with wrperfmon(). */ 50979f8671SMichael Cree unsigned long idx_mask; 51979f8671SMichael Cree }; 52979f8671SMichael Cree DEFINE_PER_CPU(struct cpu_hw_events, cpu_hw_events); 53979f8671SMichael Cree 54979f8671SMichael Cree 55979f8671SMichael Cree 56979f8671SMichael Cree /* 57979f8671SMichael Cree * A structure to hold the description of the PMCs available on a particular 58979f8671SMichael Cree * type of Alpha CPU. 59979f8671SMichael Cree */ 60979f8671SMichael Cree struct alpha_pmu_t { 61979f8671SMichael Cree /* Mapping of the perf system hw event types to indigenous event types */ 62979f8671SMichael Cree const int *event_map; 63979f8671SMichael Cree /* The number of entries in the event_map */ 64979f8671SMichael Cree int max_events; 65979f8671SMichael Cree /* The number of PMCs on this Alpha */ 66979f8671SMichael Cree int num_pmcs; 67979f8671SMichael Cree /* 68979f8671SMichael Cree * All PMC counters reside in the IBOX register PCTR. This is the 69979f8671SMichael Cree * LSB of the counter. 70979f8671SMichael Cree */ 71979f8671SMichael Cree int pmc_count_shift[MAX_HWEVENTS]; 72979f8671SMichael Cree /* 73979f8671SMichael Cree * The mask that isolates the PMC bits when the LSB of the counter 74979f8671SMichael Cree * is shifted to bit 0. 75979f8671SMichael Cree */ 76979f8671SMichael Cree unsigned long pmc_count_mask[MAX_HWEVENTS]; 77979f8671SMichael Cree /* The maximum period the PMC can count. */ 78979f8671SMichael Cree unsigned long pmc_max_period[MAX_HWEVENTS]; 79979f8671SMichael Cree /* 80979f8671SMichael Cree * The maximum value that may be written to the counter due to 81979f8671SMichael Cree * hardware restrictions is pmc_max_period - pmc_left. 82979f8671SMichael Cree */ 83979f8671SMichael Cree long pmc_left[3]; 84979f8671SMichael Cree /* Subroutine for allocation of PMCs. Enforces constraints. */ 85979f8671SMichael Cree int (*check_constraints)(struct perf_event **, unsigned long *, int); 86979f8671SMichael Cree }; 87979f8671SMichael Cree 88979f8671SMichael Cree /* 89979f8671SMichael Cree * The Alpha CPU PMU description currently in operation. This is set during 90979f8671SMichael Cree * the boot process to the specific CPU of the machine. 91979f8671SMichael Cree */ 92979f8671SMichael Cree static const struct alpha_pmu_t *alpha_pmu; 93979f8671SMichael Cree 94979f8671SMichael Cree 95979f8671SMichael Cree #define HW_OP_UNSUPPORTED -1 96979f8671SMichael Cree 97979f8671SMichael Cree /* 98979f8671SMichael Cree * The hardware description of the EV67, EV68, EV69, EV7 and EV79 PMUs 99979f8671SMichael Cree * follow. Since they are identical we refer to them collectively as the 100979f8671SMichael Cree * EV67 henceforth. 101979f8671SMichael Cree */ 102979f8671SMichael Cree 103979f8671SMichael Cree /* 104979f8671SMichael Cree * EV67 PMC event types 105979f8671SMichael Cree * 106979f8671SMichael Cree * There is no one-to-one mapping of the possible hw event types to the 107979f8671SMichael Cree * actual codes that are used to program the PMCs hence we introduce our 108979f8671SMichael Cree * own hw event type identifiers. 109979f8671SMichael Cree */ 110979f8671SMichael Cree enum ev67_pmc_event_type { 111979f8671SMichael Cree EV67_CYCLES = 1, 112979f8671SMichael Cree EV67_INSTRUCTIONS, 113979f8671SMichael Cree EV67_BCACHEMISS, 114979f8671SMichael Cree EV67_MBOXREPLAY, 115979f8671SMichael Cree EV67_LAST_ET 116979f8671SMichael Cree }; 117979f8671SMichael Cree #define EV67_NUM_EVENT_TYPES (EV67_LAST_ET-EV67_CYCLES) 118979f8671SMichael Cree 119979f8671SMichael Cree 120979f8671SMichael Cree /* Mapping of the hw event types to the perf tool interface */ 121979f8671SMichael Cree static const int ev67_perfmon_event_map[] = { 122979f8671SMichael Cree [PERF_COUNT_HW_CPU_CYCLES] = EV67_CYCLES, 123979f8671SMichael Cree [PERF_COUNT_HW_INSTRUCTIONS] = EV67_INSTRUCTIONS, 124979f8671SMichael Cree [PERF_COUNT_HW_CACHE_REFERENCES] = HW_OP_UNSUPPORTED, 125979f8671SMichael Cree [PERF_COUNT_HW_CACHE_MISSES] = EV67_BCACHEMISS, 126979f8671SMichael Cree }; 127979f8671SMichael Cree 128979f8671SMichael Cree struct ev67_mapping_t { 129979f8671SMichael Cree int config; 130979f8671SMichael Cree int idx; 131979f8671SMichael Cree }; 132979f8671SMichael Cree 133979f8671SMichael Cree /* 134979f8671SMichael Cree * The mapping used for one event only - these must be in same order as enum 135979f8671SMichael Cree * ev67_pmc_event_type definition. 136979f8671SMichael Cree */ 137979f8671SMichael Cree static const struct ev67_mapping_t ev67_mapping[] = { 138979f8671SMichael Cree {EV67_PCTR_INSTR_CYCLES, 1}, /* EV67_CYCLES, */ 139979f8671SMichael Cree {EV67_PCTR_INSTR_CYCLES, 0}, /* EV67_INSTRUCTIONS */ 140979f8671SMichael Cree {EV67_PCTR_INSTR_BCACHEMISS, 1}, /* EV67_BCACHEMISS */ 141979f8671SMichael Cree {EV67_PCTR_CYCLES_MBOX, 1} /* EV67_MBOXREPLAY */ 142979f8671SMichael Cree }; 143979f8671SMichael Cree 144979f8671SMichael Cree 145979f8671SMichael Cree /* 146979f8671SMichael Cree * Check that a group of events can be simultaneously scheduled on to the 147979f8671SMichael Cree * EV67 PMU. Also allocate counter indices and config. 148979f8671SMichael Cree */ 149979f8671SMichael Cree static int ev67_check_constraints(struct perf_event **event, 150979f8671SMichael Cree unsigned long *evtype, int n_ev) 151979f8671SMichael Cree { 152979f8671SMichael Cree int idx0; 153979f8671SMichael Cree unsigned long config; 154979f8671SMichael Cree 155979f8671SMichael Cree idx0 = ev67_mapping[evtype[0]-1].idx; 156979f8671SMichael Cree config = ev67_mapping[evtype[0]-1].config; 157979f8671SMichael Cree if (n_ev == 1) 158979f8671SMichael Cree goto success; 159979f8671SMichael Cree 160979f8671SMichael Cree BUG_ON(n_ev != 2); 161979f8671SMichael Cree 162979f8671SMichael Cree if (evtype[0] == EV67_MBOXREPLAY || evtype[1] == EV67_MBOXREPLAY) { 163979f8671SMichael Cree /* MBOX replay traps must be on PMC 1 */ 164979f8671SMichael Cree idx0 = (evtype[0] == EV67_MBOXREPLAY) ? 1 : 0; 165979f8671SMichael Cree /* Only cycles can accompany MBOX replay traps */ 166979f8671SMichael Cree if (evtype[idx0] == EV67_CYCLES) { 167979f8671SMichael Cree config = EV67_PCTR_CYCLES_MBOX; 168979f8671SMichael Cree goto success; 169979f8671SMichael Cree } 170979f8671SMichael Cree } 171979f8671SMichael Cree 172979f8671SMichael Cree if (evtype[0] == EV67_BCACHEMISS || evtype[1] == EV67_BCACHEMISS) { 173979f8671SMichael Cree /* Bcache misses must be on PMC 1 */ 174979f8671SMichael Cree idx0 = (evtype[0] == EV67_BCACHEMISS) ? 1 : 0; 175979f8671SMichael Cree /* Only instructions can accompany Bcache misses */ 176979f8671SMichael Cree if (evtype[idx0] == EV67_INSTRUCTIONS) { 177979f8671SMichael Cree config = EV67_PCTR_INSTR_BCACHEMISS; 178979f8671SMichael Cree goto success; 179979f8671SMichael Cree } 180979f8671SMichael Cree } 181979f8671SMichael Cree 182979f8671SMichael Cree if (evtype[0] == EV67_INSTRUCTIONS || evtype[1] == EV67_INSTRUCTIONS) { 183979f8671SMichael Cree /* Instructions must be on PMC 0 */ 184979f8671SMichael Cree idx0 = (evtype[0] == EV67_INSTRUCTIONS) ? 0 : 1; 185979f8671SMichael Cree /* By this point only cycles can accompany instructions */ 186979f8671SMichael Cree if (evtype[idx0^1] == EV67_CYCLES) { 187979f8671SMichael Cree config = EV67_PCTR_INSTR_CYCLES; 188979f8671SMichael Cree goto success; 189979f8671SMichael Cree } 190979f8671SMichael Cree } 191979f8671SMichael Cree 192979f8671SMichael Cree /* Otherwise, darn it, there is a conflict. */ 193979f8671SMichael Cree return -1; 194979f8671SMichael Cree 195979f8671SMichael Cree success: 196979f8671SMichael Cree event[0]->hw.idx = idx0; 197979f8671SMichael Cree event[0]->hw.config_base = config; 198979f8671SMichael Cree if (n_ev == 2) { 199979f8671SMichael Cree event[1]->hw.idx = idx0 ^ 1; 200979f8671SMichael Cree event[1]->hw.config_base = config; 201979f8671SMichael Cree } 202979f8671SMichael Cree return 0; 203979f8671SMichael Cree } 204979f8671SMichael Cree 205979f8671SMichael Cree 206979f8671SMichael Cree static const struct alpha_pmu_t ev67_pmu = { 207979f8671SMichael Cree .event_map = ev67_perfmon_event_map, 208979f8671SMichael Cree .max_events = ARRAY_SIZE(ev67_perfmon_event_map), 209979f8671SMichael Cree .num_pmcs = 2, 210979f8671SMichael Cree .pmc_count_shift = {EV67_PCTR_0_COUNT_SHIFT, EV67_PCTR_1_COUNT_SHIFT, 0}, 211979f8671SMichael Cree .pmc_count_mask = {EV67_PCTR_0_COUNT_MASK, EV67_PCTR_1_COUNT_MASK, 0}, 212979f8671SMichael Cree .pmc_max_period = {(1UL<<20) - 1, (1UL<<20) - 1, 0}, 213979f8671SMichael Cree .pmc_left = {16, 4, 0}, 214979f8671SMichael Cree .check_constraints = ev67_check_constraints 215979f8671SMichael Cree }; 216979f8671SMichael Cree 217979f8671SMichael Cree 218979f8671SMichael Cree 219979f8671SMichael Cree /* 220979f8671SMichael Cree * Helper routines to ensure that we read/write only the correct PMC bits 221979f8671SMichael Cree * when calling the wrperfmon PALcall. 222979f8671SMichael Cree */ 223979f8671SMichael Cree static inline void alpha_write_pmc(int idx, unsigned long val) 224979f8671SMichael Cree { 225979f8671SMichael Cree val &= alpha_pmu->pmc_count_mask[idx]; 226979f8671SMichael Cree val <<= alpha_pmu->pmc_count_shift[idx]; 227979f8671SMichael Cree val |= (1<<idx); 228979f8671SMichael Cree wrperfmon(PERFMON_CMD_WRITE, val); 229979f8671SMichael Cree } 230979f8671SMichael Cree 231979f8671SMichael Cree static inline unsigned long alpha_read_pmc(int idx) 232979f8671SMichael Cree { 233979f8671SMichael Cree unsigned long val; 234979f8671SMichael Cree 235979f8671SMichael Cree val = wrperfmon(PERFMON_CMD_READ, 0); 236979f8671SMichael Cree val >>= alpha_pmu->pmc_count_shift[idx]; 237979f8671SMichael Cree val &= alpha_pmu->pmc_count_mask[idx]; 238979f8671SMichael Cree return val; 239979f8671SMichael Cree } 240979f8671SMichael Cree 241979f8671SMichael Cree /* Set a new period to sample over */ 242979f8671SMichael Cree static int alpha_perf_event_set_period(struct perf_event *event, 243979f8671SMichael Cree struct hw_perf_event *hwc, int idx) 244979f8671SMichael Cree { 2457b598cddSMichael Cree long left = local64_read(&hwc->period_left); 246979f8671SMichael Cree long period = hwc->sample_period; 247979f8671SMichael Cree int ret = 0; 248979f8671SMichael Cree 249979f8671SMichael Cree if (unlikely(left <= -period)) { 250979f8671SMichael Cree left = period; 2517b598cddSMichael Cree local64_set(&hwc->period_left, left); 252979f8671SMichael Cree hwc->last_period = period; 253979f8671SMichael Cree ret = 1; 254979f8671SMichael Cree } 255979f8671SMichael Cree 256979f8671SMichael Cree if (unlikely(left <= 0)) { 257979f8671SMichael Cree left += period; 2587b598cddSMichael Cree local64_set(&hwc->period_left, left); 259979f8671SMichael Cree hwc->last_period = period; 260979f8671SMichael Cree ret = 1; 261979f8671SMichael Cree } 262979f8671SMichael Cree 263979f8671SMichael Cree /* 264979f8671SMichael Cree * Hardware restrictions require that the counters must not be 265979f8671SMichael Cree * written with values that are too close to the maximum period. 266979f8671SMichael Cree */ 267979f8671SMichael Cree if (unlikely(left < alpha_pmu->pmc_left[idx])) 268979f8671SMichael Cree left = alpha_pmu->pmc_left[idx]; 269979f8671SMichael Cree 270979f8671SMichael Cree if (left > (long)alpha_pmu->pmc_max_period[idx]) 271979f8671SMichael Cree left = alpha_pmu->pmc_max_period[idx]; 272979f8671SMichael Cree 2737b598cddSMichael Cree local64_set(&hwc->prev_count, (unsigned long)(-left)); 274979f8671SMichael Cree 275979f8671SMichael Cree alpha_write_pmc(idx, (unsigned long)(-left)); 276979f8671SMichael Cree 277979f8671SMichael Cree perf_event_update_userpage(event); 278979f8671SMichael Cree 279979f8671SMichael Cree return ret; 280979f8671SMichael Cree } 281979f8671SMichael Cree 282979f8671SMichael Cree 283979f8671SMichael Cree /* 284979f8671SMichael Cree * Calculates the count (the 'delta') since the last time the PMC was read. 285979f8671SMichael Cree * 286979f8671SMichael Cree * As the PMCs' full period can easily be exceeded within the perf system 287979f8671SMichael Cree * sampling period we cannot use any high order bits as a guard bit in the 288979f8671SMichael Cree * PMCs to detect overflow as is done by other architectures. The code here 289979f8671SMichael Cree * calculates the delta on the basis that there is no overflow when ovf is 290979f8671SMichael Cree * zero. The value passed via ovf by the interrupt handler corrects for 291979f8671SMichael Cree * overflow. 292979f8671SMichael Cree * 293979f8671SMichael Cree * This can be racey on rare occasions -- a call to this routine can occur 294979f8671SMichael Cree * with an overflowed counter just before the PMI service routine is called. 295979f8671SMichael Cree * The check for delta negative hopefully always rectifies this situation. 296979f8671SMichael Cree */ 297979f8671SMichael Cree static unsigned long alpha_perf_event_update(struct perf_event *event, 298979f8671SMichael Cree struct hw_perf_event *hwc, int idx, long ovf) 299979f8671SMichael Cree { 300979f8671SMichael Cree long prev_raw_count, new_raw_count; 301979f8671SMichael Cree long delta; 302979f8671SMichael Cree 303979f8671SMichael Cree again: 3047b598cddSMichael Cree prev_raw_count = local64_read(&hwc->prev_count); 305979f8671SMichael Cree new_raw_count = alpha_read_pmc(idx); 306979f8671SMichael Cree 3077b598cddSMichael Cree if (local64_cmpxchg(&hwc->prev_count, prev_raw_count, 308979f8671SMichael Cree new_raw_count) != prev_raw_count) 309979f8671SMichael Cree goto again; 310979f8671SMichael Cree 311979f8671SMichael Cree delta = (new_raw_count - (prev_raw_count & alpha_pmu->pmc_count_mask[idx])) + ovf; 312979f8671SMichael Cree 313979f8671SMichael Cree /* It is possible on very rare occasions that the PMC has overflowed 314979f8671SMichael Cree * but the interrupt is yet to come. Detect and fix this situation. 315979f8671SMichael Cree */ 316979f8671SMichael Cree if (unlikely(delta < 0)) { 317979f8671SMichael Cree delta += alpha_pmu->pmc_max_period[idx] + 1; 318979f8671SMichael Cree } 319979f8671SMichael Cree 3207b598cddSMichael Cree local64_add(delta, &event->count); 3217b598cddSMichael Cree local64_sub(delta, &hwc->period_left); 322979f8671SMichael Cree 323979f8671SMichael Cree return new_raw_count; 324979f8671SMichael Cree } 325979f8671SMichael Cree 326979f8671SMichael Cree 327979f8671SMichael Cree /* 328979f8671SMichael Cree * Collect all HW events into the array event[]. 329979f8671SMichael Cree */ 330979f8671SMichael Cree static int collect_events(struct perf_event *group, int max_count, 331979f8671SMichael Cree struct perf_event *event[], unsigned long *evtype, 332979f8671SMichael Cree int *current_idx) 333979f8671SMichael Cree { 334979f8671SMichael Cree struct perf_event *pe; 335979f8671SMichael Cree int n = 0; 336979f8671SMichael Cree 337979f8671SMichael Cree if (!is_software_event(group)) { 338979f8671SMichael Cree if (n >= max_count) 339979f8671SMichael Cree return -1; 340979f8671SMichael Cree event[n] = group; 341979f8671SMichael Cree evtype[n] = group->hw.event_base; 342979f8671SMichael Cree current_idx[n++] = PMC_NO_INDEX; 343979f8671SMichael Cree } 344979f8671SMichael Cree list_for_each_entry(pe, &group->sibling_list, group_entry) { 345979f8671SMichael Cree if (!is_software_event(pe) && pe->state != PERF_EVENT_STATE_OFF) { 346979f8671SMichael Cree if (n >= max_count) 347979f8671SMichael Cree return -1; 348979f8671SMichael Cree event[n] = pe; 349979f8671SMichael Cree evtype[n] = pe->hw.event_base; 350979f8671SMichael Cree current_idx[n++] = PMC_NO_INDEX; 351979f8671SMichael Cree } 352979f8671SMichael Cree } 353979f8671SMichael Cree return n; 354979f8671SMichael Cree } 355979f8671SMichael Cree 356979f8671SMichael Cree 357979f8671SMichael Cree 358979f8671SMichael Cree /* 359979f8671SMichael Cree * Check that a group of events can be simultaneously scheduled on to the PMU. 360979f8671SMichael Cree */ 361979f8671SMichael Cree static int alpha_check_constraints(struct perf_event **events, 362979f8671SMichael Cree unsigned long *evtypes, int n_ev) 363979f8671SMichael Cree { 364979f8671SMichael Cree 365979f8671SMichael Cree /* No HW events is possible from hw_perf_group_sched_in(). */ 366979f8671SMichael Cree if (n_ev == 0) 367979f8671SMichael Cree return 0; 368979f8671SMichael Cree 369979f8671SMichael Cree if (n_ev > alpha_pmu->num_pmcs) 370979f8671SMichael Cree return -1; 371979f8671SMichael Cree 372979f8671SMichael Cree return alpha_pmu->check_constraints(events, evtypes, n_ev); 373979f8671SMichael Cree } 374979f8671SMichael Cree 375979f8671SMichael Cree 376979f8671SMichael Cree /* 377979f8671SMichael Cree * If new events have been scheduled then update cpuc with the new 378979f8671SMichael Cree * configuration. This may involve shifting cycle counts from one PMC to 379979f8671SMichael Cree * another. 380979f8671SMichael Cree */ 381979f8671SMichael Cree static void maybe_change_configuration(struct cpu_hw_events *cpuc) 382979f8671SMichael Cree { 383979f8671SMichael Cree int j; 384979f8671SMichael Cree 385979f8671SMichael Cree if (cpuc->n_added == 0) 386979f8671SMichael Cree return; 387979f8671SMichael Cree 388979f8671SMichael Cree /* Find counters that are moving to another PMC and update */ 389979f8671SMichael Cree for (j = 0; j < cpuc->n_events; j++) { 390979f8671SMichael Cree struct perf_event *pe = cpuc->event[j]; 391979f8671SMichael Cree 392979f8671SMichael Cree if (cpuc->current_idx[j] != PMC_NO_INDEX && 393979f8671SMichael Cree cpuc->current_idx[j] != pe->hw.idx) { 394979f8671SMichael Cree alpha_perf_event_update(pe, &pe->hw, cpuc->current_idx[j], 0); 395979f8671SMichael Cree cpuc->current_idx[j] = PMC_NO_INDEX; 396979f8671SMichael Cree } 397979f8671SMichael Cree } 398979f8671SMichael Cree 399979f8671SMichael Cree /* Assign to counters all unassigned events. */ 400979f8671SMichael Cree cpuc->idx_mask = 0; 401979f8671SMichael Cree for (j = 0; j < cpuc->n_events; j++) { 402979f8671SMichael Cree struct perf_event *pe = cpuc->event[j]; 403979f8671SMichael Cree struct hw_perf_event *hwc = &pe->hw; 404979f8671SMichael Cree int idx = hwc->idx; 405979f8671SMichael Cree 406a4eaf7f1SPeter Zijlstra if (cpuc->current_idx[j] == PMC_NO_INDEX) { 407979f8671SMichael Cree alpha_perf_event_set_period(pe, hwc, idx); 408979f8671SMichael Cree cpuc->current_idx[j] = idx; 409a4eaf7f1SPeter Zijlstra } 410a4eaf7f1SPeter Zijlstra 411a4eaf7f1SPeter Zijlstra if (!(hwc->state & PERF_HES_STOPPED)) 412979f8671SMichael Cree cpuc->idx_mask |= (1<<cpuc->current_idx[j]); 413979f8671SMichael Cree } 414979f8671SMichael Cree cpuc->config = cpuc->event[0]->hw.config_base; 415979f8671SMichael Cree } 416979f8671SMichael Cree 417979f8671SMichael Cree 418979f8671SMichael Cree 419979f8671SMichael Cree /* Schedule perf HW event on to PMU. 420979f8671SMichael Cree * - this function is called from outside this module via the pmu struct 421979f8671SMichael Cree * returned from perf event initialisation. 422979f8671SMichael Cree */ 423a4eaf7f1SPeter Zijlstra static int alpha_pmu_add(struct perf_event *event, int flags) 424979f8671SMichael Cree { 425979f8671SMichael Cree struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events); 42665175c07SMichael Cree struct hw_perf_event *hwc = &event->hw; 427979f8671SMichael Cree int n0; 428979f8671SMichael Cree int ret; 42965175c07SMichael Cree unsigned long irq_flags; 430979f8671SMichael Cree 431979f8671SMichael Cree /* 432979f8671SMichael Cree * The Sparc code has the IRQ disable first followed by the perf 433979f8671SMichael Cree * disable, however this can lead to an overflowed counter with the 434979f8671SMichael Cree * PMI disabled on rare occasions. The alpha_perf_event_update() 435979f8671SMichael Cree * routine should detect this situation by noting a negative delta, 436979f8671SMichael Cree * nevertheless we disable the PMCs first to enable a potential 437979f8671SMichael Cree * final PMI to occur before we disable interrupts. 438979f8671SMichael Cree */ 43933696fc0SPeter Zijlstra perf_pmu_disable(event->pmu); 44065175c07SMichael Cree local_irq_save(irq_flags); 441979f8671SMichael Cree 442979f8671SMichael Cree /* Default to error to be returned */ 443979f8671SMichael Cree ret = -EAGAIN; 444979f8671SMichael Cree 445979f8671SMichael Cree /* Insert event on to PMU and if successful modify ret to valid return */ 446979f8671SMichael Cree n0 = cpuc->n_events; 447979f8671SMichael Cree if (n0 < alpha_pmu->num_pmcs) { 448979f8671SMichael Cree cpuc->event[n0] = event; 449979f8671SMichael Cree cpuc->evtype[n0] = event->hw.event_base; 450979f8671SMichael Cree cpuc->current_idx[n0] = PMC_NO_INDEX; 451979f8671SMichael Cree 452979f8671SMichael Cree if (!alpha_check_constraints(cpuc->event, cpuc->evtype, n0+1)) { 453979f8671SMichael Cree cpuc->n_events++; 454979f8671SMichael Cree cpuc->n_added++; 455979f8671SMichael Cree ret = 0; 456979f8671SMichael Cree } 457979f8671SMichael Cree } 458979f8671SMichael Cree 459a4eaf7f1SPeter Zijlstra hwc->state = PERF_HES_UPTODATE; 460a4eaf7f1SPeter Zijlstra if (!(flags & PERF_EF_START)) 461a4eaf7f1SPeter Zijlstra hwc->state |= PERF_HES_STOPPED; 462a4eaf7f1SPeter Zijlstra 46365175c07SMichael Cree local_irq_restore(irq_flags); 46433696fc0SPeter Zijlstra perf_pmu_enable(event->pmu); 465979f8671SMichael Cree 466979f8671SMichael Cree return ret; 467979f8671SMichael Cree } 468979f8671SMichael Cree 469979f8671SMichael Cree 470979f8671SMichael Cree 471979f8671SMichael Cree /* Disable performance monitoring unit 472979f8671SMichael Cree * - this function is called from outside this module via the pmu struct 473979f8671SMichael Cree * returned from perf event initialisation. 474979f8671SMichael Cree */ 475a4eaf7f1SPeter Zijlstra static void alpha_pmu_del(struct perf_event *event, int flags) 476979f8671SMichael Cree { 477979f8671SMichael Cree struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events); 478979f8671SMichael Cree struct hw_perf_event *hwc = &event->hw; 47965175c07SMichael Cree unsigned long irq_flags; 480979f8671SMichael Cree int j; 481979f8671SMichael Cree 48233696fc0SPeter Zijlstra perf_pmu_disable(event->pmu); 48365175c07SMichael Cree local_irq_save(irq_flags); 484979f8671SMichael Cree 485979f8671SMichael Cree for (j = 0; j < cpuc->n_events; j++) { 486979f8671SMichael Cree if (event == cpuc->event[j]) { 487979f8671SMichael Cree int idx = cpuc->current_idx[j]; 488979f8671SMichael Cree 489979f8671SMichael Cree /* Shift remaining entries down into the existing 490979f8671SMichael Cree * slot. 491979f8671SMichael Cree */ 492979f8671SMichael Cree while (++j < cpuc->n_events) { 493979f8671SMichael Cree cpuc->event[j - 1] = cpuc->event[j]; 494979f8671SMichael Cree cpuc->evtype[j - 1] = cpuc->evtype[j]; 495979f8671SMichael Cree cpuc->current_idx[j - 1] = 496979f8671SMichael Cree cpuc->current_idx[j]; 497979f8671SMichael Cree } 498979f8671SMichael Cree 499979f8671SMichael Cree /* Absorb the final count and turn off the event. */ 500979f8671SMichael Cree alpha_perf_event_update(event, hwc, idx, 0); 501979f8671SMichael Cree perf_event_update_userpage(event); 502979f8671SMichael Cree 503979f8671SMichael Cree cpuc->idx_mask &= ~(1UL<<idx); 504979f8671SMichael Cree cpuc->n_events--; 505979f8671SMichael Cree break; 506979f8671SMichael Cree } 507979f8671SMichael Cree } 508979f8671SMichael Cree 50965175c07SMichael Cree local_irq_restore(irq_flags); 51033696fc0SPeter Zijlstra perf_pmu_enable(event->pmu); 511979f8671SMichael Cree } 512979f8671SMichael Cree 513979f8671SMichael Cree 514979f8671SMichael Cree static void alpha_pmu_read(struct perf_event *event) 515979f8671SMichael Cree { 516979f8671SMichael Cree struct hw_perf_event *hwc = &event->hw; 517979f8671SMichael Cree 518979f8671SMichael Cree alpha_perf_event_update(event, hwc, hwc->idx, 0); 519979f8671SMichael Cree } 520979f8671SMichael Cree 521979f8671SMichael Cree 522a4eaf7f1SPeter Zijlstra static void alpha_pmu_stop(struct perf_event *event, int flags) 523979f8671SMichael Cree { 524979f8671SMichael Cree struct hw_perf_event *hwc = &event->hw; 525979f8671SMichael Cree struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events); 526979f8671SMichael Cree 527a4eaf7f1SPeter Zijlstra if (!(hwc->state & PERF_HES_STOPPED)) { 52865175c07SMichael Cree cpuc->idx_mask &= ~(1UL<<hwc->idx); 529a4eaf7f1SPeter Zijlstra hwc->state |= PERF_HES_STOPPED; 530a4eaf7f1SPeter Zijlstra } 531a4eaf7f1SPeter Zijlstra 532a4eaf7f1SPeter Zijlstra if ((flags & PERF_EF_UPDATE) && !(hwc->state & PERF_HES_UPTODATE)) { 533a4eaf7f1SPeter Zijlstra alpha_perf_event_update(event, hwc, hwc->idx, 0); 534a4eaf7f1SPeter Zijlstra hwc->state |= PERF_HES_UPTODATE; 535a4eaf7f1SPeter Zijlstra } 536a4eaf7f1SPeter Zijlstra 537a4eaf7f1SPeter Zijlstra if (cpuc->enabled) 53865175c07SMichael Cree wrperfmon(PERFMON_CMD_DISABLE, (1UL<<hwc->idx)); 539a4eaf7f1SPeter Zijlstra } 540a4eaf7f1SPeter Zijlstra 541a4eaf7f1SPeter Zijlstra 542a4eaf7f1SPeter Zijlstra static void alpha_pmu_start(struct perf_event *event, int flags) 543a4eaf7f1SPeter Zijlstra { 544a4eaf7f1SPeter Zijlstra struct hw_perf_event *hwc = &event->hw; 545a4eaf7f1SPeter Zijlstra struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events); 546a4eaf7f1SPeter Zijlstra 547a4eaf7f1SPeter Zijlstra if (WARN_ON_ONCE(!(hwc->state & PERF_HES_STOPPED))) 548a4eaf7f1SPeter Zijlstra return; 549a4eaf7f1SPeter Zijlstra 550a4eaf7f1SPeter Zijlstra if (flags & PERF_EF_RELOAD) { 551a4eaf7f1SPeter Zijlstra WARN_ON_ONCE(!(hwc->state & PERF_HES_UPTODATE)); 552a4eaf7f1SPeter Zijlstra alpha_perf_event_set_period(event, hwc, hwc->idx); 553a4eaf7f1SPeter Zijlstra } 554a4eaf7f1SPeter Zijlstra 555a4eaf7f1SPeter Zijlstra hwc->state = 0; 556a4eaf7f1SPeter Zijlstra 557979f8671SMichael Cree cpuc->idx_mask |= 1UL<<hwc->idx; 558a4eaf7f1SPeter Zijlstra if (cpuc->enabled) 559979f8671SMichael Cree wrperfmon(PERFMON_CMD_ENABLE, (1UL<<hwc->idx)); 560979f8671SMichael Cree } 561979f8671SMichael Cree 562979f8671SMichael Cree 563979f8671SMichael Cree /* 564979f8671SMichael Cree * Check that CPU performance counters are supported. 565979f8671SMichael Cree * - currently support EV67 and later CPUs. 566979f8671SMichael Cree * - actually some later revisions of the EV6 have the same PMC model as the 567979f8671SMichael Cree * EV67 but we don't do suffiently deep CPU detection to detect them. 568979f8671SMichael Cree * Bad luck to the very few people who might have one, I guess. 569979f8671SMichael Cree */ 570979f8671SMichael Cree static int supported_cpu(void) 571979f8671SMichael Cree { 572979f8671SMichael Cree struct percpu_struct *cpu; 573979f8671SMichael Cree unsigned long cputype; 574979f8671SMichael Cree 575979f8671SMichael Cree /* Get cpu type from HW */ 576979f8671SMichael Cree cpu = (struct percpu_struct *)((char *)hwrpb + hwrpb->processor_offset); 577979f8671SMichael Cree cputype = cpu->type & 0xffffffff; 578979f8671SMichael Cree /* Include all of EV67, EV68, EV7, EV79 and EV69 as supported. */ 579979f8671SMichael Cree return (cputype >= EV67_CPU) && (cputype <= EV69_CPU); 580979f8671SMichael Cree } 581979f8671SMichael Cree 582979f8671SMichael Cree 583979f8671SMichael Cree 584979f8671SMichael Cree static void hw_perf_event_destroy(struct perf_event *event) 585979f8671SMichael Cree { 586979f8671SMichael Cree /* Nothing to be done! */ 587979f8671SMichael Cree return; 588979f8671SMichael Cree } 589979f8671SMichael Cree 590979f8671SMichael Cree 591979f8671SMichael Cree 592979f8671SMichael Cree static int __hw_perf_event_init(struct perf_event *event) 593979f8671SMichael Cree { 594979f8671SMichael Cree struct perf_event_attr *attr = &event->attr; 595979f8671SMichael Cree struct hw_perf_event *hwc = &event->hw; 596979f8671SMichael Cree struct perf_event *evts[MAX_HWEVENTS]; 597979f8671SMichael Cree unsigned long evtypes[MAX_HWEVENTS]; 598979f8671SMichael Cree int idx_rubbish_bin[MAX_HWEVENTS]; 599979f8671SMichael Cree int ev; 600979f8671SMichael Cree int n; 601979f8671SMichael Cree 602979f8671SMichael Cree /* We only support a limited range of HARDWARE event types with one 603979f8671SMichael Cree * only programmable via a RAW event type. 604979f8671SMichael Cree */ 605979f8671SMichael Cree if (attr->type == PERF_TYPE_HARDWARE) { 606979f8671SMichael Cree if (attr->config >= alpha_pmu->max_events) 607979f8671SMichael Cree return -EINVAL; 608979f8671SMichael Cree ev = alpha_pmu->event_map[attr->config]; 609979f8671SMichael Cree } else if (attr->type == PERF_TYPE_HW_CACHE) { 610979f8671SMichael Cree return -EOPNOTSUPP; 611979f8671SMichael Cree } else if (attr->type == PERF_TYPE_RAW) { 612979f8671SMichael Cree ev = attr->config & 0xff; 613979f8671SMichael Cree } else { 614979f8671SMichael Cree return -EOPNOTSUPP; 615979f8671SMichael Cree } 616979f8671SMichael Cree 617979f8671SMichael Cree if (ev < 0) { 618979f8671SMichael Cree return ev; 619979f8671SMichael Cree } 620979f8671SMichael Cree 621979f8671SMichael Cree /* The EV67 does not support mode exclusion */ 622979f8671SMichael Cree if (attr->exclude_kernel || attr->exclude_user 623979f8671SMichael Cree || attr->exclude_hv || attr->exclude_idle) { 624979f8671SMichael Cree return -EPERM; 625979f8671SMichael Cree } 626979f8671SMichael Cree 627979f8671SMichael Cree /* 628979f8671SMichael Cree * We place the event type in event_base here and leave calculation 629979f8671SMichael Cree * of the codes to programme the PMU for alpha_pmu_enable() because 630979f8671SMichael Cree * it is only then we will know what HW events are actually 631979f8671SMichael Cree * scheduled on to the PMU. At that point the code to programme the 632979f8671SMichael Cree * PMU is put into config_base and the PMC to use is placed into 633979f8671SMichael Cree * idx. We initialise idx (below) to PMC_NO_INDEX to indicate that 634979f8671SMichael Cree * it is yet to be determined. 635979f8671SMichael Cree */ 636979f8671SMichael Cree hwc->event_base = ev; 637979f8671SMichael Cree 638979f8671SMichael Cree /* Collect events in a group together suitable for calling 639979f8671SMichael Cree * alpha_check_constraints() to verify that the group as a whole can 640979f8671SMichael Cree * be scheduled on to the PMU. 641979f8671SMichael Cree */ 642979f8671SMichael Cree n = 0; 643979f8671SMichael Cree if (event->group_leader != event) { 644979f8671SMichael Cree n = collect_events(event->group_leader, 645979f8671SMichael Cree alpha_pmu->num_pmcs - 1, 646979f8671SMichael Cree evts, evtypes, idx_rubbish_bin); 647979f8671SMichael Cree if (n < 0) 648979f8671SMichael Cree return -EINVAL; 649979f8671SMichael Cree } 650979f8671SMichael Cree evtypes[n] = hwc->event_base; 651979f8671SMichael Cree evts[n] = event; 652979f8671SMichael Cree 653979f8671SMichael Cree if (alpha_check_constraints(evts, evtypes, n + 1)) 654979f8671SMichael Cree return -EINVAL; 655979f8671SMichael Cree 656979f8671SMichael Cree /* Indicate that PMU config and idx are yet to be determined. */ 657979f8671SMichael Cree hwc->config_base = 0; 658979f8671SMichael Cree hwc->idx = PMC_NO_INDEX; 659979f8671SMichael Cree 660979f8671SMichael Cree event->destroy = hw_perf_event_destroy; 661979f8671SMichael Cree 662979f8671SMichael Cree /* 663979f8671SMichael Cree * Most architectures reserve the PMU for their use at this point. 664979f8671SMichael Cree * As there is no existing mechanism to arbitrate usage and there 665979f8671SMichael Cree * appears to be no other user of the Alpha PMU we just assume 666979f8671SMichael Cree * that we can just use it, hence a NO-OP here. 667979f8671SMichael Cree * 668979f8671SMichael Cree * Maybe an alpha_reserve_pmu() routine should be implemented but is 669979f8671SMichael Cree * anything else ever going to use it? 670979f8671SMichael Cree */ 671979f8671SMichael Cree 672979f8671SMichael Cree if (!hwc->sample_period) { 673979f8671SMichael Cree hwc->sample_period = alpha_pmu->pmc_max_period[0]; 674979f8671SMichael Cree hwc->last_period = hwc->sample_period; 6757b598cddSMichael Cree local64_set(&hwc->period_left, hwc->sample_period); 676979f8671SMichael Cree } 677979f8671SMichael Cree 678979f8671SMichael Cree return 0; 679979f8671SMichael Cree } 680979f8671SMichael Cree 681b0a873ebSPeter Zijlstra /* 682b0a873ebSPeter Zijlstra * Main entry point to initialise a HW performance event. 683b0a873ebSPeter Zijlstra */ 684b0a873ebSPeter Zijlstra static int alpha_pmu_event_init(struct perf_event *event) 685b0a873ebSPeter Zijlstra { 686b0a873ebSPeter Zijlstra int err; 687b0a873ebSPeter Zijlstra 688b0a873ebSPeter Zijlstra switch (event->attr.type) { 689b0a873ebSPeter Zijlstra case PERF_TYPE_RAW: 690b0a873ebSPeter Zijlstra case PERF_TYPE_HARDWARE: 691b0a873ebSPeter Zijlstra case PERF_TYPE_HW_CACHE: 692b0a873ebSPeter Zijlstra break; 693b0a873ebSPeter Zijlstra 694b0a873ebSPeter Zijlstra default: 695b0a873ebSPeter Zijlstra return -ENOENT; 696b0a873ebSPeter Zijlstra } 697b0a873ebSPeter Zijlstra 698b0a873ebSPeter Zijlstra if (!alpha_pmu) 699b0a873ebSPeter Zijlstra return -ENODEV; 700b0a873ebSPeter Zijlstra 701b0a873ebSPeter Zijlstra /* Do the real initialisation work. */ 702b0a873ebSPeter Zijlstra err = __hw_perf_event_init(event); 703b0a873ebSPeter Zijlstra 704b0a873ebSPeter Zijlstra return err; 705b0a873ebSPeter Zijlstra } 706b0a873ebSPeter Zijlstra 707979f8671SMichael Cree /* 708979f8671SMichael Cree * Main entry point - enable HW performance counters. 709979f8671SMichael Cree */ 710a4eaf7f1SPeter Zijlstra static void alpha_pmu_enable(struct pmu *pmu) 711979f8671SMichael Cree { 712979f8671SMichael Cree struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events); 713979f8671SMichael Cree 714979f8671SMichael Cree if (cpuc->enabled) 715979f8671SMichael Cree return; 716979f8671SMichael Cree 717979f8671SMichael Cree cpuc->enabled = 1; 718979f8671SMichael Cree barrier(); 719979f8671SMichael Cree 720979f8671SMichael Cree if (cpuc->n_events > 0) { 721979f8671SMichael Cree /* Update cpuc with information from any new scheduled events. */ 722979f8671SMichael Cree maybe_change_configuration(cpuc); 723979f8671SMichael Cree 724979f8671SMichael Cree /* Start counting the desired events. */ 725979f8671SMichael Cree wrperfmon(PERFMON_CMD_LOGGING_OPTIONS, EV67_PCTR_MODE_AGGREGATE); 726979f8671SMichael Cree wrperfmon(PERFMON_CMD_DESIRED_EVENTS, cpuc->config); 727979f8671SMichael Cree wrperfmon(PERFMON_CMD_ENABLE, cpuc->idx_mask); 728979f8671SMichael Cree } 729979f8671SMichael Cree } 730979f8671SMichael Cree 731979f8671SMichael Cree 732979f8671SMichael Cree /* 733979f8671SMichael Cree * Main entry point - disable HW performance counters. 734979f8671SMichael Cree */ 735979f8671SMichael Cree 736a4eaf7f1SPeter Zijlstra static void alpha_pmu_disable(struct pmu *pmu) 737979f8671SMichael Cree { 738979f8671SMichael Cree struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events); 739979f8671SMichael Cree 740979f8671SMichael Cree if (!cpuc->enabled) 741979f8671SMichael Cree return; 742979f8671SMichael Cree 743979f8671SMichael Cree cpuc->enabled = 0; 744979f8671SMichael Cree cpuc->n_added = 0; 745979f8671SMichael Cree 746979f8671SMichael Cree wrperfmon(PERFMON_CMD_DISABLE, cpuc->idx_mask); 747979f8671SMichael Cree } 748979f8671SMichael Cree 74933696fc0SPeter Zijlstra static struct pmu pmu = { 750a4eaf7f1SPeter Zijlstra .pmu_enable = alpha_pmu_enable, 751a4eaf7f1SPeter Zijlstra .pmu_disable = alpha_pmu_disable, 75233696fc0SPeter Zijlstra .event_init = alpha_pmu_event_init, 753a4eaf7f1SPeter Zijlstra .add = alpha_pmu_add, 754a4eaf7f1SPeter Zijlstra .del = alpha_pmu_del, 755a4eaf7f1SPeter Zijlstra .start = alpha_pmu_start, 756a4eaf7f1SPeter Zijlstra .stop = alpha_pmu_stop, 75733696fc0SPeter Zijlstra .read = alpha_pmu_read, 75833696fc0SPeter Zijlstra }; 75933696fc0SPeter Zijlstra 760979f8671SMichael Cree 761979f8671SMichael Cree /* 762979f8671SMichael Cree * Main entry point - don't know when this is called but it 763979f8671SMichael Cree * obviously dumps debug info. 764979f8671SMichael Cree */ 765979f8671SMichael Cree void perf_event_print_debug(void) 766979f8671SMichael Cree { 767979f8671SMichael Cree unsigned long flags; 768979f8671SMichael Cree unsigned long pcr; 769979f8671SMichael Cree int pcr0, pcr1; 770979f8671SMichael Cree int cpu; 771979f8671SMichael Cree 772979f8671SMichael Cree if (!supported_cpu()) 773979f8671SMichael Cree return; 774979f8671SMichael Cree 775979f8671SMichael Cree local_irq_save(flags); 776979f8671SMichael Cree 777979f8671SMichael Cree cpu = smp_processor_id(); 778979f8671SMichael Cree 779979f8671SMichael Cree pcr = wrperfmon(PERFMON_CMD_READ, 0); 780979f8671SMichael Cree pcr0 = (pcr >> alpha_pmu->pmc_count_shift[0]) & alpha_pmu->pmc_count_mask[0]; 781979f8671SMichael Cree pcr1 = (pcr >> alpha_pmu->pmc_count_shift[1]) & alpha_pmu->pmc_count_mask[1]; 782979f8671SMichael Cree 783979f8671SMichael Cree pr_info("CPU#%d: PCTR0[%06x] PCTR1[%06x]\n", cpu, pcr0, pcr1); 784979f8671SMichael Cree 785979f8671SMichael Cree local_irq_restore(flags); 786979f8671SMichael Cree } 787979f8671SMichael Cree 788979f8671SMichael Cree 789979f8671SMichael Cree /* 790979f8671SMichael Cree * Performance Monitoring Interrupt Service Routine called when a PMC 791979f8671SMichael Cree * overflows. The PMC that overflowed is passed in la_ptr. 792979f8671SMichael Cree */ 793979f8671SMichael Cree static void alpha_perf_event_irq_handler(unsigned long la_ptr, 794979f8671SMichael Cree struct pt_regs *regs) 795979f8671SMichael Cree { 796979f8671SMichael Cree struct cpu_hw_events *cpuc; 797979f8671SMichael Cree struct perf_sample_data data; 798979f8671SMichael Cree struct perf_event *event; 799979f8671SMichael Cree struct hw_perf_event *hwc; 800979f8671SMichael Cree int idx, j; 801979f8671SMichael Cree 802979f8671SMichael Cree __get_cpu_var(irq_pmi_count)++; 803979f8671SMichael Cree cpuc = &__get_cpu_var(cpu_hw_events); 804979f8671SMichael Cree 805979f8671SMichael Cree /* Completely counting through the PMC's period to trigger a new PMC 806979f8671SMichael Cree * overflow interrupt while in this interrupt routine is utterly 807979f8671SMichael Cree * disastrous! The EV6 and EV67 counters are sufficiently large to 808979f8671SMichael Cree * prevent this but to be really sure disable the PMCs. 809979f8671SMichael Cree */ 810979f8671SMichael Cree wrperfmon(PERFMON_CMD_DISABLE, cpuc->idx_mask); 811979f8671SMichael Cree 812979f8671SMichael Cree /* la_ptr is the counter that overflowed. */ 81315ac9a39SPeter Zijlstra if (unlikely(la_ptr >= alpha_pmu->num_pmcs)) { 814979f8671SMichael Cree /* This should never occur! */ 815979f8671SMichael Cree irq_err_count++; 816979f8671SMichael Cree pr_warning("PMI: silly index %ld\n", la_ptr); 817979f8671SMichael Cree wrperfmon(PERFMON_CMD_ENABLE, cpuc->idx_mask); 818979f8671SMichael Cree return; 819979f8671SMichael Cree } 820979f8671SMichael Cree 821979f8671SMichael Cree idx = la_ptr; 822979f8671SMichael Cree 823979f8671SMichael Cree perf_sample_data_init(&data, 0); 824979f8671SMichael Cree for (j = 0; j < cpuc->n_events; j++) { 825979f8671SMichael Cree if (cpuc->current_idx[j] == idx) 826979f8671SMichael Cree break; 827979f8671SMichael Cree } 828979f8671SMichael Cree 829979f8671SMichael Cree if (unlikely(j == cpuc->n_events)) { 830979f8671SMichael Cree /* This can occur if the event is disabled right on a PMC overflow. */ 831979f8671SMichael Cree wrperfmon(PERFMON_CMD_ENABLE, cpuc->idx_mask); 832979f8671SMichael Cree return; 833979f8671SMichael Cree } 834979f8671SMichael Cree 835979f8671SMichael Cree event = cpuc->event[j]; 836979f8671SMichael Cree 837979f8671SMichael Cree if (unlikely(!event)) { 838979f8671SMichael Cree /* This should never occur! */ 839979f8671SMichael Cree irq_err_count++; 840979f8671SMichael Cree pr_warning("PMI: No event at index %d!\n", idx); 841979f8671SMichael Cree wrperfmon(PERFMON_CMD_ENABLE, cpuc->idx_mask); 842979f8671SMichael Cree return; 843979f8671SMichael Cree } 844979f8671SMichael Cree 845979f8671SMichael Cree hwc = &event->hw; 846979f8671SMichael Cree alpha_perf_event_update(event, hwc, idx, alpha_pmu->pmc_max_period[idx]+1); 847979f8671SMichael Cree data.period = event->hw.last_period; 848979f8671SMichael Cree 849979f8671SMichael Cree if (alpha_perf_event_set_period(event, hwc, idx)) { 850a8b0ca17SPeter Zijlstra if (perf_event_overflow(event, &data, regs)) { 851979f8671SMichael Cree /* Interrupts coming too quickly; "throttle" the 852979f8671SMichael Cree * counter, i.e., disable it for a little while. 853979f8671SMichael Cree */ 85465175c07SMichael Cree alpha_pmu_stop(event, 0); 855979f8671SMichael Cree } 856979f8671SMichael Cree } 857979f8671SMichael Cree wrperfmon(PERFMON_CMD_ENABLE, cpuc->idx_mask); 858979f8671SMichael Cree 859979f8671SMichael Cree return; 860979f8671SMichael Cree } 861979f8671SMichael Cree 862979f8671SMichael Cree 863979f8671SMichael Cree 864979f8671SMichael Cree /* 865979f8671SMichael Cree * Init call to initialise performance events at kernel startup. 866979f8671SMichael Cree */ 867004417a6SPeter Zijlstra int __init init_hw_perf_events(void) 868979f8671SMichael Cree { 869979f8671SMichael Cree pr_info("Performance events: "); 870979f8671SMichael Cree 871979f8671SMichael Cree if (!supported_cpu()) { 872979f8671SMichael Cree pr_cont("No support for your CPU.\n"); 873004417a6SPeter Zijlstra return 0; 874979f8671SMichael Cree } 875979f8671SMichael Cree 876979f8671SMichael Cree pr_cont("Supported CPU type!\n"); 877979f8671SMichael Cree 878979f8671SMichael Cree /* Override performance counter IRQ vector */ 879979f8671SMichael Cree 880979f8671SMichael Cree perf_irq = alpha_perf_event_irq_handler; 881979f8671SMichael Cree 882979f8671SMichael Cree /* And set up PMU specification */ 883979f8671SMichael Cree alpha_pmu = &ev67_pmu; 884b0a873ebSPeter Zijlstra 8852e80a82aSPeter Zijlstra perf_pmu_register(&pmu, "cpu", PERF_TYPE_RAW); 886979f8671SMichael Cree 887004417a6SPeter Zijlstra return 0; 888004417a6SPeter Zijlstra } 889004417a6SPeter Zijlstra early_initcall(init_hw_perf_events); 890