blob: 3156347452b9bbfe44e5fbc2973a05bcc8ce7a3b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* -*- linux-c -*- ------------------------------------------------------- *
2 *
3 * Copyright 2003 H. Peter Anvin - All Rights Reserved
4 *
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,
Atsushi SAKAI93ed05e2009-03-31 14:57:37 +11008 * Boston MA 02111-1307, USA; either version 2 of the License, or
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * (at your option) any later version; incorporated herein by reference.
10 *
11 * ----------------------------------------------------------------------- */
12
13#ifndef LINUX_RAID_RAID6_H
14#define LINUX_RAID_RAID6_H
15
16#ifdef __KERNEL__
17
18/* Set to 1 to use kernel-wide empty_zero_page */
19#define RAID6_USE_EMPTY_ZERO_PAGE 0
NeilBrownbff61972009-03-31 14:33:13 +110020#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022/* We need a pre-zeroed page... if we don't want to use the kernel-provided
23 one define it here */
24#if RAID6_USE_EMPTY_ZERO_PAGE
25# define raid6_empty_zero_page empty_zero_page
26#else
27extern const char raid6_empty_zero_page[PAGE_SIZE];
28#endif
29
30#else /* ! __KERNEL__ */
31/* Used for testing in user space */
32
33#include <errno.h>
34#include <inttypes.h>
35#include <limits.h>
36#include <stddef.h>
37#include <sys/mman.h>
38#include <sys/types.h>
39
40/* Not standard, but glibc defines it */
41#define BITS_PER_LONG __WORDSIZE
42
43typedef uint8_t u8;
44typedef uint16_t u16;
45typedef uint32_t u32;
46typedef uint64_t u64;
47
48#ifndef PAGE_SIZE
49# define PAGE_SIZE 4096
50#endif
51extern const char raid6_empty_zero_page[PAGE_SIZE];
52
53#define __init
54#define __exit
55#define __attribute_const__ __attribute__((const))
H. Peter Anvind7e70ba2005-09-16 19:27:29 -070056#define noinline __attribute__((noinline))
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#define preempt_enable()
59#define preempt_disable()
H. Peter Anvind7e70ba2005-09-16 19:27:29 -070060#define cpu_has_feature(x) 1
61#define enable_kernel_altivec()
62#define disable_kernel_altivec()
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Dan Williamsf701d582009-03-31 15:09:39 +110064#define EXPORT_SYMBOL(sym)
NeilBrownd5302fe2010-08-12 06:38:24 +100065#define EXPORT_SYMBOL_GPL(sym)
Dan Williamsf701d582009-03-31 15:09:39 +110066#define MODULE_LICENSE(licence)
NeilBrownd5302fe2010-08-12 06:38:24 +100067#define MODULE_DESCRIPTION(desc)
Dan Williamsf701d582009-03-31 15:09:39 +110068#define subsys_initcall(x)
69#define module_exit(x)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#endif /* __KERNEL__ */
71
72/* Routine choices */
73struct raid6_calls {
74 void (*gen_syndrome)(int, size_t, void **);
75 int (*valid)(void); /* Returns 1 if this routine set is usable */
76 const char *name; /* Name of this routine set */
77 int prefer; /* Has special performance attribute */
78};
79
80/* Selected algorithm */
81extern struct raid6_calls raid6_call;
82
NeilBrown7820f9e2009-12-14 12:49:47 +110083/* Various routine sets */
84extern const struct raid6_calls raid6_intx1;
85extern const struct raid6_calls raid6_intx2;
86extern const struct raid6_calls raid6_intx4;
87extern const struct raid6_calls raid6_intx8;
88extern const struct raid6_calls raid6_intx16;
89extern const struct raid6_calls raid6_intx32;
90extern const struct raid6_calls raid6_mmxx1;
91extern const struct raid6_calls raid6_mmxx2;
92extern const struct raid6_calls raid6_sse1x1;
93extern const struct raid6_calls raid6_sse1x2;
94extern const struct raid6_calls raid6_sse2x1;
95extern const struct raid6_calls raid6_sse2x2;
96extern const struct raid6_calls raid6_sse2x4;
97extern const struct raid6_calls raid6_altivec1;
98extern const struct raid6_calls raid6_altivec2;
99extern const struct raid6_calls raid6_altivec4;
100extern const struct raid6_calls raid6_altivec8;
101
Jim Kukunas048a8b82012-05-22 13:54:18 +1000102struct raid6_recov_calls {
103 void (*data2)(int, size_t, int, int, void **);
104 void (*datap)(int, size_t, int, void **);
105 int (*valid)(void);
106 const char *name;
107 int priority;
108};
109
110extern const struct raid6_recov_calls raid6_recov_intx1;
111extern const struct raid6_recov_calls raid6_recov_ssse3;
Jim Kukunas70567412012-11-08 13:47:44 -0800112extern const struct raid6_recov_calls raid6_recov_avx2;
Jim Kukunas048a8b82012-05-22 13:54:18 +1000113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/* Algorithm list */
115extern const struct raid6_calls * const raid6_algos[];
Jim Kukunas048a8b82012-05-22 13:54:18 +1000116extern const struct raid6_recov_calls *const raid6_recov_algos[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117int raid6_select_algo(void);
118
119/* Return values from chk_syndrome */
120#define RAID6_OK 0
121#define RAID6_P_BAD 1
122#define RAID6_Q_BAD 2
123#define RAID6_PQ_BAD 3
124
125/* Galois field tables */
126extern const u8 raid6_gfmul[256][256] __attribute__((aligned(256)));
Jim Kukunas048a8b82012-05-22 13:54:18 +1000127extern const u8 raid6_vgfmul[256][32] __attribute__((aligned(256)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128extern const u8 raid6_gfexp[256] __attribute__((aligned(256)));
129extern const u8 raid6_gfinv[256] __attribute__((aligned(256)));
130extern const u8 raid6_gfexi[256] __attribute__((aligned(256)));
131
132/* Recovery routines */
Jim Kukunas048a8b82012-05-22 13:54:18 +1000133extern void (*raid6_2data_recov)(int disks, size_t bytes, int faila, int failb,
Dan Williamsf701d582009-03-31 15:09:39 +1100134 void **ptrs);
Jim Kukunas048a8b82012-05-22 13:54:18 +1000135extern void (*raid6_datap_recov)(int disks, size_t bytes, int faila,
136 void **ptrs);
Dan Williamsf701d582009-03-31 15:09:39 +1100137void raid6_dual_recov(int disks, size_t bytes, int faila, int failb,
138 void **ptrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140/* Some definitions to allow code to be compiled for testing in userspace */
141#ifndef __KERNEL__
142
143# define jiffies raid6_jiffies()
144# define printk printf
145# define GFP_KERNEL 0
Dan Williamsf701d582009-03-31 15:09:39 +1100146# define __get_free_pages(x, y) ((unsigned long)mmap(NULL, PAGE_SIZE << (y), \
147 PROT_READ|PROT_WRITE, \
148 MAP_PRIVATE|MAP_ANONYMOUS,\
149 0, 0))
Steven Rostedt38059ec2011-12-23 10:17:51 +1100150# define free_pages(x, y) munmap((void *)(x), PAGE_SIZE << (y))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152static inline void cpu_relax(void)
153{
154 /* Nothing */
155}
156
157#undef HZ
158#define HZ 1000
159static inline uint32_t raid6_jiffies(void)
160{
161 struct timeval tv;
162 gettimeofday(&tv, NULL);
163 return tv.tv_sec*1000 + tv.tv_usec/1000;
164}
165
166#endif /* ! __KERNEL__ */
167
168#endif /* LINUX_RAID_RAID6_H */