hc
2024-05-10 37f49e37ab4cb5d0bc4c60eb5c6d4dd57db767bb
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
/* SPDX-License-Identifier: ((GPL-2.0+ WITH Linux-syscall-note) OR MIT) */
/*
 * Rockchip mpp driver
 * Copyright (C) 2023 Rockchip Electronics Co., Ltd.
 */
 
#ifndef _UAPI_RK_MPP_H
#define _UAPI_RK_MPP_H
 
#include <linux/types.h>
 
/* Use 'v' as magic number */
#define MPP_IOC_MAGIC            'v'
 
#define MPP_IOC_CFG_V1            _IOW(MPP_IOC_MAGIC, 1, unsigned int)
#define MPP_IOC_CFG_V2            _IOW(MPP_IOC_MAGIC, 2, unsigned int)
 
/**
 * Command type: keep the same as user space
 */
enum MPP_DEV_COMMAND_TYPE {
   MPP_CMD_QUERY_BASE        = 0,
   MPP_CMD_QUERY_HW_SUPPORT    = MPP_CMD_QUERY_BASE + 0,
   MPP_CMD_QUERY_HW_ID        = MPP_CMD_QUERY_BASE + 1,
   MPP_CMD_QUERY_CMD_SUPPORT    = MPP_CMD_QUERY_BASE + 2,
   MPP_CMD_QUERY_BUTT,
 
   MPP_CMD_INIT_BASE        = 0x100,
   MPP_CMD_INIT_CLIENT_TYPE    = MPP_CMD_INIT_BASE + 0,
   MPP_CMD_INIT_DRIVER_DATA    = MPP_CMD_INIT_BASE + 1,
   MPP_CMD_INIT_TRANS_TABLE    = MPP_CMD_INIT_BASE + 2,
   MPP_CMD_INIT_BUTT,
 
   MPP_CMD_SEND_BASE        = 0x200,
   MPP_CMD_SET_REG_WRITE        = MPP_CMD_SEND_BASE + 0,
   MPP_CMD_SET_REG_READ        = MPP_CMD_SEND_BASE + 1,
   MPP_CMD_SET_REG_ADDR_OFFSET    = MPP_CMD_SEND_BASE + 2,
   MPP_CMD_SET_RCB_INFO        = MPP_CMD_SEND_BASE + 3,
   MPP_CMD_SET_SESSION_FD        = MPP_CMD_SEND_BASE + 4,
   MPP_CMD_SEND_BUTT,
 
   MPP_CMD_POLL_BASE        = 0x300,
   MPP_CMD_POLL_HW_FINISH        = MPP_CMD_POLL_BASE + 0,
   MPP_CMD_POLL_HW_IRQ        = MPP_CMD_POLL_BASE + 1,
   MPP_CMD_POLL_BUTT,
 
   MPP_CMD_CONTROL_BASE        = 0x400,
   MPP_CMD_RESET_SESSION        = MPP_CMD_CONTROL_BASE + 0,
   MPP_CMD_TRANS_FD_TO_IOVA    = MPP_CMD_CONTROL_BASE + 1,
   MPP_CMD_RELEASE_FD        = MPP_CMD_CONTROL_BASE + 2,
   MPP_CMD_SEND_CODEC_INFO        = MPP_CMD_CONTROL_BASE + 3,
   MPP_CMD_CONTROL_BUTT,
 
   MPP_CMD_BUTT,
};
 
/* define flags for mpp_request */
#define MPP_FLAGS_MULTI_MSG        (0x00000001)
#define MPP_FLAGS_LAST_MSG        (0x00000002)
#define MPP_FLAGS_REG_FD_NO_TRANS    (0x00000004)
#define MPP_FLAGS_SCL_FD_NO_TRANS    (0x00000008)
#define MPP_FLAGS_REG_NO_OFFSET        (0x00000010)
#define MPP_FLAGS_SECURE_MODE        (0x00010000)
 
/* data common struct for parse out */
struct mpp_request {
   __u32 cmd;
   __u32 flags;
   __u32 size;
   __u32 offset;
   void __user *data;
};
 
#define MPP_BAT_MSG_DONE        (0x00000001)
 
struct mpp_bat_msg {
   __u64 flag;
   __u32 fd;
   __s32 ret;
};
 
#endif /* _UAPI_RK_MPP_H */