[U-Boot] [PATCH] arm: tegra: Restore host1x/dc dm-pre-reloc properties

2018-07-11 Thread Nicolas Chauvet
Since commit f2faffecb016, tegra: Convert to use binman
the dm-pre-reloc properties are removed.

This leads U-Boot not to enable the display on paz00

This patch restore the dm-pre-reloc properties allowing
the bootloader to output to the display panel

v4: - Spell project name as appropriate
v3: - Fix few typos
v2: - Add more characters to commit hash

Signed-off-by: Nicolas Chauvet 
Reviewed-by: Simon Glass 
---
 arch/arm/dts/tegra20-u-boot.dtsi | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/arch/arm/dts/tegra20-u-boot.dtsi b/arch/arm/dts/tegra20-u-boot.dtsi
index 7c11972552..f64667e549 100644
--- a/arch/arm/dts/tegra20-u-boot.dtsi
+++ b/arch/arm/dts/tegra20-u-boot.dtsi
@@ -1,3 +1,13 @@
 #include 
 
 #include "tegra-u-boot.dtsi"
+
+
+/ {
+   host1x@5000 {
+   u-boot,dm-pre-reloc;
+   dc@5420 {
+   u-boot,dm-pre-reloc;
+   };
+   };
+};
-- 
2.17.1

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH] arm: tegra: Restore host1x/dc dm-pre-reloc properties

2018-07-11 Thread Nicolas Chauvet
Since commit f2faffecb016, tegra: Convert to use binman
the dm-pre-reloc properties are removed.

This leads uboot not to enable the display on paz00

This patch restore the dm-pre-reloc properties allowing
the bootloader to output to the display panel

v3: - Fix few typos
v2: - Add more characters to commit hash

Signed-off-by: Nicolas Chauvet 
Reviewed-by: Simon Glass 
---
 arch/arm/dts/tegra20-u-boot.dtsi | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/arch/arm/dts/tegra20-u-boot.dtsi b/arch/arm/dts/tegra20-u-boot.dtsi
index 7c11972552..f64667e549 100644
--- a/arch/arm/dts/tegra20-u-boot.dtsi
+++ b/arch/arm/dts/tegra20-u-boot.dtsi
@@ -1,3 +1,13 @@
 #include 
 
 #include "tegra-u-boot.dtsi"
+
+
+/ {
+   host1x@5000 {
+   u-boot,dm-pre-reloc;
+   dc@5420 {
+   u-boot,dm-pre-reloc;
+   };
+   };
+};
-- 
2.17.1

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH] arm: tegra: Restore host1x/dc dm-pre-reloc properties

2018-07-11 Thread Simon Glass
On 11 July 2018 at 11:24, Nicolas Chauvet  wrote:
> Since commit f2faffecb016, tegra: Convert to use binman
> the dm-pre-reloc properties are removed.
>
> This leads uboot not to enable the display on paz00

U-Boot :-)

>
> This patch restore the dm-pre-reloc properties allowing
> the bootloader to output to the display panel
>
> v3: - Fix few typos
> v2: - Add more characters to commit hash
>
> Signed-off-by: Nicolas Chauvet 
> Reviewed-by: Simon Glass 
> ---
>  arch/arm/dts/tegra20-u-boot.dtsi | 10 ++
>  1 file changed, 10 insertions(+)
>
> diff --git a/arch/arm/dts/tegra20-u-boot.dtsi 
> b/arch/arm/dts/tegra20-u-boot.dtsi
> index 7c11972552..f64667e549 100644
> --- a/arch/arm/dts/tegra20-u-boot.dtsi
> +++ b/arch/arm/dts/tegra20-u-boot.dtsi
> @@ -1,3 +1,13 @@
>  #include 
>
>  #include "tegra-u-boot.dtsi"
> +
> +
> +/ {
> +   host1x@5000 {
> +   u-boot,dm-pre-reloc;
> +   dc@5420 {
> +   u-boot,dm-pre-reloc;
> +   };
> +   };
> +};
> --
> 2.17.1
>
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH] arm: tegra: Restore host1x/dc dm-pre-reloc properties

2018-07-11 Thread Nicolas Chauvet
Since commit f2faffecb016, tegra: Convert to use binman
the dm-pre-reloc properties are removed.

This leads uboot not to enable the display on paz00

This patch restore the dm-pre-reloc properties allowing
the bootloader to output to the display panel

v3: - Fix few typos
v2: - Add more characters to commit hash

Signed-off-by: Nicolas Chauvet 
Reviewed-by: Simon Glass 
---
 arch/arm/dts/tegra20-u-boot.dtsi | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/arch/arm/dts/tegra20-u-boot.dtsi b/arch/arm/dts/tegra20-u-boot.dtsi
index 7c11972552..f64667e549 100644
--- a/arch/arm/dts/tegra20-u-boot.dtsi
+++ b/arch/arm/dts/tegra20-u-boot.dtsi
@@ -1,3 +1,13 @@
 #include 
 
 #include "tegra-u-boot.dtsi"
+
+
+/ {
+   host1x@5000 {
+   u-boot,dm-pre-reloc;
+   dc@5420 {
+   u-boot,dm-pre-reloc;
+   };
+   };
+};
-- 
2.17.1

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH] arm: tegra: Restore host1x/dc dm-pre-reloc properties

2018-07-11 Thread Simon Glass
On 11 July 2018 at 09:19, Nicolas Chauvet  wrote:
> Since commit f2faffecbd, tegra: Convert to use binman
> the dm-pre-reloc properties are removed.
>
> This lead uboot not to enable the display on paz00

This leads U-Boot ...

>
> This patch restore the dm-pre-reloc properties allowing
> the bootloader to output to the display panel
>
> Signed-off-by: Nicolas Chauvet 
> ---
>  arch/arm/dts/tegra20-u-boot.dtsi | 10 ++
>  1 file changed, 10 insertions(+)

Reviewed-by: Simon Glass 

>
> diff --git a/arch/arm/dts/tegra20-u-boot.dtsi 
> b/arch/arm/dts/tegra20-u-boot.dtsi
> index 7c11972552..f64667e549 100644
> --- a/arch/arm/dts/tegra20-u-boot.dtsi
> +++ b/arch/arm/dts/tegra20-u-boot.dtsi
> @@ -1,3 +1,13 @@
>  #include 
>
>  #include "tegra-u-boot.dtsi"
> +
> +
> +/ {
> +   host1x@5000 {
> +   u-boot,dm-pre-reloc;
> +   dc@5420 {
> +   u-boot,dm-pre-reloc;
> +   };
> +   };
> +};
> --
> 2.17.1
>
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH] arm: tegra: Restore host1x/dc dm-pre-reloc properties

2018-07-11 Thread Nicolas Chauvet
Since commit f2faffecb016, tegra: Convert to use binman
the dm-pre-reloc properties are removed.

This lead uboot not to enable the display on paz00

This patch restore the dm-pre-reloc properties allowing
the bootloader to output to the display panel

v2: - Add more character to commit hash

Signed-off-by: Nicolas Chauvet 
---
 arch/arm/dts/tegra20-u-boot.dtsi | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/arch/arm/dts/tegra20-u-boot.dtsi b/arch/arm/dts/tegra20-u-boot.dtsi
index 7c11972552..f64667e549 100644
--- a/arch/arm/dts/tegra20-u-boot.dtsi
+++ b/arch/arm/dts/tegra20-u-boot.dtsi
@@ -1,3 +1,13 @@
 #include 
 
 #include "tegra-u-boot.dtsi"
+
+
+/ {
+   host1x@5000 {
+   u-boot,dm-pre-reloc;
+   dc@5420 {
+   u-boot,dm-pre-reloc;
+   };
+   };
+};
-- 
2.17.1

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH] arm: tegra: Restore host1x/dc dm-pre-reloc properties

2018-07-11 Thread Stephen Warren

On 07/11/2018 09:19 AM, Nicolas Chauvet wrote:

Since commit f2faffecbd, tegra: Convert to use binman
the dm-pre-reloc properties are removed.


That commit hash is ambiguous; can we add a few more characters (e.g. 
"f2faffecb016")?


Thanks for tracking this down.
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH] arm: tegra: Restore host1x/dc dm-pre-reloc properties

2018-07-11 Thread Nicolas Chauvet
Since commit f2faffecbd, tegra: Convert to use binman
the dm-pre-reloc properties are removed.

This lead uboot not to enable the display on paz00

This patch restore the dm-pre-reloc properties allowing
the bootloader to output to the display panel

Signed-off-by: Nicolas Chauvet 
---
 arch/arm/dts/tegra20-u-boot.dtsi | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/arch/arm/dts/tegra20-u-boot.dtsi b/arch/arm/dts/tegra20-u-boot.dtsi
index 7c11972552..f64667e549 100644
--- a/arch/arm/dts/tegra20-u-boot.dtsi
+++ b/arch/arm/dts/tegra20-u-boot.dtsi
@@ -1,3 +1,13 @@
 #include 
 
 #include "tegra-u-boot.dtsi"
+
+
+/ {
+   host1x@5000 {
+   u-boot,dm-pre-reloc;
+   dc@5420 {
+   u-boot,dm-pre-reloc;
+   };
+   };
+};
-- 
2.17.1

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot