blob: f1bbe38f0f7ec1583b7c7bac1532741fd3a02581 [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
Marek Olšák90ce3cd2011-09-17 14:10:20 +020029#include "r600_pipe.h"
Marek Olšák354f76f2011-07-22 21:38:56 +020030#include "util/u_hash_table.h"
31#include "os/os_thread.h"
Jerome Glissefd266ec2010-09-17 10:41:50 -040032
Dave Airlie162bc402011-04-18 13:03:06 +100033#define PKT_COUNT_C 0xC000FFFF
34#define PKT_COUNT_S(x) (((x) & 0x3FFF) << 16)
35
Dave Airlieba78a5a2011-06-07 13:21:02 +100036/* these flags are used in register flags and added into block flags */
Dave Airliec0580672011-04-17 17:35:44 +100037#define REG_FLAG_NEED_BO 1
38#define REG_FLAG_DIRTY_ALWAYS 2
Dave Airlieae7abf02011-05-03 20:45:39 +020039#define REG_FLAG_RV6XX_SBU 4
Dave Airlie65ee7cd2011-05-31 10:52:07 +100040#define REG_FLAG_NOT_R600 8
Dave Airlie63184bc2011-06-03 09:59:12 +100041#define REG_FLAG_ENABLE_ALWAYS 16
Dave Airlieba78a5a2011-06-07 13:21:02 +100042#define BLOCK_FLAG_RESOURCE 32
Dave Airlie04554c72011-06-08 14:35:00 +100043#define REG_FLAG_FLUSH_CHANGE 64
Dave Airliec0580672011-04-17 17:35:44 +100044
Jerome Glissefd266ec2010-09-17 10:41:50 -040045struct r600_reg {
Jerome Glisse56469642010-09-28 17:37:56 -040046 unsigned offset;
Dave Airliec0580672011-04-17 17:35:44 +100047 unsigned flags;
Jerome Glisseca352922010-09-21 20:24:51 -040048 unsigned flush_flags;
Jerome Glisse585e4092010-10-05 10:29:30 -040049 unsigned flush_mask;
Jerome Glissefd266ec2010-09-17 10:41:50 -040050};
51
Dave Airliebd5b7a62011-05-13 10:41:16 +100052#define BO_BOUND_TEXTURE 1
Jerome Glisse1235bec2010-09-29 15:05:19 -040053
Jerome Glisse15753cf2010-12-09 13:07:10 -050054/*
Jerome Glisse15753cf2010-12-09 13:07:10 -050055 * r600_hw_context.c
56 */
Jerome Glisse585e4092010-10-05 10:29:30 -040057void r600_context_bo_flush(struct r600_context *ctx, unsigned flush_flags,
Marek Olšák6101b6d2011-09-11 22:24:38 +020058 unsigned flush_mask, struct r600_resource *rbo);
59struct r600_resource *r600_context_reg_bo(struct r600_context *ctx, unsigned offset);
Dave Airlied79a4a62011-05-12 14:07:53 +100060int r600_context_add_block(struct r600_context *ctx, const struct r600_reg *reg, unsigned nreg,
61 unsigned opcode, unsigned offset_base);
Dave Airlief356bb72011-06-06 18:00:36 +100062void 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 +100063void r600_context_block_emit_dirty(struct r600_context *ctx, struct r600_block *block);
Dave Airlieba78a5a2011-06-07 13:21:02 +100064void r600_context_block_resource_emit_dirty(struct r600_context *ctx, struct r600_block *block);
Dave Airlie5b5a16e2011-04-19 10:04:02 +100065void r600_context_dirty_block(struct r600_context *ctx, struct r600_block *block,
66 int dirty, int index);
Dave Airlie240049a2011-05-12 15:01:33 +100067int r600_setup_block_table(struct r600_context *ctx);
Dave Airlie5b5a16e2011-04-19 10:04:02 +100068void r600_context_reg(struct r600_context *ctx,
69 unsigned offset, unsigned value,
70 unsigned mask);
Alex Deucherb5518832011-05-31 10:43:31 -040071void r600_init_cs(struct r600_context *ctx);
Dave Airlief356bb72011-06-06 18:00:36 +100072int 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 +100073
Marek Olšák6101b6d2011-09-11 22:24:38 +020074static INLINE unsigned r600_context_bo_reloc(struct r600_context *ctx, struct r600_resource *rbo,
Marek Olšák47dcfb82011-08-07 21:14:38 +020075 enum radeon_bo_usage usage)
Dave Airlie745abb52011-06-07 15:40:20 +100076{
Marek Olšák47dcfb82011-08-07 21:14:38 +020077 enum radeon_bo_domain rd = usage & RADEON_USAGE_READ ? rbo->domains : 0;
78 enum radeon_bo_domain wd = usage & RADEON_USAGE_WRITE ? rbo->domains : 0;
79
80 assert(usage);
81
Marek Olšákc6fec832011-08-04 06:11:45 +020082 unsigned reloc_index =
Marek Olšák90ce3cd2011-09-17 14:10:20 +020083 ctx->screen->ws->cs_add_reloc(ctx->cs, rbo->cs_buf,
Marek Olšák47dcfb82011-08-07 21:14:38 +020084 rd, wd);
Marek Olšáke6fb6252011-08-04 01:37:33 +020085
86 if (reloc_index >= ctx->creloc)
87 ctx->creloc = reloc_index+1;
Dave Airlie745abb52011-06-07 15:40:20 +100088
Marek Olšák6101b6d2011-09-11 22:24:38 +020089 pipe_resource_reference((struct pipe_resource**)&ctx->bo[reloc_index], &rbo->b.b.b);
Marek Olšák3e579722011-08-03 05:15:36 +020090 return reloc_index * 4;
Dave Airlie745abb52011-06-07 15:40:20 +100091}
92
Jerome Glissefd266ec2010-09-17 10:41:50 -040093#endif