Linux MIPS Architecture development
 help / color / mirror / Atom feed
* [PATCH] mips: set ST0_MX flag for MDMX
@ 2012-05-03 22:40 Matt Turner
  2012-05-04 11:16 ` Sergei Shtylyov
  2012-05-09 17:20 ` Maciej W. Rozycki
  0 siblings, 2 replies; 6+ messages in thread
From: Matt Turner @ 2012-05-03 22:40 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: linux-mips, Matt Turner

As the comment in commit 3301edcb says, DSP and MDMX share the same
config flag bit.

Without this set, MDMX instructions cause Illegal instruction errors.

Signed-off-by: Matt Turner <mattst88@gmail.com>
---
Is MDMX implemented by anything other than some Broadcom CPUs? Is it
totally replaced by DSP?

I had a terrible time finding any documentation on it (which is annoying
because Volume IV-b covering MDMX is referenced by all the MIPS64 documents.)
but finally found a copy here: www.enlight.ru/docs/cpu/risc/mips/MDMXspec.pdf

If it's dead, it's too bad because it's a pretty cool ISA.

 arch/mips/kernel/traps.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c
index cfdaaa4..89ead75 100644
--- a/arch/mips/kernel/traps.c
+++ b/arch/mips/kernel/traps.c
@@ -1548,7 +1548,7 @@ void __cpuinit per_cpu_trap_init(void)
 #endif
 	if (current_cpu_data.isa_level == MIPS_CPU_ISA_IV)
 		status_set |= ST0_XX;
-	if (cpu_has_dsp)
+	if (cpu_has_dsp || cpu_has_mdmx)
 		status_set |= ST0_MX;
 
 	change_c0_status(ST0_CU|ST0_MX|ST0_RE|ST0_FR|ST0_BEV|ST0_TS|ST0_KX|ST0_SX|ST0_UX,
-- 
1.7.3.4

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

end of thread, other threads:[~2012-05-19 17:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-03 22:40 [PATCH] mips: set ST0_MX flag for MDMX Matt Turner
2012-05-04 11:16 ` Sergei Shtylyov
2012-05-05 22:22   ` Matt Turner
2012-05-09 17:20 ` Maciej W. Rozycki
2012-05-09 19:21   ` Matt Turner
2012-05-19 17:59     ` Maciej W. Rozycki

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