All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v8 0/3] Cavium ARM64 uncore PMU support
@ 2017-07-25 15:04 ` Jan Glauber
  0 siblings, 0 replies; 86+ messages in thread
From: Jan Glauber @ 2017-07-25 15:04 UTC (permalink / raw)
  To: Mark Rutland; +Cc: Will Deacon, linux-arm-kernel, linux-kernel, Jan Glauber

Add support for various PMU counters found on the Cavium ThunderX and
OcteonTx SoC.

The driver provides common "uncore" functions to avoid code duplication and
support adding more device PMUs (like L2 cache) in the future.

Changes to v7:
- Check return code of kasprintf
- Check return code of ioremap
- Add some more comments
- Only call perf_pmu_register after event_init() assignment and list_add
- Various cosmetics

Changes to v6:
- Make driver stand-alone again without hooking into EDAC
- depend on ARCH_THUNDER

Changes to v5:
- Only allow built-in CONFIG_CAVIUM_PMU
- Drop unneeded export of perf_event_update_userpage()
- Simplify callbacks in edac code, move CONFIG_CAVIUM_PMU check
  to header file
- Fix some sparse static warnings
- Add documentation
- Fix OCX TLK event_valid check
- Add group validation in event_init
- Add a guard variable to prevent calling init twice
- Use kasprintf and fix pmu name allocation
- Remove unneeded check for embedded pmu
- Loop around local64_cmpxchg
- Simplify cvm_pmu_lmc_event_valid
- Fix list_add error case

Jan Glauber (3):
  perf: cavium: Support memory controller PMU counters
  perf: cavium: Support transmit-link PMU counters
  perf: cavium: Add Documentation

 Documentation/perf/cavium-pmu.txt |  75 +++++
 drivers/perf/Kconfig              |   8 +
 drivers/perf/Makefile             |   1 +
 drivers/perf/cavium_pmu.c         | 646 ++++++++++++++++++++++++++++++++++++++
 include/linux/cpuhotplug.h        |   1 +
 5 files changed, 731 insertions(+)
 create mode 100644 Documentation/perf/cavium-pmu.txt
 create mode 100644 drivers/perf/cavium_pmu.c

-- 
2.9.0.rc0.21.g7777322

^ permalink raw reply	[flat|nested] 86+ messages in thread

end of thread, other threads:[~2017-08-15  9:13 UTC | newest]

Thread overview: 86+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-25 15:04 [PATCH v8 0/3] Cavium ARM64 uncore PMU support Jan Glauber
2017-07-25 15:04 ` Jan Glauber
2017-07-25 15:04 ` [PATCH v8 1/3] perf: cavium: Support memory controller PMU counters Jan Glauber
2017-07-25 15:04   ` Jan Glauber
2017-07-25 15:39   ` Suzuki K Poulose
2017-07-25 15:39     ` Suzuki K Poulose
2017-07-26 11:19     ` Jan Glauber
2017-07-26 11:19       ` Jan Glauber
2017-07-26 12:47       ` Suzuki K Poulose
2017-07-26 12:47         ` Suzuki K Poulose
2017-07-26 13:10         ` Jan Glauber
2017-07-26 13:10           ` Jan Glauber
2017-07-26 14:35           ` Suzuki K Poulose
2017-07-26 14:35             ` Suzuki K Poulose
2017-07-26 14:55             ` Borislav Petkov
2017-07-26 14:55               ` Borislav Petkov
2017-07-26 15:13               ` Jan Glauber
2017-07-26 15:13                 ` Jan Glauber
2017-07-26 15:17                 ` Suzuki K Poulose
2017-07-26 15:17                   ` Suzuki K Poulose
2017-07-26 15:28                   ` Borislav Petkov
2017-07-26 15:28                     ` Borislav Petkov
2017-07-26 15:46                   ` Jan Glauber
2017-07-26 15:46                     ` Jan Glauber
2017-07-26 16:25                     ` Jonathan Cameron
2017-07-26 16:25                       ` Jonathan Cameron
2017-07-26 16:40                       ` Jan Glauber
2017-07-26 16:40                         ` Jan Glauber
2017-07-26 15:35                 ` Borislav Petkov
2017-07-26 15:35                   ` Borislav Petkov
2017-07-26 15:45                   ` Jan Glauber
2017-07-26 15:45                     ` Jan Glauber
2017-07-26 15:55                     ` Borislav Petkov
2017-07-26 15:55                       ` Borislav Petkov
2017-07-26 16:19                       ` Greg KH
2017-07-26 16:19                         ` Greg KH
2017-07-26 16:30                         ` Borislav Petkov
2017-07-26 16:30                           ` Borislav Petkov
2017-07-26 17:33                           ` Greg KH
2017-07-26 17:33                             ` Greg KH
2017-07-26 17:33                             ` Greg KH
2017-07-26 20:02                             ` David Daney
2017-07-26 20:02                               ` David Daney
2017-07-26 20:02                               ` David Daney
2017-07-26 20:08                               ` Greg KH
2017-07-26 20:08                                 ` Greg KH
2017-07-26 21:02                                 ` David Daney
2017-07-26 21:02                                   ` David Daney
2017-07-26 21:02                                   ` David Daney
2017-07-27  2:29                                   ` Greg KH
2017-07-27  2:29                                     ` Greg KH
2017-07-27  2:29                                     ` Greg KH
2017-07-27 17:29                                     ` David Daney
2017-07-27 17:29                                       ` David Daney
2017-07-27 17:29                                       ` David Daney
2017-07-28  1:11                                       ` Greg KH
2017-07-28  1:11                                         ` Greg KH
2017-07-28  1:11                                         ` Greg KH
2017-07-28  7:23                                         ` Borislav Petkov
2017-07-28  7:23                                           ` Borislav Petkov
2017-07-28  7:23                                           ` Borislav Petkov
2017-07-27  5:11                                   ` Borislav Petkov
2017-07-27  5:11                                     ` Borislav Petkov
2017-07-27  5:11                                     ` Borislav Petkov
2017-07-27  9:08                                     ` Jan Glauber
2017-07-27  9:08                                       ` Jan Glauber
2017-07-27  9:08                                       ` Jan Glauber
2017-07-27 13:15                                       ` Borislav Petkov
2017-07-27 13:15                                         ` Borislav Petkov
2017-07-28 23:12                                         ` Greg KH
2017-07-28 23:12                                           ` Greg KH
2017-07-28 23:12                                           ` Greg KH
2017-08-08 13:25                                           ` Will Deacon
2017-08-08 13:25                                             ` Will Deacon
2017-08-08 13:25                                             ` Will Deacon
2017-08-15  9:13                                             ` Jan Glauber
2017-08-15  9:13                                               ` Jan Glauber
2017-08-15  9:13                                               ` Jan Glauber
2017-08-07  9:37                                       ` Suzuki K Poulose
2017-08-07  9:37                                         ` Suzuki K Poulose
2017-07-25 15:56   ` Jonathan Cameron
2017-07-25 15:56     ` Jonathan Cameron
2017-07-25 15:04 ` [PATCH v8 2/3] perf: cavium: Support transmit-link " Jan Glauber
2017-07-25 15:04   ` Jan Glauber
2017-07-25 15:04 ` [PATCH v8 3/3] perf: cavium: Add Documentation Jan Glauber
2017-07-25 15:04   ` Jan Glauber

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.