From mboxrd@z Thu Jan 1 00:00:00 1970 From: khilman@baylibre.com (Kevin Hilman) Date: Fri, 15 Dec 2017 12:00:45 -0800 Subject: [PATCH v7 0/6] add clk controller driver for Meson-AXG SoC In-Reply-To: <1513245826.32163.7.camel@baylibre.com> (Jerome Brunet's message of "Thu, 14 Dec 2017 11:03:46 +0100") References: <20171211141348.22048-1-yixun.lan@amlogic.com> <1513245826.32163.7.camel@baylibre.com> Message-ID: <7hy3m37ocy.fsf@baylibre.com> To: linus-amlogic@lists.infradead.org List-Id: linus-amlogic.lists.infradead.org Jerome Brunet writes: > On Mon, 2017-12-11 at 22:13 +0800, Yixun Lan wrote: >> Qiufang Dai (3): >> clk: meson-axg: add clocks dt-bindings required header >> clk: meson-axg: add clock controller drivers >> arm64: dts: meson-axg: add clock DT info for Meson AXG SoC >> >> Yixun Lan (3): >> clk: meson: make the spinlock naming more specific >> dt-bindings: clock: add compatible variant for the Meson-AXG >> arm64: dts: meson-axg: switch uart_ao clock to CLK81 >> >> .../bindings/clock/amlogic,gxbb-clkc.txt | 7 +- >> arch/arm64/Kconfig.platforms | 1 + >> arch/arm64/boot/dts/amlogic/meson-axg-s400.dts | 2 + >> arch/arm64/boot/dts/amlogic/meson-axg.dtsi | 19 +- >> drivers/clk/meson/Kconfig | 8 + >> drivers/clk/meson/Makefile | 1 + >> drivers/clk/meson/axg.c | 936 +++++++++++++++++++++ >> drivers/clk/meson/axg.h | 126 +++ >> drivers/clk/meson/clkc.h | 2 +- >> drivers/clk/meson/gxbb.c | 112 +-- >> drivers/clk/meson/meson8b.c | 24 +- >> include/dt-bindings/clock/axg-clkc.h | 71 ++ >> 12 files changed, 1234 insertions(+), 75 deletions(-) >> create mode 100644 drivers/clk/meson/axg.c >> create mode 100644 drivers/clk/meson/axg.h >> create mode 100644 include/dt-bindings/clock/axg-clkc.h > > Kevin, > > I took the first 4 patches through clk-meson. I left the last 2 for you. > > I have applied the DT bindings update separately. > Let me know if you have dependency on these new bindings and need a tag. Yes, I will need a tag on the headers since both the "switch uart_ao" patch and a subsequent patch to add DT for SPICC are using new clock IDs. Thanks, Kevin From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Return-Path: From: Kevin Hilman To: Jerome Brunet Cc: Yixun Lan , Neil Armstrong , Rob Herring , Mark Rutland , Michael Turquette , Stephen Boyd , Carlo Caione , Qiufang Dai , Jian Hu , linux-amlogic@lists.infradead.org, devicetree@vger.kernel.org, linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v7 0/6] add clk controller driver for Meson-AXG SoC References: <20171211141348.22048-1-yixun.lan@amlogic.com> <1513245826.32163.7.camel@baylibre.com> Date: Fri, 15 Dec 2017 12:00:45 -0800 In-Reply-To: <1513245826.32163.7.camel@baylibre.com> (Jerome Brunet's message of "Thu, 14 Dec 2017 11:03:46 +0100") Message-ID: <7hy3m37ocy.fsf@baylibre.com> MIME-Version: 1.0 Content-Type: text/plain List-ID: Jerome Brunet writes: > On Mon, 2017-12-11 at 22:13 +0800, Yixun Lan wrote: >> Qiufang Dai (3): >> clk: meson-axg: add clocks dt-bindings required header >> clk: meson-axg: add clock controller drivers >> arm64: dts: meson-axg: add clock DT info for Meson AXG SoC >> >> Yixun Lan (3): >> clk: meson: make the spinlock naming more specific >> dt-bindings: clock: add compatible variant for the Meson-AXG >> arm64: dts: meson-axg: switch uart_ao clock to CLK81 >> >> .../bindings/clock/amlogic,gxbb-clkc.txt | 7 +- >> arch/arm64/Kconfig.platforms | 1 + >> arch/arm64/boot/dts/amlogic/meson-axg-s400.dts | 2 + >> arch/arm64/boot/dts/amlogic/meson-axg.dtsi | 19 +- >> drivers/clk/meson/Kconfig | 8 + >> drivers/clk/meson/Makefile | 1 + >> drivers/clk/meson/axg.c | 936 +++++++++++++++++++++ >> drivers/clk/meson/axg.h | 126 +++ >> drivers/clk/meson/clkc.h | 2 +- >> drivers/clk/meson/gxbb.c | 112 +-- >> drivers/clk/meson/meson8b.c | 24 +- >> include/dt-bindings/clock/axg-clkc.h | 71 ++ >> 12 files changed, 1234 insertions(+), 75 deletions(-) >> create mode 100644 drivers/clk/meson/axg.c >> create mode 100644 drivers/clk/meson/axg.h >> create mode 100644 include/dt-bindings/clock/axg-clkc.h > > Kevin, > > I took the first 4 patches through clk-meson. I left the last 2 for you. > > I have applied the DT bindings update separately. > Let me know if you have dependency on these new bindings and need a tag. Yes, I will need a tag on the headers since both the "switch uart_ao" patch and a subsequent patch to add DT for SPICC are using new clock IDs. Thanks, Kevin From mboxrd@z Thu Jan 1 00:00:00 1970 From: khilman@baylibre.com (Kevin Hilman) Date: Fri, 15 Dec 2017 12:00:45 -0800 Subject: [PATCH v7 0/6] add clk controller driver for Meson-AXG SoC In-Reply-To: <1513245826.32163.7.camel@baylibre.com> (Jerome Brunet's message of "Thu, 14 Dec 2017 11:03:46 +0100") References: <20171211141348.22048-1-yixun.lan@amlogic.com> <1513245826.32163.7.camel@baylibre.com> Message-ID: <7hy3m37ocy.fsf@baylibre.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Jerome Brunet writes: > On Mon, 2017-12-11 at 22:13 +0800, Yixun Lan wrote: >> Qiufang Dai (3): >> clk: meson-axg: add clocks dt-bindings required header >> clk: meson-axg: add clock controller drivers >> arm64: dts: meson-axg: add clock DT info for Meson AXG SoC >> >> Yixun Lan (3): >> clk: meson: make the spinlock naming more specific >> dt-bindings: clock: add compatible variant for the Meson-AXG >> arm64: dts: meson-axg: switch uart_ao clock to CLK81 >> >> .../bindings/clock/amlogic,gxbb-clkc.txt | 7 +- >> arch/arm64/Kconfig.platforms | 1 + >> arch/arm64/boot/dts/amlogic/meson-axg-s400.dts | 2 + >> arch/arm64/boot/dts/amlogic/meson-axg.dtsi | 19 +- >> drivers/clk/meson/Kconfig | 8 + >> drivers/clk/meson/Makefile | 1 + >> drivers/clk/meson/axg.c | 936 +++++++++++++++++++++ >> drivers/clk/meson/axg.h | 126 +++ >> drivers/clk/meson/clkc.h | 2 +- >> drivers/clk/meson/gxbb.c | 112 +-- >> drivers/clk/meson/meson8b.c | 24 +- >> include/dt-bindings/clock/axg-clkc.h | 71 ++ >> 12 files changed, 1234 insertions(+), 75 deletions(-) >> create mode 100644 drivers/clk/meson/axg.c >> create mode 100644 drivers/clk/meson/axg.h >> create mode 100644 include/dt-bindings/clock/axg-clkc.h > > Kevin, > > I took the first 4 patches through clk-meson. I left the last 2 for you. > > I have applied the DT bindings update separately. > Let me know if you have dependency on these new bindings and need a tag. Yes, I will need a tag on the headers since both the "switch uart_ao" patch and a subsequent patch to add DT for SPICC are using new clock IDs. Thanks, Kevin From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kevin Hilman Subject: Re: [PATCH v7 0/6] add clk controller driver for Meson-AXG SoC Date: Fri, 15 Dec 2017 12:00:45 -0800 Message-ID: <7hy3m37ocy.fsf@baylibre.com> References: <20171211141348.22048-1-yixun.lan@amlogic.com> <1513245826.32163.7.camel@baylibre.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: In-Reply-To: <1513245826.32163.7.camel-rdvid1DuHRBWk0Htik3J/w@public.gmane.org> (Jerome Brunet's message of "Thu, 14 Dec 2017 11:03:46 +0100") Sender: devicetree-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Jerome Brunet Cc: Yixun Lan , Neil Armstrong , Rob Herring , Mark Rutland , Michael Turquette , Stephen Boyd , Carlo Caione , Qiufang Dai , Jian Hu , linux-amlogic-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-clk-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-Id: devicetree@vger.kernel.org Jerome Brunet writes: > On Mon, 2017-12-11 at 22:13 +0800, Yixun Lan wrote: >> Qiufang Dai (3): >> clk: meson-axg: add clocks dt-bindings required header >> clk: meson-axg: add clock controller drivers >> arm64: dts: meson-axg: add clock DT info for Meson AXG SoC >> >> Yixun Lan (3): >> clk: meson: make the spinlock naming more specific >> dt-bindings: clock: add compatible variant for the Meson-AXG >> arm64: dts: meson-axg: switch uart_ao clock to CLK81 >> >> .../bindings/clock/amlogic,gxbb-clkc.txt | 7 +- >> arch/arm64/Kconfig.platforms | 1 + >> arch/arm64/boot/dts/amlogic/meson-axg-s400.dts | 2 + >> arch/arm64/boot/dts/amlogic/meson-axg.dtsi | 19 +- >> drivers/clk/meson/Kconfig | 8 + >> drivers/clk/meson/Makefile | 1 + >> drivers/clk/meson/axg.c | 936 +++++++++++++++++++++ >> drivers/clk/meson/axg.h | 126 +++ >> drivers/clk/meson/clkc.h | 2 +- >> drivers/clk/meson/gxbb.c | 112 +-- >> drivers/clk/meson/meson8b.c | 24 +- >> include/dt-bindings/clock/axg-clkc.h | 71 ++ >> 12 files changed, 1234 insertions(+), 75 deletions(-) >> create mode 100644 drivers/clk/meson/axg.c >> create mode 100644 drivers/clk/meson/axg.h >> create mode 100644 include/dt-bindings/clock/axg-clkc.h > > Kevin, > > I took the first 4 patches through clk-meson. I left the last 2 for you. > > I have applied the DT bindings update separately. > Let me know if you have dependency on these new bindings and need a tag. Yes, I will need a tag on the headers since both the "switch uart_ao" patch and a subsequent patch to add DT for SPICC are using new clock IDs. Thanks, Kevin -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html