diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-16 14:11:31 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-16 14:11:31 -0400 |
| commit | d34e14f690d611ffe3db09e4ed8123d86c89a831 (patch) | |
| tree | dc7d6716e2550834816e29e5928a60c00c97d9fc | |
| parent | 18e41da89d55014d25b9a24502ee92b7f50599f9 (diff) | |
| parent | 4e73238d163c6fcf001264832701d2a6d4927672 (diff) | |
Merge branch 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus
* 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus:
MIPS: Oprofile: Fix Loongson irq handler
MIPS: N32: Use compat version for sys_ppoll.
MIPS FPU emulator: allow Cause bits of FCSR to be writeable by ctc1
| -rw-r--r-- | arch/mips/include/asm/mipsregs.h | 9 | ||||
| -rw-r--r-- | arch/mips/kernel/scall64-n32.S | 2 | ||||
| -rw-r--r-- | arch/mips/math-emu/cp1emu.c | 15 | ||||
| -rw-r--r-- | arch/mips/oprofile/op_model_loongson2.c | 2 |
4 files changed, 21 insertions, 7 deletions
diff --git a/arch/mips/include/asm/mipsregs.h b/arch/mips/include/asm/mipsregs.h index 49382d5e891a..c6e3c93ce7c7 100644 --- a/arch/mips/include/asm/mipsregs.h +++ b/arch/mips/include/asm/mipsregs.h | |||
| @@ -135,6 +135,12 @@ | |||
| 135 | #define FPU_CSR_COND7 0x80000000 /* $fcc7 */ | 135 | #define FPU_CSR_COND7 0x80000000 /* $fcc7 */ |
| 136 | 136 | ||
| 137 | /* | 137 | /* |
| 138 | * Bits 18 - 20 of the FPU Status Register will be read as 0, | ||
| 139 | * and should be written as zero. | ||
| 140 | */ | ||
| 141 | #define FPU_CSR_RSVD 0x001c0000 | ||
| 142 | |||
| 143 | /* | ||
| 138 | * X the exception cause indicator | 144 | * X the exception cause indicator |
| 139 | * E the exception enable | 145 | * E the exception enable |
| 140 | * S the sticky/flag bit | 146 | * S the sticky/flag bit |
| @@ -161,7 +167,8 @@ | |||
| 161 | #define FPU_CSR_UDF_S 0x00000008 | 167 | #define FPU_CSR_UDF_S 0x00000008 |
| 162 | #define FPU_CSR_INE_S 0x00000004 | 168 | #define FPU_CSR_INE_S 0x00000004 |
| 163 | 169 | ||
| 164 | /* rounding mode */ | 170 | /* Bits 0 and 1 of FPU Status Register specify the rounding mode */ |
| 171 | #define FPU_CSR_RM 0x00000003 | ||
| 165 | #define FPU_CSR_RN 0x0 /* nearest */ | 172 | #define FPU_CSR_RN 0x0 /* nearest */ |
| 166 | #define FPU_CSR_RZ 0x1 /* towards zero */ | 173 | #define FPU_CSR_RZ 0x1 /* towards zero */ |
| 167 | #define FPU_CSR_RU 0x2 /* towards +Infinity */ | 174 | #define FPU_CSR_RU 0x2 /* towards +Infinity */ |
diff --git a/arch/mips/kernel/scall64-n32.S b/arch/mips/kernel/scall64-n32.S index 44337ba03717..a5297e2a353a 100644 --- a/arch/mips/kernel/scall64-n32.S +++ b/arch/mips/kernel/scall64-n32.S | |||
| @@ -385,7 +385,7 @@ EXPORT(sysn32_call_table) | |||
| 385 | PTR sys_fchmodat | 385 | PTR sys_fchmodat |
| 386 | PTR sys_faccessat | 386 | PTR sys_faccessat |
| 387 | PTR compat_sys_pselect6 | 387 | PTR compat_sys_pselect6 |
| 388 | PTR sys_ppoll /* 6265 */ | 388 | PTR compat_sys_ppoll /* 6265 */ |
| 389 | PTR sys_unshare | 389 | PTR sys_unshare |
| 390 | PTR sys_splice | 390 | PTR sys_splice |
| 391 | PTR sys_sync_file_range | 391 | PTR sys_sync_file_range |
diff --git a/arch/mips/math-emu/cp1emu.c b/arch/mips/math-emu/cp1emu.c index 8f2f8e9d8b21..f2338d1c0b48 100644 --- a/arch/mips/math-emu/cp1emu.c +++ b/arch/mips/math-emu/cp1emu.c | |||
| @@ -78,6 +78,9 @@ DEFINE_PER_CPU(struct mips_fpu_emulator_stats, fpuemustats); | |||
| 78 | #define FPCREG_RID 0 /* $0 = revision id */ | 78 | #define FPCREG_RID 0 /* $0 = revision id */ |
| 79 | #define FPCREG_CSR 31 /* $31 = csr */ | 79 | #define FPCREG_CSR 31 /* $31 = csr */ |
| 80 | 80 | ||
| 81 | /* Determine rounding mode from the RM bits of the FCSR */ | ||
| 82 | #define modeindex(v) ((v) & FPU_CSR_RM) | ||
| 83 | |||
| 81 | /* Convert Mips rounding mode (0..3) to IEEE library modes. */ | 84 | /* Convert Mips rounding mode (0..3) to IEEE library modes. */ |
| 82 | static const unsigned char ieee_rm[4] = { | 85 | static const unsigned char ieee_rm[4] = { |
| 83 | [FPU_CSR_RN] = IEEE754_RN, | 86 | [FPU_CSR_RN] = IEEE754_RN, |
| @@ -384,10 +387,14 @@ static int cop1Emulate(struct pt_regs *xcp, struct mips_fpu_struct *ctx) | |||
| 384 | (void *) (xcp->cp0_epc), | 387 | (void *) (xcp->cp0_epc), |
| 385 | MIPSInst_RT(ir), value); | 388 | MIPSInst_RT(ir), value); |
| 386 | #endif | 389 | #endif |
| 387 | value &= (FPU_CSR_FLUSH | FPU_CSR_ALL_E | FPU_CSR_ALL_S | 0x03); | 390 | |
| 388 | ctx->fcr31 &= ~(FPU_CSR_FLUSH | FPU_CSR_ALL_E | FPU_CSR_ALL_S | 0x03); | 391 | /* |
| 389 | /* convert to ieee library modes */ | 392 | * Don't write reserved bits, |
| 390 | ctx->fcr31 |= (value & ~0x3) | ieee_rm[value & 0x3]; | 393 | * and convert to ieee library modes |
| 394 | */ | ||
| 395 | ctx->fcr31 = (value & | ||
| 396 | ~(FPU_CSR_RSVD | FPU_CSR_RM)) | | ||
| 397 | ieee_rm[modeindex(value)]; | ||
| 391 | } | 398 | } |
| 392 | if ((ctx->fcr31 >> 5) & ctx->fcr31 & FPU_CSR_ALL_E) { | 399 | if ((ctx->fcr31 >> 5) & ctx->fcr31 & FPU_CSR_ALL_E) { |
| 393 | return SIGFPE; | 400 | return SIGFPE; |
diff --git a/arch/mips/oprofile/op_model_loongson2.c b/arch/mips/oprofile/op_model_loongson2.c index 29e2326b6257..fa3bf661ae29 100644 --- a/arch/mips/oprofile/op_model_loongson2.c +++ b/arch/mips/oprofile/op_model_loongson2.c | |||
| @@ -122,7 +122,7 @@ static irqreturn_t loongson2_perfcount_handler(int irq, void *dev_id) | |||
| 122 | */ | 122 | */ |
| 123 | 123 | ||
| 124 | /* Check whether the irq belongs to me */ | 124 | /* Check whether the irq belongs to me */ |
| 125 | enabled = read_c0_perfcnt() & LOONGSON2_PERFCNT_INT_EN; | 125 | enabled = read_c0_perfctrl() & LOONGSON2_PERFCNT_INT_EN; |
| 126 | if (!enabled) | 126 | if (!enabled) |
| 127 | return IRQ_NONE; | 127 | return IRQ_NONE; |
| 128 | enabled = reg.cnt1_enabled | reg.cnt2_enabled; | 128 | enabled = reg.cnt1_enabled | reg.cnt2_enabled; |
