blob: 563e4269b8df31a2988e5340a7e2307f0e6def5b [file] [log] [blame]
Alyssa Rosenzweig9dd84db2019-03-12 03:32:17 +00001/*
2 * Copyright 2018-2019 Alyssa Rosenzweig
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 */
24
25#include "pan_context.h"
26#include "pan_util.h"
27#include "pan_format.h"
28
29#include "util/u_format.h"
30
31static unsigned
32panfrost_sfbd_format(struct pipe_surface *surf)
33{
34 /* TODO */
35 return 0xb84e0281; /* RGB32, no MSAA */
36}
37
38static void
Alyssa Rosenzweigd47f0902019-03-12 22:01:23 +000039panfrost_sfbd_clear(
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -070040 struct panfrost_job *job,
41 struct mali_single_framebuffer *sfbd)
Alyssa Rosenzweig9dd84db2019-03-12 03:32:17 +000042{
43 struct panfrost_context *ctx = job->ctx;
Alyssa Rosenzweig9dd84db2019-03-12 03:32:17 +000044
45 if (job->clear & PIPE_CLEAR_COLOR) {
Alyssa Rosenzweig8e4e4672019-07-01 11:49:06 -070046 sfbd->clear_color_1 = job->clear_color[0][0];
47 sfbd->clear_color_2 = job->clear_color[0][1];
48 sfbd->clear_color_3 = job->clear_color[0][2];
49 sfbd->clear_color_4 = job->clear_color[0][3];
Alyssa Rosenzweig9dd84db2019-03-12 03:32:17 +000050 }
51
52 if (job->clear & PIPE_CLEAR_DEPTH) {
53 sfbd->clear_depth_1 = job->clear_depth;
54 sfbd->clear_depth_2 = job->clear_depth;
55 sfbd->clear_depth_3 = job->clear_depth;
56 sfbd->clear_depth_4 = job->clear_depth;
57
Boris Brezillon35577462019-07-02 13:50:44 +020058 sfbd->depth_buffer = ctx->depth_stencil_buffer.bo->gpu;
Alyssa Rosenzweig9dd84db2019-03-12 03:32:17 +000059 sfbd->depth_buffer_enable = MALI_DEPTH_STENCIL_ENABLE;
60 }
61
62 if (job->clear & PIPE_CLEAR_STENCIL) {
63 sfbd->clear_stencil = job->clear_stencil;
64
Boris Brezillon35577462019-07-02 13:50:44 +020065 sfbd->stencil_buffer = ctx->depth_stencil_buffer.bo->gpu;
Alyssa Rosenzweig9dd84db2019-03-12 03:32:17 +000066 sfbd->stencil_buffer_enable = MALI_DEPTH_STENCIL_ENABLE;
67 }
68
69 /* Set flags based on what has been cleared, for the SFBD case */
70 /* XXX: What do these flags mean? */
71 int clear_flags = 0x101100;
72
73 if (!(job->clear & ~(PIPE_CLEAR_COLOR | PIPE_CLEAR_DEPTH | PIPE_CLEAR_STENCIL))) {
74 /* On a tiler like this, it's fastest to clear all three buffers at once */
75
76 clear_flags |= MALI_CLEAR_FAST;
77 } else {
78 clear_flags |= MALI_CLEAR_SLOW;
79
80 if (job->clear & PIPE_CLEAR_STENCIL)
81 clear_flags |= MALI_CLEAR_SLOW_STENCIL;
82 }
83
84 sfbd->clear_flags = clear_flags;
85}
86
87static void
88panfrost_sfbd_set_cbuf(
Alyssa Rosenzweiga2d0ea92019-07-10 10:10:31 -070089 struct mali_single_framebuffer *fb,
90 struct pipe_surface *surf)
Alyssa Rosenzweig9dd84db2019-03-12 03:32:17 +000091{
92 struct panfrost_resource *rsrc = pan_resource(surf->texture);
93
Boris Brezillonaa5bc352019-07-02 11:37:40 +020094 signed stride = rsrc->slices[0].stride;
Alyssa Rosenzweig9dd84db2019-03-12 03:32:17 +000095
Alyssa Rosenzweigd47f0902019-03-12 22:01:23 +000096 fb->format = panfrost_sfbd_format(surf);
Alyssa Rosenzweig9dd84db2019-03-12 03:32:17 +000097
Boris Brezillonaa5bc352019-07-02 11:37:40 +020098 if (rsrc->layout == PAN_LINEAR) {
Alyssa Rosenzweig2adf35e2019-05-23 03:01:32 +000099 fb->framebuffer = rsrc->bo->gpu;
Alyssa Rosenzweigd47f0902019-03-12 22:01:23 +0000100 fb->stride = stride;
Alyssa Rosenzweig9dd84db2019-03-12 03:32:17 +0000101 } else {
102 fprintf(stderr, "Invalid render layout\n");
103 assert(0);
104 }
105}
106
Alyssa Rosenzweigd47f0902019-03-12 22:01:23 +0000107/* Creates an SFBD for the FRAGMENT section of the bound framebuffer */
108
109mali_ptr
Alyssa Rosenzweigf9ecca22019-06-14 11:23:24 -0700110panfrost_sfbd_fragment(struct panfrost_context *ctx, bool has_draws)
Alyssa Rosenzweig9dd84db2019-03-12 03:32:17 +0000111{
Alyssa Rosenzweigd47f0902019-03-12 22:01:23 +0000112 struct panfrost_job *job = panfrost_get_job_for_fbo(ctx);
Alyssa Rosenzweigf9ecca22019-06-14 11:23:24 -0700113 struct mali_single_framebuffer fb = panfrost_emit_sfbd(ctx, has_draws);
Alyssa Rosenzweigd47f0902019-03-12 22:01:23 +0000114
115 panfrost_sfbd_clear(job, &fb);
116
117 /* SFBD does not support MRT natively; sanity check */
Alyssa Rosenzweig9dd84db2019-03-12 03:32:17 +0000118 assert(ctx->pipe_framebuffer.nr_cbufs == 1);
Alyssa Rosenzweig2adf35e2019-05-23 03:01:32 +0000119 panfrost_sfbd_set_cbuf(&fb, ctx->pipe_framebuffer.cbufs[0]);
Alyssa Rosenzweig9dd84db2019-03-12 03:32:17 +0000120
121 if (ctx->pipe_framebuffer.zsbuf) {
122 /* TODO */
123 }
Alyssa Rosenzweig9dd84db2019-03-12 03:32:17 +0000124
Alyssa Rosenzweig8c268902019-03-12 23:16:37 +0000125 if (job->requirements & PAN_REQ_MSAA)
Alyssa Rosenzweigd47f0902019-03-12 22:01:23 +0000126 fb.format |= MALI_FRAMEBUFFER_MSAA_A | MALI_FRAMEBUFFER_MSAA_B;
Alyssa Rosenzweig9dd84db2019-03-12 03:32:17 +0000127
Alyssa Rosenzweigd47f0902019-03-12 22:01:23 +0000128 return panfrost_upload_transient(ctx, &fb, sizeof(fb)) | MALI_SFBD;
Alyssa Rosenzweig9dd84db2019-03-12 03:32:17 +0000129}