~rsalveti/+junk/omap3-sgx

« back to all changes in this revision

Viewing changes to GFX_Linux_KM/services4/srvkm/env/linux/mmap.h

  • Committer: Ricardo Salveti de Araujo
  • Date: 2010-09-13 12:26:10 UTC
  • Revision ID: ricardo.salveti@canonical.com-20100913122610-pp6k3tegwvr3nvny
Initial release, based on OMAP35x_Graphics_SDK_setuplinux_3_01_00_07.bin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**********************************************************************
 
2
 *
 
3
 * Copyright(c) 2008 Imagination Technologies Ltd. All rights reserved.
 
4
 * 
 
5
 * This program is free software; you can redistribute it and/or modify it
 
6
 * under the terms and conditions of the GNU General Public License,
 
7
 * version 2, as published by the Free Software Foundation.
 
8
 * 
 
9
 * This program is distributed in the hope it will be useful but, except 
 
10
 * as otherwise stated in writing, without any warranty; without even the 
 
11
 * implied warranty of merchantability or fitness for a particular purpose. 
 
12
 * See the GNU General Public License for more details.
 
13
 * 
 
14
 * You should have received a copy of the GNU General Public License along with
 
15
 * this program; if not, write to the Free Software Foundation, Inc.,
 
16
 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
 
17
 * 
 
18
 * The full GNU General Public License is included in this distribution in
 
19
 * the file called "COPYING".
 
20
 *
 
21
 * Contact Information:
 
22
 * Imagination Technologies Ltd. <gpl-support@imgtec.com>
 
23
 * Home Park Estate, Kings Langley, Herts, WD4 8LZ, UK 
 
24
 *
 
25
 ******************************************************************************/
 
26
 
 
27
#if !defined(__MMAP_H__)
 
28
#define __MMAP_H__
 
29
 
 
30
#include <linux/mm.h>
 
31
#include <linux/list.h>
 
32
 
 
33
#include "perproc.h"
 
34
#include "mm.h"
 
35
 
 
36
typedef struct KV_OFFSET_STRUCT_TAG
 
37
{
 
38
    
 
39
    IMG_UINT32                  ui32Mapped;
 
40
 
 
41
    
 
42
    IMG_UINT32                  ui32MMapOffset;
 
43
    
 
44
    IMG_UINT32                  ui32RealByteSize;
 
45
 
 
46
    
 
47
    LinuxMemArea                *psLinuxMemArea;
 
48
    
 
49
    
 
50
    IMG_UINT32                  ui32TID;
 
51
 
 
52
    
 
53
    IMG_UINT32                  ui32PID;
 
54
 
 
55
    
 
56
    IMG_BOOL                    bOnMMapList;
 
57
 
 
58
    
 
59
    IMG_UINT32                  ui32RefCount;
 
60
 
 
61
    
 
62
    IMG_UINT32                  ui32UserVAddr;
 
63
 
 
64
    
 
65
#if defined(DEBUG_LINUX_MMAP_AREAS)
 
66
    const IMG_CHAR              *pszName;
 
67
#endif
 
68
    
 
69
   
 
70
   struct list_head             sMMapItem;
 
71
 
 
72
   
 
73
   struct list_head             sAreaItem;
 
74
}KV_OFFSET_STRUCT, *PKV_OFFSET_STRUCT;
 
75
 
 
76
 
 
77
 
 
78
IMG_VOID PVRMMapInit(IMG_VOID);
 
79
 
 
80
 
 
81
IMG_VOID PVRMMapCleanup(IMG_VOID);
 
82
 
 
83
 
 
84
PVRSRV_ERROR PVRMMapRegisterArea(LinuxMemArea *psLinuxMemArea);
 
85
 
 
86
 
 
87
PVRSRV_ERROR PVRMMapRemoveRegisteredArea(LinuxMemArea *psLinuxMemArea);
 
88
 
 
89
 
 
90
PVRSRV_ERROR PVRMMapOSMemHandleToMMapData(PVRSRV_PER_PROCESS_DATA *psPerProc,
 
91
                                             IMG_HANDLE hMHandle,
 
92
                                             IMG_UINT32 *pui32MMapOffset,
 
93
                                             IMG_UINT32 *pui32ByteOffset,
 
94
                                             IMG_UINT32 *pui32RealByteSize,                                                  IMG_UINT32 *pui32UserVAddr);
 
95
 
 
96
PVRSRV_ERROR
 
97
PVRMMapReleaseMMapData(PVRSRV_PER_PROCESS_DATA *psPerProc,
 
98
                                IMG_HANDLE hMHandle,
 
99
                                IMG_BOOL *pbMUnmap,
 
100
                                IMG_UINT32 *pui32RealByteSize,
 
101
                                IMG_UINT32 *pui32UserVAddr);
 
102
 
 
103
int PVRMMap(struct file* pFile, struct vm_area_struct* ps_vma);
 
104
 
 
105
 
 
106
#endif  
 
107