blob: a1456664d6c28c9ccc8f837e341fe1a760b3c2d6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 * Copyright (C) 1998, 1999, 2000 by Ralf Baechle
7 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
Steven J. Hill26c5e072013-03-25 13:40:49 -05008 * Copyright (C) 2007 by Maciej W. Rozycki
9 * Copyright (C) 2011, 2012 MIPS Technologies, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11#include <asm/asm.h>
Sam Ravnborg048eb582005-09-09 22:32:31 +020012#include <asm/asm-offsets.h>
Paul Burton576a2f02016-11-07 11:14:15 +000013#include <asm/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <asm/regdef.h>
15
Atsushi Nemotoa5831582006-12-18 00:07:40 +090016#if LONGSIZE == 4
17#define LONG_S_L swl
18#define LONG_S_R swr
19#else
20#define LONG_S_L sdl
21#define LONG_S_R sdr
22#endif
23
Steven J. Hill26c5e072013-03-25 13:40:49 -050024#ifdef CONFIG_CPU_MICROMIPS
25#define STORSIZE (LONGSIZE * 2)
26#define STORMASK (STORSIZE - 1)
27#define FILL64RG t8
28#define FILLPTRG t7
29#undef LONG_S
30#define LONG_S LONG_SP
31#else
32#define STORSIZE LONGSIZE
33#define STORMASK LONGMASK
34#define FILL64RG a1
35#define FILLPTRG t0
36#endif
37
Markos Chandras6d5155c2014-01-03 09:23:16 +000038#define LEGACY_MODE 1
39#define EVA_MODE 2
40
Markos Chandrasfd9720e2014-01-03 10:11:45 +000041/*
42 * No need to protect it with EVA #ifdefery. The generated block of code
43 * will never be assembled if EVA is not enabled.
44 */
45#define __EVAFY(insn, reg, addr) __BUILD_EVA_INSN(insn##e, reg, addr)
46#define ___BUILD_EVA_INSN(insn, reg, addr) __EVAFY(insn, reg, addr)
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define EX(insn,reg,addr,handler) \
Markos Chandrasfd9720e2014-01-03 10:11:45 +000049 .if \mode == LEGACY_MODE; \
509: insn reg, addr; \
51 .else; \
529: ___BUILD_EVA_INSN(insn, reg, addr); \
53 .endif; \
Ralf Baechle70342282013-01-22 12:59:30 +010054 .section __ex_table,"a"; \
55 PTR 9b, handler; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 .previous
57
Markos Chandrasfd9720e2014-01-03 10:11:45 +000058 .macro f_fill64 dst, offset, val, fixup, mode
Steven J. Hill26c5e072013-03-25 13:40:49 -050059 EX(LONG_S, \val, (\offset + 0 * STORSIZE)(\dst), \fixup)
60 EX(LONG_S, \val, (\offset + 1 * STORSIZE)(\dst), \fixup)
61 EX(LONG_S, \val, (\offset + 2 * STORSIZE)(\dst), \fixup)
62 EX(LONG_S, \val, (\offset + 3 * STORSIZE)(\dst), \fixup)
63#if ((defined(CONFIG_CPU_MICROMIPS) && (LONGSIZE == 4)) || !defined(CONFIG_CPU_MICROMIPS))
64 EX(LONG_S, \val, (\offset + 4 * STORSIZE)(\dst), \fixup)
65 EX(LONG_S, \val, (\offset + 5 * STORSIZE)(\dst), \fixup)
66 EX(LONG_S, \val, (\offset + 6 * STORSIZE)(\dst), \fixup)
67 EX(LONG_S, \val, (\offset + 7 * STORSIZE)(\dst), \fixup)
68#endif
69#if (!defined(CONFIG_CPU_MICROMIPS) && (LONGSIZE == 4))
70 EX(LONG_S, \val, (\offset + 8 * STORSIZE)(\dst), \fixup)
71 EX(LONG_S, \val, (\offset + 9 * STORSIZE)(\dst), \fixup)
72 EX(LONG_S, \val, (\offset + 10 * STORSIZE)(\dst), \fixup)
73 EX(LONG_S, \val, (\offset + 11 * STORSIZE)(\dst), \fixup)
74 EX(LONG_S, \val, (\offset + 12 * STORSIZE)(\dst), \fixup)
75 EX(LONG_S, \val, (\offset + 13 * STORSIZE)(\dst), \fixup)
76 EX(LONG_S, \val, (\offset + 14 * STORSIZE)(\dst), \fixup)
77 EX(LONG_S, \val, (\offset + 15 * STORSIZE)(\dst), \fixup)
Atsushi Nemotoa5831582006-12-18 00:07:40 +090078#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 .endm
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 .set noreorder
82 .align 5
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Markos Chandras6d5155c2014-01-03 09:23:16 +000084 /*
85 * Macro to generate the __bzero{,_user} symbol
86 * Arguments:
87 * mode: LEGACY_MODE or EVA_MODE
88 */
89 .macro __BUILD_BZERO mode
90 /* Initialize __memset if this is the first time we call this macro */
91 .ifnotdef __memset
92 .set __memset, 1
93 .hidden __memset /* Make sure it does not leak */
94 .endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Steven J. Hill26c5e072013-03-25 13:40:49 -050096 sltiu t0, a2, STORSIZE /* very small region? */
Markos Chandras6d5155c2014-01-03 09:23:16 +000097 bnez t0, .Lsmall_memset\@
Markos Chandras8483b142014-01-03 09:21:20 +000098 andi t0, a0, STORMASK /* aligned? */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Steven J. Hill26c5e072013-03-25 13:40:49 -0500100#ifdef CONFIG_CPU_MICROMIPS
101 move t8, a1 /* used by 'swp' instruction */
102 move t9, a1
103#endif
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100104#ifndef CONFIG_CPU_DADDI_WORKAROUNDS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 beqz t0, 1f
Markos Chandras8483b142014-01-03 09:21:20 +0000106 PTR_SUBU t0, STORSIZE /* alignment in bytes */
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100107#else
108 .set noat
Steven J. Hill26c5e072013-03-25 13:40:49 -0500109 li AT, STORSIZE
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100110 beqz t0, 1f
Markos Chandras8483b142014-01-03 09:21:20 +0000111 PTR_SUBU t0, AT /* alignment in bytes */
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100112 .set at
113#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Leonid Yegoshin8c562082014-11-18 09:04:34 +0000115#ifndef CONFIG_CPU_MIPSR6
Thomas Bogendoerfer930bff82007-11-25 11:47:56 +0100116 R10KCBARRIER(0(ra))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#ifdef __MIPSEB__
Markos Chandras6d5155c2014-01-03 09:23:16 +0000118 EX(LONG_S_L, a1, (a0), .Lfirst_fixup\@) /* make word/dword aligned */
Markos Chandrasdd2adea2014-11-19 08:58:10 +0000119#else
Markos Chandras6d5155c2014-01-03 09:23:16 +0000120 EX(LONG_S_R, a1, (a0), .Lfirst_fixup\@) /* make word/dword aligned */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#endif
122 PTR_SUBU a0, t0 /* long align ptr */
123 PTR_ADDU a2, t0 /* correct size */
124
Leonid Yegoshin8c562082014-11-18 09:04:34 +0000125#else /* CONFIG_CPU_MIPSR6 */
126#define STORE_BYTE(N) \
127 EX(sb, a1, N(a0), .Lbyte_fixup\@); \
128 beqz t0, 0f; \
129 PTR_ADDU t0, 1;
130
131 PTR_ADDU a2, t0 /* correct size */
132 PTR_ADDU t0, 1
133 STORE_BYTE(0)
134 STORE_BYTE(1)
135#if LONGSIZE == 4
136 EX(sb, a1, 2(a0), .Lbyte_fixup\@)
137#else
138 STORE_BYTE(2)
139 STORE_BYTE(3)
140 STORE_BYTE(4)
141 STORE_BYTE(5)
142 EX(sb, a1, 6(a0), .Lbyte_fixup\@)
143#endif
1440:
145 ori a0, STORMASK
146 xori a0, STORMASK
147 PTR_ADDIU a0, STORSIZE
148#endif /* CONFIG_CPU_MIPSR6 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491: ori t1, a2, 0x3f /* # of full blocks */
150 xori t1, 0x3f
Markos Chandras6d5155c2014-01-03 09:23:16 +0000151 beqz t1, .Lmemset_partial\@ /* no block to fill */
Markos Chandras8483b142014-01-03 09:21:20 +0000152 andi t0, a2, 0x40-STORSIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 PTR_ADDU t1, a0 /* end address */
155 .set reorder
1561: PTR_ADDIU a0, 64
Thomas Bogendoerfer930bff82007-11-25 11:47:56 +0100157 R10KCBARRIER(0(ra))
Markos Chandrasfd9720e2014-01-03 10:11:45 +0000158 f_fill64 a0, -64, FILL64RG, .Lfwd_fixup\@, \mode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 bne t1, a0, 1b
160 .set noreorder
161
Markos Chandras6d5155c2014-01-03 09:23:16 +0000162.Lmemset_partial\@:
Thomas Bogendoerfer930bff82007-11-25 11:47:56 +0100163 R10KCBARRIER(0(ra))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 PTR_LA t1, 2f /* where to start */
Steven J. Hill26c5e072013-03-25 13:40:49 -0500165#ifdef CONFIG_CPU_MICROMIPS
166 LONG_SRL t7, t0, 1
167#endif
Atsushi Nemotoa5831582006-12-18 00:07:40 +0900168#if LONGSIZE == 4
Steven J. Hill26c5e072013-03-25 13:40:49 -0500169 PTR_SUBU t1, FILLPTRG
Atsushi Nemotoa5831582006-12-18 00:07:40 +0900170#else
171 .set noat
Steven J. Hill26c5e072013-03-25 13:40:49 -0500172 LONG_SRL AT, FILLPTRG, 1
Atsushi Nemotoa5831582006-12-18 00:07:40 +0900173 PTR_SUBU t1, AT
Maciej W. Rozycki619b6e12007-10-23 12:43:25 +0100174 .set at
Atsushi Nemotoa5831582006-12-18 00:07:40 +0900175#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 jr t1
Markos Chandras8483b142014-01-03 09:21:20 +0000177 PTR_ADDU a0, t0 /* dest ptr */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 .set push
180 .set noreorder
181 .set nomacro
Markos Chandras6d5155c2014-01-03 09:23:16 +0000182 /* ... but first do longs ... */
Markos Chandrasfd9720e2014-01-03 10:11:45 +0000183 f_fill64 a0, -64, FILL64RG, .Lpartial_fixup\@, \mode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842: .set pop
Steven J. Hill26c5e072013-03-25 13:40:49 -0500185 andi a2, STORMASK /* At most one long to go */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 beqz a2, 1f
Leonid Yegoshin8c562082014-11-18 09:04:34 +0000188#ifndef CONFIG_CPU_MIPSR6
Markos Chandras8483b142014-01-03 09:21:20 +0000189 PTR_ADDU a0, a2 /* What's left */
Thomas Bogendoerfer930bff82007-11-25 11:47:56 +0100190 R10KCBARRIER(0(ra))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191#ifdef __MIPSEB__
Markos Chandras6d5155c2014-01-03 09:23:16 +0000192 EX(LONG_S_R, a1, -1(a0), .Llast_fixup\@)
Markos Chandrasdd2adea2014-11-19 08:58:10 +0000193#else
Markos Chandras6d5155c2014-01-03 09:23:16 +0000194 EX(LONG_S_L, a1, -1(a0), .Llast_fixup\@)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195#endif
Leonid Yegoshin8c562082014-11-18 09:04:34 +0000196#else
197 PTR_SUBU t0, $0, a2
198 PTR_ADDIU t0, 1
199 STORE_BYTE(0)
200 STORE_BYTE(1)
201#if LONGSIZE == 4
202 EX(sb, a1, 2(a0), .Lbyte_fixup\@)
203#else
204 STORE_BYTE(2)
205 STORE_BYTE(3)
206 STORE_BYTE(4)
207 STORE_BYTE(5)
208 EX(sb, a1, 6(a0), .Lbyte_fixup\@)
209#endif
2100:
211#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121: jr ra
Markos Chandras8483b142014-01-03 09:21:20 +0000213 move a2, zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Markos Chandras6d5155c2014-01-03 09:23:16 +0000215.Lsmall_memset\@:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 beqz a2, 2f
Markos Chandras8483b142014-01-03 09:21:20 +0000217 PTR_ADDU t1, a0, a2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
2191: PTR_ADDIU a0, 1 /* fill bytewise */
Thomas Bogendoerfer930bff82007-11-25 11:47:56 +0100220 R10KCBARRIER(0(ra))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 bne t1, a0, 1b
Markos Chandras8483b142014-01-03 09:21:20 +0000222 sb a1, -1(a0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
2242: jr ra /* done */
Markos Chandras8483b142014-01-03 09:21:20 +0000225 move a2, zero
Markos Chandras6d5155c2014-01-03 09:23:16 +0000226 .if __memset == 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 END(memset)
Markos Chandras6d5155c2014-01-03 09:23:16 +0000228 .set __memset, 0
229 .hidden __memset
230 .endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Maciej W. Rozycki8e85f272016-02-07 11:05:58 +0000232#ifdef CONFIG_CPU_MIPSR6
Leonid Yegoshin8c562082014-11-18 09:04:34 +0000233.Lbyte_fixup\@:
234 PTR_SUBU a2, $0, t0
235 jr ra
236 PTR_ADDIU a2, 1
Maciej W. Rozycki8e85f272016-02-07 11:05:58 +0000237#endif /* CONFIG_CPU_MIPSR6 */
Leonid Yegoshin8c562082014-11-18 09:04:34 +0000238
Markos Chandras6d5155c2014-01-03 09:23:16 +0000239.Lfirst_fixup\@:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 jr ra
Markos Chandras8483b142014-01-03 09:21:20 +0000241 nop
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Markos Chandras6d5155c2014-01-03 09:23:16 +0000243.Lfwd_fixup\@:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 PTR_L t0, TI_TASK($28)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 andi a2, 0x3f
Tony Wue5674ad2010-11-10 21:48:15 +0800246 LONG_L t0, THREAD_BUADDR(t0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 LONG_ADDU a2, t1
248 jr ra
Markos Chandras8483b142014-01-03 09:21:20 +0000249 LONG_SUBU a2, t0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Markos Chandras6d5155c2014-01-03 09:23:16 +0000251.Lpartial_fixup\@:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 PTR_L t0, TI_TASK($28)
Steven J. Hill26c5e072013-03-25 13:40:49 -0500253 andi a2, STORMASK
Tony Wue5674ad2010-11-10 21:48:15 +0800254 LONG_L t0, THREAD_BUADDR(t0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 LONG_ADDU a2, t1
256 jr ra
Markos Chandras8483b142014-01-03 09:21:20 +0000257 LONG_SUBU a2, t0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Markos Chandras6d5155c2014-01-03 09:23:16 +0000259.Llast_fixup\@:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 jr ra
Markos Chandras8483b142014-01-03 09:21:20 +0000261 andi v1, a2, STORMASK
Markos Chandras6d5155c2014-01-03 09:23:16 +0000262
263 .endm
264
265/*
266 * memset(void *s, int c, size_t n)
267 *
268 * a0: start of area to clear
269 * a1: char to fill with
270 * a2: size of area to clear
271 */
272
273LEAF(memset)
Paul Burton576a2f02016-11-07 11:14:15 +0000274EXPORT_SYMBOL(memset)
Markos Chandras6d5155c2014-01-03 09:23:16 +0000275 beqz a1, 1f
276 move v0, a0 /* result */
277
278 andi a1, 0xff /* spread fillword */
279 LONG_SLL t1, a1, 8
280 or a1, t1
281 LONG_SLL t1, a1, 16
282#if LONGSIZE == 8
283 or a1, t1
284 LONG_SLL t1, a1, 32
285#endif
286 or a1, t1
2871:
Markos Chandrasfd9720e2014-01-03 10:11:45 +0000288#ifndef CONFIG_EVA
Markos Chandras6d5155c2014-01-03 09:23:16 +0000289FEXPORT(__bzero)
Paul Burton576a2f02016-11-07 11:14:15 +0000290EXPORT_SYMBOL(__bzero)
James Hogand6a428f2015-08-05 16:41:39 +0100291#else
292FEXPORT(__bzero_kernel)
Paul Burton576a2f02016-11-07 11:14:15 +0000293EXPORT_SYMBOL(__bzero_kernel)
Markos Chandrasfd9720e2014-01-03 10:11:45 +0000294#endif
Markos Chandras6d5155c2014-01-03 09:23:16 +0000295 __BUILD_BZERO LEGACY_MODE
Markos Chandrasfd9720e2014-01-03 10:11:45 +0000296
297#ifdef CONFIG_EVA
298LEAF(__bzero)
Paul Burton576a2f02016-11-07 11:14:15 +0000299EXPORT_SYMBOL(__bzero)
Markos Chandrasfd9720e2014-01-03 10:11:45 +0000300 __BUILD_BZERO EVA_MODE
301END(__bzero)
302#endif