From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751171AbdARWho (ORCPT ); Wed, 18 Jan 2017 17:37:44 -0500 Received: from mail-pf0-f176.google.com ([209.85.192.176]:34419 "EHLO mail-pf0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751030AbdARWhl (ORCPT ); Wed, 18 Jan 2017 17:37:41 -0500 From: Kevin Hilman To: Andreas =?utf-8?Q?F=C3=A4rber?= Cc: linux-amlogic@lists.infradead.org, Carlo Caione , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Rob Herring , Mark Rutland , Catalin Marinas , Will Deacon , devicetree@vger.kernel.org Subject: Re: [PATCH 2/2] ARM64: dts: meson-gxm-rbox-pro: Enable Bluetooth Organization: BayLibre References: <20170117030611.23827-1-afaerber@suse.de> <20170117030611.23827-3-afaerber@suse.de> Date: Wed, 18 Jan 2017 14:29:58 -0800 In-Reply-To: <20170117030611.23827-3-afaerber@suse.de> ("Andreas =?utf-8?Q?F=C3=A4rber=22's?= message of "Tue, 17 Jan 2017 04:06:11 +0100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (darwin) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by mail.home.local id v0IMblbh025272 Andreas Färber writes: > Add an SDIO reset GPIO and enable the serial used by the AP6255 > Bluetooth module. Based on work by Martin Blumenstingl. > > Signed-off-by: Andreas Färber > --- > arch/arm64/boot/dts/amlogic/meson-gxm-rbox-pro.dts | 11 ++++++++++- > 1 file changed, 10 insertions(+), 1 deletion(-) > > diff --git a/arch/arm64/boot/dts/amlogic/meson-gxm-rbox-pro.dts b/arch/arm64/boot/dts/amlogic/meson-gxm-rbox-pro.dts > index 9f04fa4e5aec..6ea225f584bd 100644 > --- a/arch/arm64/boot/dts/amlogic/meson-gxm-rbox-pro.dts > +++ b/arch/arm64/boot/dts/amlogic/meson-gxm-rbox-pro.dts > @@ -58,6 +58,7 @@ > > aliases { > serial0 = &uart_AO; > + serial1 = &uart_A; > }; > > chosen { > @@ -122,7 +123,8 @@ > > sdio_pwrseq: sdio-pwrseq { > compatible = "mmc-pwrseq-simple"; > - reset-gpios = <&gpio GPIOX_6 GPIO_ACTIVE_LOW>; > + reset-gpios = <&gpio GPIOX_6 GPIO_ACTIVE_LOW>, > + <&gpio GPIOX_17 GPIO_ACTIVE_LOW>; > clocks = <&wifi32k>; > clock-names = "ext_clock"; c.f. thread on Martin's series. I don't like this (ab)use of reset-gpios for sdio-pwrseq, and there's some work coming that will make this much cleaner. So, I'll hold off on this until the other solution is ready. Kevin