blob: c7d5b6ad9d8e6ed590b598ae1462ea70711c3512 [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
Marek Olšákb1b969f2012-01-29 16:56:02 +010033#define R600_MAX_DRAW_CS_DWORDS 17
Marek Olšák1d098312011-11-10 13:35:22 +010034
Dave Airlie162bc402011-04-18 13:03:06 +100035#define PKT_COUNT_C 0xC000FFFF
36#define PKT_COUNT_S(x) (((x) & 0x3FFF) << 16)
37
Dave Airlieba78a5a2011-06-07 13:21:02 +100038/* these flags are used in register flags and added into block flags */
Dave Airliec0580672011-04-17 17:35:44 +100039#define REG_FLAG_NEED_BO 1
40#define REG_FLAG_DIRTY_ALWAYS 2
Dave Airlieae7abf02011-05-03 20:45:39 +020041#define REG_FLAG_RV6XX_SBU 4
Dave Airlie65ee7cd2011-05-31 10:52:07 +100042#define REG_FLAG_NOT_R600 8
Dave Airlie63184bc2011-06-03 09:59:12 +100043#define REG_FLAG_ENABLE_ALWAYS 16
Dave Airlieba78a5a2011-06-07 13:21:02 +100044#define BLOCK_FLAG_RESOURCE 32
Dave Airlie04554c72011-06-08 14:35:00 +100045#define REG_FLAG_FLUSH_CHANGE 64
Dave Airliec0580672011-04-17 17:35:44 +100046
Jerome Glissefd266ec2010-09-17 10:41:50 -040047struct r600_reg {
Jerome Glisse56469642010-09-28 17:37:56 -040048 unsigned offset;
Dave Airliec0580672011-04-17 17:35:44 +100049 unsigned flags;
Jerome Glisseca352922010-09-21 20:24:51 -040050 unsigned flush_flags;
Jerome Glisse585e4092010-10-05 10:29:30 -040051 unsigned flush_mask;
Jerome Glissefd266ec2010-09-17 10:41:50 -040052};
53
Dave Airliebd5b7a62011-05-13 10:41:16 +100054#define BO_BOUND_TEXTURE 1
Jerome Glisse1235bec2010-09-29 15:05:19 -040055
Jerome Glisse15753cf2010-12-09 13:07:10 -050056/*
Jerome Glisse15753cf2010-12-09 13:07:10 -050057 * r600_hw_context.c
58 */
Marek Olšák1d098312011-11-10 13:35:22 +010059void r600_need_cs_space(struct r600_context *ctx, unsigned num_dw,
60 boolean count_draw_in);
61
Jerome Glisse585e4092010-10-05 10:29:30 -040062void r600_context_bo_flush(struct r600_context *ctx, unsigned flush_flags,
Marek Olšák6101b6d2011-09-11 22:24:38 +020063 unsigned flush_mask, struct r600_resource *rbo);
64struct r600_resource *r600_context_reg_bo(struct r600_context *ctx, unsigned offset);
Dave Airlied79a4a62011-05-12 14:07:53 +100065int r600_context_add_block(struct r600_context *ctx, const struct r600_reg *reg, unsigned nreg,
66 unsigned opcode, unsigned offset_base);
Dave Airlief356bb72011-06-06 18:00:36 +100067void 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 +100068void r600_context_block_emit_dirty(struct r600_context *ctx, struct r600_block *block);
Dave Airlieba78a5a2011-06-07 13:21:02 +100069void r600_context_block_resource_emit_dirty(struct r600_context *ctx, struct r600_block *block);
Dave Airlie5b5a16e2011-04-19 10:04:02 +100070void r600_context_dirty_block(struct r600_context *ctx, struct r600_block *block,
71 int dirty, int index);
Dave Airlie240049a2011-05-12 15:01:33 +100072int r600_setup_block_table(struct r600_context *ctx);
Dave Airlie5b5a16e2011-04-19 10:04:02 +100073void r600_context_reg(struct r600_context *ctx,
74 unsigned offset, unsigned value,
75 unsigned mask);
Alex Deucherb5518832011-05-31 10:43:31 -040076void r600_init_cs(struct r600_context *ctx);
Dave Airlief356bb72011-06-06 18:00:36 +100077int 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 +100078
Marek Olšák543b2332011-11-08 21:58:27 +010079/*
80 * evergreen_hw_context.c
81 */
82void evergreen_flush_vgt_streamout(struct r600_context *ctx);
83void evergreen_set_streamout_enable(struct r600_context *ctx, unsigned buffer_enable_bit);
84
85
Marek Olšák6101b6d2011-09-11 22:24:38 +020086static INLINE unsigned r600_context_bo_reloc(struct r600_context *ctx, struct r600_resource *rbo,
Marek Olšák47dcfb82011-08-07 21:14:38 +020087 enum radeon_bo_usage usage)
Dave Airlie745abb52011-06-07 15:40:20 +100088{
Marek Olšák363ff842011-09-27 01:10:20 +020089 unsigned reloc_index;
Marek Olšák47dcfb82011-08-07 21:14:38 +020090
91 assert(usage);
92
Marek Olšák93f4e3c2011-12-24 08:15:40 +010093 reloc_index = ctx->ws->cs_add_reloc(ctx->cs, rbo->cs_buf, usage, rbo->domains);
Marek Olšáke6fb6252011-08-04 01:37:33 +020094 if (reloc_index >= ctx->creloc)
95 ctx->creloc = reloc_index+1;
Dave Airlie745abb52011-06-07 15:40:20 +100096
Marek Olšák6101b6d2011-09-11 22:24:38 +020097 pipe_resource_reference((struct pipe_resource**)&ctx->bo[reloc_index], &rbo->b.b.b);
Marek Olšák3e579722011-08-03 05:15:36 +020098 return reloc_index * 4;
Dave Airlie745abb52011-06-07 15:40:20 +100099}
100
Jerome Glissefd266ec2010-09-17 10:41:50 -0400101#endif