Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756709AbdLOOtB (ORCPT ); Fri, 15 Dec 2017 09:49:01 -0500 Received: from mail-wm0-f68.google.com ([74.125.82.68]:42692 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755426AbdLOOs6 (ORCPT ); Fri, 15 Dec 2017 09:48:58 -0500 X-Google-Smtp-Source: ACJfBosYrbK4Mv2tqLdNojj5TGTrDI6fV/wnZ5n076WBNfxayMF/+RfSWWd+AElYCeu/fU5/WUgyCQ== Subject: Re: [PATCH v2] ARM64: dts: meson-axg: add the SPICC controller To: Yixun Lan , Kevin Hilman , devicetree@vger.kernel.org Cc: Jerome Brunet , Rob Herring , Mark Rutland , Carlo Caione , Sunny Luo , linux-amlogic@lists.infradead.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org References: <20171215144217.223593-1-yixun.lan@amlogic.com> From: Neil Armstrong Organization: Baylibre Message-ID: <19ed304f-ac35-e7a5-6722-b2cfde8f7bdd@baylibre.com> Date: Fri, 15 Dec 2017 15:48:55 +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: <20171215144217.223593-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: 1782 Lines: 63 On 15/12/2017 15:42, Yixun Lan wrote: > From: Sunny Luo > > Add DT info for the SPICC controller which found in > the Amlogic's Meson-AXG SoC. > > Signed-off-by: Sunny Luo > Signed-off-by: Yixun Lan > > --- > Changes int v2 since [1] > - rebase to Kevin's tree, branch v4.16/dt64 > - this patch depend on clock & pinctrl DT patch > > [1] > http://lists.infradead.org/pipermail/linux-amlogic/2017-November/005495.html > --- > arch/arm64/boot/dts/amlogic/meson-axg.dtsi | 93 ++++++++++++++++++++++++++++++ > 1 file changed, 93 insertions(+) > > diff --git a/arch/arm64/boot/dts/amlogic/meson-axg.dtsi b/arch/arm64/boot/dts/amlogic/meson-axg.dtsi > index d356ce74ad89..d33721005748 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"; > @@ -120,6 +121,28 @@ > #size-cells = <2>; > ranges = <0x0 0x0 0x0 0xffd00000 0x0 0x25000>; > > + spicc0: spi@13000 { > + compatible = "amlogic,meson-axg-spicc"; > + reg = <0x0 0x13000 0x0 0x3c>; > + interrupts = ; > + clocks = <&clkc CLKID_SPICC0>; > + clock-names = "core"; > + #address-cells = <1>; > + #size-cells = <0>; > + status = "disabled"; > + }; > + [...] > + > + spi1_ss0_x_pins: spi1_ss0_x { > + mux { > + groups = "spi1_ss0_x"; > + function = "spi1"; > + }; > + }; > }; > }; > > Reviewed-by: Neil Armstrong