mbox series

[GIT,PULL] Counter updates for 6.10

Message ID Zho9QUfTfT-uHptA@ishi (mailing list archive)
State Handled Elsewhere
Headers show
Series [GIT,PULL] Counter updates for 6.10 | expand

Pull-request

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

Message

William Breathitt Gray April 13, 2024, 8:07 a.m. UTC
The following changes since commit 39cd87c4eb2b893354f3b850f916353f2658ae6f:

  Linux 6.9-rc2 (2024-03-31 14:32:39 -0700)

are available in the Git repository at:

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

for you to fetch changes up to 916baadd293a4d11e08a7ca1e2968314451ade6c:

  counter: ti-ecap-capture: Utilize COUNTER_COMP_FREQUENCY macro (2024-04-02 13:15:03 -0400)

----------------------------------------------------------------
Counter updates for 6.10

Three key updates of note herein:
  - Introduction of the COUNTER_COMP_FREQUENCY() macro to simplify
    creation of "frequency" Counter extensions
  - Three additional Signals (Clock, Channel 3, and Channel 4) are
    supported for the stm32-timer-cnt
  - Counter events support added for the stm32-timer-cnt

There are also some miscellaneous cleanups and improvements, such as
constifying Counter structures, resolving a kernel-doc description
warning, and converting platform_driver remove callbacks to remove_new.

----------------------------------------------------------------
Fabrice Gasnier (11):
      counter: Introduce the COUNTER_COMP_FREQUENCY() macro
      counter: stm32-timer-cnt: rename quadrature signal
      counter: stm32-timer-cnt: rename counter
      counter: stm32-timer-cnt: adopt signal definitions
      counter: stm32-timer-cnt: introduce clock signal
      counter: stm32-timer-cnt: add counter prescaler extension
      counter: stm32-timer-cnt: add checks on quadrature encoder capability
      counter: stm32-timer-cnt: introduce channels
      counter: stm32-timer-cnt: probe number of channels from registers
      counter: stm32-timer-cnt: add support for overflow events
      counter: stm32-timer-cnt: add support for capture events

Randy Dunlap (1):
      counter: linux/counter.h: fix Excess kernel-doc description warning

Ricardo B. Marliere (2):
      counter: make counter_bus_type const
      counter: constify the struct device_type usage

Uwe Kleine-König (2):
      counter: ti-ecap-capture: Convert to platform remove callback returning void
      counter: ti-eqep: Convert to platform remove callback returning void

William Breathitt Gray (2):
      MAINTAINERS: Update email addresses for William Breathitt Gray
      counter: ti-ecap-capture: Utilize COUNTER_COMP_FREQUENCY macro

 MAINTAINERS                       |  30 +--
 drivers/counter/counter-core.c    |   4 +-
 drivers/counter/stm32-timer-cnt.c | 461 ++++++++++++++++++++++++++++++++++++--
 drivers/counter/ti-ecap-capture.c |   8 +-
 drivers/counter/ti-eqep.c         |   6 +-
 include/linux/counter.h           |   4 +-
 include/linux/mfd/stm32-timers.h  |  13 ++
 7 files changed, 485 insertions(+), 41 deletions(-)

Comments

Greg KH April 13, 2024, 10:40 a.m. UTC | #1
On Sat, Apr 13, 2024 at 04:07:29AM -0400, William Breathitt Gray wrote:
> The following changes since commit 39cd87c4eb2b893354f3b850f916353f2658ae6f:
> 
>   Linux 6.9-rc2 (2024-03-31 14:32:39 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git tags/counter-updates-for-6.10

Pulled and pushed out, thanks.

greg k-h