All of lore.kernel.org
 help / color / mirror / Atom feed
From: Simon Horman <horms+renesas@verge.net.au>
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH RFC 1/2] pinctl: sh-pfc: r7s72100: Ethernet support
Date: Sun, 15 Dec 2013 08:23:59 +0000	[thread overview]
Message-ID: <1387095840-15008-2-git-send-email-horms+renesas@verge.net.au> (raw)
In-Reply-To: <1387095840-15008-1-git-send-email-horms+renesas@verge.net.au>

Signed-off-by: Simon Horman <horms+renesas@verge.net.au>

---

This has not been well exercised.
---
 drivers/pinctrl/sh-pfc/pfc-r7s72100.c | 64 +++++++++++++++++++++++++++++++++++
 1 file changed, 64 insertions(+)

diff --git a/drivers/pinctrl/sh-pfc/pfc-r7s72100.c b/drivers/pinctrl/sh-pfc/pfc-r7s72100.c
index c5bb533..77b4ce7 100644
--- a/drivers/pinctrl/sh-pfc/pfc-r7s72100.c
+++ b/drivers/pinctrl/sh-pfc/pfc-r7s72100.c
@@ -141,15 +141,79 @@ static const unsigned int __RZ_STR(pfx, hw, bank, pin, _mux)[] = {	\
 
 SCIF2(RZ_PIN_AND_MUX)
 
+#define ETHERNET(fn)			\
+	fn(ethernet, col,    1,  3, 3)		\
+	fn(ethernet, col,    1, 14, 4)		\
+	fn(ethernet, int,    1, 15, 1)		\
+	fn(ethernet, txclk,  2,  0, 2)		\
+	fn(ethernet, txer,   2,  1, 2)		\
+	fn(ethernet, txen,   2,  2, 2)		\
+	fn(ethernet, txcrs,  2,  3, 2)		\
+	fn(ethernet, txd,    2,  4, 2)		\
+	fn(ethernet, txd,    2,  5, 2)		\
+	fn(ethernet, txd,    2,  6, 2)		\
+	fn(ethernet, txd,    2,  7, 2)		\
+	fn(ethernet, rxd,    2,  8, 2)		\
+	fn(ethernet, rxd,    2,  9, 2)		\
+	fn(ethernet, rxd,    2, 10, 2)		\
+	fn(ethernet, rxd,    2, 11, 2)		\
+	fn(ethernet, txclk,  3,  0, 2)		\
+	fn(ethernet, txer,   3,  1, 2)		\
+	fn(ethernet, txen,   3,  2, 2)		\
+	fn(ethernet, mdio,   3,  3, 2)		\
+	fn(ethernet, rxclk,  3,  4, 2)		\
+	fn(ethernet, rxer,   3,  5, 2)		\
+	fn(ethernet, rxdv,   3,  6, 2)		\
+	fn(ethernet, mdc,    5,  9, 2)		\
+	fn(ethernet, mdc,    7,  0, 3)		\
+	fn(ethernet, txclk,  7,  1, 3)		\
+	fn(ethernet, txer,   7,  2, 3)		\
+	fn(ethernet, txen,   7,  3, 3)		\
+	fn(ethernet, txd,    7,  4, 3)		\
+	fn(ethernet, txd,    7,  5, 3)		\
+	fn(ethernet, txd,    7,  6, 3)		\
+	fn(ethernet, txd,    7,  7, 3)		\
+	fn(ethernet, rxd,    7,  9, 3)		\
+	fn(ethernet, rxd,    7, 10, 3)		\
+	fn(ethernet, rxd,    7, 11, 2)		\
+	fn(ethernet, rxd,    7, 12, 3)		\
+	fn(ethernet, mdio,   7, 13, 3)		\
+	fn(ethernet, crs,    7, 14, 3)		\
+	fn(ethernet, rxclk,  7, 15, 3)		\
+	fn(ethernet, rxer,   8,  0, 3)		\
+	fn(ethernet, rxd,    8,  1, 3)		\
+	fn(ethernet, col,    8,  7, 5)		\
+	fn(ethernet, txclk, 10,  0, 4)		\
+	fn(ethernet, txer,  10,  1, 4)		\
+	fn(ethernet, txen,  10,  2, 4)		\
+	fn(ethernet, crs,   10,  3, 4)		\
+	fn(ethernet, txd,   10,  4, 4)		\
+	fn(ethernet, txd,   10,  5, 4)		\
+	fn(ethernet, txd,   10,  6, 4)		\
+	fn(ethernet, txd,   10,  7, 4)		\
+	fn(ethernet, txd,   10,  8, 4)		\
+	fn(ethernet, txd,   10,  9, 4)		\
+	fn(ethernet, txd,   10, 10, 4)		\
+	fn(ethernet, txd,   10, 11, 4)		\
+
+ETHERNET(RZ_PIN_AND_MUX)
+
 static const struct sh_pfc_pin_group pinmux_groups[] = {
 	SCIF2(RZ_PMX_GRP)
+	ETHERNET(RZ_PMX_GRP)
 };
 
 static const char * const scif2_groups[] = {
 	SCIF2(RZ_GRPS)
 };
+
+static const char * const ethernet_groups[] = {
+	ETHERNET(RZ_GRPS)
+};
+
 static const struct sh_pfc_function pinmux_functions[] = {
 	SH_PFC_FUNCTION(scif2),
+	SH_PFC_FUNCTION(ethernet),
 };
 
 #define PFC_REG(idx, name, reg)						\
-- 
1.8.4


WARNING: multiple messages have this Message-ID (diff)
From: horms+renesas@verge.net.au (Simon Horman)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH RFC 1/2] pinctl: sh-pfc: r7s72100: Ethernet support
Date: Sun, 15 Dec 2013 17:23:59 +0900	[thread overview]
Message-ID: <1387095840-15008-2-git-send-email-horms+renesas@verge.net.au> (raw)
In-Reply-To: <1387095840-15008-1-git-send-email-horms+renesas@verge.net.au>

Signed-off-by: Simon Horman <horms+renesas@verge.net.au>

---

This has not been well exercised.
---
 drivers/pinctrl/sh-pfc/pfc-r7s72100.c | 64 +++++++++++++++++++++++++++++++++++
 1 file changed, 64 insertions(+)

diff --git a/drivers/pinctrl/sh-pfc/pfc-r7s72100.c b/drivers/pinctrl/sh-pfc/pfc-r7s72100.c
index c5bb533..77b4ce7 100644
--- a/drivers/pinctrl/sh-pfc/pfc-r7s72100.c
+++ b/drivers/pinctrl/sh-pfc/pfc-r7s72100.c
@@ -141,15 +141,79 @@ static const unsigned int __RZ_STR(pfx, hw, bank, pin, _mux)[] = {	\
 
 SCIF2(RZ_PIN_AND_MUX)
 
+#define ETHERNET(fn)			\
+	fn(ethernet, col,    1,  3, 3)		\
+	fn(ethernet, col,    1, 14, 4)		\
+	fn(ethernet, int,    1, 15, 1)		\
+	fn(ethernet, txclk,  2,  0, 2)		\
+	fn(ethernet, txer,   2,  1, 2)		\
+	fn(ethernet, txen,   2,  2, 2)		\
+	fn(ethernet, txcrs,  2,  3, 2)		\
+	fn(ethernet, txd,    2,  4, 2)		\
+	fn(ethernet, txd,    2,  5, 2)		\
+	fn(ethernet, txd,    2,  6, 2)		\
+	fn(ethernet, txd,    2,  7, 2)		\
+	fn(ethernet, rxd,    2,  8, 2)		\
+	fn(ethernet, rxd,    2,  9, 2)		\
+	fn(ethernet, rxd,    2, 10, 2)		\
+	fn(ethernet, rxd,    2, 11, 2)		\
+	fn(ethernet, txclk,  3,  0, 2)		\
+	fn(ethernet, txer,   3,  1, 2)		\
+	fn(ethernet, txen,   3,  2, 2)		\
+	fn(ethernet, mdio,   3,  3, 2)		\
+	fn(ethernet, rxclk,  3,  4, 2)		\
+	fn(ethernet, rxer,   3,  5, 2)		\
+	fn(ethernet, rxdv,   3,  6, 2)		\
+	fn(ethernet, mdc,    5,  9, 2)		\
+	fn(ethernet, mdc,    7,  0, 3)		\
+	fn(ethernet, txclk,  7,  1, 3)		\
+	fn(ethernet, txer,   7,  2, 3)		\
+	fn(ethernet, txen,   7,  3, 3)		\
+	fn(ethernet, txd,    7,  4, 3)		\
+	fn(ethernet, txd,    7,  5, 3)		\
+	fn(ethernet, txd,    7,  6, 3)		\
+	fn(ethernet, txd,    7,  7, 3)		\
+	fn(ethernet, rxd,    7,  9, 3)		\
+	fn(ethernet, rxd,    7, 10, 3)		\
+	fn(ethernet, rxd,    7, 11, 2)		\
+	fn(ethernet, rxd,    7, 12, 3)		\
+	fn(ethernet, mdio,   7, 13, 3)		\
+	fn(ethernet, crs,    7, 14, 3)		\
+	fn(ethernet, rxclk,  7, 15, 3)		\
+	fn(ethernet, rxer,   8,  0, 3)		\
+	fn(ethernet, rxd,    8,  1, 3)		\
+	fn(ethernet, col,    8,  7, 5)		\
+	fn(ethernet, txclk, 10,  0, 4)		\
+	fn(ethernet, txer,  10,  1, 4)		\
+	fn(ethernet, txen,  10,  2, 4)		\
+	fn(ethernet, crs,   10,  3, 4)		\
+	fn(ethernet, txd,   10,  4, 4)		\
+	fn(ethernet, txd,   10,  5, 4)		\
+	fn(ethernet, txd,   10,  6, 4)		\
+	fn(ethernet, txd,   10,  7, 4)		\
+	fn(ethernet, txd,   10,  8, 4)		\
+	fn(ethernet, txd,   10,  9, 4)		\
+	fn(ethernet, txd,   10, 10, 4)		\
+	fn(ethernet, txd,   10, 11, 4)		\
+
+ETHERNET(RZ_PIN_AND_MUX)
+
 static const struct sh_pfc_pin_group pinmux_groups[] = {
 	SCIF2(RZ_PMX_GRP)
+	ETHERNET(RZ_PMX_GRP)
 };
 
 static const char * const scif2_groups[] = {
 	SCIF2(RZ_GRPS)
 };
+
+static const char * const ethernet_groups[] = {
+	ETHERNET(RZ_GRPS)
+};
+
 static const struct sh_pfc_function pinmux_functions[] = {
 	SH_PFC_FUNCTION(scif2),
+	SH_PFC_FUNCTION(ethernet),
 };
 
 #define PFC_REG(idx, name, reg)						\
-- 
1.8.4

  reply	other threads:[~2013-12-15  8:23 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-15  8:23 [PATCH RFC 0/2] pinctl: sh-pfc: r7s72100: Ethernet support Simon Horman
2013-12-15  8:23 ` Simon Horman
2013-12-15  8:23 ` Simon Horman [this message]
2013-12-15  8:23   ` [PATCH RFC 1/2] " Simon Horman
2013-12-18  0:46   ` Laurent Pinchart
2013-12-18  0:46     ` Laurent Pinchart
2013-12-18  1:19     ` Simon Horman
2013-12-18  1:19       ` Simon Horman
2013-12-15  8:24 ` [PATCH RFC 2/2] ARM: shmobile: r7s72100: Add ethernet PFC node to DT Simon Horman
2013-12-15  8:24   ` Simon Horman

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=1387095840-15008-2-git-send-email-horms+renesas@verge.net.au \
    --to=horms+renesas@verge.net.au \
    --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.