Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Memory copy functions for 32-bit PowerPC. |
| 3 | * |
| 4 | * Copyright (C) 1996-2005 Paul Mackerras. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 11 | #include <asm/processor.h> |
| 12 | #include <asm/cache.h> |
| 13 | #include <asm/errno.h> |
| 14 | #include <asm/ppc_asm.h> |
Al Viro | 9445aa1 | 2016-01-13 23:33:46 -0500 | [diff] [blame^] | 15 | #include <asm/export.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 16 | |
| 17 | #define COPY_16_BYTES \ |
| 18 | lwz r7,4(r4); \ |
| 19 | lwz r8,8(r4); \ |
| 20 | lwz r9,12(r4); \ |
| 21 | lwzu r10,16(r4); \ |
| 22 | stw r7,4(r6); \ |
| 23 | stw r8,8(r6); \ |
| 24 | stw r9,12(r6); \ |
| 25 | stwu r10,16(r6) |
| 26 | |
| 27 | #define COPY_16_BYTES_WITHEX(n) \ |
| 28 | 8 ## n ## 0: \ |
| 29 | lwz r7,4(r4); \ |
| 30 | 8 ## n ## 1: \ |
| 31 | lwz r8,8(r4); \ |
| 32 | 8 ## n ## 2: \ |
| 33 | lwz r9,12(r4); \ |
| 34 | 8 ## n ## 3: \ |
| 35 | lwzu r10,16(r4); \ |
| 36 | 8 ## n ## 4: \ |
| 37 | stw r7,4(r6); \ |
| 38 | 8 ## n ## 5: \ |
| 39 | stw r8,8(r6); \ |
| 40 | 8 ## n ## 6: \ |
| 41 | stw r9,12(r6); \ |
| 42 | 8 ## n ## 7: \ |
| 43 | stwu r10,16(r6) |
| 44 | |
| 45 | #define COPY_16_BYTES_EXCODE(n) \ |
| 46 | 9 ## n ## 0: \ |
| 47 | addi r5,r5,-(16 * n); \ |
| 48 | b 104f; \ |
| 49 | 9 ## n ## 1: \ |
| 50 | addi r5,r5,-(16 * n); \ |
| 51 | b 105f; \ |
| 52 | .section __ex_table,"a"; \ |
| 53 | .align 2; \ |
| 54 | .long 8 ## n ## 0b,9 ## n ## 0b; \ |
| 55 | .long 8 ## n ## 1b,9 ## n ## 0b; \ |
| 56 | .long 8 ## n ## 2b,9 ## n ## 0b; \ |
| 57 | .long 8 ## n ## 3b,9 ## n ## 0b; \ |
| 58 | .long 8 ## n ## 4b,9 ## n ## 1b; \ |
| 59 | .long 8 ## n ## 5b,9 ## n ## 1b; \ |
| 60 | .long 8 ## n ## 6b,9 ## n ## 1b; \ |
| 61 | .long 8 ## n ## 7b,9 ## n ## 1b; \ |
| 62 | .text |
| 63 | |
| 64 | .text |
| 65 | .stabs "arch/powerpc/lib/",N_SO,0,0,0f |
Sean MacLennan | 025c018 | 2010-09-01 07:21:21 +0000 | [diff] [blame] | 66 | .stabs "copy_32.S",N_SO,0,0,0f |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 67 | 0: |
| 68 | |
Stephen Rothwell | 7dffb72 | 2005-10-17 11:50:32 +1000 | [diff] [blame] | 69 | CACHELINE_BYTES = L1_CACHE_BYTES |
| 70 | LG_CACHELINE_BYTES = L1_CACHE_SHIFT |
| 71 | CACHELINE_MASK = (L1_CACHE_BYTES-1) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 72 | |
LEROY Christophe | df087e4 | 2015-05-19 12:07:48 +0200 | [diff] [blame] | 73 | /* |
| 74 | * Use dcbz on the complete cache lines in the destination |
| 75 | * to set them to zero. This requires that the destination |
| 76 | * area is cacheable. -- paulus |
LEROY Christophe | 400c47d | 2015-09-16 12:04:53 +0200 | [diff] [blame] | 77 | * |
| 78 | * During early init, cache might not be active yet, so dcbz cannot be used. |
| 79 | * We therefore skip the optimised bloc that uses dcbz. This jump is |
| 80 | * replaced by a nop once cache is active. This is done in machine_init() |
LEROY Christophe | df087e4 | 2015-05-19 12:07:48 +0200 | [diff] [blame] | 81 | */ |
LEROY Christophe | 5b2a32e | 2015-05-19 12:07:50 +0200 | [diff] [blame] | 82 | _GLOBAL(memset) |
LEROY Christophe | c152f14 | 2015-05-19 12:07:52 +0200 | [diff] [blame] | 83 | rlwimi r4,r4,8,16,23 |
| 84 | rlwimi r4,r4,16,0,15 |
| 85 | |
LEROY Christophe | df087e4 | 2015-05-19 12:07:48 +0200 | [diff] [blame] | 86 | addi r6,r3,-4 |
| 87 | cmplwi 0,r5,4 |
| 88 | blt 7f |
| 89 | stwu r4,4(r6) |
| 90 | beqlr |
| 91 | andi. r0,r6,3 |
| 92 | add r5,r0,r5 |
| 93 | subf r6,r0,r6 |
LEROY Christophe | c152f14 | 2015-05-19 12:07:52 +0200 | [diff] [blame] | 94 | cmplwi 0,r4,0 |
| 95 | bne 2f /* Use normal procedure if r4 is not zero */ |
Al Viro | 9445aa1 | 2016-01-13 23:33:46 -0500 | [diff] [blame^] | 96 | EXPORT_SYMBOL(memset) |
LEROY Christophe | 400c47d | 2015-09-16 12:04:53 +0200 | [diff] [blame] | 97 | _GLOBAL(memset_nocache_branch) |
| 98 | b 2f /* Skip optimised bloc until cache is enabled */ |
LEROY Christophe | c152f14 | 2015-05-19 12:07:52 +0200 | [diff] [blame] | 99 | |
LEROY Christophe | df087e4 | 2015-05-19 12:07:48 +0200 | [diff] [blame] | 100 | clrlwi r7,r6,32-LG_CACHELINE_BYTES |
| 101 | add r8,r7,r5 |
| 102 | srwi r9,r8,LG_CACHELINE_BYTES |
| 103 | addic. r9,r9,-1 /* total number of complete cachelines */ |
| 104 | ble 2f |
| 105 | xori r0,r7,CACHELINE_MASK & ~3 |
| 106 | srwi. r0,r0,2 |
| 107 | beq 3f |
| 108 | mtctr r0 |
| 109 | 4: stwu r4,4(r6) |
| 110 | bdnz 4b |
| 111 | 3: mtctr r9 |
| 112 | li r7,4 |
| 113 | 10: dcbz r7,r6 |
| 114 | addi r6,r6,CACHELINE_BYTES |
| 115 | bdnz 10b |
| 116 | clrlwi r5,r8,32-LG_CACHELINE_BYTES |
| 117 | addi r5,r5,4 |
LEROY Christophe | df087e4 | 2015-05-19 12:07:48 +0200 | [diff] [blame] | 118 | |
LEROY Christophe | c152f14 | 2015-05-19 12:07:52 +0200 | [diff] [blame] | 119 | 2: srwi r0,r5,2 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 120 | mtctr r0 |
| 121 | bdz 6f |
| 122 | 1: stwu r4,4(r6) |
| 123 | bdnz 1b |
| 124 | 6: andi. r5,r5,3 |
| 125 | 7: cmpwi 0,r5,0 |
| 126 | beqlr |
| 127 | mtctr r5 |
| 128 | addi r6,r6,3 |
| 129 | 8: stbu r4,1(r6) |
| 130 | bdnz 8b |
| 131 | blr |
| 132 | |
LEROY Christophe | df087e4 | 2015-05-19 12:07:48 +0200 | [diff] [blame] | 133 | /* |
| 134 | * This version uses dcbz on the complete cache lines in the |
| 135 | * destination area to reduce memory traffic. This requires that |
| 136 | * the destination area is cacheable. |
| 137 | * We only use this version if the source and dest don't overlap. |
| 138 | * -- paulus. |
LEROY Christophe | 1cd0389 | 2015-09-16 12:04:51 +0200 | [diff] [blame] | 139 | * |
| 140 | * During early init, cache might not be active yet, so dcbz cannot be used. |
| 141 | * We therefore jump to generic_memcpy which doesn't use dcbz. This jump is |
| 142 | * replaced by a nop once cache is active. This is done in machine_init() |
LEROY Christophe | df087e4 | 2015-05-19 12:07:48 +0200 | [diff] [blame] | 143 | */ |
LEROY Christophe | 0b05e2d | 2015-05-19 12:07:55 +0200 | [diff] [blame] | 144 | _GLOBAL(memmove) |
| 145 | cmplw 0,r3,r4 |
| 146 | bgt backwards_memcpy |
| 147 | /* fall through */ |
| 148 | |
| 149 | _GLOBAL(memcpy) |
LEROY Christophe | 1cd0389 | 2015-09-16 12:04:51 +0200 | [diff] [blame] | 150 | b generic_memcpy |
LEROY Christophe | df087e4 | 2015-05-19 12:07:48 +0200 | [diff] [blame] | 151 | add r7,r3,r5 /* test if the src & dst overlap */ |
| 152 | add r8,r4,r5 |
| 153 | cmplw 0,r4,r7 |
| 154 | cmplw 1,r3,r8 |
| 155 | crand 0,0,4 /* cr0.lt &= cr1.lt */ |
LEROY Christophe | 0b05e2d | 2015-05-19 12:07:55 +0200 | [diff] [blame] | 156 | blt generic_memcpy /* if regions overlap */ |
LEROY Christophe | df087e4 | 2015-05-19 12:07:48 +0200 | [diff] [blame] | 157 | |
| 158 | addi r4,r4,-4 |
| 159 | addi r6,r3,-4 |
| 160 | neg r0,r3 |
| 161 | andi. r0,r0,CACHELINE_MASK /* # bytes to start of cache line */ |
| 162 | beq 58f |
| 163 | |
| 164 | cmplw 0,r5,r0 /* is this more than total to do? */ |
| 165 | blt 63f /* if not much to do */ |
| 166 | andi. r8,r0,3 /* get it word-aligned first */ |
| 167 | subf r5,r0,r5 |
| 168 | mtctr r8 |
| 169 | beq+ 61f |
| 170 | 70: lbz r9,4(r4) /* do some bytes */ |
LEROY Christophe | df087e4 | 2015-05-19 12:07:48 +0200 | [diff] [blame] | 171 | addi r4,r4,1 |
| 172 | addi r6,r6,1 |
LEROY Christophe | 295ffb4 | 2015-05-19 12:07:57 +0200 | [diff] [blame] | 173 | stb r9,3(r6) |
LEROY Christophe | df087e4 | 2015-05-19 12:07:48 +0200 | [diff] [blame] | 174 | bdnz 70b |
| 175 | 61: srwi. r0,r0,2 |
| 176 | mtctr r0 |
| 177 | beq 58f |
| 178 | 72: lwzu r9,4(r4) /* do some words */ |
| 179 | stwu r9,4(r6) |
| 180 | bdnz 72b |
| 181 | |
| 182 | 58: srwi. r0,r5,LG_CACHELINE_BYTES /* # complete cachelines */ |
| 183 | clrlwi r5,r5,32-LG_CACHELINE_BYTES |
| 184 | li r11,4 |
| 185 | mtctr r0 |
| 186 | beq 63f |
| 187 | 53: |
| 188 | dcbz r11,r6 |
| 189 | COPY_16_BYTES |
| 190 | #if L1_CACHE_BYTES >= 32 |
| 191 | COPY_16_BYTES |
| 192 | #if L1_CACHE_BYTES >= 64 |
| 193 | COPY_16_BYTES |
| 194 | COPY_16_BYTES |
| 195 | #if L1_CACHE_BYTES >= 128 |
| 196 | COPY_16_BYTES |
| 197 | COPY_16_BYTES |
| 198 | COPY_16_BYTES |
| 199 | COPY_16_BYTES |
| 200 | #endif |
| 201 | #endif |
| 202 | #endif |
| 203 | bdnz 53b |
| 204 | |
| 205 | 63: srwi. r0,r5,2 |
| 206 | mtctr r0 |
| 207 | beq 64f |
| 208 | 30: lwzu r0,4(r4) |
| 209 | stwu r0,4(r6) |
| 210 | bdnz 30b |
| 211 | |
| 212 | 64: andi. r0,r5,3 |
| 213 | mtctr r0 |
| 214 | beq+ 65f |
LEROY Christophe | 295ffb4 | 2015-05-19 12:07:57 +0200 | [diff] [blame] | 215 | addi r4,r4,3 |
| 216 | addi r6,r6,3 |
| 217 | 40: lbzu r0,1(r4) |
| 218 | stbu r0,1(r6) |
LEROY Christophe | df087e4 | 2015-05-19 12:07:48 +0200 | [diff] [blame] | 219 | bdnz 40b |
| 220 | 65: blr |
Al Viro | 9445aa1 | 2016-01-13 23:33:46 -0500 | [diff] [blame^] | 221 | EXPORT_SYMBOL(memcpy) |
| 222 | EXPORT_SYMBOL(memmove) |
LEROY Christophe | df087e4 | 2015-05-19 12:07:48 +0200 | [diff] [blame] | 223 | |
Michael Ellerman | b4c6afd | 2016-03-16 21:36:06 +1100 | [diff] [blame] | 224 | generic_memcpy: |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 225 | srwi. r7,r5,3 |
| 226 | addi r6,r3,-4 |
| 227 | addi r4,r4,-4 |
| 228 | beq 2f /* if less than 8 bytes to do */ |
| 229 | andi. r0,r6,3 /* get dest word aligned */ |
| 230 | mtctr r7 |
| 231 | bne 5f |
| 232 | 1: lwz r7,4(r4) |
| 233 | lwzu r8,8(r4) |
| 234 | stw r7,4(r6) |
| 235 | stwu r8,8(r6) |
| 236 | bdnz 1b |
| 237 | andi. r5,r5,7 |
| 238 | 2: cmplwi 0,r5,4 |
| 239 | blt 3f |
| 240 | lwzu r0,4(r4) |
| 241 | addi r5,r5,-4 |
| 242 | stwu r0,4(r6) |
| 243 | 3: cmpwi 0,r5,0 |
| 244 | beqlr |
| 245 | mtctr r5 |
| 246 | addi r4,r4,3 |
| 247 | addi r6,r6,3 |
| 248 | 4: lbzu r0,1(r4) |
| 249 | stbu r0,1(r6) |
| 250 | bdnz 4b |
| 251 | blr |
| 252 | 5: subfic r0,r0,4 |
| 253 | mtctr r0 |
| 254 | 6: lbz r7,4(r4) |
| 255 | addi r4,r4,1 |
| 256 | stb r7,4(r6) |
| 257 | addi r6,r6,1 |
| 258 | bdnz 6b |
| 259 | subf r5,r0,r5 |
| 260 | rlwinm. r7,r5,32-3,3,31 |
| 261 | beq 2b |
| 262 | mtctr r7 |
| 263 | b 1b |
| 264 | |
| 265 | _GLOBAL(backwards_memcpy) |
| 266 | rlwinm. r7,r5,32-3,3,31 /* r0 = r5 >> 3 */ |
| 267 | add r6,r3,r5 |
| 268 | add r4,r4,r5 |
| 269 | beq 2f |
| 270 | andi. r0,r6,3 |
| 271 | mtctr r7 |
| 272 | bne 5f |
| 273 | 1: lwz r7,-4(r4) |
| 274 | lwzu r8,-8(r4) |
| 275 | stw r7,-4(r6) |
| 276 | stwu r8,-8(r6) |
| 277 | bdnz 1b |
| 278 | andi. r5,r5,7 |
| 279 | 2: cmplwi 0,r5,4 |
| 280 | blt 3f |
| 281 | lwzu r0,-4(r4) |
| 282 | subi r5,r5,4 |
| 283 | stwu r0,-4(r6) |
| 284 | 3: cmpwi 0,r5,0 |
| 285 | beqlr |
| 286 | mtctr r5 |
| 287 | 4: lbzu r0,-1(r4) |
| 288 | stbu r0,-1(r6) |
| 289 | bdnz 4b |
| 290 | blr |
| 291 | 5: mtctr r0 |
| 292 | 6: lbzu r7,-1(r4) |
| 293 | stbu r7,-1(r6) |
| 294 | bdnz 6b |
| 295 | subf r5,r0,r5 |
| 296 | rlwinm. r7,r5,32-3,3,31 |
| 297 | beq 2b |
| 298 | mtctr r7 |
| 299 | b 1b |
| 300 | |
| 301 | _GLOBAL(__copy_tofrom_user) |
| 302 | addi r4,r4,-4 |
| 303 | addi r6,r3,-4 |
| 304 | neg r0,r3 |
| 305 | andi. r0,r0,CACHELINE_MASK /* # bytes to start of cache line */ |
| 306 | beq 58f |
| 307 | |
| 308 | cmplw 0,r5,r0 /* is this more than total to do? */ |
| 309 | blt 63f /* if not much to do */ |
| 310 | andi. r8,r0,3 /* get it word-aligned first */ |
| 311 | mtctr r8 |
| 312 | beq+ 61f |
| 313 | 70: lbz r9,4(r4) /* do some bytes */ |
| 314 | 71: stb r9,4(r6) |
| 315 | addi r4,r4,1 |
| 316 | addi r6,r6,1 |
| 317 | bdnz 70b |
| 318 | 61: subf r5,r0,r5 |
| 319 | srwi. r0,r0,2 |
| 320 | mtctr r0 |
| 321 | beq 58f |
| 322 | 72: lwzu r9,4(r4) /* do some words */ |
| 323 | 73: stwu r9,4(r6) |
| 324 | bdnz 72b |
| 325 | |
| 326 | .section __ex_table,"a" |
| 327 | .align 2 |
| 328 | .long 70b,100f |
| 329 | .long 71b,101f |
| 330 | .long 72b,102f |
| 331 | .long 73b,103f |
| 332 | .text |
| 333 | |
| 334 | 58: srwi. r0,r5,LG_CACHELINE_BYTES /* # complete cachelines */ |
| 335 | clrlwi r5,r5,32-LG_CACHELINE_BYTES |
| 336 | li r11,4 |
| 337 | beq 63f |
| 338 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 339 | /* Here we decide how far ahead to prefetch the source */ |
| 340 | li r3,4 |
| 341 | cmpwi r0,1 |
| 342 | li r7,0 |
| 343 | ble 114f |
| 344 | li r7,1 |
| 345 | #if MAX_COPY_PREFETCH > 1 |
| 346 | /* Heuristically, for large transfers we prefetch |
| 347 | MAX_COPY_PREFETCH cachelines ahead. For small transfers |
| 348 | we prefetch 1 cacheline ahead. */ |
| 349 | cmpwi r0,MAX_COPY_PREFETCH |
| 350 | ble 112f |
| 351 | li r7,MAX_COPY_PREFETCH |
| 352 | 112: mtctr r7 |
| 353 | 111: dcbt r3,r4 |
| 354 | addi r3,r3,CACHELINE_BYTES |
| 355 | bdnz 111b |
| 356 | #else |
| 357 | dcbt r3,r4 |
| 358 | addi r3,r3,CACHELINE_BYTES |
| 359 | #endif /* MAX_COPY_PREFETCH > 1 */ |
| 360 | |
| 361 | 114: subf r8,r7,r0 |
| 362 | mr r0,r7 |
| 363 | mtctr r8 |
| 364 | |
| 365 | 53: dcbt r3,r4 |
| 366 | 54: dcbz r11,r6 |
| 367 | .section __ex_table,"a" |
| 368 | .align 2 |
| 369 | .long 54b,105f |
| 370 | .text |
| 371 | /* the main body of the cacheline loop */ |
| 372 | COPY_16_BYTES_WITHEX(0) |
Stephen Rothwell | 7dffb72 | 2005-10-17 11:50:32 +1000 | [diff] [blame] | 373 | #if L1_CACHE_BYTES >= 32 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 374 | COPY_16_BYTES_WITHEX(1) |
Stephen Rothwell | 7dffb72 | 2005-10-17 11:50:32 +1000 | [diff] [blame] | 375 | #if L1_CACHE_BYTES >= 64 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 376 | COPY_16_BYTES_WITHEX(2) |
| 377 | COPY_16_BYTES_WITHEX(3) |
Stephen Rothwell | 7dffb72 | 2005-10-17 11:50:32 +1000 | [diff] [blame] | 378 | #if L1_CACHE_BYTES >= 128 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 379 | COPY_16_BYTES_WITHEX(4) |
| 380 | COPY_16_BYTES_WITHEX(5) |
| 381 | COPY_16_BYTES_WITHEX(6) |
| 382 | COPY_16_BYTES_WITHEX(7) |
| 383 | #endif |
| 384 | #endif |
| 385 | #endif |
| 386 | bdnz 53b |
| 387 | cmpwi r0,0 |
| 388 | li r3,4 |
| 389 | li r7,0 |
| 390 | bne 114b |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 391 | |
| 392 | 63: srwi. r0,r5,2 |
| 393 | mtctr r0 |
| 394 | beq 64f |
| 395 | 30: lwzu r0,4(r4) |
| 396 | 31: stwu r0,4(r6) |
| 397 | bdnz 30b |
| 398 | |
| 399 | 64: andi. r0,r5,3 |
| 400 | mtctr r0 |
| 401 | beq+ 65f |
| 402 | 40: lbz r0,4(r4) |
| 403 | 41: stb r0,4(r6) |
| 404 | addi r4,r4,1 |
| 405 | addi r6,r6,1 |
| 406 | bdnz 40b |
| 407 | 65: li r3,0 |
| 408 | blr |
| 409 | |
| 410 | /* read fault, initial single-byte copy */ |
| 411 | 100: li r9,0 |
| 412 | b 90f |
| 413 | /* write fault, initial single-byte copy */ |
| 414 | 101: li r9,1 |
| 415 | 90: subf r5,r8,r5 |
| 416 | li r3,0 |
| 417 | b 99f |
| 418 | /* read fault, initial word copy */ |
| 419 | 102: li r9,0 |
| 420 | b 91f |
| 421 | /* write fault, initial word copy */ |
| 422 | 103: li r9,1 |
| 423 | 91: li r3,2 |
| 424 | b 99f |
| 425 | |
| 426 | /* |
| 427 | * this stuff handles faults in the cacheline loop and branches to either |
| 428 | * 104f (if in read part) or 105f (if in write part), after updating r5 |
| 429 | */ |
| 430 | COPY_16_BYTES_EXCODE(0) |
Stephen Rothwell | 7dffb72 | 2005-10-17 11:50:32 +1000 | [diff] [blame] | 431 | #if L1_CACHE_BYTES >= 32 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 432 | COPY_16_BYTES_EXCODE(1) |
Stephen Rothwell | 7dffb72 | 2005-10-17 11:50:32 +1000 | [diff] [blame] | 433 | #if L1_CACHE_BYTES >= 64 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 434 | COPY_16_BYTES_EXCODE(2) |
| 435 | COPY_16_BYTES_EXCODE(3) |
Stephen Rothwell | 7dffb72 | 2005-10-17 11:50:32 +1000 | [diff] [blame] | 436 | #if L1_CACHE_BYTES >= 128 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 437 | COPY_16_BYTES_EXCODE(4) |
| 438 | COPY_16_BYTES_EXCODE(5) |
| 439 | COPY_16_BYTES_EXCODE(6) |
| 440 | COPY_16_BYTES_EXCODE(7) |
| 441 | #endif |
| 442 | #endif |
| 443 | #endif |
| 444 | |
| 445 | /* read fault in cacheline loop */ |
| 446 | 104: li r9,0 |
| 447 | b 92f |
| 448 | /* fault on dcbz (effectively a write fault) */ |
| 449 | /* or write fault in cacheline loop */ |
| 450 | 105: li r9,1 |
| 451 | 92: li r3,LG_CACHELINE_BYTES |
| 452 | mfctr r8 |
| 453 | add r0,r0,r8 |
| 454 | b 106f |
| 455 | /* read fault in final word loop */ |
| 456 | 108: li r9,0 |
| 457 | b 93f |
| 458 | /* write fault in final word loop */ |
| 459 | 109: li r9,1 |
| 460 | 93: andi. r5,r5,3 |
| 461 | li r3,2 |
| 462 | b 99f |
| 463 | /* read fault in final byte loop */ |
| 464 | 110: li r9,0 |
| 465 | b 94f |
| 466 | /* write fault in final byte loop */ |
| 467 | 111: li r9,1 |
| 468 | 94: li r5,0 |
| 469 | li r3,0 |
| 470 | /* |
| 471 | * At this stage the number of bytes not copied is |
| 472 | * r5 + (ctr << r3), and r9 is 0 for read or 1 for write. |
| 473 | */ |
| 474 | 99: mfctr r0 |
| 475 | 106: slw r3,r0,r3 |
| 476 | add. r3,r3,r5 |
| 477 | beq 120f /* shouldn't happen */ |
| 478 | cmpwi 0,r9,0 |
| 479 | bne 120f |
| 480 | /* for a read fault, first try to continue the copy one byte at a time */ |
| 481 | mtctr r3 |
| 482 | 130: lbz r0,4(r4) |
| 483 | 131: stb r0,4(r6) |
| 484 | addi r4,r4,1 |
| 485 | addi r6,r6,1 |
| 486 | bdnz 130b |
| 487 | /* then clear out the destination: r3 bytes starting at 4(r6) */ |
| 488 | 132: mfctr r3 |
| 489 | srwi. r0,r3,2 |
| 490 | li r9,0 |
| 491 | mtctr r0 |
| 492 | beq 113f |
| 493 | 112: stwu r9,4(r6) |
| 494 | bdnz 112b |
| 495 | 113: andi. r0,r3,3 |
| 496 | mtctr r0 |
| 497 | beq 120f |
| 498 | 114: stb r9,4(r6) |
| 499 | addi r6,r6,1 |
| 500 | bdnz 114b |
| 501 | 120: blr |
| 502 | |
| 503 | .section __ex_table,"a" |
| 504 | .align 2 |
| 505 | .long 30b,108b |
| 506 | .long 31b,109b |
| 507 | .long 40b,110b |
| 508 | .long 41b,111b |
| 509 | .long 130b,132b |
| 510 | .long 131b,120b |
| 511 | .long 112b,120b |
| 512 | .long 114b,120b |
| 513 | .text |
Al Viro | 9445aa1 | 2016-01-13 23:33:46 -0500 | [diff] [blame^] | 514 | EXPORT_SYMBOL(__copy_tofrom_user) |