All of lore.kernel.org
 help / color / mirror / Atom feed
* [rtc-linux] [PATCH 0/8] Add support for STM32 RTC
@ 2016-12-02 14:09 ` Amelie Delaunay
  0 siblings, 0 replies; 81+ messages in thread
From: Amelie Delaunay @ 2016-12-02 14:09 UTC (permalink / raw)
  To: a.zummo, alexandre.belloni, robh+dt, mark.rutland,
	mcoquelin.stm32, alexandre.torgue, linux
  Cc: rtc-linux, devicetree, linux-arm-kernel, linux-kernel,
	gabriel.fernandez, amelie.delaunay

This patchset adds support for the STM32 Real-Time Clock.
This RTC is an independent BCD timer/counter and provides a time-of-day
clock/calendar with programmable alarm interrupt.
RTC calendar can be driven by three clock sources LSE, LSI or HSE.

Amelie Delaunay (8):
  ARM: dts: stm32: set HSE_RTC clock frequency to 1 MHz on stm32f429
  dt-bindings: document the STM32 RTC bindings
  rtc: add STM32 RTC driver
  ARM: dts: stm32: Add STM32 RTC support for STM32F429 MCU
  ARM: dts: stm32: enable RTC on stm32f429-disco
  ARM: dts: stm32: enable RTC on stm32f469-disco
  ARM: dts: stm32: enable RTC on stm32429i-eval
  ARM: configs: stm32: Add STM32 RTC support in STM32 defconfig

 .../devicetree/bindings/rtc/st,stm32-rtc.txt       |  31 +
 arch/arm/boot/dts/stm32429i-eval.dts               |   4 +
 arch/arm/boot/dts/stm32f429-disco.dts              |   6 +
 arch/arm/boot/dts/stm32f429.dtsi                   |  16 +
 arch/arm/boot/dts/stm32f469-disco.dts              |   4 +
 arch/arm/configs/stm32_defconfig                   |   2 +
 drivers/rtc/Kconfig                                |  10 +
 drivers/rtc/Makefile                               |   1 +
 drivers/rtc/rtc-stm32.c                            | 777 +++++++++++++++++++++
 9 files changed, 851 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/rtc/st,stm32-rtc.txt
 create mode 100644 drivers/rtc/rtc-stm32.c

-- 
1.9.1

-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

^ permalink raw reply	[flat|nested] 81+ messages in thread
[parent not found: <bc5c308d-472a-bf05-89b8-6d813fb5321d@st.com>]

end of thread, other threads:[~2016-12-12 10:19 UTC | newest]

Thread overview: 81+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-02 14:09 [rtc-linux] [PATCH 0/8] Add support for STM32 RTC Amelie Delaunay
2016-12-02 14:09 ` Amelie Delaunay
2016-12-02 14:09 ` Amelie Delaunay
2016-12-02 14:09 ` Amelie Delaunay
2016-12-02 14:09 ` [rtc-linux] [PATCH 1/8] ARM: dts: stm32: set HSE_RTC clock frequency to 1 MHz on stm32f429 Amelie Delaunay
2016-12-02 14:09   ` Amelie Delaunay
2016-12-02 14:09   ` Amelie Delaunay
2016-12-02 14:09   ` Amelie Delaunay
2016-12-02 14:09 ` [rtc-linux] [PATCH 2/8] dt-bindings: document the STM32 RTC bindings Amelie Delaunay
2016-12-02 14:09   ` Amelie Delaunay
2016-12-02 14:09   ` Amelie Delaunay
2016-12-02 14:09   ` Amelie Delaunay
2016-12-05 10:06   ` [rtc-linux] " Alexandre Belloni
2016-12-05 10:06     ` Alexandre Belloni
2016-12-05 10:06     ` Alexandre Belloni
2016-12-05 10:06     ` Alexandre Belloni
2016-12-05 10:14     ` [rtc-linux] " Amelie DELAUNAY
2016-12-05 10:14       ` Amelie DELAUNAY
2016-12-05 10:14       ` Amelie DELAUNAY
2016-12-05 10:14       ` Amelie DELAUNAY
2016-12-02 14:09 ` [rtc-linux] [PATCH 3/8] rtc: add STM32 RTC driver Amelie Delaunay
2016-12-02 14:09   ` Amelie Delaunay
2016-12-02 14:09   ` Amelie Delaunay
2016-12-02 14:09   ` Amelie Delaunay
2016-12-02 17:56   ` [rtc-linux] " Mathieu Poirier
2016-12-02 17:56     ` Mathieu Poirier
2016-12-02 17:56     ` Mathieu Poirier
2016-12-02 17:56     ` Mathieu Poirier
2016-12-05  9:43     ` [rtc-linux] " Amelie DELAUNAY
2016-12-05  9:43       ` Amelie DELAUNAY
2016-12-05  9:43       ` Amelie DELAUNAY
2016-12-05  9:43       ` Amelie DELAUNAY
2016-12-05 16:32       ` [rtc-linux] " Mathieu Poirier
2016-12-05 16:32         ` Mathieu Poirier
2016-12-05 16:32         ` Mathieu Poirier
2016-12-05 16:32         ` Mathieu Poirier
2016-12-07 10:16         ` [rtc-linux] " Amelie DELAUNAY
2016-12-07 10:16           ` Amelie DELAUNAY
2016-12-07 10:16           ` Amelie DELAUNAY
2016-12-07 10:16           ` Amelie DELAUNAY
2016-12-07 18:37       ` [rtc-linux] " Alexandre Belloni
2016-12-07 18:37         ` Alexandre Belloni
2016-12-07 18:37         ` Alexandre Belloni
2016-12-07 18:37         ` Alexandre Belloni
2016-12-12  9:59         ` [rtc-linux] " Amelie DELAUNAY
2016-12-12  9:59           ` Amelie DELAUNAY
2016-12-12  9:59           ` Amelie DELAUNAY
2016-12-12  9:59           ` Amelie DELAUNAY
2016-12-02 18:05   ` [rtc-linux] " Mathieu Poirier
2016-12-02 18:05     ` Mathieu Poirier
2016-12-02 18:05     ` Mathieu Poirier
2016-12-02 18:05     ` Mathieu Poirier
2016-12-05  9:45     ` [rtc-linux] " Amelie DELAUNAY
2016-12-05  9:45       ` Amelie DELAUNAY
2016-12-05  9:45       ` Amelie DELAUNAY
2016-12-05  9:45       ` Amelie DELAUNAY
2016-12-07 19:08   ` [rtc-linux] " Alexandre Belloni
2016-12-07 19:08     ` Alexandre Belloni
2016-12-07 19:08     ` Alexandre Belloni
2016-12-07 19:08     ` Alexandre Belloni
2016-12-02 14:09 ` [rtc-linux] [PATCH 4/8] ARM: dts: stm32: Add STM32 RTC support for STM32F429 MCU Amelie Delaunay
2016-12-02 14:09   ` Amelie Delaunay
2016-12-02 14:09   ` Amelie Delaunay
2016-12-02 14:09   ` Amelie Delaunay
2016-12-02 14:09 ` [rtc-linux] [PATCH 5/8] ARM: dts: stm32: enable RTC on stm32f429-disco Amelie Delaunay
2016-12-02 14:09   ` Amelie Delaunay
2016-12-02 14:09   ` Amelie Delaunay
2016-12-02 14:09   ` Amelie Delaunay
2016-12-02 14:09 ` [rtc-linux] [PATCH 6/8] ARM: dts: stm32: enable RTC on stm32f469-disco Amelie Delaunay
2016-12-02 14:09   ` Amelie Delaunay
2016-12-02 14:09   ` Amelie Delaunay
2016-12-02 14:09   ` Amelie Delaunay
2016-12-02 14:10 ` [rtc-linux] [PATCH 7/8] ARM: dts: stm32: enable RTC on stm32429i-eval Amelie Delaunay
2016-12-02 14:10   ` Amelie Delaunay
2016-12-02 14:10   ` Amelie Delaunay
2016-12-02 14:10   ` Amelie Delaunay
2016-12-02 14:10 ` [rtc-linux] [PATCH 8/8] ARM: configs: stm32: Add STM32 RTC support in STM32 defconfig Amelie Delaunay
2016-12-02 14:10   ` Amelie Delaunay
2016-12-02 14:10   ` Amelie Delaunay
2016-12-02 14:10   ` Amelie Delaunay
     [not found] <bc5c308d-472a-bf05-89b8-6d813fb5321d@st.com>
2016-12-12 10:19 ` [rtc-linux] Re: [PATCH 3/8] rtc: add STM32 RTC driver Amelie DELAUNAY

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.