All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] fix hdmi video setup for khadas vim3x boards
@ 2021-01-15  5:15 ` Artem Lapkin
  0 siblings, 0 replies; 12+ messages in thread
From: Artem Lapkin @ 2021-01-15  5:15 UTC (permalink / raw)
  To: u-boot

next patches add missed parts

Artem Lapkin (2):
  gpio: gpio-uclass: add OPEN_DRAIN flag parsing
  arm64: dts: meson: fix meson-khadas-vim3-u-boot.dtsi

 arch/arm/dts/meson-khadas-vim3-u-boot.dtsi |  2 ++
 drivers/gpio/gpio-uclass.c                 | 10 ++++++++++
 2 files changed, 12 insertions(+)

-- 
2.25.1

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 0/2] fix hdmi video setup for khadas vim3x boards
@ 2021-01-15  5:15 ` Artem Lapkin
  0 siblings, 0 replies; 12+ messages in thread
From: Artem Lapkin @ 2021-01-15  5:15 UTC (permalink / raw)
  To: narmstrong
  Cc: u-boot, u-boot-amlogic, m.szyprowski, jh80.chung, hs, art, nick, gouwa

next patches add missed parts

Artem Lapkin (2):
  gpio: gpio-uclass: add OPEN_DRAIN flag parsing
  arm64: dts: meson: fix meson-khadas-vim3-u-boot.dtsi

 arch/arm/dts/meson-khadas-vim3-u-boot.dtsi |  2 ++
 drivers/gpio/gpio-uclass.c                 | 10 ++++++++++
 2 files changed, 12 insertions(+)

-- 
2.25.1


^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 1/2] gpio: gpio-uclass: add OPEN_DRAIN flag parsing
  2021-01-15  5:15 ` Artem Lapkin
@ 2021-01-15  5:15   ` Artem Lapkin
  -1 siblings, 0 replies; 12+ messages in thread
From: Artem Lapkin @ 2021-01-15  5:15 UTC (permalink / raw)
  To: u-boot

add GPIOD_OPEN_DRAIN flag which cant parsed properly

Problem: for example cant power video system for sm1 g12a socs
because OPEN_DRAIN flag cant parsed

DTS examples:

```
$ grep GPIO_OPEN_DRAIN\>  arch/arm/dts/meson-*.dt*
arch/arm/dts/meson-g12a-sei510.dts:		gpio = <&gpio GPIOH_8 GPIO_OPEN_DRAIN>;
arch/arm/dts/meson-g12a-u200.dts:		gpio = <&gpio GPIOH_8 GPIO_OPEN_DRAIN>;
arch/arm/dts/meson-gx-libretech-pc.dtsi:	gpio = <&gpio GPIOH_3 GPIO_OPEN_DRAIN>;
arch/arm/dts/meson-khadas-vim3.dtsi:		gpio = <&gpio GPIOH_8 GPIO_OPEN_DRAIN>;
arch/arm/dts/meson-sm1-sei610.dts:		gpio = <&gpio GPIOH_8 GPIO_OPEN_DRAIN>;
```

Signed-off-by: Artem Lapkin <art@khadas.com>
---
 drivers/gpio/gpio-uclass.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/drivers/gpio/gpio-uclass.c b/drivers/gpio/gpio-uclass.c
index bad6b71e0c..6225f32457 100644
--- a/drivers/gpio/gpio-uclass.c
+++ b/drivers/gpio/gpio-uclass.c
@@ -574,6 +574,15 @@ int dm_gpio_set_value(const struct gpio_desc *desc, int value)
 	if (ret)
 		return ret;
 
+	if (desc->flags & GPIOD_OPEN_DRAIN) {
+		if (value)
+			gpio_get_ops(desc->dev)->direction_input(desc->dev, desc->offset);
+		else
+			gpio_get_ops(desc->dev)->direction_output(desc->dev, desc->offset, 0);
+
+		return 0;
+	}
+
 	if (desc->flags & GPIOD_ACTIVE_LOW)
 		value = !value;
 
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 1/2] gpio: gpio-uclass: add OPEN_DRAIN flag parsing
@ 2021-01-15  5:15   ` Artem Lapkin
  0 siblings, 0 replies; 12+ messages in thread
From: Artem Lapkin @ 2021-01-15  5:15 UTC (permalink / raw)
  To: narmstrong
  Cc: u-boot, u-boot-amlogic, m.szyprowski, jh80.chung, hs, art, nick, gouwa

add GPIOD_OPEN_DRAIN flag which cant parsed properly

Problem: for example cant power video system for sm1 g12a socs
because OPEN_DRAIN flag cant parsed

DTS examples:

```
$ grep GPIO_OPEN_DRAIN\>  arch/arm/dts/meson-*.dt*
arch/arm/dts/meson-g12a-sei510.dts:		gpio = <&gpio GPIOH_8 GPIO_OPEN_DRAIN>;
arch/arm/dts/meson-g12a-u200.dts:		gpio = <&gpio GPIOH_8 GPIO_OPEN_DRAIN>;
arch/arm/dts/meson-gx-libretech-pc.dtsi:	gpio = <&gpio GPIOH_3 GPIO_OPEN_DRAIN>;
arch/arm/dts/meson-khadas-vim3.dtsi:		gpio = <&gpio GPIOH_8 GPIO_OPEN_DRAIN>;
arch/arm/dts/meson-sm1-sei610.dts:		gpio = <&gpio GPIOH_8 GPIO_OPEN_DRAIN>;
```

Signed-off-by: Artem Lapkin <art@khadas.com>
---
 drivers/gpio/gpio-uclass.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/drivers/gpio/gpio-uclass.c b/drivers/gpio/gpio-uclass.c
index bad6b71e0c..6225f32457 100644
--- a/drivers/gpio/gpio-uclass.c
+++ b/drivers/gpio/gpio-uclass.c
@@ -574,6 +574,15 @@ int dm_gpio_set_value(const struct gpio_desc *desc, int value)
 	if (ret)
 		return ret;
 
+	if (desc->flags & GPIOD_OPEN_DRAIN) {
+		if (value)
+			gpio_get_ops(desc->dev)->direction_input(desc->dev, desc->offset);
+		else
+			gpio_get_ops(desc->dev)->direction_output(desc->dev, desc->offset, 0);
+
+		return 0;
+	}
+
 	if (desc->flags & GPIOD_ACTIVE_LOW)
 		value = !value;
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 2/2] arm64: dts: meson: fix meson-khadas-vim3-u-boot.dtsi
  2021-01-15  5:15 ` Artem Lapkin
@ 2021-01-15  5:15   ` Artem Lapkin
  -1 siblings, 0 replies; 12+ messages in thread
From: Artem Lapkin @ 2021-01-15  5:15 UTC (permalink / raw)
  To: u-boot

Add missed include meson-g12-common-u-boot.dtsi

PROBLEM: missed hdmi video setup for VIM3 and VIM3L boards

Signed-off-by: Artem Lapkin <art@khadas.com>
---
 arch/arm/dts/meson-khadas-vim3-u-boot.dtsi | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi b/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
index 81fd5be378..5d6444cbac 100644
--- a/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
+++ b/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
@@ -10,6 +10,8 @@
 	};
 };
 
+#include "meson-g12-common-u-boot.dtsi"
+
 &sd_emmc_c {
 	status = "okay";
 	pinctrl-0 = <&emmc_ctrl_pins>, <&emmc_data_4b_pins>, <&emmc_ds_pins>;
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 2/2] arm64: dts: meson: fix meson-khadas-vim3-u-boot.dtsi
@ 2021-01-15  5:15   ` Artem Lapkin
  0 siblings, 0 replies; 12+ messages in thread
From: Artem Lapkin @ 2021-01-15  5:15 UTC (permalink / raw)
  To: narmstrong
  Cc: u-boot, u-boot-amlogic, m.szyprowski, jh80.chung, hs, art, nick, gouwa

Add missed include meson-g12-common-u-boot.dtsi

PROBLEM: missed hdmi video setup for VIM3 and VIM3L boards

Signed-off-by: Artem Lapkin <art@khadas.com>
---
 arch/arm/dts/meson-khadas-vim3-u-boot.dtsi | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi b/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
index 81fd5be378..5d6444cbac 100644
--- a/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
+++ b/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
@@ -10,6 +10,8 @@
 	};
 };
 
+#include "meson-g12-common-u-boot.dtsi"
+
 &sd_emmc_c {
 	status = "okay";
 	pinctrl-0 = <&emmc_ctrl_pins>, <&emmc_data_4b_pins>, <&emmc_ds_pins>;
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 1/2] gpio: gpio-uclass: add OPEN_DRAIN flag parsing
  2021-01-15  5:15   ` Artem Lapkin
@ 2021-01-15  8:11     ` Neil Armstrong
  -1 siblings, 0 replies; 12+ messages in thread
From: Neil Armstrong @ 2021-01-15  8:11 UTC (permalink / raw)
  To: u-boot

Hi,

This has already been pushed on u-boot master:
https://patchwork.ozlabs.org/project/uboot/patch/20200505084318.15307-2-narmstrong at baylibre.com/

Commit: 47bd533e9dd0f967ff7b62f3edfd6c97131e1501
Author: Neil Armstrong <narmstrong@baylibre.com>
Date:   Tue May 5 10:43:17 2020 +0200

    gpio: emulate open drain & open source in dm_gpio_set_value()

    Handle the GPIOD_OPEN_DRAIN & GPIOD_OPEN_SOURCE flags to emulate open drain
    and open source by setting the GPIO line as input depending on the
    requested value.

    The behaviour is taken from the Linux gpiolib.

    Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
    Reviewed-by: Simon Glass <sjg@chromium.org>

Neil

On 15/01/2021 06:15, Artem Lapkin wrote:
> add GPIOD_OPEN_DRAIN flag which cant parsed properly
> 
> Problem: for example cant power video system for sm1 g12a socs
> because OPEN_DRAIN flag cant parsed
> 
> DTS examples:
> 
> ```
> $ grep GPIO_OPEN_DRAIN\>  arch/arm/dts/meson-*.dt*
> arch/arm/dts/meson-g12a-sei510.dts:		gpio = <&gpio GPIOH_8 GPIO_OPEN_DRAIN>;
> arch/arm/dts/meson-g12a-u200.dts:		gpio = <&gpio GPIOH_8 GPIO_OPEN_DRAIN>;
> arch/arm/dts/meson-gx-libretech-pc.dtsi:	gpio = <&gpio GPIOH_3 GPIO_OPEN_DRAIN>;
> arch/arm/dts/meson-khadas-vim3.dtsi:		gpio = <&gpio GPIOH_8 GPIO_OPEN_DRAIN>;
> arch/arm/dts/meson-sm1-sei610.dts:		gpio = <&gpio GPIOH_8 GPIO_OPEN_DRAIN>;
> ```
> 
> Signed-off-by: Artem Lapkin <art@khadas.com>
> ---
>  drivers/gpio/gpio-uclass.c | 10 ++++++++++
>  1 file changed, 10 insertions(+)
> 
> diff --git a/drivers/gpio/gpio-uclass.c b/drivers/gpio/gpio-uclass.c
> index bad6b71e0c..6225f32457 100644
> --- a/drivers/gpio/gpio-uclass.c
> +++ b/drivers/gpio/gpio-uclass.c
> @@ -574,6 +574,15 @@ int dm_gpio_set_value(const struct gpio_desc *desc, int value)
>  	if (ret)
>  		return ret;
>  
> +	if (desc->flags & GPIOD_OPEN_DRAIN) {
> +		if (value)
> +			gpio_get_ops(desc->dev)->direction_input(desc->dev, desc->offset);
> +		else
> +			gpio_get_ops(desc->dev)->direction_output(desc->dev, desc->offset, 0);
> +
> +		return 0;
> +	}
> +
>  	if (desc->flags & GPIOD_ACTIVE_LOW)
>  		value = !value;
>  
> 

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 1/2] gpio: gpio-uclass: add OPEN_DRAIN flag parsing
@ 2021-01-15  8:11     ` Neil Armstrong
  0 siblings, 0 replies; 12+ messages in thread
From: Neil Armstrong @ 2021-01-15  8:11 UTC (permalink / raw)
  To: Artem Lapkin
  Cc: u-boot, u-boot-amlogic, m.szyprowski, jh80.chung, hs, art, nick, gouwa

Hi,

This has already been pushed on u-boot master:
https://patchwork.ozlabs.org/project/uboot/patch/20200505084318.15307-2-narmstrong@baylibre.com/

Commit: 47bd533e9dd0f967ff7b62f3edfd6c97131e1501
Author: Neil Armstrong <narmstrong@baylibre.com>
Date:   Tue May 5 10:43:17 2020 +0200

    gpio: emulate open drain & open source in dm_gpio_set_value()

    Handle the GPIOD_OPEN_DRAIN & GPIOD_OPEN_SOURCE flags to emulate open drain
    and open source by setting the GPIO line as input depending on the
    requested value.

    The behaviour is taken from the Linux gpiolib.

    Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
    Reviewed-by: Simon Glass <sjg@chromium.org>

Neil

On 15/01/2021 06:15, Artem Lapkin wrote:
> add GPIOD_OPEN_DRAIN flag which cant parsed properly
> 
> Problem: for example cant power video system for sm1 g12a socs
> because OPEN_DRAIN flag cant parsed
> 
> DTS examples:
> 
> ```
> $ grep GPIO_OPEN_DRAIN\>  arch/arm/dts/meson-*.dt*
> arch/arm/dts/meson-g12a-sei510.dts:		gpio = <&gpio GPIOH_8 GPIO_OPEN_DRAIN>;
> arch/arm/dts/meson-g12a-u200.dts:		gpio = <&gpio GPIOH_8 GPIO_OPEN_DRAIN>;
> arch/arm/dts/meson-gx-libretech-pc.dtsi:	gpio = <&gpio GPIOH_3 GPIO_OPEN_DRAIN>;
> arch/arm/dts/meson-khadas-vim3.dtsi:		gpio = <&gpio GPIOH_8 GPIO_OPEN_DRAIN>;
> arch/arm/dts/meson-sm1-sei610.dts:		gpio = <&gpio GPIOH_8 GPIO_OPEN_DRAIN>;
> ```
> 
> Signed-off-by: Artem Lapkin <art@khadas.com>
> ---
>  drivers/gpio/gpio-uclass.c | 10 ++++++++++
>  1 file changed, 10 insertions(+)
> 
> diff --git a/drivers/gpio/gpio-uclass.c b/drivers/gpio/gpio-uclass.c
> index bad6b71e0c..6225f32457 100644
> --- a/drivers/gpio/gpio-uclass.c
> +++ b/drivers/gpio/gpio-uclass.c
> @@ -574,6 +574,15 @@ int dm_gpio_set_value(const struct gpio_desc *desc, int value)
>  	if (ret)
>  		return ret;
>  
> +	if (desc->flags & GPIOD_OPEN_DRAIN) {
> +		if (value)
> +			gpio_get_ops(desc->dev)->direction_input(desc->dev, desc->offset);
> +		else
> +			gpio_get_ops(desc->dev)->direction_output(desc->dev, desc->offset, 0);
> +
> +		return 0;
> +	}
> +
>  	if (desc->flags & GPIOD_ACTIVE_LOW)
>  		value = !value;
>  
> 


^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 2/2] arm64: dts: meson: fix meson-khadas-vim3-u-boot.dtsi
  2021-01-15  5:15   ` Artem Lapkin
@ 2021-01-15  8:15     ` Neil Armstrong
  -1 siblings, 0 replies; 12+ messages in thread
From: Neil Armstrong @ 2021-01-15  8:15 UTC (permalink / raw)
  To: u-boot

Hi,


On 15/01/2021 06:15, Artem Lapkin wrote:
> Add missed include meson-g12-common-u-boot.dtsi
> 
> PROBLEM: missed hdmi video setup for VIM3 and VIM3L boards
> 
> Signed-off-by: Artem Lapkin <art@khadas.com>
> ---
>  arch/arm/dts/meson-khadas-vim3-u-boot.dtsi | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi b/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
> index 81fd5be378..5d6444cbac 100644
> --- a/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
> +++ b/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
> @@ -10,6 +10,8 @@
>  	};
>  };
>  
> +#include "meson-g12-common-u-boot.dtsi"
> + 

It's not necessary since already included in:
arch/arm/dts/meson-g12b-a311d-khadas-vim3-u-boot.dtsi:#include "meson-g12-common-u-boot.dtsi"
and
arch/arm/dts/meson-sm1-u-boot.dtsi:#include "meson-g12-common-u-boot.dtsi"

What u-boot version are you using ?
Please check u-boot-master and my u-boot-amlogic and u-boot-amlogic-next branches on https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic before posting !

Thanks,
Neil

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 2/2] arm64: dts: meson: fix meson-khadas-vim3-u-boot.dtsi
@ 2021-01-15  8:15     ` Neil Armstrong
  0 siblings, 0 replies; 12+ messages in thread
From: Neil Armstrong @ 2021-01-15  8:15 UTC (permalink / raw)
  To: Artem Lapkin
  Cc: u-boot, u-boot-amlogic, m.szyprowski, jh80.chung, hs, art, nick, gouwa

Hi,


On 15/01/2021 06:15, Artem Lapkin wrote:
> Add missed include meson-g12-common-u-boot.dtsi
> 
> PROBLEM: missed hdmi video setup for VIM3 and VIM3L boards
> 
> Signed-off-by: Artem Lapkin <art@khadas.com>
> ---
>  arch/arm/dts/meson-khadas-vim3-u-boot.dtsi | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi b/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
> index 81fd5be378..5d6444cbac 100644
> --- a/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
> +++ b/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
> @@ -10,6 +10,8 @@
>  	};
>  };
>  
> +#include "meson-g12-common-u-boot.dtsi"
> + 

It's not necessary since already included in:
arch/arm/dts/meson-g12b-a311d-khadas-vim3-u-boot.dtsi:#include "meson-g12-common-u-boot.dtsi"
and
arch/arm/dts/meson-sm1-u-boot.dtsi:#include "meson-g12-common-u-boot.dtsi"

What u-boot version are you using ?
Please check u-boot-master and my u-boot-amlogic and u-boot-amlogic-next branches on https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic before posting !

Thanks,
Neil

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 2/2] arm64: dts: meson: fix meson-khadas-vim3-u-boot.dtsi
  2021-01-15  8:15     ` Neil Armstrong
@ 2021-01-15  8:39       ` Art Nikpal
  -1 siblings, 0 replies; 12+ messages in thread
From: Art Nikpal @ 2021-01-15  8:39 UTC (permalink / raw)
  To: u-boot

> It's not necessary since already included in:

Yes u right !  Sorry !


On Fri, Jan 15, 2021 at 4:15 PM Neil Armstrong <narmstrong@baylibre.com>
wrote:

> Hi,
>
>
> On 15/01/2021 06:15, Artem Lapkin wrote:
> > Add missed include meson-g12-common-u-boot.dtsi
> >
> > PROBLEM: missed hdmi video setup for VIM3 and VIM3L boards
> >
> > Signed-off-by: Artem Lapkin <art@khadas.com>
> > ---
> >  arch/arm/dts/meson-khadas-vim3-u-boot.dtsi | 2 ++
> >  1 file changed, 2 insertions(+)
> >
> > diff --git a/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
> b/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
> > index 81fd5be378..5d6444cbac 100644
> > --- a/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
> > +++ b/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
> > @@ -10,6 +10,8 @@
> >       };
> >  };
> >
> > +#include "meson-g12-common-u-boot.dtsi"
> > +
>
> It's not necessary since already included in:
> arch/arm/dts/meson-g12b-a311d-khadas-vim3-u-boot.dtsi:#include
> "meson-g12-common-u-boot.dtsi"
> and
> arch/arm/dts/meson-sm1-u-boot.dtsi:#include "meson-g12-common-u-boot.dtsi"
>
> What u-boot version are you using ?
> Please check u-boot-master and my u-boot-amlogic and u-boot-amlogic-next
> branches on https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic
> before posting !
>
> Thanks,
> Neil
>

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 2/2] arm64: dts: meson: fix meson-khadas-vim3-u-boot.dtsi
@ 2021-01-15  8:39       ` Art Nikpal
  0 siblings, 0 replies; 12+ messages in thread
From: Art Nikpal @ 2021-01-15  8:39 UTC (permalink / raw)
  To: Neil Armstrong
  Cc: u-boot, u-boot-amlogic, m.szyprowski, Jaehoon Chung, hs,
	Artem Lapkin, nick, Gouwa Wang

[-- Attachment #1: Type: text/plain, Size: 1291 bytes --]

> It's not necessary since already included in:

Yes u right !  Sorry !


On Fri, Jan 15, 2021 at 4:15 PM Neil Armstrong <narmstrong@baylibre.com>
wrote:

> Hi,
>
>
> On 15/01/2021 06:15, Artem Lapkin wrote:
> > Add missed include meson-g12-common-u-boot.dtsi
> >
> > PROBLEM: missed hdmi video setup for VIM3 and VIM3L boards
> >
> > Signed-off-by: Artem Lapkin <art@khadas.com>
> > ---
> >  arch/arm/dts/meson-khadas-vim3-u-boot.dtsi | 2 ++
> >  1 file changed, 2 insertions(+)
> >
> > diff --git a/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
> b/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
> > index 81fd5be378..5d6444cbac 100644
> > --- a/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
> > +++ b/arch/arm/dts/meson-khadas-vim3-u-boot.dtsi
> > @@ -10,6 +10,8 @@
> >       };
> >  };
> >
> > +#include "meson-g12-common-u-boot.dtsi"
> > +
>
> It's not necessary since already included in:
> arch/arm/dts/meson-g12b-a311d-khadas-vim3-u-boot.dtsi:#include
> "meson-g12-common-u-boot.dtsi"
> and
> arch/arm/dts/meson-sm1-u-boot.dtsi:#include "meson-g12-common-u-boot.dtsi"
>
> What u-boot version are you using ?
> Please check u-boot-master and my u-boot-amlogic and u-boot-amlogic-next
> branches on https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic
> before posting !
>
> Thanks,
> Neil
>

[-- Attachment #2: Type: text/html, Size: 2040 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2021-01-15  8:39 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-15  5:15 [PATCH 0/2] fix hdmi video setup for khadas vim3x boards Artem Lapkin
2021-01-15  5:15 ` Artem Lapkin
2021-01-15  5:15 ` [PATCH 1/2] gpio: gpio-uclass: add OPEN_DRAIN flag parsing Artem Lapkin
2021-01-15  5:15   ` Artem Lapkin
2021-01-15  8:11   ` Neil Armstrong
2021-01-15  8:11     ` Neil Armstrong
2021-01-15  5:15 ` [PATCH 2/2] arm64: dts: meson: fix meson-khadas-vim3-u-boot.dtsi Artem Lapkin
2021-01-15  5:15   ` Artem Lapkin
2021-01-15  8:15   ` Neil Armstrong
2021-01-15  8:15     ` Neil Armstrong
2021-01-15  8:39     ` Art Nikpal
2021-01-15  8:39       ` Art Nikpal

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.