blob: 7630b30b5f083486a01b8e1e560a6e2820e6c86f [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"
Marek Olšákce12f822011-07-22 19:25:07 +020038#include "../../radeon/drm/radeon_winsys.h"
Jerome Glissefd266ec2010-09-17 10:41:50 -040039
Dave Airlie162bc402011-04-18 13:03:06 +100040#define PKT_COUNT_C 0xC000FFFF
41#define PKT_COUNT_S(x) (((x) & 0x3FFF) << 16)
42
Jerome Glisse15753cf2010-12-09 13:07:10 -050043struct r600_bomgr;
Jerome Glisse63b97902011-01-11 14:29:33 -050044struct r600_bo;
Jerome Glisse15753cf2010-12-09 13:07:10 -050045
Jerome Glissefd266ec2010-09-17 10:41:50 -040046struct radeon {
Marek Olšákce12f822011-07-22 19:25:07 +020047 struct radeon_info info;
Jerome Glissefd266ec2010-09-17 10:41:50 -040048 int fd;
49 int refcount;
50 unsigned device;
51 unsigned family;
Jerome Glisse363dfb82010-09-20 11:58:00 -040052 enum chip_class chip_class;
Jerome Glisse15753cf2010-12-09 13:07:10 -050053 struct r600_tiling_info tiling_info;
54 struct r600_bomgr *bomgr;
Jerome Glisse63b97902011-01-11 14:29:33 -050055 unsigned fence;
Jerome Glisse15753cf2010-12-09 13:07:10 -050056 unsigned *cfence;
Jerome Glisse63b97902011-01-11 14:29:33 -050057 struct r600_bo *fence_bo;
Mathias Fröhlich90c2fd82011-01-23 22:35:13 +010058 unsigned clock_crystal_freq;
Dave Airlie929be6e2011-03-01 14:55:35 +100059 unsigned num_backends;
Vadim Girlin6eb94fc2011-08-03 01:04:19 +040060 unsigned num_tile_pipes;
61 unsigned backend_map;
62 boolean backend_map_valid;
Dave Airlie929be6e2011-03-01 14:55:35 +100063 unsigned minor_version;
Dave Airliee4b040c2011-03-21 19:56:26 +100064
65 /* List of buffer handles and its mutex. */
66 struct util_hash_table *bo_handles;
67 pipe_mutex bo_handles_mutex;
Jerome Glissefd266ec2010-09-17 10:41:50 -040068};
69
Dave Airlieba78a5a2011-06-07 13:21:02 +100070/* these flags are used in register flags and added into block flags */
Dave Airliec0580672011-04-17 17:35:44 +100071#define REG_FLAG_NEED_BO 1
72#define REG_FLAG_DIRTY_ALWAYS 2
Dave Airlieae7abf02011-05-03 20:45:39 +020073#define REG_FLAG_RV6XX_SBU 4
Dave Airlie65ee7cd2011-05-31 10:52:07 +100074#define REG_FLAG_NOT_R600 8
Dave Airlie63184bc2011-06-03 09:59:12 +100075#define REG_FLAG_ENABLE_ALWAYS 16
Dave Airlieba78a5a2011-06-07 13:21:02 +100076#define BLOCK_FLAG_RESOURCE 32
Dave Airlie04554c72011-06-08 14:35:00 +100077#define REG_FLAG_FLUSH_CHANGE 64
Dave Airliec0580672011-04-17 17:35:44 +100078
Jerome Glissefd266ec2010-09-17 10:41:50 -040079struct r600_reg {
Jerome Glisse56469642010-09-28 17:37:56 -040080 unsigned offset;
Dave Airliec0580672011-04-17 17:35:44 +100081 unsigned flags;
Jerome Glisseca352922010-09-21 20:24:51 -040082 unsigned flush_flags;
Jerome Glisse585e4092010-10-05 10:29:30 -040083 unsigned flush_mask;
Jerome Glissefd266ec2010-09-17 10:41:50 -040084};
85
Dave Airliebd5b7a62011-05-13 10:41:16 +100086#define BO_BOUND_TEXTURE 1
Jerome Glisse1235bec2010-09-29 15:05:19 -040087struct radeon_bo {
88 struct pipe_reference reference;
89 unsigned handle;
90 unsigned size;
91 unsigned alignment;
Tilman Sauerbeck86778da2010-10-29 19:30:57 +020092 int map_count;
Jerome Glisse1235bec2010-09-29 15:05:19 -040093 void *data;
Dave Airlie3c38e4f2010-10-05 15:35:52 +100094 struct list_head fencedlist;
Jerome Glisseea5a74f2010-10-05 16:14:11 -040095 unsigned fence;
96 struct r600_context *ctx;
Dave Airlie3c38e4f2010-10-05 15:35:52 +100097 boolean shared;
Jerome Glisse12d16e52010-10-05 08:42:42 -040098 struct r600_reloc *reloc;
99 unsigned reloc_id;
Jerome Glisse585e4092010-10-05 10:29:30 -0400100 unsigned last_flush;
Dave Airliee4b040c2011-03-21 19:56:26 +1000101 unsigned name;
Dave Airliebd5b7a62011-05-13 10:41:16 +1000102 unsigned binding;
Jerome Glisse1235bec2010-09-29 15:05:19 -0400103};
104
Jerome Glisse294c9fc2010-10-04 10:06:13 -0400105struct r600_bo {
Dave Airlie4707ae22011-06-07 11:03:59 +1000106 struct pipe_reference reference; /* this must be the first member for the r600_bo_reference inline to work */
107 /* DO NOT MOVE THIS ^ */
Jerome Glisse674452f2010-10-04 10:37:32 -0400108 unsigned size;
Dave Airlie8a74f742010-10-18 09:45:58 +1000109 unsigned tiling_flags;
Jerome Glisseedda44e2010-12-03 13:06:53 -0500110 unsigned kernel_pitch;
Keith Whitwell29c4a152010-11-02 17:47:06 +0000111 unsigned domains;
Jerome Glisse15753cf2010-12-09 13:07:10 -0500112 struct radeon_bo *bo;
113 unsigned fence;
114 /* manager data */
115 struct list_head list;
116 unsigned manager_id;
117 unsigned alignment;
118 unsigned offset;
119 int64_t start;
120 int64_t end;
Jerome Glisse1235bec2010-09-29 15:05:19 -0400121};
122
Jerome Glisse15753cf2010-12-09 13:07:10 -0500123struct r600_bomgr {
124 struct radeon *radeon;
125 unsigned usecs;
126 pipe_mutex mutex;
127 struct list_head delayed;
128 unsigned num_delayed;
129};
Jerome Glisse1235bec2010-09-29 15:05:19 -0400130
Jerome Glisse15753cf2010-12-09 13:07:10 -0500131/*
132 * r600_drm.c
133 */
134struct radeon *r600_new(int fd, unsigned device);
135void r600_delete(struct radeon *r600);
136
137/*
138 * radeon_pciid.c
139 */
Jerome Glissefd266ec2010-09-17 10:41:50 -0400140unsigned radeon_family_from_device(unsigned device);
141
Jerome Glisse15753cf2010-12-09 13:07:10 -0500142/*
143 * radeon_bo.c
144 */
Jerome Glisse1235bec2010-09-29 15:05:19 -0400145struct radeon_bo *radeon_bo(struct radeon *radeon, unsigned handle,
Dave Airlieecc051d2011-05-13 14:16:31 +1000146 unsigned size, unsigned alignment, unsigned initial_domain);
Jerome Glisse1235bec2010-09-29 15:05:19 -0400147void radeon_bo_reference(struct radeon *radeon, struct radeon_bo **dst,
148 struct radeon_bo *src);
149int radeon_bo_wait(struct radeon *radeon, struct radeon_bo *bo);
150int radeon_bo_busy(struct radeon *radeon, struct radeon_bo *bo, uint32_t *domain);
Dave Airlie3c38e4f2010-10-05 15:35:52 +1000151int radeon_bo_fencelist(struct radeon *radeon, struct radeon_bo **bolist, uint32_t num_bo);
Dave Airlie8a74f742010-10-18 09:45:58 +1000152int radeon_bo_get_tiling_flags(struct radeon *radeon,
153 struct radeon_bo *bo,
154 uint32_t *tiling_flags,
155 uint32_t *pitch);
Benjamin Franzke46c19702010-11-03 21:41:48 +0100156int radeon_bo_get_name(struct radeon *radeon,
157 struct radeon_bo *bo,
158 uint32_t *name);
Dave Airlie5e154972011-05-11 13:14:16 +1000159int radeon_bo_fixed_map(struct radeon *radeon, struct radeon_bo *bo);
Jerome Glisse1235bec2010-09-29 15:05:19 -0400160
Jerome Glisse15753cf2010-12-09 13:07:10 -0500161/*
162 * r600_hw_context.c
163 */
Jerome Glisseea5a74f2010-10-05 16:14:11 -0400164int r600_context_init_fence(struct r600_context *ctx);
Dave Airlie745abb52011-06-07 15:40:20 +1000165void r600_context_get_reloc(struct r600_context *ctx, struct r600_bo *rbo);
Jerome Glisse585e4092010-10-05 10:29:30 -0400166void r600_context_bo_flush(struct r600_context *ctx, unsigned flush_flags,
167 unsigned flush_mask, struct r600_bo *rbo);
Jerome Glisse674452f2010-10-04 10:37:32 -0400168struct r600_bo *r600_context_reg_bo(struct r600_context *ctx, unsigned offset);
Dave Airlied79a4a62011-05-12 14:07:53 +1000169int r600_context_add_block(struct r600_context *ctx, const struct r600_reg *reg, unsigned nreg,
170 unsigned opcode, unsigned offset_base);
Dave Airlief356bb72011-06-06 18:00:36 +1000171void r600_context_pipe_state_set_resource(struct r600_context *ctx, struct r600_pipe_resource_state *state, struct r600_block *block);
Dave Airlie5b5a16e2011-04-19 10:04:02 +1000172void r600_context_block_emit_dirty(struct r600_context *ctx, struct r600_block *block);
Dave Airlieba78a5a2011-06-07 13:21:02 +1000173void r600_context_block_resource_emit_dirty(struct r600_context *ctx, struct r600_block *block);
Dave Airlie5b5a16e2011-04-19 10:04:02 +1000174void r600_context_dirty_block(struct r600_context *ctx, struct r600_block *block,
175 int dirty, int index);
Dave Airlie240049a2011-05-12 15:01:33 +1000176int r600_setup_block_table(struct r600_context *ctx);
Dave Airlie5b5a16e2011-04-19 10:04:02 +1000177void r600_context_reg(struct r600_context *ctx,
178 unsigned offset, unsigned value,
179 unsigned mask);
Alex Deucherb5518832011-05-31 10:43:31 -0400180void r600_init_cs(struct r600_context *ctx);
Dave Airlief356bb72011-06-06 18:00:36 +1000181int r600_resource_init(struct r600_context *ctx, struct r600_range *range, unsigned offset, unsigned nblocks, unsigned stride, struct r600_reg *reg, int nreg, unsigned offset_base);
Dave Airlie745abb52011-06-07 15:40:20 +1000182
183static INLINE void r600_context_bo_reloc(struct r600_context *ctx, u32 *pm4, struct r600_bo *rbo)
184{
185 struct radeon_bo *bo = rbo->bo;
186
187 assert(bo != NULL);
188
189 if (!bo->reloc)
190 r600_context_get_reloc(ctx, rbo);
191
192 /* set PKT3 to point to proper reloc */
193 *pm4 = bo->reloc_id;
194}
195
Jerome Glisse15753cf2010-12-09 13:07:10 -0500196/*
197 * r600_bo.c
198 */
199void r600_bo_destroy(struct radeon *radeon, struct r600_bo *bo);
Jerome Glisse1235bec2010-09-29 15:05:19 -0400200
Jerome Glisse15753cf2010-12-09 13:07:10 -0500201/*
202 * r600_bomgr.c
203 */
204struct r600_bomgr *r600_bomgr_create(struct radeon *radeon, unsigned usecs);
205void r600_bomgr_destroy(struct r600_bomgr *mgr);
Brian Paul5f2deba2011-06-08 08:05:40 -0600206boolean r600_bomgr_bo_destroy(struct r600_bomgr *mgr, struct r600_bo *bo);
Jerome Glisse15753cf2010-12-09 13:07:10 -0500207void r600_bomgr_bo_init(struct r600_bomgr *mgr, struct r600_bo *bo);
208struct r600_bo *r600_bomgr_bo_create(struct r600_bomgr *mgr,
209 unsigned size,
210 unsigned alignment,
211 unsigned cfence);
212
213
214/*
215 * helpers
216 */
Dave Airlied015d2f2011-05-12 13:20:02 +1000217
Jerome Glissea8526152010-09-26 12:06:46 -0400218
Jerome Glisse15753cf2010-12-09 13:07:10 -0500219/*
220 * radeon_bo.c
221 */
John Doe40181ae2010-09-30 17:53:36 -0400222static inline int radeon_bo_map(struct radeon *radeon, struct radeon_bo *bo)
223{
Dave Airlie5e154972011-05-11 13:14:16 +1000224 if (bo->map_count == 0 && !bo->data)
225 return radeon_bo_fixed_map(radeon, bo);
John Doe40181ae2010-09-30 17:53:36 -0400226 bo->map_count++;
Dave Airlie1c2b3cb2010-10-04 16:26:46 +1000227 return 0;
John Doe40181ae2010-09-30 17:53:36 -0400228}
229
230static inline void radeon_bo_unmap(struct radeon *radeon, struct radeon_bo *bo)
231{
232 bo->map_count--;
233 assert(bo->map_count >= 0);
234}
235
Jerome Glisse15753cf2010-12-09 13:07:10 -0500236/*
Jerome Glisse15753cf2010-12-09 13:07:10 -0500237 * fence
238 */
Brian Paul5f2deba2011-06-08 08:05:40 -0600239static inline boolean fence_is_after(unsigned fence, unsigned ofence)
Jerome Glisse15753cf2010-12-09 13:07:10 -0500240{
241 /* handle wrap around */
242 if (fence < 0x80000000 && ofence > 0x80000000)
243 return TRUE;
244 if (fence > ofence)
245 return TRUE;
246 return FALSE;
247}
248
Jerome Glissefd266ec2010-09-17 10:41:50 -0400249#endif