RK3368 GPU version Rogue M 1.28
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / rogue_m / generated / dri_bridge / client_ri_bridge.c
1 /*************************************************************************/ /*!
2 @Title          Direct client bridge for ri
3 @Copyright      Copyright (c) Imagination Technologies Ltd. All Rights Reserved
4 @License        Dual MIT/GPLv2
5
6 The contents of this file are subject to the MIT license as set out below.
7
8 Permission is hereby granted, free of charge, to any person obtaining a copy
9 of this software and associated documentation files (the "Software"), to deal
10 in the Software without restriction, including without limitation the rights
11 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 copies of the Software, and to permit persons to whom the Software is
13 furnished to do so, subject to the following conditions:
14
15 The above copyright notice and this permission notice shall be included in
16 all copies or substantial portions of the Software.
17
18 Alternatively, the contents of this file may be used under the terms of
19 the GNU General Public License Version 2 ("GPL") in which case the provisions
20 of GPL are applicable instead of those above.
21
22 If you wish to allow use of your version of this file only under the terms of
23 GPL, and not to allow others to use your version of this file under the terms
24 of the MIT license, indicate your decision by deleting the provisions above
25 and replace them with the notice and other provisions required by GPL as set
26 out in the file called "GPL-COPYING" included in this distribution. If you do
27 not delete the provisions above, a recipient may use your version of this file
28 under the terms of either the MIT license or GPL.
29
30 This License is also included in this distribution in the file called
31 "MIT-COPYING".
32
33 EXCEPT AS OTHERWISE STATED IN A NEGOTIATED AGREEMENT: (A) THE SOFTWARE IS
34 PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
35 BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
36 PURPOSE AND NONINFRINGEMENT; AND (B) IN NO EVENT SHALL THE AUTHORS OR
37 COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
38 IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
39 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
40 */ /**************************************************************************/
41
42 #include "client_ri_bridge.h"
43 #include "img_defs.h"
44 #include "pvr_debug.h"
45
46 /* Module specific includes */
47 #include "ri_typedefs.h"
48
49 #include "ri_server.h"
50
51
52 IMG_INTERNAL PVRSRV_ERROR IMG_CALLCONV BridgeRIWritePMREntry(IMG_HANDLE hBridge,
53                                                              IMG_HANDLE hPMRHandle,
54                                                              IMG_UINT32 ui32TextASize,
55                                                              const IMG_CHAR *puiTextA,
56                                                              IMG_UINT64 ui64LogicalSize)
57 {
58         PVRSRV_ERROR eError;
59         PMR * psPMRHandleInt;
60         PVR_UNREFERENCED_PARAMETER(hBridge);
61
62         psPMRHandleInt = (PMR *) hPMRHandle;
63
64         eError =
65                 RIWritePMREntryKM(
66                                         psPMRHandleInt,
67                                         ui32TextASize,
68                                         puiTextA,
69                                         ui64LogicalSize);
70
71         return eError;
72 }
73
74 IMG_INTERNAL PVRSRV_ERROR IMG_CALLCONV BridgeRIWriteMEMDESCEntry(IMG_HANDLE hBridge,
75                                                                  IMG_HANDLE hPMRHandle,
76                                                                  IMG_UINT32 ui32TextBSize,
77                                                                  const IMG_CHAR *puiTextB,
78                                                                  IMG_UINT64 ui64Offset,
79                                                                  IMG_UINT64 ui64Size,
80                                                                  IMG_BOOL bIsImport,
81                                                                  IMG_BOOL bIsExportable,
82                                                                  IMG_HANDLE *phRIHandle)
83 {
84         PVRSRV_ERROR eError;
85         PMR * psPMRHandleInt;
86         RI_HANDLE psRIHandleInt;
87         PVR_UNREFERENCED_PARAMETER(hBridge);
88
89         psPMRHandleInt = (PMR *) hPMRHandle;
90
91         eError =
92                 RIWriteMEMDESCEntryKM(
93                                         psPMRHandleInt,
94                                         ui32TextBSize,
95                                         puiTextB,
96                                         ui64Offset,
97                                         ui64Size,
98                                         bIsImport,
99                                         bIsExportable,
100                                         &psRIHandleInt);
101
102         *phRIHandle = psRIHandleInt;
103         return eError;
104 }
105
106 IMG_INTERNAL PVRSRV_ERROR IMG_CALLCONV BridgeRIUpdateMEMDESCAddr(IMG_HANDLE hBridge,
107                                                                  IMG_HANDLE hRIHandle,
108                                                                  IMG_DEV_VIRTADDR sAddr)
109 {
110         PVRSRV_ERROR eError;
111         RI_HANDLE psRIHandleInt;
112         PVR_UNREFERENCED_PARAMETER(hBridge);
113
114         psRIHandleInt = (RI_HANDLE) hRIHandle;
115
116         eError =
117                 RIUpdateMEMDESCAddrKM(
118                                         psRIHandleInt,
119                                         sAddr);
120
121         return eError;
122 }
123
124 IMG_INTERNAL PVRSRV_ERROR IMG_CALLCONV BridgeRIDeleteMEMDESCEntry(IMG_HANDLE hBridge,
125                                                                   IMG_HANDLE hRIHandle)
126 {
127         PVRSRV_ERROR eError;
128         RI_HANDLE psRIHandleInt;
129         PVR_UNREFERENCED_PARAMETER(hBridge);
130
131         psRIHandleInt = (RI_HANDLE) hRIHandle;
132
133         eError =
134                 RIDeleteMEMDESCEntryKM(
135                                         psRIHandleInt);
136
137         return eError;
138 }
139
140 IMG_INTERNAL PVRSRV_ERROR IMG_CALLCONV BridgeRIDumpList(IMG_HANDLE hBridge,
141                                                         IMG_HANDLE hPMRHandle)
142 {
143         PVRSRV_ERROR eError;
144         PMR * psPMRHandleInt;
145         PVR_UNREFERENCED_PARAMETER(hBridge);
146
147         psPMRHandleInt = (PMR *) hPMRHandle;
148
149         eError =
150                 RIDumpListKM(
151                                         psPMRHandleInt);
152
153         return eError;
154 }
155
156 IMG_INTERNAL PVRSRV_ERROR IMG_CALLCONV BridgeRIDumpAll(IMG_HANDLE hBridge)
157 {
158         PVRSRV_ERROR eError;
159         PVR_UNREFERENCED_PARAMETER(hBridge);
160
161
162         eError =
163                 RIDumpAllKM(
164                                         );
165         return eError;
166 }
167
168 IMG_INTERNAL PVRSRV_ERROR IMG_CALLCONV BridgeRIDumpProcess(IMG_HANDLE hBridge,
169                                                            IMG_PID ui32Pid)
170 {
171         PVRSRV_ERROR eError;
172         PVR_UNREFERENCED_PARAMETER(hBridge);
173
174
175         eError =
176                 RIDumpProcessKM(
177                                         ui32Pid);
178
179         return eError;
180 }
181