branch.c 6.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 1996, 97, 2000, 2001 by Ralf Baechle
 * Copyright (C) 2001 MIPS Technologies, Inc.
 */
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/signal.h>
12
#include <linux/module.h>
L
Linus Torvalds 已提交
13 14 15
#include <asm/branch.h>
#include <asm/cpu.h>
#include <asm/cpu-features.h>
16
#include <asm/fpu.h>
L
Linus Torvalds 已提交
17 18 19 20
#include <asm/inst.h>
#include <asm/ptrace.h>
#include <asm/uaccess.h>

21 22 23 24 25 26 27 28 29
/**
 * __compute_return_epc_for_insn - Computes the return address and do emulate
 *				    branch simulation, if required.
 *
 * @regs:	Pointer to pt_regs
 * @insn:	branch instruction to decode
 * @returns:	-EFAULT on error and forces SIGBUS, and on success
 *		returns 0 or BRANCH_LIKELY_TAKEN as appropriate after
 *		evaluating the branch.
L
Linus Torvalds 已提交
30
 */
31 32
int __compute_return_epc_for_insn(struct pt_regs *regs,
				   union mips_instruction insn)
L
Linus Torvalds 已提交
33
{
A
Atsushi Nemoto 已提交
34
	unsigned int bit, fcr31, dspcontrol;
35 36
	long epc = regs->cp0_epc;
	int ret = 0;
L
Linus Torvalds 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59

	switch (insn.i_format.opcode) {
	/*
	 * jr and jalr are in r_format format.
	 */
	case spec_op:
		switch (insn.r_format.func) {
		case jalr_op:
			regs->regs[insn.r_format.rd] = epc + 8;
			/* Fall through */
		case jr_op:
			regs->cp0_epc = regs->regs[insn.r_format.rs];
			break;
		}
		break;

	/*
	 * This group contains:
	 * bltz_op, bgez_op, bltzl_op, bgezl_op,
	 * bltzal_op, bgezal_op, bltzall_op, bgezall_op.
	 */
	case bcond_op:
		switch (insn.i_format.rt) {
R
Ralf Baechle 已提交
60
		case bltz_op:
L
Linus Torvalds 已提交
61
		case bltzl_op:
62
			if ((long)regs->regs[insn.i_format.rs] < 0) {
L
Linus Torvalds 已提交
63
				epc = epc + 4 + (insn.i_format.simmediate << 2);
64 65 66
				if (insn.i_format.rt == bltzl_op)
					ret = BRANCH_LIKELY_TAKEN;
			} else
L
Linus Torvalds 已提交
67 68 69 70 71 72
				epc += 8;
			regs->cp0_epc = epc;
			break;

		case bgez_op:
		case bgezl_op:
73
			if ((long)regs->regs[insn.i_format.rs] >= 0) {
L
Linus Torvalds 已提交
74
				epc = epc + 4 + (insn.i_format.simmediate << 2);
75 76 77
				if (insn.i_format.rt == bgezl_op)
					ret = BRANCH_LIKELY_TAKEN;
			} else
L
Linus Torvalds 已提交
78 79 80 81 82 83 84
				epc += 8;
			regs->cp0_epc = epc;
			break;

		case bltzal_op:
		case bltzall_op:
			regs->regs[31] = epc + 8;
85
			if ((long)regs->regs[insn.i_format.rs] < 0) {
L
Linus Torvalds 已提交
86
				epc = epc + 4 + (insn.i_format.simmediate << 2);
87 88 89
				if (insn.i_format.rt == bltzall_op)
					ret = BRANCH_LIKELY_TAKEN;
			} else
L
Linus Torvalds 已提交
90 91 92 93 94 95 96
				epc += 8;
			regs->cp0_epc = epc;
			break;

		case bgezal_op:
		case bgezall_op:
			regs->regs[31] = epc + 8;
97
			if ((long)regs->regs[insn.i_format.rs] >= 0) {
L
Linus Torvalds 已提交
98
				epc = epc + 4 + (insn.i_format.simmediate << 2);
99 100 101
				if (insn.i_format.rt == bgezall_op)
					ret = BRANCH_LIKELY_TAKEN;
			} else
L
Linus Torvalds 已提交
102 103 104
				epc += 8;
			regs->cp0_epc = epc;
			break;
105

106 107 108 109 110 111 112 113 114 115 116 117
		case bposge32_op:
			if (!cpu_has_dsp)
				goto sigill;

			dspcontrol = rddsp(0x01);

			if (dspcontrol >= 32) {
				epc = epc + 4 + (insn.i_format.simmediate << 2);
			} else
				epc += 8;
			regs->cp0_epc = epc;
			break;
L
Linus Torvalds 已提交
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
		}
		break;

	/*
	 * These are unconditional and in j_format.
	 */
	case jal_op:
		regs->regs[31] = regs->cp0_epc + 8;
	case j_op:
		epc += 4;
		epc >>= 28;
		epc <<= 28;
		epc |= (insn.j_format.target << 2);
		regs->cp0_epc = epc;
		break;

	/*
	 * These are conditional and in i_format.
	 */
	case beq_op:
	case beql_op:
		if (regs->regs[insn.i_format.rs] ==
140
		    regs->regs[insn.i_format.rt]) {
L
Linus Torvalds 已提交
141
			epc = epc + 4 + (insn.i_format.simmediate << 2);
142 143 144
			if (insn.i_format.rt == beql_op)
				ret = BRANCH_LIKELY_TAKEN;
		} else
L
Linus Torvalds 已提交
145 146 147 148 149 150 151
			epc += 8;
		regs->cp0_epc = epc;
		break;

	case bne_op:
	case bnel_op:
		if (regs->regs[insn.i_format.rs] !=
152
		    regs->regs[insn.i_format.rt]) {
L
Linus Torvalds 已提交
153
			epc = epc + 4 + (insn.i_format.simmediate << 2);
154 155 156
			if (insn.i_format.rt == bnel_op)
				ret = BRANCH_LIKELY_TAKEN;
		} else
L
Linus Torvalds 已提交
157 158 159 160 161 162 163
			epc += 8;
		regs->cp0_epc = epc;
		break;

	case blez_op: /* not really i_format */
	case blezl_op:
		/* rt field assumed to be zero */
164
		if ((long)regs->regs[insn.i_format.rs] <= 0) {
L
Linus Torvalds 已提交
165
			epc = epc + 4 + (insn.i_format.simmediate << 2);
166 167 168
			if (insn.i_format.rt == bnel_op)
				ret = BRANCH_LIKELY_TAKEN;
		} else
L
Linus Torvalds 已提交
169 170 171 172 173 174 175
			epc += 8;
		regs->cp0_epc = epc;
		break;

	case bgtz_op:
	case bgtzl_op:
		/* rt field assumed to be zero */
176
		if ((long)regs->regs[insn.i_format.rs] > 0) {
L
Linus Torvalds 已提交
177
			epc = epc + 4 + (insn.i_format.simmediate << 2);
178 179 180
			if (insn.i_format.rt == bnel_op)
				ret = BRANCH_LIKELY_TAKEN;
		} else
L
Linus Torvalds 已提交
181 182 183 184 185 186 187 188
			epc += 8;
		regs->cp0_epc = epc;
		break;

	/*
	 * And now the FPA/cp1 branch instructions.
	 */
	case cop1_op:
189 190
		preempt_disable();
		if (is_fpu_owner())
L
Linus Torvalds 已提交
191
			asm volatile("cfc1\t%0,$31" : "=r" (fcr31));
192
		else
193
			fcr31 = current->thread.fpu.fcr31;
194 195
		preempt_enable();

L
Linus Torvalds 已提交
196 197 198
		bit = (insn.i_format.rt >> 2);
		bit += (bit != 0);
		bit += 23;
199
		switch (insn.i_format.rt & 3) {
R
Ralf Baechle 已提交
200 201
		case 0: /* bc1f */
		case 2: /* bc1fl */
202
			if (~fcr31 & (1 << bit)) {
L
Linus Torvalds 已提交
203
				epc = epc + 4 + (insn.i_format.simmediate << 2);
204 205 206
				if (insn.i_format.rt == 2)
					ret = BRANCH_LIKELY_TAKEN;
			} else
L
Linus Torvalds 已提交
207 208 209 210
				epc += 8;
			regs->cp0_epc = epc;
			break;

R
Ralf Baechle 已提交
211 212
		case 1: /* bc1t */
		case 3: /* bc1tl */
213
			if (fcr31 & (1 << bit)) {
L
Linus Torvalds 已提交
214
				epc = epc + 4 + (insn.i_format.simmediate << 2);
215 216 217
				if (insn.i_format.rt == 3)
					ret = BRANCH_LIKELY_TAKEN;
			} else
L
Linus Torvalds 已提交
218 219 220 221 222
				epc += 8;
			regs->cp0_epc = epc;
			break;
		}
		break;
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
#ifdef CONFIG_CPU_CAVIUM_OCTEON
	case lwc2_op: /* This is bbit0 on Octeon */
		if ((regs->regs[insn.i_format.rs] & (1ull<<insn.i_format.rt))
		     == 0)
			epc = epc + 4 + (insn.i_format.simmediate << 2);
		else
			epc += 8;
		regs->cp0_epc = epc;
		break;
	case ldc2_op: /* This is bbit032 on Octeon */
		if ((regs->regs[insn.i_format.rs] &
		    (1ull<<(insn.i_format.rt+32))) == 0)
			epc = epc + 4 + (insn.i_format.simmediate << 2);
		else
			epc += 8;
		regs->cp0_epc = epc;
		break;
	case swc2_op: /* This is bbit1 on Octeon */
		if (regs->regs[insn.i_format.rs] & (1ull<<insn.i_format.rt))
			epc = epc + 4 + (insn.i_format.simmediate << 2);
		else
			epc += 8;
		regs->cp0_epc = epc;
		break;
	case sdc2_op: /* This is bbit132 on Octeon */
		if (regs->regs[insn.i_format.rs] &
		    (1ull<<(insn.i_format.rt+32)))
			epc = epc + 4 + (insn.i_format.simmediate << 2);
		else
			epc += 8;
		regs->cp0_epc = epc;
		break;
#endif
L
Linus Torvalds 已提交
256 257
	}

258
	return ret;
L
Linus Torvalds 已提交
259

260 261
sigill:
	printk("%s: DSP branch but not DSP ASE - sending SIGBUS.\n", current->comm);
L
Linus Torvalds 已提交
262 263
	force_sig(SIGBUS, current);
	return -EFAULT;
264 265
}
EXPORT_SYMBOL_GPL(__compute_return_epc_for_insn);
266

267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
int __compute_return_epc(struct pt_regs *regs)
{
	unsigned int __user *addr;
	long epc;
	union mips_instruction insn;

	epc = regs->cp0_epc;
	if (epc & 3)
		goto unaligned;

	/*
	 * Read the instruction
	 */
	addr = (unsigned int __user *) epc;
	if (__get_user(insn.word, addr)) {
		force_sig(SIGSEGV, current);
		return -EFAULT;
	}

	return __compute_return_epc_for_insn(regs, insn);

unaligned:
	printk("%s: unaligned epc - sending SIGBUS.\n", current->comm);
290 291
	force_sig(SIGBUS, current);
	return -EFAULT;
292

L
Linus Torvalds 已提交
293
}