blob: 62c8768a59cec2cc391f746cfea389a2fd340863 [file] [log] [blame]
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +09001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Quick'n'dirty IP checksum ...
7 *
8 * Copyright (C) 1998, 1999 Ralf Baechle
9 * Copyright (C) 1999 Silicon Graphics, Inc.
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +010010 * Copyright (C) 2007 Maciej W. Rozycki
Markos Chandrasac852272013-12-12 16:21:00 +000011 * Copyright (C) 2014 Imagination Technologies Ltd.
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +090012 */
Atsushi Nemotof860c902006-12-13 01:22:06 +090013#include <linux/errno.h>
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +090014#include <asm/asm.h>
Atsushi Nemotof860c902006-12-13 01:22:06 +090015#include <asm/asm-offsets.h>
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +090016#include <asm/regdef.h>
17
18#ifdef CONFIG_64BIT
Atsushi Nemoto52ffe762006-12-08 01:04:31 +090019/*
20 * As we are sharing code base with the mips32 tree (which use the o32 ABI
21 * register definitions). We need to redefine the register definitions from
22 * the n64 ABI register naming to the o32 ABI register naming.
23 */
24#undef t0
25#undef t1
26#undef t2
27#undef t3
28#define t0 $8
29#define t1 $9
30#define t2 $10
31#define t3 $11
32#define t4 $12
33#define t5 $13
34#define t6 $14
35#define t7 $15
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +090036
37#define USE_DOUBLE
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +090038#endif
39
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +090040#ifdef USE_DOUBLE
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +090041
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +090042#define LOAD ld
Atsushi Nemotob80a1b82008-09-20 17:20:04 +020043#define LOAD32 lwu
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +090044#define ADD daddu
45#define NBYTES 8
46
47#else
48
49#define LOAD lw
Atsushi Nemotob80a1b82008-09-20 17:20:04 +020050#define LOAD32 lw
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +090051#define ADD addu
52#define NBYTES 4
53
54#endif /* USE_DOUBLE */
55
56#define UNIT(unit) ((unit)*NBYTES)
57
58#define ADDC(sum,reg) \
59 ADD sum, reg; \
60 sltu v1, sum, reg; \
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +010061 ADD sum, v1; \
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +090062
Atsushi Nemotob80a1b82008-09-20 17:20:04 +020063#define ADDC32(sum,reg) \
Atsushi Nemotob80a1b82008-09-20 17:20:04 +020064 addu sum, reg; \
65 sltu v1, sum, reg; \
66 addu sum, v1; \
Atsushi Nemotob80a1b82008-09-20 17:20:04 +020067
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +090068#define CSUM_BIGCHUNK1(src, offset, sum, _t0, _t1, _t2, _t3) \
69 LOAD _t0, (offset + UNIT(0))(src); \
70 LOAD _t1, (offset + UNIT(1))(src); \
Ralf Baechle70342282013-01-22 12:59:30 +010071 LOAD _t2, (offset + UNIT(2))(src); \
72 LOAD _t3, (offset + UNIT(3))(src); \
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +090073 ADDC(sum, _t0); \
74 ADDC(sum, _t1); \
75 ADDC(sum, _t2); \
76 ADDC(sum, _t3)
77
78#ifdef USE_DOUBLE
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +090079#define CSUM_BIGCHUNK(src, offset, sum, _t0, _t1, _t2, _t3) \
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +090080 CSUM_BIGCHUNK1(src, offset, sum, _t0, _t1, _t2, _t3)
81#else
82#define CSUM_BIGCHUNK(src, offset, sum, _t0, _t1, _t2, _t3) \
83 CSUM_BIGCHUNK1(src, offset, sum, _t0, _t1, _t2, _t3); \
84 CSUM_BIGCHUNK1(src, offset + 0x10, sum, _t0, _t1, _t2, _t3)
85#endif
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +090086
87/*
88 * a0: source address
89 * a1: length of the area to checksum
90 * a2: partial checksum
91 */
92
93#define src a0
94#define sum v0
95
96 .text
97 .set noreorder
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +090098 .align 5
99LEAF(csum_partial)
100 move sum, zero
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900101 move t7, zero
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900102
103 sltiu t8, a1, 0x8
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000104 bnez t8, .Lsmall_csumcpy /* < 8 bytes to copy */
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900105 move t2, a1
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900106
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900107 andi t7, src, 0x1 /* odd buffer? */
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900108
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000109.Lhword_align:
110 beqz t7, .Lword_align
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900111 andi t8, src, 0x2
112
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900113 lbu t0, (src)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900114 LONG_SUBU a1, a1, 0x1
115#ifdef __MIPSEL__
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900116 sll t0, t0, 8
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900117#endif
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900118 ADDC(sum, t0)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900119 PTR_ADDU src, src, 0x1
120 andi t8, src, 0x2
121
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000122.Lword_align:
123 beqz t8, .Ldword_align
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900124 sltiu t8, a1, 56
125
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900126 lhu t0, (src)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900127 LONG_SUBU a1, a1, 0x2
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900128 ADDC(sum, t0)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900129 sltiu t8, a1, 56
130 PTR_ADDU src, src, 0x2
131
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000132.Ldword_align:
133 bnez t8, .Ldo_end_words
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900134 move t8, a1
135
136 andi t8, src, 0x4
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000137 beqz t8, .Lqword_align
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900138 andi t8, src, 0x8
139
Atsushi Nemotob80a1b82008-09-20 17:20:04 +0200140 LOAD32 t0, 0x00(src)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900141 LONG_SUBU a1, a1, 0x4
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900142 ADDC(sum, t0)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900143 PTR_ADDU src, src, 0x4
144 andi t8, src, 0x8
145
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000146.Lqword_align:
147 beqz t8, .Loword_align
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900148 andi t8, src, 0x10
149
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +0900150#ifdef USE_DOUBLE
151 ld t0, 0x00(src)
152 LONG_SUBU a1, a1, 0x8
153 ADDC(sum, t0)
154#else
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900155 lw t0, 0x00(src)
156 lw t1, 0x04(src)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900157 LONG_SUBU a1, a1, 0x8
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900158 ADDC(sum, t0)
159 ADDC(sum, t1)
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +0900160#endif
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900161 PTR_ADDU src, src, 0x8
162 andi t8, src, 0x10
163
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000164.Loword_align:
165 beqz t8, .Lbegin_movement
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900166 LONG_SRL t8, a1, 0x7
167
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +0900168#ifdef USE_DOUBLE
169 ld t0, 0x00(src)
170 ld t1, 0x08(src)
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900171 ADDC(sum, t0)
172 ADDC(sum, t1)
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +0900173#else
174 CSUM_BIGCHUNK1(src, 0x00, sum, t0, t1, t3, t4)
175#endif
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900176 LONG_SUBU a1, a1, 0x10
177 PTR_ADDU src, src, 0x10
178 LONG_SRL t8, a1, 0x7
179
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000180.Lbegin_movement:
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900181 beqz t8, 1f
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900182 andi t2, a1, 0x40
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900183
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000184.Lmove_128bytes:
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900185 CSUM_BIGCHUNK(src, 0x00, sum, t0, t1, t3, t4)
186 CSUM_BIGCHUNK(src, 0x20, sum, t0, t1, t3, t4)
187 CSUM_BIGCHUNK(src, 0x40, sum, t0, t1, t3, t4)
188 CSUM_BIGCHUNK(src, 0x60, sum, t0, t1, t3, t4)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900189 LONG_SUBU t8, t8, 0x01
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100190 .set reorder /* DADDI_WAR */
191 PTR_ADDU src, src, 0x80
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000192 bnez t8, .Lmove_128bytes
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100193 .set noreorder
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900194
1951:
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900196 beqz t2, 1f
197 andi t2, a1, 0x20
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900198
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000199.Lmove_64bytes:
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900200 CSUM_BIGCHUNK(src, 0x00, sum, t0, t1, t3, t4)
201 CSUM_BIGCHUNK(src, 0x20, sum, t0, t1, t3, t4)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900202 PTR_ADDU src, src, 0x40
203
2041:
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000205 beqz t2, .Ldo_end_words
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900206 andi t8, a1, 0x1c
207
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000208.Lmove_32bytes:
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900209 CSUM_BIGCHUNK(src, 0x00, sum, t0, t1, t3, t4)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900210 andi t8, a1, 0x1c
211 PTR_ADDU src, src, 0x20
212
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000213.Ldo_end_words:
214 beqz t8, .Lsmall_csumcpy
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900215 andi t2, a1, 0x3
216 LONG_SRL t8, t8, 0x2
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900217
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000218.Lend_words:
Atsushi Nemotob80a1b82008-09-20 17:20:04 +0200219 LOAD32 t0, (src)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900220 LONG_SUBU t8, t8, 0x1
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900221 ADDC(sum, t0)
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100222 .set reorder /* DADDI_WAR */
223 PTR_ADDU src, src, 0x4
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000224 bnez t8, .Lend_words
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100225 .set noreorder
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900226
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900227/* unknown src alignment and < 8 bytes to go */
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000228.Lsmall_csumcpy:
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900229 move a1, t2
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900230
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900231 andi t0, a1, 4
232 beqz t0, 1f
233 andi t0, a1, 2
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900234
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900235 /* Still a full word to go */
236 ulw t1, (src)
237 PTR_ADDIU src, 4
Atsushi Nemotob80a1b82008-09-20 17:20:04 +0200238#ifdef USE_DOUBLE
239 dsll t1, t1, 32 /* clear lower 32bit */
240#endif
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900241 ADDC(sum, t1)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900242
Atsushi Nemoto773ff782006-12-08 01:04:45 +09002431: move t1, zero
244 beqz t0, 1f
245 andi t0, a1, 1
246
247 /* Still a halfword to go */
248 ulhu t1, (src)
249 PTR_ADDIU src, 2
250
2511: beqz t0, 1f
252 sll t1, t1, 16
253
254 lbu t2, (src)
255 nop
256
257#ifdef __MIPSEB__
258 sll t2, t2, 8
259#endif
260 or t1, t2
261
2621: ADDC(sum, t1)
263
264 /* fold checksum */
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +0900265#ifdef USE_DOUBLE
266 dsll32 v1, sum, 0
267 daddu sum, v1
268 sltu v1, sum, v1
269 dsra32 sum, sum, 0
270 addu sum, v1
271#endif
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900272
273 /* odd buffer alignment? */
Gabor Juhose7441092013-03-03 11:39:35 +0000274#ifdef CONFIG_CPU_MIPSR2
Ralf Baechleb65a75b2008-10-11 16:18:53 +0100275 wsbh v1, sum
276 movn sum, v1, t7
277#else
278 beqz t7, 1f /* odd buffer alignment? */
279 lui v1, 0x00ff
280 addu v1, 0x00ff
281 and t0, sum, v1
282 sll t0, t0, 8
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900283 srl sum, sum, 8
Ralf Baechleb65a75b2008-10-11 16:18:53 +0100284 and sum, sum, v1
285 or sum, sum, t0
Atsushi Nemoto773ff782006-12-08 01:04:45 +09002861:
Ralf Baechleb65a75b2008-10-11 16:18:53 +0100287#endif
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900288 .set reorder
Ralf Baechle70342282013-01-22 12:59:30 +0100289 /* Add the passed partial csum. */
Atsushi Nemotob80a1b82008-09-20 17:20:04 +0200290 ADDC32(sum, a2)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900291 jr ra
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900292 .set noreorder
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900293 END(csum_partial)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900294
295
296/*
297 * checksum and copy routines based on memcpy.S
298 *
299 * csum_partial_copy_nocheck(src, dst, len, sum)
Markos Chandrasac852272013-12-12 16:21:00 +0000300 * __csum_partial_copy_kernel(src, dst, len, sum, errp)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900301 *
Ralf Baechle70342282013-01-22 12:59:30 +0100302 * See "Spec" in memcpy.S for details. Unlike __copy_user, all
Atsushi Nemotof860c902006-12-13 01:22:06 +0900303 * function in this file use the standard calling convention.
304 */
305
306#define src a0
307#define dst a1
308#define len a2
309#define psum a3
310#define sum v0
311#define odd t8
312#define errptr t9
313
314/*
315 * The exception handler for loads requires that:
316 * 1- AT contain the address of the byte just past the end of the source
317 * of the copy,
318 * 2- src_entry <= src < AT, and
319 * 3- (dst - src) == (dst_entry - src_entry),
320 * The _entry suffix denotes values when __copy_user was called.
321 *
322 * (1) is set up up by __csum_partial_copy_from_user and maintained by
323 * not writing AT in __csum_partial_copy
324 * (2) is met by incrementing src by the number of bytes copied
325 * (3) is met by not doing loads between a pair of increments of dst and src
326 *
327 * The exception handlers for stores stores -EFAULT to errptr and return.
328 * These handlers do not need to overwrite any data.
329 */
330
Markos Chandras2ab82e62014-01-16 17:02:13 +0000331/* Instruction type */
332#define LD_INSN 1
333#define ST_INSN 2
Markos Chandrase89fb562014-01-17 10:48:46 +0000334#define LEGACY_MODE 1
335#define EVA_MODE 2
336#define USEROP 1
337#define KERNELOP 2
Markos Chandras2ab82e62014-01-16 17:02:13 +0000338
339/*
340 * Wrapper to add an entry in the exception table
341 * in case the insn causes a memory exception.
342 * Arguments:
343 * insn : Load/store instruction
344 * type : Instruction type
345 * reg : Register
346 * addr : Address
347 * handler : Exception handler
348 */
349#define EXC(insn, type, reg, addr, handler) \
Markos Chandrase89fb562014-01-17 10:48:46 +0000350 .if \mode == LEGACY_MODE; \
3519: insn reg, addr; \
352 .section __ex_table,"a"; \
353 PTR 9b, handler; \
354 .previous; \
355 .endif
Atsushi Nemotof860c902006-12-13 01:22:06 +0900356
Markos Chandras2ab82e62014-01-16 17:02:13 +0000357#undef LOAD
358
Atsushi Nemotof860c902006-12-13 01:22:06 +0900359#ifdef USE_DOUBLE
360
Markos Chandras2ab82e62014-01-16 17:02:13 +0000361#define LOADK ld /* No exception */
362#define LOAD(reg, addr, handler) EXC(ld, LD_INSN, reg, addr, handler)
363#define LOADBU(reg, addr, handler) EXC(lbu, LD_INSN, reg, addr, handler)
364#define LOADL(reg, addr, handler) EXC(ldl, LD_INSN, reg, addr, handler)
365#define LOADR(reg, addr, handler) EXC(ldr, LD_INSN, reg, addr, handler)
366#define STOREB(reg, addr, handler) EXC(sb, ST_INSN, reg, addr, handler)
367#define STOREL(reg, addr, handler) EXC(sdl, ST_INSN, reg, addr, handler)
368#define STORER(reg, addr, handler) EXC(sdr, ST_INSN, reg, addr, handler)
369#define STORE(reg, addr, handler) EXC(sd, ST_INSN, reg, addr, handler)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900370#define ADD daddu
371#define SUB dsubu
372#define SRL dsrl
373#define SLL dsll
374#define SLLV dsllv
375#define SRLV dsrlv
376#define NBYTES 8
377#define LOG_NBYTES 3
378
379#else
380
Markos Chandras2ab82e62014-01-16 17:02:13 +0000381#define LOADK lw /* No exception */
382#define LOAD(reg, addr, handler) EXC(lw, LD_INSN, reg, addr, handler)
383#define LOADBU(reg, addr, handler) EXC(lbu, LD_INSN, reg, addr, handler)
384#define LOADL(reg, addr, handler) EXC(lwl, LD_INSN, reg, addr, handler)
385#define LOADR(reg, addr, handler) EXC(lwr, LD_INSN, reg, addr, handler)
386#define STOREB(reg, addr, handler) EXC(sb, ST_INSN, reg, addr, handler)
387#define STOREL(reg, addr, handler) EXC(swl, ST_INSN, reg, addr, handler)
388#define STORER(reg, addr, handler) EXC(swr, ST_INSN, reg, addr, handler)
389#define STORE(reg, addr, handler) EXC(sw, ST_INSN, reg, addr, handler)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900390#define ADD addu
391#define SUB subu
392#define SRL srl
393#define SLL sll
394#define SLLV sllv
395#define SRLV srlv
396#define NBYTES 4
397#define LOG_NBYTES 2
398
399#endif /* USE_DOUBLE */
400
401#ifdef CONFIG_CPU_LITTLE_ENDIAN
402#define LDFIRST LOADR
Ralf Baechle70342282013-01-22 12:59:30 +0100403#define LDREST LOADL
Atsushi Nemotof860c902006-12-13 01:22:06 +0900404#define STFIRST STORER
Ralf Baechle70342282013-01-22 12:59:30 +0100405#define STREST STOREL
Atsushi Nemotof860c902006-12-13 01:22:06 +0900406#define SHIFT_DISCARD SLLV
407#define SHIFT_DISCARD_REVERT SRLV
408#else
409#define LDFIRST LOADL
Ralf Baechle70342282013-01-22 12:59:30 +0100410#define LDREST LOADR
Atsushi Nemotof860c902006-12-13 01:22:06 +0900411#define STFIRST STOREL
Ralf Baechle70342282013-01-22 12:59:30 +0100412#define STREST STORER
Atsushi Nemotof860c902006-12-13 01:22:06 +0900413#define SHIFT_DISCARD SRLV
414#define SHIFT_DISCARD_REVERT SLLV
415#endif
416
417#define FIRST(unit) ((unit)*NBYTES)
418#define REST(unit) (FIRST(unit)+NBYTES-1)
419
420#define ADDRMASK (NBYTES-1)
421
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100422#ifndef CONFIG_CPU_DADDI_WORKAROUNDS
Atsushi Nemotof860c902006-12-13 01:22:06 +0900423 .set noat
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100424#else
425 .set at=v1
426#endif
Atsushi Nemotof860c902006-12-13 01:22:06 +0900427
Markos Chandrase89fb562014-01-17 10:48:46 +0000428 .macro __BUILD_CSUM_PARTIAL_COPY_USER mode, from, to, __nocheck
429
Atsushi Nemotof860c902006-12-13 01:22:06 +0900430 PTR_ADDU AT, src, len /* See (1) above. */
Markos Chandrase89fb562014-01-17 10:48:46 +0000431 /* initialize __nocheck if this the first time we execute this
432 * macro
433 */
Atsushi Nemotof860c902006-12-13 01:22:06 +0900434#ifdef CONFIG_64BIT
435 move errptr, a4
436#else
437 lw errptr, 16(sp)
438#endif
Markos Chandrase89fb562014-01-17 10:48:46 +0000439 .if \__nocheck == 1
440 FEXPORT(csum_partial_copy_nocheck)
441 .endif
Atsushi Nemotof860c902006-12-13 01:22:06 +0900442 move sum, zero
443 move odd, zero
444 /*
445 * Note: dst & src may be unaligned, len may be 0
446 * Temps
447 */
448 /*
449 * The "issue break"s below are very approximate.
450 * Issue delays for dcache fills will perturb the schedule, as will
451 * load queue full replay traps, etc.
452 *
453 * If len < NBYTES use byte operations.
454 */
455 sltu t2, len, NBYTES
456 and t1, dst, ADDRMASK
Markos Chandrase89fb562014-01-17 10:48:46 +0000457 bnez t2, .Lcopy_bytes_checklen\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900458 and t0, src, ADDRMASK
459 andi odd, dst, 0x1 /* odd buffer? */
Markos Chandrase89fb562014-01-17 10:48:46 +0000460 bnez t1, .Ldst_unaligned\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900461 nop
Markos Chandrase89fb562014-01-17 10:48:46 +0000462 bnez t0, .Lsrc_unaligned_dst_aligned\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900463 /*
464 * use delay slot for fall-through
465 * src and dst are aligned; need to compute rem
466 */
Markos Chandrase89fb562014-01-17 10:48:46 +0000467.Lboth_aligned\@:
Ralf Baechle70342282013-01-22 12:59:30 +0100468 SRL t0, len, LOG_NBYTES+3 # +3 for 8 units/iter
Markos Chandrase89fb562014-01-17 10:48:46 +0000469 beqz t0, .Lcleanup_both_aligned\@ # len < 8*NBYTES
Atsushi Nemotof860c902006-12-13 01:22:06 +0900470 nop
471 SUB len, 8*NBYTES # subtract here for bgez loop
472 .align 4
4731:
Markos Chandrase89fb562014-01-17 10:48:46 +0000474 LOAD(t0, UNIT(0)(src), .Ll_exc\@)
475 LOAD(t1, UNIT(1)(src), .Ll_exc_copy\@)
476 LOAD(t2, UNIT(2)(src), .Ll_exc_copy\@)
477 LOAD(t3, UNIT(3)(src), .Ll_exc_copy\@)
478 LOAD(t4, UNIT(4)(src), .Ll_exc_copy\@)
479 LOAD(t5, UNIT(5)(src), .Ll_exc_copy\@)
480 LOAD(t6, UNIT(6)(src), .Ll_exc_copy\@)
481 LOAD(t7, UNIT(7)(src), .Ll_exc_copy\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900482 SUB len, len, 8*NBYTES
483 ADD src, src, 8*NBYTES
Markos Chandrase89fb562014-01-17 10:48:46 +0000484 STORE(t0, UNIT(0)(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900485 ADDC(sum, t0)
Markos Chandrase89fb562014-01-17 10:48:46 +0000486 STORE(t1, UNIT(1)(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900487 ADDC(sum, t1)
Markos Chandrase89fb562014-01-17 10:48:46 +0000488 STORE(t2, UNIT(2)(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900489 ADDC(sum, t2)
Markos Chandrase89fb562014-01-17 10:48:46 +0000490 STORE(t3, UNIT(3)(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900491 ADDC(sum, t3)
Markos Chandrase89fb562014-01-17 10:48:46 +0000492 STORE(t4, UNIT(4)(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900493 ADDC(sum, t4)
Markos Chandrase89fb562014-01-17 10:48:46 +0000494 STORE(t5, UNIT(5)(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900495 ADDC(sum, t5)
Markos Chandrase89fb562014-01-17 10:48:46 +0000496 STORE(t6, UNIT(6)(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900497 ADDC(sum, t6)
Markos Chandrase89fb562014-01-17 10:48:46 +0000498 STORE(t7, UNIT(7)(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900499 ADDC(sum, t7)
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100500 .set reorder /* DADDI_WAR */
501 ADD dst, dst, 8*NBYTES
Atsushi Nemotof860c902006-12-13 01:22:06 +0900502 bgez len, 1b
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100503 .set noreorder
Atsushi Nemotof860c902006-12-13 01:22:06 +0900504 ADD len, 8*NBYTES # revert len (see above)
505
506 /*
507 * len == the number of bytes left to copy < 8*NBYTES
508 */
Markos Chandrase89fb562014-01-17 10:48:46 +0000509.Lcleanup_both_aligned\@:
Atsushi Nemotof860c902006-12-13 01:22:06 +0900510#define rem t7
Markos Chandrase89fb562014-01-17 10:48:46 +0000511 beqz len, .Ldone\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900512 sltu t0, len, 4*NBYTES
Markos Chandrase89fb562014-01-17 10:48:46 +0000513 bnez t0, .Lless_than_4units\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900514 and rem, len, (NBYTES-1) # rem = len % NBYTES
515 /*
516 * len >= 4*NBYTES
517 */
Markos Chandrase89fb562014-01-17 10:48:46 +0000518 LOAD(t0, UNIT(0)(src), .Ll_exc\@)
519 LOAD(t1, UNIT(1)(src), .Ll_exc_copy\@)
520 LOAD(t2, UNIT(2)(src), .Ll_exc_copy\@)
521 LOAD(t3, UNIT(3)(src), .Ll_exc_copy\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900522 SUB len, len, 4*NBYTES
523 ADD src, src, 4*NBYTES
Markos Chandrase89fb562014-01-17 10:48:46 +0000524 STORE(t0, UNIT(0)(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900525 ADDC(sum, t0)
Markos Chandrase89fb562014-01-17 10:48:46 +0000526 STORE(t1, UNIT(1)(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900527 ADDC(sum, t1)
Markos Chandrase89fb562014-01-17 10:48:46 +0000528 STORE(t2, UNIT(2)(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900529 ADDC(sum, t2)
Markos Chandrase89fb562014-01-17 10:48:46 +0000530 STORE(t3, UNIT(3)(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900531 ADDC(sum, t3)
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100532 .set reorder /* DADDI_WAR */
533 ADD dst, dst, 4*NBYTES
Markos Chandrase89fb562014-01-17 10:48:46 +0000534 beqz len, .Ldone\@
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100535 .set noreorder
Markos Chandrase89fb562014-01-17 10:48:46 +0000536.Lless_than_4units\@:
Atsushi Nemotof860c902006-12-13 01:22:06 +0900537 /*
538 * rem = len % NBYTES
539 */
Markos Chandrase89fb562014-01-17 10:48:46 +0000540 beq rem, len, .Lcopy_bytes\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900541 nop
5421:
Markos Chandrase89fb562014-01-17 10:48:46 +0000543 LOAD(t0, 0(src), .Ll_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900544 ADD src, src, NBYTES
545 SUB len, len, NBYTES
Markos Chandrase89fb562014-01-17 10:48:46 +0000546 STORE(t0, 0(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900547 ADDC(sum, t0)
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100548 .set reorder /* DADDI_WAR */
549 ADD dst, dst, NBYTES
Atsushi Nemotof860c902006-12-13 01:22:06 +0900550 bne rem, len, 1b
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100551 .set noreorder
Atsushi Nemotof860c902006-12-13 01:22:06 +0900552
553 /*
554 * src and dst are aligned, need to copy rem bytes (rem < NBYTES)
555 * A loop would do only a byte at a time with possible branch
Ralf Baechle70342282013-01-22 12:59:30 +0100556 * mispredicts. Can't do an explicit LOAD dst,mask,or,STORE
Atsushi Nemotof860c902006-12-13 01:22:06 +0900557 * because can't assume read-access to dst. Instead, use
558 * STREST dst, which doesn't require read access to dst.
559 *
560 * This code should perform better than a simple loop on modern,
561 * wide-issue mips processors because the code has fewer branches and
562 * more instruction-level parallelism.
563 */
564#define bits t2
Markos Chandrase89fb562014-01-17 10:48:46 +0000565 beqz len, .Ldone\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900566 ADD t1, dst, len # t1 is just past last byte of dst
567 li bits, 8*NBYTES
568 SLL rem, len, 3 # rem = number of bits to keep
Markos Chandrase89fb562014-01-17 10:48:46 +0000569 LOAD(t0, 0(src), .Ll_exc\@)
Ralf Baechle70342282013-01-22 12:59:30 +0100570 SUB bits, bits, rem # bits = number of bits to discard
Atsushi Nemotof860c902006-12-13 01:22:06 +0900571 SHIFT_DISCARD t0, t0, bits
Markos Chandrase89fb562014-01-17 10:48:46 +0000572 STREST(t0, -1(t1), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900573 SHIFT_DISCARD_REVERT t0, t0, bits
574 .set reorder
575 ADDC(sum, t0)
Markos Chandrase89fb562014-01-17 10:48:46 +0000576 b .Ldone\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900577 .set noreorder
Markos Chandrase89fb562014-01-17 10:48:46 +0000578.Ldst_unaligned\@:
Atsushi Nemotof860c902006-12-13 01:22:06 +0900579 /*
580 * dst is unaligned
581 * t0 = src & ADDRMASK
582 * t1 = dst & ADDRMASK; T1 > 0
583 * len >= NBYTES
584 *
585 * Copy enough bytes to align dst
586 * Set match = (src and dst have same alignment)
587 */
588#define match rem
Markos Chandrase89fb562014-01-17 10:48:46 +0000589 LDFIRST(t3, FIRST(0)(src), .Ll_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900590 ADD t2, zero, NBYTES
Markos Chandrase89fb562014-01-17 10:48:46 +0000591 LDREST(t3, REST(0)(src), .Ll_exc_copy\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900592 SUB t2, t2, t1 # t2 = number of bytes copied
593 xor match, t0, t1
Markos Chandrase89fb562014-01-17 10:48:46 +0000594 STFIRST(t3, FIRST(0)(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900595 SLL t4, t1, 3 # t4 = number of bits to discard
596 SHIFT_DISCARD t3, t3, t4
597 /* no SHIFT_DISCARD_REVERT to handle odd buffer properly */
598 ADDC(sum, t3)
Markos Chandrase89fb562014-01-17 10:48:46 +0000599 beq len, t2, .Ldone\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900600 SUB len, len, t2
601 ADD dst, dst, t2
Markos Chandrase89fb562014-01-17 10:48:46 +0000602 beqz match, .Lboth_aligned\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900603 ADD src, src, t2
604
Markos Chandrase89fb562014-01-17 10:48:46 +0000605.Lsrc_unaligned_dst_aligned\@:
Ralf Baechle70342282013-01-22 12:59:30 +0100606 SRL t0, len, LOG_NBYTES+2 # +2 for 4 units/iter
Markos Chandrase89fb562014-01-17 10:48:46 +0000607 beqz t0, .Lcleanup_src_unaligned\@
Ralf Baechle70342282013-01-22 12:59:30 +0100608 and rem, len, (4*NBYTES-1) # rem = len % 4*NBYTES
Atsushi Nemotof860c902006-12-13 01:22:06 +09006091:
610/*
611 * Avoid consecutive LD*'s to the same register since some mips
612 * implementations can't issue them in the same cycle.
613 * It's OK to load FIRST(N+1) before REST(N) because the two addresses
614 * are to the same unit (unless src is aligned, but it's not).
615 */
Markos Chandrase89fb562014-01-17 10:48:46 +0000616 LDFIRST(t0, FIRST(0)(src), .Ll_exc\@)
617 LDFIRST(t1, FIRST(1)(src), .Ll_exc_copy\@)
Ralf Baechle70342282013-01-22 12:59:30 +0100618 SUB len, len, 4*NBYTES
Markos Chandrase89fb562014-01-17 10:48:46 +0000619 LDREST(t0, REST(0)(src), .Ll_exc_copy\@)
620 LDREST(t1, REST(1)(src), .Ll_exc_copy\@)
621 LDFIRST(t2, FIRST(2)(src), .Ll_exc_copy\@)
622 LDFIRST(t3, FIRST(3)(src), .Ll_exc_copy\@)
623 LDREST(t2, REST(2)(src), .Ll_exc_copy\@)
624 LDREST(t3, REST(3)(src), .Ll_exc_copy\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900625 ADD src, src, 4*NBYTES
626#ifdef CONFIG_CPU_SB1
627 nop # improves slotting
628#endif
Markos Chandrase89fb562014-01-17 10:48:46 +0000629 STORE(t0, UNIT(0)(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900630 ADDC(sum, t0)
Markos Chandrase89fb562014-01-17 10:48:46 +0000631 STORE(t1, UNIT(1)(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900632 ADDC(sum, t1)
Markos Chandrase89fb562014-01-17 10:48:46 +0000633 STORE(t2, UNIT(2)(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900634 ADDC(sum, t2)
Markos Chandrase89fb562014-01-17 10:48:46 +0000635 STORE(t3, UNIT(3)(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900636 ADDC(sum, t3)
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100637 .set reorder /* DADDI_WAR */
638 ADD dst, dst, 4*NBYTES
Atsushi Nemotof860c902006-12-13 01:22:06 +0900639 bne len, rem, 1b
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100640 .set noreorder
Atsushi Nemotof860c902006-12-13 01:22:06 +0900641
Markos Chandrase89fb562014-01-17 10:48:46 +0000642.Lcleanup_src_unaligned\@:
643 beqz len, .Ldone\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900644 and rem, len, NBYTES-1 # rem = len % NBYTES
Markos Chandrase89fb562014-01-17 10:48:46 +0000645 beq rem, len, .Lcopy_bytes\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900646 nop
6471:
Markos Chandrase89fb562014-01-17 10:48:46 +0000648 LDFIRST(t0, FIRST(0)(src), .Ll_exc\@)
649 LDREST(t0, REST(0)(src), .Ll_exc_copy\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900650 ADD src, src, NBYTES
651 SUB len, len, NBYTES
Markos Chandrase89fb562014-01-17 10:48:46 +0000652 STORE(t0, 0(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900653 ADDC(sum, t0)
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100654 .set reorder /* DADDI_WAR */
655 ADD dst, dst, NBYTES
Atsushi Nemotof860c902006-12-13 01:22:06 +0900656 bne len, rem, 1b
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100657 .set noreorder
Atsushi Nemotof860c902006-12-13 01:22:06 +0900658
Markos Chandrase89fb562014-01-17 10:48:46 +0000659.Lcopy_bytes_checklen\@:
660 beqz len, .Ldone\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900661 nop
Markos Chandrase89fb562014-01-17 10:48:46 +0000662.Lcopy_bytes\@:
Atsushi Nemotof860c902006-12-13 01:22:06 +0900663 /* 0 < len < NBYTES */
664#ifdef CONFIG_CPU_LITTLE_ENDIAN
665#define SHIFT_START 0
666#define SHIFT_INC 8
667#else
668#define SHIFT_START 8*(NBYTES-1)
669#define SHIFT_INC -8
670#endif
671 move t2, zero # partial word
Ralf Baechle70342282013-01-22 12:59:30 +0100672 li t3, SHIFT_START # shift
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000673/* use .Ll_exc_copy here to return correct sum on fault */
Atsushi Nemotof860c902006-12-13 01:22:06 +0900674#define COPY_BYTE(N) \
Markos Chandrase89fb562014-01-17 10:48:46 +0000675 LOADBU(t0, N(src), .Ll_exc_copy\@); \
Atsushi Nemotof860c902006-12-13 01:22:06 +0900676 SUB len, len, 1; \
Markos Chandrase89fb562014-01-17 10:48:46 +0000677 STOREB(t0, N(dst), .Ls_exc\@); \
Atsushi Nemotof860c902006-12-13 01:22:06 +0900678 SLLV t0, t0, t3; \
679 addu t3, SHIFT_INC; \
Markos Chandrase89fb562014-01-17 10:48:46 +0000680 beqz len, .Lcopy_bytes_done\@; \
Atsushi Nemotof860c902006-12-13 01:22:06 +0900681 or t2, t0
682
683 COPY_BYTE(0)
684 COPY_BYTE(1)
685#ifdef USE_DOUBLE
686 COPY_BYTE(2)
687 COPY_BYTE(3)
688 COPY_BYTE(4)
689 COPY_BYTE(5)
690#endif
Markos Chandrase89fb562014-01-17 10:48:46 +0000691 LOADBU(t0, NBYTES-2(src), .Ll_exc_copy\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900692 SUB len, len, 1
Markos Chandrase89fb562014-01-17 10:48:46 +0000693 STOREB(t0, NBYTES-2(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900694 SLLV t0, t0, t3
695 or t2, t0
Markos Chandrase89fb562014-01-17 10:48:46 +0000696.Lcopy_bytes_done\@:
Atsushi Nemotof860c902006-12-13 01:22:06 +0900697 ADDC(sum, t2)
Markos Chandrase89fb562014-01-17 10:48:46 +0000698.Ldone\@:
Atsushi Nemotof860c902006-12-13 01:22:06 +0900699 /* fold checksum */
700#ifdef USE_DOUBLE
701 dsll32 v1, sum, 0
702 daddu sum, v1
703 sltu v1, sum, v1
704 dsra32 sum, sum, 0
705 addu sum, v1
706#endif
Atsushi Nemotof860c902006-12-13 01:22:06 +0900707
Gabor Juhose7441092013-03-03 11:39:35 +0000708#ifdef CONFIG_CPU_MIPSR2
Ralf Baechleb65a75b2008-10-11 16:18:53 +0100709 wsbh v1, sum
710 movn sum, v1, odd
711#else
712 beqz odd, 1f /* odd buffer alignment? */
713 lui v1, 0x00ff
714 addu v1, 0x00ff
715 and t0, sum, v1
716 sll t0, t0, 8
Atsushi Nemotof860c902006-12-13 01:22:06 +0900717 srl sum, sum, 8
Ralf Baechleb65a75b2008-10-11 16:18:53 +0100718 and sum, sum, v1
719 or sum, sum, t0
Atsushi Nemotof860c902006-12-13 01:22:06 +09007201:
Ralf Baechleb65a75b2008-10-11 16:18:53 +0100721#endif
Atsushi Nemotof860c902006-12-13 01:22:06 +0900722 .set reorder
Atsushi Nemotob80a1b82008-09-20 17:20:04 +0200723 ADDC32(sum, psum)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900724 jr ra
725 .set noreorder
726
Markos Chandrase89fb562014-01-17 10:48:46 +0000727.Ll_exc_copy\@:
Atsushi Nemotof860c902006-12-13 01:22:06 +0900728 /*
729 * Copy bytes from src until faulting load address (or until a
730 * lb faults)
731 *
732 * When reached by a faulting LDFIRST/LDREST, THREAD_BUADDR($28)
733 * may be more than a byte beyond the last address.
734 * Hence, the lb below may get an exception.
735 *
736 * Assumes src < THREAD_BUADDR($28)
737 */
Markos Chandras2ab82e62014-01-16 17:02:13 +0000738 LOADK t0, TI_TASK($28)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900739 li t2, SHIFT_START
Markos Chandras2ab82e62014-01-16 17:02:13 +0000740 LOADK t0, THREAD_BUADDR(t0)
Atsushi Nemotof860c902006-12-13 01:22:06 +09007411:
Markos Chandrase89fb562014-01-17 10:48:46 +0000742 LOADBU(t1, 0(src), .Ll_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900743 ADD src, src, 1
744 sb t1, 0(dst) # can't fault -- we're copy_from_user
745 SLLV t1, t1, t2
746 addu t2, SHIFT_INC
747 ADDC(sum, t1)
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100748 .set reorder /* DADDI_WAR */
749 ADD dst, dst, 1
Atsushi Nemotof860c902006-12-13 01:22:06 +0900750 bne src, t0, 1b
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100751 .set noreorder
Markos Chandrase89fb562014-01-17 10:48:46 +0000752.Ll_exc\@:
Markos Chandras2ab82e62014-01-16 17:02:13 +0000753 LOADK t0, TI_TASK($28)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900754 nop
Markos Chandras2ab82e62014-01-16 17:02:13 +0000755 LOADK t0, THREAD_BUADDR(t0) # t0 is just past last good address
Atsushi Nemotof860c902006-12-13 01:22:06 +0900756 nop
757 SUB len, AT, t0 # len number of uncopied bytes
758 /*
759 * Here's where we rely on src and dst being incremented in tandem,
760 * See (3) above.
761 * dst += (fault addr - src) to put dst at first byte to clear
762 */
763 ADD dst, t0 # compute start address in a1
764 SUB dst, src
765 /*
766 * Clear len bytes starting at dst. Can't call __bzero because it
767 * might modify len. An inefficient loop for these rare times...
768 */
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100769 .set reorder /* DADDI_WAR */
770 SUB src, len, 1
Markos Chandrase89fb562014-01-17 10:48:46 +0000771 beqz len, .Ldone\@
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100772 .set noreorder
Atsushi Nemotof860c902006-12-13 01:22:06 +09007731: sb zero, 0(dst)
774 ADD dst, dst, 1
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100775 .set push
776 .set noat
777#ifndef CONFIG_CPU_DADDI_WORKAROUNDS
Atsushi Nemotof860c902006-12-13 01:22:06 +0900778 bnez src, 1b
779 SUB src, src, 1
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100780#else
781 li v1, 1
782 bnez src, 1b
783 SUB src, src, v1
784#endif
Atsushi Nemotof860c902006-12-13 01:22:06 +0900785 li v1, -EFAULT
Markos Chandrase89fb562014-01-17 10:48:46 +0000786 b .Ldone\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900787 sw v1, (errptr)
788
Markos Chandrase89fb562014-01-17 10:48:46 +0000789.Ls_exc\@:
Atsushi Nemotof860c902006-12-13 01:22:06 +0900790 li v0, -1 /* invalid checksum */
791 li v1, -EFAULT
792 jr ra
793 sw v1, (errptr)
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100794 .set pop
Markos Chandrase89fb562014-01-17 10:48:46 +0000795 .endm
796
797LEAF(__csum_partial_copy_kernel)
798FEXPORT(__csum_partial_copy_to_user)
799FEXPORT(__csum_partial_copy_from_user)
800__BUILD_CSUM_PARTIAL_COPY_USER LEGACY_MODE USEROP USEROP 1
801END(__csum_partial_copy_kernel)