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]
Date: Sat, 25 May 2024 10:05:09 +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.10

Hello Linus,

Here is the RTC subsystem pull request for 6.10. There is one new driver
and then most of the changes are the device tree bindings conversions to
yaml.

The following changes since commit 4cece764965020c22cff7665b18a012006359095:

  Linux 6.9-rc1 (2024-03-24 14:10:05 -0700)

are available in the Git repository at:

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

for you to fetch changes up to 4c9a91b94c126d6585fbf185807b26dca5166209:

  pcf8563: add wakeup-source support (2024-05-07 23:40:46 +0200)

----------------------------------------------------------------
RTC for 6.10

New driver:
 - Epson RX8111

Drivers:
 - Many Device Tree bindings conversions to dtschema
 - pcf8563: wakeup-source support

----------------------------------------------------------------
Alexandre Belloni (3):
      rtc: rx8111: demote warnings to debug level
      rtc: rx8111: handle VLOW flag
      pcf8563: add wakeup-source support

Christophe JAILLET (1):
      rtc: rx6110: Constify struct regmap_config

Guenter Roeck (1):
      rtc: test: Split rtc unit test into slow and normal speed test

Javier Carrasco (7):
      dt-bindings: rtc: armada-380-rtc: convert to dtschema
      dt-bindings: rtc: alphascale,asm9260-rtc: convert to dtschema
      dt-bindings: rtc: digicolor-rtc: move to trivial-rtc
      dt-bindings: rtc: nxp,lpc1788-rtc: convert to dtschema
      dt-bindings: rtc: pxa-rtc: convert to dtschema
      dt-bindings: rtc: stmp3xxx-rtc: convert to dtschema
      dt-bindings: rtc: convert trivial devices into dtschema

Krzysztof Kozlowski (1):
      rtc: mcp795: drop unneeded MODULE_ALIAS

Mia Lin (1):
      rtc: nuvoton: Modify part number value

Tzung-Bi Shih (1):
      rtc: cros-ec: provide ID table for avoiding fallback match

Waqar Hameed (2):
      dt-bindings: rtc: Add Epson RX8111
      rtc: Add driver for Epson RX8111

 .../bindings/rtc/alphascale,asm9260-rtc.txt        |  19 --
 .../bindings/rtc/alphascale,asm9260-rtc.yaml       |  50 +++
 .../devicetree/bindings/rtc/armada-380-rtc.txt     |  24 --
 .../devicetree/bindings/rtc/digicolor-rtc.txt      |  17 -
 .../devicetree/bindings/rtc/fsl,stmp3xxx-rtc.yaml  |  51 +++
 .../bindings/rtc/google,goldfish-rtc.txt           |  17 -
 .../devicetree/bindings/rtc/lpc32xx-rtc.txt        |  15 -
 .../bindings/rtc/marvell,armada-380-rtc.yaml       |  51 +++
 .../devicetree/bindings/rtc/marvell,pxa-rtc.yaml   |  40 +++
 .../devicetree/bindings/rtc/maxim,ds1742.txt       |  12 -
 .../devicetree/bindings/rtc/nxp,lpc1788-rtc.txt    |  21 --
 .../devicetree/bindings/rtc/nxp,lpc1788-rtc.yaml   |  58 ++++
 .../devicetree/bindings/rtc/orion-rtc.txt          |  18 -
 Documentation/devicetree/bindings/rtc/pxa-rtc.txt  |  14 -
 .../devicetree/bindings/rtc/rtc-aspeed.txt         |  22 --
 .../devicetree/bindings/rtc/spear-rtc.txt          |  15 -
 .../devicetree/bindings/rtc/stmp3xxx-rtc.txt       |  21 --
 .../devicetree/bindings/rtc/trivial-rtc.yaml       |  21 ++
 .../devicetree/bindings/rtc/via,vt8500-rtc.txt     |  15 -
 MAINTAINERS                                        |   1 -
 drivers/rtc/Kconfig                                |  10 +
 drivers/rtc/Makefile                               |   1 +
 drivers/rtc/lib_test.c                             |  33 +-
 drivers/rtc/rtc-cros-ec.c                          |   9 +-
 drivers/rtc/rtc-mcp795.c                           |   1 -
 drivers/rtc/rtc-nct3018y.c                         |  15 +-
 drivers/rtc/rtc-pcf8563.c                          |   9 +-
 drivers/rtc/rtc-rx6110.c                           |   4 +-
 drivers/rtc/rtc-rx8111.c                           | 368 +++++++++++++++++++++
 29 files changed, 702 insertions(+), 250 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/rtc/alphascale,asm9260-rtc.txt
 create mode 100644 Documentation/devicetree/bindings/rtc/alphascale,asm9260-rtc.yaml
 delete mode 100644 Documentation/devicetree/bindings/rtc/armada-380-rtc.txt
 delete mode 100644 Documentation/devicetree/bindings/rtc/digicolor-rtc.txt
 create mode 100644 Documentation/devicetree/bindings/rtc/fsl,stmp3xxx-rtc.yaml
 delete mode 100644 Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
 delete mode 100644 Documentation/devicetree/bindings/rtc/lpc32xx-rtc.txt
 create mode 100644 Documentation/devicetree/bindings/rtc/marvell,armada-380-rtc.yaml
 create mode 100644 Documentation/devicetree/bindings/rtc/marvell,pxa-rtc.yaml
 delete mode 100644 Documentation/devicetree/bindings/rtc/maxim,ds1742.txt
 delete mode 100644 Documentation/devicetree/bindings/rtc/nxp,lpc1788-rtc.txt
 create mode 100644 Documentation/devicetree/bindings/rtc/nxp,lpc1788-rtc.yaml
 delete mode 100644 Documentation/devicetree/bindings/rtc/orion-rtc.txt
 delete mode 100644 Documentation/devicetree/bindings/rtc/pxa-rtc.txt
 delete mode 100644 Documentation/devicetree/bindings/rtc/rtc-aspeed.txt
 delete mode 100644 Documentation/devicetree/bindings/rtc/spear-rtc.txt
 delete mode 100644 Documentation/devicetree/bindings/rtc/stmp3xxx-rtc.txt
 delete mode 100644 Documentation/devicetree/bindings/rtc/via,vt8500-rtc.txt
 create mode 100644 drivers/rtc/rtc-rx8111.c

-- 
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