All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] imx: Enable ACTLR.SMP in SPL for i.MX6/7
@ 2022-01-02 19:36 Sven Schwermer
  2022-01-03 11:45 ` Fabio Estevam
  2022-02-05 16:42 ` sbabic
  0 siblings, 2 replies; 3+ messages in thread
From: Sven Schwermer @ 2022-01-02 19:36 UTC (permalink / raw)
  To: u-boot
  Cc: Sven Schwermer, Fabio Estevam, Harald Seiler,
	Jorge Ramirez-Ortiz, NXP i.MX U-Boot Team, Oleksandr Suvorov,
	Ricardo Salveti, Sean Anderson, Simon Glass, Stefano Babic,
	Wolfgang Denk, Ye Li

Similar to what has been done before with c5437e5b for u-boot proper, we
enable the SMP bit for SPL as well. This is necessary when SDP booting
straight into Linux, i.e. falcon boot. When SDP boot mode is active, the
ROM code does not set this bit which makes the caches not work once
activated in Linux.

On an i.MX6ULL (528MHz), this reduces a minimal kernel's boot time into
an initramfs shell from ~6.1s down to ~1.2s.

Signed-off-by: Sven Schwermer <sven@svenschwermer.de>
---

Changes in v2:
- Apply fix for i.MX7(ULP) as well
- Document quantitive improvement in boot time

 arch/arm/include/asm/mach-imx/sys_proto.h | 5 +++++
 arch/arm/mach-imx/cache.c                 | 2 +-
 arch/arm/mach-imx/mx6/soc.c               | 3 +++
 arch/arm/mach-imx/mx7/soc.c               | 3 +++
 arch/arm/mach-imx/mx7ulp/soc.c            | 2 ++
 5 files changed, 14 insertions(+), 1 deletion(-)

diff --git a/arch/arm/include/asm/mach-imx/sys_proto.h b/arch/arm/include/asm/mach-imx/sys_proto.h
index 444834995e..3f66d225c8 100644
--- a/arch/arm/include/asm/mach-imx/sys_proto.h
+++ b/arch/arm/include/asm/mach-imx/sys_proto.h
@@ -236,4 +236,9 @@ unsigned long call_imx_sip_ret2(unsigned long id, unsigned long reg0,
 				unsigned long reg3);
 
 void imx_get_mac_from_fuse(int dev_id, unsigned char *mac);
+
+#if defined(CONFIG_MX6) || defined(CONFIG_MX7) || defined(CONFIG_MX7ULP)
+void enable_ca7_smp(void);
+#endif
+
 #endif
diff --git a/arch/arm/mach-imx/cache.c b/arch/arm/mach-imx/cache.c
index 4e3b49a3fd..ab9b621a2a 100644
--- a/arch/arm/mach-imx/cache.c
+++ b/arch/arm/mach-imx/cache.c
@@ -11,7 +11,7 @@
 #include <asm/io.h>
 #include <asm/mach-imx/sys_proto.h>
 
-static void enable_ca7_smp(void)
+void enable_ca7_smp(void)
 {
 	u32 val;
 
diff --git a/arch/arm/mach-imx/mx6/soc.c b/arch/arm/mach-imx/mx6/soc.c
index aacfc854a2..41f1a6e64e 100644
--- a/arch/arm/mach-imx/mx6/soc.c
+++ b/arch/arm/mach-imx/mx6/soc.c
@@ -487,6 +487,9 @@ int arch_cpu_init(void)
 	if (is_mx6dqp())
 		noc_setup();
 #endif
+
+	enable_ca7_smp();
+
 	return 0;
 }
 
diff --git a/arch/arm/mach-imx/mx7/soc.c b/arch/arm/mach-imx/mx7/soc.c
index 21690072e1..f6aec5a3aa 100644
--- a/arch/arm/mach-imx/mx7/soc.c
+++ b/arch/arm/mach-imx/mx7/soc.c
@@ -14,6 +14,7 @@
 #include <asm/mach-imx/rdc-sema.h>
 #include <asm/arch/imx-rdc.h>
 #include <asm/mach-imx/boot_mode.h>
+#include <asm/mach-imx/sys_proto.h>
 #include <asm/arch/crm_regs.h>
 #include <asm/bootm.h>
 #include <dm.h>
@@ -323,6 +324,8 @@ int arch_cpu_init(void)
 
 	imx_gpcv2_init();
 
+	enable_ca7_smp();
+
 	return 0;
 }
 #else
diff --git a/arch/arm/mach-imx/mx7ulp/soc.c b/arch/arm/mach-imx/mx7ulp/soc.c
index c90ce22404..bc41cbc687 100644
--- a/arch/arm/mach-imx/mx7ulp/soc.c
+++ b/arch/arm/mach-imx/mx7ulp/soc.c
@@ -13,6 +13,7 @@
 #include <asm/arch/sys_proto.h>
 #include <asm/mach-imx/boot_mode.h>
 #include <asm/mach-imx/hab.h>
+#include <asm/mach-imx/sys_proto.h>
 #include <asm/setup.h>
 #include <linux/bitops.h>
 
@@ -77,6 +78,7 @@ enum bt_mode get_boot_mode(void)
 
 int arch_cpu_init(void)
 {
+	enable_ca7_smp();
 	return 0;
 }
 
-- 
2.34.1


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

* Re: [PATCH v2] imx: Enable ACTLR.SMP in SPL for i.MX6/7
  2022-01-02 19:36 [PATCH v2] imx: Enable ACTLR.SMP in SPL for i.MX6/7 Sven Schwermer
@ 2022-01-03 11:45 ` Fabio Estevam
  2022-02-05 16:42 ` sbabic
  1 sibling, 0 replies; 3+ messages in thread
From: Fabio Estevam @ 2022-01-03 11:45 UTC (permalink / raw)
  To: Sven Schwermer
  Cc: U-Boot-Denx, Harald Seiler, Jorge Ramirez-Ortiz,
	NXP i.MX U-Boot Team, Oleksandr Suvorov, Ricardo Salveti,
	Sean Anderson, Simon Glass, Stefano Babic, Wolfgang Denk, Ye Li

Hi Sven,

On Sun, Jan 2, 2022 at 4:38 PM Sven Schwermer <sven@svenschwermer.de> wrote:
>
> Similar to what has been done before with c5437e5b for u-boot proper, we
> enable the SMP bit for SPL as well. This is necessary when SDP booting
> straight into Linux, i.e. falcon boot. When SDP boot mode is active, the
> ROM code does not set this bit which makes the caches not work once
> activated in Linux.
>
> On an i.MX6ULL (528MHz), this reduces a minimal kernel's boot time into
> an initramfs shell from ~6.1s down to ~1.2s.
>
> Signed-off-by: Sven Schwermer <sven@svenschwermer.de>
> ---
>
> Changes in v2:
> - Apply fix for i.MX7(ULP) as well
> - Document quantitive improvement in boot time

Thanks for the updated version. It looks good to me:

Reviewed-by: Fabio Estevam <festevam@gmail.com>

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

* [PATCH v2] imx: Enable ACTLR.SMP in SPL for i.MX6/7
  2022-01-02 19:36 [PATCH v2] imx: Enable ACTLR.SMP in SPL for i.MX6/7 Sven Schwermer
  2022-01-03 11:45 ` Fabio Estevam
@ 2022-02-05 16:42 ` sbabic
  1 sibling, 0 replies; 3+ messages in thread
From: sbabic @ 2022-02-05 16:42 UTC (permalink / raw)
  To: Sven Schwermer, u-boot

> Similar to what has been done before with c5437e5b for u-boot proper, we
> enable the SMP bit for SPL as well. This is necessary when SDP booting
> straight into Linux, i.e. falcon boot. When SDP boot mode is active, the
> ROM code does not set this bit which makes the caches not work once
> activated in Linux.
> On an i.MX6ULL (528MHz), this reduces a minimal kernel's boot time into
> an initramfs shell from ~6.1s down to ~1.2s.
> Signed-off-by: Sven Schwermer <sven@svenschwermer.de>
> Reviewed-by: Fabio Estevam <festevam@gmail.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] 3+ messages in thread

end of thread, other threads:[~2022-02-05 16:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-02 19:36 [PATCH v2] imx: Enable ACTLR.SMP in SPL for i.MX6/7 Sven Schwermer
2022-01-03 11:45 ` Fabio Estevam
2022-02-05 16:42 ` sbabic

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.