hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (c) 2022 Rockchip Electronics Co. Ltd.
 */
#ifndef _RKCRYPTO_CORE_INT_H_
#define _RKCRYPTO_CORE_INT_H_
 
#include <sys/ioctl.h>
#include "rkcrypto_common.h"
#include "rk_cryptodev.h"
 
#ifndef ROUNDUP
#define ROUNDUP(x, y) (((x) + ((y) - 1)) & ~((y) - 1))
#endif
 
RK_RES rk_crypto_fd_ioctl(uint32_t request, struct crypt_fd_map_op *mop);
 
#endif /* _RKCRYPTO_CORE_INT_H_ */