iris: binders
[mesa.git] / src / gallium / drivers / iris / iris_binder.c
1 /*
2 * Copyright © 2018 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23
24 #include <stdlib.h>
25 #include "util/u_math.h"
26 #include "iris_binder.h"
27 #include "iris_bufmgr.h"
28
29 /* 64kb */
30 #define BINDER_SIZE (64 * 1024)
31
32 void *
33 iris_binder_reserve(struct iris_binder *binder, unsigned size,
34 uint32_t *out_offset)
35 {
36 /* XXX: Implement a real ringbuffer, for now just croak if run out */
37 assert(size > 0);
38 assert(binder->insert_point + size <= BINDER_SIZE);
39
40 binder->insert_point = align(binder->insert_point + size, 64);
41
42 return binder->map + *out_offset;
43 }
44
45 void
46 iris_init_binder(struct iris_binder *binder, struct iris_bufmgr *bufmgr)
47 {
48 binder->bo =
49 iris_bo_alloc(bufmgr, "binder", BINDER_SIZE, IRIS_MEMZONE_BINDER);
50 binder->map = iris_bo_map(NULL, binder->bo, MAP_WRITE);
51 }
52
53 void
54 iris_destroy_binder(struct iris_binder *binder)
55 {
56 iris_bo_unreference(binder->bo);
57 free(binder);
58 }