blob: 79fa57b8c8122a31bc827fdcb7f673999de590ed [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
Jerome Glisse15753cf2010-12-09 13:07:10 -050054/*
Jerome Glisse15753cf2010-12-09 13:07:10 -050055 * r600_hw_context.c
56 */
Marek Olšák6101b6d2011-09-11 22:24:38 +020057struct r600_resource *r600_context_reg_bo(struct r600_context *ctx, unsigned offset);
Dave Airlied79a4a62011-05-12 14:07:53 +100058int r600_context_add_block(struct r600_context *ctx, const struct r600_reg *reg, unsigned nreg,
59 unsigned opcode, unsigned offset_base);
Dave Airlief356bb72011-06-06 18:00:36 +100060void 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 +100061void r600_context_dirty_block(struct r600_context *ctx, struct r600_block *block,
62 int dirty, int index);
Dave Airlie240049a2011-05-12 15:01:33 +100063int r600_setup_block_table(struct r600_context *ctx);
Alex Deucherb5518832011-05-31 10:43:31 -040064void r600_init_cs(struct r600_context *ctx);
Dave Airlief356bb72011-06-06 18:00:36 +100065int 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 +100066
Marek Olšák543b2332011-11-08 21:58:27 +010067/*
68 * evergreen_hw_context.c
69 */
70void evergreen_flush_vgt_streamout(struct r600_context *ctx);
71void evergreen_set_streamout_enable(struct r600_context *ctx, unsigned buffer_enable_bit);
72
73
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šák363ff842011-09-27 01:10:20 +020077 unsigned reloc_index;
Marek Olšák47dcfb82011-08-07 21:14:38 +020078
79 assert(usage);
80
Marek Olšák93f4e3c2011-12-24 08:15:40 +010081 reloc_index = ctx->ws->cs_add_reloc(ctx->cs, rbo->cs_buf, usage, rbo->domains);
Marek Olšáke6fb6252011-08-04 01:37:33 +020082 if (reloc_index >= ctx->creloc)
83 ctx->creloc = reloc_index+1;
Dave Airlie745abb52011-06-07 15:40:20 +100084
Marek Olšák6101b6d2011-09-11 22:24:38 +020085 pipe_resource_reference((struct pipe_resource**)&ctx->bo[reloc_index], &rbo->b.b.b);
Marek Olšák3e579722011-08-03 05:15:36 +020086 return reloc_index * 4;
Dave Airlie745abb52011-06-07 15:40:20 +100087}
88
Jerome Glissefd266ec2010-09-17 10:41:50 -040089#endif