mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH v2] MIPS: init cache before using it
@ 2019-10-16  4:57 Oleksij Rempel
  2019-10-18 11:49 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Oleksij Rempel @ 2019-10-16  4:57 UTC (permalink / raw)
  To: barebox; +Cc: Oleksij Rempel

flush_cache_all() uses 'struct cpuinfo_mips current_cpu_data' data
fields. These data fields are initialized in r4k_cache_init().

However in the current implementation the r4k_cache_init() function
is called __AFTER__ relocate_code().

Suggested-by: Antony Pavlov <antonynpavlov@gmail.com>
Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
---
 arch/mips/lib/reloc.c | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/arch/mips/lib/reloc.c b/arch/mips/lib/reloc.c
index 9a9e404f7e..14195d6f96 100644
--- a/arch/mips/lib/reloc.c
+++ b/arch/mips/lib/reloc.c
@@ -31,6 +31,7 @@
 #include <asm/bitops.h>
 #include <asm/cache.h>
 #include <asm/cacheops.h>
+#include <asm/cpu-features.h>
 #include <asm/cpu.h>
 #include <asm/cpu-info.h>
 #include <asm/io.h>
@@ -40,6 +41,7 @@
 #include <linux/sizes.h>
 #include <asm-generic/memory_layout.h>
 
+extern void r4k_cache_init(void);
 void main_entry(void *fdt, u32 fdt_size);
 void relocate_code(void *fdt, u32 fdt_size, u32 relocaddr);
 
@@ -146,8 +148,14 @@ void relocate_code(void *fdt, u32 fdt_size, u32 ram_size)
 		apply_reloc(type, (void *)addr, off);
 	}
 
-	/* Ensure the icache is coherent */
-	flush_cache_all();
+	memset(__bss_start, 0, bss_len);
+
+	cpu_probe();
+	if (cpu_has_4k_cache) {
+		r4k_cache_init();
+		/* Ensure the icache is coherent */
+		flush_cache_all();
+	}
 
 	/* Clear the .bss section */
 	bss_start = (uint8_t *)((unsigned long)__bss_start + off);
-- 
2.23.0


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: [PATCH v2] MIPS: init cache before using it
  2019-10-16  4:57 [PATCH v2] MIPS: init cache before using it Oleksij Rempel
@ 2019-10-18 11:49 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2019-10-18 11:49 UTC (permalink / raw)
  To: Oleksij Rempel; +Cc: barebox

On Wed, Oct 16, 2019 at 06:57:42AM +0200, Oleksij Rempel wrote:
> flush_cache_all() uses 'struct cpuinfo_mips current_cpu_data' data
> fields. These data fields are initialized in r4k_cache_init().
> 
> However in the current implementation the r4k_cache_init() function
> is called __AFTER__ relocate_code().
> 
> Suggested-by: Antony Pavlov <antonynpavlov@gmail.com>
> Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
> ---
>  arch/mips/lib/reloc.c | 12 ++++++++++--
>  1 file changed, 10 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/mips/lib/reloc.c b/arch/mips/lib/reloc.c
> index 9a9e404f7e..14195d6f96 100644
> --- a/arch/mips/lib/reloc.c
> +++ b/arch/mips/lib/reloc.c
> @@ -31,6 +31,7 @@
>  #include <asm/bitops.h>
>  #include <asm/cache.h>
>  #include <asm/cacheops.h>
> +#include <asm/cpu-features.h>
>  #include <asm/cpu.h>
>  #include <asm/cpu-info.h>
>  #include <asm/io.h>
> @@ -40,6 +41,7 @@
>  #include <linux/sizes.h>
>  #include <asm-generic/memory_layout.h>
>  
> +extern void r4k_cache_init(void);
>  void main_entry(void *fdt, u32 fdt_size);
>  void relocate_code(void *fdt, u32 fdt_size, u32 relocaddr);
>  
> @@ -146,8 +148,14 @@ void relocate_code(void *fdt, u32 fdt_size, u32 ram_size)
>  		apply_reloc(type, (void *)addr, off);
>  	}
>  
> -	/* Ensure the icache is coherent */
> -	flush_cache_all();
> +	memset(__bss_start, 0, bss_len);
> +
> +	cpu_probe();
> +	if (cpu_has_4k_cache) {
> +		r4k_cache_init();
> +		/* Ensure the icache is coherent */
> +		flush_cache_all();
> +	}
>  
>  	/* Clear the .bss section */
>  	bss_start = (uint8_t *)((unsigned long)__bss_start + off);
>	memset(bss_start, 0, bss_len);

bss is cleared twice now and with two different addresses. This looks
wrong.

Sascha

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2019-10-18 11:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-16  4:57 [PATCH v2] MIPS: init cache before using it Oleksij Rempel
2019-10-18 11:49 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox