summaryrefslogtreecommitdiff
path: root/src/gralloc/gralloc_gem.h
blob: e6ef176efa25e169061767afd0cdd89e29d7d3c9 (plain)
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
#ifndef _GRALLOC_GEM_H_
#define _GRALLOC_GEM_H_

#include <cutils/native_handle.h>
#include "gralloc_mod.h"

struct drm_bo_t {
   native_handle_t base;

#define DRM_HANDLE_MAGIC 0x12345678
#define DRM_HANDLE_NUM_INTS 11
#define DRM_HANDLE_NUM_FDS 0
   int magic;

   int width;
   int height;
   int format;
   int usage;

   int name;
   int stride;

   /* these fields are undefined until validated */
   int pid;
   int fb_handle;
   int fb_id;
   int data; /* pointer as int? 32-bit only! */
};

int
drm_gem_init(struct drm_module_t *drm);

int
drm_gem_get_magic(struct drm_module_t *drm, int32_t *magic);

int
drm_gem_auth_magic(struct drm_module_t *drm, int32_t magic);

static inline struct drm_bo_t *
drm_gem_get(buffer_handle_t handle)
{
   struct drm_bo_t *bo = (struct drm_bo_t *) handle;

   if (bo->base.version != sizeof(bo->base) ||
       bo->base.numInts != DRM_HANDLE_NUM_INTS ||
       bo->base.numFds != DRM_HANDLE_NUM_FDS ||
       bo->magic != DRM_HANDLE_MAGIC)
      bo = NULL;

   return bo;
}

struct drm_bo_t *
drm_gem_validate(buffer_handle_t handle);

struct drm_bo_t *
drm_gem_create_bo(int width, int height, int format, int usage);


int
drm_gem_drv_init(struct drm_module_t *drm);

struct drm_bo_t *
drm_gem_drv_alloc(struct drm_module_t *drm, int width, int height,
                  int format, int usage, int *stride);

void
drm_gem_drv_free(struct drm_module_t *drm, struct drm_bo_t *bo);

int
drm_gem_drv_map(struct drm_module_t *drm, struct drm_bo_t *bo,
                int x, int y, int w, int h, int enable_write, void **addr);

void
drm_gem_drv_unmap(struct drm_module_t *drm, struct drm_bo_t *bo);

#endif /* _GRALLOC_GEM_H_ */