2010-01-14 03:24:16 -07:00
|
|
|
/*
|
2009-06-17 01:47:42 -06:00
|
|
|
* Copyright © 2008 Dave Airlie
|
|
|
|
* Copyright © 2008 Jérôme Glisse
|
|
|
|
* All Rights Reserved.
|
2010-01-14 03:24:16 -07:00
|
|
|
*
|
2009-06-17 01:47:42 -06:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sub license, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
2010-01-14 03:24:16 -07:00
|
|
|
*
|
2009-06-17 01:47:42 -06:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
|
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
|
|
|
|
* AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
2010-01-14 03:24:16 -07:00
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
2009-06-17 01:47:42 -06:00
|
|
|
* USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
|
|
* of the Software.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Authors:
|
|
|
|
* Dave Airlie
|
|
|
|
* Jérôme Glisse <glisse@freedesktop.org>
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2015-04-05 08:51:59 -06:00
|
|
|
#include "libdrm_macros.h"
|
2009-06-17 01:47:42 -06:00
|
|
|
#include "xf86drm.h"
|
2009-08-29 03:08:57 -06:00
|
|
|
#include "xf86atomic.h"
|
2009-06-17 01:47:42 -06:00
|
|
|
#include "drm.h"
|
|
|
|
#include "radeon_drm.h"
|
|
|
|
#include "radeon_bo.h"
|
2009-12-16 21:11:55 -07:00
|
|
|
#include "radeon_bo_int.h"
|
2009-06-17 01:47:42 -06:00
|
|
|
#include "radeon_bo_gem.h"
|
2012-06-12 10:31:12 -06:00
|
|
|
#include <fcntl.h>
|
2009-06-17 01:47:42 -06:00
|
|
|
struct radeon_bo_gem {
|
2012-11-27 11:59:11 -07:00
|
|
|
struct radeon_bo_int base;
|
|
|
|
uint32_t name;
|
|
|
|
int map_count;
|
|
|
|
atomic_t reloc_in_cs;
|
|
|
|
void *priv_ptr;
|
2009-06-17 01:47:42 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
struct bo_manager_gem {
|
|
|
|
struct radeon_bo_manager base;
|
|
|
|
};
|
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
static int bo_wait(struct radeon_bo_int *boi);
|
|
|
|
|
2009-06-17 01:47:42 -06:00
|
|
|
static struct radeon_bo *bo_open(struct radeon_bo_manager *bom,
|
|
|
|
uint32_t handle,
|
|
|
|
uint32_t size,
|
|
|
|
uint32_t alignment,
|
|
|
|
uint32_t domains,
|
|
|
|
uint32_t flags)
|
|
|
|
{
|
|
|
|
struct radeon_bo_gem *bo;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
bo = (struct radeon_bo_gem*)calloc(1, sizeof(struct radeon_bo_gem));
|
|
|
|
if (bo == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bo->base.bom = bom;
|
|
|
|
bo->base.handle = 0;
|
|
|
|
bo->base.size = size;
|
|
|
|
bo->base.alignment = alignment;
|
|
|
|
bo->base.domains = domains;
|
|
|
|
bo->base.flags = flags;
|
|
|
|
bo->base.ptr = NULL;
|
2009-08-29 03:08:57 -06:00
|
|
|
atomic_set(&bo->reloc_in_cs, 0);
|
2009-06-17 01:47:42 -06:00
|
|
|
bo->map_count = 0;
|
|
|
|
if (handle) {
|
|
|
|
struct drm_gem_open open_arg;
|
|
|
|
|
|
|
|
memset(&open_arg, 0, sizeof(open_arg));
|
|
|
|
open_arg.name = handle;
|
2009-12-07 10:30:52 -07:00
|
|
|
r = drmIoctl(bom->fd, DRM_IOCTL_GEM_OPEN, &open_arg);
|
2009-06-17 01:47:42 -06:00
|
|
|
if (r != 0) {
|
|
|
|
free(bo);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
bo->base.handle = open_arg.handle;
|
|
|
|
bo->base.size = open_arg.size;
|
|
|
|
bo->name = handle;
|
|
|
|
} else {
|
|
|
|
struct drm_radeon_gem_create args;
|
|
|
|
|
|
|
|
args.size = size;
|
|
|
|
args.alignment = alignment;
|
|
|
|
args.initial_domain = bo->base.domains;
|
2016-01-21 02:08:49 -07:00
|
|
|
args.flags = flags;
|
2009-06-17 01:47:42 -06:00
|
|
|
args.handle = 0;
|
|
|
|
r = drmCommandWriteRead(bom->fd, DRM_RADEON_GEM_CREATE,
|
|
|
|
&args, sizeof(args));
|
|
|
|
bo->base.handle = args.handle;
|
|
|
|
if (r) {
|
|
|
|
fprintf(stderr, "Failed to allocate :\n");
|
|
|
|
fprintf(stderr, " size : %d bytes\n", size);
|
|
|
|
fprintf(stderr, " alignment : %d bytes\n", alignment);
|
|
|
|
fprintf(stderr, " domains : %d\n", bo->base.domains);
|
|
|
|
free(bo);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
radeon_bo_ref((struct radeon_bo*)bo);
|
|
|
|
return (struct radeon_bo*)bo;
|
|
|
|
}
|
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
static void bo_ref(struct radeon_bo_int *boi)
|
2009-06-17 01:47:42 -06:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
static struct radeon_bo *bo_unref(struct radeon_bo_int *boi)
|
2009-06-17 01:47:42 -06:00
|
|
|
{
|
2009-12-16 21:11:55 -07:00
|
|
|
struct radeon_bo_gem *bo_gem = (struct radeon_bo_gem*)boi;
|
2009-06-17 01:47:42 -06:00
|
|
|
struct drm_gem_close args;
|
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
if (boi->cref) {
|
|
|
|
return (struct radeon_bo *)boi;
|
2009-06-17 01:47:42 -06:00
|
|
|
}
|
2009-08-01 00:47:24 -06:00
|
|
|
if (bo_gem->priv_ptr) {
|
2014-09-07 12:43:53 -06:00
|
|
|
drm_munmap(bo_gem->priv_ptr, boi->size);
|
2009-06-17 01:47:42 -06:00
|
|
|
}
|
|
|
|
|
2009-10-03 05:43:42 -06:00
|
|
|
/* Zero out args to make valgrind happy */
|
|
|
|
memset(&args, 0, sizeof(args));
|
|
|
|
|
2009-06-17 01:47:42 -06:00
|
|
|
/* close object */
|
2009-12-16 21:11:55 -07:00
|
|
|
args.handle = boi->handle;
|
|
|
|
drmIoctl(boi->bom->fd, DRM_IOCTL_GEM_CLOSE, &args);
|
2009-06-17 01:47:42 -06:00
|
|
|
memset(bo_gem, 0, sizeof(struct radeon_bo_gem));
|
|
|
|
free(bo_gem);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
static int bo_map(struct radeon_bo_int *boi, int write)
|
2009-06-17 01:47:42 -06:00
|
|
|
{
|
2009-12-16 21:11:55 -07:00
|
|
|
struct radeon_bo_gem *bo_gem = (struct radeon_bo_gem*)boi;
|
2009-06-17 01:47:42 -06:00
|
|
|
struct drm_radeon_gem_mmap args;
|
|
|
|
int r;
|
|
|
|
void *ptr;
|
|
|
|
|
2009-08-28 03:42:07 -06:00
|
|
|
if (bo_gem->map_count++ != 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (bo_gem->priv_ptr) {
|
2010-01-14 03:24:16 -07:00
|
|
|
goto wait;
|
2009-08-01 00:47:24 -06:00
|
|
|
}
|
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
boi->ptr = NULL;
|
2009-10-03 05:43:42 -06:00
|
|
|
|
|
|
|
/* Zero out args to make valgrind happy */
|
|
|
|
memset(&args, 0, sizeof(args));
|
2009-12-16 21:11:55 -07:00
|
|
|
args.handle = boi->handle;
|
2009-06-17 01:47:42 -06:00
|
|
|
args.offset = 0;
|
2009-12-16 21:11:55 -07:00
|
|
|
args.size = (uint64_t)boi->size;
|
|
|
|
r = drmCommandWriteRead(boi->bom->fd,
|
2009-06-17 01:47:42 -06:00
|
|
|
DRM_RADEON_GEM_MMAP,
|
|
|
|
&args,
|
|
|
|
sizeof(args));
|
|
|
|
if (r) {
|
|
|
|
fprintf(stderr, "error mapping %p 0x%08X (error = %d)\n",
|
2009-12-16 21:11:55 -07:00
|
|
|
boi, boi->handle, r);
|
2009-06-17 01:47:42 -06:00
|
|
|
return r;
|
|
|
|
}
|
2014-09-07 12:43:53 -06:00
|
|
|
ptr = drm_mmap(0, args.size, PROT_READ|PROT_WRITE, MAP_SHARED, boi->bom->fd, args.addr_ptr);
|
2009-06-17 01:47:42 -06:00
|
|
|
if (ptr == MAP_FAILED)
|
|
|
|
return -errno;
|
2009-08-01 00:47:24 -06:00
|
|
|
bo_gem->priv_ptr = ptr;
|
2009-08-17 05:21:02 -06:00
|
|
|
wait:
|
2009-12-16 21:11:55 -07:00
|
|
|
boi->ptr = bo_gem->priv_ptr;
|
|
|
|
r = bo_wait(boi);
|
2009-08-17 05:21:02 -06:00
|
|
|
if (r)
|
2009-12-16 21:11:55 -07:00
|
|
|
return r;
|
2009-08-17 05:21:02 -06:00
|
|
|
return 0;
|
2009-06-17 01:47:42 -06:00
|
|
|
}
|
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
static int bo_unmap(struct radeon_bo_int *boi)
|
2009-06-17 01:47:42 -06:00
|
|
|
{
|
2009-12-16 21:11:55 -07:00
|
|
|
struct radeon_bo_gem *bo_gem = (struct radeon_bo_gem*)boi;
|
2009-06-17 01:47:42 -06:00
|
|
|
|
|
|
|
if (--bo_gem->map_count > 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
2014-09-07 12:43:53 -06:00
|
|
|
//drm_munmap(bo->ptr, bo->size);
|
2009-12-16 21:11:55 -07:00
|
|
|
boi->ptr = NULL;
|
2009-06-17 01:47:42 -06:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
static int bo_wait(struct radeon_bo_int *boi)
|
2009-06-17 01:47:42 -06:00
|
|
|
{
|
|
|
|
struct drm_radeon_gem_wait_idle args;
|
|
|
|
int ret;
|
|
|
|
|
2009-10-03 05:43:42 -06:00
|
|
|
/* Zero out args to make valgrind happy */
|
|
|
|
memset(&args, 0, sizeof(args));
|
2009-12-16 21:11:55 -07:00
|
|
|
args.handle = boi->handle;
|
2009-06-17 01:47:42 -06:00
|
|
|
do {
|
2013-06-04 21:04:30 -06:00
|
|
|
ret = drmCommandWrite(boi->bom->fd, DRM_RADEON_GEM_WAIT_IDLE,
|
|
|
|
&args, sizeof(args));
|
2009-06-17 01:47:42 -06:00
|
|
|
} while (ret == -EBUSY);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
static int bo_is_busy(struct radeon_bo_int *boi, uint32_t *domain)
|
2009-08-21 21:16:18 -06:00
|
|
|
{
|
|
|
|
struct drm_radeon_gem_busy args;
|
|
|
|
int ret;
|
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
args.handle = boi->handle;
|
2009-08-21 21:16:18 -06:00
|
|
|
args.domain = 0;
|
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
ret = drmCommandWriteRead(boi->bom->fd, DRM_RADEON_GEM_BUSY,
|
2010-01-14 03:24:16 -07:00
|
|
|
&args, sizeof(args));
|
2009-08-21 21:16:18 -06:00
|
|
|
|
|
|
|
*domain = args.domain;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
static int bo_set_tiling(struct radeon_bo_int *boi, uint32_t tiling_flags,
|
2010-01-14 03:24:16 -07:00
|
|
|
uint32_t pitch)
|
2009-08-01 01:19:43 -06:00
|
|
|
{
|
|
|
|
struct drm_radeon_gem_set_tiling args;
|
|
|
|
int r;
|
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
args.handle = boi->handle;
|
2009-08-01 01:19:43 -06:00
|
|
|
args.tiling_flags = tiling_flags;
|
|
|
|
args.pitch = pitch;
|
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
r = drmCommandWriteRead(boi->bom->fd,
|
2010-01-14 03:24:16 -07:00
|
|
|
DRM_RADEON_GEM_SET_TILING,
|
|
|
|
&args,
|
|
|
|
sizeof(args));
|
2009-08-01 01:19:43 -06:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
static int bo_get_tiling(struct radeon_bo_int *boi, uint32_t *tiling_flags,
|
2010-01-14 03:24:16 -07:00
|
|
|
uint32_t *pitch)
|
2009-08-01 01:19:43 -06:00
|
|
|
{
|
2010-12-01 20:12:16 -07:00
|
|
|
struct drm_radeon_gem_set_tiling args = {};
|
2009-08-01 01:19:43 -06:00
|
|
|
int r;
|
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
args.handle = boi->handle;
|
2009-08-01 01:19:43 -06:00
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
r = drmCommandWriteRead(boi->bom->fd,
|
2010-01-14 03:24:16 -07:00
|
|
|
DRM_RADEON_GEM_GET_TILING,
|
|
|
|
&args,
|
|
|
|
sizeof(args));
|
2009-08-01 01:19:43 -06:00
|
|
|
|
|
|
|
if (r)
|
2010-01-14 03:24:16 -07:00
|
|
|
return r;
|
2009-08-01 01:19:43 -06:00
|
|
|
|
|
|
|
*tiling_flags = args.tiling_flags;
|
|
|
|
*pitch = args.pitch;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2015-08-15 10:12:13 -06:00
|
|
|
static const struct radeon_bo_funcs bo_gem_funcs = {
|
|
|
|
.bo_open = bo_open,
|
|
|
|
.bo_ref = bo_ref,
|
|
|
|
.bo_unref = bo_unref,
|
|
|
|
.bo_map = bo_map,
|
|
|
|
.bo_unmap = bo_unmap,
|
|
|
|
.bo_wait = bo_wait,
|
|
|
|
.bo_is_static = NULL,
|
|
|
|
.bo_set_tiling = bo_set_tiling,
|
|
|
|
.bo_get_tiling = bo_get_tiling,
|
|
|
|
.bo_is_busy = bo_is_busy,
|
|
|
|
.bo_is_referenced_by_cs = NULL,
|
2009-06-17 01:47:42 -06:00
|
|
|
};
|
|
|
|
|
2018-09-13 17:05:15 -06:00
|
|
|
drm_public struct radeon_bo_manager *radeon_bo_manager_gem_ctor(int fd)
|
2009-06-17 01:47:42 -06:00
|
|
|
{
|
|
|
|
struct bo_manager_gem *bomg;
|
|
|
|
|
|
|
|
bomg = (struct bo_manager_gem*)calloc(1, sizeof(struct bo_manager_gem));
|
|
|
|
if (bomg == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
bomg->base.funcs = &bo_gem_funcs;
|
|
|
|
bomg->base.fd = fd;
|
|
|
|
return (struct radeon_bo_manager*)bomg;
|
|
|
|
}
|
|
|
|
|
2018-09-13 17:05:15 -06:00
|
|
|
drm_public void radeon_bo_manager_gem_dtor(struct radeon_bo_manager *bom)
|
2009-06-17 01:47:42 -06:00
|
|
|
{
|
|
|
|
struct bo_manager_gem *bomg = (struct bo_manager_gem*)bom;
|
|
|
|
|
|
|
|
if (bom == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
free(bomg);
|
|
|
|
}
|
|
|
|
|
2018-09-13 17:05:15 -06:00
|
|
|
drm_public uint32_t
|
2014-07-31 07:39:15 -06:00
|
|
|
radeon_gem_name_bo(struct radeon_bo *bo)
|
2009-06-17 01:47:42 -06:00
|
|
|
{
|
|
|
|
struct radeon_bo_gem *bo_gem = (struct radeon_bo_gem*)bo;
|
|
|
|
return bo_gem->name;
|
|
|
|
}
|
|
|
|
|
2018-09-13 17:05:15 -06:00
|
|
|
drm_public void *
|
2014-07-31 07:39:15 -06:00
|
|
|
radeon_gem_get_reloc_in_cs(struct radeon_bo *bo)
|
2009-08-29 03:08:57 -06:00
|
|
|
{
|
|
|
|
struct radeon_bo_gem *bo_gem = (struct radeon_bo_gem*)bo;
|
|
|
|
return &bo_gem->reloc_in_cs;
|
|
|
|
}
|
|
|
|
|
2018-09-13 17:05:15 -06:00
|
|
|
drm_public int
|
2014-07-31 07:39:15 -06:00
|
|
|
radeon_gem_get_kernel_name(struct radeon_bo *bo, uint32_t *name)
|
2009-07-01 23:42:01 -06:00
|
|
|
{
|
2012-11-27 11:59:11 -07:00
|
|
|
struct radeon_bo_gem *bo_gem = (struct radeon_bo_gem*)bo;
|
2009-12-16 21:11:55 -07:00
|
|
|
struct radeon_bo_int *boi = (struct radeon_bo_int *)bo;
|
2009-07-01 23:42:01 -06:00
|
|
|
struct drm_gem_flink flink;
|
|
|
|
int r;
|
|
|
|
|
2012-11-27 11:59:11 -07:00
|
|
|
if (bo_gem->name) {
|
|
|
|
*name = bo_gem->name;
|
|
|
|
return 0;
|
|
|
|
}
|
2009-07-01 23:42:01 -06:00
|
|
|
flink.handle = bo->handle;
|
2009-12-16 21:11:55 -07:00
|
|
|
r = drmIoctl(boi->bom->fd, DRM_IOCTL_GEM_FLINK, &flink);
|
2009-07-01 23:42:01 -06:00
|
|
|
if (r) {
|
2010-01-14 03:24:16 -07:00
|
|
|
return r;
|
2009-07-01 23:42:01 -06:00
|
|
|
}
|
2012-11-27 11:59:11 -07:00
|
|
|
bo_gem->name = flink.name;
|
2009-07-01 23:42:01 -06:00
|
|
|
*name = flink.name;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-13 17:05:15 -06:00
|
|
|
drm_public int
|
2014-07-31 07:39:15 -06:00
|
|
|
radeon_gem_set_domain(struct radeon_bo *bo, uint32_t read_domains, uint32_t write_domain)
|
2009-06-17 01:47:42 -06:00
|
|
|
{
|
2009-12-16 21:11:55 -07:00
|
|
|
struct radeon_bo_int *boi = (struct radeon_bo_int *)bo;
|
2009-06-17 01:47:42 -06:00
|
|
|
struct drm_radeon_gem_set_domain args;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
args.handle = bo->handle;
|
|
|
|
args.read_domains = read_domains;
|
|
|
|
args.write_domain = write_domain;
|
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
r = drmCommandWriteRead(boi->bom->fd,
|
2009-06-17 01:47:42 -06:00
|
|
|
DRM_RADEON_GEM_SET_DOMAIN,
|
|
|
|
&args,
|
|
|
|
sizeof(args));
|
|
|
|
return r;
|
|
|
|
}
|
2012-06-12 10:31:12 -06:00
|
|
|
|
2018-09-13 17:05:15 -06:00
|
|
|
drm_public int radeon_gem_prime_share_bo(struct radeon_bo *bo, int *handle)
|
2012-06-12 10:31:12 -06:00
|
|
|
{
|
|
|
|
struct radeon_bo_gem *bo_gem = (struct radeon_bo_gem*)bo;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = drmPrimeHandleToFD(bo_gem->base.bom->fd, bo->handle, DRM_CLOEXEC, handle);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-09-13 17:05:15 -06:00
|
|
|
drm_public struct radeon_bo *
|
2014-07-31 07:39:15 -06:00
|
|
|
radeon_gem_bo_open_prime(struct radeon_bo_manager *bom, int fd_handle, uint32_t size)
|
2012-06-12 10:31:12 -06:00
|
|
|
{
|
|
|
|
struct radeon_bo_gem *bo;
|
|
|
|
int r;
|
|
|
|
uint32_t handle;
|
|
|
|
|
|
|
|
bo = (struct radeon_bo_gem*)calloc(1, sizeof(struct radeon_bo_gem));
|
|
|
|
if (bo == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bo->base.bom = bom;
|
|
|
|
bo->base.handle = 0;
|
|
|
|
bo->base.size = size;
|
|
|
|
bo->base.alignment = 0;
|
|
|
|
bo->base.domains = RADEON_GEM_DOMAIN_GTT;
|
|
|
|
bo->base.flags = 0;
|
|
|
|
bo->base.ptr = NULL;
|
|
|
|
atomic_set(&bo->reloc_in_cs, 0);
|
|
|
|
bo->map_count = 0;
|
|
|
|
|
|
|
|
r = drmPrimeFDToHandle(bom->fd, fd_handle, &handle);
|
|
|
|
if (r != 0) {
|
|
|
|
free(bo);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bo->base.handle = handle;
|
|
|
|
bo->name = handle;
|
|
|
|
|
|
|
|
radeon_bo_ref((struct radeon_bo *)bo);
|
|
|
|
return (struct radeon_bo *)bo;
|
|
|
|
|
|
|
|
}
|