hc
2023-05-26 a23f51ed7a39e452c1037343a84d7db1ca2c5bd7
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
/*************************************************************************/ /*!
@File
@Copyright      Copyright (c) Imagination Technologies Ltd. All Rights Reserved
@Description    OS-independent interface to helper functions for pdump
@License        Dual MIT/GPLv2
 
The contents of this file are subject to the MIT license as set out below.
 
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
 
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
 
Alternatively, the contents of this file may be used under the terms of
the GNU General Public License Version 2 ("GPL") in which case the provisions
of GPL are applicable instead of those above.
 
If you wish to allow use of your version of this file only under the terms of
GPL, and not to allow others to use your version of this file under the terms
of the MIT license, indicate your decision by deleting the provisions above
and replace them with the notice and other provisions required by GPL as set
out in the file called "GPL-COPYING" included in this distribution. If you do
not delete the provisions above, a recipient may use your version of this file
under the terms of either the MIT license or GPL.
 
This License is also included in this distribution in the file called
"MIT-COPYING".
 
EXCEPT AS OTHERWISE STATED IN A NEGOTIATED AGREEMENT: (A) THE SOFTWARE IS
PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE AND NONINFRINGEMENT; AND (B) IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ /**************************************************************************/
 
#include <stdarg.h>
 
#include "img_types.h"
#include "pvrsrv_error.h"
#include "pvrsrv_device_types.h"
 
 
/* FIXME
 * Some OSes (WinXP,CE) allocate the string on the stack, but some
 * (Linux) use a global variable/lock instead.
 * Would be good to use the same across all OSes.
 *
 * A handle is returned which represents IMG_CHAR* type on all OSes.
 *
 * The allocated buffer length is also returned on OSes where it's
 * supported (e.g. Linux).
 */
#define MAX_PDUMP_STRING_LENGTH (256)
#if defined(WIN32)
#define PDUMP_GET_SCRIPT_STRING()    \
   IMG_CHAR pszScript[MAX_PDUMP_STRING_LENGTH];        \
   IMG_UINT32    ui32MaxLen = MAX_PDUMP_STRING_LENGTH-1;    \
   IMG_HANDLE    hScript = (IMG_HANDLE)pszScript;
 
#define PDUMP_GET_MSG_STRING()        \
   IMG_CHAR pszMsg[MAX_PDUMP_STRING_LENGTH];            \
   IMG_UINT32    ui32MaxLen = MAX_PDUMP_STRING_LENGTH-1;
 
#define PDUMP_GET_SCRIPT_AND_FILE_STRING()        \
   IMG_CHAR     pszScript[MAX_PDUMP_STRING_LENGTH];        \
   IMG_CHAR    pszFileName[MAX_PDUMP_STRING_LENGTH];    \
   IMG_UINT32    ui32MaxLenScript = MAX_PDUMP_STRING_LENGTH-1;    \
   IMG_UINT32    ui32MaxLenFileName = MAX_PDUMP_STRING_LENGTH-1;    \
   IMG_HANDLE    hScript = (IMG_HANDLE)pszScript;
 
#else    /* WIN32 */
 
#if defined(__QNXNTO__)
 
#define PDUMP_GET_SCRIPT_STRING()    \
   IMG_CHAR pszScript[MAX_PDUMP_STRING_LENGTH];        \
   IMG_UINT32    ui32MaxLen = MAX_PDUMP_STRING_LENGTH-1;    \
   IMG_HANDLE    hScript = (IMG_HANDLE)pszScript;
 
#define PDUMP_GET_MSG_STRING()        \
   IMG_CHAR pszMsg[MAX_PDUMP_STRING_LENGTH];            \
   IMG_UINT32    ui32MaxLen = MAX_PDUMP_STRING_LENGTH-1;
 
#define PDUMP_GET_SCRIPT_AND_FILE_STRING()        \
   IMG_CHAR     pszScript[MAX_PDUMP_STRING_LENGTH];        \
   IMG_CHAR    pszFileName[MAX_PDUMP_STRING_LENGTH];    \
   IMG_UINT32    ui32MaxLenScript = MAX_PDUMP_STRING_LENGTH-1;    \
   IMG_UINT32    ui32MaxLenFileName = MAX_PDUMP_STRING_LENGTH-1;    \
   IMG_HANDLE    hScript = (IMG_HANDLE)pszScript;
 
#else  /* __QNXNTO__ */
 
   /*
    * Linux
    */
#define PDUMP_GET_SCRIPT_STRING()                \
   IMG_HANDLE hScript;                            \
   IMG_UINT32    ui32MaxLen;                        \
   PVRSRV_ERROR eErrorPDump;                        \
   eErrorPDump = PDumpOSGetScriptString(&hScript, &ui32MaxLen);\
   PVR_LOGR_IF_ERROR(eErrorPDump, "PDumpOSGetScriptString");
 
#define PDUMP_GET_MSG_STRING()                    \
   IMG_CHAR *pszMsg;                            \
   IMG_UINT32    ui32MaxLen;                        \
   PVRSRV_ERROR eErrorPDump;                        \
   eErrorPDump = PDumpOSGetMessageString(&pszMsg, &ui32MaxLen);\
   PVR_LOGR_IF_ERROR(eErrorPDump, "PDumpOSGetMessageString");
 
#define PDUMP_GET_SCRIPT_AND_FILE_STRING()        \
   IMG_HANDLE hScript;                            \
   IMG_CHAR *pszFileName;                        \
   IMG_UINT32    ui32MaxLenScript;                \
   IMG_UINT32    ui32MaxLenFileName;                \
   PVRSRV_ERROR eErrorPDump;                        \
   eErrorPDump = PDumpOSGetScriptString(&hScript, &ui32MaxLenScript);\
   PVR_LOGR_IF_ERROR(eErrorPDump, "PDumpOSGetScriptString");\
   eErrorPDump = PDumpOSGetFilenameString(&pszFileName, &ui32MaxLenFileName);\
   PVR_LOGR_IF_ERROR(eErrorPDump, "PDumpOSGetFilenameString");
 
   /**************************************************************************/ /*!
   @Function       PDumpOSGetScriptString
   @Description    Get the handle of the PDump "script" buffer.
                   This function is only called if PDUMP is defined.
   @Output         phScript           Handle of the PDump script buffer
   @Output         pui32MaxLen        max length the script buffer can be
   @Return         PVRSRV_OK on success, a failure code otherwise.
   */ /**************************************************************************/
   PVRSRV_ERROR PDumpOSGetScriptString(IMG_HANDLE *phScript, IMG_UINT32 *pui32MaxLen);
 
   /**************************************************************************/ /*!
   @Function       PDumpOSGetMessageString
   @Description    Get the PDump "message" buffer.
                   This function is only called if PDUMP is defined.
   @Output         ppszMsg            Pointer to the PDump message buffer
   @Output         pui32MaxLen        max length the message buffer can be
   @Return         PVRSRV_OK on success, a failure code otherwise.
   */ /**************************************************************************/
   PVRSRV_ERROR PDumpOSGetMessageString(IMG_CHAR **ppszMsg, IMG_UINT32 *pui32MaxLen);
 
   /**************************************************************************/ /*!
   @Function       PDumpOSGetFilenameString
   @Description    Get the PDump "filename" buffer.
                   This function is only called if PDUMP is defined.
   @Output         ppszFile           Pointer to the PDump filename buffer
   @Output         pui32MaxLen        max length the filename buffer can be
   @Return         PVRSRV_OK on success, a failure code otherwise.
   */ /**************************************************************************/
   PVRSRV_ERROR PDumpOSGetFilenameString(IMG_CHAR **ppszFile, IMG_UINT32 *pui32MaxLen);
 
#endif /* __QNXNTO__ */
#endif /* WIN32 */
 
 
/*
 * PDump streams, channels, init and deinit routines (common to all OSes)
 */
 
typedef struct
{
   IMG_HANDLE hInit;        /*!< Driver initialisation PDump stream */
   IMG_HANDLE hMain;        /*!< App framed PDump stream */
   IMG_HANDLE hDeinit;      /*!< Driver/HW de-initialisation PDump stream */
} PDUMP_CHANNEL;
 
/**************************************************************************/ /*!
@Function       PDumpOSInit
@Description    Reset the connection to vldbgdrv, then try to connect to
                PDump streams. This function is only called if PDUMP is
                defined.
@Input          psParam            PDump channel to be used for logging
                                   parameters
@Input          psScript           PDump channel to be used for logging
                                   commands / events
@Output         pui32InitCapMode   The initial PDump capture mode.
@Output         ppszEnvComment     Environment-specific comment that is
                                   output when writing to the PDump
                                   stream (this may be NULL).
@Return         PVRSRV_OK on success, a failure code otherwise.
*/ /**************************************************************************/
PVRSRV_ERROR PDumpOSInit(PDUMP_CHANNEL* psParam, PDUMP_CHANNEL* psScript,
       IMG_UINT32* pui32InitCapMode, IMG_CHAR** ppszEnvComment);
 
/**************************************************************************/ /*!
@Function       PDumpOSDeInit
@Description    Disconnect the PDump streams and close the connection to
                vldbgdrv. This function is only called if PDUMP is defined.
@Input          psParam            PDump parameter channel to be closed
@Input          psScript           PDump command channel to be closed
@Return         None
*/ /**************************************************************************/
void PDumpOSDeInit(PDUMP_CHANNEL* psParam, PDUMP_CHANNEL* psScript);
 
/**************************************************************************/ /*!
@Function       PDumpOSSetSplitMarker
@Description    Inform the PDump client to start a new file at the given
                marker. This function is only called if PDUMP is defined.
@Input          hStream            handle of PDump stream
@Input          ui32Marker         byte file position
@Return         IMG_TRUE
*/ /**************************************************************************/
IMG_BOOL PDumpOSSetSplitMarker(IMG_HANDLE hStream, IMG_UINT32 ui32Marker);
 
/**************************************************************************/ /*!
@Function       PDumpOSDebugDriverWrite
@Description    Writes a given number of bytes from the specified buffer
                to a PDump stream. This function is only called if PDUMP
                is defined.
@Input          psStream           handle of PDump stream to write into
@Input          pui8Data           buffer to write data from
@Input          ui32BCount         number of bytes to write
@Return         The number of bytes actually written (may be less than
                ui32BCount if there is insufficient space in the target
                PDump stream buffer)
*/ /**************************************************************************/
IMG_UINT32 PDumpOSDebugDriverWrite(IMG_HANDLE psStream,
                                   IMG_UINT8 *pui8Data,
                                   IMG_UINT32 ui32BCount);
 
/*
 * Define macro for processing variable args list in OS-independent
 * manner. See e.g. PDumpCommentWithFlags().
 */
#define PDUMP_va_list    va_list
#define PDUMP_va_start    va_start
#define PDUMP_va_end    va_end
 
 
/**************************************************************************/ /*!
@Function       PDumpOSBufprintf
@Description    Printf to OS-specific PDump state buffer. This function is
                only called if PDUMP is defined.
@Input          hBuf               handle of buffer to write into
@Input          ui32ScriptSizeMax  maximum size of data to write (chars)
@Input          pszFormat          format string
@Return         None
*/ /**************************************************************************/
PVRSRV_ERROR PDumpOSBufprintf(IMG_HANDLE hBuf, IMG_UINT32 ui32ScriptSizeMax, IMG_CHAR* pszFormat, ...) __printf(3, 4);
 
/**************************************************************************/ /*!
@Function       PDumpOSDebugPrintf
@Description    Debug message during PDumping. This function is only called
                if PDUMP is defined.
@Input          pszFormat            format string
@Return         None
*/ /**************************************************************************/
void PDumpOSDebugPrintf(IMG_CHAR* pszFormat, ...) __printf(1, 2);
 
/*
 * Write into a IMG_CHAR* on all OSes. Can be allocated on the stack or heap.
 */
/**************************************************************************/ /*!
@Function       PDumpOSSprintf
@Description    Printf to IMG char array. This function is only called if
                PDUMP is defined.
@Input          ui32ScriptSizeMax    maximum size of data to write (chars)
@Input          pszFormat            format string
@Output         pszComment           char array to print into
@Return         PVRSRV_OK on success, a failure code otherwise.
*/ /**************************************************************************/
PVRSRV_ERROR PDumpOSSprintf(IMG_CHAR *pszComment, IMG_UINT32 ui32ScriptSizeMax, IMG_CHAR *pszFormat, ...) __printf(3, 4);
 
/**************************************************************************/ /*!
@Function       PDumpOSVSprintf
@Description    Printf to IMG string using variable args (see stdarg.h).
                This is necessary because the '...' notation does not
                support nested function calls.
                This function is only called if PDUMP is defined.
@Input          ui32ScriptSizeMax    maximum size of data to write (chars)
@Input          pszFormat            format string
@Input          vaArgs               variable args structure (from stdarg.h)
@Output         pszMsg               char array to print into
@Return         PVRSRV_OK on success, a failure code otherwise.
*/ /**************************************************************************/
PVRSRV_ERROR PDumpOSVSprintf(IMG_CHAR *pszMsg, IMG_UINT32 ui32ScriptSizeMax, const IMG_CHAR* pszFormat, PDUMP_va_list vaArgs) __printf(3, 0);
 
/**************************************************************************/ /*!
@Function       PDumpOSBuflen
@Description    Returns the length of the specified buffer (in chars).
                This function is only called if PDUMP is defined.
@Input          hBuffer              handle to buffer
@Input          ui32BufferSizeMax    max size of buffer (chars)
@Return         The length of the buffer, will always be <= ui32BufferSizeMax
*/ /**************************************************************************/
IMG_UINT32 PDumpOSBuflen(IMG_HANDLE hBuffer, IMG_UINT32 ui32BufferSizeMax);
 
/**************************************************************************/ /*!
@Function       PDumpOSVerifyLineEnding
@Description    Put line ending sequence at the end if it isn't already
                there. This function is only called if PDUMP is defined.
@Input          hBuffer              handle to buffer
@Input          ui32BufferSizeMax    max size of buffer (chars)
@Return         None
*/ /**************************************************************************/
void PDumpOSVerifyLineEnding(IMG_HANDLE hBuffer, IMG_UINT32 ui32BufferSizeMax);
 
/**************************************************************************/ /*!
@Function       PDumpOSReleaseExecution
@Description    OS function to switch to another process, to clear PDump
                buffers.
                This function can simply wrap OSReleaseThreadQuanta.
                This function is only called if PDUMP is defined.
@Return         None
*/ /**************************************************************************/
void PDumpOSReleaseExecution(void);
 
/**************************************************************************/ /*!
@Function       PDumpOSCreateLock
@Description    Create the global pdump lock. This function is only called
                if PDUMP is defined.
@Return         None
*/ /**************************************************************************/
PVRSRV_ERROR PDumpOSCreateLock(void);
 
/**************************************************************************/ /*!
@Function       PDumpOSDestroyLock
@Description    Destroy the global pdump lock This function is only called
                if PDUMP is defined.
@Return         None
*/ /**************************************************************************/
void PDumpOSDestroyLock(void);
 
/**************************************************************************/ /*!
@Function       PDumpOSLock
@Description    Acquire the global pdump lock. This function is only called
                if PDUMP is defined.
@Return         None
*/ /**************************************************************************/
void PDumpOSLock(void);
 
/**************************************************************************/ /*!
@Function       PDumpOSUnlock
@Description    Release the global pdump lock. This function is only called
                if PDUMP is defined.
@Return         None
*/ /**************************************************************************/
void PDumpOSUnlock(void);
 
/*!
 * @name    PDumpOSGetCtrlState
 * @brief    Retrieve some state from the debug driver or debug driver stream
 */
IMG_UINT32 PDumpOSGetCtrlState(IMG_HANDLE hDbgStream, IMG_UINT32 ui32StateID);
 
/*!
 * @name    PDumpOSSetFrame
 * @brief    Set the current frame value mirrored in the debug driver
 */
void PDumpOSSetFrame(IMG_UINT32 ui32Frame);
 
/*!
 * @name    PDumpOSAllowInitPhaseToComplete
 * @brief    Some platforms wish to control when the init phase is marked as
 *          complete depending on who is instructing it so.
 */
IMG_BOOL PDumpOSAllowInitPhaseToComplete(IMG_BOOL bPDumpClient, IMG_BOOL bInitClient);