1 /**************************************************************************
3 * Copyright © 2009 VMware, Inc., Palo Alto, CA., USA
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 * USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
35 #include <sys/ioctl.h>
37 #include "libdrm_macros.h"
39 #include "radeon_drm.h"
51 radeon_get_prop(struct kms_driver
*kms
, unsigned key
, unsigned *out
)
55 *out
= KMS_BO_TYPE_SCANOUT_X8R8G8B8
| KMS_BO_TYPE_CURSOR_64X64_A8R8G8B8
;
64 radeon_destroy(struct kms_driver
*kms
)
71 radeon_bo_create(struct kms_driver
*kms
,
72 const unsigned width
, const unsigned height
,
73 const enum kms_bo_type type
, const unsigned *attr
,
76 struct drm_radeon_gem_create arg
;
81 for (i
= 0; attr
[i
]; i
+= 2) {
93 case KMS_BO_TYPE_CURSOR_64X64_A8R8G8B8
:
97 case KMS_BO_TYPE_SCANOUT_X8R8G8B8
:
99 pitch
= (pitch
+ ALIGNMENT
- 1) & ~(ALIGNMENT
- 1);
100 size
= pitch
* height
;
106 bo
= calloc(1, sizeof(*bo
));
110 memset(&arg
, 0, sizeof(arg
));
112 arg
.alignment
= ALIGNMENT
;
113 arg
.initial_domain
= RADEON_GEM_DOMAIN_CPU
;
117 ret
= drmCommandWriteRead(kms
->fd
, DRM_RADEON_GEM_CREATE
,
123 bo
->base
.handle
= arg
.handle
;
124 bo
->base
.size
= size
;
125 bo
->base
.pitch
= pitch
;
139 radeon_bo_get_prop(struct kms_bo
*bo
, unsigned key
, unsigned *out
)
148 radeon_bo_map(struct kms_bo
*_bo
, void **out
)
150 struct radeon_bo
*bo
= (struct radeon_bo
*)_bo
;
151 struct drm_radeon_gem_mmap arg
;
161 memset(&arg
, 0, sizeof(arg
));
162 arg
.handle
= bo
->base
.handle
;
163 arg
.offset
= bo
->base
.offset
;
164 arg
.size
= (uint64_t)bo
->base
.size
;
166 ret
= drmCommandWriteRead(bo
->base
.kms
->fd
, DRM_RADEON_GEM_MMAP
,
171 map
= drm_mmap(0, arg
.size
, PROT_READ
| PROT_WRITE
, MAP_SHARED
,
172 bo
->base
.kms
->fd
, arg
.addr_ptr
);
173 if (map
== MAP_FAILED
)
184 radeon_bo_unmap(struct kms_bo
*_bo
)
186 struct radeon_bo
*bo
= (struct radeon_bo
*)_bo
;
187 if (--bo
->map_count
== 0) {
188 drm_munmap(bo
->base
.ptr
, bo
->base
.size
);
195 radeon_bo_destroy(struct kms_bo
*_bo
)
197 struct radeon_bo
*bo
= (struct radeon_bo
*)_bo
;
198 struct drm_gem_close arg
;
202 /* XXX Sanity check map_count */
203 drm_munmap(bo
->base
.ptr
, bo
->base
.size
);
207 memset(&arg
, 0, sizeof(arg
));
208 arg
.handle
= bo
->base
.handle
;
210 ret
= drmIoctl(bo
->base
.kms
->fd
, DRM_IOCTL_GEM_CLOSE
, &arg
);
219 radeon_create(int fd
, struct kms_driver
**out
)
221 struct kms_driver
*kms
;
223 kms
= calloc(1, sizeof(*kms
));
229 kms
->bo_create
= radeon_bo_create
;
230 kms
->bo_map
= radeon_bo_map
;
231 kms
->bo_unmap
= radeon_bo_unmap
;
232 kms
->bo_get_prop
= radeon_bo_get_prop
;
233 kms
->bo_destroy
= radeon_bo_destroy
;
234 kms
->get_prop
= radeon_get_prop
;
235 kms
->destroy
= radeon_destroy
;