1 /* -*- mode: C; c-file-style: "k&r"; tab-width 4; indent-tabs-mode: t; -*- */
4 * Copyright (C) 2013 Rob Clark <robclark@freedesktop.org>
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * Rob Clark <robclark@freedesktop.org>
31 static int bo_allocate(struct msm_bo
*msm_bo
)
33 struct fd_bo
*bo
= &msm_bo
->base
;
34 if (!msm_bo
->offset
) {
35 struct drm_msm_gem_info req
= {
40 /* if the buffer is already backed by pages then this
41 * doesn't actually do anything (other than giving us
44 ret
= drmCommandWriteRead(bo
->dev
->fd
, DRM_MSM_GEM_INFO
,
47 ERROR_MSG("alloc failed: %s", strerror(errno
));
51 msm_bo
->offset
= req
.offset
;
57 static int msm_bo_offset(struct fd_bo
*bo
, uint64_t *offset
)
59 struct msm_bo
*msm_bo
= to_msm_bo(bo
);
60 int ret
= bo_allocate(msm_bo
);
63 *offset
= msm_bo
->offset
;
67 static int msm_bo_cpu_prep(struct fd_bo
*bo
, struct fd_pipe
*pipe
, uint32_t op
)
69 struct drm_msm_gem_cpu_prep req
= {
74 get_abs_timeout(&req
.timeout
, 5000000000);
76 return drmCommandWrite(bo
->dev
->fd
, DRM_MSM_GEM_CPU_PREP
, &req
, sizeof(req
));
79 static void msm_bo_cpu_fini(struct fd_bo
*bo
)
81 struct drm_msm_gem_cpu_fini req
= {
85 drmCommandWrite(bo
->dev
->fd
, DRM_MSM_GEM_CPU_FINI
, &req
, sizeof(req
));
88 static int msm_bo_madvise(struct fd_bo
*bo
, int willneed
)
90 struct drm_msm_gem_madvise req
= {
92 .madv
= willneed
? MSM_MADV_WILLNEED
: MSM_MADV_DONTNEED
,
96 /* older kernels do not support this: */
97 if (bo
->dev
->version
< FD_VERSION_MADVISE
)
100 ret
= drmCommandWriteRead(bo
->dev
->fd
, DRM_MSM_GEM_MADVISE
, &req
, sizeof(req
));
107 static uint64_t msm_bo_iova(struct fd_bo
*bo
)
109 struct drm_msm_gem_info req
= {
110 .handle
= bo
->handle
,
111 .flags
= MSM_INFO_IOVA
,
114 drmCommandWriteRead(bo
->dev
->fd
, DRM_MSM_GEM_INFO
, &req
, sizeof(req
));
119 static void msm_bo_destroy(struct fd_bo
*bo
)
121 struct msm_bo
*msm_bo
= to_msm_bo(bo
);
126 static const struct fd_bo_funcs funcs
= {
127 .offset
= msm_bo_offset
,
128 .cpu_prep
= msm_bo_cpu_prep
,
129 .cpu_fini
= msm_bo_cpu_fini
,
130 .madvise
= msm_bo_madvise
,
132 .destroy
= msm_bo_destroy
,
135 /* allocate a buffer handle: */
136 drm_private
int msm_bo_new_handle(struct fd_device
*dev
,
137 uint32_t size
, uint32_t flags
, uint32_t *handle
)
139 struct drm_msm_gem_new req
= {
141 .flags
= MSM_BO_WC
, // TODO figure out proper flags..
145 ret
= drmCommandWriteRead(dev
->fd
, DRM_MSM_GEM_NEW
,
150 *handle
= req
.handle
;
155 /* allocate a new buffer object */
156 drm_private
struct fd_bo
* msm_bo_from_handle(struct fd_device
*dev
,
157 uint32_t size
, uint32_t handle
)
159 struct msm_bo
*msm_bo
;
162 msm_bo
= calloc(1, sizeof(*msm_bo
));