freedreno_pipe.c revision 00a23bda
1e88f27b3Smrg/* -*- mode: C; c-file-style: "k&r"; tab-width 4; indent-tabs-mode: t; -*- */
2e88f27b3Smrg
3e88f27b3Smrg/*
4e88f27b3Smrg * Copyright (C) 2012 Rob Clark <robclark@freedesktop.org>
5e88f27b3Smrg *
6e88f27b3Smrg * Permission is hereby granted, free of charge, to any person obtaining a
7e88f27b3Smrg * copy of this software and associated documentation files (the "Software"),
8e88f27b3Smrg * to deal in the Software without restriction, including without limitation
9e88f27b3Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10e88f27b3Smrg * and/or sell copies of the Software, and to permit persons to whom the
11e88f27b3Smrg * Software is furnished to do so, subject to the following conditions:
12e88f27b3Smrg *
13e88f27b3Smrg * The above copyright notice and this permission notice (including the next
14e88f27b3Smrg * paragraph) shall be included in all copies or substantial portions of the
15e88f27b3Smrg * Software.
16e88f27b3Smrg *
17e88f27b3Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18e88f27b3Smrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19e88f27b3Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
20e88f27b3Smrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21e88f27b3Smrg * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22e88f27b3Smrg * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23e88f27b3Smrg * SOFTWARE.
24e88f27b3Smrg *
25e88f27b3Smrg * Authors:
26e88f27b3Smrg *    Rob Clark <robclark@freedesktop.org>
27e88f27b3Smrg */
28e88f27b3Smrg
29baaff307Smrg#ifdef HAVE_CONFIG_H
30baaff307Smrg# include <config.h>
31baaff307Smrg#endif
32baaff307Smrg
33e88f27b3Smrg#include "freedreno_drmif.h"
34e88f27b3Smrg#include "freedreno_priv.h"
35e88f27b3Smrg
3600a23bdaSmrg/**
3700a23bdaSmrg * priority of zero is highest priority, and higher numeric values are
3800a23bdaSmrg * lower priorities
3900a23bdaSmrg */
40e6188e58Smrgstruct fd_pipe *
4100a23bdaSmrgfd_pipe_new2(struct fd_device *dev, enum fd_pipe_id id, uint32_t prio)
42e88f27b3Smrg{
43d8807b2fSmrg	struct fd_pipe *pipe;
44037b3c26Smrg	uint64_t val;
45e88f27b3Smrg
46e88f27b3Smrg	if (id > FD_PIPE_MAX) {
47e88f27b3Smrg		ERROR_MSG("invalid pipe id: %d", id);
48d8807b2fSmrg		return NULL;
49e88f27b3Smrg	}
50e88f27b3Smrg
5100a23bdaSmrg	if ((prio != 1) && (fd_device_version(dev) < FD_VERSION_SUBMIT_QUEUES)) {
5200a23bdaSmrg		ERROR_MSG("invalid priority!");
5300a23bdaSmrg		return NULL;
5400a23bdaSmrg	}
5500a23bdaSmrg
5600a23bdaSmrg	pipe = dev->funcs->pipe_new(dev, id, prio);
57e88f27b3Smrg	if (!pipe) {
58e88f27b3Smrg		ERROR_MSG("allocation failed");
59d8807b2fSmrg		return NULL;
60e88f27b3Smrg	}
61e88f27b3Smrg
62e88f27b3Smrg	pipe->dev = dev;
63e88f27b3Smrg	pipe->id = id;
64e88f27b3Smrg
65037b3c26Smrg	fd_pipe_get_param(pipe, FD_GPU_ID, &val);
66037b3c26Smrg	pipe->gpu_id = val;
67037b3c26Smrg
68e88f27b3Smrg	return pipe;
69e88f27b3Smrg}
70e88f27b3Smrg
7100a23bdaSmrgstruct fd_pipe *
7200a23bdaSmrgfd_pipe_new(struct fd_device *dev, enum fd_pipe_id id)
7300a23bdaSmrg{
7400a23bdaSmrg	return fd_pipe_new2(dev, id, 1);
7500a23bdaSmrg}
7600a23bdaSmrg
77e6188e58Smrgvoid fd_pipe_del(struct fd_pipe *pipe)
78e88f27b3Smrg{
79e88f27b3Smrg	pipe->funcs->destroy(pipe);
80e88f27b3Smrg}
81e88f27b3Smrg
82e6188e58Smrgint fd_pipe_get_param(struct fd_pipe *pipe,
83baaff307Smrg				 enum fd_param_id param, uint64_t *value)
84e88f27b3Smrg{
85e88f27b3Smrg	return pipe->funcs->get_param(pipe, param, value);
86e88f27b3Smrg}
87e88f27b3Smrg
88e6188e58Smrgint fd_pipe_wait(struct fd_pipe *pipe, uint32_t timestamp)
89e88f27b3Smrg{
903f012e29Smrg	return fd_pipe_wait_timeout(pipe, timestamp, ~0);
913f012e29Smrg}
923f012e29Smrg
933f012e29Smrgint fd_pipe_wait_timeout(struct fd_pipe *pipe, uint32_t timestamp,
943f012e29Smrg		uint64_t timeout)
953f012e29Smrg{
963f012e29Smrg	return pipe->funcs->wait(pipe, timestamp, timeout);
97e88f27b3Smrg}
98