PageRenderTime 55ms CodeModel.GetById 27ms RepoModel.GetById 0ms app.codeStats 0ms

/arch/arm/include/asm/pmu.h

http://github.com/mirrors/linux-2.6
C++ Header | 111 lines | 55 code | 16 blank | 40 comment | 0 complexity | 64d03d5ec4d50a21df823f137d9fba9e MD5 | raw file
Possible License(s): LGPL-2.0, AGPL-1.0, GPL-2.0
  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 perf_event *event);
  63. void (*disable)(struct perf_event *event);
  64. int (*get_event_idx)(struct pmu_hw_events *hw_events,
  65. struct perf_event *event);
  66. int (*set_event_filter)(struct hw_perf_event *evt,
  67. struct perf_event_attr *attr);
  68. u32 (*read_counter)(struct perf_event *event);
  69. void (*write_counter)(struct perf_event *event, u32 val);
  70. void (*start)(struct arm_pmu *);
  71. void (*stop)(struct arm_pmu *);
  72. void (*reset)(void *);
  73. int (*request_irq)(struct arm_pmu *, irq_handler_t handler);
  74. void (*free_irq)(struct arm_pmu *);
  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, int type);
  86. u64 armpmu_event_update(struct perf_event *event);
  87. int armpmu_event_set_period(struct perf_event *event);
  88. int armpmu_map_event(struct perf_event *event,
  89. const unsigned (*event_map)[PERF_COUNT_HW_MAX],
  90. const unsigned (*cache_map)[PERF_COUNT_HW_CACHE_MAX]
  91. [PERF_COUNT_HW_CACHE_OP_MAX]
  92. [PERF_COUNT_HW_CACHE_RESULT_MAX],
  93. u32 raw_event_mask);
  94. #endif /* CONFIG_HW_PERF_EVENTS */
  95. #endif /* __ARM_PMU_H__ */