* [PATCH 2/3] cgtqmx8: Enable cache in SPL
2022-05-19 11:59 [PATCH 1/3] imx8mm-cl-iot-gate: Enable cache in SPL Fabio Estevam
@ 2022-05-19 11:59 ` Fabio Estevam
2022-05-20 13:40 ` sbabic
2022-05-19 11:59 ` [PATCH 3/3] imx8mp_rsb3720a1: " Fabio Estevam
` (2 subsequent siblings)
3 siblings, 1 reply; 7+ messages in thread
From: Fabio Estevam @ 2022-05-19 11:59 UTC (permalink / raw)
To: sbabic; +Cc: u-boot, paul.liu, oliver.graute, Fabio Estevam
From: Fabio Estevam <festevam@denx.de>
There is no reason for disabling I-cache and D-cache
in SPL.
Remove the unneeded CONFIG_SPL_SYS_ICACHE_OFF and
CONFIG_SPL_SYS_DCACHE_OFF options.
Signed-off-by: Fabio Estevam <festevam@denx.de>
---
configs/cgtqmx8_defconfig | 2 --
1 file changed, 2 deletions(-)
diff --git a/configs/cgtqmx8_defconfig b/configs/cgtqmx8_defconfig
index 2cf882f826ab..c53fa742751a 100644
--- a/configs/cgtqmx8_defconfig
+++ b/configs/cgtqmx8_defconfig
@@ -1,6 +1,4 @@
CONFIG_ARM=y
-CONFIG_SPL_SYS_ICACHE_OFF=y
-CONFIG_SPL_SYS_DCACHE_OFF=y
CONFIG_ARCH_IMX8=y
CONFIG_SYS_TEXT_BASE=0x80020000
CONFIG_SYS_MALLOC_LEN=0x2400000
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH 2/3] cgtqmx8: Enable cache in SPL
2022-05-19 11:59 ` [PATCH 2/3] cgtqmx8: " Fabio Estevam
@ 2022-05-20 13:40 ` sbabic
0 siblings, 0 replies; 7+ messages in thread
From: sbabic @ 2022-05-20 13:40 UTC (permalink / raw)
To: Fabio Estevam, u-boot
> From: Fabio Estevam <festevam@denx.de>
> There is no reason for disabling I-cache and D-cache
> in SPL.
>
> Remove the unneeded CONFIG_SPL_SYS_ICACHE_OFF and
> CONFIG_SPL_SYS_DCACHE_OFF options.
> Signed-off-by: Fabio Estevam <festevam@denx.de>
Applied to u-boot-imx, master, thanks !
Best regards,
Stefano Babic
--
=====================================================================
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic@denx.de
=====================================================================
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 3/3] imx8mp_rsb3720a1: Enable cache in SPL
2022-05-19 11:59 [PATCH 1/3] imx8mm-cl-iot-gate: Enable cache in SPL Fabio Estevam
2022-05-19 11:59 ` [PATCH 2/3] cgtqmx8: " Fabio Estevam
@ 2022-05-19 11:59 ` Fabio Estevam
2022-05-20 13:43 ` sbabic
2022-05-19 12:01 ` [PATCH 1/3] imx8mm-cl-iot-gate: " Michael Nazzareno Trimarchi
2022-05-20 13:44 ` sbabic
3 siblings, 1 reply; 7+ messages in thread
From: Fabio Estevam @ 2022-05-19 11:59 UTC (permalink / raw)
To: sbabic; +Cc: u-boot, paul.liu, oliver.graute, Fabio Estevam
From: Fabio Estevam <festevam@denx.de>
There is no reason for disabling I-cache and D-cache
in SPL.
Remove the unneeded CONFIG_SPL_SYS_ICACHE_OFF and
CONFIG_SPL_SYS_DCACHE_OFF options.
Signed-off-by: Fabio Estevam <festevam@denx.de>
---
configs/imx8mp_rsb3720a1_4G_defconfig | 2 --
configs/imx8mp_rsb3720a1_6G_defconfig | 2 --
2 files changed, 4 deletions(-)
diff --git a/configs/imx8mp_rsb3720a1_4G_defconfig b/configs/imx8mp_rsb3720a1_4G_defconfig
index a7585ba71f0f..d7f1aa0f1550 100644
--- a/configs/imx8mp_rsb3720a1_4G_defconfig
+++ b/configs/imx8mp_rsb3720a1_4G_defconfig
@@ -1,6 +1,4 @@
CONFIG_ARM=y
-CONFIG_SPL_SYS_ICACHE_OFF=y
-CONFIG_SPL_SYS_DCACHE_OFF=y
CONFIG_ARCH_IMX8M=y
CONFIG_SYS_TEXT_BASE=0x40200000
CONFIG_SYS_MALLOC_LEN=0x2000000
diff --git a/configs/imx8mp_rsb3720a1_6G_defconfig b/configs/imx8mp_rsb3720a1_6G_defconfig
index 5d06dc4a88d0..7ceac2b14e3a 100644
--- a/configs/imx8mp_rsb3720a1_6G_defconfig
+++ b/configs/imx8mp_rsb3720a1_6G_defconfig
@@ -1,6 +1,4 @@
CONFIG_ARM=y
-CONFIG_SPL_SYS_ICACHE_OFF=y
-CONFIG_SPL_SYS_DCACHE_OFF=y
CONFIG_ARCH_IMX8M=y
CONFIG_SYS_TEXT_BASE=0x40200000
CONFIG_SYS_MALLOC_LEN=0x2000000
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH 3/3] imx8mp_rsb3720a1: Enable cache in SPL
2022-05-19 11:59 ` [PATCH 3/3] imx8mp_rsb3720a1: " Fabio Estevam
@ 2022-05-20 13:43 ` sbabic
0 siblings, 0 replies; 7+ messages in thread
From: sbabic @ 2022-05-20 13:43 UTC (permalink / raw)
To: Fabio Estevam, u-boot
> From: Fabio Estevam <festevam@denx.de>
> There is no reason for disabling I-cache and D-cache
> in SPL.
>
> Remove the unneeded CONFIG_SPL_SYS_ICACHE_OFF and
> CONFIG_SPL_SYS_DCACHE_OFF options.
> Signed-off-by: Fabio Estevam <festevam@denx.de>
Applied to u-boot-imx, master, thanks !
Best regards,
Stefano Babic
--
=====================================================================
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic@denx.de
=====================================================================
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/3] imx8mm-cl-iot-gate: Enable cache in SPL
2022-05-19 11:59 [PATCH 1/3] imx8mm-cl-iot-gate: Enable cache in SPL Fabio Estevam
2022-05-19 11:59 ` [PATCH 2/3] cgtqmx8: " Fabio Estevam
2022-05-19 11:59 ` [PATCH 3/3] imx8mp_rsb3720a1: " Fabio Estevam
@ 2022-05-19 12:01 ` Michael Nazzareno Trimarchi
2022-05-20 13:44 ` sbabic
3 siblings, 0 replies; 7+ messages in thread
From: Michael Nazzareno Trimarchi @ 2022-05-19 12:01 UTC (permalink / raw)
To: Fabio Estevam; +Cc: sbabic, u-boot, paul.liu, oliver.graute, Fabio Estevam
Hi Fabio
On Thu, May 19, 2022 at 2:00 PM Fabio Estevam <festevam@gmail.com> wrote:
>
> From: Fabio Estevam <festevam@denx.de>
>
> There is no reason for disabling I-cache and D-cache
> in SPL.
>
> Remove the unneeded CONFIG_SPL_SYS_ICACHE_OFF and
> CONFIG_SPL_SYS_DCACHE_OFF options.
>
> Signed-off-by: Fabio Estevam <festevam@denx.de>
> ---
> configs/imx8mm-cl-iot-gate-optee_defconfig | 2 --
> configs/imx8mm-cl-iot-gate_defconfig | 2 --
> 2 files changed, 4 deletions(-)
>
> diff --git a/configs/imx8mm-cl-iot-gate-optee_defconfig b/configs/imx8mm-cl-iot-gate-optee_defconfig
> index 0bde51a91f53..8b3d1b3ef1a1 100644
> --- a/configs/imx8mm-cl-iot-gate-optee_defconfig
> +++ b/configs/imx8mm-cl-iot-gate-optee_defconfig
> @@ -1,6 +1,4 @@
> CONFIG_ARM=y
> -CONFIG_SPL_SYS_ICACHE_OFF=y
> -CONFIG_SPL_SYS_DCACHE_OFF=y
> CONFIG_ARCH_IMX8M=y
> CONFIG_SYS_TEXT_BASE=0x40200000
> CONFIG_SPL_GPIO=y
> diff --git a/configs/imx8mm-cl-iot-gate_defconfig b/configs/imx8mm-cl-iot-gate_defconfig
> index d734586a60cc..b418e86248f9 100644
> --- a/configs/imx8mm-cl-iot-gate_defconfig
> +++ b/configs/imx8mm-cl-iot-gate_defconfig
> @@ -1,6 +1,4 @@
> CONFIG_ARM=y
> -CONFIG_SPL_SYS_ICACHE_OFF=y
> -CONFIG_SPL_SYS_DCACHE_OFF=y
> CONFIG_ARCH_IMX8M=y
> CONFIG_SYS_TEXT_BASE=0x40200000
> CONFIG_SYS_MALLOC_LEN=0x2000000
> --
> 2.25.1
>
Reviewed-by: Michael Trimarchi <michael@amarulasolutions.com>
Michael
--
Michael Nazzareno Trimarchi
Co-Founder & Chief Executive Officer
M. +39 347 913 2170
michael@amarulasolutions.com
__________________________________
Amarula Solutions BV
Joop Geesinkweg 125, 1114 AB, Amsterdam, NL
T. +31 (0)85 111 9172
info@amarulasolutions.com
www.amarulasolutions.com
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 1/3] imx8mm-cl-iot-gate: Enable cache in SPL
2022-05-19 11:59 [PATCH 1/3] imx8mm-cl-iot-gate: Enable cache in SPL Fabio Estevam
` (2 preceding siblings ...)
2022-05-19 12:01 ` [PATCH 1/3] imx8mm-cl-iot-gate: " Michael Nazzareno Trimarchi
@ 2022-05-20 13:44 ` sbabic
3 siblings, 0 replies; 7+ messages in thread
From: sbabic @ 2022-05-20 13:44 UTC (permalink / raw)
To: Fabio Estevam, u-boot
> From: Fabio Estevam <festevam@denx.de>
> There is no reason for disabling I-cache and D-cache
> in SPL.
>
> Remove the unneeded CONFIG_SPL_SYS_ICACHE_OFF and
> CONFIG_SPL_SYS_DCACHE_OFF options.
> Signed-off-by: Fabio Estevam <festevam@denx.de>
> Reviewed-by: Michael Trimarchi <michael@amarulasolutions.com>
Applied to u-boot-imx, master, thanks !
Best regards,
Stefano Babic
--
=====================================================================
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic@denx.de
=====================================================================
^ permalink raw reply [flat|nested] 7+ messages in thread