Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932093AbdLOOTk (ORCPT ); Fri, 15 Dec 2017 09:19:40 -0500 Received: from mail-wm0-f67.google.com ([74.125.82.67]:35184 "EHLO mail-wm0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755800AbdLOOTh (ORCPT ); Fri, 15 Dec 2017 09:19:37 -0500 X-Google-Smtp-Source: ACJfBovYCHc8K8LilhxDVPWQzYAOo363mr8xFiuWFhY1djEJHE5P8X8lnsT2ssdmb8AJyMWK2dr80Q== Subject: Re: [PATCH v8] arm64: dts: meson-axg: switch uart_ao clock to CLK81 To: Yixun Lan , Kevin Hilman , devicetree@vger.kernel.org Cc: Jerome Brunet , Rob Herring , Mark Rutland , Carlo Caione , Qiufang Dai , Jian Hu , linux-amlogic@lists.infradead.org, linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org References: <20171215141741.175985-1-yixun.lan@amlogic.com> From: Neil Armstrong Organization: Baylibre Message-ID: <8e5247c5-4de2-daaa-505d-971e83d9b1d9@baylibre.com> Date: Fri, 15 Dec 2017 15:19:33 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: <20171215141741.175985-1-yixun.lan@amlogic.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1774 Lines: 50 On 15/12/2017 15:17, Yixun Lan wrote: > Switch the uart_ao pclk to CLK81 since the clock driver is ready. > > Signed-off-by: Yixun Lan > > --- > This is a fixup for the previous version > > Changes in v8 since [1] > - move clock DT info into soc.dtsi > > [1] > http://lists.infradead.org/pipermail/linux-amlogic/2017-December/005741.html > --- > arch/arm64/boot/dts/amlogic/meson-axg.dtsi | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/arch/arm64/boot/dts/amlogic/meson-axg.dtsi b/arch/arm64/boot/dts/amlogic/meson-axg.dtsi > index 01beb211f442..d1f8043be426 100644 > --- a/arch/arm64/boot/dts/amlogic/meson-axg.dtsi > +++ b/arch/arm64/boot/dts/amlogic/meson-axg.dtsi > @@ -7,6 +7,7 @@ > #include > #include > #include > +#include > > / { > compatible = "amlogic,meson-axg"; > @@ -200,7 +201,7 @@ > compatible = "amlogic,meson-gx-uart", "amlogic,meson-ao-uart"; > reg = <0x0 0x3000 0x0 0x18>; > interrupts = ; > - clocks = <&xtal>, <&xtal>, <&xtal>; > + clocks = <&xtal>, <&clkc CLKID_CLK81>, <&xtal>; > clock-names = "xtal", "pclk", "baud"; > status = "disabled"; > }; > @@ -209,7 +210,7 @@ > compatible = "amlogic,meson-gx-uart", "amlogic,meson-ao-uart"; > reg = <0x0 0x4000 0x0 0x18>; > interrupts = ; > - clocks = <&xtal>, <&xtal>, <&xtal>; > + clocks = <&xtal>, <&clkc CLKID_CLK81>, <&xtal>; > clock-names = "xtal", "pclk", "baud"; > status = "disabled"; > }; > Reviewed-by: Neil Armstrong