Manish V Badarkhe | 7a86792 | 2021-04-22 14:41:27 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2021, Arm Limited. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Manish V Badarkhe | a26bf35 | 2021-07-02 20:29:56 +0100 | [diff] [blame] | 7 | #ifndef TF_CRC32_H |
| 8 | #define TF_CRC32_H |
Manish V Badarkhe | 7a86792 | 2021-04-22 14:41:27 +0100 | [diff] [blame] | 9 | |
| 10 | #include <stddef.h> |
| 11 | #include <stdint.h> |
| 12 | |
| 13 | /* compute CRC using Arm intrinsic function */ |
Manish V Badarkhe | a26bf35 | 2021-07-02 20:29:56 +0100 | [diff] [blame] | 14 | uint32_t tf_crc32(uint32_t crc, const unsigned char *buf, size_t size); |
Manish V Badarkhe | 7a86792 | 2021-04-22 14:41:27 +0100 | [diff] [blame] | 15 | |
Manish V Badarkhe | a26bf35 | 2021-07-02 20:29:56 +0100 | [diff] [blame] | 16 | #endif /* TF_CRC32_H */ |