Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1732312 > unrolled thread

[PATCH 0/3] SoM1 EK board fixes

Started byClaudiu Beznea <claudiu.beznea@microchip.com>
First post2017-09-14 16:40 +0200
Last post2017-09-14 19:20 +0200
Articles 5 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH 0/3] SoM1 EK board fixes Claudiu Beznea <claudiu.beznea@microchip.com> - 2017-09-14 16:40 +0200
    [PATCH 1/3] ARM: dts: at91: sama5d27_som1_ek: update pinmux/pinconf for LEDs and USB Claudiu Beznea <claudiu.beznea@microchip.com> - 2017-09-14 16:40 +0200
    [PATCH 2/3] ARM: dts: at91: sama5d27_som1_ek: fix typos Claudiu Beznea <claudiu.beznea@microchip.com> - 2017-09-14 16:40 +0200
    Re: [PATCH 0/3] SoM1 EK board fixes Nicolas Ferre <nicolas.ferre@microchip.com> - 2017-09-14 19:00 +0200
      Re: [PATCH 0/3] SoM1 EK board fixes Alexandre Belloni <alexandre.belloni@free-electrons.com> - 2017-09-14 19:20 +0200

#1732312 — [PATCH 0/3] SoM1 EK board fixes

FromClaudiu Beznea <claudiu.beznea@microchip.com>
Date2017-09-14 16:40 +0200
Subject[PATCH 0/3] SoM1 EK board fixes
Message-ID<upDt8-6ey-11@gated-at.bofh.it>
Hi,

This series contains fixes for SAMA5D27 SoM1 EK board. It would be
good if we will have this in 4.14 version.

Thank you,
Claudiu

Ludovic Desroches (2):
  ARM: dts: at91: sama5d27_som1_ek: update pinmux/pinconf for LEDs and
    USB
  ARM: dts: at91: sama5d27_som1_ek: fix typos

Nicolas Ferre (1):
  ARM: dts: at91: sama5d27_som1_ek: fix USB host vbus

 arch/arm/boot/dts/at91-sama5d27_som1_ek.dts | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

-- 
2.7.4

[toc] | [next] | [standalone]


#1732318 — [PATCH 1/3] ARM: dts: at91: sama5d27_som1_ek: update pinmux/pinconf for LEDs and USB

FromClaudiu Beznea <claudiu.beznea@microchip.com>
Date2017-09-14 16:40 +0200
Subject[PATCH 1/3] ARM: dts: at91: sama5d27_som1_ek: update pinmux/pinconf for LEDs and USB
Message-ID<upDt8-6ey-29@gated-at.bofh.it>
In reply to#1732312
From: Ludovic Desroches <ludovic.desroches@microchip.com>

There are some changes from the prototype board concerning LEDs and USB
pins:
- USBB power enable and red LED pins are inverted.
- The polarity of LEDs is inverted too.

Signed-off-by: Ludovic Desroches <ludovic.desroches@microchip.com>
Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
---
 arch/arm/boot/dts/at91-sama5d27_som1_ek.dts | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/arch/arm/boot/dts/at91-sama5d27_som1_ek.dts b/arch/arm/boot/dts/at91-sama5d27_som1_ek.dts
index 9c9088c99cc4..f13ef4fbab60 100644
--- a/arch/arm/boot/dts/at91-sama5d27_som1_ek.dts
+++ b/arch/arm/boot/dts/at91-sama5d27_som1_ek.dts
@@ -67,7 +67,7 @@
 
 		usb1: ohci@00400000 {
 			num-ports = <3>;
-			atmel,vbus-gpio = <&pioA PIN_PA10 GPIO_ACTIVE_HIGH>;
+			atmel,vbus-gpio = <&pioA PIN_PA27 GPIO_ACTIVE_HIGH>;
 			pinctrl-names = "default";
 			pinctrl-0 = <&pinctrl_usb_default>;
 			status = "okay";
@@ -330,7 +330,7 @@
 				};
 
 				pinctrl_led_gpio_default: led_gpio_default {
-					pinmux = <PIN_PA27__GPIO>,
+					pinmux = <PIN_PA10__GPIO>,
 						 <PIN_PB1__GPIO>,
 						 <PIN_PA31__GPIO>;
 					bias-pull-up;
@@ -396,7 +396,7 @@
 				};
 
 				pinctrl_usb_default: usb_default {
-					pinmux = <PIN_PA10__GPIO>,
+					pinmux = <PIN_PA27__GPIO>,
 						 <PIN_PD19__GPIO>;
 					bias-disable;
 				};
@@ -520,17 +520,17 @@
 
 		red {
 			label = "red";
-			gpios = <&pioA PIN_PA27 GPIO_ACTIVE_LOW>;
+			gpios = <&pioA PIN_PA10 GPIO_ACTIVE_HIGH>;
 		};
 
 		green {
 			label = "green";
-			gpios = <&pioA PIN_PB1 GPIO_ACTIVE_LOW>;
+			gpios = <&pioA PIN_PB1 GPIO_ACTIVE_HIGH>;
 		};
 
 		blue {
 			label = "blue";
-			gpios = <&pioA PIN_PA31 GPIO_ACTIVE_LOW>;
+			gpios = <&pioA PIN_PA31 GPIO_ACTIVE_HIGH>;
 			linux,default-trigger = "heartbeat";
 		};
 	};
-- 
2.7.4

[toc] | [prev] | [next] | [standalone]


#1732319 — [PATCH 2/3] ARM: dts: at91: sama5d27_som1_ek: fix typos

FromClaudiu Beznea <claudiu.beznea@microchip.com>
Date2017-09-14 16:40 +0200
Subject[PATCH 2/3] ARM: dts: at91: sama5d27_som1_ek: fix typos
Message-ID<upDt9-6ey-35@gated-at.bofh.it>
In reply to#1732312
From: Ludovic Desroches <ludovic.desroches@microchip.com>

Fix typos that prevent proper using of uart2 and uart4 devices.

Signed-off-by: Ludovic Desroches <ludovic.desroches@microchip.com>
Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
---
 arch/arm/boot/dts/at91-sama5d27_som1_ek.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/at91-sama5d27_som1_ek.dts b/arch/arm/boot/dts/at91-sama5d27_som1_ek.dts
index f13ef4fbab60..be5cd913f274 100644
--- a/arch/arm/boot/dts/at91-sama5d27_som1_ek.dts
+++ b/arch/arm/boot/dts/at91-sama5d27_som1_ek.dts
@@ -120,7 +120,7 @@
 				pinctrl-names = "default";
 				pinctrl-0 = <&pinctrl_mikrobus2_uart>;
 				atmel,use-dma-rx;
-				atmel-use-dma-tx;
+				atmel,use-dma-tx;
 				status = "okay";
 			};
 
@@ -178,7 +178,7 @@
 			uart4: serial@fc00c000 {
 				atmel,use-dma-rx;
 				atmel,use-dma-tx;
-				pinctrl-name = "default";
+				pinctrl-names = "default";
 				pinctrl-0 = <&pinctrl_mikrobus1_uart>;
 				status = "okay";
 			};
-- 
2.7.4

[toc] | [prev] | [next] | [standalone]


#1732461

FromNicolas Ferre <nicolas.ferre@microchip.com>
Date2017-09-14 19:00 +0200
Message-ID<upFED-7zL-27@gated-at.bofh.it>
In reply to#1732312
On 14/09/2017 at 16:28, Claudiu Beznea wrote:
> Hi,
> 
> This series contains fixes for SAMA5D27 SoM1 EK board. It would be
> good if we will have this in 4.14 version.
> 
> Thank you,
> Claudiu
> 
> Ludovic Desroches (2):
>   ARM: dts: at91: sama5d27_som1_ek: update pinmux/pinconf for LEDs and
>     USB
>   ARM: dts: at91: sama5d27_som1_ek: fix typos

Additional:
Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com>
For those 2.

I merged them in a at91-4.14-fixes branch here:
https://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git/log/?h=at91-4.14-fixes

and merge it in at91-next. It should appear in tomorrow's linux-next.

Alexandre, do you agree with these 3 patches for fixes? Do you see other
patches to add to this "-fixes" branch? like:
ARM: at91: Replace uses of virt_to_phys with __pa_symbol
...

Do you want me to do the RP while you are at "Linux plumbers"?

Bye,

> Nicolas Ferre (1):
>   ARM: dts: at91: sama5d27_som1_ek: fix USB host vbus
> 
>  arch/arm/boot/dts/at91-sama5d27_som1_ek.dts | 19 +++++++++++--------
>  1 file changed, 11 insertions(+), 8 deletions(-)
> 


-- 
Nicolas Ferre

[toc] | [prev] | [next] | [standalone]


#1732473

FromAlexandre Belloni <alexandre.belloni@free-electrons.com>
Date2017-09-14 19:20 +0200
Message-ID<upFXY-7Vl-17@gated-at.bofh.it>
In reply to#1732461
On 14/09/2017 at 19:00:13 +0200, Nicolas Ferre wrote:
> On 14/09/2017 at 16:28, Claudiu Beznea wrote:
> > Hi,
> > 
> > This series contains fixes for SAMA5D27 SoM1 EK board. It would be
> > good if we will have this in 4.14 version.
> > 
> > Thank you,
> > Claudiu
> > 
> > Ludovic Desroches (2):
> >   ARM: dts: at91: sama5d27_som1_ek: update pinmux/pinconf for LEDs and
> >     USB
> >   ARM: dts: at91: sama5d27_som1_ek: fix typos
> 
> Additional:
> Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com>
> For those 2.
> 
> I merged them in a at91-4.14-fixes branch here:
> https://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git/log/?h=at91-4.14-fixes
> 
> and merge it in at91-next. It should appear in tomorrow's linux-next.
> 
> Alexandre, do you agree with these 3 patches for fixes? Do you see other
> patches to add to this "-fixes" branch? like:
> ARM: at91: Replace uses of virt_to_phys with __pa_symbol
> ...
> 
> Do you want me to do the RP while you are at "Linux plumbers"?
> 

You can't send any PR this week because 4.14-rc1 has not been released
yet. You can't base your PR on anything useful...


-- 
Alexandre Belloni, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web