Blackfin arch: enable a choice to provide 4M DMA memory
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-x86 / xor_32.h
blob067b5c1835a3a93e738fb28420273debfc88a482
1 /*
2 * Optimized RAID-5 checksumming functions for MMX and SSE.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2, or (at your option)
7 * any later version.
9 * You should have received a copy of the GNU General Public License
10 * (for example /usr/src/linux/COPYING); if not, write to the Free
11 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
15 * High-speed RAID5 checksumming functions utilizing MMX instructions.
16 * Copyright (C) 1998 Ingo Molnar.
19 #define LD(x, y) " movq 8*("#x")(%1), %%mm"#y" ;\n"
20 #define ST(x, y) " movq %%mm"#y", 8*("#x")(%1) ;\n"
21 #define XO1(x, y) " pxor 8*("#x")(%2), %%mm"#y" ;\n"
22 #define XO2(x, y) " pxor 8*("#x")(%3), %%mm"#y" ;\n"
23 #define XO3(x, y) " pxor 8*("#x")(%4), %%mm"#y" ;\n"
24 #define XO4(x, y) " pxor 8*("#x")(%5), %%mm"#y" ;\n"
26 #include <asm/i387.h>
28 static void
29 xor_pII_mmx_2(unsigned long bytes, unsigned long *p1, unsigned long *p2)
31 unsigned long lines = bytes >> 7;
33 kernel_fpu_begin();
35 asm volatile(
36 #undef BLOCK
37 #define BLOCK(i) \
38 LD(i, 0) \
39 LD(i + 1, 1) \
40 LD(i + 2, 2) \
41 LD(i + 3, 3) \
42 XO1(i, 0) \
43 ST(i, 0) \
44 XO1(i+1, 1) \
45 ST(i+1, 1) \
46 XO1(i + 2, 2) \
47 ST(i + 2, 2) \
48 XO1(i + 3, 3) \
49 ST(i + 3, 3)
51 " .align 32 ;\n"
52 " 1: ;\n"
54 BLOCK(0)
55 BLOCK(4)
56 BLOCK(8)
57 BLOCK(12)
59 " addl $128, %1 ;\n"
60 " addl $128, %2 ;\n"
61 " decl %0 ;\n"
62 " jnz 1b ;\n"
63 : "+r" (lines),
64 "+r" (p1), "+r" (p2)
66 : "memory");
68 kernel_fpu_end();
71 static void
72 xor_pII_mmx_3(unsigned long bytes, unsigned long *p1, unsigned long *p2,
73 unsigned long *p3)
75 unsigned long lines = bytes >> 7;
77 kernel_fpu_begin();
79 asm volatile(
80 #undef BLOCK
81 #define BLOCK(i) \
82 LD(i, 0) \
83 LD(i + 1, 1) \
84 LD(i + 2, 2) \
85 LD(i + 3, 3) \
86 XO1(i, 0) \
87 XO1(i + 1, 1) \
88 XO1(i + 2, 2) \
89 XO1(i + 3, 3) \
90 XO2(i, 0) \
91 ST(i, 0) \
92 XO2(i + 1, 1) \
93 ST(i + 1, 1) \
94 XO2(i + 2, 2) \
95 ST(i + 2, 2) \
96 XO2(i + 3, 3) \
97 ST(i + 3, 3)
99 " .align 32 ;\n"
100 " 1: ;\n"
102 BLOCK(0)
103 BLOCK(4)
104 BLOCK(8)
105 BLOCK(12)
107 " addl $128, %1 ;\n"
108 " addl $128, %2 ;\n"
109 " addl $128, %3 ;\n"
110 " decl %0 ;\n"
111 " jnz 1b ;\n"
112 : "+r" (lines),
113 "+r" (p1), "+r" (p2), "+r" (p3)
115 : "memory");
117 kernel_fpu_end();
120 static void
121 xor_pII_mmx_4(unsigned long bytes, unsigned long *p1, unsigned long *p2,
122 unsigned long *p3, unsigned long *p4)
124 unsigned long lines = bytes >> 7;
126 kernel_fpu_begin();
128 asm volatile(
129 #undef BLOCK
130 #define BLOCK(i) \
131 LD(i, 0) \
132 LD(i + 1, 1) \
133 LD(i + 2, 2) \
134 LD(i + 3, 3) \
135 XO1(i, 0) \
136 XO1(i + 1, 1) \
137 XO1(i + 2, 2) \
138 XO1(i + 3, 3) \
139 XO2(i, 0) \
140 XO2(i + 1, 1) \
141 XO2(i + 2, 2) \
142 XO2(i + 3, 3) \
143 XO3(i, 0) \
144 ST(i, 0) \
145 XO3(i + 1, 1) \
146 ST(i + 1, 1) \
147 XO3(i + 2, 2) \
148 ST(i + 2, 2) \
149 XO3(i + 3, 3) \
150 ST(i + 3, 3)
152 " .align 32 ;\n"
153 " 1: ;\n"
155 BLOCK(0)
156 BLOCK(4)
157 BLOCK(8)
158 BLOCK(12)
160 " addl $128, %1 ;\n"
161 " addl $128, %2 ;\n"
162 " addl $128, %3 ;\n"
163 " addl $128, %4 ;\n"
164 " decl %0 ;\n"
165 " jnz 1b ;\n"
166 : "+r" (lines),
167 "+r" (p1), "+r" (p2), "+r" (p3), "+r" (p4)
169 : "memory");
171 kernel_fpu_end();
175 static void
176 xor_pII_mmx_5(unsigned long bytes, unsigned long *p1, unsigned long *p2,
177 unsigned long *p3, unsigned long *p4, unsigned long *p5)
179 unsigned long lines = bytes >> 7;
181 kernel_fpu_begin();
183 /* Make sure GCC forgets anything it knows about p4 or p5,
184 such that it won't pass to the asm volatile below a
185 register that is shared with any other variable. That's
186 because we modify p4 and p5 there, but we can't mark them
187 as read/write, otherwise we'd overflow the 10-asm-operands
188 limit of GCC < 3.1. */
189 asm("" : "+r" (p4), "+r" (p5));
191 asm volatile(
192 #undef BLOCK
193 #define BLOCK(i) \
194 LD(i, 0) \
195 LD(i + 1, 1) \
196 LD(i + 2, 2) \
197 LD(i + 3, 3) \
198 XO1(i, 0) \
199 XO1(i + 1, 1) \
200 XO1(i + 2, 2) \
201 XO1(i + 3, 3) \
202 XO2(i, 0) \
203 XO2(i + 1, 1) \
204 XO2(i + 2, 2) \
205 XO2(i + 3, 3) \
206 XO3(i, 0) \
207 XO3(i + 1, 1) \
208 XO3(i + 2, 2) \
209 XO3(i + 3, 3) \
210 XO4(i, 0) \
211 ST(i, 0) \
212 XO4(i + 1, 1) \
213 ST(i + 1, 1) \
214 XO4(i + 2, 2) \
215 ST(i + 2, 2) \
216 XO4(i + 3, 3) \
217 ST(i + 3, 3)
219 " .align 32 ;\n"
220 " 1: ;\n"
222 BLOCK(0)
223 BLOCK(4)
224 BLOCK(8)
225 BLOCK(12)
227 " addl $128, %1 ;\n"
228 " addl $128, %2 ;\n"
229 " addl $128, %3 ;\n"
230 " addl $128, %4 ;\n"
231 " addl $128, %5 ;\n"
232 " decl %0 ;\n"
233 " jnz 1b ;\n"
234 : "+r" (lines),
235 "+r" (p1), "+r" (p2), "+r" (p3)
236 : "r" (p4), "r" (p5)
237 : "memory");
239 /* p4 and p5 were modified, and now the variables are dead.
240 Clobber them just to be sure nobody does something stupid
241 like assuming they have some legal value. */
242 asm("" : "=r" (p4), "=r" (p5));
244 kernel_fpu_end();
247 #undef LD
248 #undef XO1
249 #undef XO2
250 #undef XO3
251 #undef XO4
252 #undef ST
253 #undef BLOCK
255 static void
256 xor_p5_mmx_2(unsigned long bytes, unsigned long *p1, unsigned long *p2)
258 unsigned long lines = bytes >> 6;
260 kernel_fpu_begin();
262 asm volatile(
263 " .align 32 ;\n"
264 " 1: ;\n"
265 " movq (%1), %%mm0 ;\n"
266 " movq 8(%1), %%mm1 ;\n"
267 " pxor (%2), %%mm0 ;\n"
268 " movq 16(%1), %%mm2 ;\n"
269 " movq %%mm0, (%1) ;\n"
270 " pxor 8(%2), %%mm1 ;\n"
271 " movq 24(%1), %%mm3 ;\n"
272 " movq %%mm1, 8(%1) ;\n"
273 " pxor 16(%2), %%mm2 ;\n"
274 " movq 32(%1), %%mm4 ;\n"
275 " movq %%mm2, 16(%1) ;\n"
276 " pxor 24(%2), %%mm3 ;\n"
277 " movq 40(%1), %%mm5 ;\n"
278 " movq %%mm3, 24(%1) ;\n"
279 " pxor 32(%2), %%mm4 ;\n"
280 " movq 48(%1), %%mm6 ;\n"
281 " movq %%mm4, 32(%1) ;\n"
282 " pxor 40(%2), %%mm5 ;\n"
283 " movq 56(%1), %%mm7 ;\n"
284 " movq %%mm5, 40(%1) ;\n"
285 " pxor 48(%2), %%mm6 ;\n"
286 " pxor 56(%2), %%mm7 ;\n"
287 " movq %%mm6, 48(%1) ;\n"
288 " movq %%mm7, 56(%1) ;\n"
290 " addl $64, %1 ;\n"
291 " addl $64, %2 ;\n"
292 " decl %0 ;\n"
293 " jnz 1b ;\n"
294 : "+r" (lines),
295 "+r" (p1), "+r" (p2)
297 : "memory");
299 kernel_fpu_end();
302 static void
303 xor_p5_mmx_3(unsigned long bytes, unsigned long *p1, unsigned long *p2,
304 unsigned long *p3)
306 unsigned long lines = bytes >> 6;
308 kernel_fpu_begin();
310 asm volatile(
311 " .align 32,0x90 ;\n"
312 " 1: ;\n"
313 " movq (%1), %%mm0 ;\n"
314 " movq 8(%1), %%mm1 ;\n"
315 " pxor (%2), %%mm0 ;\n"
316 " movq 16(%1), %%mm2 ;\n"
317 " pxor 8(%2), %%mm1 ;\n"
318 " pxor (%3), %%mm0 ;\n"
319 " pxor 16(%2), %%mm2 ;\n"
320 " movq %%mm0, (%1) ;\n"
321 " pxor 8(%3), %%mm1 ;\n"
322 " pxor 16(%3), %%mm2 ;\n"
323 " movq 24(%1), %%mm3 ;\n"
324 " movq %%mm1, 8(%1) ;\n"
325 " movq 32(%1), %%mm4 ;\n"
326 " movq 40(%1), %%mm5 ;\n"
327 " pxor 24(%2), %%mm3 ;\n"
328 " movq %%mm2, 16(%1) ;\n"
329 " pxor 32(%2), %%mm4 ;\n"
330 " pxor 24(%3), %%mm3 ;\n"
331 " pxor 40(%2), %%mm5 ;\n"
332 " movq %%mm3, 24(%1) ;\n"
333 " pxor 32(%3), %%mm4 ;\n"
334 " pxor 40(%3), %%mm5 ;\n"
335 " movq 48(%1), %%mm6 ;\n"
336 " movq %%mm4, 32(%1) ;\n"
337 " movq 56(%1), %%mm7 ;\n"
338 " pxor 48(%2), %%mm6 ;\n"
339 " movq %%mm5, 40(%1) ;\n"
340 " pxor 56(%2), %%mm7 ;\n"
341 " pxor 48(%3), %%mm6 ;\n"
342 " pxor 56(%3), %%mm7 ;\n"
343 " movq %%mm6, 48(%1) ;\n"
344 " movq %%mm7, 56(%1) ;\n"
346 " addl $64, %1 ;\n"
347 " addl $64, %2 ;\n"
348 " addl $64, %3 ;\n"
349 " decl %0 ;\n"
350 " jnz 1b ;\n"
351 : "+r" (lines),
352 "+r" (p1), "+r" (p2), "+r" (p3)
354 : "memory" );
356 kernel_fpu_end();
359 static void
360 xor_p5_mmx_4(unsigned long bytes, unsigned long *p1, unsigned long *p2,
361 unsigned long *p3, unsigned long *p4)
363 unsigned long lines = bytes >> 6;
365 kernel_fpu_begin();
367 asm volatile(
368 " .align 32,0x90 ;\n"
369 " 1: ;\n"
370 " movq (%1), %%mm0 ;\n"
371 " movq 8(%1), %%mm1 ;\n"
372 " pxor (%2), %%mm0 ;\n"
373 " movq 16(%1), %%mm2 ;\n"
374 " pxor 8(%2), %%mm1 ;\n"
375 " pxor (%3), %%mm0 ;\n"
376 " pxor 16(%2), %%mm2 ;\n"
377 " pxor 8(%3), %%mm1 ;\n"
378 " pxor (%4), %%mm0 ;\n"
379 " movq 24(%1), %%mm3 ;\n"
380 " pxor 16(%3), %%mm2 ;\n"
381 " pxor 8(%4), %%mm1 ;\n"
382 " movq %%mm0, (%1) ;\n"
383 " movq 32(%1), %%mm4 ;\n"
384 " pxor 24(%2), %%mm3 ;\n"
385 " pxor 16(%4), %%mm2 ;\n"
386 " movq %%mm1, 8(%1) ;\n"
387 " movq 40(%1), %%mm5 ;\n"
388 " pxor 32(%2), %%mm4 ;\n"
389 " pxor 24(%3), %%mm3 ;\n"
390 " movq %%mm2, 16(%1) ;\n"
391 " pxor 40(%2), %%mm5 ;\n"
392 " pxor 32(%3), %%mm4 ;\n"
393 " pxor 24(%4), %%mm3 ;\n"
394 " movq %%mm3, 24(%1) ;\n"
395 " movq 56(%1), %%mm7 ;\n"
396 " movq 48(%1), %%mm6 ;\n"
397 " pxor 40(%3), %%mm5 ;\n"
398 " pxor 32(%4), %%mm4 ;\n"
399 " pxor 48(%2), %%mm6 ;\n"
400 " movq %%mm4, 32(%1) ;\n"
401 " pxor 56(%2), %%mm7 ;\n"
402 " pxor 40(%4), %%mm5 ;\n"
403 " pxor 48(%3), %%mm6 ;\n"
404 " pxor 56(%3), %%mm7 ;\n"
405 " movq %%mm5, 40(%1) ;\n"
406 " pxor 48(%4), %%mm6 ;\n"
407 " pxor 56(%4), %%mm7 ;\n"
408 " movq %%mm6, 48(%1) ;\n"
409 " movq %%mm7, 56(%1) ;\n"
411 " addl $64, %1 ;\n"
412 " addl $64, %2 ;\n"
413 " addl $64, %3 ;\n"
414 " addl $64, %4 ;\n"
415 " decl %0 ;\n"
416 " jnz 1b ;\n"
417 : "+r" (lines),
418 "+r" (p1), "+r" (p2), "+r" (p3), "+r" (p4)
420 : "memory");
422 kernel_fpu_end();
425 static void
426 xor_p5_mmx_5(unsigned long bytes, unsigned long *p1, unsigned long *p2,
427 unsigned long *p3, unsigned long *p4, unsigned long *p5)
429 unsigned long lines = bytes >> 6;
431 kernel_fpu_begin();
433 /* Make sure GCC forgets anything it knows about p4 or p5,
434 such that it won't pass to the asm volatile below a
435 register that is shared with any other variable. That's
436 because we modify p4 and p5 there, but we can't mark them
437 as read/write, otherwise we'd overflow the 10-asm-operands
438 limit of GCC < 3.1. */
439 asm("" : "+r" (p4), "+r" (p5));
441 asm volatile(
442 " .align 32,0x90 ;\n"
443 " 1: ;\n"
444 " movq (%1), %%mm0 ;\n"
445 " movq 8(%1), %%mm1 ;\n"
446 " pxor (%2), %%mm0 ;\n"
447 " pxor 8(%2), %%mm1 ;\n"
448 " movq 16(%1), %%mm2 ;\n"
449 " pxor (%3), %%mm0 ;\n"
450 " pxor 8(%3), %%mm1 ;\n"
451 " pxor 16(%2), %%mm2 ;\n"
452 " pxor (%4), %%mm0 ;\n"
453 " pxor 8(%4), %%mm1 ;\n"
454 " pxor 16(%3), %%mm2 ;\n"
455 " movq 24(%1), %%mm3 ;\n"
456 " pxor (%5), %%mm0 ;\n"
457 " pxor 8(%5), %%mm1 ;\n"
458 " movq %%mm0, (%1) ;\n"
459 " pxor 16(%4), %%mm2 ;\n"
460 " pxor 24(%2), %%mm3 ;\n"
461 " movq %%mm1, 8(%1) ;\n"
462 " pxor 16(%5), %%mm2 ;\n"
463 " pxor 24(%3), %%mm3 ;\n"
464 " movq 32(%1), %%mm4 ;\n"
465 " movq %%mm2, 16(%1) ;\n"
466 " pxor 24(%4), %%mm3 ;\n"
467 " pxor 32(%2), %%mm4 ;\n"
468 " movq 40(%1), %%mm5 ;\n"
469 " pxor 24(%5), %%mm3 ;\n"
470 " pxor 32(%3), %%mm4 ;\n"
471 " pxor 40(%2), %%mm5 ;\n"
472 " movq %%mm3, 24(%1) ;\n"
473 " pxor 32(%4), %%mm4 ;\n"
474 " pxor 40(%3), %%mm5 ;\n"
475 " movq 48(%1), %%mm6 ;\n"
476 " movq 56(%1), %%mm7 ;\n"
477 " pxor 32(%5), %%mm4 ;\n"
478 " pxor 40(%4), %%mm5 ;\n"
479 " pxor 48(%2), %%mm6 ;\n"
480 " pxor 56(%2), %%mm7 ;\n"
481 " movq %%mm4, 32(%1) ;\n"
482 " pxor 48(%3), %%mm6 ;\n"
483 " pxor 56(%3), %%mm7 ;\n"
484 " pxor 40(%5), %%mm5 ;\n"
485 " pxor 48(%4), %%mm6 ;\n"
486 " pxor 56(%4), %%mm7 ;\n"
487 " movq %%mm5, 40(%1) ;\n"
488 " pxor 48(%5), %%mm6 ;\n"
489 " pxor 56(%5), %%mm7 ;\n"
490 " movq %%mm6, 48(%1) ;\n"
491 " movq %%mm7, 56(%1) ;\n"
493 " addl $64, %1 ;\n"
494 " addl $64, %2 ;\n"
495 " addl $64, %3 ;\n"
496 " addl $64, %4 ;\n"
497 " addl $64, %5 ;\n"
498 " decl %0 ;\n"
499 " jnz 1b ;\n"
500 : "+r" (lines),
501 "+r" (p1), "+r" (p2), "+r" (p3)
502 : "r" (p4), "r" (p5)
503 : "memory");
505 /* p4 and p5 were modified, and now the variables are dead.
506 Clobber them just to be sure nobody does something stupid
507 like assuming they have some legal value. */
508 asm("" : "=r" (p4), "=r" (p5));
510 kernel_fpu_end();
513 static struct xor_block_template xor_block_pII_mmx = {
514 .name = "pII_mmx",
515 .do_2 = xor_pII_mmx_2,
516 .do_3 = xor_pII_mmx_3,
517 .do_4 = xor_pII_mmx_4,
518 .do_5 = xor_pII_mmx_5,
521 static struct xor_block_template xor_block_p5_mmx = {
522 .name = "p5_mmx",
523 .do_2 = xor_p5_mmx_2,
524 .do_3 = xor_p5_mmx_3,
525 .do_4 = xor_p5_mmx_4,
526 .do_5 = xor_p5_mmx_5,
530 * Cache avoiding checksumming functions utilizing KNI instructions
531 * Copyright (C) 1999 Zach Brown (with obvious credit due Ingo)
534 #define XMMS_SAVE \
535 do { \
536 preempt_disable(); \
537 cr0 = read_cr0(); \
538 clts(); \
539 asm volatile( \
540 "movups %%xmm0,(%0) ;\n\t" \
541 "movups %%xmm1,0x10(%0) ;\n\t" \
542 "movups %%xmm2,0x20(%0) ;\n\t" \
543 "movups %%xmm3,0x30(%0) ;\n\t" \
545 : "r" (xmm_save) \
546 : "memory"); \
547 } while (0)
549 #define XMMS_RESTORE \
550 do { \
551 asm volatile( \
552 "sfence ;\n\t" \
553 "movups (%0),%%xmm0 ;\n\t" \
554 "movups 0x10(%0),%%xmm1 ;\n\t" \
555 "movups 0x20(%0),%%xmm2 ;\n\t" \
556 "movups 0x30(%0),%%xmm3 ;\n\t" \
558 : "r" (xmm_save) \
559 : "memory"); \
560 write_cr0(cr0); \
561 preempt_enable(); \
562 } while (0)
564 #define ALIGN16 __attribute__((aligned(16)))
566 #define OFFS(x) "16*("#x")"
567 #define PF_OFFS(x) "256+16*("#x")"
568 #define PF0(x) " prefetchnta "PF_OFFS(x)"(%1) ;\n"
569 #define LD(x, y) " movaps "OFFS(x)"(%1), %%xmm"#y" ;\n"
570 #define ST(x, y) " movaps %%xmm"#y", "OFFS(x)"(%1) ;\n"
571 #define PF1(x) " prefetchnta "PF_OFFS(x)"(%2) ;\n"
572 #define PF2(x) " prefetchnta "PF_OFFS(x)"(%3) ;\n"
573 #define PF3(x) " prefetchnta "PF_OFFS(x)"(%4) ;\n"
574 #define PF4(x) " prefetchnta "PF_OFFS(x)"(%5) ;\n"
575 #define PF5(x) " prefetchnta "PF_OFFS(x)"(%6) ;\n"
576 #define XO1(x, y) " xorps "OFFS(x)"(%2), %%xmm"#y" ;\n"
577 #define XO2(x, y) " xorps "OFFS(x)"(%3), %%xmm"#y" ;\n"
578 #define XO3(x, y) " xorps "OFFS(x)"(%4), %%xmm"#y" ;\n"
579 #define XO4(x, y) " xorps "OFFS(x)"(%5), %%xmm"#y" ;\n"
580 #define XO5(x, y) " xorps "OFFS(x)"(%6), %%xmm"#y" ;\n"
583 static void
584 xor_sse_2(unsigned long bytes, unsigned long *p1, unsigned long *p2)
586 unsigned long lines = bytes >> 8;
587 char xmm_save[16*4] ALIGN16;
588 int cr0;
590 XMMS_SAVE;
592 asm volatile(
593 #undef BLOCK
594 #define BLOCK(i) \
595 LD(i, 0) \
596 LD(i + 1, 1) \
597 PF1(i) \
598 PF1(i + 2) \
599 LD(i + 2, 2) \
600 LD(i + 3, 3) \
601 PF0(i + 4) \
602 PF0(i + 6) \
603 XO1(i, 0) \
604 XO1(i + 1, 1) \
605 XO1(i + 2, 2) \
606 XO1(i + 3, 3) \
607 ST(i, 0) \
608 ST(i + 1, 1) \
609 ST(i + 2, 2) \
610 ST(i + 3, 3) \
613 PF0(0)
614 PF0(2)
616 " .align 32 ;\n"
617 " 1: ;\n"
619 BLOCK(0)
620 BLOCK(4)
621 BLOCK(8)
622 BLOCK(12)
624 " addl $256, %1 ;\n"
625 " addl $256, %2 ;\n"
626 " decl %0 ;\n"
627 " jnz 1b ;\n"
628 : "+r" (lines),
629 "+r" (p1), "+r" (p2)
631 : "memory");
633 XMMS_RESTORE;
636 static void
637 xor_sse_3(unsigned long bytes, unsigned long *p1, unsigned long *p2,
638 unsigned long *p3)
640 unsigned long lines = bytes >> 8;
641 char xmm_save[16*4] ALIGN16;
642 int cr0;
644 XMMS_SAVE;
646 asm volatile(
647 #undef BLOCK
648 #define BLOCK(i) \
649 PF1(i) \
650 PF1(i + 2) \
651 LD(i,0) \
652 LD(i + 1, 1) \
653 LD(i + 2, 2) \
654 LD(i + 3, 3) \
655 PF2(i) \
656 PF2(i + 2) \
657 PF0(i + 4) \
658 PF0(i + 6) \
659 XO1(i,0) \
660 XO1(i + 1, 1) \
661 XO1(i + 2, 2) \
662 XO1(i + 3, 3) \
663 XO2(i,0) \
664 XO2(i + 1, 1) \
665 XO2(i + 2, 2) \
666 XO2(i + 3, 3) \
667 ST(i,0) \
668 ST(i + 1, 1) \
669 ST(i + 2, 2) \
670 ST(i + 3, 3) \
673 PF0(0)
674 PF0(2)
676 " .align 32 ;\n"
677 " 1: ;\n"
679 BLOCK(0)
680 BLOCK(4)
681 BLOCK(8)
682 BLOCK(12)
684 " addl $256, %1 ;\n"
685 " addl $256, %2 ;\n"
686 " addl $256, %3 ;\n"
687 " decl %0 ;\n"
688 " jnz 1b ;\n"
689 : "+r" (lines),
690 "+r" (p1), "+r"(p2), "+r"(p3)
692 : "memory" );
694 XMMS_RESTORE;
697 static void
698 xor_sse_4(unsigned long bytes, unsigned long *p1, unsigned long *p2,
699 unsigned long *p3, unsigned long *p4)
701 unsigned long lines = bytes >> 8;
702 char xmm_save[16*4] ALIGN16;
703 int cr0;
705 XMMS_SAVE;
707 asm volatile(
708 #undef BLOCK
709 #define BLOCK(i) \
710 PF1(i) \
711 PF1(i + 2) \
712 LD(i,0) \
713 LD(i + 1, 1) \
714 LD(i + 2, 2) \
715 LD(i + 3, 3) \
716 PF2(i) \
717 PF2(i + 2) \
718 XO1(i,0) \
719 XO1(i + 1, 1) \
720 XO1(i + 2, 2) \
721 XO1(i + 3, 3) \
722 PF3(i) \
723 PF3(i + 2) \
724 PF0(i + 4) \
725 PF0(i + 6) \
726 XO2(i,0) \
727 XO2(i + 1, 1) \
728 XO2(i + 2, 2) \
729 XO2(i + 3, 3) \
730 XO3(i,0) \
731 XO3(i + 1, 1) \
732 XO3(i + 2, 2) \
733 XO3(i + 3, 3) \
734 ST(i,0) \
735 ST(i + 1, 1) \
736 ST(i + 2, 2) \
737 ST(i + 3, 3) \
740 PF0(0)
741 PF0(2)
743 " .align 32 ;\n"
744 " 1: ;\n"
746 BLOCK(0)
747 BLOCK(4)
748 BLOCK(8)
749 BLOCK(12)
751 " addl $256, %1 ;\n"
752 " addl $256, %2 ;\n"
753 " addl $256, %3 ;\n"
754 " addl $256, %4 ;\n"
755 " decl %0 ;\n"
756 " jnz 1b ;\n"
757 : "+r" (lines),
758 "+r" (p1), "+r" (p2), "+r" (p3), "+r" (p4)
760 : "memory" );
762 XMMS_RESTORE;
765 static void
766 xor_sse_5(unsigned long bytes, unsigned long *p1, unsigned long *p2,
767 unsigned long *p3, unsigned long *p4, unsigned long *p5)
769 unsigned long lines = bytes >> 8;
770 char xmm_save[16*4] ALIGN16;
771 int cr0;
773 XMMS_SAVE;
775 /* Make sure GCC forgets anything it knows about p4 or p5,
776 such that it won't pass to the asm volatile below a
777 register that is shared with any other variable. That's
778 because we modify p4 and p5 there, but we can't mark them
779 as read/write, otherwise we'd overflow the 10-asm-operands
780 limit of GCC < 3.1. */
781 asm("" : "+r" (p4), "+r" (p5));
783 asm volatile(
784 #undef BLOCK
785 #define BLOCK(i) \
786 PF1(i) \
787 PF1(i + 2) \
788 LD(i,0) \
789 LD(i + 1, 1) \
790 LD(i + 2, 2) \
791 LD(i + 3, 3) \
792 PF2(i) \
793 PF2(i + 2) \
794 XO1(i,0) \
795 XO1(i + 1, 1) \
796 XO1(i + 2, 2) \
797 XO1(i + 3, 3) \
798 PF3(i) \
799 PF3(i + 2) \
800 XO2(i,0) \
801 XO2(i + 1, 1) \
802 XO2(i + 2, 2) \
803 XO2(i + 3, 3) \
804 PF4(i) \
805 PF4(i + 2) \
806 PF0(i + 4) \
807 PF0(i + 6) \
808 XO3(i,0) \
809 XO3(i + 1, 1) \
810 XO3(i + 2, 2) \
811 XO3(i + 3, 3) \
812 XO4(i,0) \
813 XO4(i + 1, 1) \
814 XO4(i + 2, 2) \
815 XO4(i + 3, 3) \
816 ST(i,0) \
817 ST(i + 1, 1) \
818 ST(i + 2, 2) \
819 ST(i + 3, 3) \
822 PF0(0)
823 PF0(2)
825 " .align 32 ;\n"
826 " 1: ;\n"
828 BLOCK(0)
829 BLOCK(4)
830 BLOCK(8)
831 BLOCK(12)
833 " addl $256, %1 ;\n"
834 " addl $256, %2 ;\n"
835 " addl $256, %3 ;\n"
836 " addl $256, %4 ;\n"
837 " addl $256, %5 ;\n"
838 " decl %0 ;\n"
839 " jnz 1b ;\n"
840 : "+r" (lines),
841 "+r" (p1), "+r" (p2), "+r" (p3)
842 : "r" (p4), "r" (p5)
843 : "memory");
845 /* p4 and p5 were modified, and now the variables are dead.
846 Clobber them just to be sure nobody does something stupid
847 like assuming they have some legal value. */
848 asm("" : "=r" (p4), "=r" (p5));
850 XMMS_RESTORE;
853 static struct xor_block_template xor_block_pIII_sse = {
854 .name = "pIII_sse",
855 .do_2 = xor_sse_2,
856 .do_3 = xor_sse_3,
857 .do_4 = xor_sse_4,
858 .do_5 = xor_sse_5,
861 /* Also try the generic routines. */
862 #include <asm-generic/xor.h>
864 #undef XOR_TRY_TEMPLATES
865 #define XOR_TRY_TEMPLATES \
866 do { \
867 xor_speed(&xor_block_8regs); \
868 xor_speed(&xor_block_8regs_p); \
869 xor_speed(&xor_block_32regs); \
870 xor_speed(&xor_block_32regs_p); \
871 if (cpu_has_xmm) \
872 xor_speed(&xor_block_pIII_sse); \
873 if (cpu_has_mmx) { \
874 xor_speed(&xor_block_pII_mmx); \
875 xor_speed(&xor_block_p5_mmx); \
877 } while (0)
879 /* We force the use of the SSE xor block because it can write around L2.
880 We may also be able to load into the L1 only depending on how the cpu
881 deals with a load to a line that is being prefetched. */
882 #define XOR_SELECT_TEMPLATE(FASTEST) \
883 (cpu_has_xmm ? &xor_block_pIII_sse : FASTEST)