pmu.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. #ifndef __ARM_PMU_H__
  12. #define __ARM_PMU_H__
  13. #include <linux/interrupt.h>
  14. #include <linux/perf_event.h>
  15. /*
  16. * struct arm_pmu_platdata - ARM PMU platform data
  17. *
  18. * @handle_irq: an optional handler which will be called from the
  19. * interrupt and passed the address of the low level handler,
  20. * and can be used to implement any platform specific handling
  21. * before or after calling it.
  22. * @runtime_resume: an optional handler which will be called by the
  23. * runtime PM framework following a call to pm_runtime_get().
  24. * Note that if pm_runtime_get() is called more than once in
  25. * succession this handler will only be called once.
  26. * @runtime_suspend: an optional handler which will be called by the
  27. * runtime PM framework following a call to pm_runtime_put().
  28. * Note that if pm_runtime_get() is called more than once in
  29. * succession this handler will only be called following the
  30. * final call to pm_runtime_put() that actually disables the
  31. * hardware.
  32. */
  33. struct arm_pmu_platdata {
  34. irqreturn_t (*handle_irq)(int irq, void *dev,
  35. irq_handler_t pmu_handler);
  36. int (*runtime_resume)(struct device *dev);
  37. int (*runtime_suspend)(struct device *dev);
  38. };
  39. #ifdef CONFIG_HW_PERF_EVENTS
  40. /* The events for a given PMU register set. */
  41. struct pmu_hw_events {
  42. /*
  43. * The events that are active on the PMU for the given index.
  44. */
  45. struct perf_event **events;
  46. /*
  47. * A 1 bit for an index indicates that the counter is being used for
  48. * an event. A 0 means that the counter can be used.
  49. */
  50. unsigned long *used_mask;
  51. /*
  52. * Hardware lock to serialize accesses to PMU registers. Needed for the
  53. * read/modify/write sequences.
  54. */
  55. raw_spinlock_t pmu_lock;
  56. };
  57. struct arm_pmu {
  58. struct pmu pmu;
  59. cpumask_t active_irqs;
  60. char *name;
  61. irqreturn_t (*handle_irq)(int irq_num, void *dev);
  62. void (*enable)(struct hw_perf_event *evt, int idx);
  63. void (*disable)(struct hw_perf_event *evt, int idx);
  64. int (*get_event_idx)(struct pmu_hw_events *hw_events,
  65. struct hw_perf_event *hwc);
  66. int (*set_event_filter)(struct hw_perf_event *evt,
  67. struct perf_event_attr *attr);
  68. u32 (*read_counter)(int idx);
  69. void (*write_counter)(int idx, u32 val);
  70. void (*start)(void);
  71. void (*stop)(void);
  72. void (*reset)(void *);
  73. int (*request_irq)(irq_handler_t handler);
  74. void (*free_irq)(void);
  75. int (*map_event)(struct perf_event *event);
  76. int num_events;
  77. atomic_t active_events;
  78. struct mutex reserve_mutex;
  79. u64 max_period;
  80. struct platform_device *plat_device;
  81. struct pmu_hw_events *(*get_hw_events)(void);
  82. };
  83. #define to_arm_pmu(p) (container_of(p, struct arm_pmu, pmu))
  84. extern const struct dev_pm_ops armpmu_dev_pm_ops;
  85. int armpmu_register(struct arm_pmu *armpmu, char *name, int type);
  86. u64 armpmu_event_update(struct perf_event *event,
  87. struct hw_perf_event *hwc,
  88. int idx);
  89. int armpmu_event_set_period(struct perf_event *event,
  90. struct hw_perf_event *hwc,
  91. int idx);
  92. int armpmu_map_event(struct perf_event *event,
  93. const unsigned (*event_map)[PERF_COUNT_HW_MAX],
  94. const unsigned (*cache_map)[PERF_COUNT_HW_CACHE_MAX]
  95. [PERF_COUNT_HW_CACHE_OP_MAX]
  96. [PERF_COUNT_HW_CACHE_RESULT_MAX],
  97. u32 raw_event_mask);
  98. #endif /* CONFIG_HW_PERF_EVENTS */
  99. #endif /* __ARM_PMU_H__ */