blob: 534df11f1859dd9f9f493e5a7d0c6ca7d2cc7cbb [file] [log] [blame]
Jerome Glissefd266ec2010-09-17 10:41:50 -04001/*
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>
Jerome Glisse15753cf2010-12-09 13:07:10 -050033#include <util/u_double_list.h>
34#include <util/u_inlines.h>
Dave Airliee4b040c2011-03-21 19:56:26 +100035#include "util/u_hash_table.h"
Jerome Glisse15753cf2010-12-09 13:07:10 -050036#include <os/os_thread.h>
Jerome Glissefd266ec2010-09-17 10:41:50 -040037#include "r600.h"
38
Jerome Glisse15753cf2010-12-09 13:07:10 -050039struct r600_bomgr;
Jerome Glisse63b97902011-01-11 14:29:33 -050040struct r600_bo;
Jerome Glisse15753cf2010-12-09 13:07:10 -050041
Jerome Glissefd266ec2010-09-17 10:41:50 -040042struct radeon {
43 int fd;
44 int refcount;
45 unsigned device;
46 unsigned family;
Jerome Glisse363dfb82010-09-20 11:58:00 -040047 enum chip_class chip_class;
Jerome Glisse15753cf2010-12-09 13:07:10 -050048 struct r600_tiling_info tiling_info;
49 struct r600_bomgr *bomgr;
Jerome Glisse63b97902011-01-11 14:29:33 -050050 unsigned fence;
Jerome Glisse15753cf2010-12-09 13:07:10 -050051 unsigned *cfence;
Jerome Glisse63b97902011-01-11 14:29:33 -050052 struct r600_bo *fence_bo;
Mathias Fröhlich90c2fd82011-01-23 22:35:13 +010053 unsigned clock_crystal_freq;
Dave Airlie929be6e2011-03-01 14:55:35 +100054 unsigned num_backends;
55 unsigned minor_version;
Dave Airliee4b040c2011-03-21 19:56:26 +100056
57 /* List of buffer handles and its mutex. */
58 struct util_hash_table *bo_handles;
59 pipe_mutex bo_handles_mutex;
Jerome Glissefd266ec2010-09-17 10:41:50 -040060};
61
Dave Airliec0580672011-04-17 17:35:44 +100062#define REG_FLAG_NEED_BO 1
63#define REG_FLAG_DIRTY_ALWAYS 2
64
Jerome Glissefd266ec2010-09-17 10:41:50 -040065struct r600_reg {
Jerome Glisse56469642010-09-28 17:37:56 -040066 unsigned opcode;
67 unsigned offset_base;
68 unsigned offset;
Dave Airliec0580672011-04-17 17:35:44 +100069 unsigned flags;
Jerome Glisseca352922010-09-21 20:24:51 -040070 unsigned flush_flags;
Jerome Glisse585e4092010-10-05 10:29:30 -040071 unsigned flush_mask;
Jerome Glissefd266ec2010-09-17 10:41:50 -040072};
73
Jerome Glisse1235bec2010-09-29 15:05:19 -040074struct radeon_bo {
75 struct pipe_reference reference;
76 unsigned handle;
77 unsigned size;
78 unsigned alignment;
Tilman Sauerbeck86778da2010-10-29 19:30:57 +020079 int map_count;
Jerome Glisse1235bec2010-09-29 15:05:19 -040080 void *data;
Dave Airlie3c38e4f2010-10-05 15:35:52 +100081 struct list_head fencedlist;
Jerome Glisseea5a74f2010-10-05 16:14:11 -040082 unsigned fence;
83 struct r600_context *ctx;
Dave Airlie3c38e4f2010-10-05 15:35:52 +100084 boolean shared;
Jerome Glisse12d16e52010-10-05 08:42:42 -040085 struct r600_reloc *reloc;
86 unsigned reloc_id;
Jerome Glisse585e4092010-10-05 10:29:30 -040087 unsigned last_flush;
Dave Airliee4b040c2011-03-21 19:56:26 +100088 unsigned name;
Jerome Glisse1235bec2010-09-29 15:05:19 -040089};
90
Jerome Glisse294c9fc2010-10-04 10:06:13 -040091struct r600_bo {
Jerome Glisse1235bec2010-09-29 15:05:19 -040092 struct pipe_reference reference;
Jerome Glisse674452f2010-10-04 10:37:32 -040093 unsigned size;
Dave Airlie8a74f742010-10-18 09:45:58 +100094 unsigned tiling_flags;
Jerome Glisseedda44e2010-12-03 13:06:53 -050095 unsigned kernel_pitch;
Keith Whitwell29c4a152010-11-02 17:47:06 +000096 unsigned domains;
Jerome Glisse15753cf2010-12-09 13:07:10 -050097 struct radeon_bo *bo;
98 unsigned fence;
99 /* manager data */
100 struct list_head list;
101 unsigned manager_id;
102 unsigned alignment;
103 unsigned offset;
104 int64_t start;
105 int64_t end;
Jerome Glisse1235bec2010-09-29 15:05:19 -0400106};
107
Jerome Glisse15753cf2010-12-09 13:07:10 -0500108struct r600_bomgr {
109 struct radeon *radeon;
110 unsigned usecs;
111 pipe_mutex mutex;
112 struct list_head delayed;
113 unsigned num_delayed;
114};
Jerome Glisse1235bec2010-09-29 15:05:19 -0400115
Jerome Glisse15753cf2010-12-09 13:07:10 -0500116/*
117 * r600_drm.c
118 */
119struct radeon *r600_new(int fd, unsigned device);
120void r600_delete(struct radeon *r600);
121
122/*
123 * radeon_pciid.c
124 */
Jerome Glissefd266ec2010-09-17 10:41:50 -0400125unsigned radeon_family_from_device(unsigned device);
126
Jerome Glisse15753cf2010-12-09 13:07:10 -0500127/*
128 * radeon_bo.c
129 */
Jerome Glisse1235bec2010-09-29 15:05:19 -0400130struct radeon_bo *radeon_bo(struct radeon *radeon, unsigned handle,
Tilman Sauerbeck4e343932010-10-28 21:27:37 +0200131 unsigned size, unsigned alignment);
Jerome Glisse1235bec2010-09-29 15:05:19 -0400132void radeon_bo_reference(struct radeon *radeon, struct radeon_bo **dst,
133 struct radeon_bo *src);
134int radeon_bo_wait(struct radeon *radeon, struct radeon_bo *bo);
135int radeon_bo_busy(struct radeon *radeon, struct radeon_bo *bo, uint32_t *domain);
Dave Airlie3c38e4f2010-10-05 15:35:52 +1000136int radeon_bo_fencelist(struct radeon *radeon, struct radeon_bo **bolist, uint32_t num_bo);
Dave Airlie8a74f742010-10-18 09:45:58 +1000137int radeon_bo_get_tiling_flags(struct radeon *radeon,
138 struct radeon_bo *bo,
139 uint32_t *tiling_flags,
140 uint32_t *pitch);
Benjamin Franzke46c19702010-11-03 21:41:48 +0100141int radeon_bo_get_name(struct radeon *radeon,
142 struct radeon_bo *bo,
143 uint32_t *name);
Jerome Glisse1235bec2010-09-29 15:05:19 -0400144
Jerome Glisse15753cf2010-12-09 13:07:10 -0500145/*
146 * r600_hw_context.c
147 */
Jerome Glisseea5a74f2010-10-05 16:14:11 -0400148int r600_context_init_fence(struct r600_context *ctx);
Jerome Glisse674452f2010-10-04 10:37:32 -0400149void r600_context_bo_reloc(struct r600_context *ctx, u32 *pm4, struct r600_bo *rbo);
Jerome Glisse585e4092010-10-05 10:29:30 -0400150void r600_context_bo_flush(struct r600_context *ctx, unsigned flush_flags,
151 unsigned flush_mask, struct r600_bo *rbo);
Jerome Glisse674452f2010-10-04 10:37:32 -0400152struct r600_bo *r600_context_reg_bo(struct r600_context *ctx, unsigned offset);
153int r600_context_add_block(struct r600_context *ctx, const struct r600_reg *reg, unsigned nreg);
154
Jerome Glisse15753cf2010-12-09 13:07:10 -0500155/*
156 * r600_bo.c
157 */
158void r600_bo_destroy(struct radeon *radeon, struct r600_bo *bo);
Jerome Glisse1235bec2010-09-29 15:05:19 -0400159
Jerome Glisse15753cf2010-12-09 13:07:10 -0500160/*
161 * r600_bomgr.c
162 */
163struct r600_bomgr *r600_bomgr_create(struct radeon *radeon, unsigned usecs);
164void r600_bomgr_destroy(struct r600_bomgr *mgr);
165bool r600_bomgr_bo_destroy(struct r600_bomgr *mgr, struct r600_bo *bo);
166void r600_bomgr_bo_init(struct r600_bomgr *mgr, struct r600_bo *bo);
167struct r600_bo *r600_bomgr_bo_create(struct r600_bomgr *mgr,
168 unsigned size,
169 unsigned alignment,
170 unsigned cfence);
171
172
173/*
174 * helpers
175 */
Jerome Glisse56469642010-09-28 17:37:56 -0400176#define CTX_RANGE_ID(ctx, offset) (((offset) >> (ctx)->hash_shift) & 255)
177#define CTX_BLOCK_ID(ctx, offset) ((offset) & ((1 << (ctx)->hash_shift) - 1))
Jerome Glissea8526152010-09-26 12:06:46 -0400178
Jerome Glisse56469642010-09-28 17:37:56 -0400179static void inline r600_context_reg(struct r600_context *ctx,
Jerome Glissea8526152010-09-26 12:06:46 -0400180 unsigned offset, unsigned value,
181 unsigned mask)
182{
Jerome Glisse56469642010-09-28 17:37:56 -0400183 struct r600_range *range;
184 struct r600_block *block;
Jerome Glissea8526152010-09-26 12:06:46 -0400185 unsigned id;
186
Jerome Glisse56469642010-09-28 17:37:56 -0400187 range = &ctx->range[CTX_RANGE_ID(ctx, offset)];
188 block = range->blocks[CTX_BLOCK_ID(ctx, offset)];
Jerome Glissea8526152010-09-26 12:06:46 -0400189 id = (offset - block->start_offset) >> 2;
Jerome Glisse02826822010-09-27 17:00:07 -0400190 block->reg[id] &= ~mask;
191 block->reg[id] |= value;
Jerome Glissea8526152010-09-26 12:06:46 -0400192 if (!(block->status & R600_BLOCK_STATUS_DIRTY)) {
Jerome Glisse02826822010-09-27 17:00:07 -0400193 ctx->pm4_dirty_cdwords += block->pm4_ndwords;
John Doedde13912010-09-30 17:30:25 -0400194 block->status |= R600_BLOCK_STATUS_ENABLED;
195 block->status |= R600_BLOCK_STATUS_DIRTY;
Bas Nieuwenhuizenac8a1eb2010-10-05 21:01:43 +0200196 LIST_ADDTAIL(&block->list,&ctx->dirty);
Jerome Glissea8526152010-09-26 12:06:46 -0400197 }
Jerome Glissea8526152010-09-26 12:06:46 -0400198}
199
Dave Airliec0580672011-04-17 17:35:44 +1000200static inline void r600_context_dirty_block(struct r600_context *ctx, struct r600_block *block,
201 int dirty)
Dave Airlie70de2702011-04-17 17:11:36 +1000202{
Dave Airliec0580672011-04-17 17:35:44 +1000203 if ((dirty != (block->status & R600_BLOCK_STATUS_DIRTY)) || !(block->status & R600_BLOCK_STATUS_ENABLED)) {
Dave Airlie70de2702011-04-17 17:11:36 +1000204 block->status |= R600_BLOCK_STATUS_ENABLED;
205 block->status |= R600_BLOCK_STATUS_DIRTY;
206 ctx->pm4_dirty_cdwords += block->pm4_ndwords + block->pm4_flush_ndwords;
207 LIST_ADDTAIL(&block->list,&ctx->dirty);
208 }
209}
210
Jerome Glisse56469642010-09-28 17:37:56 -0400211static inline void r600_context_block_emit_dirty(struct r600_context *ctx, struct r600_block *block)
212{
Jerome Glisse56469642010-09-28 17:37:56 -0400213 int id;
214
215 for (int j = 0; j < block->nreg; j++) {
216 if (block->pm4_bo_index[j]) {
217 /* find relocation */
218 id = block->pm4_bo_index[j];
Jerome Glisse2cf31992010-10-05 15:23:07 -0400219 r600_context_bo_reloc(ctx,
220 &block->pm4[block->reloc[id].bo_pm4_index],
Jerome Glisse674452f2010-10-04 10:37:32 -0400221 block->reloc[id].bo);
Jerome Glisse2cf31992010-10-05 15:23:07 -0400222 r600_context_bo_flush(ctx,
223 block->reloc[id].flush_flags,
224 block->reloc[id].flush_mask,
225 block->reloc[id].bo);
Jerome Glisse56469642010-09-28 17:37:56 -0400226 }
227 }
228 memcpy(&ctx->pm4[ctx->pm4_cdwords], block->pm4, block->pm4_ndwords * 4);
229 ctx->pm4_cdwords += block->pm4_ndwords;
230 block->status ^= R600_BLOCK_STATUS_DIRTY;
Jerome Glisse3fabd212010-10-06 12:56:53 -0400231 LIST_DELINIT(&block->list);
Jerome Glisse56469642010-09-28 17:37:56 -0400232}
233
Jerome Glisse15753cf2010-12-09 13:07:10 -0500234/*
235 * radeon_bo.c
236 */
John Doe40181ae2010-09-30 17:53:36 -0400237static inline int radeon_bo_map(struct radeon *radeon, struct radeon_bo *bo)
238{
239 bo->map_count++;
Dave Airlie1c2b3cb2010-10-04 16:26:46 +1000240 return 0;
John Doe40181ae2010-09-30 17:53:36 -0400241}
242
243static inline void radeon_bo_unmap(struct radeon *radeon, struct radeon_bo *bo)
244{
245 bo->map_count--;
246 assert(bo->map_count >= 0);
247}
248
Jerome Glisse15753cf2010-12-09 13:07:10 -0500249/*
250 * r600_bo
251 */
252static inline struct radeon_bo *r600_bo_get_bo(struct r600_bo *bo)
253{
254 return bo->bo;
255}
256
257static unsigned inline r600_bo_get_handle(struct r600_bo *bo)
258{
259 return bo->bo->handle;
260}
261
262static unsigned inline r600_bo_get_size(struct r600_bo *bo)
263{
264 return bo->size;
265}
266
267/*
268 * fence
269 */
270static inline bool fence_is_after(unsigned fence, unsigned ofence)
271{
272 /* handle wrap around */
273 if (fence < 0x80000000 && ofence > 0x80000000)
274 return TRUE;
275 if (fence > ofence)
276 return TRUE;
277 return FALSE;
278}
279
Jerome Glissefd266ec2010-09-17 10:41:50 -0400280#endif