Merge remote branch 'origin/master' into lp-setup-llvm
[mesa.git] / src / gallium / winsys / r600 / drm / radeon_bo.c
1 /*
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 #define _FILE_OFFSET_BITS 64
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <sys/mman.h>
31 #include <errno.h>
32 #include "r600_priv.h"
33 #include "xf86drm.h"
34 #include "radeon_drm.h"
35
36 static int radeon_bo_fixed_map(struct radeon *radeon, struct radeon_bo *bo)
37 {
38 struct drm_radeon_gem_mmap args;
39 void *ptr;
40 int r;
41
42 /* Zero out args to make valgrind happy */
43 memset(&args, 0, sizeof(args));
44 args.handle = bo->handle;
45 args.offset = 0;
46 args.size = (uint64_t)bo->size;
47 r = drmCommandWriteRead(radeon->fd, DRM_RADEON_GEM_MMAP,
48 &args, sizeof(args));
49 if (r) {
50 fprintf(stderr, "error mapping %p 0x%08X (error = %d)\n",
51 bo, bo->handle, r);
52 return r;
53 }
54 ptr = mmap(0, args.size, PROT_READ|PROT_WRITE, MAP_SHARED, radeon->fd, args.addr_ptr);
55 if (ptr == MAP_FAILED) {
56 fprintf(stderr, "%s failed to map bo\n", __func__);
57 return -errno;
58 }
59 bo->data = ptr;
60
61 bo->map_count++;
62 return 0;
63 }
64
65 static void radeon_bo_fixed_unmap(struct radeon *radeon, struct radeon_bo *bo)
66 {
67 munmap(bo->data, bo->size);
68 bo->data = NULL;
69 }
70
71 struct radeon_bo *radeon_bo(struct radeon *radeon, unsigned handle,
72 unsigned size, unsigned alignment, void *ptr)
73 {
74 struct radeon_bo *bo;
75 int r;
76
77 bo = calloc(1, sizeof(*bo));
78 if (bo == NULL) {
79 return NULL;
80 }
81 bo->size = size;
82 bo->handle = handle;
83 pipe_reference_init(&bo->reference, 1);
84 bo->alignment = alignment;
85
86 if (handle) {
87 struct drm_gem_open open_arg;
88
89 memset(&open_arg, 0, sizeof(open_arg));
90 open_arg.name = handle;
91 r = drmIoctl(radeon->fd, DRM_IOCTL_GEM_OPEN, &open_arg);
92 if (r != 0) {
93 free(bo);
94 return NULL;
95 }
96 bo->handle = open_arg.handle;
97 bo->size = open_arg.size;
98 bo->shared = TRUE;
99 } else {
100 struct drm_radeon_gem_create args;
101
102 args.size = size;
103 args.alignment = alignment;
104 args.initial_domain = RADEON_GEM_DOMAIN_CPU;
105 args.flags = 0;
106 args.handle = 0;
107 r = drmCommandWriteRead(radeon->fd, DRM_RADEON_GEM_CREATE,
108 &args, sizeof(args));
109 bo->handle = args.handle;
110 if (r) {
111 fprintf(stderr, "Failed to allocate :\n");
112 fprintf(stderr, " size : %d bytes\n", size);
113 fprintf(stderr, " alignment : %d bytes\n", alignment);
114 free(bo);
115 return NULL;
116 }
117 }
118 if (radeon_bo_fixed_map(radeon, bo)) {
119 R600_ERR("failed to map bo\n");
120 radeon_bo_reference(radeon, &bo, NULL);
121 return bo;
122 }
123 if (ptr) {
124 memcpy(bo->data, ptr, size);
125 }
126 LIST_INITHEAD(&bo->fencedlist);
127 return bo;
128 }
129
130 static void radeon_bo_destroy(struct radeon *radeon, struct radeon_bo *bo)
131 {
132 struct drm_gem_close args;
133
134 LIST_DEL(&bo->fencedlist);
135 radeon_bo_fixed_unmap(radeon, bo);
136 memset(&args, 0, sizeof(args));
137 args.handle = bo->handle;
138 drmIoctl(radeon->fd, DRM_IOCTL_GEM_CLOSE, &args);
139 memset(bo, 0, sizeof(struct radeon_bo));
140 free(bo);
141 }
142
143 void radeon_bo_reference(struct radeon *radeon,
144 struct radeon_bo **dst,
145 struct radeon_bo *src)
146 {
147 struct radeon_bo *old = *dst;
148 if (pipe_reference(&(*dst)->reference, &src->reference)) {
149 radeon_bo_destroy(radeon, old);
150 }
151 *dst = src;
152 }
153
154 int radeon_bo_wait(struct radeon *radeon, struct radeon_bo *bo)
155 {
156 struct drm_radeon_gem_wait_idle args;
157 int ret;
158
159 if (!bo->fence && !bo->shared)
160 return 0;
161
162 if (bo->fence <= *bo->ctx->cfence) {
163 LIST_DELINIT(&bo->fencedlist);
164 bo->fence = 0;
165 return 0;
166 }
167
168 /* Zero out args to make valgrind happy */
169 memset(&args, 0, sizeof(args));
170 args.handle = bo->handle;
171 do {
172 ret = drmCommandWriteRead(radeon->fd, DRM_RADEON_GEM_WAIT_IDLE,
173 &args, sizeof(args));
174 } while (ret == -EBUSY);
175 return ret;
176 }
177
178 int radeon_bo_busy(struct radeon *radeon, struct radeon_bo *bo, uint32_t *domain)
179 {
180 struct drm_radeon_gem_busy args;
181 int ret;
182
183 if (!bo->shared) {
184 if (!bo->fence)
185 return 0;
186 if (bo->fence <= *bo->ctx->cfence) {
187 LIST_DELINIT(&bo->fencedlist);
188 bo->fence = 0;
189 return 0;
190 }
191 }
192
193 memset(&args, 0, sizeof(args));
194 args.handle = bo->handle;
195 args.domain = 0;
196
197 ret = drmCommandWriteRead(radeon->fd, DRM_RADEON_GEM_BUSY,
198 &args, sizeof(args));
199
200 *domain = args.domain;
201 return ret;
202 }