linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] powerpc: Kconfig.cputype: Disallow TUNE_CELL on LE systems
@ 2015-09-18 14:17 Thomas Huth
  2015-09-21  7:18 ` Michael Ellerman
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Huth @ 2015-09-18 14:17 UTC (permalink / raw)
  To: Michael Ellerman, linuxppc-dev
  Cc: Benjamin Herrenschmidt, Paul Mackerras, boqun.feng

It looks somewhat weird that you can enable TUNE_CELL on little
endian systems, so let's disable this option with CPU_LITTLE_ENDIAN.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 I first thought that it might be better to make this option depend
 on PPC_CELL instead ... but I guess it's a bad idea to depend a
 CPU option on a platform option? Alternatively, would it make
 sense to make it depend on (GENERIC_CPU || CELL_CPU) instead?

 arch/powerpc/platforms/Kconfig.cputype | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/powerpc/platforms/Kconfig.cputype b/arch/powerpc/platforms/Kconfig.cputype
index c140e94..d93e131 100644
--- a/arch/powerpc/platforms/Kconfig.cputype
+++ b/arch/powerpc/platforms/Kconfig.cputype
@@ -149,7 +149,7 @@ config 6xx
 
 config TUNE_CELL
 	bool "Optimize for Cell Broadband Engine"
-	depends on PPC64 && PPC_BOOK3S
+	depends on PPC64 && PPC_BOOK3S && !CPU_LITTLE_ENDIAN
 	help
 	  Cause the compiler to optimize for the PPE of the Cell Broadband
 	  Engine. This will make the code run considerably faster on Cell
-- 
1.8.3.1

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

end of thread, other threads:[~2015-10-06 10:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-18 14:17 [PATCH] powerpc: Kconfig.cputype: Disallow TUNE_CELL on LE systems Thomas Huth
2015-09-21  7:18 ` Michael Ellerman
2015-09-21 10:07   ` Thomas Huth
2015-10-06 10:05     ` Michael Ellerman
2015-10-06 10:48       ` Thomas Huth

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).