neon.uc 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* -----------------------------------------------------------------------
  2. *
  3. * neon.uc - RAID-6 syndrome calculation using ARM NEON instructions
  4. *
  5. * Copyright (C) 2012 Rob Herring
  6. *
  7. * Based on altivec.uc:
  8. * Copyright 2002-2004 H. Peter Anvin - All Rights Reserved
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation, Inc., 53 Temple Place Ste 330,
  13. * Boston MA 02111-1307, USA; either version 2 of the License, or
  14. * (at your option) any later version; incorporated herein by reference.
  15. *
  16. * ----------------------------------------------------------------------- */
  17. /*
  18. * neon$#.c
  19. *
  20. * $#-way unrolled NEON intrinsics math RAID-6 instruction set
  21. *
  22. * This file is postprocessed using unroll.awk
  23. */
  24. #include <arm_neon.h>
  25. typedef uint8x16_t unative_t;
  26. #define NBYTES(x) ((unative_t){x,x,x,x, x,x,x,x, x,x,x,x, x,x,x,x})
  27. #define NSIZE sizeof(unative_t)
  28. /*
  29. * The SHLBYTE() operation shifts each byte left by 1, *not*
  30. * rolling over into the next byte
  31. */
  32. static inline unative_t SHLBYTE(unative_t v)
  33. {
  34. return vshlq_n_u8(v, 1);
  35. }
  36. /*
  37. * The MASK() operation returns 0xFF in any byte for which the high
  38. * bit is 1, 0x00 for any byte for which the high bit is 0.
  39. */
  40. static inline unative_t MASK(unative_t v)
  41. {
  42. const uint8x16_t temp = NBYTES(0);
  43. return (unative_t)vcltq_s8((int8x16_t)v, (int8x16_t)temp);
  44. }
  45. void raid6_neon$#_gen_syndrome_real(int disks, unsigned long bytes, void **ptrs)
  46. {
  47. uint8_t **dptr = (uint8_t **)ptrs;
  48. uint8_t *p, *q;
  49. int d, z, z0;
  50. register unative_t wd$$, wq$$, wp$$, w1$$, w2$$;
  51. const unative_t x1d = NBYTES(0x1d);
  52. z0 = disks - 3; /* Highest data disk */
  53. p = dptr[z0+1]; /* XOR parity */
  54. q = dptr[z0+2]; /* RS syndrome */
  55. for ( d = 0 ; d < bytes ; d += NSIZE*$# ) {
  56. wq$$ = wp$$ = vld1q_u8(&dptr[z0][d+$$*NSIZE]);
  57. for ( z = z0-1 ; z >= 0 ; z-- ) {
  58. wd$$ = vld1q_u8(&dptr[z][d+$$*NSIZE]);
  59. wp$$ = veorq_u8(wp$$, wd$$);
  60. w2$$ = MASK(wq$$);
  61. w1$$ = SHLBYTE(wq$$);
  62. w2$$ = vandq_u8(w2$$, x1d);
  63. w1$$ = veorq_u8(w1$$, w2$$);
  64. wq$$ = veorq_u8(w1$$, wd$$);
  65. }
  66. vst1q_u8(&p[d+NSIZE*$$], wp$$);
  67. vst1q_u8(&q[d+NSIZE*$$], wq$$);
  68. }
  69. }