summaryrefslogtreecommitdiff
path: root/include/uapi/linux/rk_cryptodev.h
blob: 5714882354710ab8f8e17289f201bef74f6246b2 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
/* SPDX-License-Identifier: ((GPL-2.0+ WITH Linux-syscall-note) OR MIT) */
/*
 * Copyright (C) 2021 Rockchip Electronics Co., Ltd.
 */

#ifndef _UAPI_RK_CRYPTODEV_H
#define _UAPI_RK_CRYPTODEV_H

#include <linux/types.h>
#include <linux/version.h>

#ifndef __KERNEL__
#define __user
#endif

/* input of RIOCCRYPT_FD */
struct crypt_fd_op {
	__u32	ses;		/* session identifier */
	__u16	op;		/* COP_ENCRYPT or COP_DECRYPT */
	__u16	flags;		/* see COP_FLAG_* */
	__u32	len;		/* length of source data */
	int	src_fd;		/* source data */
	int	dst_fd;		/* pointer to output data */
	/* pointer to output data for hash/MAC operations */
	__u8	__user *mac;
	/* initialization vector for encryption operations */
	__u8	__user *iv;
};

/* input of RIOCAUTHCRYPT_FD */
struct crypt_auth_fd_op {
	__u32	ses;			/* session identifier */
	__u16	op;			/* COP_ENCRYPT or COP_DECRYPT */
	__u16	flags;			/* see COP_FLAG_AEAD_* */
	__u32	len;			/* length of source data */
	__u32	auth_len;		/* length of auth data */
	int	auth_fd;		/* authenticated-only data */
	int	src_fd;			/* source data */
	int	dst_fd;			/* pointer to output data */
	__u64	tag;
	__u32	tag_len;		/* the length of the tag. Use zero for digest size or max
					 * tag.
					 */
	__u64	iv;			/* initialization vector for encryption operations */
	__u32   iv_len;
};

/* input of RIOCCRYPT_FD_MAP/RIOCCRYPT_FD_UNMAP */
struct crypt_fd_map_op {
	int	dma_fd;		/* session identifier */
	__u32	phys_addr;	/* physics addr */
};

#define AOP_ENCRYPT	0
#define AOP_DECRYPT	1

#define COP_FLAG_RSA_PUB	(0 << 8) /* decode as rsa pub key */
#define COP_FLAG_RSA_PRIV	(1 << 8) /* decode as rsa priv key */

#define RK_RSA_BER_KEY_MAX	8192	/* The key encoded by ber does not exceed 8K Byte */
#define RK_RSA_KEY_MAX_BITS	4096
#define RK_RSA_KEY_MAX_BYTES	(RK_RSA_KEY_MAX_BITS / 8)

/* input of RIOCCRYPT_RSA_CRYPT */
struct crypt_rsa_op {
	__u16		op;		/* AOP_ENCRYPT/AOP_DECRYPT */
	__u16		flags;		/* see COP_FLAG_* */
	__u8		reserve[4];
	__u64		key;		/* BER coding RSA key */
	__u64		in;		/* pointer to input data */
	__u64		out;		/* pointer to output data */
	__u32		key_len;	/* length of key data */
	__u32		in_len;		/* length of input data */
	__u32		out_len;	/* length of output data */
};

#define RIOCCRYPT_FD		_IOWR('r', 104, struct crypt_fd_op)
#define RIOCCRYPT_FD_MAP	_IOWR('r', 105, struct crypt_fd_map_op)
#define RIOCCRYPT_FD_UNMAP	_IOW('r',  106, struct crypt_fd_map_op)
#define RIOCCRYPT_CPU_ACCESS	_IOW('r',  107, struct crypt_fd_map_op)
#define RIOCCRYPT_DEV_ACCESS	_IOW('r',  108, struct crypt_fd_map_op)
#define RIOCCRYPT_RSA_CRYPT	_IOWR('r', 109, struct crypt_rsa_op)
#define RIOCAUTHCRYPT_FD	_IOWR('r', 110, struct crypt_auth_fd_op)

#endif