2019-03-12 13:49:26 -06:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2017-2019 Lima Project
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sub license,
|
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
|
|
|
* of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef H_LIMA_RESOURCE
|
|
|
|
|
#define H_LIMA_RESOURCE
|
|
|
|
|
|
|
|
|
|
#include "pipe/p_state.h"
|
|
|
|
|
|
|
|
|
|
/* max texture size is 4096x4096 */
|
|
|
|
|
#define LIMA_MAX_MIP_LEVELS 13
|
2021-05-01 22:45:30 -07:00
|
|
|
#define LAYOUT_CONVERT_THRESHOLD 8
|
2019-03-12 13:49:26 -06:00
|
|
|
|
|
|
|
|
struct lima_screen;
|
2020-03-03 22:05:52 -08:00
|
|
|
struct panfrost_minmax_cache;
|
2019-03-12 13:49:26 -06:00
|
|
|
|
|
|
|
|
struct lima_resource_level {
|
|
|
|
|
uint32_t width;
|
|
|
|
|
uint32_t stride;
|
|
|
|
|
uint32_t offset;
|
2019-09-29 23:20:45 +02:00
|
|
|
uint32_t layer_stride;
|
2019-03-12 13:49:26 -06:00
|
|
|
};
|
|
|
|
|
|
2019-06-30 21:44:12 +08:00
|
|
|
struct lima_damage_region {
|
|
|
|
|
struct pipe_scissor_state *region;
|
2019-08-25 19:04:01 +08:00
|
|
|
struct pipe_scissor_state bound;
|
2019-06-30 21:44:12 +08:00
|
|
|
unsigned num_region;
|
|
|
|
|
bool aligned;
|
|
|
|
|
};
|
|
|
|
|
|
2019-03-12 13:49:26 -06:00
|
|
|
struct lima_resource {
|
|
|
|
|
struct pipe_resource base;
|
|
|
|
|
|
2019-06-30 21:44:12 +08:00
|
|
|
struct lima_damage_region damage;
|
2019-03-12 13:49:26 -06:00
|
|
|
struct renderonly_scanout *scanout;
|
|
|
|
|
struct lima_bo *bo;
|
2020-03-03 22:05:52 -08:00
|
|
|
struct panfrost_minmax_cache *index_cache;
|
lima: wire up MSAA 4x support
Utgard supports MSAA 4x, so wire it up.
RSW bits were already REd by Luc, the only remaining part was storing
non-resolved buffers, reloading them (including for depth/stencil) and
doing MSAA resolve.
To store non-resolved buffer we need to set mrt_pitch and mrt_bits
registers in WB, and to resolve non-resolved buffer we need to reload
it into individual samples and then write out with mrt_bits = 0, it's
now done by lima blitter.
We also need to do resolve on transfer_map() of multi-sampled buffers,
so utilize u_transfer_helper for that.
As a side fix, it turns out that our wb_reg definition wasn't correct,
'zero' isn't always zero, it's set if we need to swap channels, and
it goes before mrt_bits. mrt_bits actually enables multiple MRTs,
so this commit renames 'zero' to 'flags' and changes its position.
If mrt_bits == 0 and MSAA is enabled, GPU does resolve
in place, to expose this functionality we set PIPE_CAP_SURFACE_SAMPLE_COUNT.
Fixes dEQP-GLES2.functional.multisample.*
Reviewed-by: Erico Nunes <nunes.erico@gmail.com>
Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13963>
2021-11-25 23:56:41 -08:00
|
|
|
uint32_t mrt_pitch;
|
2019-03-12 13:49:26 -06:00
|
|
|
bool tiled;
|
2021-05-01 22:45:30 -07:00
|
|
|
bool modifier_constant;
|
|
|
|
|
unsigned full_updates;
|
2019-03-12 13:49:26 -06:00
|
|
|
|
|
|
|
|
struct lima_resource_level levels[LIMA_MAX_MIP_LEVELS];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct lima_surface {
|
|
|
|
|
struct pipe_surface base;
|
|
|
|
|
int tiled_w, tiled_h;
|
2020-02-07 00:53:46 +08:00
|
|
|
unsigned reload;
|
2019-03-12 13:49:26 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct lima_transfer {
|
|
|
|
|
struct pipe_transfer base;
|
|
|
|
|
void *staging;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static inline struct lima_resource *
|
|
|
|
|
lima_resource(struct pipe_resource *res)
|
|
|
|
|
{
|
|
|
|
|
return (struct lima_resource *)res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline struct lima_surface *
|
|
|
|
|
lima_surface(struct pipe_surface *surf)
|
|
|
|
|
{
|
|
|
|
|
return (struct lima_surface *)surf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline struct lima_transfer *
|
|
|
|
|
lima_transfer(struct pipe_transfer *trans)
|
|
|
|
|
{
|
|
|
|
|
return (struct lima_transfer *)trans;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lima_resource_screen_init(struct lima_screen *screen);
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lima_resource_context_init(struct lima_context *ctx);
|
|
|
|
|
|
|
|
|
|
#endif
|