gallium/u_upload_mgr: allow drivers to specify pipe_resource::flags
[mesa.git] / src / gallium / drivers / freedreno / a5xx / fd5_context.c
1 /*
2 * Copyright (C) 2016 Rob Clark <robclark@freedesktop.org>
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 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * 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 NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 * Authors:
24 * Rob Clark <robclark@freedesktop.org>
25 */
26
27 #include "freedreno_query_acc.h"
28
29 #include "fd5_context.h"
30 #include "fd5_compute.h"
31 #include "fd5_blend.h"
32 #include "fd5_draw.h"
33 #include "fd5_emit.h"
34 #include "fd5_gmem.h"
35 #include "fd5_program.h"
36 #include "fd5_query.h"
37 #include "fd5_rasterizer.h"
38 #include "fd5_texture.h"
39 #include "fd5_zsa.h"
40
41 static void
42 fd5_context_destroy(struct pipe_context *pctx)
43 {
44 struct fd5_context *fd5_ctx = fd5_context(fd_context(pctx));
45
46 fd_bo_del(fd5_ctx->vs_pvt_mem);
47 fd_bo_del(fd5_ctx->fs_pvt_mem);
48 fd_bo_del(fd5_ctx->vsc_size_mem);
49 fd_bo_del(fd5_ctx->blit_mem);
50
51 fd_context_cleanup_common_vbos(&fd5_ctx->base);
52
53 u_upload_destroy(fd5_ctx->border_color_uploader);
54
55 fd_context_destroy(pctx);
56 }
57
58 static const uint8_t primtypes[] = {
59 [PIPE_PRIM_POINTS] = DI_PT_POINTLIST,
60 [PIPE_PRIM_LINES] = DI_PT_LINELIST,
61 [PIPE_PRIM_LINE_STRIP] = DI_PT_LINESTRIP,
62 [PIPE_PRIM_LINE_LOOP] = DI_PT_LINELOOP,
63 [PIPE_PRIM_TRIANGLES] = DI_PT_TRILIST,
64 [PIPE_PRIM_TRIANGLE_STRIP] = DI_PT_TRISTRIP,
65 [PIPE_PRIM_TRIANGLE_FAN] = DI_PT_TRIFAN,
66 [PIPE_PRIM_MAX] = DI_PT_RECTLIST, /* internal clear blits */
67 };
68
69 struct pipe_context *
70 fd5_context_create(struct pipe_screen *pscreen, void *priv, unsigned flags)
71 {
72 struct fd_screen *screen = fd_screen(pscreen);
73 struct fd5_context *fd5_ctx = CALLOC_STRUCT(fd5_context);
74 struct pipe_context *pctx;
75
76 if (!fd5_ctx)
77 return NULL;
78
79 pctx = &fd5_ctx->base.base;
80
81 fd5_ctx->base.dev = fd_device_ref(screen->dev);
82 fd5_ctx->base.screen = fd_screen(pscreen);
83
84 pctx->destroy = fd5_context_destroy;
85 pctx->create_blend_state = fd5_blend_state_create;
86 pctx->create_rasterizer_state = fd5_rasterizer_state_create;
87 pctx->create_depth_stencil_alpha_state = fd5_zsa_state_create;
88
89 fd5_draw_init(pctx);
90 fd5_compute_init(pctx);
91 fd5_gmem_init(pctx);
92 fd5_texture_init(pctx);
93 fd5_prog_init(pctx);
94 fd5_emit_init(pctx);
95
96 pctx = fd_context_init(&fd5_ctx->base, pscreen, primtypes, priv, flags);
97 if (!pctx)
98 return NULL;
99
100 fd5_ctx->vs_pvt_mem = fd_bo_new(screen->dev, 0x2000,
101 DRM_FREEDRENO_GEM_TYPE_KMEM);
102
103 fd5_ctx->fs_pvt_mem = fd_bo_new(screen->dev, 0x2000,
104 DRM_FREEDRENO_GEM_TYPE_KMEM);
105
106 fd5_ctx->vsc_size_mem = fd_bo_new(screen->dev, 0x1000,
107 DRM_FREEDRENO_GEM_TYPE_KMEM);
108
109 fd5_ctx->blit_mem = fd_bo_new(screen->dev, 0x1000,
110 DRM_FREEDRENO_GEM_TYPE_KMEM);
111
112 fd_context_setup_common_vbos(&fd5_ctx->base);
113
114 fd5_query_context_init(pctx);
115
116 fd5_ctx->border_color_uploader = u_upload_create(pctx, 4096, 0,
117 PIPE_USAGE_STREAM, 0);
118
119 return pctx;
120 }