From: valentin.longchamp@keymile.com (Valentin Longchamp)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ARM: Kirkwood: Bundle the common pinctrl of 88f6281 and 88f6282
Date: Thu, 03 Jan 2013 16:56:42 +0100 [thread overview]
Message-ID: <50E5AA3A.8000503@keymile.com> (raw)
In-Reply-To: <20121227194048.GH17242@lunn.ch>
On 12/27/2012 08:40 PM, Andrew Lunn wrote:
> On Thu, Dec 27, 2012 at 12:05:24PM -0500, Jason Cooper wrote:
>> On Sun, Dec 23, 2012 at 11:35:49AM +0900, Nobuhiro Iwamatsu wrote:
>>> 88f6281 and 88f6282 has common pinctrl.
>>> This buldles the common pincrtl of these to kirkwood-628x-base.dtsi.
>>>
>>> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
>>> ---
>>> arch/arm/boot/dts/kirkwood-6281.dtsi | 38 ++------------------------
>>> arch/arm/boot/dts/kirkwood-6282.dtsi | 35 ++----------------------
>>> arch/arm/boot/dts/kirkwood-628x-base.dtsi | 41 +++++++++++++++++++++++++++++
>>
>> Is there a reason we can't move the contents of the proposed
>> kirkwood-628x-base.dtsi into kirkwood.dtsi ?
>
> Hi Jason
>
> It might cause problems for kirkwood-98DX4122. I'm assuming this
> kirkwood embedded inside a Marvell switch will require a different
> pinctrl. I've no idea what pins it actually has, so i cannot really
> say.
>
>> Also, please don't forget to CC Andrew Lunn and myself for kirkwood
>> patches. I've added him.
>
> I added Valentin Longchamp to CC: who might be able to tell us if any
> of common pinctrl below is also common to 98DX4122.
Hi Andrew,
There are common pins on the kirkwood-98DX4122:
- nand
- spi
- twsi0
- uart0
- uart1
However, these are not present:
- sata0
- sata1
- sdio
One solution would then be to have the first five in a kirkwood-xyz-base.dtsi
that could be included in all the 3 kirkwood-[6281|6282|98dx4122].dtsi files
(that would then contain the remaining 3 for both the 6281 6282).
Valentin
>
> Andrew
>
>
>>> 3 files changed, 45 insertions(+), 69 deletions(-)
>>> create mode 100644 arch/arm/boot/dts/kirkwood-628x-base.dtsi
>>>
>>> diff --git a/arch/arm/boot/dts/kirkwood-6281.dtsi b/arch/arm/boot/dts/kirkwood-6281.dtsi
>>> index d6c9d65..c8fe885 100644
>>> --- a/arch/arm/boot/dts/kirkwood-6281.dtsi
>>> +++ b/arch/arm/boot/dts/kirkwood-6281.dtsi
>>> @@ -1,44 +1,10 @@
>>> +/include/ "kirkwood-628x-base.dtsi"
>>> +
>>> / {
>>> ocp at f1000000 {
>>> pinctrl: pinctrl at 10000 {
>>> compatible = "marvell,88f6281-pinctrl";
>>> reg = <0x10000 0x20>;
>>> -
>>> - pmx_nand: pmx-nand {
>>> - marvell,pins = "mpp0", "mpp1", "mpp2", "mpp3",
>>> - "mpp4", "mpp5", "mpp18",
>>> - "mpp19";
>>> - marvell,function = "nand";
>>> - };
>>> - pmx_sata0: pmx-sata0 {
>>> - marvell,pins = "mpp5", "mpp21", "mpp23";
>>> - marvell,function = "sata0";
>>> - };
>>> - pmx_sata1: pmx-sata1 {
>>> - marvell,pins = "mpp4", "mpp20", "mpp22";
>>> - marvell,function = "sata1";
>>> - };
>>> - pmx_spi: pmx-spi {
>>> - marvell,pins = "mpp0", "mpp1", "mpp2", "mpp3";
>>> - marvell,function = "spi";
>>> - };
>>> - pmx_twsi0: pmx-twsi0 {
>>> - marvell,pins = "mpp8", "mpp9";
>>> - marvell,function = "twsi0";
>>> - };
>>> - pmx_uart0: pmx-uart0 {
>>> - marvell,pins = "mpp10", "mpp11";
>>> - marvell,function = "uart0";
>>> - };
>>> - pmx_uart1: pmx-uart1 {
>>> - marvell,pins = "mpp13", "mpp14";
>>> - marvell,function = "uart1";
>>> - };
>>> - pmx_sdio: pmx-sdio {
>>> - marvell,pins = "mpp12", "mpp13", "mpp14",
>>> - "mpp15", "mpp16", "mpp17";
>>> - marvell,function = "sdio";
>>> - };
>>> };
>>> };
>>> };
>>> diff --git a/arch/arm/boot/dts/kirkwood-6282.dtsi b/arch/arm/boot/dts/kirkwood-6282.dtsi
>>> index e0a779c..7ce9614 100644
>>> --- a/arch/arm/boot/dts/kirkwood-6282.dtsi
>>> +++ b/arch/arm/boot/dts/kirkwood-6282.dtsi
>>> @@ -1,3 +1,5 @@
>>> +/include/ "kirkwood-628x-base.dtsi"
>>> +
>>> / {
>>> ocp at f1000000 {
>>>
>>> @@ -5,43 +7,10 @@
>>> compatible = "marvell,88f6282-pinctrl";
>>> reg = <0x10000 0x20>;
>>>
>>> - pmx_nand: pmx-nand {
>>> - marvell,pins = "mpp0", "mpp1", "mpp2", "mpp3",
>>> - "mpp4", "mpp5", "mpp18", "mpp19";
>>> - marvell,function = "nand";
>>> - };
>>> -
>>> - pmx_sata0: pmx-sata0 {
>>> - marvell,pins = "mpp5", "mpp21", "mpp23";
>>> - marvell,function = "sata0";
>>> - };
>>> - pmx_sata1: pmx-sata1 {
>>> - marvell,pins = "mpp4", "mpp20", "mpp22";
>>> - marvell,function = "sata1";
>>> - };
>>> - pmx_spi: pmx-spi {
>>> - marvell,pins = "mpp0", "mpp1", "mpp2", "mpp3";
>>> - marvell,function = "spi";
>>> - };
>>> - pmx_twsi0: pmx-twsi0 {
>>> - marvell,pins = "mpp8", "mpp9";
>>> - marvell,function = "twsi0";
>>> - };
>>> -
>>> pmx_twsi1: pmx-twsi1 {
>>> marvell,pins = "mpp36", "mpp37";
>>> marvell,function = "twsi1";
>>> };
>>> -
>>> - pmx_uart0: pmx-uart0 {
>>> - marvell,pins = "mpp10", "mpp11";
>>> - marvell,function = "uart0";
>>> - };
>>> -
>>> - pmx_uart1: pmx-uart1 {
>>> - marvell,pins = "mpp13", "mpp14";
>>> - marvell,function = "uart1";
>>> - };
>>> };
>>>
>>> i2c at 11100 {
>>> diff --git a/arch/arm/boot/dts/kirkwood-628x-base.dtsi b/arch/arm/boot/dts/kirkwood-628x-base.dtsi
>>> new file mode 100644
>>> index 0000000..c8103b6
>>> --- /dev/null
>>> +++ b/arch/arm/boot/dts/kirkwood-628x-base.dtsi
>>> @@ -0,0 +1,41 @@
>>> +/ {
>>> + ocp at f1000000 {
>>> + pinctrl: pinctrl at 10000 {
>>> + pmx_nand: pmx-nand {
>>> + marvell,pins = "mpp0", "mpp1", "mpp2", "mpp3",
>>> + "mpp4", "mpp5", "mpp18",
>>> + "mpp19";
>>> + marvell,function = "nand";
>>> + };
>>> + pmx_sata0: pmx-sata0 {
>>> + marvell,pins = "mpp5", "mpp21", "mpp23";
>>> + marvell,function = "sata0";
>>> + };
>>> + pmx_sata1: pmx-sata1 {
>>> + marvell,pins = "mpp4", "mpp20", "mpp22";
>>> + marvell,function = "sata1";
>>> + };
>>> + pmx_spi: pmx-spi {
>>> + marvell,pins = "mpp0", "mpp1", "mpp2", "mpp3";
>>> + marvell,function = "spi";
>>> + };
>>> + pmx_twsi0: pmx-twsi0 {
>>> + marvell,pins = "mpp8", "mpp9";
>>> + marvell,function = "twsi0";
>>> + };
>>> + pmx_uart0: pmx-uart0 {
>>> + marvell,pins = "mpp10", "mpp11";
>>> + marvell,function = "uart0";
>>> + };
>>> + pmx_uart1: pmx-uart1 {
>>> + marvell,pins = "mpp13", "mpp14";
>>> + marvell,function = "uart1";
>>> + };
>>> + pmx_sdio: pmx-sdio {
>>> + marvell,pins = "mpp12", "mpp13", "mpp14",
>>> + "mpp15", "mpp16", "mpp17";
>>> + marvell,function = "sdio";
>>> + };
>>> + };
>>> + };
>>> +};
>>> --
>>> 1.7.10.4
>>>
>>>
>>> _______________________________________________
>>> linux-arm-kernel mailing list
>>> linux-arm-kernel at lists.infradead.org
>>> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2013-01-03 15:56 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-23 2:35 [PATCH] ARM: Kirkwood: Bundle the common pinctrl of 88f6281 and 88f6282 Nobuhiro Iwamatsu
2012-12-27 17:05 ` Jason Cooper
2012-12-27 19:40 ` Andrew Lunn
2013-01-03 15:56 ` Valentin Longchamp [this message]
2013-01-15 23:53 ` Nobuhiro Iwamatsu
2012-12-27 19:52 ` Jason Cooper
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=50E5AA3A.8000503@keymile.com \
--to=valentin.longchamp@keymile.com \
--cc=linux-arm-kernel@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.