blob: 41c5ee02c389f8956a398b9a888ed05e6620662c [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>
35#include <os/os_thread.h>
Jerome Glissefd266ec2010-09-17 10:41:50 -040036#include "r600.h"
37
Jerome Glisse15753cf2010-12-09 13:07:10 -050038struct r600_bomgr;
Jerome Glisse63b97902011-01-11 14:29:33 -050039struct r600_bo;
Jerome Glisse15753cf2010-12-09 13:07:10 -050040
Jerome Glissefd266ec2010-09-17 10:41:50 -040041struct radeon {
42 int fd;
43 int refcount;
44 unsigned device;
45 unsigned family;
Jerome Glisse363dfb82010-09-20 11:58:00 -040046 enum chip_class chip_class;
Jerome Glisse15753cf2010-12-09 13:07:10 -050047 struct r600_tiling_info tiling_info;
48 struct r600_bomgr *bomgr;
Jerome Glisse63b97902011-01-11 14:29:33 -050049 unsigned fence;
Jerome Glisse15753cf2010-12-09 13:07:10 -050050 unsigned *cfence;
Jerome Glisse63b97902011-01-11 14:29:33 -050051 struct r600_bo *fence_bo;
Mathias Fröhlich90c2fd82011-01-23 22:35:13 +010052 unsigned clock_crystal_freq;
Dave Airlie929be6e2011-03-01 14:55:35 +100053 unsigned num_backends;
54 unsigned minor_version;
Jerome Glissefd266ec2010-09-17 10:41:50 -040055};
56
Jerome Glissefd266ec2010-09-17 10:41:50 -040057struct r600_reg {
Jerome Glisse56469642010-09-28 17:37:56 -040058 unsigned opcode;
59 unsigned offset_base;
60 unsigned offset;
Jerome Glisseca352922010-09-21 20:24:51 -040061 unsigned need_bo;
62 unsigned flush_flags;
Jerome Glisse585e4092010-10-05 10:29:30 -040063 unsigned flush_mask;
Jerome Glissefd266ec2010-09-17 10:41:50 -040064};
65
Jerome Glisse1235bec2010-09-29 15:05:19 -040066struct radeon_bo {
67 struct pipe_reference reference;
68 unsigned handle;
69 unsigned size;
70 unsigned alignment;
Tilman Sauerbeck86778da2010-10-29 19:30:57 +020071 int map_count;
Jerome Glisse1235bec2010-09-29 15:05:19 -040072 void *data;
Dave Airlie3c38e4f2010-10-05 15:35:52 +100073 struct list_head fencedlist;
Jerome Glisseea5a74f2010-10-05 16:14:11 -040074 unsigned fence;
75 struct r600_context *ctx;
Dave Airlie3c38e4f2010-10-05 15:35:52 +100076 boolean shared;
Jerome Glisse12d16e52010-10-05 08:42:42 -040077 struct r600_reloc *reloc;
78 unsigned reloc_id;
Jerome Glisse585e4092010-10-05 10:29:30 -040079 unsigned last_flush;
Jerome Glisse1235bec2010-09-29 15:05:19 -040080};
81
Jerome Glisse294c9fc2010-10-04 10:06:13 -040082struct r600_bo {
Jerome Glisse1235bec2010-09-29 15:05:19 -040083 struct pipe_reference reference;
Jerome Glisse674452f2010-10-04 10:37:32 -040084 unsigned size;
Dave Airlie8a74f742010-10-18 09:45:58 +100085 unsigned tiling_flags;
Jerome Glisseedda44e2010-12-03 13:06:53 -050086 unsigned kernel_pitch;
Keith Whitwell29c4a152010-11-02 17:47:06 +000087 unsigned domains;
Jerome Glisse15753cf2010-12-09 13:07:10 -050088 struct radeon_bo *bo;
89 unsigned fence;
90 /* manager data */
91 struct list_head list;
92 unsigned manager_id;
93 unsigned alignment;
94 unsigned offset;
95 int64_t start;
96 int64_t end;
Jerome Glisse1235bec2010-09-29 15:05:19 -040097};
98
Jerome Glisse15753cf2010-12-09 13:07:10 -050099struct r600_bomgr {
100 struct radeon *radeon;
101 unsigned usecs;
102 pipe_mutex mutex;
103 struct list_head delayed;
104 unsigned num_delayed;
105};
Jerome Glisse1235bec2010-09-29 15:05:19 -0400106
Jerome Glisse15753cf2010-12-09 13:07:10 -0500107/*
108 * r600_drm.c
109 */
110struct radeon *r600_new(int fd, unsigned device);
111void r600_delete(struct radeon *r600);
112
113/*
114 * radeon_pciid.c
115 */
Jerome Glissefd266ec2010-09-17 10:41:50 -0400116unsigned radeon_family_from_device(unsigned device);
117
Jerome Glisse15753cf2010-12-09 13:07:10 -0500118/*
119 * radeon_bo.c
120 */
Jerome Glisse1235bec2010-09-29 15:05:19 -0400121struct radeon_bo *radeon_bo(struct radeon *radeon, unsigned handle,
Tilman Sauerbeck4e343932010-10-28 21:27:37 +0200122 unsigned size, unsigned alignment);
Jerome Glisse1235bec2010-09-29 15:05:19 -0400123void radeon_bo_reference(struct radeon *radeon, struct radeon_bo **dst,
124 struct radeon_bo *src);
125int radeon_bo_wait(struct radeon *radeon, struct radeon_bo *bo);
126int radeon_bo_busy(struct radeon *radeon, struct radeon_bo *bo, uint32_t *domain);
Dave Airlie3c38e4f2010-10-05 15:35:52 +1000127int radeon_bo_fencelist(struct radeon *radeon, struct radeon_bo **bolist, uint32_t num_bo);
Dave Airlie8a74f742010-10-18 09:45:58 +1000128int radeon_bo_get_tiling_flags(struct radeon *radeon,
129 struct radeon_bo *bo,
130 uint32_t *tiling_flags,
131 uint32_t *pitch);
Benjamin Franzke46c19702010-11-03 21:41:48 +0100132int radeon_bo_get_name(struct radeon *radeon,
133 struct radeon_bo *bo,
134 uint32_t *name);
Jerome Glisse1235bec2010-09-29 15:05:19 -0400135
Jerome Glisse15753cf2010-12-09 13:07:10 -0500136/*
137 * r600_hw_context.c
138 */
Jerome Glisseea5a74f2010-10-05 16:14:11 -0400139int r600_context_init_fence(struct r600_context *ctx);
Jerome Glisse674452f2010-10-04 10:37:32 -0400140void r600_context_bo_reloc(struct r600_context *ctx, u32 *pm4, struct r600_bo *rbo);
Jerome Glisse585e4092010-10-05 10:29:30 -0400141void r600_context_bo_flush(struct r600_context *ctx, unsigned flush_flags,
142 unsigned flush_mask, struct r600_bo *rbo);
Jerome Glisse674452f2010-10-04 10:37:32 -0400143struct r600_bo *r600_context_reg_bo(struct r600_context *ctx, unsigned offset);
144int r600_context_add_block(struct r600_context *ctx, const struct r600_reg *reg, unsigned nreg);
145
Jerome Glisse15753cf2010-12-09 13:07:10 -0500146/*
147 * r600_bo.c
148 */
149void r600_bo_destroy(struct radeon *radeon, struct r600_bo *bo);
Jerome Glisse1235bec2010-09-29 15:05:19 -0400150
Jerome Glisse15753cf2010-12-09 13:07:10 -0500151/*
152 * r600_bomgr.c
153 */
154struct r600_bomgr *r600_bomgr_create(struct radeon *radeon, unsigned usecs);
155void r600_bomgr_destroy(struct r600_bomgr *mgr);
156bool r600_bomgr_bo_destroy(struct r600_bomgr *mgr, struct r600_bo *bo);
157void r600_bomgr_bo_init(struct r600_bomgr *mgr, struct r600_bo *bo);
158struct r600_bo *r600_bomgr_bo_create(struct r600_bomgr *mgr,
159 unsigned size,
160 unsigned alignment,
161 unsigned cfence);
162
163
164/*
165 * helpers
166 */
Jerome Glisse56469642010-09-28 17:37:56 -0400167#define CTX_RANGE_ID(ctx, offset) (((offset) >> (ctx)->hash_shift) & 255)
168#define CTX_BLOCK_ID(ctx, offset) ((offset) & ((1 << (ctx)->hash_shift) - 1))
Jerome Glissea8526152010-09-26 12:06:46 -0400169
Jerome Glisse56469642010-09-28 17:37:56 -0400170static void inline r600_context_reg(struct r600_context *ctx,
Jerome Glissea8526152010-09-26 12:06:46 -0400171 unsigned offset, unsigned value,
172 unsigned mask)
173{
Jerome Glisse56469642010-09-28 17:37:56 -0400174 struct r600_range *range;
175 struct r600_block *block;
Jerome Glissea8526152010-09-26 12:06:46 -0400176 unsigned id;
177
Jerome Glisse56469642010-09-28 17:37:56 -0400178 range = &ctx->range[CTX_RANGE_ID(ctx, offset)];
179 block = range->blocks[CTX_BLOCK_ID(ctx, offset)];
Jerome Glissea8526152010-09-26 12:06:46 -0400180 id = (offset - block->start_offset) >> 2;
Jerome Glisse02826822010-09-27 17:00:07 -0400181 block->reg[id] &= ~mask;
182 block->reg[id] |= value;
Jerome Glissea8526152010-09-26 12:06:46 -0400183 if (!(block->status & R600_BLOCK_STATUS_DIRTY)) {
Jerome Glisse02826822010-09-27 17:00:07 -0400184 ctx->pm4_dirty_cdwords += block->pm4_ndwords;
John Doedde13912010-09-30 17:30:25 -0400185 block->status |= R600_BLOCK_STATUS_ENABLED;
186 block->status |= R600_BLOCK_STATUS_DIRTY;
Bas Nieuwenhuizenac8a1eb2010-10-05 21:01:43 +0200187 LIST_ADDTAIL(&block->list,&ctx->dirty);
Jerome Glissea8526152010-09-26 12:06:46 -0400188 }
Jerome Glissea8526152010-09-26 12:06:46 -0400189}
190
Jerome Glisse56469642010-09-28 17:37:56 -0400191static inline void r600_context_block_emit_dirty(struct r600_context *ctx, struct r600_block *block)
192{
Jerome Glisse56469642010-09-28 17:37:56 -0400193 int id;
194
195 for (int j = 0; j < block->nreg; j++) {
196 if (block->pm4_bo_index[j]) {
197 /* find relocation */
198 id = block->pm4_bo_index[j];
Jerome Glisse2cf31992010-10-05 15:23:07 -0400199 r600_context_bo_reloc(ctx,
200 &block->pm4[block->reloc[id].bo_pm4_index],
Jerome Glisse674452f2010-10-04 10:37:32 -0400201 block->reloc[id].bo);
Jerome Glisse2cf31992010-10-05 15:23:07 -0400202 r600_context_bo_flush(ctx,
203 block->reloc[id].flush_flags,
204 block->reloc[id].flush_mask,
205 block->reloc[id].bo);
Jerome Glisse56469642010-09-28 17:37:56 -0400206 }
207 }
208 memcpy(&ctx->pm4[ctx->pm4_cdwords], block->pm4, block->pm4_ndwords * 4);
209 ctx->pm4_cdwords += block->pm4_ndwords;
210 block->status ^= R600_BLOCK_STATUS_DIRTY;
Jerome Glisse3fabd212010-10-06 12:56:53 -0400211 LIST_DELINIT(&block->list);
Jerome Glisse56469642010-09-28 17:37:56 -0400212}
213
Jerome Glisse15753cf2010-12-09 13:07:10 -0500214/*
215 * radeon_bo.c
216 */
John Doe40181ae2010-09-30 17:53:36 -0400217static inline int radeon_bo_map(struct radeon *radeon, struct radeon_bo *bo)
218{
219 bo->map_count++;
Dave Airlie1c2b3cb2010-10-04 16:26:46 +1000220 return 0;
John Doe40181ae2010-09-30 17:53:36 -0400221}
222
223static inline void radeon_bo_unmap(struct radeon *radeon, struct radeon_bo *bo)
224{
225 bo->map_count--;
226 assert(bo->map_count >= 0);
227}
228
Jerome Glisse15753cf2010-12-09 13:07:10 -0500229/*
230 * r600_bo
231 */
232static inline struct radeon_bo *r600_bo_get_bo(struct r600_bo *bo)
233{
234 return bo->bo;
235}
236
237static unsigned inline r600_bo_get_handle(struct r600_bo *bo)
238{
239 return bo->bo->handle;
240}
241
242static unsigned inline r600_bo_get_size(struct r600_bo *bo)
243{
244 return bo->size;
245}
246
247/*
248 * fence
249 */
250static inline bool fence_is_after(unsigned fence, unsigned ofence)
251{
252 /* handle wrap around */
253 if (fence < 0x80000000 && ofence > 0x80000000)
254 return TRUE;
255 if (fence > ofence)
256 return TRUE;
257 return FALSE;
258}
259
Jerome Glissefd266ec2010-09-17 10:41:50 -0400260#endif