From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Ivan T. Ivanov" Subject: Re: [PATCH v13 03/10] qcom: spm: Add Subsystem Power Manager driver Date: Thu, 27 Nov 2014 10:44:23 +0200 Message-ID: <1417077863.10282.3.camel@mm-sol.com> References: <1417065854-37745-1-git-send-email-lina.iyer@linaro.org> <1417065854-37745-4-git-send-email-lina.iyer@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Return-path: Received: from ns.mm-sol.com ([37.157.136.199]:45963 "EHLO extserv.mm-sol.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751031AbaK0IoA (ORCPT ); Thu, 27 Nov 2014 03:44:00 -0500 In-Reply-To: <1417065854-37745-4-git-send-email-lina.iyer@linaro.org> Sender: linux-arm-msm-owner@vger.kernel.org List-Id: linux-arm-msm@vger.kernel.org To: Lina Iyer Cc: daniel.lezcano@linaro.org, khilman@linaro.org, sboyd@codeaurora.org, galak@codeaurora.org, linux-arm-msm@vger.kernel.org, linux-pm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, lorenzo.pieralisi@arm.com, msivasub@codeaurora.org, devicetree@vger.kernel.org Hi,=20 On Wed, 2014-11-26 at 22:24 -0700, Lina Iyer wrote: >=20 > - compatible: > @@ -14,10 +23,13 @@ PROPERTIES > Value type: > Definition: shall contain "qcom,saw2". A more specific value = should be > one of: Which driver is supposed to handle this property? > - "qcom,saw2-v1" > - "qcom,saw2-v1.1" > - "qcom,saw2-v2" > - "qcom,saw2-v2.1" > + "qcom,saw2-v1" > + "qcom,saw2-v1.1" > + "qcom,saw2-v2" > + "qcom,saw2-v2.1" Doesn't seems to be used or supported? > + "qcom,apq8064-saw2-v1.1-cpu" > + "qcom,msm8974-saw2-v2.1-cpu" > + "qcom,apq8084-saw2-v2.1-cpu" >=20 > -=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0regulator@2099000 { > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0power-controller@2099000 { > compatible =3D "qcom,saw2"; > reg =3D <0x02099000 0x1000>, <0x02009000 0x1000>; > + regulator; >=20 > +static const struct of_device_id spm_match_table[] =3D { > + { .compatible =3D "qcom,msm8974-saw2-v2.1-cpu", > + .data =3D &spm_reg_8974_8084_cpu }, > + { .compatible =3D "qcom,apq8084-saw2-v2.1-cpu", > + .data =3D &spm_reg_8974_8084_cpu }, > + { .compatible =3D "qcom,apq8064-saw2-v1.1-cpu", > + .data =3D &spm_reg_8064_cpu }, > + { }, > +}; > + Regards, Ivan From mboxrd@z Thu Jan 1 00:00:00 1970 From: iivanov@mm-sol.com (Ivan T. Ivanov) Date: Thu, 27 Nov 2014 10:44:23 +0200 Subject: [PATCH v13 03/10] qcom: spm: Add Subsystem Power Manager driver In-Reply-To: <1417065854-37745-4-git-send-email-lina.iyer@linaro.org> References: <1417065854-37745-1-git-send-email-lina.iyer@linaro.org> <1417065854-37745-4-git-send-email-lina.iyer@linaro.org> Message-ID: <1417077863.10282.3.camel@mm-sol.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Hi, On Wed, 2014-11-26 at 22:24 -0700, Lina Iyer wrote: > > - compatible: > @@ -14,10 +23,13 @@ PROPERTIES > Value type: > Definition: shall contain "qcom,saw2". A more specific value should be > one of: Which driver is supposed to handle this property? > - "qcom,saw2-v1" > - "qcom,saw2-v1.1" > - "qcom,saw2-v2" > - "qcom,saw2-v2.1" > + "qcom,saw2-v1" > + "qcom,saw2-v1.1" > + "qcom,saw2-v2" > + "qcom,saw2-v2.1" Doesn't seems to be used or supported? > + "qcom,apq8064-saw2-v1.1-cpu" > + "qcom,msm8974-saw2-v2.1-cpu" > + "qcom,apq8084-saw2-v2.1-cpu" > > -???????regulator at 2099000 { > +???????power-controller at 2099000 { > compatible = "qcom,saw2"; > reg = <0x02099000 0x1000>, <0x02009000 0x1000>; > + regulator; > > +static const struct of_device_id spm_match_table[] = { > + { .compatible = "qcom,msm8974-saw2-v2.1-cpu", > + .data = &spm_reg_8974_8084_cpu }, > + { .compatible = "qcom,apq8084-saw2-v2.1-cpu", > + .data = &spm_reg_8974_8084_cpu }, > + { .compatible = "qcom,apq8064-saw2-v1.1-cpu", > + .data = &spm_reg_8064_cpu }, > + { }, > +}; > + Regards, Ivan