All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] RTC for 5.13
@ 2021-05-02 22:02 Alexandre Belloni
  2021-05-03 19:28 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Alexandre Belloni @ 2021-05-02 22:02 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-rtc, linux-kernel

Hello Linus,

Here is the RTC subsystem pull request for v5.13. Mostly small fixes and
two drivers gaining alarm support.

The following changes since commit a38fd8748464831584a19438cbb3082b5a2dab15:

  Linux 5.12-rc2 (2021-03-05 17:33:41 -0800)

are available in the Git repository at:

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

for you to fetch changes up to 4d0185e67806a233c423c1668e87e137fbda192c:

  rtc: sysfs: check features instead of ops (2021-04-29 23:51:18 +0200)

----------------------------------------------------------------
RTC for 5.13

Subsystem:
 - UIE emulation has been reworked to avoid calling drivers callbacks when it is
   known it will not work

Drivers:
 - ab-eoz9: add alarm support
 - pcf8523: add alarm support

----------------------------------------------------------------
Alexandre Belloni (9):
      rtc: m48t59: use platform_get_irq_optional
      rtc: imx-sc: remove .read_alarm
      rtc: ds1307: replace HAS_ALARM by RTC_FEATURE_ALARM
      rtc: ds1307: remove flags
      rtc: rtc_update_irq_enable: rework UIE emulation
      rtc: pcf8523: remove useless define
      rtc: pcf8523: add alarm support
      rtc: pcf8523: report oscillator failures
      rtc: sysfs: check features instead of ops

Arnd Bergmann (1):
      rtc: tps65910: include linux/property.h

Dario Binacchi (1):
      rtc: omap: use rtc_write to access OMAP_RTC_OSC_REG

Fabio Estevam (2):
      rtc: imxdi: Convert to a DT-only driver
      rtc: mxc: Remove unneeded of_match_ptr()

Francois Gervais (1):
      rtc: pcf85063: fallback to parent of_node

Heiko Schocher (1):
      rtc: rv3028: correct weekday register usage

Jiapeng Chong (1):
      rtc: ds1511: remove unused function

Johannes Hahn (1):
      rtc: rx6110: add ACPI bindings to I2C

Krzysztof Kozlowski (1):
      rtc: s5m: Remove reference to parent's device pdata

Laurent Vivier (1):
      rtc: goldfish: remove dependency to OF

Liam Beguin (3):
      rtc: ab-eoz9: set regmap max_register
      rtc: ab-eoz9: add alarm support
      rtc: ab-eoz9: make use of RTC_FEATURE_ALARM

Michael Walle (1):
      rtc: fsl-ftm-alarm: add MODULE_TABLE()

Nobuhiro Iwamatsu (1):
      rtc: ds1307: Fix wday settings for rx8130

Tian Tao (1):
      rtc: rtc-spear: replace spin_lock_irqsave by spin_lock in hard IRQ

satya priya (2):
      rtc: pm8xxx: Add RTC support for PMIC PMK8350
      dt-bindings: rtc: qcom-pm8xxx-rtc: Add qcom pm8xxx rtc bindings

 .../devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml   |  62 +++++++
 drivers/rtc/Kconfig                                |   3 +-
 drivers/rtc/interface.c                            |  34 ++--
 drivers/rtc/rtc-ab-eoz9.c                          | 135 +++++++++++++-
 drivers/rtc/rtc-ds1307.c                           |  56 ++----
 drivers/rtc/rtc-ds1511.c                           |   6 -
 drivers/rtc/rtc-fsl-ftm-alarm.c                    |   1 +
 drivers/rtc/rtc-imx-sc.c                           |  11 --
 drivers/rtc/rtc-imxdi.c                            |   4 +-
 drivers/rtc/rtc-m48t59.c                           |   2 +-
 drivers/rtc/rtc-mxc.c                              |   2 +-
 drivers/rtc/rtc-omap.c                             |   5 +-
 drivers/rtc/rtc-pcf85063.c                         |   7 +-
 drivers/rtc/rtc-pcf8523.c                          | 196 ++++++++++++++++++++-
 drivers/rtc/rtc-pm8xxx.c                           |  11 ++
 drivers/rtc/rtc-rv3028.c                           |   4 +-
 drivers/rtc/rtc-rx6110.c                           |   7 +
 drivers/rtc/rtc-s5m.c                              |   6 -
 drivers/rtc/rtc-spear.c                            |   6 +-
 drivers/rtc/rtc-tps65910.c                         |   1 +
 drivers/rtc/sysfs.c                                |   2 +-
 21 files changed, 450 insertions(+), 111 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/rtc/qcom-pm8xxx-rtc.yaml

-- 
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 5.13
  2021-05-02 22:02 [GIT PULL] RTC for 5.13 Alexandre Belloni
@ 2021-05-03 19:28 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2021-05-03 19:28 UTC (permalink / raw)
  To: Alexandre Belloni; +Cc: Linus Torvalds, linux-rtc, linux-kernel

The pull request you sent on Mon, 3 May 2021 00:02:49 +0200:

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

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

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:[~2021-05-03 19:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-02 22:02 [GIT PULL] RTC for 5.13 Alexandre Belloni
2021-05-03 19:28 ` pr-tracker-bot

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.