aboutsummaryrefslogtreecommitdiff
path: root/include/drivers/arm/cryptocell/712/util.h
blob: 18fb5999dcd46010b24bae3a9ce6369ea19c4815 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
 * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#ifndef UTIL_H
#define UTIL_H

/*
 * All the includes that are needed for code using this module to
 * compile correctly should be #included here.
 */

#ifdef __cplusplus
extern "C"
{
#endif

/************************ Defines ******************************/

/* invers the bytes on a word- used for output from HASH */
#ifdef BIG__ENDIAN
#define UTIL_INVERSE_UINT32_BYTES(val)	(val)
#else
#define UTIL_INVERSE_UINT32_BYTES(val) \
	(((val) >> 24) | (((val) & 0x00FF0000) >> 8) | (((val) & 0x0000FF00) << 8) | (((val) & 0x000000FF) << 24))
#endif

/* invers the bytes on a word - used for input data for HASH */
#ifdef BIG__ENDIAN
#define UTIL_REVERT_UINT32_BYTES(val) \
	(((val) >> 24) | (((val) & 0x00FF0000) >> 8) | (((val) & 0x0000FF00) << 8) | (((val) & 0x000000FF) << 24))
#else
#define UTIL_REVERT_UINT32_BYTES(val)	(val)
#endif

 /* ------------------------------------------------------------
 **
 * @brief This function executes a reverse bytes copying from one buffer to another buffer.
 *
 * @param[in] dst_ptr - The pointer to destination buffer.
 * @param[in] src_ptr - The pointer to source buffer.
 * @param[in] size    - The size in bytes.
 *
 */

void UTIL_ReverseMemCopy(uint8_t *dst_ptr, uint8_t *src_ptr, uint32_t size);


 /* ------------------------------------------------------------
  **
  * @brief This function executes a reversed byte copy on a specified buffer.
  *
  *        on a 6 byte byffer:
  *
  *        buff[5] <---> buff[0]
  *        buff[4] <---> buff[1]
  *        buff[3] <---> buff[2]
  *
  * @param[in] dst_ptr - The counter buffer.
  * @param[in] src_ptr - The counter size in bytes.
  *
  */
void UTIL_ReverseBuff(uint8_t *buff_ptr, uint32_t size);


#ifdef __cplusplus
}
#endif

#endif