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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/*
 * Copyright 2020 Rockchip Electronics Co. LTD
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */
 
#ifndef __RK_MPI_MMZ_H__
#define __RK_MPI_MMZ_H__
 
#include <stdint.h>
 
#ifdef __cplusplus
#if __cplusplus
extern "C" {
#endif
#endif /* End of #ifdef __cplusplus */
 
typedef void*               MB_BLK;
typedef int                 RK_S32;
typedef uint32_t            RK_U32;
typedef uint64_t            RK_U64;
typedef void                RK_VOID;
 
#define RK_MMZ_ALLOC_TYPE_IOMMU     0x00000000
#define RK_MMZ_ALLOC_TYPE_CMA       0x00000001
 
#define RK_MMZ_ALLOC_CACHEABLE      0x00000000
#define RK_MMZ_ALLOC_UNCACHEABLE    0x00000010
 
#define RK_MMZ_SYNC_READONLY        0x00000000
#define RK_MMZ_SYNC_WRITEONLY       0x00000001
#define RK_MMZ_SYNC_RW              0x00000002
 
/*
    申请buffer
    pBlk     返回分配的buffer信息
    u32Len   申请buffer的大小
    u32Flags 申请buffer类型
    成功  返回0
    失败  返回负值
 */
RK_S32 RK_MPI_MMZ_Alloc(MB_BLK *pBlk, RK_U32 u32Len, RK_U32 u32Flags);
 
/*
    释放buffer
 */
RK_S32 RK_MPI_MMZ_Free(MB_BLK mb);
 
/*
    获取物理地址
    对于物理连续内存,返回其物理地址
    对于非物理连续内存,返回-1
 */
RK_U64   RK_MPI_MMZ_Handle2PhysAddr(MB_BLK mb);
 
/*
    获取用户空间虚拟地址
    失败返回NULL
 */
RK_VOID *RK_MPI_MMZ_Handle2VirAddr(MB_BLK mb);
 
/*
    获取buffer的fd
    失败返回-1
 */
RK_S32   RK_MPI_MMZ_Handle2Fd(MB_BLK mb);
 
/*
    获取buffer大小
    失败返回 (RK_U64)-1
 */
RK_U64   RK_MPI_MMZ_GetSize(MB_BLK mb);
 
/*
    通过fd查找到对应的buffer
    成功 返回mb
    失败 返回NULL
 */
MB_BLK   RK_MPI_MMZ_Fd2Handle(RK_S32 fd);
 
/*
    通过vaddr查找到对应的buffer
    成功 返回mb
    失败 返回NULL
 */
MB_BLK   RK_MPI_MMZ_VirAddr2Handle(RK_VOID *pstVirAddr);
 
/*
    通过paddr查找到对应的buffer
    成功 返回mb
    失败 返回NULL
 */
MB_BLK   RK_MPI_MMZ_PhyAddr2Handle(RK_U64 paddr);
 
/*
    查询buffer是否cacheable
    是  返回1
    否  返回0
    不确定  返回-1
 */
RK_S32 RK_MPI_MMZ_IsCacheable(MB_BLK mb);
 
/*
    flush cache, 在cpu访问前调用
    当offset和length都等于0时候,执行full sync,否则执行partial sync
    成功  返回0
    失败  返回负值
 */
RK_S32 RK_MPI_MMZ_FlushCacheStart(MB_BLK mb, RK_U32 offset, RK_U32 length, RK_U32 flags);
 
/*
    flush cache, 在cpu访问结束后调用
    当offset和length都等于0时候,执行full sync,否则执行partial sync
    成功  返回0
    失败  返回负值
 */
RK_S32 RK_MPI_MMZ_FlushCacheEnd(MB_BLK mb, RK_U32 offset, RK_U32 length, RK_U32 flags);
 
/*
    flush cache, 在cpu访问前调用
      指定待刷新内存的虚拟地址及其长度,只支持partial sync
    成功  返回0
    失败  返回负值
 */
RK_S32 RK_MPI_MMZ_FlushCacheVaddrStart(RK_VOID* vaddr, RK_U32 length, RK_U32 flags);
 
/*
    flush cache, 在cpu访问结束后调用
      指定待刷新内存的虚拟地址及其长度,只支持partial sync
    成功  返回0
    失败  返回负值
 */
RK_S32 RK_MPI_MMZ_FlushCacheVaddrEnd(RK_VOID* vaddr, RK_U32 length, RK_U32 flags);
 
/*
    flush cache, 在cpu访问前调用
      指定待刷新内存的物理地址及其长度,只支持partial sync
    成功  返回0
    失败  返回负值
 */
RK_S32 RK_MPI_MMZ_FlushCachePaddrStart(RK_U64 vaddr, RK_U32 length, RK_U32 flags);
 
/*
    flush cache, 在cpu访问结束后调用
      指定待刷新内存的物理地址及其长度,只支持partial sync
    成功  返回0
    失败  返回负值
 */
RK_S32 RK_MPI_MMZ_FlushCachePaddrEnd(RK_U64 vaddr, RK_U32 length, RK_U32 flags);
 
#ifdef __cplusplus
#if __cplusplus
}
#endif
#endif /* End of #ifdef __cplusplus */
 
#endif /* __RK_MPI_MMZ_H__ */