public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] pwm: Changes for 7.1-rc1
@ 2026-04-13  8:22 Uwe Kleine-König
  2026-04-15 22:01 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Uwe Kleine-König @ 2026-04-13  8:22 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-pwm, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1932 bytes --]

Hello Linus,

the following changes since commit 6de23f81a5e08be8fbf5e8d7e9febc72a5b5f27f:

  Linux 7.0-rc1 (2026-02-22 13:18:59 -0800)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/ukleinek/linux.git tags/pwm/for-7.1-rc1

for you to fetch changes up to aa8f35172ab66c57d4355a8c4e28d05b44c938e3:

  pwm: th1520: fix `CLIPPY=1` warning (2026-03-29 09:37:13 +0200)

Very few patches this time around. I think there are a few patches on
the pwm mailing list that might be ready, but I didn't come around to
review them in time for the merge window, so it's just these 5 commits.

All changes are in next since next-20260330, I don't expect any
complications.

Thanks for pulling these into v7.1-rc1.

Best regards
Uwe

----------------------------------------------------------------
pwm: Changes for v7.1-rc1

Just two minor fixes, a device tree binding addition to support a few
more SoCs (without the need for driver adaptions), a driver include
cleanup and the addition of the #linux-pwm irc channel to MAINTAINERS.

----------------------------------------------------------------
Andy Shevchenko (1):
      pwm: jz4740: Drop unused include

Miguel Ojeda (1):
      pwm: th1520: fix `CLIPPY=1` warning

Uwe Kleine-König (1):
      MAINTAINERS: Add #linux-pwm irc channel to pwm entry

Viorel Suman (OSS) (1):
      pwm: imx-tpm: Count the number of enabled channels in probe

Xianwei Zhao (1):
      dt-bindings: pwm: amlogic: Document A4 A5 and T7 PWM

 Documentation/devicetree/bindings/pwm/pwm-amlogic.yaml | 3 +++
 MAINTAINERS                                            | 1 +
 drivers/pwm/pwm-imx-tpm.c                              | 9 ++++++++-
 drivers/pwm/pwm-jz4740.c                               | 1 -
 drivers/pwm/pwm_th1520.rs                              | 5 +----
 5 files changed, 13 insertions(+), 6 deletions(-)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [GIT PULL] pwm: Changes for 7.1-rc1
  2026-04-13  8:22 Uwe Kleine-König
@ 2026-04-15 22:01 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2026-04-15 22:01 UTC (permalink / raw)
  To: Uwe Kleine-König; +Cc: Linus Torvalds, linux-pwm, linux-kernel

The pull request you sent on Mon, 13 Apr 2026 10:22:44 +0200:

> https://git.kernel.org/pub/scm/linux/kernel/git/ukleinek/linux.git tags/pwm/for-7.1-rc1

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/b9962335d4c6dee152e95dce9f0dd32048735a6d

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

* [GIT PULL] pwm: Changes for 7.1-rc1
@ 2026-04-23  7:32 Uwe Kleine-König
  2026-04-23 16:18 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Uwe Kleine-König @ 2026-04-23  7:32 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-pwm, linux-kernel, Sangyun Kim

[-- Attachment #1: Type: text/plain, Size: 2387 bytes --]

Hello Linus,

the following changes since commit aa8f35172ab66c57d4355a8c4e28d05b44c938e3:

  pwm: th1520: fix `CLIPPY=1` warning (2026-03-29 09:37:13 +0200)

(= pwm/for-7.1-rc1) are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/ukleinek/linux.git tags/pwm/fixes-7.1-rc1

for you to fetch changes up to 68637b68afcc3cb4d56aca14a3a1d1b47b879369:

  pwm: atmel-tcb: Cache clock rates and mark chip as atomic (2026-04-22 07:24:33 +0200)

While writing the tag text I thought about splitting the "mark chip as
atomic" part of Sangyun's fix into a separate change for the next merge
window. But it's still early in the development cycle and I don't expect
problems here, so I kept the change as it was tested. Also the patch is
a bit unelegant as it results in keeping a clock on during the lifetime
of the driver; I expect this to be addressed in one of the next
development cycles. Compared to the sleep-in-atomic this is a very minor
annoyance and I don't want to delay the fix because of that.

The pwm-stm fix is in next for a week already, the atmel-tcb fix is only
contained since next-20260422 with no problem reports.

Thanks for pulling this into your tree at your convenience,
Uwe

----------------------------------------------------------------
pwm: Two driver fixes

After having added some more code to libpwm checking the pwm rounding
rules for the userspace interface I spotted an issue in the pwm-stm32
driver where in some cases involving inverted polarity the wrong
hardware settings for the duty offset are chosen. I think it has little
practical effect because the duty offset is in most cases an artificial
property of the output waveform. Still it's relevant to get this fixed
because this driver serves as a reference implementation for the still
young waveform API.

The second fix addresses a sleep-in-atomic issue in the pwm-atmel-tcb
driver.

----------------------------------------------------------------
Sangyun Kim (1):
      pwm: atmel-tcb: Cache clock rates and mark chip as atomic

Uwe Kleine-König (1):
      pwm: stm32: Fix rounding issue for requests with inverted polarity

 drivers/pwm/pwm-atmel-tcb.c | 38 ++++++++++++++++++++++++++++++++++----
 drivers/pwm/pwm-stm32.c     | 22 ++++++++++++----------
 2 files changed, 46 insertions(+), 14 deletions(-)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [GIT PULL] pwm: Changes for 7.1-rc1
  2026-04-23  7:32 [GIT PULL] pwm: Changes for 7.1-rc1 Uwe Kleine-König
@ 2026-04-23 16:18 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2026-04-23 16:18 UTC (permalink / raw)
  To: Uwe Kleine-König
  Cc: Linus Torvalds, linux-pwm, linux-kernel, Sangyun Kim

The pull request you sent on Thu, 23 Apr 2026 09:32:44 +0200:

> https://git.kernel.org/pub/scm/linux/kernel/git/ukleinek/linux.git tags/pwm/fixes-7.1-rc1

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/8841842cc9be68e0f670323e697c9b3214831d6a

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

end of thread, other threads:[~2026-04-23 16:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-23  7:32 [GIT PULL] pwm: Changes for 7.1-rc1 Uwe Kleine-König
2026-04-23 16:18 ` pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2026-04-13  8:22 Uwe Kleine-König
2026-04-15 22:01 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox