blob: 1e901897efd03e313bfa2ba527e9077221d66d3a [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"
Jerome Glissefd266ec2010-09-17 10:41:50 -040033
Dave Airlie162bc402011-04-18 13:03:06 +100034#define PKT_COUNT_C 0xC000FFFF
35#define PKT_COUNT_S(x) (((x) & 0x3FFF) << 16)
36
Jerome Glissefd266ec2010-09-17 10:41:50 -040037struct radeon {
Marek Olšák2ce783d2011-08-02 20:25:13 +020038 struct radeon_winsys *ws;
Marek Olšákce12f822011-07-22 19:25:07 +020039 struct radeon_info info;
Jerome Glissefd266ec2010-09-17 10:41:50 -040040 unsigned family;
Jerome Glisse363dfb82010-09-20 11:58:00 -040041 enum chip_class chip_class;
Jerome Glisse15753cf2010-12-09 13:07:10 -050042 struct r600_tiling_info tiling_info;
Jerome Glissefd266ec2010-09-17 10:41:50 -040043};
44
Dave Airlieba78a5a2011-06-07 13:21:02 +100045/* these flags are used in register flags and added into block flags */
Dave Airliec0580672011-04-17 17:35:44 +100046#define REG_FLAG_NEED_BO 1
47#define REG_FLAG_DIRTY_ALWAYS 2
Dave Airlieae7abf02011-05-03 20:45:39 +020048#define REG_FLAG_RV6XX_SBU 4
Dave Airlie65ee7cd2011-05-31 10:52:07 +100049#define REG_FLAG_NOT_R600 8
Dave Airlie63184bc2011-06-03 09:59:12 +100050#define REG_FLAG_ENABLE_ALWAYS 16
Dave Airlieba78a5a2011-06-07 13:21:02 +100051#define BLOCK_FLAG_RESOURCE 32
Dave Airlie04554c72011-06-08 14:35:00 +100052#define REG_FLAG_FLUSH_CHANGE 64
Dave Airliec0580672011-04-17 17:35:44 +100053
Jerome Glissefd266ec2010-09-17 10:41:50 -040054struct r600_reg {
Jerome Glisse56469642010-09-28 17:37:56 -040055 unsigned offset;
Dave Airliec0580672011-04-17 17:35:44 +100056 unsigned flags;
Jerome Glisseca352922010-09-21 20:24:51 -040057 unsigned flush_flags;
Jerome Glisse585e4092010-10-05 10:29:30 -040058 unsigned flush_mask;
Jerome Glissefd266ec2010-09-17 10:41:50 -040059};
60
Dave Airliebd5b7a62011-05-13 10:41:16 +100061#define BO_BOUND_TEXTURE 1
Jerome Glisse1235bec2010-09-29 15:05:19 -040062
Jerome Glisse294c9fc2010-10-04 10:06:13 -040063struct r600_bo {
Dave Airlie4707ae22011-06-07 11:03:59 +100064 struct pipe_reference reference; /* this must be the first member for the r600_bo_reference inline to work */
65 /* DO NOT MOVE THIS ^ */
Marek Olšákc6fec832011-08-04 06:11:45 +020066 struct pb_buffer *buf;
67 struct radeon_winsys_cs_handle *cs_buf;
Keith Whitwell29c4a152010-11-02 17:47:06 +000068 unsigned domains;
Marek Olšákc6fec832011-08-04 06:11:45 +020069 unsigned last_flush;
70 unsigned binding;
Jerome Glisse15753cf2010-12-09 13:07:10 -050071};
Jerome Glisse1235bec2010-09-29 15:05:19 -040072
Jerome Glisse15753cf2010-12-09 13:07:10 -050073/*
Jerome Glisse15753cf2010-12-09 13:07:10 -050074 * radeon_pciid.c
75 */
Jerome Glissefd266ec2010-09-17 10:41:50 -040076unsigned radeon_family_from_device(unsigned device);
77
Jerome Glisse15753cf2010-12-09 13:07:10 -050078/*
Jerome Glisse15753cf2010-12-09 13:07:10 -050079 * r600_hw_context.c
80 */
Jerome Glisse585e4092010-10-05 10:29:30 -040081void r600_context_bo_flush(struct r600_context *ctx, unsigned flush_flags,
82 unsigned flush_mask, struct r600_bo *rbo);
Jerome Glisse674452f2010-10-04 10:37:32 -040083struct r600_bo *r600_context_reg_bo(struct r600_context *ctx, unsigned offset);
Dave Airlied79a4a62011-05-12 14:07:53 +100084int r600_context_add_block(struct r600_context *ctx, const struct r600_reg *reg, unsigned nreg,
85 unsigned opcode, unsigned offset_base);
Dave Airlief356bb72011-06-06 18:00:36 +100086void 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 +100087void r600_context_block_emit_dirty(struct r600_context *ctx, struct r600_block *block);
Dave Airlieba78a5a2011-06-07 13:21:02 +100088void r600_context_block_resource_emit_dirty(struct r600_context *ctx, struct r600_block *block);
Dave Airlie5b5a16e2011-04-19 10:04:02 +100089void r600_context_dirty_block(struct r600_context *ctx, struct r600_block *block,
90 int dirty, int index);
Dave Airlie240049a2011-05-12 15:01:33 +100091int r600_setup_block_table(struct r600_context *ctx);
Dave Airlie5b5a16e2011-04-19 10:04:02 +100092void r600_context_reg(struct r600_context *ctx,
93 unsigned offset, unsigned value,
94 unsigned mask);
Alex Deucherb5518832011-05-31 10:43:31 -040095void r600_init_cs(struct r600_context *ctx);
Dave Airlief356bb72011-06-06 18:00:36 +100096int 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 +100097
Marek Olšák47dcfb82011-08-07 21:14:38 +020098static INLINE unsigned r600_context_bo_reloc(struct r600_context *ctx, struct r600_bo *rbo,
99 enum radeon_bo_usage usage)
Dave Airlie745abb52011-06-07 15:40:20 +1000100{
Marek Olšák47dcfb82011-08-07 21:14:38 +0200101 enum radeon_bo_domain rd = usage & RADEON_USAGE_READ ? rbo->domains : 0;
102 enum radeon_bo_domain wd = usage & RADEON_USAGE_WRITE ? rbo->domains : 0;
103
104 assert(usage);
105
Marek Olšákc6fec832011-08-04 06:11:45 +0200106 unsigned reloc_index =
107 ctx->radeon->ws->cs_add_reloc(ctx->cs, rbo->cs_buf,
Marek Olšák47dcfb82011-08-07 21:14:38 +0200108 rd, wd);
Marek Olšáke6fb6252011-08-04 01:37:33 +0200109
110 if (reloc_index >= ctx->creloc)
111 ctx->creloc = reloc_index+1;
Dave Airlie745abb52011-06-07 15:40:20 +1000112
Marek Olšák041ed552011-08-04 06:17:39 +0200113 r600_bo_reference(&ctx->bo[reloc_index], rbo);
Marek Olšák3e579722011-08-03 05:15:36 +0200114 return reloc_index * 4;
Dave Airlie745abb52011-06-07 15:40:20 +1000115}
116
Jerome Glissefd266ec2010-09-17 10:41:50 -0400117#endif