Linux RTC
 help / color / mirror / Atom feed
* [GIT PULL] RTC for 6.11
@ 2024-07-21 21:57 Alexandre Belloni
  2024-07-21 22:53 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Alexandre Belloni @ 2024-07-21 21:57 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-rtc, linux-kernel

Hello Linus,

Here is the RTC subsystem pull request for 6.11. There are mstly small
fixes this cycle. The alarm offset that is getting fixed doesn't affect
many RTCs as most of them have a complete set of datetime registers.

The following changes since commit 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0:

  Linux 6.10-rc1 (2024-05-26 15:20:12 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git tags/rtc-6.11

for you to fetch changes up to efa9c5be2caecae7dfa4f29c6ab3d4a2f341eb15:

  rtc: stm32: add new st,stm32mp25-rtc compatible and check RIF configuration (2024-07-10 17:15:33 +0200)

----------------------------------------------------------------
RTC for 6.11

Subsystem:
 - add missing MODULE_DESCRIPTION() macro
 - fix offset addition for alarms

Drivers:
 - isl1208: alarm clearing fixes
 - mcp794xx: oscillator failure detection
 - stm32: stm32mp25 support
 - tps6594: power management support

----------------------------------------------------------------
Biju Das (2):
      rtc: isl1208: Add a delay for clearing alarm
      rtc: isl1208: Update correct procedure for clearing alarm

Csókás, Bence (3):
      rtc: ds1307: Detect oscillator fail on mcp794xx
      rtc: ds1307: Clamp year to valid BCD (0-99) in `set_time()`
      rtc: interface: Add RTC offset to alarm after fix-up

Frank Li (1):
      dt-bindings: rtc: Convert rtc-fsl-ftm-alarm.txt to yaml format

Jeff Johnson (1):
      rtc: add missing MODULE_DESCRIPTION() macro

Joy Chakraborty (3):
      rtc: isl1208: Fix return value of nvmem callbacks
      rtc: cmos: Fix return value of nvmem callbacks
      rtc: abx80x: Fix return value of nvmem callback on read

Richard Genoud (3):
      rtc: tps6594: Fix memleak in probe
      rtc: tps6594: introduce private structure as drvdata
      rtc: tps6594: Add power management support

Uwe Kleine-König (1):
      rtc: Drop explicit initialization of struct i2c_device_id::driver_data to 0

Valentin Caron (2):
      dt-bindings: rtc: stm32: introduce new st,stm32mp25-rtc compatible
      rtc: stm32: add new st,stm32mp25-rtc compatible and check RIF configuration

 .../devicetree/bindings/rtc/fsl,ls-ftm-alarm.yaml  | 73 ++++++++++++++++++++
 .../devicetree/bindings/rtc/rtc-fsl-ftm-alarm.txt  | 36 ----------
 .../devicetree/bindings/rtc/st,stm32-rtc.yaml      |  5 +-
 drivers/rtc/interface.c                            |  9 +--
 drivers/rtc/lib_test.c                             |  1 +
 drivers/rtc/rtc-ab-b5ze-s3.c                       |  2 +-
 drivers/rtc/rtc-ab-eoz9.c                          |  2 +-
 drivers/rtc/rtc-abx80x.c                           | 12 ++--
 drivers/rtc/rtc-bq32k.c                            |  2 +-
 drivers/rtc/rtc-cmos.c                             | 10 ++-
 drivers/rtc/rtc-ds1307.c                           |  7 +-
 drivers/rtc/rtc-ds1374.c                           |  2 +-
 drivers/rtc/rtc-ds1672.c                           |  2 +-
 drivers/rtc/rtc-ds3232.c                           |  2 +-
 drivers/rtc/rtc-em3027.c                           |  2 +-
 drivers/rtc/rtc-fm3130.c                           |  2 +-
 drivers/rtc/rtc-goldfish.c                         |  1 +
 drivers/rtc/rtc-hym8563.c                          |  4 +-
 drivers/rtc/rtc-isl12022.c                         |  2 +-
 drivers/rtc/rtc-isl1208.c                          | 36 ++++++----
 drivers/rtc/rtc-max31335.c                         |  2 +-
 drivers/rtc/rtc-max6900.c                          |  2 +-
 drivers/rtc/rtc-mpc5121.c                          |  1 +
 drivers/rtc/rtc-nct3018y.c                         |  2 +-
 drivers/rtc/rtc-omap.c                             |  1 +
 drivers/rtc/rtc-pcf8523.c                          |  2 +-
 drivers/rtc/rtc-pcf8563.c                          |  6 +-
 drivers/rtc/rtc-pcf8583.c                          |  2 +-
 drivers/rtc/rtc-rc5t583.c                          |  1 +
 drivers/rtc/rtc-rv3029c2.c                         |  4 +-
 drivers/rtc/rtc-rx6110.c                           |  2 +-
 drivers/rtc/rtc-rx8010.c                           |  2 +-
 drivers/rtc/rtc-rx8581.c                           |  2 +-
 drivers/rtc/rtc-s35390a.c                          |  2 +-
 drivers/rtc/rtc-sd3078.c                           |  2 +-
 drivers/rtc/rtc-stm32.c                            | 78 ++++++++++++++++++++++
 drivers/rtc/rtc-tps65910.c                         |  1 +
 drivers/rtc/rtc-tps6594.c                          | 75 +++++++++++++++++----
 drivers/rtc/rtc-twl.c                              |  1 +
 drivers/rtc/rtc-x1205.c                            |  2 +-
 40 files changed, 299 insertions(+), 103 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/rtc/fsl,ls-ftm-alarm.yaml
 delete mode 100644 Documentation/devicetree/bindings/rtc/rtc-fsl-ftm-alarm.txt

-- 
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* Re: [GIT PULL] RTC for 6.11
  2024-07-21 21:57 [GIT PULL] RTC for 6.11 Alexandre Belloni
@ 2024-07-21 22:53 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2024-07-21 22:53 UTC (permalink / raw)
  To: Alexandre Belloni; +Cc: Linus Torvalds, linux-rtc, linux-kernel

The pull request you sent on Sun, 21 Jul 2024 23:57:40 +0200:

> git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git tags/rtc-6.11

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

Thank you!

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

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

end of thread, other threads:[~2024-07-21 22:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-21 21:57 [GIT PULL] RTC for 6.11 Alexandre Belloni
2024-07-21 22:53 ` 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