1 /* -*- linux-c -*- ------------------------------------------------------- *
3 * Copyright 2002 H. Peter Anvin - All Rights Reserved
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, Inc., 53 Temple Place Ste 330,
8 * Bostom MA 02111-1307, USA; either version 2 of the License, or
9 * (at your option) any later version; incorporated herein by reference.
11 * ----------------------------------------------------------------------- */
16 * Algorithm list and algorithm selection for RAID-6
24 struct raid6_calls raid6_call;
26 /* Various routine sets */
27 extern const struct raid6_calls raid6_intx1;
28 extern const struct raid6_calls raid6_intx2;
29 extern const struct raid6_calls raid6_intx4;
30 extern const struct raid6_calls raid6_intx8;
31 extern const struct raid6_calls raid6_intx16;
32 extern const struct raid6_calls raid6_intx32;
33 extern const struct raid6_calls raid6_mmxx1;
34 extern const struct raid6_calls raid6_mmxx2;
35 extern const struct raid6_calls raid6_sse1x1;
36 extern const struct raid6_calls raid6_sse1x2;
37 extern const struct raid6_calls raid6_sse2x1;
38 extern const struct raid6_calls raid6_sse2x2;
39 extern const struct raid6_calls raid6_sse2x4;
40 extern const struct raid6_calls raid6_altivec1;
41 extern const struct raid6_calls raid6_altivec2;
42 extern const struct raid6_calls raid6_altivec4;
43 extern const struct raid6_calls raid6_altivec8;
45 const struct raid6_calls * const raid6_algos[] = {
62 #if defined(__x86_64__)
77 #define RAID6_TIME_JIFFIES_LG2 4
79 /* Need more time to be stable in userspace */
80 #define RAID6_TIME_JIFFIES_LG2 9
83 /* Try to pick the best algorithm */
84 /* This code uses the gfmul table as convenient data set to abuse */
86 int __init raid6_select_algo(void)
88 const struct raid6_calls * const * algo;
89 const struct raid6_calls * best;
91 void *dptrs[(65536/PAGE_SIZE)+2];
93 unsigned long perf, bestperf;
97 disks = (65536/PAGE_SIZE)+2;
98 for ( i = 0 ; i < disks-2 ; i++ ) {
99 dptrs[i] = ((char *)raid6_gfmul) + PAGE_SIZE*i;
102 /* Normal code - use a 2-page allocation to avoid D$ conflict */
103 syndromes = (void *) __get_free_pages(GFP_KERNEL, 1);
106 printk("raid6: Yikes! No memory available.\n");
110 dptrs[disks-2] = syndromes;
111 dptrs[disks-1] = syndromes + PAGE_SIZE;
113 bestperf = 0; bestprefer = 0; best = NULL;
115 for ( algo = raid6_algos ; *algo ; algo++ ) {
116 if ( !(*algo)->valid || (*algo)->valid() ) {
121 while ( (j1 = jiffies) == j0 )
123 while ( (jiffies-j1) < (1 << RAID6_TIME_JIFFIES_LG2) ) {
124 (*algo)->gen_syndrome(disks, PAGE_SIZE, dptrs);
129 if ( (*algo)->prefer > bestprefer ||
130 ((*algo)->prefer == bestprefer &&
133 bestprefer = best->prefer;
136 printk("raid6: %-8s %5ld MB/s\n", (*algo)->name,
137 (perf*HZ) >> (20-16+RAID6_TIME_JIFFIES_LG2));
142 printk("raid6: using algorithm %s (%ld MB/s)\n",
144 (bestperf*HZ) >> (20-16+RAID6_TIME_JIFFIES_LG2));
146 printk("raid6: Yikes! No algorithm found!\n");
150 free_pages((unsigned long)syndromes, 1);
152 return best ? 0 : -EINVAL;