All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/9] powerpc: Remove flush_instruction_cache for book3s/32
@ 2020-08-13 16:36 ` Christophe Leroy
  0 siblings, 0 replies; 18+ messages in thread
From: Christophe Leroy @ 2020-08-13 16:36 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Paul Mackerras, Michael Ellerman
  Cc: linux-kernel, linuxppc-dev

The only callers of flush_instruction_cache() are:

arch/powerpc/kernel/swsusp_booke.S:	bl flush_instruction_cache
arch/powerpc/mm/nohash/40x.c:	flush_instruction_cache();
arch/powerpc/mm/nohash/44x.c:	flush_instruction_cache();
arch/powerpc/mm/nohash/fsl_booke.c:	flush_instruction_cache();
arch/powerpc/platforms/44x/machine_check.c:			flush_instruction_cache();
arch/powerpc/platforms/44x/machine_check.c:		flush_instruction_cache();

This function is not used by book3s/32, drop it.

Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
---
 arch/powerpc/kernel/misc_32.S | 12 ++----------
 1 file changed, 2 insertions(+), 10 deletions(-)

diff --git a/arch/powerpc/kernel/misc_32.S b/arch/powerpc/kernel/misc_32.S
index b24f866fef81..bd870743c06f 100644
--- a/arch/powerpc/kernel/misc_32.S
+++ b/arch/powerpc/kernel/misc_32.S
@@ -271,9 +271,8 @@ _ASM_NOKPROBE_SYMBOL(real_writeb)
 
 /*
  * Flush instruction cache.
- * This is a no-op on the 601.
  */
-#ifndef CONFIG_PPC_8xx
+#if !defined(CONFIG_PPC_8xx) && !defined(CONFIG_PPC_BOOK3S_32)
 _GLOBAL(flush_instruction_cache)
 #if defined(CONFIG_4xx)
 	lis	r3, KERNELBASE@h
@@ -290,18 +289,11 @@ _GLOBAL(flush_instruction_cache)
 	mfspr	r3,SPRN_L1CSR1
 	ori	r3,r3,L1CSR1_ICFI|L1CSR1_ICLFR
 	mtspr	SPRN_L1CSR1,r3
-#elif defined(CONFIG_PPC_BOOK3S_601)
-	blr			/* for 601, do nothing */
-#else
-	/* 603/604 processor - use invalidate-all bit in HID0 */
-	mfspr	r3,SPRN_HID0
-	ori	r3,r3,HID0_ICFI
-	mtspr	SPRN_HID0,r3
 #endif /* CONFIG_4xx */
 	isync
 	blr
 EXPORT_SYMBOL(flush_instruction_cache)
-#endif /* CONFIG_PPC_8xx */
+#endif /* CONFIG_PPC_8xx || CONFIG_PPC_BOOK3S_32 */
 
 /*
  * Copy a whole page.  We use the dcbz instruction on the destination
-- 
2.25.0


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

end of thread, other threads:[~2020-08-13 16:53 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-13 16:36 [PATCH 1/9] powerpc: Remove flush_instruction_cache for book3s/32 Christophe Leroy
2020-08-13 16:36 ` Christophe Leroy
2020-08-13 16:36 ` [PATCH 2/9] powerpc: Remove SYNC on non 6xx Christophe Leroy
2020-08-13 16:36   ` Christophe Leroy
2020-08-13 16:36 ` [PATCH 3/9] powerpc: Remove CONFIG_PPC601_SYNC_FIX Christophe Leroy
2020-08-13 16:36   ` Christophe Leroy
2020-08-13 16:36 ` [PATCH 4/9] powerpc: Drop SYNC_601() ISYNC_601() and SYNC() Christophe Leroy
2020-08-13 16:36   ` Christophe Leroy
2020-08-13 16:36 ` [PATCH 5/9] powerpc: Remove PowerPC 601 Christophe Leroy
2020-08-13 16:36   ` Christophe Leroy
2020-08-13 16:36 ` [PATCH 6/9] powerpc: Remove support for " Christophe Leroy
2020-08-13 16:36   ` Christophe Leroy
2020-08-13 16:36 ` [PATCH 7/9] powerpc: Tidy up a bit after removal of " Christophe Leroy
2020-08-13 16:36   ` Christophe Leroy
2020-08-13 16:36 ` [PATCH 8/9] powerpc: Remove __USE_RTC() Christophe Leroy
2020-08-13 16:36   ` Christophe Leroy
2020-08-13 16:36 ` [PATCH 9/9] powerpc: Remove get_tb_or_rtc() Christophe Leroy
2020-08-13 16:36   ` Christophe Leroy

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.