blob: fac26ce64b2f95312352bce97ff0a69e1a7ea85e [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\@
Matt Redfearn21325632018-04-17 16:40:02 +010098 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
Matt Redfearn21325632018-04-17 16:40:02 +0100106 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
Matt Redfearn21325632018-04-17 16:40:02 +0100111 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 */
Matt Redfearn21325632018-04-17 16:40:02 +0100152 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
Matt Redfearn21325632018-04-17 16:40:02 +0100177 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
Matt Redfearn21325632018-04-17 16:40:02 +0100189 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
Matt Redfearn21325632018-04-17 16:40:02 +0100197 PTR_SUBU t0, $0, a2
Matt Redfearnb1c03f12018-05-23 14:39:58 +0100198 move a2, zero /* No remaining longs */
Leonid Yegoshin8c562082014-11-18 09:04:34 +0000199 PTR_ADDIU t0, 1
200 STORE_BYTE(0)
201 STORE_BYTE(1)
202#if LONGSIZE == 4
203 EX(sb, a1, 2(a0), .Lbyte_fixup\@)
204#else
205 STORE_BYTE(2)
206 STORE_BYTE(3)
207 STORE_BYTE(4)
208 STORE_BYTE(5)
209 EX(sb, a1, 6(a0), .Lbyte_fixup\@)
210#endif
2110:
212#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131: jr ra
Matt Redfearn21325632018-04-17 16:40:02 +0100214 move a2, zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Markos Chandras6d5155c2014-01-03 09:23:16 +0000216.Lsmall_memset\@:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 beqz a2, 2f
Matt Redfearn21325632018-04-17 16:40:02 +0100218 PTR_ADDU t1, a0, a2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
2201: PTR_ADDIU a0, 1 /* fill bytewise */
Thomas Bogendoerfer930bff82007-11-25 11:47:56 +0100221 R10KCBARRIER(0(ra))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 bne t1, a0, 1b
Matt Redfearn8a8158c2018-03-29 10:28:23 +0100223 EX(sb, a1, -1(a0), .Lsmall_fixup\@)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
2252: jr ra /* done */
Matt Redfearn21325632018-04-17 16:40:02 +0100226 move a2, zero
Markos Chandras6d5155c2014-01-03 09:23:16 +0000227 .if __memset == 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 END(memset)
Markos Chandras6d5155c2014-01-03 09:23:16 +0000229 .set __memset, 0
230 .hidden __memset
231 .endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Maciej W. Rozycki8e85f272016-02-07 11:05:58 +0000233#ifdef CONFIG_CPU_MIPSR6
Leonid Yegoshin8c562082014-11-18 09:04:34 +0000234.Lbyte_fixup\@:
Matt Redfearnb1c03f12018-05-23 14:39:58 +0100235 PTR_SUBU a2, t0
Leonid Yegoshin8c562082014-11-18 09:04:34 +0000236 jr ra
237 PTR_ADDIU a2, 1
Maciej W. Rozycki8e85f272016-02-07 11:05:58 +0000238#endif /* CONFIG_CPU_MIPSR6 */
Leonid Yegoshin8c562082014-11-18 09:04:34 +0000239
Markos Chandras6d5155c2014-01-03 09:23:16 +0000240.Lfirst_fixup\@:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 jr ra
Matt Redfearn21325632018-04-17 16:40:02 +0100242 nop
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Markos Chandras6d5155c2014-01-03 09:23:16 +0000244.Lfwd_fixup\@:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 PTR_L t0, TI_TASK($28)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 andi a2, 0x3f
Tony Wue5674ad2010-11-10 21:48:15 +0800247 LONG_L t0, THREAD_BUADDR(t0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 LONG_ADDU a2, t1
249 jr ra
Matt Redfearn21325632018-04-17 16:40:02 +0100250 LONG_SUBU a2, t0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Markos Chandras6d5155c2014-01-03 09:23:16 +0000252.Lpartial_fixup\@:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 PTR_L t0, TI_TASK($28)
Steven J. Hill26c5e072013-03-25 13:40:49 -0500254 andi a2, STORMASK
Tony Wue5674ad2010-11-10 21:48:15 +0800255 LONG_L t0, THREAD_BUADDR(t0)
Matt Redfearndaf70d82018-04-17 15:52:21 +0100256 LONG_ADDU a2, a0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 jr ra
Matt Redfearn21325632018-04-17 16:40:02 +0100258 LONG_SUBU a2, t0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Markos Chandras6d5155c2014-01-03 09:23:16 +0000260.Llast_fixup\@:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 jr ra
Matt Redfearnc96eebf2018-04-17 16:40:00 +0100262 nop
Markos Chandras6d5155c2014-01-03 09:23:16 +0000263
Matt Redfearn8a8158c2018-03-29 10:28:23 +0100264.Lsmall_fixup\@:
265 PTR_SUBU a2, t1, a0
266 jr ra
267 PTR_ADDIU a2, 1
268
Markos Chandras6d5155c2014-01-03 09:23:16 +0000269 .endm
270
271/*
272 * memset(void *s, int c, size_t n)
273 *
274 * a0: start of area to clear
275 * a1: char to fill with
276 * a2: size of area to clear
277 */
278
279LEAF(memset)
Paul Burton576a2f02016-11-07 11:14:15 +0000280EXPORT_SYMBOL(memset)
Markos Chandras6d5155c2014-01-03 09:23:16 +0000281 beqz a1, 1f
Matt Redfearn21325632018-04-17 16:40:02 +0100282 move v0, a0 /* result */
Markos Chandras6d5155c2014-01-03 09:23:16 +0000283
284 andi a1, 0xff /* spread fillword */
285 LONG_SLL t1, a1, 8
286 or a1, t1
287 LONG_SLL t1, a1, 16
288#if LONGSIZE == 8
289 or a1, t1
290 LONG_SLL t1, a1, 32
291#endif
292 or a1, t1
2931:
Markos Chandrasfd9720e2014-01-03 10:11:45 +0000294#ifndef CONFIG_EVA
Markos Chandras6d5155c2014-01-03 09:23:16 +0000295FEXPORT(__bzero)
Paul Burton576a2f02016-11-07 11:14:15 +0000296EXPORT_SYMBOL(__bzero)
James Hogand6a428f2015-08-05 16:41:39 +0100297#else
298FEXPORT(__bzero_kernel)
Paul Burton576a2f02016-11-07 11:14:15 +0000299EXPORT_SYMBOL(__bzero_kernel)
Markos Chandrasfd9720e2014-01-03 10:11:45 +0000300#endif
Markos Chandras6d5155c2014-01-03 09:23:16 +0000301 __BUILD_BZERO LEGACY_MODE
Markos Chandrasfd9720e2014-01-03 10:11:45 +0000302
303#ifdef CONFIG_EVA
304LEAF(__bzero)
Paul Burton576a2f02016-11-07 11:14:15 +0000305EXPORT_SYMBOL(__bzero)
Markos Chandrasfd9720e2014-01-03 10:11:45 +0000306 __BUILD_BZERO EVA_MODE
307END(__bzero)
308#endif