1b8e80941Smrg/*
2b8e80941Smrg * Copyright (C) 2012-2018 Rob Clark <robclark@freedesktop.org>
3b8e80941Smrg *
4b8e80941Smrg * Permission is hereby granted, free of charge, to any person obtaining a
5b8e80941Smrg * copy of this software and associated documentation files (the "Software"),
6b8e80941Smrg * to deal in the Software without restriction, including without limitation
7b8e80941Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8b8e80941Smrg * and/or sell copies of the Software, and to permit persons to whom the
9b8e80941Smrg * Software is furnished to do so, subject to the following conditions:
10b8e80941Smrg *
11b8e80941Smrg * The above copyright notice and this permission notice (including the next
12b8e80941Smrg * paragraph) shall be included in all copies or substantial portions of the
13b8e80941Smrg * Software.
14b8e80941Smrg *
15b8e80941Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16b8e80941Smrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17b8e80941Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18b8e80941Smrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19b8e80941Smrg * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20b8e80941Smrg * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21b8e80941Smrg * SOFTWARE.
22b8e80941Smrg *
23b8e80941Smrg * Authors:
24b8e80941Smrg *    Rob Clark <robclark@freedesktop.org>
25b8e80941Smrg */
26b8e80941Smrg
27b8e80941Smrg#include "freedreno_drmif.h"
28b8e80941Smrg#include "freedreno_priv.h"
29b8e80941Smrg
30b8e80941Smrg/**
31b8e80941Smrg * priority of zero is highest priority, and higher numeric values are
32b8e80941Smrg * lower priorities
33b8e80941Smrg */
34b8e80941Smrgstruct fd_pipe *
35b8e80941Smrgfd_pipe_new2(struct fd_device *dev, enum fd_pipe_id id, uint32_t prio)
36b8e80941Smrg{
37b8e80941Smrg	struct fd_pipe *pipe;
38b8e80941Smrg	uint64_t val;
39b8e80941Smrg
40b8e80941Smrg	if (id > FD_PIPE_MAX) {
41b8e80941Smrg		ERROR_MSG("invalid pipe id: %d", id);
42b8e80941Smrg		return NULL;
43b8e80941Smrg	}
44b8e80941Smrg
45b8e80941Smrg	if ((prio != 1) && (fd_device_version(dev) < FD_VERSION_SUBMIT_QUEUES)) {
46b8e80941Smrg		ERROR_MSG("invalid priority!");
47b8e80941Smrg		return NULL;
48b8e80941Smrg	}
49b8e80941Smrg
50b8e80941Smrg	pipe = dev->funcs->pipe_new(dev, id, prio);
51b8e80941Smrg	if (!pipe) {
52b8e80941Smrg		ERROR_MSG("allocation failed");
53b8e80941Smrg		return NULL;
54b8e80941Smrg	}
55b8e80941Smrg
56b8e80941Smrg	pipe->dev = dev;
57b8e80941Smrg	pipe->id = id;
58b8e80941Smrg	p_atomic_set(&pipe->refcnt, 1);
59b8e80941Smrg
60b8e80941Smrg	fd_pipe_get_param(pipe, FD_GPU_ID, &val);
61b8e80941Smrg	pipe->gpu_id = val;
62b8e80941Smrg
63b8e80941Smrg	return pipe;
64b8e80941Smrg}
65b8e80941Smrg
66b8e80941Smrgstruct fd_pipe *
67b8e80941Smrgfd_pipe_new(struct fd_device *dev, enum fd_pipe_id id)
68b8e80941Smrg{
69b8e80941Smrg	return fd_pipe_new2(dev, id, 1);
70b8e80941Smrg}
71b8e80941Smrg
72b8e80941Smrgstruct fd_pipe * fd_pipe_ref(struct fd_pipe *pipe)
73b8e80941Smrg{
74b8e80941Smrg	p_atomic_inc(&pipe->refcnt);
75b8e80941Smrg	return pipe;
76b8e80941Smrg}
77b8e80941Smrg
78b8e80941Smrgvoid fd_pipe_del(struct fd_pipe *pipe)
79b8e80941Smrg{
80b8e80941Smrg	if (!atomic_dec_and_test(&pipe->refcnt))
81b8e80941Smrg		return;
82b8e80941Smrg	pipe->funcs->destroy(pipe);
83b8e80941Smrg}
84b8e80941Smrg
85b8e80941Smrgint fd_pipe_get_param(struct fd_pipe *pipe,
86b8e80941Smrg				 enum fd_param_id param, uint64_t *value)
87b8e80941Smrg{
88b8e80941Smrg	return pipe->funcs->get_param(pipe, param, value);
89b8e80941Smrg}
90b8e80941Smrg
91b8e80941Smrgint fd_pipe_wait(struct fd_pipe *pipe, uint32_t timestamp)
92b8e80941Smrg{
93b8e80941Smrg	return fd_pipe_wait_timeout(pipe, timestamp, ~0);
94b8e80941Smrg}
95b8e80941Smrg
96b8e80941Smrgint fd_pipe_wait_timeout(struct fd_pipe *pipe, uint32_t timestamp,
97b8e80941Smrg		uint64_t timeout)
98b8e80941Smrg{
99b8e80941Smrg	return pipe->funcs->wait(pipe, timestamp, timeout);
100b8e80941Smrg}
101