OSDN Git Service

Merge remote branch 'origin/master' into libdrm
[android-x86/external-libdrm.git] / nouveau / nouveau_private.h
1 /*
2  * Copyright 2007 Nouveau Project
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is 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
17  * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
18  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
19  * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20  * SOFTWARE.
21  */
22
23 #ifndef __NOUVEAU_PRIVATE_H__
24 #define __NOUVEAU_PRIVATE_H__
25
26 #include <stdint.h>
27 #include <xf86drm.h>
28 #include <nouveau_drm.h>
29
30 #include "nouveau_drmif.h"
31 #include "nouveau_device.h"
32 #include "nouveau_channel.h"
33 #include "nouveau_grobj.h"
34 #include "nouveau_notifier.h"
35 #include "nouveau_bo.h"
36 #include "nouveau_resource.h"
37 #include "nouveau_pushbuf.h"
38
39 #define CALPB_BUFFERS 4
40 #define CALPB_BUFSZ   16384
41 struct nouveau_pushbuf_priv {
42         struct nouveau_pushbuf base;
43
44         int no_aper_update;
45         int use_cal;
46         uint32_t cal_suffix0;
47         uint32_t cal_suffix1;
48         struct nouveau_bo *buffer[CALPB_BUFFERS];
49         int current;
50         int current_offset;
51
52         unsigned *pushbuf;
53         unsigned  size;
54
55         unsigned marker;
56         unsigned marker_relocs;
57
58         struct drm_nouveau_gem_pushbuf_bo *buffers;
59         unsigned nr_buffers;
60         struct drm_nouveau_gem_pushbuf_reloc *relocs;
61         unsigned nr_relocs;
62 };
63 #define nouveau_pushbuf(n) ((struct nouveau_pushbuf_priv *)(n))
64
65 int
66 nouveau_pushbuf_init(struct nouveau_channel *);
67
68 struct nouveau_channel_priv {
69         struct nouveau_channel base;
70
71         struct drm_nouveau_channel_alloc drm;
72
73         struct nouveau_bo *notifier_bo;
74
75         struct nouveau_pushbuf_priv pb;
76 };
77 #define nouveau_channel(n) ((struct nouveau_channel_priv *)(n))
78
79 struct nouveau_grobj_priv {
80         struct nouveau_grobj base;
81 };
82 #define nouveau_grobj(n) ((struct nouveau_grobj_priv *)(n))
83
84 struct nouveau_notifier_priv {
85         struct nouveau_notifier base;
86
87         struct drm_nouveau_notifierobj_alloc drm;
88         volatile void *map;
89 };
90 #define nouveau_notifier(n) ((struct nouveau_notifier_priv *)(n))
91
92 struct nouveau_bo_priv {
93         struct nouveau_bo base;
94         int refcount;
95
96         /* Buffer configuration + usage hints */
97         unsigned flags;
98         unsigned size;
99         unsigned align;
100         int user;
101
102         /* Tracking */
103         struct drm_nouveau_gem_pushbuf_bo *pending;
104         struct nouveau_channel *pending_channel;
105         int pending_refcnt;
106         int write_marker;
107
108         /* Userspace object */
109         void *sysmem;
110
111         /* Kernel object */
112         uint32_t global_handle;
113         drm_handle_t handle;
114         uint64_t map_handle;
115         void *map;
116
117         /* Last known information from kernel on buffer status */
118         int pinned;
119         uint64_t offset;
120         uint32_t domain;
121 };
122 #define nouveau_bo(n) ((struct nouveau_bo_priv *)(n))
123
124 int
125 nouveau_bo_init(struct nouveau_device *);
126
127 void
128 nouveau_bo_takedown(struct nouveau_device *);
129
130 struct drm_nouveau_gem_pushbuf_bo *
131 nouveau_bo_emit_buffer(struct nouveau_channel *, struct nouveau_bo *);
132
133 #endif