blob: 193af984f8ea2b372aedd9067b7c0555badbfac1 [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
29#include <errno.h>
30#include <stdint.h>
31#include <stdlib.h>
32#include <assert.h>
Jerome Glisse1235bec2010-09-29 15:05:19 -040033#include <pipebuffer/pb_bufmgr.h>
Dave Airlie3c38e4f2010-10-05 15:35:52 +100034#include "util/u_double_list.h"
Jerome Glissefd266ec2010-09-17 10:41:50 -040035#include "r600.h"
36
Jerome Glissefd266ec2010-09-17 10:41:50 -040037struct radeon {
38 int fd;
39 int refcount;
40 unsigned device;
41 unsigned family;
Jerome Glisse363dfb82010-09-20 11:58:00 -040042 enum chip_class chip_class;
Dave Airlie301ab492010-09-29 09:17:59 +100043 struct pb_manager *kman; /* kernel bo manager */
44 struct pb_manager *cman; /* cached bo manager */
Dave Airlie7b3fa032010-10-08 11:56:43 +100045 struct r600_tiling_info tiling_info;
Jerome Glissefd266ec2010-09-17 10:41:50 -040046};
47
48struct radeon *r600_new(int fd, unsigned device);
49void r600_delete(struct radeon *r600);
50
51struct r600_reg {
Jerome Glisse56469642010-09-28 17:37:56 -040052 unsigned opcode;
53 unsigned offset_base;
54 unsigned offset;
Jerome Glisseca352922010-09-21 20:24:51 -040055 unsigned need_bo;
56 unsigned flush_flags;
Jerome Glisse585e4092010-10-05 10:29:30 -040057 unsigned flush_mask;
Jerome Glissefd266ec2010-09-17 10:41:50 -040058};
59
Jerome Glisse1235bec2010-09-29 15:05:19 -040060struct radeon_bo {
61 struct pipe_reference reference;
62 unsigned handle;
63 unsigned size;
64 unsigned alignment;
Tilman Sauerbeck86778da2010-10-29 19:30:57 +020065 int map_count;
Jerome Glisse1235bec2010-09-29 15:05:19 -040066 void *data;
Dave Airlie3c38e4f2010-10-05 15:35:52 +100067 struct list_head fencedlist;
Jerome Glisseea5a74f2010-10-05 16:14:11 -040068 unsigned fence;
69 struct r600_context *ctx;
Dave Airlie3c38e4f2010-10-05 15:35:52 +100070 boolean shared;
Jerome Glisse12d16e52010-10-05 08:42:42 -040071 struct r600_reloc *reloc;
72 unsigned reloc_id;
Jerome Glisse585e4092010-10-05 10:29:30 -040073 unsigned last_flush;
Jerome Glisse1235bec2010-09-29 15:05:19 -040074};
75
Jerome Glisse294c9fc2010-10-04 10:06:13 -040076struct r600_bo {
Jerome Glisse1235bec2010-09-29 15:05:19 -040077 struct pipe_reference reference;
78 struct pb_buffer *pb;
Jerome Glisse674452f2010-10-04 10:37:32 -040079 unsigned size;
Dave Airlie8a74f742010-10-18 09:45:58 +100080 unsigned tiling_flags;
Jerome Glisseedda44e2010-12-03 13:06:53 -050081 unsigned kernel_pitch;
Keith Whitwell29c4a152010-11-02 17:47:06 +000082 unsigned domains;
Jerome Glisse1235bec2010-09-29 15:05:19 -040083};
84
85
Jerome Glissefd266ec2010-09-17 10:41:50 -040086/* radeon_pciid.c */
87unsigned radeon_family_from_device(unsigned device);
88
Jerome Glisse1235bec2010-09-29 15:05:19 -040089/* radeon_bo.c */
Jerome Glisse1235bec2010-09-29 15:05:19 -040090struct radeon_bo *radeon_bo(struct radeon *radeon, unsigned handle,
Tilman Sauerbeck4e343932010-10-28 21:27:37 +020091 unsigned size, unsigned alignment);
Jerome Glisse1235bec2010-09-29 15:05:19 -040092void radeon_bo_reference(struct radeon *radeon, struct radeon_bo **dst,
93 struct radeon_bo *src);
94int radeon_bo_wait(struct radeon *radeon, struct radeon_bo *bo);
95int radeon_bo_busy(struct radeon *radeon, struct radeon_bo *bo, uint32_t *domain);
Dave Airliedbcd6522010-09-30 09:07:07 +100096void radeon_bo_pbmgr_flush_maps(struct pb_manager *_mgr);
Dave Airlie3c38e4f2010-10-05 15:35:52 +100097int radeon_bo_fencelist(struct radeon *radeon, struct radeon_bo **bolist, uint32_t num_bo);
Dave Airlie8a74f742010-10-18 09:45:58 +100098int radeon_bo_get_tiling_flags(struct radeon *radeon,
99 struct radeon_bo *bo,
100 uint32_t *tiling_flags,
101 uint32_t *pitch);
Benjamin Franzke46c19702010-11-03 21:41:48 +0100102int radeon_bo_get_name(struct radeon *radeon,
103 struct radeon_bo *bo,
104 uint32_t *name);
Jerome Glisse1235bec2010-09-29 15:05:19 -0400105
106/* radeon_bo_pb.c */
Jerome Glisse674452f2010-10-04 10:37:32 -0400107struct radeon_bo *radeon_bo_pb_get_bo(struct pb_buffer *_buf);
Dave Airliedbcd6522010-09-30 09:07:07 +1000108struct pb_manager *radeon_bo_pbmgr_create(struct radeon *radeon);
Jerome Glisse1235bec2010-09-29 15:05:19 -0400109struct pb_buffer *radeon_bo_pb_create_buffer_from_handle(struct pb_manager *_mgr,
110 uint32_t handle);
111
Jerome Glisse674452f2010-10-04 10:37:32 -0400112/* r600_hw_context.c */
Jerome Glisseea5a74f2010-10-05 16:14:11 -0400113int r600_context_init_fence(struct r600_context *ctx);
Jerome Glisse674452f2010-10-04 10:37:32 -0400114void r600_context_bo_reloc(struct r600_context *ctx, u32 *pm4, struct r600_bo *rbo);
Jerome Glisse585e4092010-10-05 10:29:30 -0400115void r600_context_bo_flush(struct r600_context *ctx, unsigned flush_flags,
116 unsigned flush_mask, struct r600_bo *rbo);
Jerome Glisse674452f2010-10-04 10:37:32 -0400117struct r600_bo *r600_context_reg_bo(struct r600_context *ctx, unsigned offset);
118int r600_context_add_block(struct r600_context *ctx, const struct r600_reg *reg, unsigned nreg);
119
Jerome Glisse294c9fc2010-10-04 10:06:13 -0400120/* r600_bo.c */
121unsigned r600_bo_get_handle(struct r600_bo *bo);
122unsigned r600_bo_get_size(struct r600_bo *bo);
Jerome Glisse674452f2010-10-04 10:37:32 -0400123static INLINE struct radeon_bo *r600_bo_get_bo(struct r600_bo *bo)
124{
125 return radeon_bo_pb_get_bo(bo->pb);
126}
Jerome Glisse1235bec2010-09-29 15:05:19 -0400127
Jerome Glisse56469642010-09-28 17:37:56 -0400128#define CTX_RANGE_ID(ctx, offset) (((offset) >> (ctx)->hash_shift) & 255)
129#define CTX_BLOCK_ID(ctx, offset) ((offset) & ((1 << (ctx)->hash_shift) - 1))
Jerome Glissea8526152010-09-26 12:06:46 -0400130
Jerome Glisse56469642010-09-28 17:37:56 -0400131static void inline r600_context_reg(struct r600_context *ctx,
Jerome Glissea8526152010-09-26 12:06:46 -0400132 unsigned offset, unsigned value,
133 unsigned mask)
134{
Jerome Glisse56469642010-09-28 17:37:56 -0400135 struct r600_range *range;
136 struct r600_block *block;
Jerome Glissea8526152010-09-26 12:06:46 -0400137 unsigned id;
138
Jerome Glisse56469642010-09-28 17:37:56 -0400139 range = &ctx->range[CTX_RANGE_ID(ctx, offset)];
140 block = range->blocks[CTX_BLOCK_ID(ctx, offset)];
Jerome Glissea8526152010-09-26 12:06:46 -0400141 id = (offset - block->start_offset) >> 2;
Jerome Glisse02826822010-09-27 17:00:07 -0400142 block->reg[id] &= ~mask;
143 block->reg[id] |= value;
Jerome Glissea8526152010-09-26 12:06:46 -0400144 if (!(block->status & R600_BLOCK_STATUS_DIRTY)) {
Jerome Glisse02826822010-09-27 17:00:07 -0400145 ctx->pm4_dirty_cdwords += block->pm4_ndwords;
John Doedde13912010-09-30 17:30:25 -0400146 block->status |= R600_BLOCK_STATUS_ENABLED;
147 block->status |= R600_BLOCK_STATUS_DIRTY;
Bas Nieuwenhuizenac8a1eb2010-10-05 21:01:43 +0200148 LIST_ADDTAIL(&block->list,&ctx->dirty);
Jerome Glissea8526152010-09-26 12:06:46 -0400149 }
Jerome Glissea8526152010-09-26 12:06:46 -0400150}
151
Jerome Glisse56469642010-09-28 17:37:56 -0400152static inline void r600_context_block_emit_dirty(struct r600_context *ctx, struct r600_block *block)
153{
Jerome Glisse56469642010-09-28 17:37:56 -0400154 int id;
155
156 for (int j = 0; j < block->nreg; j++) {
157 if (block->pm4_bo_index[j]) {
158 /* find relocation */
159 id = block->pm4_bo_index[j];
Jerome Glisse2cf31992010-10-05 15:23:07 -0400160 r600_context_bo_reloc(ctx,
161 &block->pm4[block->reloc[id].bo_pm4_index],
Jerome Glisse674452f2010-10-04 10:37:32 -0400162 block->reloc[id].bo);
Jerome Glisse2cf31992010-10-05 15:23:07 -0400163 r600_context_bo_flush(ctx,
164 block->reloc[id].flush_flags,
165 block->reloc[id].flush_mask,
166 block->reloc[id].bo);
Jerome Glisse56469642010-09-28 17:37:56 -0400167 }
168 }
169 memcpy(&ctx->pm4[ctx->pm4_cdwords], block->pm4, block->pm4_ndwords * 4);
170 ctx->pm4_cdwords += block->pm4_ndwords;
171 block->status ^= R600_BLOCK_STATUS_DIRTY;
Jerome Glisse3fabd212010-10-06 12:56:53 -0400172 LIST_DELINIT(&block->list);
Jerome Glisse56469642010-09-28 17:37:56 -0400173}
174
John Doe40181ae2010-09-30 17:53:36 -0400175static inline int radeon_bo_map(struct radeon *radeon, struct radeon_bo *bo)
176{
177 bo->map_count++;
Dave Airlie1c2b3cb2010-10-04 16:26:46 +1000178 return 0;
John Doe40181ae2010-09-30 17:53:36 -0400179}
180
181static inline void radeon_bo_unmap(struct radeon *radeon, struct radeon_bo *bo)
182{
183 bo->map_count--;
184 assert(bo->map_count >= 0);
185}
186
Jerome Glissefd266ec2010-09-17 10:41:50 -0400187#endif