Jamie Iles | 0f4f067 | 2010-02-02 20:23:15 +0100 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/include/asm/pmu.h |
| 3 | * |
| 4 | * Copyright (C) 2009 picoChip Designs Ltd, Jamie Iles |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | * |
| 10 | */ |
| 11 | |
| 12 | #ifndef __ARM_PMU_H__ |
| 13 | #define __ARM_PMU_H__ |
| 14 | |
Rabin Vincent | 0e25a5c | 2011-02-08 09:24:36 +0530 | [diff] [blame] | 15 | #include <linux/interrupt.h> |
Mark Rutland | 0ce4708 | 2011-05-19 10:07:57 +0100 | [diff] [blame] | 16 | #include <linux/perf_event.h> |
Rabin Vincent | 0e25a5c | 2011-02-08 09:24:36 +0530 | [diff] [blame] | 17 | |
Mark Rutland | 548a86c | 2014-05-23 18:11:14 +0100 | [diff] [blame] | 18 | #include <asm/cputype.h> |
| 19 | |
Will Deacon | b0e8959 | 2011-07-26 22:10:28 +0100 | [diff] [blame] | 20 | /* |
Rabin Vincent | 0e25a5c | 2011-02-08 09:24:36 +0530 | [diff] [blame] | 21 | * struct arm_pmu_platdata - ARM PMU platform data |
| 22 | * |
Ming Lei | e0516a6 | 2011-03-02 15:00:08 +0800 | [diff] [blame] | 23 | * @handle_irq: an optional handler which will be called from the |
| 24 | * interrupt and passed the address of the low level handler, |
| 25 | * and can be used to implement any platform specific handling |
| 26 | * before or after calling it. |
Rabin Vincent | 0e25a5c | 2011-02-08 09:24:36 +0530 | [diff] [blame] | 27 | */ |
| 28 | struct arm_pmu_platdata { |
| 29 | irqreturn_t (*handle_irq)(int irq, void *dev, |
| 30 | irq_handler_t pmu_handler); |
| 31 | }; |
| 32 | |
Mark Rutland | fa8ad78 | 2015-07-06 12:23:53 +0100 | [diff] [blame] | 33 | #ifdef CONFIG_ARM_PMU |
Mark Rutland | 0ce4708 | 2011-05-19 10:07:57 +0100 | [diff] [blame] | 34 | |
Mark Rutland | ac8674d | 2014-05-28 18:08:40 +0100 | [diff] [blame] | 35 | /* |
| 36 | * The ARMv7 CPU PMU supports up to 32 event counters. |
| 37 | */ |
| 38 | #define ARMPMU_MAX_HWEVENTS 32 |
| 39 | |
| 40 | #define HW_OP_UNSUPPORTED 0xFFFF |
| 41 | #define C(_x) PERF_COUNT_HW_CACHE_##_x |
| 42 | #define CACHE_OP_UNSUPPORTED 0xFFFF |
| 43 | |
Mark Rutland | 1113ff9 | 2014-05-29 17:29:51 +0100 | [diff] [blame] | 44 | #define PERF_MAP_ALL_UNSUPPORTED \ |
| 45 | [0 ... PERF_COUNT_HW_MAX - 1] = HW_OP_UNSUPPORTED |
| 46 | |
| 47 | #define PERF_CACHE_MAP_ALL_UNSUPPORTED \ |
| 48 | [0 ... C(MAX) - 1] = { \ |
| 49 | [0 ... C(OP_MAX) - 1] = { \ |
| 50 | [0 ... C(RESULT_MAX) - 1] = CACHE_OP_UNSUPPORTED, \ |
| 51 | }, \ |
| 52 | } |
| 53 | |
Mark Rutland | 0ce4708 | 2011-05-19 10:07:57 +0100 | [diff] [blame] | 54 | /* The events for a given PMU register set. */ |
| 55 | struct pmu_hw_events { |
| 56 | /* |
| 57 | * The events that are active on the PMU for the given index. |
| 58 | */ |
Mark Rutland | a456084 | 2014-05-13 19:08:19 +0100 | [diff] [blame] | 59 | struct perf_event *events[ARMPMU_MAX_HWEVENTS]; |
Mark Rutland | 0ce4708 | 2011-05-19 10:07:57 +0100 | [diff] [blame] | 60 | |
| 61 | /* |
| 62 | * A 1 bit for an index indicates that the counter is being used for |
| 63 | * an event. A 0 means that the counter can be used. |
| 64 | */ |
Mark Rutland | a456084 | 2014-05-13 19:08:19 +0100 | [diff] [blame] | 65 | DECLARE_BITMAP(used_mask, ARMPMU_MAX_HWEVENTS); |
Mark Rutland | 0ce4708 | 2011-05-19 10:07:57 +0100 | [diff] [blame] | 66 | |
| 67 | /* |
| 68 | * Hardware lock to serialize accesses to PMU registers. Needed for the |
| 69 | * read/modify/write sequences. |
| 70 | */ |
| 71 | raw_spinlock_t pmu_lock; |
Mark Rutland | 5ebd920 | 2014-05-13 19:46:10 +0100 | [diff] [blame] | 72 | |
| 73 | /* |
| 74 | * When using percpu IRQs, we need a percpu dev_id. Place it here as we |
| 75 | * already have to allocate this struct per cpu. |
| 76 | */ |
| 77 | struct arm_pmu *percpu_pmu; |
Mark Rutland | 0ce4708 | 2011-05-19 10:07:57 +0100 | [diff] [blame] | 78 | }; |
| 79 | |
| 80 | struct arm_pmu { |
| 81 | struct pmu pmu; |
Mark Rutland | 0ce4708 | 2011-05-19 10:07:57 +0100 | [diff] [blame] | 82 | cpumask_t active_irqs; |
Mark Rutland | cc88116d | 2015-05-13 17:12:25 +0100 | [diff] [blame] | 83 | cpumask_t supported_cpus; |
Will Deacon | 9fd85eb | 2015-03-06 11:54:09 +0000 | [diff] [blame] | 84 | int *irq_affinity; |
Will Deacon | 4295b89 | 2012-07-06 15:45:00 +0100 | [diff] [blame] | 85 | char *name; |
Mark Rutland | 0ce4708 | 2011-05-19 10:07:57 +0100 | [diff] [blame] | 86 | irqreturn_t (*handle_irq)(int irq_num, void *dev); |
Sudeep KarkadaNagesha | ed6f2a5 | 2012-07-30 12:00:02 +0100 | [diff] [blame] | 87 | void (*enable)(struct perf_event *event); |
| 88 | void (*disable)(struct perf_event *event); |
Mark Rutland | 0ce4708 | 2011-05-19 10:07:57 +0100 | [diff] [blame] | 89 | int (*get_event_idx)(struct pmu_hw_events *hw_events, |
Sudeep KarkadaNagesha | ed6f2a5 | 2012-07-30 12:00:02 +0100 | [diff] [blame] | 90 | struct perf_event *event); |
Stephen Boyd | eab443e | 2014-02-07 21:01:22 +0000 | [diff] [blame] | 91 | void (*clear_event_idx)(struct pmu_hw_events *hw_events, |
| 92 | struct perf_event *event); |
Mark Rutland | 0ce4708 | 2011-05-19 10:07:57 +0100 | [diff] [blame] | 93 | int (*set_event_filter)(struct hw_perf_event *evt, |
| 94 | struct perf_event_attr *attr); |
Sudeep KarkadaNagesha | ed6f2a5 | 2012-07-30 12:00:02 +0100 | [diff] [blame] | 95 | u32 (*read_counter)(struct perf_event *event); |
| 96 | void (*write_counter)(struct perf_event *event, u32 val); |
| 97 | void (*start)(struct arm_pmu *); |
| 98 | void (*stop)(struct arm_pmu *); |
Mark Rutland | 0ce4708 | 2011-05-19 10:07:57 +0100 | [diff] [blame] | 99 | void (*reset)(void *); |
Sudeep KarkadaNagesha | ed6f2a5 | 2012-07-30 12:00:02 +0100 | [diff] [blame] | 100 | int (*request_irq)(struct arm_pmu *, irq_handler_t handler); |
| 101 | void (*free_irq)(struct arm_pmu *); |
Mark Rutland | 0ce4708 | 2011-05-19 10:07:57 +0100 | [diff] [blame] | 102 | int (*map_event)(struct perf_event *event); |
| 103 | int num_events; |
| 104 | atomic_t active_events; |
| 105 | struct mutex reserve_mutex; |
| 106 | u64 max_period; |
| 107 | struct platform_device *plat_device; |
Mark Rutland | 1167925 | 2014-05-13 19:36:31 +0100 | [diff] [blame] | 108 | struct pmu_hw_events __percpu *hw_events; |
Mark Rutland | af66abf | 2014-10-23 15:23:35 +0100 | [diff] [blame] | 109 | struct notifier_block hotplug_nb; |
Mark Rutland | 0ce4708 | 2011-05-19 10:07:57 +0100 | [diff] [blame] | 110 | }; |
| 111 | |
| 112 | #define to_arm_pmu(p) (container_of(p, struct arm_pmu, pmu)) |
| 113 | |
Will Deacon | 0305230 | 2012-09-21 14:23:47 +0100 | [diff] [blame] | 114 | int armpmu_register(struct arm_pmu *armpmu, int type); |
Mark Rutland | 0ce4708 | 2011-05-19 10:07:57 +0100 | [diff] [blame] | 115 | |
Sudeep KarkadaNagesha | ed6f2a5 | 2012-07-30 12:00:02 +0100 | [diff] [blame] | 116 | u64 armpmu_event_update(struct perf_event *event); |
Mark Rutland | 0ce4708 | 2011-05-19 10:07:57 +0100 | [diff] [blame] | 117 | |
Sudeep KarkadaNagesha | ed6f2a5 | 2012-07-30 12:00:02 +0100 | [diff] [blame] | 118 | int armpmu_event_set_period(struct perf_event *event); |
Mark Rutland | 0ce4708 | 2011-05-19 10:07:57 +0100 | [diff] [blame] | 119 | |
Will Deacon | 6dbc002 | 2012-07-29 12:36:28 +0100 | [diff] [blame] | 120 | int armpmu_map_event(struct perf_event *event, |
| 121 | const unsigned (*event_map)[PERF_COUNT_HW_MAX], |
| 122 | const unsigned (*cache_map)[PERF_COUNT_HW_CACHE_MAX] |
| 123 | [PERF_COUNT_HW_CACHE_OP_MAX] |
| 124 | [PERF_COUNT_HW_CACHE_RESULT_MAX], |
| 125 | u32 raw_event_mask); |
| 126 | |
Mark Rutland | 548a86c | 2014-05-23 18:11:14 +0100 | [diff] [blame] | 127 | struct pmu_probe_info { |
| 128 | unsigned int cpuid; |
| 129 | unsigned int mask; |
| 130 | int (*init)(struct arm_pmu *); |
| 131 | }; |
| 132 | |
| 133 | #define PMU_PROBE(_cpuid, _mask, _fn) \ |
| 134 | { \ |
| 135 | .cpuid = (_cpuid), \ |
| 136 | .mask = (_mask), \ |
| 137 | .init = (_fn), \ |
| 138 | } |
| 139 | |
| 140 | #define ARM_PMU_PROBE(_cpuid, _fn) \ |
| 141 | PMU_PROBE(_cpuid, ARM_CPU_PART_MASK, _fn) |
| 142 | |
| 143 | #define ARM_PMU_XSCALE_MASK ((0xff << 24) | ARM_CPU_XSCALE_ARCH_MASK) |
| 144 | |
| 145 | #define XSCALE_PMU_PROBE(_version, _fn) \ |
| 146 | PMU_PROBE(ARM_CPU_IMP_INTEL << 24 | _version, ARM_PMU_XSCALE_MASK, _fn) |
| 147 | |
Mark Rutland | cfdad29 | 2015-05-26 17:23:35 +0100 | [diff] [blame] | 148 | int arm_pmu_device_probe(struct platform_device *pdev, |
| 149 | const struct of_device_id *of_table, |
| 150 | const struct pmu_probe_info *probe_table); |
| 151 | |
Mark Rutland | fa8ad78 | 2015-07-06 12:23:53 +0100 | [diff] [blame] | 152 | #endif /* CONFIG_ARM_PMU */ |
Mark Rutland | 0ce4708 | 2011-05-19 10:07:57 +0100 | [diff] [blame] | 153 | |
Jamie Iles | 0f4f067 | 2010-02-02 20:23:15 +0100 | [diff] [blame] | 154 | #endif /* __ARM_PMU_H__ */ |