]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
powerpc: Set DSCR bit in FSCR setup
authorMichael Neuling <mikey@neuling.org>
Mon, 4 Mar 2013 19:45:52 +0000 (19:45 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Tue, 5 Mar 2013 05:56:30 +0000 (16:56 +1100)
We support DSCR (Data Stream Control Register) so we should make sure we set it
in the FSCR (Facility Status & Control Register) incase some firmwares don't
set it.  If we don't set this, we'll take a facility unavailable exception when
using the DSCR.

Signed-off-by: Michael Neuling <mikey@neuling.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/kernel/cpu_setup_power.S

index bb2d2034d61f0903d52faa84e016f5ac404e5739..ea847abb0d0a5fae6738c1bed0dc863d78358ded 100644 (file)
@@ -116,7 +116,7 @@ __init_LPCR:
 
 __init_FSCR:
        mfspr   r3,SPRN_FSCR
-       ori     r3,r3,FSCR_TAR
+       ori     r3,r3,FSCR_TAR|FSCR_DSCR
        mtspr   SPRN_FSCR,r3
        blr