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>
32 #include "freedreno_priv.h"
41 struct fd_device base
;
42 struct fd_bo_cache ring_cache
;
46 static inline struct msm_device
* to_msm_device(struct fd_device
*x
)
48 return (struct msm_device
*)x
;
51 drm_private
struct fd_device
* msm_device_new(int fd
);
61 /* Allow for sub-allocation of stateobj ring buffers (ie. sharing
62 * the same underlying bo)..
64 * This takes advantage of each context having it's own fd_pipe,
65 * so we don't have to worry about access from multiple threads.
67 * We also rely on previous stateobj having been fully constructed
68 * so we can reclaim extra space at it's end.
70 struct fd_ringbuffer
*suballoc_ring
;
73 static inline struct msm_pipe
* to_msm_pipe(struct fd_pipe
*x
)
75 return (struct msm_pipe
*)x
;
78 drm_private
struct fd_pipe
* msm_pipe_new(struct fd_device
*dev
,
79 enum fd_pipe_id id
, uint32_t prio
);
81 drm_private
struct fd_ringbuffer
* msm_ringbuffer_new(struct fd_pipe
*pipe
,
82 uint32_t size
, enum fd_ringbuffer_flags flags
);
88 /* to avoid excess hashtable lookups, cache the ring this bo was
89 * last emitted on (since that will probably also be the next ring
92 unsigned current_ring_seqno
;
96 static inline struct msm_bo
* to_msm_bo(struct fd_bo
*x
)
98 return (struct msm_bo
*)x
;
101 drm_private
int msm_bo_new_handle(struct fd_device
*dev
,
102 uint32_t size
, uint32_t flags
, uint32_t *handle
);
103 drm_private
struct fd_bo
* msm_bo_from_handle(struct fd_device
*dev
,
104 uint32_t size
, uint32_t handle
);
106 static inline void get_abs_timeout(struct drm_msm_timespec
*tv
, uint64_t ns
)
109 uint32_t s
= ns
/ 1000000000;
110 clock_gettime(CLOCK_MONOTONIC
, &t
);
111 tv
->tv_sec
= t
.tv_sec
+ s
;
112 tv
->tv_nsec
= t
.tv_nsec
+ ns
- (s
* 1000000000);
116 * Stupid/simple growable array implementation:
120 grow(void *ptr
, uint32_t nr
, uint32_t *max
, uint32_t sz
)
122 if ((nr
+ 1) > *max
) {
123 if ((*max
* 2) < (nr
+ 1))
127 ptr
= realloc(ptr
, *max
* sz
);
132 #define DECLARE_ARRAY(type, name) \
133 unsigned nr_ ## name, max_ ## name; \
136 #define APPEND(x, name) ({ \
137 (x)->name = grow((x)->name, (x)->nr_ ## name, &(x)->max_ ## name, sizeof((x)->name[0])); \
138 (x)->nr_ ## name ++; \
141 #endif /* MSM_PRIV_H_ */