Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756521AbcKCIxY (ORCPT ); Thu, 3 Nov 2016 04:53:24 -0400 Received: from mx08-00178001.pphosted.com ([91.207.212.93]:52957 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1756468AbcKCIxU (ORCPT ); Thu, 3 Nov 2016 04:53:20 -0400 Subject: Re: [PATCH v2 0/6] STM32F4 Add RTC & QSPI clocks To: , Rob Herring , Mark Rutland , Russell King , Maxime Coquelin , Michael Turquette , Stephen Boyd , Nicolas Pitre , Arnd Bergmann , References: <1476436699-21879-1-git-send-email-gabriel.fernandez@st.com> CC: , , , , , , From: Alexandre Torgue Message-ID: <68855ca8-a74f-7c76-342f-de0aeec51ca1@st.com> Date: Thu, 3 Nov 2016 09:52:38 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: <1476436699-21879-1-git-send-email-gabriel.fernandez@st.com> Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: [10.48.0.2] X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2016-11-03_02:,, signatures=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1384 Lines: 48 Hi Gabriel, On 10/14/2016 11:18 AM, gabriel.fernandez@st.com wrote: > From: Gabriel Fernandez > > v2: > - rename compatible property "st,stm32f46xx-rcc" into "st,stm32f469-rcc" > - cosmetic: remove bad copy/paste > > This patch-set introduce RTC and QSPI clocks for STM32F4 socs > RTC clock has 3 parents clock oscillators (lsi/lse/hse_rtc) > > example to use rtc clock: > > rtc: rtc@40002800 { > compatible = "st,stm32-rtc"; > reg = <0x40002800 0x400>; > ... > clocks = <&rcc 1 CLK_RTC>; > > assigned-clocks = <&rcc 1 CLK_RTC>; > assigned-clock-parents = <&rcc 1 CLK_LSE>; > ... > }; > > Gabriel Fernandez (6): > clk: stm32f4: Add LSI & LSE clocks > ARM: dts: stm32f429: add LSI and LSE clocks > arm: stmf32: Enable SYSCON > clk: stm32f4: Add RTC clock > clk: stm32f469: Add QSPI clock > ARM: dts: stm32f429: Add QSPI clock You sent a V3 without DT patches. Should I take DT patches from this V2 patchset ? Regards Alex > > .../devicetree/bindings/clock/st,stm32-rcc.txt | 4 +- > arch/arm/boot/dts/stm32f429.dtsi | 18 + > arch/arm/boot/dts/stm32f469-disco.dts | 4 + > arch/arm/configs/stm32_defconfig | 1 + > drivers/clk/clk-stm32f4.c | 442 ++++++++++++++++++++- > 5 files changed, 447 insertions(+), 22 deletions(-) >