blob: 930cf81813afff6f11089ee6f24446221e903ceb [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
Jerome Glissefd266ec2010-09-17 10:41:50 -040029#include "r600.h"
Marek Olšákce12f822011-07-22 19:25:07 +020030#include "../../radeon/drm/radeon_winsys.h"
Marek Olšák354f76f2011-07-22 21:38:56 +020031#include "util/u_hash_table.h"
32#include "os/os_thread.h"
Marek Olšák3e579722011-08-03 05:15:36 +020033#include "radeon_drm.h"
Jerome Glissefd266ec2010-09-17 10:41:50 -040034
Dave Airlie162bc402011-04-18 13:03:06 +100035#define PKT_COUNT_C 0xC000FFFF
36#define PKT_COUNT_S(x) (((x) & 0x3FFF) << 16)
37
Jerome Glissefd266ec2010-09-17 10:41:50 -040038struct radeon {
Marek Olšák2ce783d2011-08-02 20:25:13 +020039 struct radeon_winsys *ws;
Marek Olšákce12f822011-07-22 19:25:07 +020040 struct radeon_info info;
Jerome Glissefd266ec2010-09-17 10:41:50 -040041 unsigned family;
Jerome Glisse363dfb82010-09-20 11:58:00 -040042 enum chip_class chip_class;
Jerome Glisse15753cf2010-12-09 13:07:10 -050043 struct r600_tiling_info tiling_info;
Vadim Girlin6eb94fc2011-08-03 01:04:19 +040044 unsigned num_tile_pipes;
45 unsigned backend_map;
46 boolean backend_map_valid;
Jerome Glissefd266ec2010-09-17 10:41:50 -040047};
48
Dave Airlieba78a5a2011-06-07 13:21:02 +100049/* these flags are used in register flags and added into block flags */
Dave Airliec0580672011-04-17 17:35:44 +100050#define REG_FLAG_NEED_BO 1
51#define REG_FLAG_DIRTY_ALWAYS 2
Dave Airlieae7abf02011-05-03 20:45:39 +020052#define REG_FLAG_RV6XX_SBU 4
Dave Airlie65ee7cd2011-05-31 10:52:07 +100053#define REG_FLAG_NOT_R600 8
Dave Airlie63184bc2011-06-03 09:59:12 +100054#define REG_FLAG_ENABLE_ALWAYS 16
Dave Airlieba78a5a2011-06-07 13:21:02 +100055#define BLOCK_FLAG_RESOURCE 32
Dave Airlie04554c72011-06-08 14:35:00 +100056#define REG_FLAG_FLUSH_CHANGE 64
Dave Airliec0580672011-04-17 17:35:44 +100057
Jerome Glissefd266ec2010-09-17 10:41:50 -040058struct r600_reg {
Jerome Glisse56469642010-09-28 17:37:56 -040059 unsigned offset;
Dave Airliec0580672011-04-17 17:35:44 +100060 unsigned flags;
Jerome Glisseca352922010-09-21 20:24:51 -040061 unsigned flush_flags;
Jerome Glisse585e4092010-10-05 10:29:30 -040062 unsigned flush_mask;
Jerome Glissefd266ec2010-09-17 10:41:50 -040063};
64
Dave Airliebd5b7a62011-05-13 10:41:16 +100065#define BO_BOUND_TEXTURE 1
Jerome Glisse1235bec2010-09-29 15:05:19 -040066struct radeon_bo {
67 struct pipe_reference reference;
Marek Olšák11daa7e2011-08-03 01:03:13 +020068 struct pb_buffer *buf;
Marek Olšák638d7512011-08-03 04:31:02 +020069 struct radeon_winsys_cs_handle *cs_buf;
Jerome Glisse1235bec2010-09-29 15:05:19 -040070 unsigned handle;
71 unsigned size;
Tilman Sauerbeck86778da2010-10-29 19:30:57 +020072 int map_count;
Jerome Glisse1235bec2010-09-29 15:05:19 -040073 void *data;
Marek Olšák591d8c32011-08-03 01:59:02 +020074
Jerome Glisse585e4092010-10-05 10:29:30 -040075 unsigned last_flush;
Dave Airliebd5b7a62011-05-13 10:41:16 +100076 unsigned binding;
Jerome Glisse1235bec2010-09-29 15:05:19 -040077};
78
Jerome Glisse294c9fc2010-10-04 10:06:13 -040079struct r600_bo {
Dave Airlie4707ae22011-06-07 11:03:59 +100080 struct pipe_reference reference; /* this must be the first member for the r600_bo_reference inline to work */
81 /* DO NOT MOVE THIS ^ */
Keith Whitwell29c4a152010-11-02 17:47:06 +000082 unsigned domains;
Jerome Glisse15753cf2010-12-09 13:07:10 -050083 struct radeon_bo *bo;
Jerome Glisse15753cf2010-12-09 13:07:10 -050084};
Jerome Glisse1235bec2010-09-29 15:05:19 -040085
Jerome Glisse15753cf2010-12-09 13:07:10 -050086/*
Jerome Glisse15753cf2010-12-09 13:07:10 -050087 * radeon_pciid.c
88 */
Jerome Glissefd266ec2010-09-17 10:41:50 -040089unsigned radeon_family_from_device(unsigned device);
90
Jerome Glisse15753cf2010-12-09 13:07:10 -050091/*
92 * radeon_bo.c
93 */
Jerome Glisse1235bec2010-09-29 15:05:19 -040094struct radeon_bo *radeon_bo(struct radeon *radeon, unsigned handle,
Marek Olšák11daa7e2011-08-03 01:03:13 +020095 unsigned size, unsigned alignment, unsigned bind, unsigned initial_domain);
Jerome Glisse1235bec2010-09-29 15:05:19 -040096void radeon_bo_reference(struct radeon *radeon, struct radeon_bo **dst,
97 struct radeon_bo *src);
98int radeon_bo_wait(struct radeon *radeon, struct radeon_bo *bo);
99int radeon_bo_busy(struct radeon *radeon, struct radeon_bo *bo, uint32_t *domain);
Dave Airlie3c38e4f2010-10-05 15:35:52 +1000100int radeon_bo_fencelist(struct radeon *radeon, struct radeon_bo **bolist, uint32_t num_bo);
Dave Airlie8a74f742010-10-18 09:45:58 +1000101int radeon_bo_get_tiling_flags(struct radeon *radeon,
102 struct radeon_bo *bo,
Marek Olšákc092e232011-08-02 21:18:10 +0200103 uint32_t *tiling_flags);
Benjamin Franzke46c19702010-11-03 21:41:48 +0100104int radeon_bo_get_name(struct radeon *radeon,
105 struct radeon_bo *bo,
106 uint32_t *name);
Dave Airlie5e154972011-05-11 13:14:16 +1000107int radeon_bo_fixed_map(struct radeon *radeon, struct radeon_bo *bo);
Jerome Glisse1235bec2010-09-29 15:05:19 -0400108
Jerome Glisse15753cf2010-12-09 13:07:10 -0500109/*
110 * r600_hw_context.c
111 */
Jerome Glisseea5a74f2010-10-05 16:14:11 -0400112int r600_context_init_fence(struct r600_context *ctx);
Jerome Glisse585e4092010-10-05 10:29:30 -0400113void r600_context_bo_flush(struct r600_context *ctx, unsigned flush_flags,
114 unsigned flush_mask, struct r600_bo *rbo);
Jerome Glisse674452f2010-10-04 10:37:32 -0400115struct r600_bo *r600_context_reg_bo(struct r600_context *ctx, unsigned offset);
Dave Airlied79a4a62011-05-12 14:07:53 +1000116int r600_context_add_block(struct r600_context *ctx, const struct r600_reg *reg, unsigned nreg,
117 unsigned opcode, unsigned offset_base);
Dave Airlief356bb72011-06-06 18:00:36 +1000118void 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 +1000119void r600_context_block_emit_dirty(struct r600_context *ctx, struct r600_block *block);
Dave Airlieba78a5a2011-06-07 13:21:02 +1000120void r600_context_block_resource_emit_dirty(struct r600_context *ctx, struct r600_block *block);
Dave Airlie5b5a16e2011-04-19 10:04:02 +1000121void r600_context_dirty_block(struct r600_context *ctx, struct r600_block *block,
122 int dirty, int index);
Dave Airlie240049a2011-05-12 15:01:33 +1000123int r600_setup_block_table(struct r600_context *ctx);
Dave Airlie5b5a16e2011-04-19 10:04:02 +1000124void r600_context_reg(struct r600_context *ctx,
125 unsigned offset, unsigned value,
126 unsigned mask);
Alex Deucherb5518832011-05-31 10:43:31 -0400127void r600_init_cs(struct r600_context *ctx);
Dave Airlief356bb72011-06-06 18:00:36 +1000128int 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 +1000129
Marek Olšák3e579722011-08-03 05:15:36 +0200130static INLINE unsigned r600_context_bo_reloc(struct r600_context *ctx, struct r600_bo *rbo)
Dave Airlie745abb52011-06-07 15:40:20 +1000131{
132 struct radeon_bo *bo = rbo->bo;
Marek Olšák3e579722011-08-03 05:15:36 +0200133 unsigned reloc_index;
Dave Airlie745abb52011-06-07 15:40:20 +1000134
135 assert(bo != NULL);
136
Marek Olšák3e579722011-08-03 05:15:36 +0200137 reloc_index = ctx->radeon->ws->trans_add_reloc(
138 ctx->cs, bo->cs_buf,
139 rbo->domains & (RADEON_GEM_DOMAIN_GTT | RADEON_GEM_DOMAIN_VRAM),
140 rbo->domains & (RADEON_GEM_DOMAIN_GTT | RADEON_GEM_DOMAIN_VRAM),
141 (void**)&ctx->reloc, &ctx->creloc);
Dave Airlie745abb52011-06-07 15:40:20 +1000142
Marek Olšák3e579722011-08-03 05:15:36 +0200143 radeon_bo_reference(ctx->radeon, &ctx->bo[reloc_index], bo);
144 return reloc_index * 4;
Dave Airlie745abb52011-06-07 15:40:20 +1000145}
146
Jerome Glisse15753cf2010-12-09 13:07:10 -0500147/*
148 * r600_bo.c
149 */
150void r600_bo_destroy(struct radeon *radeon, struct r600_bo *bo);
Jerome Glisse1235bec2010-09-29 15:05:19 -0400151
Jerome Glissea8526152010-09-26 12:06:46 -0400152
Jerome Glisse15753cf2010-12-09 13:07:10 -0500153/*
154 * radeon_bo.c
155 */
John Doe40181ae2010-09-30 17:53:36 -0400156static inline int radeon_bo_map(struct radeon *radeon, struct radeon_bo *bo)
157{
Dave Airlie5e154972011-05-11 13:14:16 +1000158 if (bo->map_count == 0 && !bo->data)
159 return radeon_bo_fixed_map(radeon, bo);
John Doe40181ae2010-09-30 17:53:36 -0400160 bo->map_count++;
Dave Airlie1c2b3cb2010-10-04 16:26:46 +1000161 return 0;
John Doe40181ae2010-09-30 17:53:36 -0400162}
163
164static inline void radeon_bo_unmap(struct radeon *radeon, struct radeon_bo *bo)
165{
166 bo->map_count--;
167 assert(bo->map_count >= 0);
168}
169
Jerome Glisse15753cf2010-12-09 13:07:10 -0500170/*
Jerome Glisse15753cf2010-12-09 13:07:10 -0500171 * fence
172 */
Brian Paul5f2deba2011-06-08 08:05:40 -0600173static inline boolean fence_is_after(unsigned fence, unsigned ofence)
Jerome Glisse15753cf2010-12-09 13:07:10 -0500174{
175 /* handle wrap around */
176 if (fence < 0x80000000 && ofence > 0x80000000)
177 return TRUE;
178 if (fence > ofence)
179 return TRUE;
180 return FALSE;
181}
182
Jerome Glissefd266ec2010-09-17 10:41:50 -0400183#endif