Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751989AbdFOT4u (ORCPT ); Thu, 15 Jun 2017 15:56:50 -0400 Received: from szxga01-in.huawei.com ([45.249.212.187]:8297 "EHLO szxga01-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751639AbdFOT4t (ORCPT ); Thu, 15 Jun 2017 15:56:49 -0400 Subject: Re: [PATCH v6 7/8] arm64: dts: hikey960: add device node for pmic and regulators To: Guodong Xu , , , , , , , , , , , , , , , , , , , , , , References: <20170608220841.26531-1-guodong.xu@linaro.org> <20170608220841.26531-8-guodong.xu@linaro.org> CC: , , , From: Wei Xu Message-ID: <5942E633.9040908@hisilicon.com> Date: Thu, 15 Jun 2017 20:55:31 +0100 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.6.0 MIME-Version: 1.0 In-Reply-To: <20170608220841.26531-8-guodong.xu@linaro.org> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.47.88.226] X-CFilter-Loop: Reflected X-Mirapoint-Virus-RAPID-Raw: score=unknown(0), refid=str=0001.0A020203.5942E64E.00AA,ss=1,re=0.000,recu=0.000,reip=0.000,cl=1,cld=1,fgs=0, ip=0.0.0.0, so=2014-11-16 11:51:01, dmn=2013-03-21 17:37:32 X-Mirapoint-Loop-Id: 17c58f51cca78a4a5c7e82d42b40d601 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2385 Lines: 82 Hi Guodong, On 2017/6/8 23:08, Guodong Xu wrote: > From: Wang Xiaoyin > > add device node for hi6421 pmic core and hi6421v530 > voltage regulator,include LDO(1,3,9,11,15,16) > > Signed-off-by: Wang Xiaoyin > Signed-off-by: Guodong Xu > Acked-by: Arnd Bergmann > --- > arch/arm64/boot/dts/hisilicon/hi3660-hikey960.dts | 46 +++++++++++++++++++++++ > 1 file changed, 46 insertions(+) > > diff --git a/arch/arm64/boot/dts/hisilicon/hi3660-hikey960.dts b/arch/arm64/boot/dts/hisilicon/hi3660-hikey960.dts > index ca448f0..e579333 100644 > --- a/arch/arm64/boot/dts/hisilicon/hi3660-hikey960.dts > +++ b/arch/arm64/boot/dts/hisilicon/hi3660-hikey960.dts > @@ -97,6 +97,52 @@ > default-state = "off"; > }; > }; > + > + pmic: pmic@fff34000 { > + compatible = "hisilicon,hi6421v530-pmic"; > + reg = <0x0 0xfff34000 0x0 0x1000>; > + interrupt-controller; > + #interrupt-cells = <2>; > + > + regulators { > + ldo3: LDO3 { /* HDMI */ > + regulator-name = "VOUT3_1V85"; > + regulator-min-microvolt = <1800000>; > + regulator-max-microvolt = <2200000>; > + regulator-enable-ramp-delay = <120>; > + }; > + > + ldo9: LDO9 { /* SDCARD I/O */ > + regulator-name = "VOUT9_1V8_2V95"; > + regulator-min-microvolt = <1750000>; > + regulator-max-microvolt = <3300000>; > + regulator-enable-ramp-delay = <240>; > + }; > + > + ldo11: LDO11 { /* Low Speed Connector */ > + regulator-name = "VOUT11_1V8_2V95"; > + regulator-min-microvolt = <1750000>; > + regulator-max-microvolt = <3300000>; > + regulator-enable-ramp-delay = <240>; > + }; > + > + ldo15: LDO15 { /* UFS VCC */ > + regulator-name = "VOUT15_3V0"; > + regulator-min-microvolt = <1750000>; > + regulator-max-microvolt = <3000000>; > + regulator-boot-on; > + regulator-always-on; > + regulator-enable-ramp-delay = <120>; > + }; > + > + ldo16: LDO16 { /* SD VDD */ > + regulator-name = "VOUT16_2V95"; > + regulator-min-microvolt = <1750000>; > + regulator-max-microvolt = <3000000>; > + regulator-enable-ramp-delay = <360>; > + }; > + }; > + }; > }; > > &i2c0 { > Since you put the dts part into another patch set[1] and the driver part has been applied. I will pick up [1]. Thanks! [1]: https://lkml.org/lkml/2017/6/14/1052 BR, Wei