lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <2024072121574018084eea@mail.local>
Date: Sun, 21 Jul 2024 23:57:40 +0200
From: Alexandre Belloni <alexandre.belloni@...tlin.com>
To: Linus Torvalds <torvalds@...ux-foundation.org>
Cc: linux-rtc@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [GIT PULL] RTC for 6.11

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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ