blob: ed88647b57e26710e9a720d9b4cb9aede0def430 [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) \
Maciej W. Rozycki44ba1382014-04-04 03:32:54 +010059 .set push; \
60 .set noat; \
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +090061 ADD sum, reg; \
62 sltu v1, sum, reg; \
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +010063 ADD sum, v1; \
Maciej W. Rozycki44ba1382014-04-04 03:32:54 +010064 .set pop
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +090065
Atsushi Nemotob80a1b82008-09-20 17:20:04 +020066#define ADDC32(sum,reg) \
Maciej W. Rozycki44ba1382014-04-04 03:32:54 +010067 .set push; \
68 .set noat; \
Atsushi Nemotob80a1b82008-09-20 17:20:04 +020069 addu sum, reg; \
70 sltu v1, sum, reg; \
71 addu sum, v1; \
Maciej W. Rozycki44ba1382014-04-04 03:32:54 +010072 .set pop
Atsushi Nemotob80a1b82008-09-20 17:20:04 +020073
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +090074#define CSUM_BIGCHUNK1(src, offset, sum, _t0, _t1, _t2, _t3) \
75 LOAD _t0, (offset + UNIT(0))(src); \
76 LOAD _t1, (offset + UNIT(1))(src); \
Ralf Baechle70342282013-01-22 12:59:30 +010077 LOAD _t2, (offset + UNIT(2))(src); \
78 LOAD _t3, (offset + UNIT(3))(src); \
Chen Jie615eb602015-03-27 01:07:24 +080079 ADDC(_t0, _t1); \
80 ADDC(_t2, _t3); \
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +090081 ADDC(sum, _t0); \
Chen Jie615eb602015-03-27 01:07:24 +080082 ADDC(sum, _t2)
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +090083
84#ifdef USE_DOUBLE
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +090085#define CSUM_BIGCHUNK(src, offset, sum, _t0, _t1, _t2, _t3) \
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +090086 CSUM_BIGCHUNK1(src, offset, sum, _t0, _t1, _t2, _t3)
87#else
88#define CSUM_BIGCHUNK(src, offset, sum, _t0, _t1, _t2, _t3) \
89 CSUM_BIGCHUNK1(src, offset, sum, _t0, _t1, _t2, _t3); \
90 CSUM_BIGCHUNK1(src, offset + 0x10, sum, _t0, _t1, _t2, _t3)
91#endif
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +090092
93/*
94 * a0: source address
95 * a1: length of the area to checksum
96 * a2: partial checksum
97 */
98
99#define src a0
100#define sum v0
101
102 .text
103 .set noreorder
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900104 .align 5
105LEAF(csum_partial)
106 move sum, zero
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900107 move t7, zero
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900108
109 sltiu t8, a1, 0x8
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000110 bnez t8, .Lsmall_csumcpy /* < 8 bytes to copy */
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900111 move t2, a1
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900112
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900113 andi t7, src, 0x1 /* odd buffer? */
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900114
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000115.Lhword_align:
116 beqz t7, .Lword_align
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900117 andi t8, src, 0x2
118
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900119 lbu t0, (src)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900120 LONG_SUBU a1, a1, 0x1
121#ifdef __MIPSEL__
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900122 sll t0, t0, 8
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900123#endif
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900124 ADDC(sum, t0)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900125 PTR_ADDU src, src, 0x1
126 andi t8, src, 0x2
127
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000128.Lword_align:
129 beqz t8, .Ldword_align
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900130 sltiu t8, a1, 56
131
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900132 lhu t0, (src)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900133 LONG_SUBU a1, a1, 0x2
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900134 ADDC(sum, t0)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900135 sltiu t8, a1, 56
136 PTR_ADDU src, src, 0x2
137
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000138.Ldword_align:
139 bnez t8, .Ldo_end_words
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900140 move t8, a1
141
142 andi t8, src, 0x4
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000143 beqz t8, .Lqword_align
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900144 andi t8, src, 0x8
145
Atsushi Nemotob80a1b82008-09-20 17:20:04 +0200146 LOAD32 t0, 0x00(src)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900147 LONG_SUBU a1, a1, 0x4
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900148 ADDC(sum, t0)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900149 PTR_ADDU src, src, 0x4
150 andi t8, src, 0x8
151
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000152.Lqword_align:
153 beqz t8, .Loword_align
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900154 andi t8, src, 0x10
155
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +0900156#ifdef USE_DOUBLE
157 ld t0, 0x00(src)
158 LONG_SUBU a1, a1, 0x8
159 ADDC(sum, t0)
160#else
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900161 lw t0, 0x00(src)
162 lw t1, 0x04(src)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900163 LONG_SUBU a1, a1, 0x8
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900164 ADDC(sum, t0)
165 ADDC(sum, t1)
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +0900166#endif
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900167 PTR_ADDU src, src, 0x8
168 andi t8, src, 0x10
169
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000170.Loword_align:
171 beqz t8, .Lbegin_movement
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900172 LONG_SRL t8, a1, 0x7
173
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +0900174#ifdef USE_DOUBLE
175 ld t0, 0x00(src)
176 ld t1, 0x08(src)
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900177 ADDC(sum, t0)
178 ADDC(sum, t1)
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +0900179#else
180 CSUM_BIGCHUNK1(src, 0x00, sum, t0, t1, t3, t4)
181#endif
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900182 LONG_SUBU a1, a1, 0x10
183 PTR_ADDU src, src, 0x10
184 LONG_SRL t8, a1, 0x7
185
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000186.Lbegin_movement:
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900187 beqz t8, 1f
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900188 andi t2, a1, 0x40
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900189
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000190.Lmove_128bytes:
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900191 CSUM_BIGCHUNK(src, 0x00, sum, t0, t1, t3, t4)
192 CSUM_BIGCHUNK(src, 0x20, sum, t0, t1, t3, t4)
193 CSUM_BIGCHUNK(src, 0x40, sum, t0, t1, t3, t4)
194 CSUM_BIGCHUNK(src, 0x60, sum, t0, t1, t3, t4)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900195 LONG_SUBU t8, t8, 0x01
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100196 .set reorder /* DADDI_WAR */
197 PTR_ADDU src, src, 0x80
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000198 bnez t8, .Lmove_128bytes
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100199 .set noreorder
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900200
2011:
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900202 beqz t2, 1f
203 andi t2, a1, 0x20
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900204
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000205.Lmove_64bytes:
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900206 CSUM_BIGCHUNK(src, 0x00, sum, t0, t1, t3, t4)
207 CSUM_BIGCHUNK(src, 0x20, sum, t0, t1, t3, t4)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900208 PTR_ADDU src, src, 0x40
209
2101:
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000211 beqz t2, .Ldo_end_words
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900212 andi t8, a1, 0x1c
213
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000214.Lmove_32bytes:
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900215 CSUM_BIGCHUNK(src, 0x00, sum, t0, t1, t3, t4)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900216 andi t8, a1, 0x1c
217 PTR_ADDU src, src, 0x20
218
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000219.Ldo_end_words:
220 beqz t8, .Lsmall_csumcpy
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900221 andi t2, a1, 0x3
222 LONG_SRL t8, t8, 0x2
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900223
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000224.Lend_words:
Atsushi Nemotob80a1b82008-09-20 17:20:04 +0200225 LOAD32 t0, (src)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900226 LONG_SUBU t8, t8, 0x1
Atsushi Nemoto52ffe762006-12-08 01:04:31 +0900227 ADDC(sum, t0)
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100228 .set reorder /* DADDI_WAR */
229 PTR_ADDU src, src, 0x4
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000230 bnez t8, .Lend_words
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100231 .set noreorder
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900232
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900233/* unknown src alignment and < 8 bytes to go */
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000234.Lsmall_csumcpy:
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900235 move a1, t2
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900236
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900237 andi t0, a1, 4
238 beqz t0, 1f
239 andi t0, a1, 2
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900240
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900241 /* Still a full word to go */
242 ulw t1, (src)
243 PTR_ADDIU src, 4
Atsushi Nemotob80a1b82008-09-20 17:20:04 +0200244#ifdef USE_DOUBLE
245 dsll t1, t1, 32 /* clear lower 32bit */
246#endif
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900247 ADDC(sum, t1)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900248
Atsushi Nemoto773ff782006-12-08 01:04:45 +09002491: move t1, zero
250 beqz t0, 1f
251 andi t0, a1, 1
252
253 /* Still a halfword to go */
254 ulhu t1, (src)
255 PTR_ADDIU src, 2
256
2571: beqz t0, 1f
258 sll t1, t1, 16
259
260 lbu t2, (src)
261 nop
262
263#ifdef __MIPSEB__
264 sll t2, t2, 8
265#endif
266 or t1, t2
267
2681: ADDC(sum, t1)
269
270 /* fold checksum */
Atsushi Nemotoed99e2b2006-12-08 01:04:51 +0900271#ifdef USE_DOUBLE
272 dsll32 v1, sum, 0
273 daddu sum, v1
274 sltu v1, sum, v1
275 dsra32 sum, sum, 0
276 addu sum, v1
277#endif
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900278
279 /* odd buffer alignment? */
Chen Jie3c09bae2014-08-15 16:56:58 +0800280#if defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_LOONGSON3)
281 .set push
282 .set arch=mips32r2
Ralf Baechleb65a75b2008-10-11 16:18:53 +0100283 wsbh v1, sum
284 movn sum, v1, t7
Chen Jie3c09bae2014-08-15 16:56:58 +0800285 .set pop
Ralf Baechleb65a75b2008-10-11 16:18:53 +0100286#else
287 beqz t7, 1f /* odd buffer alignment? */
288 lui v1, 0x00ff
289 addu v1, 0x00ff
290 and t0, sum, v1
291 sll t0, t0, 8
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900292 srl sum, sum, 8
Ralf Baechleb65a75b2008-10-11 16:18:53 +0100293 and sum, sum, v1
294 or sum, sum, t0
Atsushi Nemoto773ff782006-12-08 01:04:45 +09002951:
Ralf Baechleb65a75b2008-10-11 16:18:53 +0100296#endif
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900297 .set reorder
Ralf Baechle70342282013-01-22 12:59:30 +0100298 /* Add the passed partial csum. */
Atsushi Nemotob80a1b82008-09-20 17:20:04 +0200299 ADDC32(sum, a2)
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900300 jr ra
Atsushi Nemoto773ff782006-12-08 01:04:45 +0900301 .set noreorder
Atsushi Nemoto0bcdda02006-12-04 00:42:59 +0900302 END(csum_partial)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900303
304
305/*
306 * checksum and copy routines based on memcpy.S
307 *
308 * csum_partial_copy_nocheck(src, dst, len, sum)
Markos Chandrasac852272013-12-12 16:21:00 +0000309 * __csum_partial_copy_kernel(src, dst, len, sum, errp)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900310 *
Ralf Baechle70342282013-01-22 12:59:30 +0100311 * See "Spec" in memcpy.S for details. Unlike __copy_user, all
Atsushi Nemotof860c902006-12-13 01:22:06 +0900312 * function in this file use the standard calling convention.
313 */
314
315#define src a0
316#define dst a1
317#define len a2
318#define psum a3
319#define sum v0
320#define odd t8
321#define errptr t9
322
323/*
324 * The exception handler for loads requires that:
325 * 1- AT contain the address of the byte just past the end of the source
326 * of the copy,
327 * 2- src_entry <= src < AT, and
328 * 3- (dst - src) == (dst_entry - src_entry),
329 * The _entry suffix denotes values when __copy_user was called.
330 *
331 * (1) is set up up by __csum_partial_copy_from_user and maintained by
332 * not writing AT in __csum_partial_copy
333 * (2) is met by incrementing src by the number of bytes copied
334 * (3) is met by not doing loads between a pair of increments of dst and src
335 *
336 * The exception handlers for stores stores -EFAULT to errptr and return.
337 * These handlers do not need to overwrite any data.
338 */
339
Markos Chandras2ab82e62014-01-16 17:02:13 +0000340/* Instruction type */
341#define LD_INSN 1
342#define ST_INSN 2
Markos Chandrase89fb562014-01-17 10:48:46 +0000343#define LEGACY_MODE 1
344#define EVA_MODE 2
345#define USEROP 1
346#define KERNELOP 2
Markos Chandras2ab82e62014-01-16 17:02:13 +0000347
348/*
349 * Wrapper to add an entry in the exception table
350 * in case the insn causes a memory exception.
351 * Arguments:
352 * insn : Load/store instruction
353 * type : Instruction type
354 * reg : Register
355 * addr : Address
356 * handler : Exception handler
357 */
358#define EXC(insn, type, reg, addr, handler) \
Markos Chandrase89fb562014-01-17 10:48:46 +0000359 .if \mode == LEGACY_MODE; \
3609: insn reg, addr; \
361 .section __ex_table,"a"; \
362 PTR 9b, handler; \
363 .previous; \
Markos Chandras6f85ceb2014-01-17 11:36:16 +0000364 /* This is enabled in EVA mode */ \
365 .else; \
366 /* If loading from user or storing to user */ \
367 .if ((\from == USEROP) && (type == LD_INSN)) || \
368 ((\to == USEROP) && (type == ST_INSN)); \
3699: __BUILD_EVA_INSN(insn##e, reg, addr); \
370 .section __ex_table,"a"; \
371 PTR 9b, handler; \
372 .previous; \
373 .else; \
374 /* EVA without exception */ \
375 insn reg, addr; \
376 .endif; \
Markos Chandrase89fb562014-01-17 10:48:46 +0000377 .endif
Atsushi Nemotof860c902006-12-13 01:22:06 +0900378
Markos Chandras2ab82e62014-01-16 17:02:13 +0000379#undef LOAD
380
Atsushi Nemotof860c902006-12-13 01:22:06 +0900381#ifdef USE_DOUBLE
382
Markos Chandras2ab82e62014-01-16 17:02:13 +0000383#define LOADK ld /* No exception */
384#define LOAD(reg, addr, handler) EXC(ld, LD_INSN, reg, addr, handler)
385#define LOADBU(reg, addr, handler) EXC(lbu, LD_INSN, reg, addr, handler)
386#define LOADL(reg, addr, handler) EXC(ldl, LD_INSN, reg, addr, handler)
387#define LOADR(reg, addr, handler) EXC(ldr, LD_INSN, reg, addr, handler)
388#define STOREB(reg, addr, handler) EXC(sb, ST_INSN, reg, addr, handler)
389#define STOREL(reg, addr, handler) EXC(sdl, ST_INSN, reg, addr, handler)
390#define STORER(reg, addr, handler) EXC(sdr, ST_INSN, reg, addr, handler)
391#define STORE(reg, addr, handler) EXC(sd, ST_INSN, reg, addr, handler)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900392#define ADD daddu
393#define SUB dsubu
394#define SRL dsrl
395#define SLL dsll
396#define SLLV dsllv
397#define SRLV dsrlv
398#define NBYTES 8
399#define LOG_NBYTES 3
400
401#else
402
Markos Chandras2ab82e62014-01-16 17:02:13 +0000403#define LOADK lw /* No exception */
404#define LOAD(reg, addr, handler) EXC(lw, LD_INSN, reg, addr, handler)
405#define LOADBU(reg, addr, handler) EXC(lbu, LD_INSN, reg, addr, handler)
406#define LOADL(reg, addr, handler) EXC(lwl, LD_INSN, reg, addr, handler)
407#define LOADR(reg, addr, handler) EXC(lwr, LD_INSN, reg, addr, handler)
408#define STOREB(reg, addr, handler) EXC(sb, ST_INSN, reg, addr, handler)
409#define STOREL(reg, addr, handler) EXC(swl, ST_INSN, reg, addr, handler)
410#define STORER(reg, addr, handler) EXC(swr, ST_INSN, reg, addr, handler)
411#define STORE(reg, addr, handler) EXC(sw, ST_INSN, reg, addr, handler)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900412#define ADD addu
413#define SUB subu
414#define SRL srl
415#define SLL sll
416#define SLLV sllv
417#define SRLV srlv
418#define NBYTES 4
419#define LOG_NBYTES 2
420
421#endif /* USE_DOUBLE */
422
423#ifdef CONFIG_CPU_LITTLE_ENDIAN
424#define LDFIRST LOADR
Ralf Baechle70342282013-01-22 12:59:30 +0100425#define LDREST LOADL
Atsushi Nemotof860c902006-12-13 01:22:06 +0900426#define STFIRST STORER
Ralf Baechle70342282013-01-22 12:59:30 +0100427#define STREST STOREL
Atsushi Nemotof860c902006-12-13 01:22:06 +0900428#define SHIFT_DISCARD SLLV
429#define SHIFT_DISCARD_REVERT SRLV
430#else
431#define LDFIRST LOADL
Ralf Baechle70342282013-01-22 12:59:30 +0100432#define LDREST LOADR
Atsushi Nemotof860c902006-12-13 01:22:06 +0900433#define STFIRST STOREL
Ralf Baechle70342282013-01-22 12:59:30 +0100434#define STREST STORER
Atsushi Nemotof860c902006-12-13 01:22:06 +0900435#define SHIFT_DISCARD SRLV
436#define SHIFT_DISCARD_REVERT SLLV
437#endif
438
439#define FIRST(unit) ((unit)*NBYTES)
440#define REST(unit) (FIRST(unit)+NBYTES-1)
441
442#define ADDRMASK (NBYTES-1)
443
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100444#ifndef CONFIG_CPU_DADDI_WORKAROUNDS
Atsushi Nemotof860c902006-12-13 01:22:06 +0900445 .set noat
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100446#else
447 .set at=v1
448#endif
Atsushi Nemotof860c902006-12-13 01:22:06 +0900449
Markos Chandrase89fb562014-01-17 10:48:46 +0000450 .macro __BUILD_CSUM_PARTIAL_COPY_USER mode, from, to, __nocheck
451
Atsushi Nemotof860c902006-12-13 01:22:06 +0900452 PTR_ADDU AT, src, len /* See (1) above. */
Markos Chandrase89fb562014-01-17 10:48:46 +0000453 /* initialize __nocheck if this the first time we execute this
454 * macro
455 */
Atsushi Nemotof860c902006-12-13 01:22:06 +0900456#ifdef CONFIG_64BIT
457 move errptr, a4
458#else
459 lw errptr, 16(sp)
460#endif
Markos Chandrase89fb562014-01-17 10:48:46 +0000461 .if \__nocheck == 1
462 FEXPORT(csum_partial_copy_nocheck)
463 .endif
Atsushi Nemotof860c902006-12-13 01:22:06 +0900464 move sum, zero
465 move odd, zero
466 /*
467 * Note: dst & src may be unaligned, len may be 0
468 * Temps
469 */
470 /*
471 * The "issue break"s below are very approximate.
472 * Issue delays for dcache fills will perturb the schedule, as will
473 * load queue full replay traps, etc.
474 *
475 * If len < NBYTES use byte operations.
476 */
477 sltu t2, len, NBYTES
478 and t1, dst, ADDRMASK
Markos Chandrase89fb562014-01-17 10:48:46 +0000479 bnez t2, .Lcopy_bytes_checklen\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900480 and t0, src, ADDRMASK
481 andi odd, dst, 0x1 /* odd buffer? */
Markos Chandrase89fb562014-01-17 10:48:46 +0000482 bnez t1, .Ldst_unaligned\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900483 nop
Markos Chandrase89fb562014-01-17 10:48:46 +0000484 bnez t0, .Lsrc_unaligned_dst_aligned\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900485 /*
486 * use delay slot for fall-through
487 * src and dst are aligned; need to compute rem
488 */
Markos Chandrase89fb562014-01-17 10:48:46 +0000489.Lboth_aligned\@:
Ralf Baechle70342282013-01-22 12:59:30 +0100490 SRL t0, len, LOG_NBYTES+3 # +3 for 8 units/iter
Markos Chandrase89fb562014-01-17 10:48:46 +0000491 beqz t0, .Lcleanup_both_aligned\@ # len < 8*NBYTES
Atsushi Nemotof860c902006-12-13 01:22:06 +0900492 nop
493 SUB len, 8*NBYTES # subtract here for bgez loop
494 .align 4
4951:
Markos Chandrase89fb562014-01-17 10:48:46 +0000496 LOAD(t0, UNIT(0)(src), .Ll_exc\@)
497 LOAD(t1, UNIT(1)(src), .Ll_exc_copy\@)
498 LOAD(t2, UNIT(2)(src), .Ll_exc_copy\@)
499 LOAD(t3, UNIT(3)(src), .Ll_exc_copy\@)
500 LOAD(t4, UNIT(4)(src), .Ll_exc_copy\@)
501 LOAD(t5, UNIT(5)(src), .Ll_exc_copy\@)
502 LOAD(t6, UNIT(6)(src), .Ll_exc_copy\@)
503 LOAD(t7, UNIT(7)(src), .Ll_exc_copy\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900504 SUB len, len, 8*NBYTES
505 ADD src, src, 8*NBYTES
Markos Chandrase89fb562014-01-17 10:48:46 +0000506 STORE(t0, UNIT(0)(dst), .Ls_exc\@)
Chen Jie615eb602015-03-27 01:07:24 +0800507 ADDC(t0, t1)
Markos Chandrase89fb562014-01-17 10:48:46 +0000508 STORE(t1, UNIT(1)(dst), .Ls_exc\@)
Chen Jie615eb602015-03-27 01:07:24 +0800509 ADDC(sum, t0)
Markos Chandrase89fb562014-01-17 10:48:46 +0000510 STORE(t2, UNIT(2)(dst), .Ls_exc\@)
Chen Jie615eb602015-03-27 01:07:24 +0800511 ADDC(t2, t3)
Markos Chandrase89fb562014-01-17 10:48:46 +0000512 STORE(t3, UNIT(3)(dst), .Ls_exc\@)
Chen Jie615eb602015-03-27 01:07:24 +0800513 ADDC(sum, t2)
Markos Chandrase89fb562014-01-17 10:48:46 +0000514 STORE(t4, UNIT(4)(dst), .Ls_exc\@)
Chen Jie615eb602015-03-27 01:07:24 +0800515 ADDC(t4, t5)
Markos Chandrase89fb562014-01-17 10:48:46 +0000516 STORE(t5, UNIT(5)(dst), .Ls_exc\@)
Chen Jie615eb602015-03-27 01:07:24 +0800517 ADDC(sum, t4)
Markos Chandrase89fb562014-01-17 10:48:46 +0000518 STORE(t6, UNIT(6)(dst), .Ls_exc\@)
Chen Jie615eb602015-03-27 01:07:24 +0800519 ADDC(t6, t7)
Markos Chandrase89fb562014-01-17 10:48:46 +0000520 STORE(t7, UNIT(7)(dst), .Ls_exc\@)
Chen Jie615eb602015-03-27 01:07:24 +0800521 ADDC(sum, t6)
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100522 .set reorder /* DADDI_WAR */
523 ADD dst, dst, 8*NBYTES
Atsushi Nemotof860c902006-12-13 01:22:06 +0900524 bgez len, 1b
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100525 .set noreorder
Atsushi Nemotof860c902006-12-13 01:22:06 +0900526 ADD len, 8*NBYTES # revert len (see above)
527
528 /*
529 * len == the number of bytes left to copy < 8*NBYTES
530 */
Markos Chandrase89fb562014-01-17 10:48:46 +0000531.Lcleanup_both_aligned\@:
Atsushi Nemotof860c902006-12-13 01:22:06 +0900532#define rem t7
Markos Chandrase89fb562014-01-17 10:48:46 +0000533 beqz len, .Ldone\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900534 sltu t0, len, 4*NBYTES
Markos Chandrase89fb562014-01-17 10:48:46 +0000535 bnez t0, .Lless_than_4units\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900536 and rem, len, (NBYTES-1) # rem = len % NBYTES
537 /*
538 * len >= 4*NBYTES
539 */
Markos Chandrase89fb562014-01-17 10:48:46 +0000540 LOAD(t0, UNIT(0)(src), .Ll_exc\@)
541 LOAD(t1, UNIT(1)(src), .Ll_exc_copy\@)
542 LOAD(t2, UNIT(2)(src), .Ll_exc_copy\@)
543 LOAD(t3, UNIT(3)(src), .Ll_exc_copy\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900544 SUB len, len, 4*NBYTES
545 ADD src, src, 4*NBYTES
Markos Chandrase89fb562014-01-17 10:48:46 +0000546 STORE(t0, UNIT(0)(dst), .Ls_exc\@)
Chen Jie615eb602015-03-27 01:07:24 +0800547 ADDC(t0, t1)
Markos Chandrase89fb562014-01-17 10:48:46 +0000548 STORE(t1, UNIT(1)(dst), .Ls_exc\@)
Chen Jie615eb602015-03-27 01:07:24 +0800549 ADDC(sum, t0)
Markos Chandrase89fb562014-01-17 10:48:46 +0000550 STORE(t2, UNIT(2)(dst), .Ls_exc\@)
Chen Jie615eb602015-03-27 01:07:24 +0800551 ADDC(t2, t3)
Markos Chandrase89fb562014-01-17 10:48:46 +0000552 STORE(t3, UNIT(3)(dst), .Ls_exc\@)
Chen Jie615eb602015-03-27 01:07:24 +0800553 ADDC(sum, t2)
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100554 .set reorder /* DADDI_WAR */
555 ADD dst, dst, 4*NBYTES
Markos Chandrase89fb562014-01-17 10:48:46 +0000556 beqz len, .Ldone\@
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100557 .set noreorder
Markos Chandrase89fb562014-01-17 10:48:46 +0000558.Lless_than_4units\@:
Atsushi Nemotof860c902006-12-13 01:22:06 +0900559 /*
560 * rem = len % NBYTES
561 */
Markos Chandrase89fb562014-01-17 10:48:46 +0000562 beq rem, len, .Lcopy_bytes\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900563 nop
5641:
Markos Chandrase89fb562014-01-17 10:48:46 +0000565 LOAD(t0, 0(src), .Ll_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900566 ADD src, src, NBYTES
567 SUB len, len, NBYTES
Markos Chandrase89fb562014-01-17 10:48:46 +0000568 STORE(t0, 0(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900569 ADDC(sum, t0)
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100570 .set reorder /* DADDI_WAR */
571 ADD dst, dst, NBYTES
Atsushi Nemotof860c902006-12-13 01:22:06 +0900572 bne rem, len, 1b
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100573 .set noreorder
Atsushi Nemotof860c902006-12-13 01:22:06 +0900574
575 /*
576 * src and dst are aligned, need to copy rem bytes (rem < NBYTES)
577 * A loop would do only a byte at a time with possible branch
Ralf Baechle70342282013-01-22 12:59:30 +0100578 * mispredicts. Can't do an explicit LOAD dst,mask,or,STORE
Atsushi Nemotof860c902006-12-13 01:22:06 +0900579 * because can't assume read-access to dst. Instead, use
580 * STREST dst, which doesn't require read access to dst.
581 *
582 * This code should perform better than a simple loop on modern,
583 * wide-issue mips processors because the code has fewer branches and
584 * more instruction-level parallelism.
585 */
586#define bits t2
Markos Chandrase89fb562014-01-17 10:48:46 +0000587 beqz len, .Ldone\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900588 ADD t1, dst, len # t1 is just past last byte of dst
589 li bits, 8*NBYTES
590 SLL rem, len, 3 # rem = number of bits to keep
Markos Chandrase89fb562014-01-17 10:48:46 +0000591 LOAD(t0, 0(src), .Ll_exc\@)
Ralf Baechle70342282013-01-22 12:59:30 +0100592 SUB bits, bits, rem # bits = number of bits to discard
Atsushi Nemotof860c902006-12-13 01:22:06 +0900593 SHIFT_DISCARD t0, t0, bits
Markos Chandrase89fb562014-01-17 10:48:46 +0000594 STREST(t0, -1(t1), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900595 SHIFT_DISCARD_REVERT t0, t0, bits
596 .set reorder
597 ADDC(sum, t0)
Markos Chandrase89fb562014-01-17 10:48:46 +0000598 b .Ldone\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900599 .set noreorder
Markos Chandrase89fb562014-01-17 10:48:46 +0000600.Ldst_unaligned\@:
Atsushi Nemotof860c902006-12-13 01:22:06 +0900601 /*
602 * dst is unaligned
603 * t0 = src & ADDRMASK
604 * t1 = dst & ADDRMASK; T1 > 0
605 * len >= NBYTES
606 *
607 * Copy enough bytes to align dst
608 * Set match = (src and dst have same alignment)
609 */
610#define match rem
Markos Chandrase89fb562014-01-17 10:48:46 +0000611 LDFIRST(t3, FIRST(0)(src), .Ll_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900612 ADD t2, zero, NBYTES
Markos Chandrase89fb562014-01-17 10:48:46 +0000613 LDREST(t3, REST(0)(src), .Ll_exc_copy\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900614 SUB t2, t2, t1 # t2 = number of bytes copied
615 xor match, t0, t1
Markos Chandrase89fb562014-01-17 10:48:46 +0000616 STFIRST(t3, FIRST(0)(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900617 SLL t4, t1, 3 # t4 = number of bits to discard
618 SHIFT_DISCARD t3, t3, t4
619 /* no SHIFT_DISCARD_REVERT to handle odd buffer properly */
620 ADDC(sum, t3)
Markos Chandrase89fb562014-01-17 10:48:46 +0000621 beq len, t2, .Ldone\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900622 SUB len, len, t2
623 ADD dst, dst, t2
Markos Chandrase89fb562014-01-17 10:48:46 +0000624 beqz match, .Lboth_aligned\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900625 ADD src, src, t2
626
Markos Chandrase89fb562014-01-17 10:48:46 +0000627.Lsrc_unaligned_dst_aligned\@:
Ralf Baechle70342282013-01-22 12:59:30 +0100628 SRL t0, len, LOG_NBYTES+2 # +2 for 4 units/iter
Markos Chandrase89fb562014-01-17 10:48:46 +0000629 beqz t0, .Lcleanup_src_unaligned\@
Ralf Baechle70342282013-01-22 12:59:30 +0100630 and rem, len, (4*NBYTES-1) # rem = len % 4*NBYTES
Atsushi Nemotof860c902006-12-13 01:22:06 +09006311:
632/*
633 * Avoid consecutive LD*'s to the same register since some mips
634 * implementations can't issue them in the same cycle.
635 * It's OK to load FIRST(N+1) before REST(N) because the two addresses
636 * are to the same unit (unless src is aligned, but it's not).
637 */
Markos Chandrase89fb562014-01-17 10:48:46 +0000638 LDFIRST(t0, FIRST(0)(src), .Ll_exc\@)
639 LDFIRST(t1, FIRST(1)(src), .Ll_exc_copy\@)
Ralf Baechle70342282013-01-22 12:59:30 +0100640 SUB len, len, 4*NBYTES
Markos Chandrase89fb562014-01-17 10:48:46 +0000641 LDREST(t0, REST(0)(src), .Ll_exc_copy\@)
642 LDREST(t1, REST(1)(src), .Ll_exc_copy\@)
643 LDFIRST(t2, FIRST(2)(src), .Ll_exc_copy\@)
644 LDFIRST(t3, FIRST(3)(src), .Ll_exc_copy\@)
645 LDREST(t2, REST(2)(src), .Ll_exc_copy\@)
646 LDREST(t3, REST(3)(src), .Ll_exc_copy\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900647 ADD src, src, 4*NBYTES
648#ifdef CONFIG_CPU_SB1
649 nop # improves slotting
650#endif
Markos Chandrase89fb562014-01-17 10:48:46 +0000651 STORE(t0, UNIT(0)(dst), .Ls_exc\@)
Chen Jie615eb602015-03-27 01:07:24 +0800652 ADDC(t0, t1)
Markos Chandrase89fb562014-01-17 10:48:46 +0000653 STORE(t1, UNIT(1)(dst), .Ls_exc\@)
Chen Jie615eb602015-03-27 01:07:24 +0800654 ADDC(sum, t0)
Markos Chandrase89fb562014-01-17 10:48:46 +0000655 STORE(t2, UNIT(2)(dst), .Ls_exc\@)
Chen Jie615eb602015-03-27 01:07:24 +0800656 ADDC(t2, t3)
Markos Chandrase89fb562014-01-17 10:48:46 +0000657 STORE(t3, UNIT(3)(dst), .Ls_exc\@)
Chen Jie615eb602015-03-27 01:07:24 +0800658 ADDC(sum, t2)
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100659 .set reorder /* DADDI_WAR */
660 ADD dst, dst, 4*NBYTES
Atsushi Nemotof860c902006-12-13 01:22:06 +0900661 bne len, rem, 1b
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100662 .set noreorder
Atsushi Nemotof860c902006-12-13 01:22:06 +0900663
Markos Chandrase89fb562014-01-17 10:48:46 +0000664.Lcleanup_src_unaligned\@:
665 beqz len, .Ldone\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900666 and rem, len, NBYTES-1 # rem = len % NBYTES
Markos Chandrase89fb562014-01-17 10:48:46 +0000667 beq rem, len, .Lcopy_bytes\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900668 nop
6691:
Markos Chandrase89fb562014-01-17 10:48:46 +0000670 LDFIRST(t0, FIRST(0)(src), .Ll_exc\@)
671 LDREST(t0, REST(0)(src), .Ll_exc_copy\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900672 ADD src, src, NBYTES
673 SUB len, len, NBYTES
Markos Chandrase89fb562014-01-17 10:48:46 +0000674 STORE(t0, 0(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900675 ADDC(sum, t0)
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100676 .set reorder /* DADDI_WAR */
677 ADD dst, dst, NBYTES
Atsushi Nemotof860c902006-12-13 01:22:06 +0900678 bne len, rem, 1b
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100679 .set noreorder
Atsushi Nemotof860c902006-12-13 01:22:06 +0900680
Markos Chandrase89fb562014-01-17 10:48:46 +0000681.Lcopy_bytes_checklen\@:
682 beqz len, .Ldone\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900683 nop
Markos Chandrase89fb562014-01-17 10:48:46 +0000684.Lcopy_bytes\@:
Atsushi Nemotof860c902006-12-13 01:22:06 +0900685 /* 0 < len < NBYTES */
686#ifdef CONFIG_CPU_LITTLE_ENDIAN
687#define SHIFT_START 0
688#define SHIFT_INC 8
689#else
690#define SHIFT_START 8*(NBYTES-1)
691#define SHIFT_INC -8
692#endif
693 move t2, zero # partial word
Ralf Baechle70342282013-01-22 12:59:30 +0100694 li t3, SHIFT_START # shift
Ralf Baechlec5ec1982008-01-29 10:14:59 +0000695/* use .Ll_exc_copy here to return correct sum on fault */
Atsushi Nemotof860c902006-12-13 01:22:06 +0900696#define COPY_BYTE(N) \
Markos Chandrase89fb562014-01-17 10:48:46 +0000697 LOADBU(t0, N(src), .Ll_exc_copy\@); \
Atsushi Nemotof860c902006-12-13 01:22:06 +0900698 SUB len, len, 1; \
Markos Chandrase89fb562014-01-17 10:48:46 +0000699 STOREB(t0, N(dst), .Ls_exc\@); \
Atsushi Nemotof860c902006-12-13 01:22:06 +0900700 SLLV t0, t0, t3; \
701 addu t3, SHIFT_INC; \
Markos Chandrase89fb562014-01-17 10:48:46 +0000702 beqz len, .Lcopy_bytes_done\@; \
Atsushi Nemotof860c902006-12-13 01:22:06 +0900703 or t2, t0
704
705 COPY_BYTE(0)
706 COPY_BYTE(1)
707#ifdef USE_DOUBLE
708 COPY_BYTE(2)
709 COPY_BYTE(3)
710 COPY_BYTE(4)
711 COPY_BYTE(5)
712#endif
Markos Chandrase89fb562014-01-17 10:48:46 +0000713 LOADBU(t0, NBYTES-2(src), .Ll_exc_copy\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900714 SUB len, len, 1
Markos Chandrase89fb562014-01-17 10:48:46 +0000715 STOREB(t0, NBYTES-2(dst), .Ls_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900716 SLLV t0, t0, t3
717 or t2, t0
Markos Chandrase89fb562014-01-17 10:48:46 +0000718.Lcopy_bytes_done\@:
Atsushi Nemotof860c902006-12-13 01:22:06 +0900719 ADDC(sum, t2)
Markos Chandrase89fb562014-01-17 10:48:46 +0000720.Ldone\@:
Atsushi Nemotof860c902006-12-13 01:22:06 +0900721 /* fold checksum */
Maciej W. Rozycki44ba1382014-04-04 03:32:54 +0100722 .set push
723 .set noat
Atsushi Nemotof860c902006-12-13 01:22:06 +0900724#ifdef USE_DOUBLE
725 dsll32 v1, sum, 0
726 daddu sum, v1
727 sltu v1, sum, v1
728 dsra32 sum, sum, 0
729 addu sum, v1
730#endif
Atsushi Nemotof860c902006-12-13 01:22:06 +0900731
Chen Jie3c09bae2014-08-15 16:56:58 +0800732#if defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_LOONGSON3)
733 .set push
734 .set arch=mips32r2
Ralf Baechleb65a75b2008-10-11 16:18:53 +0100735 wsbh v1, sum
736 movn sum, v1, odd
Chen Jie3c09bae2014-08-15 16:56:58 +0800737 .set pop
Ralf Baechleb65a75b2008-10-11 16:18:53 +0100738#else
739 beqz odd, 1f /* odd buffer alignment? */
740 lui v1, 0x00ff
741 addu v1, 0x00ff
742 and t0, sum, v1
743 sll t0, t0, 8
Atsushi Nemotof860c902006-12-13 01:22:06 +0900744 srl sum, sum, 8
Ralf Baechleb65a75b2008-10-11 16:18:53 +0100745 and sum, sum, v1
746 or sum, sum, t0
Atsushi Nemotof860c902006-12-13 01:22:06 +09007471:
Ralf Baechleb65a75b2008-10-11 16:18:53 +0100748#endif
Maciej W. Rozycki44ba1382014-04-04 03:32:54 +0100749 .set pop
Atsushi Nemotof860c902006-12-13 01:22:06 +0900750 .set reorder
Atsushi Nemotob80a1b82008-09-20 17:20:04 +0200751 ADDC32(sum, psum)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900752 jr ra
753 .set noreorder
754
Markos Chandrase89fb562014-01-17 10:48:46 +0000755.Ll_exc_copy\@:
Atsushi Nemotof860c902006-12-13 01:22:06 +0900756 /*
757 * Copy bytes from src until faulting load address (or until a
758 * lb faults)
759 *
760 * When reached by a faulting LDFIRST/LDREST, THREAD_BUADDR($28)
761 * may be more than a byte beyond the last address.
762 * Hence, the lb below may get an exception.
763 *
764 * Assumes src < THREAD_BUADDR($28)
765 */
Markos Chandras2ab82e62014-01-16 17:02:13 +0000766 LOADK t0, TI_TASK($28)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900767 li t2, SHIFT_START
Markos Chandras2ab82e62014-01-16 17:02:13 +0000768 LOADK t0, THREAD_BUADDR(t0)
Atsushi Nemotof860c902006-12-13 01:22:06 +09007691:
Markos Chandrase89fb562014-01-17 10:48:46 +0000770 LOADBU(t1, 0(src), .Ll_exc\@)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900771 ADD src, src, 1
772 sb t1, 0(dst) # can't fault -- we're copy_from_user
773 SLLV t1, t1, t2
774 addu t2, SHIFT_INC
775 ADDC(sum, t1)
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100776 .set reorder /* DADDI_WAR */
777 ADD dst, dst, 1
Atsushi Nemotof860c902006-12-13 01:22:06 +0900778 bne src, t0, 1b
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100779 .set noreorder
Markos Chandrase89fb562014-01-17 10:48:46 +0000780.Ll_exc\@:
Markos Chandras2ab82e62014-01-16 17:02:13 +0000781 LOADK t0, TI_TASK($28)
Atsushi Nemotof860c902006-12-13 01:22:06 +0900782 nop
Markos Chandras2ab82e62014-01-16 17:02:13 +0000783 LOADK t0, THREAD_BUADDR(t0) # t0 is just past last good address
Atsushi Nemotof860c902006-12-13 01:22:06 +0900784 nop
785 SUB len, AT, t0 # len number of uncopied bytes
786 /*
787 * Here's where we rely on src and dst being incremented in tandem,
788 * See (3) above.
789 * dst += (fault addr - src) to put dst at first byte to clear
790 */
791 ADD dst, t0 # compute start address in a1
792 SUB dst, src
793 /*
794 * Clear len bytes starting at dst. Can't call __bzero because it
795 * might modify len. An inefficient loop for these rare times...
796 */
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100797 .set reorder /* DADDI_WAR */
798 SUB src, len, 1
Markos Chandrase89fb562014-01-17 10:48:46 +0000799 beqz len, .Ldone\@
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100800 .set noreorder
Atsushi Nemotof860c902006-12-13 01:22:06 +09008011: sb zero, 0(dst)
802 ADD dst, dst, 1
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100803 .set push
804 .set noat
805#ifndef CONFIG_CPU_DADDI_WORKAROUNDS
Atsushi Nemotof860c902006-12-13 01:22:06 +0900806 bnez src, 1b
807 SUB src, src, 1
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100808#else
809 li v1, 1
810 bnez src, 1b
811 SUB src, src, v1
812#endif
Atsushi Nemotof860c902006-12-13 01:22:06 +0900813 li v1, -EFAULT
Markos Chandrase89fb562014-01-17 10:48:46 +0000814 b .Ldone\@
Atsushi Nemotof860c902006-12-13 01:22:06 +0900815 sw v1, (errptr)
816
Markos Chandrase89fb562014-01-17 10:48:46 +0000817.Ls_exc\@:
Atsushi Nemotof860c902006-12-13 01:22:06 +0900818 li v0, -1 /* invalid checksum */
819 li v1, -EFAULT
820 jr ra
821 sw v1, (errptr)
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100822 .set pop
Markos Chandrase89fb562014-01-17 10:48:46 +0000823 .endm
824
825LEAF(__csum_partial_copy_kernel)
Markos Chandras6f85ceb2014-01-17 11:36:16 +0000826#ifndef CONFIG_EVA
Markos Chandrase89fb562014-01-17 10:48:46 +0000827FEXPORT(__csum_partial_copy_to_user)
828FEXPORT(__csum_partial_copy_from_user)
Markos Chandras6f85ceb2014-01-17 11:36:16 +0000829#endif
Markos Chandrase89fb562014-01-17 10:48:46 +0000830__BUILD_CSUM_PARTIAL_COPY_USER LEGACY_MODE USEROP USEROP 1
831END(__csum_partial_copy_kernel)
Markos Chandras6f85ceb2014-01-17 11:36:16 +0000832
833#ifdef CONFIG_EVA
834LEAF(__csum_partial_copy_to_user)
835__BUILD_CSUM_PARTIAL_COPY_USER EVA_MODE KERNELOP USEROP 0
836END(__csum_partial_copy_to_user)
837
838LEAF(__csum_partial_copy_from_user)
839__BUILD_CSUM_PARTIAL_COPY_USER EVA_MODE USEROP KERNELOP 0
840END(__csum_partial_copy_from_user)
841#endif