summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jacinto6/sgx_src/eurasia_km/services4/system/omap/oemfuncs.h')
-rw-r--r--jacinto6/sgx_src/eurasia_km/services4/system/omap/oemfuncs.h80
1 files changed, 80 insertions, 0 deletions
diff --git a/jacinto6/sgx_src/eurasia_km/services4/system/omap/oemfuncs.h b/jacinto6/sgx_src/eurasia_km/services4/system/omap/oemfuncs.h
new file mode 100644
index 0000000..0902042
--- /dev/null
+++ b/jacinto6/sgx_src/eurasia_km/services4/system/omap/oemfuncs.h
@@ -0,0 +1,80 @@
1/*************************************************************************/ /*!
2@Title SGX kernel/client driver interface structures and prototypes
3@Copyright Copyright (c) Imagination Technologies Ltd. All Rights Reserved
4@License Dual MIT/GPLv2
5
6The contents of this file are subject to the MIT license as set out below.
7
8Permission is hereby granted, free of charge, to any person obtaining a copy
9of this software and associated documentation files (the "Software"), to deal
10in the Software without restriction, including without limitation the rights
11to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12copies of the Software, and to permit persons to whom the Software is
13furnished to do so, subject to the following conditions:
14
15The above copyright notice and this permission notice shall be included in
16all copies or substantial portions of the Software.
17
18Alternatively, the contents of this file may be used under the terms of
19the GNU General Public License Version 2 ("GPL") in which case the provisions
20of GPL are applicable instead of those above.
21
22If you wish to allow use of your version of this file only under the terms of
23GPL, and not to allow others to use your version of this file under the terms
24of the MIT license, indicate your decision by deleting the provisions above
25and replace them with the notice and other provisions required by GPL as set
26out in the file called "GPL-COPYING" included in this distribution. If you do
27not delete the provisions above, a recipient may use your version of this file
28under the terms of either the MIT license or GPL.
29
30This License is also included in this distribution in the file called
31"MIT-COPYING".
32
33EXCEPT AS OTHERWISE STATED IN A NEGOTIATED AGREEMENT: (A) THE SOFTWARE IS
34PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
35BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
36PURPOSE AND NONINFRINGEMENT; AND (B) IN NO EVENT SHALL THE AUTHORS OR
37COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
38IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
39CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
40*/ /**************************************************************************/
41
42#if !defined(__OEMFUNCS_H__)
43#define __OEMFUNCS_H__
44
45#if defined (__cplusplus)
46extern "C" {
47#endif
48
49/* function in/out data structures: */
50typedef IMG_UINT32 (*PFN_SRV_BRIDGEDISPATCH)( IMG_UINT32 Ioctl,
51 IMG_BYTE *pInBuf,
52 IMG_UINT32 InBufLen,
53 IMG_BYTE *pOutBuf,
54 IMG_UINT32 OutBufLen,
55 IMG_UINT32 *pdwBytesTransferred);
56/*
57 Function table for kernel 3rd party driver to kernel services
58*/
59typedef struct PVRSRV_DC_OEM_JTABLE_TAG
60{
61 PFN_SRV_BRIDGEDISPATCH pfnOEMBridgeDispatch;
62 IMG_PVOID pvDummy1;
63 IMG_PVOID pvDummy2;
64 IMG_PVOID pvDummy3;
65
66} PVRSRV_DC_OEM_JTABLE;
67
68#define OEM_GET_EXT_FUNCS (1<<1)
69
70#if defined(__cplusplus)
71}
72#endif
73
74#endif /* __OEMFUNCS_H__ */
75
76/*****************************************************************************
77 End of file (oemfuncs.h)
78*****************************************************************************/
79
80