2017-06-23 12:30:17

by Gregory CLEMENT

[permalink] [raw]
Subject: [PATCH 0/2] Couple of fixes for pinctrl-armada-37xx

Hi,

Ken Ma found few issues in the driver. I wrote the first fix is based
on his report and the second one was written for U-Boot but as they
use the same driver it can be applied on linux too.

thanks,

Gregory

Gregory CLEMENT (1):
pinctrl: armada-37xx: Fix number of pin in sdio_sb

Ken Ma (1):
pinctrl: armada-37xx: Fix uart2 group selection register mask

drivers/pinctrl/mvebu/pinctrl-armada-37xx.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)

--
2.11.0


2017-06-23 12:30:18

by Gregory CLEMENT

[permalink] [raw]
Subject: [PATCH 1/2] pinctrl: armada-37xx: Fix uart2 group selection register mask

From: Ken Ma <[email protected]>

If north bridge selection register bit1 is clear, pins [10:8] are for
SDIO0 Resetn, Wakeup, and PDN while if bit1 is set, pins [10:8]are for
GPIO; when bit1 is clear, pin 9 and pin 10 can be used for uart2 RTSn
and CTSn, so bit1 should be added to uart2 group and it must be set
for both "gpio" and "uart" functions of uart2 group.

Signed-off-by: Ken Ma <[email protected]>
Signed-off-by: Gregory CLEMENT <[email protected]>
---
drivers/pinctrl/mvebu/pinctrl-armada-37xx.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/pinctrl/mvebu/pinctrl-armada-37xx.c b/drivers/pinctrl/mvebu/pinctrl-armada-37xx.c
index 5c96f5558310..2fb1c67886fc 100644
--- a/drivers/pinctrl/mvebu/pinctrl-armada-37xx.c
+++ b/drivers/pinctrl/mvebu/pinctrl-armada-37xx.c
@@ -147,8 +147,9 @@ static struct armada_37xx_pin_group armada_37xx_nb_groups[] = {
PIN_GRP_GPIO("onewire", 4, 1, BIT(16), "onewire"),
PIN_GRP_GPIO("uart1", 25, 2, BIT(17), "uart"),
PIN_GRP_GPIO("spi_quad", 15, 2, BIT(18), "spi"),
- PIN_GRP_EXTRA("uart2", 9, 2, BIT(13) | BIT(14) | BIT(19),
- BIT(13) | BIT(14), BIT(19), 18, 2, "gpio", "uart"),
+ PIN_GRP_EXTRA("uart2", 9, 2, BIT(1) | BIT(13) | BIT(14) | BIT(19),
+ BIT(1) | BIT(13) | BIT(14), BIT(1) | BIT(19),
+ 18, 2, "gpio", "uart"),
PIN_GRP_GPIO("led0_od", 11, 1, BIT(20), "led"),
PIN_GRP_GPIO("led1_od", 12, 1, BIT(21), "led"),
PIN_GRP_GPIO("led2_od", 13, 1, BIT(22), "led"),
--
2.11.0

2017-06-23 12:30:40

by Gregory CLEMENT

[permalink] [raw]
Subject: [PATCH 2/2] pinctrl: armada-37xx: Fix number of pin in sdio_sb

The sdio_sb group is composed of 6 pins and not 5.

Reported-by: Ken Ma <[email protected]>
Signed-off-by: Gregory CLEMENT <[email protected]>
---
drivers/pinctrl/mvebu/pinctrl-armada-37xx.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/pinctrl/mvebu/pinctrl-armada-37xx.c b/drivers/pinctrl/mvebu/pinctrl-armada-37xx.c
index 2fb1c67886fc..addc130159fc 100644
--- a/drivers/pinctrl/mvebu/pinctrl-armada-37xx.c
+++ b/drivers/pinctrl/mvebu/pinctrl-armada-37xx.c
@@ -160,8 +160,8 @@ static struct armada_37xx_pin_group armada_37xx_nb_groups[] = {
static struct armada_37xx_pin_group armada_37xx_sb_groups[] = {
PIN_GRP_GPIO("usb32_drvvbus0", 0, 1, BIT(0), "drvbus"),
PIN_GRP_GPIO("usb2_drvvbus1", 1, 1, BIT(1), "drvbus"),
- PIN_GRP_GPIO("sdio_sb", 24, 5, BIT(2), "sdio"),
- PIN_GRP_EXTRA("rgmii", 6, 14, BIT(3), 0, BIT(3), 23, 1, "mii", "gpio"),
+ PIN_GRP_GPIO("sdio_sb", 24, 6, BIT(2), "sdio"),
+ PIN_GRP_EXTRA("rgmii", 6, 12, BIT(3), 0, BIT(3), 23, 1, "mii", "gpio"),
PIN_GRP_GPIO("pcie1", 3, 2, BIT(4), "pcie"),
PIN_GRP_GPIO("ptp", 20, 3, BIT(5), "ptp"),
PIN_GRP("ptp_clk", 21, 1, BIT(6), "ptp", "mii"),
--
2.11.0

2017-06-29 09:44:45

by Linus Walleij

[permalink] [raw]
Subject: Re: [PATCH 1/2] pinctrl: armada-37xx: Fix uart2 group selection register mask

On Fri, Jun 23, 2017 at 2:29 PM, Gregory CLEMENT
<[email protected]> wrote:

> From: Ken Ma <[email protected]>
>
> If north bridge selection register bit1 is clear, pins [10:8] are for
> SDIO0 Resetn, Wakeup, and PDN while if bit1 is set, pins [10:8]are for
> GPIO; when bit1 is clear, pin 9 and pin 10 can be used for uart2 RTSn
> and CTSn, so bit1 should be added to uart2 group and it must be set
> for both "gpio" and "uart" functions of uart2 group.
>
> Signed-off-by: Ken Ma <[email protected]>
> Signed-off-by: Gregory CLEMENT <[email protected]>

Patch applied.

Yours,
Linus Walleij

2017-06-29 09:45:18

by Linus Walleij

[permalink] [raw]
Subject: Re: [PATCH 2/2] pinctrl: armada-37xx: Fix number of pin in sdio_sb

On Fri, Jun 23, 2017 at 2:29 PM, Gregory CLEMENT
<[email protected]> wrote:

> The sdio_sb group is composed of 6 pins and not 5.
>
> Reported-by: Ken Ma <[email protected]>
> Signed-off-by: Gregory CLEMENT <[email protected]>

Patch applied.

Yours,
Linus Walleij