From: s.hauer@pengutronix.de (Sascha Hauer)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC PATCH 2/3] pinctrl: imx: add pinmux-imx53 support
Date: Sun, 4 Dec 2011 17:11:23 +0100 [thread overview]
Message-ID: <20111204161123.GS27267@pengutronix.de> (raw)
In-Reply-To: <1322999384-7886-2-git-send-email-b29396@freescale.com>
On Sun, Dec 04, 2011 at 07:49:43PM +0800, Dong Aisheng wrote:
> Signed-off-by: Dong Aisheng <b29396@freescale.com>
> Cc: Linus Walleij <linus.walleij@linaro.org>
> Cc: Sascha Hauer <s.hauer@pengutronix.de>
> Cc: Shawn Guo <shanw.guo@freescale.com>
> ---
> drivers/pinctrl/pinmux-imx53.c | 514 ++++++++++++++++++++++++++++++++++++++++
> 1 files changed, 514 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/pinctrl/pinmux-imx53.c b/drivers/pinctrl/pinmux-imx53.c
> +
> +/* mx53 pin groups and mux mode */
> +static const unsigned mx53_fec_pins[] = {
> + MX53_FEC_MDC,
> + MX53_FEC_MDIO,
> + MX53_FEC_REF_CLK,
> + MX53_FEC_RX_ER,
> + MX53_FEC_CRS_DV,
> + MX53_FEC_RXD1,
> + MX53_FEC_RXD0,
> + MX53_FEC_TX_EN,
> + MX53_FEC_TXD1,
> + MX53_FEC_TXD0,
> +};
> +static const unsigned mx53_fec_mux[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
The FEC_MDC could be routed to PAD_KEY_ROW2 or to PAD_FEC_MDC. Also
FEC_MDIO could be routed to either PAD_FEC_MDIO or to PAD_KEY_COL2.
For other fec pins also different options might exist. How does this
fit into this group scheme?
> +
> +static const unsigned mx53_sd1_pins[] = {
> + MX53_SD1_CMD,
> + MX53_SD1_CLK,
> + MX53_SD1_DATA0,
> + MX53_SD1_DATA1,
> + MX53_SD1_DATA2,
> + MX53_SD1_DATA3,
> +
> +};
> +static const unsigned mx53_sd1_mux[] = { 0, 0, 0, 0, 0, 0 };
> +
> +static const unsigned mx53_sd3_pins[] = {
> + MX53_PATA_DATA8,
> + MX53_PATA_DATA9,
> + MX53_PATA_DATA10,
> + MX53_PATA_DATA11,
> + MX53_PATA_DATA0,
> + MX53_PATA_DATA1,
> + MX53_PATA_DATA2,
> + MX53_PATA_DATA3,
> + MX53_PATA_IORDY,
> + MX53_PATA_RESET_B,
> +
> +};
> +static const unsigned mx53_sd3_mux[] = { 4, 4, 4, 4, 4, 4, 4, 4, 2, 2 };
> +
> +static const unsigned mx53_uart1_pins[] = {
> + MX53_CSI0_DAT10,
> + MX53_CSI0_DAT11,
> +};
> +static const unsigned mx53_uart1_mux[] = { 2, 2 };
For uart1 indeed only one routing possibility exists, but look at uart2:
uart2 txd -> PAD_EIM_D26
-> PAD_PATA_DMARQ
-> PAD_GPIO_7
uart2 rxd -> PAD_EIM_D27
-> PAD_PATA_BUFFER_EN
-> PAD_GPIO_8
So this at least means that you should not name the array above
mx53_uart1_mux, but something like mx53_uart1_option1,
mx53_uart1_option2 and so on.
Then it's probably possible to use mixtures of different options
for the uart.
I don't think that this grouping of pads to their functions makes
sense. On i.MX every pad is muxed independently and not in groups.
Which pins belong to which function is board specific and not SoC
specific.
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
next prev parent reply other threads:[~2011-12-04 16:11 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-04 11:49 [RFC PATCH 1/3] pinctrl: imx: add pinmux imx core driver Dong Aisheng
2011-12-04 11:49 ` [RFC PATCH 2/3] pinctrl: imx: add pinmux-imx53 support Dong Aisheng
2011-12-04 16:11 ` Sascha Hauer [this message]
2011-12-05 2:43 ` Dong Aisheng
2011-12-05 7:51 ` Sascha Hauer
2011-12-06 3:21 ` Dong Aisheng-B29396
2011-12-05 17:03 ` Linus Walleij
2011-12-05 17:01 ` Linus Walleij
2011-12-06 3:42 ` Dong Aisheng-B29396
2011-12-05 16:57 ` Linus Walleij
2011-12-05 21:18 ` Sascha Hauer
2011-12-06 5:54 ` Dong Aisheng-B29396
2011-12-06 6:58 ` Shawn Guo
2011-12-06 7:21 ` Dong Aisheng-B29396
2011-12-06 6:25 ` Shawn Guo
2011-12-06 7:33 ` Lothar Waßmann
2011-12-06 8:00 ` Shawn Guo
2011-12-06 8:05 ` Uwe Kleine-König
2011-12-07 9:01 ` Linus Walleij
2011-12-06 10:53 ` Sascha Hauer
2011-12-06 3:39 ` Dong Aisheng
2011-12-04 11:49 ` [RFC PATCH 3/3] pinctrl: imx: add pinmux-imx6q support Dong Aisheng
2011-12-06 7:23 ` Shawn Guo
2011-12-06 7:23 ` Dong Aisheng-B29396
2011-12-06 14:44 ` Shawn Guo
2011-12-07 9:09 ` Linus Walleij
2011-12-07 9:18 ` Dong Aisheng-B29396
2011-12-05 13:09 ` [RFC PATCH 1/3] pinctrl: imx: add pinmux imx core driver Linus Walleij
2011-12-06 3:41 ` Dong Aisheng-B29396
2011-12-06 7:06 ` Shawn Guo
2011-12-06 7:13 ` Dong Aisheng-B29396
2011-12-06 7:32 ` Shawn Guo
2011-12-06 7:39 ` Shawn Guo
2011-12-06 7:35 ` Dong Aisheng-B29396
2011-12-06 9:42 ` Shawn Guo
2011-12-06 9:38 ` Dong Aisheng-B29396
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=20111204161123.GS27267@pengutronix.de \
--to=s.hauer@pengutronix.de \
--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 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).