freedreno_pipe.c revision 3f012e29
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
36e6188e58Smrgstruct fd_pipe *
37baaff307Smrgfd_pipe_new(struct fd_device *dev, enum fd_pipe_id id)
38e88f27b3Smrg{
39e88f27b3Smrg	struct fd_pipe *pipe = NULL;
40e88f27b3Smrg
41e88f27b3Smrg	if (id > FD_PIPE_MAX) {
42e88f27b3Smrg		ERROR_MSG("invalid pipe id: %d", id);
43e88f27b3Smrg		goto fail;
44e88f27b3Smrg	}
45e88f27b3Smrg
46e88f27b3Smrg	pipe = dev->funcs->pipe_new(dev, id);
47e88f27b3Smrg	if (!pipe) {
48e88f27b3Smrg		ERROR_MSG("allocation failed");
49e88f27b3Smrg		goto fail;
50e88f27b3Smrg	}
51e88f27b3Smrg
52e88f27b3Smrg	pipe->dev = dev;
53e88f27b3Smrg	pipe->id = id;
54e88f27b3Smrg
55e88f27b3Smrg	return pipe;
56e88f27b3Smrgfail:
57e88f27b3Smrg	if (pipe)
58e88f27b3Smrg		fd_pipe_del(pipe);
59e88f27b3Smrg	return NULL;
60e88f27b3Smrg}
61e88f27b3Smrg
62e6188e58Smrgvoid fd_pipe_del(struct fd_pipe *pipe)
63e88f27b3Smrg{
64e88f27b3Smrg	pipe->funcs->destroy(pipe);
65e88f27b3Smrg}
66e88f27b3Smrg
67e6188e58Smrgint fd_pipe_get_param(struct fd_pipe *pipe,
68baaff307Smrg				 enum fd_param_id param, uint64_t *value)
69e88f27b3Smrg{
70e88f27b3Smrg	return pipe->funcs->get_param(pipe, param, value);
71e88f27b3Smrg}
72e88f27b3Smrg
73e6188e58Smrgint fd_pipe_wait(struct fd_pipe *pipe, uint32_t timestamp)
74e88f27b3Smrg{
753f012e29Smrg	return fd_pipe_wait_timeout(pipe, timestamp, ~0);
763f012e29Smrg}
773f012e29Smrg
783f012e29Smrgint fd_pipe_wait_timeout(struct fd_pipe *pipe, uint32_t timestamp,
793f012e29Smrg		uint64_t timeout)
803f012e29Smrg{
813f012e29Smrg	return pipe->funcs->wait(pipe, timestamp, timeout);
82e88f27b3Smrg}
83