From: jacopo <jacopo@jmondi.org>
To: Chris Brandt <Chris.Brandt@renesas.com>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>,
Jacopo Mondi <jacopo+renesas@jmondi.org>,
"geert+renesas@glider.be" <geert+renesas@glider.be>,
"laurent.pinchart@ideasonboard.com"
<laurent.pinchart@ideasonboard.com>,
"linus.walleij@linaro.org" <linus.walleij@linaro.org>,
"robh+dt@kernel.org" <robh+dt@kernel.org>,
"mark.rutland@arm.com" <mark.rutland@arm.com>,
"linux@armlinux.org.uk" <linux@armlinux.org.uk>,
"linux-renesas-soc@vger.kernel.org"
<linux-renesas-soc@vger.kernel.org>,
"linux-gpio@vger.kernel.org" <linux-gpio@vger.kernel.org>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>
Subject: Re: [PATCH 4/7] arm: dts: r7s72100: Add pin controller node
Date: Mon, 20 Mar 2017 14:47:55 +0100 [thread overview]
Message-ID: <20170320134755.GB30223@w540> (raw)
In-Reply-To: <SG2PR06MB1165E8FAE15523F7D3EC83718A2B0@SG2PR06MB1165.apcprd06.prod.outlook.com>
Hi Chris, Geert,
On Fri, Mar 03, 2017 at 01:24:51PM +0000, Chris Brandt wrote:
> Hi Geert,
>
> On Friday, March 03, 2017, Geert Uytterhoeven wrote:
> > > Is it possible to change the number of port pins in the board dts file?
> > > For example:
> > > RZ/A1H: P5_0 - P5_10
> > > RZ/A1L: P5_0 - P5_16
> >
> > That's 17 pins, not 16?
>
> Oops, I meant P5_15
>
> Looking at the parts, here are the differences:
>
> RZ/A1H RZ/A1L
> ------------------
> P2_0:15 P2_0:9
> P4_0:15 P4_0:7
> P5_0:10 P5_0:15
> P7_0:15 P7_0:11
> P9_0:7 P9_0:5
> P10_0:15 none
> P11_0:15 none
>
> > > So, in a rza1l-board.dts file I would put:
> > >
> > > &port5 {
> > > gpio-ranges = <&pinctrl 0 80 16>;
> > > }
> > >
> > > Will this work?
> >
> > Yes, overriding should work. But the number of pins is an SoC-property,
> > not
> > a board-property?
>
> True, but I am trying to figure out how to solve this locally and not make
> it an upstream problem.
>
>
> > Are the differences between RZ/A1H and RZ/A1L just the number of pins?
>
> Yes/No.
>
> Internally, the IP blocks are the same, and located at the same register
> addresses, but come out to different port pins due to the RZ/A1L having smaller
> packages.
>
> Also, the L has less channels than the H.
> For example:
> QSPI: H=2, L=1
> LCD: H=2, L=1
> SCIF: H=8, L=5
> CAN: H=5, L=2
>
> Of course there is some IP that only comes in the H.
>
> This is why I didn't want to associate "names" with the pins in a pfc driver.
> I just wanted the board DT to assign a pin to a 'function number'.
>
>
>
> > If yes, you could use a hierarchical DTS structure:
> >
> > rza1h-<board>.dts:
> >
> > #include "rza1h.dtsi"
> >
> > // board specifics here
> >
> > rza1l-<board>.dts:
> >
> > #include "rza1l.dtsi"
> >
> > // board specifics here
> >
> > rza1h.dtsi:
> >
> > #include "rza.dtsi" // r7s72100.dtsi?
> >
> > // base SoC overrides
> > &port5 {
> > gpio-ranges = <&pinctrl 0 80 11>;
> > }
> >
> > rza1l.dtsi:
> >
> > #include "rza.dtsi" // r7s72100.dtsi?
> >
> > // base SoC overrides
> > &port5 {
> > gpio-ranges = <&pinctrl 0 80 16>;
> > }
> >
> > Actual naming of DTS files TBD.
>
> OK, so just put the pin differences in the two files. That's a good idea. But,
> then that's 2 more files to add upstream.
> As the RZ/A series continues, they might keep doing this kind of thing, so I
> don't want to get into the habit of adding more and more DT files.
>
> # I wish there was some type of if-else syntax in Device Tree so in the
> board file I could just say:
>
> / {
> model = "RSKRZA1";
> compatible = "renesas,rskrza1", "renesas,r7s72100";
>
> variant = "rza1l";
>
>
> > We could also decide to not have rza1h.dtsi, and assume the base dtsi is
> > for
> > RZ/A1H.
>
> Honestly, I'm fine with RZ/A1H being the flagship upstream SoC since it is a
> superset of all the peripherals in RZ/A1M,/A1L,/A1LU,/A1LC. Meaning, this small
> difference can be handled in a simple board file addition.
>
> I was thinking I was going to post some DT examples on eLinux.org anyway, so one of
> them would just be this RZ/A1L fix.
>
If we do all agree on having RZ/A1H upstream and let differences
between SoCs to be handled in the BSP/downstream board files, I'll send
v2 targeting that specific SoC only
Thanks
j
> Cheers
>
> Chris
>
next prev parent reply other threads:[~2017-03-20 13:48 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-20 17:13 Renesas RZ/A1 pin and gpio controller Jacopo Mondi
2017-02-20 17:13 ` [PATCH 5/7] arm: dts: genmai: Add SCIF2 pin group Jacopo Mondi
[not found] ` <1487610788-6939-1-git-send-email-jacopo+renesas-AW8dsiIh9cEdnm+yROfE0A@public.gmane.org>
2017-02-20 17:13 ` [PATCH 1/7] pinctrl: Renesas RZ/A1 pin and gpio controller Jacopo Mondi
2017-02-21 10:49 ` jacopo mondi
2017-03-09 14:55 ` Chris Brandt
2017-03-16 14:04 ` jacopo mondi
2017-03-16 14:43 ` Chris Brandt
2017-02-20 17:13 ` [PATCH 2/7] Documentation: devicetree: bindings: Add RZ/A1 pinctrl binding documentation Jacopo Mondi
2017-02-27 19:47 ` Rob Herring
2017-02-20 17:13 ` [PATCH 3/7] arm: dts: dt-bindings: Add Renesas RZ pinctrl header Jacopo Mondi
2017-03-09 14:54 ` Chris Brandt
2017-03-16 14:14 ` jacopo mondi
2017-03-16 15:03 ` Chris Brandt
2017-02-20 17:13 ` [PATCH 4/7] arm: dts: r7s72100: Add pin controller node Jacopo Mondi
2017-02-21 10:46 ` jacopo mondi
2017-03-02 20:17 ` Chris Brandt
2017-03-03 10:08 ` Geert Uytterhoeven
2017-03-03 13:24 ` Chris Brandt
2017-03-20 13:47 ` jacopo [this message]
2017-03-20 15:17 ` Chris Brandt
2017-02-20 17:13 ` [PATCH 6/7] arm: dts: genmai: Add RIIC2 pin group Jacopo Mondi
2017-02-20 17:13 ` [PATCH 7/7] arm: dts: genmai: Add user led device nodes Jacopo Mondi
2017-03-02 20:16 ` Renesas RZ/A1 pin and gpio controller Chris Brandt
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=20170320134755.GB30223@w540 \
--to=jacopo@jmondi.org \
--cc=Chris.Brandt@renesas.com \
--cc=devicetree@vger.kernel.org \
--cc=geert+renesas@glider.be \
--cc=geert@linux-m68k.org \
--cc=jacopo+renesas@jmondi.org \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=mark.rutland@arm.com \
--cc=robh+dt@kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).