From: Alexandre Belloni <alexandre.belloni@bootlin.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-rtc@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [GIT PULL] RTC for 6.10
Date: Sat, 25 May 2024 10:05:09 +0200 [thread overview]
Message-ID: <20240525080509a438f063@mail.local> (raw)
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
next reply other threads:[~2024-05-25 8:05 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-25 8:05 Alexandre Belloni [this message]
2024-05-25 21:08 ` [GIT PULL] RTC for 6.10 pr-tracker-bot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240525080509a438f063@mail.local \
--to=alexandre.belloni@bootlin.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rtc@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.