Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1534965
| From | Amelie Delaunay <amelie.delaunay@st.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 0/8] Add support for STM32 RTC |
| Date | 2016-12-02 15:20 +0100 |
| Message-ID | <sJWQW-4Wx-3@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
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
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 0/8] Add support for STM32 RTC Amelie Delaunay <amelie.delaunay@st.com> - 2016-12-02 15:20 +0100
[PATCH 1/8] ARM: dts: stm32: set HSE_RTC clock frequency to 1 MHz on stm32f429 Amelie Delaunay <amelie.delaunay@st.com> - 2016-12-02 15:20 +0100
[PATCH 3/8] rtc: add STM32 RTC driver Amelie Delaunay <amelie.delaunay@st.com> - 2016-12-02 15:20 +0100
Re: [PATCH 3/8] rtc: add STM32 RTC driver Mathieu Poirier <mathieu.poirier@linaro.org> - 2016-12-02 19:00 +0100
Re: [PATCH 3/8] rtc: add STM32 RTC driver Amelie DELAUNAY <amelie.delaunay@st.com> - 2016-12-05 10:50 +0100
Re: [PATCH 3/8] rtc: add STM32 RTC driver Mathieu Poirier <mathieu.poirier@linaro.org> - 2016-12-05 17:40 +0100
Re: [PATCH 3/8] rtc: add STM32 RTC driver Amelie DELAUNAY <amelie.delaunay@st.com> - 2016-12-07 11:20 +0100
Re: [PATCH 3/8] rtc: add STM32 RTC driver Alexandre Belloni <alexandre.belloni@free-electrons.com> - 2016-12-07 19:40 +0100
Re: [PATCH 3/8] rtc: add STM32 RTC driver Mathieu Poirier <mathieu.poirier@linaro.org> - 2016-12-02 19:10 +0100
Re: [PATCH 3/8] rtc: add STM32 RTC driver Amelie DELAUNAY <amelie.delaunay@st.com> - 2016-12-05 11:00 +0100
Re: [PATCH 3/8] rtc: add STM32 RTC driver Alexandre Belloni <alexandre.belloni@free-electrons.com> - 2016-12-07 20:10 +0100
[PATCH 4/8] ARM: dts: stm32: Add STM32 RTC support for STM32F429 MCU Amelie Delaunay <amelie.delaunay@st.com> - 2016-12-02 15:20 +0100
csiph-web