at v6.16 6.2 kB view raw
1/* SPDX-License-Identifier: GPL-2.0-or-later */ 2/* -*- linux-c -*- ------------------------------------------------------- * 3 * 4 * Copyright 2003 H. Peter Anvin - All Rights Reserved 5 * 6 * ----------------------------------------------------------------------- */ 7 8#ifndef LINUX_RAID_RAID6_H 9#define LINUX_RAID_RAID6_H 10 11#ifdef __KERNEL__ 12 13#include <linux/blkdev.h> 14 15extern const char raid6_empty_zero_page[PAGE_SIZE]; 16 17#else /* ! __KERNEL__ */ 18/* Used for testing in user space */ 19 20#include <errno.h> 21#include <inttypes.h> 22#include <stddef.h> 23#include <string.h> 24#include <sys/mman.h> 25#include <sys/time.h> 26#include <sys/types.h> 27 28/* Not standard, but glibc defines it */ 29#define BITS_PER_LONG __WORDSIZE 30 31typedef uint8_t u8; 32typedef uint16_t u16; 33typedef uint32_t u32; 34typedef uint64_t u64; 35 36#ifndef PAGE_SIZE 37# define PAGE_SIZE 4096 38#endif 39#ifndef PAGE_SHIFT 40# define PAGE_SHIFT 12 41#endif 42extern const char raid6_empty_zero_page[PAGE_SIZE]; 43 44#define __init 45#define __exit 46#ifndef __attribute_const__ 47# define __attribute_const__ __attribute__((const)) 48#endif 49#define noinline __attribute__((noinline)) 50 51#define preempt_enable() 52#define preempt_disable() 53#define cpu_has_feature(x) 1 54#define enable_kernel_altivec() 55#define disable_kernel_altivec() 56 57#undef EXPORT_SYMBOL 58#define EXPORT_SYMBOL(sym) 59#undef EXPORT_SYMBOL_GPL 60#define EXPORT_SYMBOL_GPL(sym) 61#define MODULE_LICENSE(licence) 62#define MODULE_DESCRIPTION(desc) 63#define subsys_initcall(x) 64#define module_exit(x) 65 66#define IS_ENABLED(x) (x) 67#define CONFIG_RAID6_PQ_BENCHMARK 1 68#endif /* __KERNEL__ */ 69 70/* Routine choices */ 71struct raid6_calls { 72 void (*gen_syndrome)(int, size_t, void **); 73 void (*xor_syndrome)(int, int, int, size_t, void **); 74 int (*valid)(void); /* Returns 1 if this routine set is usable */ 75 const char *name; /* Name of this routine set */ 76 int priority; /* Relative priority ranking if non-zero */ 77}; 78 79/* Selected algorithm */ 80extern struct raid6_calls raid6_call; 81 82/* Various routine sets */ 83extern const struct raid6_calls raid6_intx1; 84extern const struct raid6_calls raid6_intx2; 85extern const struct raid6_calls raid6_intx4; 86extern const struct raid6_calls raid6_intx8; 87extern const struct raid6_calls raid6_mmxx1; 88extern const struct raid6_calls raid6_mmxx2; 89extern const struct raid6_calls raid6_sse1x1; 90extern const struct raid6_calls raid6_sse1x2; 91extern const struct raid6_calls raid6_sse2x1; 92extern const struct raid6_calls raid6_sse2x2; 93extern const struct raid6_calls raid6_sse2x4; 94extern const struct raid6_calls raid6_altivec1; 95extern const struct raid6_calls raid6_altivec2; 96extern const struct raid6_calls raid6_altivec4; 97extern const struct raid6_calls raid6_altivec8; 98extern const struct raid6_calls raid6_avx2x1; 99extern const struct raid6_calls raid6_avx2x2; 100extern const struct raid6_calls raid6_avx2x4; 101extern const struct raid6_calls raid6_avx512x1; 102extern const struct raid6_calls raid6_avx512x2; 103extern const struct raid6_calls raid6_avx512x4; 104extern const struct raid6_calls raid6_s390vx8; 105extern const struct raid6_calls raid6_vpermxor1; 106extern const struct raid6_calls raid6_vpermxor2; 107extern const struct raid6_calls raid6_vpermxor4; 108extern const struct raid6_calls raid6_vpermxor8; 109extern const struct raid6_calls raid6_lsx; 110extern const struct raid6_calls raid6_lasx; 111extern const struct raid6_calls raid6_rvvx1; 112extern const struct raid6_calls raid6_rvvx2; 113extern const struct raid6_calls raid6_rvvx4; 114extern const struct raid6_calls raid6_rvvx8; 115 116struct raid6_recov_calls { 117 void (*data2)(int, size_t, int, int, void **); 118 void (*datap)(int, size_t, int, void **); 119 int (*valid)(void); 120 const char *name; 121 int priority; 122}; 123 124extern const struct raid6_recov_calls raid6_recov_intx1; 125extern const struct raid6_recov_calls raid6_recov_ssse3; 126extern const struct raid6_recov_calls raid6_recov_avx2; 127extern const struct raid6_recov_calls raid6_recov_avx512; 128extern const struct raid6_recov_calls raid6_recov_s390xc; 129extern const struct raid6_recov_calls raid6_recov_neon; 130extern const struct raid6_recov_calls raid6_recov_lsx; 131extern const struct raid6_recov_calls raid6_recov_lasx; 132extern const struct raid6_recov_calls raid6_recov_rvv; 133 134extern const struct raid6_calls raid6_neonx1; 135extern const struct raid6_calls raid6_neonx2; 136extern const struct raid6_calls raid6_neonx4; 137extern const struct raid6_calls raid6_neonx8; 138 139/* Algorithm list */ 140extern const struct raid6_calls * const raid6_algos[]; 141extern const struct raid6_recov_calls *const raid6_recov_algos[]; 142int raid6_select_algo(void); 143 144/* Return values from chk_syndrome */ 145#define RAID6_OK 0 146#define RAID6_P_BAD 1 147#define RAID6_Q_BAD 2 148#define RAID6_PQ_BAD 3 149 150/* Galois field tables */ 151extern const u8 raid6_gfmul[256][256] __attribute__((aligned(256))); 152extern const u8 raid6_vgfmul[256][32] __attribute__((aligned(256))); 153extern const u8 raid6_gfexp[256] __attribute__((aligned(256))); 154extern const u8 raid6_gflog[256] __attribute__((aligned(256))); 155extern const u8 raid6_gfinv[256] __attribute__((aligned(256))); 156extern const u8 raid6_gfexi[256] __attribute__((aligned(256))); 157 158/* Recovery routines */ 159extern void (*raid6_2data_recov)(int disks, size_t bytes, int faila, int failb, 160 void **ptrs); 161extern void (*raid6_datap_recov)(int disks, size_t bytes, int faila, 162 void **ptrs); 163void raid6_dual_recov(int disks, size_t bytes, int faila, int failb, 164 void **ptrs); 165 166/* Some definitions to allow code to be compiled for testing in userspace */ 167#ifndef __KERNEL__ 168 169# define jiffies raid6_jiffies() 170# define printk printf 171# define pr_err(format, ...) fprintf(stderr, format, ## __VA_ARGS__) 172# define pr_info(format, ...) fprintf(stdout, format, ## __VA_ARGS__) 173# define GFP_KERNEL 0 174# define __get_free_pages(x, y) ((unsigned long)mmap(NULL, PAGE_SIZE << (y), \ 175 PROT_READ|PROT_WRITE, \ 176 MAP_PRIVATE|MAP_ANONYMOUS,\ 177 0, 0)) 178# define free_pages(x, y) munmap((void *)(x), PAGE_SIZE << (y)) 179 180static inline void cpu_relax(void) 181{ 182 /* Nothing */ 183} 184 185#undef HZ 186#define HZ 1000 187static inline uint32_t raid6_jiffies(void) 188{ 189 struct timeval tv; 190 gettimeofday(&tv, NULL); 191 return tv.tv_sec*1000 + tv.tv_usec/1000; 192} 193 194#endif /* ! __KERNEL__ */ 195 196#endif /* LINUX_RAID_RAID6_H */