xenocara/lib/libdrm/freedreno/freedreno_pipe.c

103 lines
2.8 KiB
C
Raw Normal View History

2015-08-21 17:55:36 -06:00
/* -*- mode: C; c-file-style: "k&r"; tab-width 4; indent-tabs-mode: t; -*- */
/*
* Copyright (C) 2012 Rob Clark <robclark@freedesktop.org>
*
* 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, sublicense,
* 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:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* 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 NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* Authors:
* Rob Clark <robclark@freedesktop.org>
*/
#include "freedreno_drmif.h"
#include "freedreno_priv.h"
2018-02-16 19:24:37 -07:00
/**
* priority of zero is highest priority, and higher numeric values are
* lower priorities
*/
2018-11-01 02:22:36 -06:00
drm_public struct fd_pipe *
2018-02-16 19:24:37 -07:00
fd_pipe_new2(struct fd_device *dev, enum fd_pipe_id id, uint32_t prio)
2015-08-21 17:55:36 -06:00
{
2018-02-16 19:24:37 -07:00
struct fd_pipe *pipe;
2017-02-04 22:38:00 -07:00
uint64_t val;
2015-08-21 17:55:36 -06:00
if (id > FD_PIPE_MAX) {
ERROR_MSG("invalid pipe id: %d", id);
2018-02-16 19:24:37 -07:00
return NULL;
2015-08-21 17:55:36 -06:00
}
2018-02-16 19:24:37 -07:00
if ((prio != 1) && (fd_device_version(dev) < FD_VERSION_SUBMIT_QUEUES)) {
ERROR_MSG("invalid priority!");
return NULL;
}
pipe = dev->funcs->pipe_new(dev, id, prio);
2015-08-21 17:55:36 -06:00
if (!pipe) {
ERROR_MSG("allocation failed");
2018-02-16 19:24:37 -07:00
return NULL;
2015-08-21 17:55:36 -06:00
}
pipe->dev = dev;
pipe->id = id;
2018-09-13 05:55:15 -06:00
atomic_set(&pipe->refcnt, 1);
2015-08-21 17:55:36 -06:00
2017-02-04 22:38:00 -07:00
fd_pipe_get_param(pipe, FD_GPU_ID, &val);
pipe->gpu_id = val;
2015-08-21 17:55:36 -06:00
return pipe;
2018-02-16 19:24:37 -07:00
}
2018-11-01 02:22:36 -06:00
drm_public struct fd_pipe *
2018-02-16 19:24:37 -07:00
fd_pipe_new(struct fd_device *dev, enum fd_pipe_id id)
{
return fd_pipe_new2(dev, id, 1);
2015-08-21 17:55:36 -06:00
}
2018-11-01 02:22:36 -06:00
drm_public struct fd_pipe * fd_pipe_ref(struct fd_pipe *pipe)
2018-09-13 05:55:15 -06:00
{
atomic_inc(&pipe->refcnt);
return pipe;
}
2018-11-01 02:22:36 -06:00
drm_public void fd_pipe_del(struct fd_pipe *pipe)
2015-08-21 17:55:36 -06:00
{
2018-09-13 05:55:15 -06:00
if (!atomic_dec_and_test(&pipe->refcnt))
return;
2015-08-21 17:55:36 -06:00
pipe->funcs->destroy(pipe);
}
2018-11-01 02:22:36 -06:00
drm_public int fd_pipe_get_param(struct fd_pipe *pipe,
2015-08-21 17:55:36 -06:00
enum fd_param_id param, uint64_t *value)
{
return pipe->funcs->get_param(pipe, param, value);
}
2018-11-01 02:22:36 -06:00
drm_public int fd_pipe_wait(struct fd_pipe *pipe, uint32_t timestamp)
2015-08-21 17:55:36 -06:00
{
return fd_pipe_wait_timeout(pipe, timestamp, ~0);
}
2018-11-01 02:22:36 -06:00
drm_public int fd_pipe_wait_timeout(struct fd_pipe *pipe, uint32_t timestamp,
2015-08-21 17:55:36 -06:00
uint64_t timeout)
{
return pipe->funcs->wait(pipe, timestamp, timeout);
}