aboutsummaryrefslogtreecommitdiff
path: root/include/common/tf_crc32.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/common/tf_crc32.h')
-rw-r--r--include/common/tf_crc32.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/common/tf_crc32.h b/include/common/tf_crc32.h
new file mode 100644
index 0000000000..38c56a50dc
--- /dev/null
+++ b/include/common/tf_crc32.h
@@ -0,0 +1,16 @@
+/*
+ * Copyright (c) 2021, Arm Limited. All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#ifndef TF_CRC32_H
+#define TF_CRC32_H
+
+#include <stddef.h>
+#include <stdint.h>
+
+/* compute CRC using Arm intrinsic function */
+uint32_t tf_crc32(uint32_t crc, const unsigned char *buf, size_t size);
+
+#endif /* TF_CRC32_H */