crc64.h 708 B

123456789101112131415161718192021222324252627
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * RISC-V optimized CRC64 functions
  4. *
  5. * Copyright 2025 Google LLC
  6. */
  7. #include <asm/hwcap.h>
  8. #include <asm/alternative-macros.h>
  9. #include "crc-clmul.h"
  10. static inline u64 crc64_be_arch(u64 crc, const u8 *p, size_t len)
  11. {
  12. if (riscv_has_extension_likely(RISCV_ISA_EXT_ZBC))
  13. return crc64_msb_clmul(crc, p, len,
  14. &crc64_msb_0x42f0e1eba9ea3693_consts);
  15. return crc64_be_generic(crc, p, len);
  16. }
  17. static inline u64 crc64_nvme_arch(u64 crc, const u8 *p, size_t len)
  18. {
  19. if (riscv_has_extension_likely(RISCV_ISA_EXT_ZBC))
  20. return crc64_lsb_clmul(crc, p, len,
  21. &crc64_lsb_0x9a6c9329ac4bc9b5_consts);
  22. return crc64_nvme_generic(crc, p, len);
  23. }