From: Matthias Brugger <matthias.bgg@gmail.com>
To: Eddie Huang <eddie.huang@mediatek.com>
Cc: Henry Chen <henryc.chen@mediatek.com>,
Daniel Kurtz <djkurtz@chromium.org>,
Sascha Hauer <kernel@pengutronix.de>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-mediatek@lists.infradead.org"
<linux-mediatek@lists.infradead.org>
Subject: Re: [PATCH] arm64: dts: mt8173-evb: Add PMIC support
Date: Tue, 07 Jul 2015 09:51:28 +0200 [thread overview]
Message-ID: <3123164.GB0TYlAtQ5@ubix> (raw)
In-Reply-To: <1436238590.19228.4.camel@mtksdaap41>
On Tuesday, July 07, 2015 11:09:50 AM Eddie Huang wrote:
> On Mon, 2015-07-06 at 18:39 +0200, Matthias Brugger wrote:
> > On Monday, July 06, 2015 03:43:57 PM Eddie Huang wrote:
> > > On Mon, 2015-06-22 at 21:19 +0800, Henry Chen wrote:
> > > > From: Eddie Huang <eddie.huang@mediatek.com>
>
> [...]
>
> > > > diff --git a/arch/arm64/boot/dts/mediatek/mt8173-evb.dts
> > > > b/arch/arm64/boot/dts/mediatek/mt8173-evb.dts index 43d5401..b967914
> > > > 100644
> > > > --- a/arch/arm64/boot/dts/mediatek/mt8173-evb.dts
> > > > +++ b/arch/arm64/boot/dts/mediatek/mt8173-evb.dts
> > > > @@ -33,6 +33,180 @@
> > > >
> > > > chosen { };
> > > >
> > > > };
> > > >
> > > > +&pwrap {
> > > > + pmic: mt6397 {
> > > > + compatible = "mediatek,mt6397";
> > > > + interrupt-parent = <&pio>;
> > > > + interrupts = <11 IRQ_TYPE_LEVEL_HIGH>;
> > > > + interrupt-controller;
> > > > + #interrupt-cells = <2>;
> > > > +
> > > > + mt6397regulator: mt6397regulator {
> > > > + compatible = "mediatek,mt6397-regulator";
> > > > + mt6397_vpca15_reg: buck_vpca15 {
> > > > + regulator-compatible = "buck_vpca15";
> > > > + regulator-name = "vpca15";
> > > > + regulator-min-microvolt = < 700000>;
> > > > + regulator-max-microvolt = <1350000>;
> > > > + regulator-ramp-delay = <12500>;
> > > > + regulator-always-on;
> > >
> > > I see you pull da9211 regulator dts patch, but not this one. How about
> > > this patch ?
> >
> > I inserted some new-lines and added it to v4.2-next/arm64
>
> Thanks the pull. Normally we put alias node in alphabetical order, make
> later merge more easily. I think you can do the modification and squeeze
> into the same commit.
>
I used the order of the dtsi file, but I think your approach is more straight
forward. I will change that.
Thanks for your comment.
Matthias
WARNING: multiple messages have this Message-ID (diff)
From: matthias.bgg@gmail.com (Matthias Brugger)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] arm64: dts: mt8173-evb: Add PMIC support
Date: Tue, 07 Jul 2015 09:51:28 +0200 [thread overview]
Message-ID: <3123164.GB0TYlAtQ5@ubix> (raw)
In-Reply-To: <1436238590.19228.4.camel@mtksdaap41>
On Tuesday, July 07, 2015 11:09:50 AM Eddie Huang wrote:
> On Mon, 2015-07-06 at 18:39 +0200, Matthias Brugger wrote:
> > On Monday, July 06, 2015 03:43:57 PM Eddie Huang wrote:
> > > On Mon, 2015-06-22 at 21:19 +0800, Henry Chen wrote:
> > > > From: Eddie Huang <eddie.huang@mediatek.com>
>
> [...]
>
> > > > diff --git a/arch/arm64/boot/dts/mediatek/mt8173-evb.dts
> > > > b/arch/arm64/boot/dts/mediatek/mt8173-evb.dts index 43d5401..b967914
> > > > 100644
> > > > --- a/arch/arm64/boot/dts/mediatek/mt8173-evb.dts
> > > > +++ b/arch/arm64/boot/dts/mediatek/mt8173-evb.dts
> > > > @@ -33,6 +33,180 @@
> > > >
> > > > chosen { };
> > > >
> > > > };
> > > >
> > > > +&pwrap {
> > > > + pmic: mt6397 {
> > > > + compatible = "mediatek,mt6397";
> > > > + interrupt-parent = <&pio>;
> > > > + interrupts = <11 IRQ_TYPE_LEVEL_HIGH>;
> > > > + interrupt-controller;
> > > > + #interrupt-cells = <2>;
> > > > +
> > > > + mt6397regulator: mt6397regulator {
> > > > + compatible = "mediatek,mt6397-regulator";
> > > > + mt6397_vpca15_reg: buck_vpca15 {
> > > > + regulator-compatible = "buck_vpca15";
> > > > + regulator-name = "vpca15";
> > > > + regulator-min-microvolt = < 700000>;
> > > > + regulator-max-microvolt = <1350000>;
> > > > + regulator-ramp-delay = <12500>;
> > > > + regulator-always-on;
> > >
> > > I see you pull da9211 regulator dts patch, but not this one. How about
> > > this patch ?
> >
> > I inserted some new-lines and added it to v4.2-next/arm64
>
> Thanks the pull. Normally we put alias node in alphabetical order, make
> later merge more easily. I think you can do the modification and squeeze
> into the same commit.
>
I used the order of the dtsi file, but I think your approach is more straight
forward. I will change that.
Thanks for your comment.
Matthias
next prev parent reply other threads:[~2015-07-07 7:51 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-22 13:19 [PATCH] arm64: dts: mt8173-evb: Add PMIC support Henry Chen
2015-06-22 13:19 ` Henry Chen
2015-06-22 13:19 ` Henry Chen
[not found] ` <1434979177-7575-1-git-send-email-henryc.chen-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>
2015-07-06 7:43 ` Eddie Huang
2015-07-06 7:43 ` Eddie Huang
2015-07-06 7:43 ` Eddie Huang
2015-07-06 16:39 ` Matthias Brugger
2015-07-06 16:39 ` Matthias Brugger
2015-07-07 3:09 ` Eddie Huang
2015-07-07 3:09 ` Eddie Huang
2015-07-07 7:51 ` Matthias Brugger [this message]
2015-07-07 7:51 ` Matthias Brugger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3123164.GB0TYlAtQ5@ubix \
--to=matthias.bgg@gmail.com \
--cc=devicetree@vger.kernel.org \
--cc=djkurtz@chromium.org \
--cc=eddie.huang@mediatek.com \
--cc=henryc.chen@mediatek.com \
--cc=kernel@pengutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.