staging: emgd: experimental build 2667
[profile/ivi/intel-emgd-kmod.git] / pvr / services4 / srvkm / env / linux / linkage.h
1 /**********************************************************************
2  Copyright (c) Imagination Technologies Ltd.
3
4  Permission is hereby granted, free of charge, to any person obtaining a copy
5  of this software and associated documentation files (the "Software"), to deal
6  in the Software without restriction, including without limitation the rights
7  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  copies of the Software, and to permit persons to whom the Software is
9  furnished to do so, subject to the following conditions:
10
11  The above copyright notice and this permission notice shall be included in
12  all copies or substantial portions of the Software.
13
14  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20  THE SOFTWARE.
21  ******************************************************************************/
22
23 #ifndef __LINKAGE_H__
24 #define __LINKAGE_H__
25
26 #if !defined(SUPPORT_DRI_DRM)
27 IMG_INT32 PVRSRV_BridgeDispatchKM(struct file *file, IMG_UINT cmd, IMG_UINT32 arg);
28 #endif
29
30 IMG_VOID PVRDPFInit(IMG_VOID);
31 PVRSRV_ERROR PVROSFuncInit(IMG_VOID);
32 IMG_VOID PVROSFuncDeInit(IMG_VOID);
33
34 #ifdef DEBUG
35 IMG_INT PVRDebugProcSetLevel(struct file *file, const IMG_CHAR *buffer, IMG_UINT32 count, IMG_VOID *data);
36 IMG_VOID PVRDebugSetLevel(IMG_UINT32 uDebugLevel);
37
38 #ifdef PVR_PROC_USE_SEQ_FILE
39 void ProcSeqShowDebugLevel(struct seq_file *sfile,void* el);
40 #else
41 IMG_INT PVRDebugProcGetLevel(IMG_CHAR *page, IMG_CHAR **start, off_t off, IMG_INT count, IMG_INT *eof, IMG_VOID *data);
42 #endif
43
44 #ifdef PVR_MANUAL_POWER_CONTROL
45 IMG_INT PVRProcSetPowerLevel(struct file *file, const IMG_CHAR *buffer, IMG_UINT32 count, IMG_VOID *data);
46
47 #ifdef PVR_PROC_USE_SEQ_FILE
48 void ProcSeqShowPowerLevel(struct seq_file *sfile,void* el);
49 #else
50 IMG_INT PVRProcGetPowerLevel(IMG_CHAR *page, IMG_CHAR **start, off_t off, IMG_INT count, IMG_INT *eof, IMG_VOID *data);
51 #endif
52
53
54 #endif
55 #endif
56
57 #endif