All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 1/5] colibri_vf: enable relocation of fdt and initrd
@ 2020-02-04 20:51 Igor Opaniuk
  2020-02-04 20:51 ` [PATCH v1 2/5] colibri_imx7: " Igor Opaniuk
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Igor Opaniuk @ 2020-02-04 20:51 UTC (permalink / raw)
  To: u-boot

From: Igor Opaniuk <igor.opaniuk@toradex.com>

Remove 'fdt_high' and 'initrd_high' environment variables (set to 0xFFFFFFFF)
from default environment which prevents relocation of FDT and initrd.
Rely on 'bootm_size' value instead to safely relocate kernel, device tree and
initrd.

Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
---

 include/configs/colibri_vf.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/include/configs/colibri_vf.h b/include/configs/colibri_vf.h
index 1478ea844e..b03ccaf094 100644
--- a/include/configs/colibri_vf.h
+++ b/include/configs/colibri_vf.h
@@ -51,8 +51,6 @@
 #define MEM_LAYOUT_ENV_SETTINGS \
 	"bootm_size=0x10000000\0" \
 	"fdt_addr_r=0x82000000\0" \
-	"fdt_high=0xffffffff\0" \
-	"initrd_high=0xffffffff\0" \
 	"kernel_addr_r=0x81000000\0" \
 	"pxefile_addr_r=0x87100000\0" \
 	"ramdisk_addr_r=0x82100000\0" \
-- 
2.17.1

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

* [PATCH v1 2/5] colibri_imx7: enable relocation of fdt and initrd
  2020-02-04 20:51 [PATCH v1 1/5] colibri_vf: enable relocation of fdt and initrd Igor Opaniuk
@ 2020-02-04 20:51 ` Igor Opaniuk
  2020-02-05 12:21   ` Oleksandr Suvorov
  2020-02-04 20:51 ` [PATCH v1 3/5] apalis_imx6: " Igor Opaniuk
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Igor Opaniuk @ 2020-02-04 20:51 UTC (permalink / raw)
  To: u-boot

From: Igor Opaniuk <igor.opaniuk@toradex.com>

Remove 'fdt_high' and 'initrd_high' environment variables (set to 0xFFFFFFFF)
from default environment which prevents relocation of FDT and initrd.
Rely on 'bootm_size' value instead to safely relocate kernel, device tree and
initrd.

Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
---

 include/configs/colibri_imx7.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/include/configs/colibri_imx7.h b/include/configs/colibri_imx7.h
index 603ea3a053..7c00f78ef1 100644
--- a/include/configs/colibri_imx7.h
+++ b/include/configs/colibri_imx7.h
@@ -108,8 +108,6 @@
 #define MEM_LAYOUT_ENV_SETTINGS \
 	"bootm_size=0x10000000\0" \
 	"fdt_addr_r=0x82000000\0" \
-	"fdt_high=0xffffffff\0" \
-	"initrd_high=0xffffffff\0" \
 	"kernel_addr_r=0x81000000\0" \
 	"ramdisk_addr_r=0x82100000\0" \
 	"scriptaddr=0x82500000\0"
-- 
2.17.1

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

* [PATCH v1 3/5] apalis_imx6: enable relocation of fdt and initrd
  2020-02-04 20:51 [PATCH v1 1/5] colibri_vf: enable relocation of fdt and initrd Igor Opaniuk
  2020-02-04 20:51 ` [PATCH v1 2/5] colibri_imx7: " Igor Opaniuk
@ 2020-02-04 20:51 ` Igor Opaniuk
  2020-02-05 13:41   ` Oleksandr Suvorov
  2020-02-04 20:51 ` [PATCH v1 4/5] colibri-imx6ull: " Igor Opaniuk
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Igor Opaniuk @ 2020-02-04 20:51 UTC (permalink / raw)
  To: u-boot

From: Igor Opaniuk <igor.opaniuk@toradex.com>

Remove 'fdt_high' and 'initrd_high' environment variables (set to 0xFFFFFFFF)
from default environment which prevents relocation of FDT and initrd.
Rely on 'bootm_size' value instead to safely relocate kernel, device tree and
initrd.

Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
---

 include/configs/apalis_imx6.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/include/configs/apalis_imx6.h b/include/configs/apalis_imx6.h
index d2ff7e9534..fb0037444f 100644
--- a/include/configs/apalis_imx6.h
+++ b/include/configs/apalis_imx6.h
@@ -146,8 +146,6 @@
 #define MEM_LAYOUT_ENV_SETTINGS \
 	"bootm_size=0x20000000\0" \
 	"fdt_addr_r=0x12100000\0" \
-	"fdt_high=0xffffffff\0" \
-	"initrd_high=0xffffffff\0" \
 	"kernel_addr_r=0x11000000\0" \
 	"pxefile_addr_r=0x17100000\0" \
 	"ramdisk_addr_r=0x12200000\0" \
-- 
2.17.1

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

* [PATCH v1 4/5] colibri-imx6ull: enable relocation of fdt and initrd
  2020-02-04 20:51 [PATCH v1 1/5] colibri_vf: enable relocation of fdt and initrd Igor Opaniuk
  2020-02-04 20:51 ` [PATCH v1 2/5] colibri_imx7: " Igor Opaniuk
  2020-02-04 20:51 ` [PATCH v1 3/5] apalis_imx6: " Igor Opaniuk
@ 2020-02-04 20:51 ` Igor Opaniuk
  2020-02-05 13:41   ` Oleksandr Suvorov
  2020-02-04 20:51 ` [PATCH v1 5/5] colibri_imx6: " Igor Opaniuk
  2020-02-05 12:21 ` [PATCH v1 1/5] colibri_vf: " Oleksandr Suvorov
  4 siblings, 1 reply; 11+ messages in thread
From: Igor Opaniuk @ 2020-02-04 20:51 UTC (permalink / raw)
  To: u-boot

From: Igor Opaniuk <igor.opaniuk@toradex.com>

Remove 'fdt_high' and 'initrd_high' environment variables (set to 0xFFFFFFFF)
from default environment which prevents relocation of FDT and initrd.
Rely on 'bootm_size' value instead to safely relocate kernel, device tree and
initrd.

Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
---

 include/configs/colibri-imx6ull.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/include/configs/colibri-imx6ull.h b/include/configs/colibri-imx6ull.h
index ea5ba6bfce..2a76f576a8 100644
--- a/include/configs/colibri-imx6ull.h
+++ b/include/configs/colibri-imx6ull.h
@@ -40,8 +40,6 @@
 #define MEM_LAYOUT_ENV_SETTINGS \
 	"bootm_size=0x10000000\0" \
 	"fdt_addr_r=0x82100000\0" \
-	"fdt_high=0xffffffff\0" \
-	"initrd_high=0xffffffff\0" \
 	"kernel_addr_r=0x81000000\0" \
 	"pxefile_addr_r=0x87100000\0" \
 	"ramdisk_addr_r=0x82200000\0" \
-- 
2.17.1

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

* [PATCH v1 5/5] colibri_imx6: enable relocation of fdt and initrd
  2020-02-04 20:51 [PATCH v1 1/5] colibri_vf: enable relocation of fdt and initrd Igor Opaniuk
                   ` (2 preceding siblings ...)
  2020-02-04 20:51 ` [PATCH v1 4/5] colibri-imx6ull: " Igor Opaniuk
@ 2020-02-04 20:51 ` Igor Opaniuk
  2020-02-05 12:22   ` Oleksandr Suvorov
  2020-02-05 13:41   ` Oleksandr Suvorov
  2020-02-05 12:21 ` [PATCH v1 1/5] colibri_vf: " Oleksandr Suvorov
  4 siblings, 2 replies; 11+ messages in thread
From: Igor Opaniuk @ 2020-02-04 20:51 UTC (permalink / raw)
  To: u-boot

From: Igor Opaniuk <igor.opaniuk@toradex.com>

Remove 'fdt_high' and 'initrd_high' environment variables (set to 0xFFFFFFFF)
from default environment which prevents relocation of FDT and initrd.
Rely on 'bootm_size' value instead to safely relocate kernel, device tree and
initrd.

Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
---

 include/configs/colibri_imx6.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/include/configs/colibri_imx6.h b/include/configs/colibri_imx6.h
index cbc7501bcc..4cdd3c53af 100644
--- a/include/configs/colibri_imx6.h
+++ b/include/configs/colibri_imx6.h
@@ -134,8 +134,6 @@
 #define MEM_LAYOUT_ENV_SETTINGS \
 	"bootm_size=0x10000000\0" \
 	"fdt_addr_r=0x12100000\0" \
-	"fdt_high=0xffffffff\0" \
-	"initrd_high=0xffffffff\0" \
 	"kernel_addr_r=0x11000000\0" \
 	"pxefile_addr_r=0x17100000\0" \
 	"ramdisk_addr_r=0x12200000\0" \
-- 
2.17.1

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

* [PATCH v1 1/5] colibri_vf: enable relocation of fdt and initrd
  2020-02-04 20:51 [PATCH v1 1/5] colibri_vf: enable relocation of fdt and initrd Igor Opaniuk
                   ` (3 preceding siblings ...)
  2020-02-04 20:51 ` [PATCH v1 5/5] colibri_imx6: " Igor Opaniuk
@ 2020-02-05 12:21 ` Oleksandr Suvorov
  4 siblings, 0 replies; 11+ messages in thread
From: Oleksandr Suvorov @ 2020-02-05 12:21 UTC (permalink / raw)
  To: u-boot

On Tue, Feb 4, 2020 at 10:52 PM Igor Opaniuk <igor.opaniuk@gmail.com> wrote:
>
> From: Igor Opaniuk <igor.opaniuk@toradex.com>
>
> Remove 'fdt_high' and 'initrd_high' environment variables (set to 0xFFFFFFFF)
> from default environment which prevents relocation of FDT and initrd.
> Rely on 'bootm_size' value instead to safely relocate kernel, device tree and
> initrd.
>
> Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>

Reviewed-by: Oleksandr Suvorov <oleksandr.suvorov@toradex.com>

> ---
>
>  include/configs/colibri_vf.h | 2 --
>  1 file changed, 2 deletions(-)
>
> diff --git a/include/configs/colibri_vf.h b/include/configs/colibri_vf.h
> index 1478ea844e..b03ccaf094 100644
> --- a/include/configs/colibri_vf.h
> +++ b/include/configs/colibri_vf.h
> @@ -51,8 +51,6 @@
>  #define MEM_LAYOUT_ENV_SETTINGS \
>         "bootm_size=0x10000000\0" \
>         "fdt_addr_r=0x82000000\0" \
> -       "fdt_high=0xffffffff\0" \
> -       "initrd_high=0xffffffff\0" \
>         "kernel_addr_r=0x81000000\0" \
>         "pxefile_addr_r=0x87100000\0" \
>         "ramdisk_addr_r=0x82100000\0" \
> --
> 2.17.1
>


-- 
Best regards

Oleksandr Suvorov
cryosay at gmail.com

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

* [PATCH v1 2/5] colibri_imx7: enable relocation of fdt and initrd
  2020-02-04 20:51 ` [PATCH v1 2/5] colibri_imx7: " Igor Opaniuk
@ 2020-02-05 12:21   ` Oleksandr Suvorov
  0 siblings, 0 replies; 11+ messages in thread
From: Oleksandr Suvorov @ 2020-02-05 12:21 UTC (permalink / raw)
  To: u-boot

On Tue, Feb 4, 2020 at 10:52 PM Igor Opaniuk <igor.opaniuk@gmail.com> wrote:
>
> From: Igor Opaniuk <igor.opaniuk@toradex.com>
>
> Remove 'fdt_high' and 'initrd_high' environment variables (set to 0xFFFFFFFF)
> from default environment which prevents relocation of FDT and initrd.
> Rely on 'bootm_size' value instead to safely relocate kernel, device tree and
> initrd.
>
> Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>

Reviewed-by: Oleksandr Suvorov <oleksandr.suvorov@toradex.com>

> ---
>
>  include/configs/colibri_imx7.h | 2 --
>  1 file changed, 2 deletions(-)
>
> diff --git a/include/configs/colibri_imx7.h b/include/configs/colibri_imx7.h
> index 603ea3a053..7c00f78ef1 100644
> --- a/include/configs/colibri_imx7.h
> +++ b/include/configs/colibri_imx7.h
> @@ -108,8 +108,6 @@
>  #define MEM_LAYOUT_ENV_SETTINGS \
>         "bootm_size=0x10000000\0" \
>         "fdt_addr_r=0x82000000\0" \
> -       "fdt_high=0xffffffff\0" \
> -       "initrd_high=0xffffffff\0" \
>         "kernel_addr_r=0x81000000\0" \
>         "ramdisk_addr_r=0x82100000\0" \
>         "scriptaddr=0x82500000\0"
> --
> 2.17.1
>


-- 
Best regards

Oleksandr Suvorov
cryosay at gmail.com

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

* [PATCH v1 5/5] colibri_imx6: enable relocation of fdt and initrd
  2020-02-04 20:51 ` [PATCH v1 5/5] colibri_imx6: " Igor Opaniuk
@ 2020-02-05 12:22   ` Oleksandr Suvorov
  2020-02-05 13:41   ` Oleksandr Suvorov
  1 sibling, 0 replies; 11+ messages in thread
From: Oleksandr Suvorov @ 2020-02-05 12:22 UTC (permalink / raw)
  To: u-boot

On Tue, Feb 4, 2020 at 10:52 PM Igor Opaniuk <igor.opaniuk@gmail.com> wrote:
>
> From: Igor Opaniuk <igor.opaniuk@toradex.com>
>
> Remove 'fdt_high' and 'initrd_high' environment variables (set to 0xFFFFFFFF)
> from default environment which prevents relocation of FDT and initrd.
> Rely on 'bootm_size' value instead to safely relocate kernel, device tree and
> initrd.
>
> Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>

Reviewed-by: Oleksandr Suvorov <oleksandr.suvorov@toradex.com>

> ---
>
>  include/configs/colibri_imx6.h | 2 --
>  1 file changed, 2 deletions(-)
>
> diff --git a/include/configs/colibri_imx6.h b/include/configs/colibri_imx6.h
> index cbc7501bcc..4cdd3c53af 100644
> --- a/include/configs/colibri_imx6.h
> +++ b/include/configs/colibri_imx6.h
> @@ -134,8 +134,6 @@
>  #define MEM_LAYOUT_ENV_SETTINGS \
>         "bootm_size=0x10000000\0" \
>         "fdt_addr_r=0x12100000\0" \
> -       "fdt_high=0xffffffff\0" \
> -       "initrd_high=0xffffffff\0" \
>         "kernel_addr_r=0x11000000\0" \
>         "pxefile_addr_r=0x17100000\0" \
>         "ramdisk_addr_r=0x12200000\0" \
> --
> 2.17.1
>


-- 
Best regards

Oleksandr Suvorov
cryosay at gmail.com

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

* [PATCH v1 3/5] apalis_imx6: enable relocation of fdt and initrd
  2020-02-04 20:51 ` [PATCH v1 3/5] apalis_imx6: " Igor Opaniuk
@ 2020-02-05 13:41   ` Oleksandr Suvorov
  0 siblings, 0 replies; 11+ messages in thread
From: Oleksandr Suvorov @ 2020-02-05 13:41 UTC (permalink / raw)
  To: u-boot

On Tue, Feb 4, 2020 at 10:52 PM Igor Opaniuk <igor.opaniuk@gmail.com> wrote:
>
> From: Igor Opaniuk <igor.opaniuk@toradex.com>
>
> Remove 'fdt_high' and 'initrd_high' environment variables (set to 0xFFFFFFFF)
> from default environment which prevents relocation of FDT and initrd.
> Rely on 'bootm_size' value instead to safely relocate kernel, device tree and
> initrd.
>
> Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>

Reviewed-by: Oleksandr Suvorov <oleksandr.suvorov@toradex.com>
> ---
>
>  include/configs/apalis_imx6.h | 2 --
>  1 file changed, 2 deletions(-)
>
> diff --git a/include/configs/apalis_imx6.h b/include/configs/apalis_imx6.h
> index d2ff7e9534..fb0037444f 100644
> --- a/include/configs/apalis_imx6.h
> +++ b/include/configs/apalis_imx6.h
> @@ -146,8 +146,6 @@
>  #define MEM_LAYOUT_ENV_SETTINGS \
>         "bootm_size=0x20000000\0" \
>         "fdt_addr_r=0x12100000\0" \
> -       "fdt_high=0xffffffff\0" \
> -       "initrd_high=0xffffffff\0" \
>         "kernel_addr_r=0x11000000\0" \
>         "pxefile_addr_r=0x17100000\0" \
>         "ramdisk_addr_r=0x12200000\0" \
> --
> 2.17.1
>


-- 
Best regards

Oleksandr Suvorov
cryosay at gmail.com

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

* [PATCH v1 4/5] colibri-imx6ull: enable relocation of fdt and initrd
  2020-02-04 20:51 ` [PATCH v1 4/5] colibri-imx6ull: " Igor Opaniuk
@ 2020-02-05 13:41   ` Oleksandr Suvorov
  0 siblings, 0 replies; 11+ messages in thread
From: Oleksandr Suvorov @ 2020-02-05 13:41 UTC (permalink / raw)
  To: u-boot

On Tue, Feb 4, 2020 at 10:52 PM Igor Opaniuk <igor.opaniuk@gmail.com> wrote:
>
> From: Igor Opaniuk <igor.opaniuk@toradex.com>
>
> Remove 'fdt_high' and 'initrd_high' environment variables (set to 0xFFFFFFFF)
> from default environment which prevents relocation of FDT and initrd.
> Rely on 'bootm_size' value instead to safely relocate kernel, device tree and
> initrd.
>
> Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>

Reviewed-by: Oleksandr Suvorov <oleksandr.suvorov@toradex.com>

> ---
>
>  include/configs/colibri-imx6ull.h | 2 --
>  1 file changed, 2 deletions(-)
>
> diff --git a/include/configs/colibri-imx6ull.h b/include/configs/colibri-imx6ull.h
> index ea5ba6bfce..2a76f576a8 100644
> --- a/include/configs/colibri-imx6ull.h
> +++ b/include/configs/colibri-imx6ull.h
> @@ -40,8 +40,6 @@
>  #define MEM_LAYOUT_ENV_SETTINGS \
>         "bootm_size=0x10000000\0" \
>         "fdt_addr_r=0x82100000\0" \
> -       "fdt_high=0xffffffff\0" \
> -       "initrd_high=0xffffffff\0" \
>         "kernel_addr_r=0x81000000\0" \
>         "pxefile_addr_r=0x87100000\0" \
>         "ramdisk_addr_r=0x82200000\0" \
> --
> 2.17.1
>


-- 
Best regards
Oleksandr Suvorov

Toradex AG
Altsagenstrasse 5 | 6048 Horw/Luzern | Switzerland | T: +41 41 500
4800 (main line)

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

* [PATCH v1 5/5] colibri_imx6: enable relocation of fdt and initrd
  2020-02-04 20:51 ` [PATCH v1 5/5] colibri_imx6: " Igor Opaniuk
  2020-02-05 12:22   ` Oleksandr Suvorov
@ 2020-02-05 13:41   ` Oleksandr Suvorov
  1 sibling, 0 replies; 11+ messages in thread
From: Oleksandr Suvorov @ 2020-02-05 13:41 UTC (permalink / raw)
  To: u-boot

On Tue, Feb 4, 2020 at 10:52 PM Igor Opaniuk <igor.opaniuk@gmail.com> wrote:
>
> From: Igor Opaniuk <igor.opaniuk@toradex.com>
>
> Remove 'fdt_high' and 'initrd_high' environment variables (set to 0xFFFFFFFF)
> from default environment which prevents relocation of FDT and initrd.
> Rely on 'bootm_size' value instead to safely relocate kernel, device tree and
> initrd.
>
> Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>

Reviewed-by: Oleksandr Suvorov <oleksandr.suvorov@toradex.com>
> ---
>
>  include/configs/colibri_imx6.h | 2 --
>  1 file changed, 2 deletions(-)
>
> diff --git a/include/configs/colibri_imx6.h b/include/configs/colibri_imx6.h
> index cbc7501bcc..4cdd3c53af 100644
> --- a/include/configs/colibri_imx6.h
> +++ b/include/configs/colibri_imx6.h
> @@ -134,8 +134,6 @@
>  #define MEM_LAYOUT_ENV_SETTINGS \
>         "bootm_size=0x10000000\0" \
>         "fdt_addr_r=0x12100000\0" \
> -       "fdt_high=0xffffffff\0" \
> -       "initrd_high=0xffffffff\0" \
>         "kernel_addr_r=0x11000000\0" \
>         "pxefile_addr_r=0x17100000\0" \
>         "ramdisk_addr_r=0x12200000\0" \
> --
> 2.17.1
>


-- 
Best regards
Oleksandr Suvorov

Toradex AG
Altsagenstrasse 5 | 6048 Horw/Luzern | Switzerland | T: +41 41 500
4800 (main line)

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

end of thread, other threads:[~2020-02-05 13:41 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-04 20:51 [PATCH v1 1/5] colibri_vf: enable relocation of fdt and initrd Igor Opaniuk
2020-02-04 20:51 ` [PATCH v1 2/5] colibri_imx7: " Igor Opaniuk
2020-02-05 12:21   ` Oleksandr Suvorov
2020-02-04 20:51 ` [PATCH v1 3/5] apalis_imx6: " Igor Opaniuk
2020-02-05 13:41   ` Oleksandr Suvorov
2020-02-04 20:51 ` [PATCH v1 4/5] colibri-imx6ull: " Igor Opaniuk
2020-02-05 13:41   ` Oleksandr Suvorov
2020-02-04 20:51 ` [PATCH v1 5/5] colibri_imx6: " Igor Opaniuk
2020-02-05 12:22   ` Oleksandr Suvorov
2020-02-05 13:41   ` Oleksandr Suvorov
2020-02-05 12:21 ` [PATCH v1 1/5] colibri_vf: " Oleksandr Suvorov

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.