r600g: move resource setting to its own structures.
[mesa.git] / src / gallium / winsys / r600 / drm / r600_priv.h
1 /*
2 * Copyright 2010 Jerome Glisse <glisse@freedesktop.org>
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 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Jerome Glisse
25 */
26 #ifndef R600_PRIV_H
27 #define R600_PRIV_H
28
29 #include <errno.h>
30 #include <stdint.h>
31 #include <stdlib.h>
32 #include <assert.h>
33 #include <util/u_double_list.h>
34 #include <util/u_inlines.h>
35 #include "util/u_hash_table.h"
36 #include <os/os_thread.h>
37 #include "r600.h"
38
39 #define PKT_COUNT_C 0xC000FFFF
40 #define PKT_COUNT_S(x) (((x) & 0x3FFF) << 16)
41
42 struct r600_bomgr;
43 struct r600_bo;
44
45 struct radeon {
46 int fd;
47 int refcount;
48 unsigned device;
49 unsigned family;
50 enum chip_class chip_class;
51 struct r600_tiling_info tiling_info;
52 struct r600_bomgr *bomgr;
53 unsigned fence;
54 unsigned *cfence;
55 struct r600_bo *fence_bo;
56 unsigned clock_crystal_freq;
57 unsigned num_backends;
58 unsigned minor_version;
59
60 /* List of buffer handles and its mutex. */
61 struct util_hash_table *bo_handles;
62 pipe_mutex bo_handles_mutex;
63 };
64
65 #define REG_FLAG_NEED_BO 1
66 #define REG_FLAG_DIRTY_ALWAYS 2
67 #define REG_FLAG_RV6XX_SBU 4
68 #define REG_FLAG_NOT_R600 8
69
70 struct r600_reg {
71 unsigned offset;
72 unsigned flags;
73 unsigned flush_flags;
74 unsigned flush_mask;
75 };
76
77 #define BO_BOUND_TEXTURE 1
78 struct radeon_bo {
79 struct pipe_reference reference;
80 unsigned handle;
81 unsigned size;
82 unsigned alignment;
83 int map_count;
84 void *data;
85 struct list_head fencedlist;
86 unsigned fence;
87 struct r600_context *ctx;
88 boolean shared;
89 struct r600_reloc *reloc;
90 unsigned reloc_id;
91 unsigned last_flush;
92 unsigned name;
93 unsigned binding;
94 };
95
96 struct r600_bo {
97 struct pipe_reference reference;
98 unsigned size;
99 unsigned tiling_flags;
100 unsigned kernel_pitch;
101 unsigned domains;
102 struct radeon_bo *bo;
103 unsigned fence;
104 /* manager data */
105 struct list_head list;
106 unsigned manager_id;
107 unsigned alignment;
108 unsigned offset;
109 int64_t start;
110 int64_t end;
111 };
112
113 struct r600_bomgr {
114 struct radeon *radeon;
115 unsigned usecs;
116 pipe_mutex mutex;
117 struct list_head delayed;
118 unsigned num_delayed;
119 };
120
121 /*
122 * r600_drm.c
123 */
124 struct radeon *r600_new(int fd, unsigned device);
125 void r600_delete(struct radeon *r600);
126
127 /*
128 * radeon_pciid.c
129 */
130 unsigned radeon_family_from_device(unsigned device);
131
132 /*
133 * radeon_bo.c
134 */
135 struct radeon_bo *radeon_bo(struct radeon *radeon, unsigned handle,
136 unsigned size, unsigned alignment, unsigned initial_domain);
137 void radeon_bo_reference(struct radeon *radeon, struct radeon_bo **dst,
138 struct radeon_bo *src);
139 int radeon_bo_wait(struct radeon *radeon, struct radeon_bo *bo);
140 int radeon_bo_busy(struct radeon *radeon, struct radeon_bo *bo, uint32_t *domain);
141 int radeon_bo_fencelist(struct radeon *radeon, struct radeon_bo **bolist, uint32_t num_bo);
142 int radeon_bo_get_tiling_flags(struct radeon *radeon,
143 struct radeon_bo *bo,
144 uint32_t *tiling_flags,
145 uint32_t *pitch);
146 int radeon_bo_get_name(struct radeon *radeon,
147 struct radeon_bo *bo,
148 uint32_t *name);
149 int radeon_bo_fixed_map(struct radeon *radeon, struct radeon_bo *bo);
150
151 /*
152 * r600_hw_context.c
153 */
154 int r600_context_init_fence(struct r600_context *ctx);
155 void r600_context_bo_reloc(struct r600_context *ctx, u32 *pm4, struct r600_bo *rbo);
156 void r600_context_bo_flush(struct r600_context *ctx, unsigned flush_flags,
157 unsigned flush_mask, struct r600_bo *rbo);
158 struct r600_bo *r600_context_reg_bo(struct r600_context *ctx, unsigned offset);
159 int r600_context_add_block(struct r600_context *ctx, const struct r600_reg *reg, unsigned nreg,
160 unsigned opcode, unsigned offset_base);
161 void r600_context_pipe_state_set_resource(struct r600_context *ctx, struct r600_pipe_resource_state *state, unsigned offset);
162 void r600_context_block_emit_dirty(struct r600_context *ctx, struct r600_block *block);
163 void r600_context_dirty_block(struct r600_context *ctx, struct r600_block *block,
164 int dirty, int index);
165 int r600_setup_block_table(struct r600_context *ctx);
166 void r600_context_reg(struct r600_context *ctx,
167 unsigned offset, unsigned value,
168 unsigned mask);
169 void r600_init_cs(struct r600_context *ctx);
170 /*
171 * r600_bo.c
172 */
173 void r600_bo_destroy(struct radeon *radeon, struct r600_bo *bo);
174
175 /*
176 * r600_bomgr.c
177 */
178 struct r600_bomgr *r600_bomgr_create(struct radeon *radeon, unsigned usecs);
179 void r600_bomgr_destroy(struct r600_bomgr *mgr);
180 bool r600_bomgr_bo_destroy(struct r600_bomgr *mgr, struct r600_bo *bo);
181 void r600_bomgr_bo_init(struct r600_bomgr *mgr, struct r600_bo *bo);
182 struct r600_bo *r600_bomgr_bo_create(struct r600_bomgr *mgr,
183 unsigned size,
184 unsigned alignment,
185 unsigned cfence);
186
187
188 /*
189 * helpers
190 */
191
192
193 /*
194 * radeon_bo.c
195 */
196 static inline int radeon_bo_map(struct radeon *radeon, struct radeon_bo *bo)
197 {
198 if (bo->map_count == 0 && !bo->data)
199 return radeon_bo_fixed_map(radeon, bo);
200 bo->map_count++;
201 return 0;
202 }
203
204 static inline void radeon_bo_unmap(struct radeon *radeon, struct radeon_bo *bo)
205 {
206 bo->map_count--;
207 assert(bo->map_count >= 0);
208 }
209
210 /*
211 * fence
212 */
213 static inline bool fence_is_after(unsigned fence, unsigned ofence)
214 {
215 /* handle wrap around */
216 if (fence < 0x80000000 && ofence > 0x80000000)
217 return TRUE;
218 if (fence > ofence)
219 return TRUE;
220 return FALSE;
221 }
222
223 #endif