mbox series

[GIT,PULL] Counter updates for 6.15

Message ID Z8-Fh9pzgxS1idk2@ishi (mailing list archive)
State New
Headers show
Series [GIT,PULL] Counter updates for 6.15 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git tags/counter-updates-for-6.15

Message

William Breathitt Gray March 11, 2025, 12:36 a.m. UTC
The following changes since commit 2014c95afecee3e76ca4a56956a936e23283f05b:

  Linux 6.14-rc1 (2025-02-02 15:39:26 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git tags/counter-updates-for-6.15

for you to fetch changes up to ba27a0247b7187af36cb0b1fe7f7a68067ccb555:

  counter: microchip-tcb-capture: Add support for RC Compare (2025-03-10 18:20:32 +0900)

----------------------------------------------------------------
Counter updates for 6.15

counter:
 - Introduce the COUNTER_EVENT_DIRECTION_CHANGE event
 - Introduce the COUNTER_COMP_COMPARE helper macro
microchip-tcb-cpature:
 - Add IRQ handling
 - Add support for capture extensions
 - Add support for compare extension
ti-eqep:
 - Add support for reading and detecting changes in direction
tools/counter:
 - Add counter_watch_events executable to .gitignore
 - Support COUNTER_EVENT_DIRECTION_CHANGE in counter_watch_events tool

----------------------------------------------------------------
Bence Csókás (2):
      counter: microchip-tcb-capture: Add IRQ handling
      counter: microchip-tcb-capture: Add capture extensions for registers RA/RB

David Lechner (4):
      tools/counter: gitignore counter_watch_events
      counter: add direction change event
      tools/counter: add direction change event to watcher
      counter: ti-eqep: add direction support

William Breathitt Gray (2):
      counter: Introduce the compare component
      counter: microchip-tcb-capture: Add support for RC Compare

 Documentation/ABI/testing/sysfs-bus-counter        |   9 ++
 MAINTAINERS                                        |   1 +
 drivers/counter/microchip-tcb-capture.c            | 160 +++++++++++++++++++++
 drivers/counter/ti-eqep.c                          |  32 +++++
 include/linux/counter.h                            |   3 +
 include/uapi/linux/counter.h                       |   2 +
 include/uapi/linux/counter/microchip-tcb-capture.h |  40 ++++++
 tools/counter/.gitignore                           |   1 +
 tools/counter/counter_watch_events.c               |   5 +
 9 files changed, 253 insertions(+)
 create mode 100644 include/uapi/linux/counter/microchip-tcb-capture.h

Comments

Greg KH March 11, 2025, 10:02 a.m. UTC | #1
On Tue, Mar 11, 2025 at 09:36:23AM +0900, William Breathitt Gray wrote:
> The following changes since commit 2014c95afecee3e76ca4a56956a936e23283f05b:
> 
>   Linux 6.14-rc1 (2025-02-02 15:39:26 -0800)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git tags/counter-updates-for-6.15

Pulled and pushed out, thanks.

greg k-h