radv: add mipmaps support for DCC decompression on compute
[mesa.git] / src / amd / common / ac_gpu_info.h
index 8a9721750a6b5774b6e65d7c6a45b08165b45c91..2c67cec3ed5692f4610c11ecd979f3f8f833c5a2 100644 (file)
@@ -47,6 +47,9 @@ struct radeon_info {
        uint32_t                    pci_func;
 
        /* Device info. */
+       const char                  *name;
+       const char                  *marketing_name;
+       bool                        is_pro_graphics;
        uint32_t                    pci_id;
        enum radeon_family          family;
        enum chip_class             chip_class;
@@ -55,6 +58,12 @@ struct radeon_info {
        uint32_t                    clock_crystal_freq;
        uint32_t                    tcc_cache_line_size;
 
+       /* There are 2 display DCC codepaths, because display expects unaligned DCC. */
+       /* Disable RB and pipe alignment to skip the retile blit. (1 RB chips only) */
+       bool                        use_display_dcc_unaligned;
+       /* Allocate both aligned and unaligned DCC and use the retile blit. */
+       bool                        use_display_dcc_with_retile_blit;
+
        /* Memory info. */
        uint32_t                    pte_fragment_size;
        uint32_t                    gart_page_size;
@@ -86,10 +95,11 @@ struct radeon_info {
        uint32_t                    vce_fw_version;
        uint32_t                    vce_harvest_config;
 
-       /* Kernel info. */
+       /* Kernel & winsys capabilities. */
        uint32_t                    drm_major; /* version */
        uint32_t                    drm_minor;
        uint32_t                    drm_patchlevel;
+       bool                        is_amdgpu;
        bool                        has_userptr;
        bool                        has_syncobj;
        bool                        has_syncobj_wait_for_submit;
@@ -97,11 +107,27 @@ struct radeon_info {
        bool                        has_ctx_priority;
        bool                        has_local_buffers;
        bool                        kernel_flushes_hdp_before_ib;
+       bool                        htile_cmask_support_1d_tiling;
+       bool                        si_TA_CS_BC_BASE_ADDR_allowed;
+       bool                        has_bo_metadata;
+       bool                        has_gpu_reset_status_query;
+       bool                        has_eqaa_surface_allocator;
+       bool                        has_format_bc1_through_bc7;
+       bool                        kernel_flushes_tc_l2_after_ib;
+       bool                        has_indirect_compute_dispatch;
+       bool                        has_unaligned_shader_loads;
+       bool                        has_sparse_vm_mappings;
+       bool                        has_2d_tiling;
+       bool                        has_read_registers_query;
+       bool                        has_gds_ordered_append;
+       bool                        has_scheduled_fence_dependency;
 
        /* Shader cores. */
        uint32_t                    r600_max_quad_pipes; /* wave size / 16 */
        uint32_t                    max_shader_clock;
        uint32_t                    num_good_compute_units;
+       uint32_t                    num_good_cu_per_sh;
+       uint32_t                    num_tcc_blocks;
        uint32_t                    max_se; /* shader engines */
        uint32_t                    max_sh_per_se; /* shader arrays per shader engine */
 
@@ -134,7 +160,8 @@ void ac_print_gpu_info(struct radeon_info *info);
 int ac_get_gs_table_depth(enum chip_class chip_class, enum radeon_family family);
 void ac_get_raster_config(struct radeon_info *info,
                          uint32_t *raster_config_p,
-                         uint32_t *raster_config_1_p);
+                         uint32_t *raster_config_1_p,
+                         uint32_t *se_tile_repeat_p);
 void ac_get_harvested_configs(struct radeon_info *info,
                              unsigned raster_config,
                              unsigned *cik_raster_config_1_p,
@@ -155,6 +182,12 @@ static inline unsigned ac_get_max_simd_waves(enum radeon_family family)
        }
 }
 
+static inline uint32_t
+ac_get_num_physical_sgprs(enum chip_class chip_class)
+{
+       return chip_class >= GFX8 ? 800 : 512;
+}
+
 #ifdef __cplusplus
 }
 #endif