X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fgallium%2Fdrivers%2Fpanfrost%2Fpan_context.h;h=c294195b4b5b9ba7efc1f2a0d4116a5446170608;hb=204a3bb816fe6382ac14ac06a2395f4afdded43e;hp=e3dc07059b5a1c5e7a77ef1ed1cb9ab9cad2ef56;hpb=0e1c5cc78fe24fb9620cac7bdcf7e927ab042ff8;p=mesa.git diff --git a/src/gallium/drivers/panfrost/pan_context.h b/src/gallium/drivers/panfrost/pan_context.h index e3dc07059b5..c294195b4b5 100644 --- a/src/gallium/drivers/panfrost/pan_context.h +++ b/src/gallium/drivers/panfrost/pan_context.h @@ -31,6 +31,7 @@ #include #include "pan_resource.h" #include "pan_job.h" +#include "pan_blend.h" #include "pipe/p_compiler.h" #include "pipe/p_config.h" @@ -47,7 +48,6 @@ /* Forward declare to avoid extra header dep */ struct prim_convert_context; -#define MAX_DRAW_CALLS 4096 #define MAX_VARYINGS 4096 //#define PAN_DIRTY_CLEAR (1 << 0) @@ -68,9 +68,9 @@ struct prim_convert_context; lval &= ~(bit); struct panfrost_constant_buffer { - bool dirty; - size_t size; - void *buffer; + struct pipe_constant_buffer cb[PIPE_MAX_CONSTANT_BUFFERS]; + uint32_t enabled_mask; + uint32_t dirty_mask; }; struct panfrost_query { @@ -87,29 +87,13 @@ struct panfrost_fence { int fd; }; -#define PANFROST_MAX_TRANSIENT_ENTRIES 64 - -struct panfrost_transient_pool { - /* Memory blocks in the pool */ - struct panfrost_memory_entry *entries[PANFROST_MAX_TRANSIENT_ENTRIES]; - - /* Number of entries we own */ - unsigned entry_count; - - /* Current entry that we are writing to, zero-indexed, strictly less than entry_count */ - unsigned entry_index; - - /* Number of bytes into the current entry we are */ - off_t entry_offset; - - /* Entry size (all entries must be homogenous) */ - size_t entry_size; -}; - struct panfrost_context { /* Gallium context */ struct pipe_context base; + /* Compiler context */ + struct midgard_screen compiler; + /* Bound job and map of panfrost_job_key to jobs */ struct panfrost_job *job; struct hash_table *jobs; @@ -122,19 +106,12 @@ struct panfrost_context { struct pipe_framebuffer_state pipe_framebuffer; - /* The number of concurrent FBOs allowed depends on the number of pools - * used; pools are ringed for parallelism opportunities */ - - struct panfrost_transient_pool transient_pools[2]; - int cmdstream_i; - struct panfrost_memory cmdstream_persistent; struct panfrost_memory shaders; struct panfrost_memory scratchpad; struct panfrost_memory tiler_heap; - struct panfrost_memory varying_mem; - struct panfrost_memory misc_0; - struct panfrost_memory misc_1; + struct panfrost_memory tiler_polygon_list; + struct panfrost_memory tiler_dummy; struct panfrost_memory depth_stencil_buffer; struct panfrost_query *occlusion_query; @@ -149,31 +126,17 @@ struct panfrost_context { struct mali_shader_meta fragment_shader_core; - /* A frame is composed of a starting set value job, a number of vertex - * and tiler jobs, linked to the fragment job at the end. See the - * presentations for more information how this works */ - - unsigned draw_count; - - mali_ptr set_value_job; - mali_ptr vertex_jobs[MAX_DRAW_CALLS]; - mali_ptr tiler_jobs[MAX_DRAW_CALLS]; - - struct mali_job_descriptor_header *u_set_value_job; - struct mali_job_descriptor_header *u_vertex_jobs[MAX_DRAW_CALLS]; - struct mali_job_descriptor_header *u_tiler_jobs[MAX_DRAW_CALLS]; - - unsigned vertex_job_count; - unsigned tiler_job_count; - /* Per-draw Dirty flags are setup like any other driver */ int dirty; unsigned vertex_count; + unsigned instance_count; - union mali_attr attributes[PIPE_MAX_ATTRIBS]; + /* If instancing is enabled, vertex count padded for instance; if + * it is disabled, just equal to plain vertex count */ + unsigned padded_count; - unsigned varying_height; + union mali_attr attributes[PIPE_MAX_ATTRIBS]; struct mali_single_framebuffer vt_framebuffer_sfbd; struct bifrost_framebuffer vt_framebuffer_mfbd; @@ -202,6 +165,15 @@ struct panfrost_context { struct primconvert_context *primconvert; struct blitter_context *blitter; + /* Blitting the wallpaper (the old contents of the framebuffer back to + * itself) uses a dedicated u_blitter instance versus general blit() + * callbacks from Gallium, as the blit() callback can trigger + * wallpapering without Gallium realising, which in turns u_blitter + * errors due to unsupported reucrsion */ + + struct blitter_context *blitter_wallpaper; + struct panfrost_job *wallpaper_batch; + struct panfrost_blend_state *blend; struct pipe_viewport_state pipe_viewport; @@ -213,14 +185,7 @@ struct panfrost_context { /* True for t6XX, false for t8xx. */ bool is_t6xx; - /* If set, we'll require the use of single render-target framebuffer - * descriptors (SFBD), for older hardware -- specifically,