Path: blob/21.2-virgl/src/amd/common/ac_gpu_info.h
7160 views
/*1* Copyright © 2017 Advanced Micro Devices, Inc.2*3* Permission is hereby granted, free of charge, to any person obtaining4* a copy of this software and associated documentation files (the5* "Software"), to deal in the Software without restriction, including6* without limitation the rights to use, copy, modify, merge, publish,7* distribute, sub license, and/or sell copies of the Software, and to8* permit persons to whom the Software is furnished to do so, subject to9* the following conditions:10*11* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,12* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES13* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND14* NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS15* AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER16* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,17* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE18* USE OR OTHER DEALINGS IN THE SOFTWARE.19*20* The above copyright notice and this permission notice (including the21* next paragraph) shall be included in all copies or substantial portions22* of the Software.23*/2425#ifndef AC_GPU_INFO_H26#define AC_GPU_INFO_H2728#include "amd_family.h"2930#include <stdbool.h>31#include <stddef.h>32#include <stdint.h>33#include <stdio.h>3435#ifdef __cplusplus36extern "C" {37#endif3839struct amdgpu_gpu_info;4041struct radeon_info {42/* PCI info: domain:bus:dev:func */43uint32_t pci_domain;44uint32_t pci_bus;45uint32_t pci_dev;46uint32_t pci_func;4748/* Device info. */49const char *name;50const char *marketing_name;51bool is_pro_graphics;52uint32_t pci_id;53uint32_t pci_rev_id;54enum radeon_family family;55enum chip_class chip_class;56uint32_t family_id;57uint32_t chip_external_rev;58uint32_t clock_crystal_freq;5960/* Features. */61bool has_graphics; /* false if the chip is compute-only */62uint32_t num_rings[NUM_RING_TYPES];63uint32_t ib_pad_dw_mask[NUM_RING_TYPES];64bool has_clear_state;65bool has_distributed_tess;66bool has_dcc_constant_encode;67bool has_rbplus; /* if RB+ registers exist */68bool rbplus_allowed; /* if RB+ is allowed */69bool has_load_ctx_reg_pkt;70bool has_out_of_order_rast;71bool has_packed_math_16bit;72bool cpdma_prefetch_writes_memory;73bool has_gfx9_scissor_bug;74bool has_tc_compat_zrange_bug;75bool has_msaa_sample_loc_bug;76bool has_ls_vgpr_init_bug;77bool has_zero_index_buffer_bug;78bool has_image_load_dcc_bug;79bool has_two_planes_iterate256_bug;80bool has_vgt_flush_ngg_legacy_bug;81bool has_cs_regalloc_hang_bug;82bool has_32bit_predication;83bool has_3d_cube_border_color_mipmap;8485/* Display features. */86/* There are 2 display DCC codepaths, because display expects unaligned DCC. */87/* Disable RB and pipe alignment to skip the retile blit. (1 RB chips only) */88bool use_display_dcc_unaligned;89/* Allocate both aligned and unaligned DCC and use the retile blit. */90bool use_display_dcc_with_retile_blit;9192/* Memory info. */93uint32_t pte_fragment_size;94uint32_t gart_page_size;95uint32_t gart_size_kb;96uint32_t vram_size_kb;97uint64_t gart_size;98uint64_t vram_size;99uint64_t vram_vis_size;100uint32_t vram_bit_width;101uint32_t vram_type;102unsigned gds_size;103unsigned gds_gfx_partition_size;104uint64_t max_alloc_size;105uint32_t min_alloc_size;106uint32_t address32_hi;107bool has_dedicated_vram;108bool all_vram_visible;109bool smart_access_memory;110bool has_l2_uncached;111bool r600_has_virtual_memory;112uint32_t max_tcc_blocks;113uint32_t num_tcc_blocks;114uint32_t tcc_cache_line_size;115bool tcc_rb_non_coherent; /* whether L2 inv is needed for render->texture transitions */116unsigned pc_lines;117uint32_t lds_size_per_workgroup;118uint32_t lds_alloc_granularity;119uint32_t lds_encode_granularity;120uint32_t max_memory_clock;121uint32_t ce_ram_size;122uint32_t l1_cache_size;123uint32_t l2_cache_size;124125/* CP info. */126bool gfx_ib_pad_with_type2;127unsigned ib_alignment; /* both start and size alignment */128uint32_t me_fw_version;129uint32_t me_fw_feature;130uint32_t pfp_fw_version;131uint32_t pfp_fw_feature;132uint32_t ce_fw_version;133uint32_t ce_fw_feature;134135/* Multimedia info. */136struct {137bool uvd_decode;138bool vcn_decode;139bool jpeg_decode;140bool vce_encode;141bool uvd_encode;142bool vcn_encode;143} has_video_hw;144145uint32_t uvd_fw_version;146uint32_t vce_fw_version;147uint32_t vce_harvest_config;148struct video_caps_info {149struct {150uint32_t valid;151uint32_t max_width;152uint32_t max_height;153uint32_t max_pixels_per_frame;154uint32_t max_level;155uint32_t pad;156} codec_info[8]; /* the number of available codecs */157} dec_caps, enc_caps;158159/* Kernel & winsys capabilities. */160uint32_t drm_major; /* version */161uint32_t drm_minor;162uint32_t drm_patchlevel;163bool is_amdgpu;164bool has_userptr;165bool has_syncobj;166bool has_timeline_syncobj;167bool has_fence_to_handle;168bool has_local_buffers;169bool kernel_flushes_hdp_before_ib;170bool htile_cmask_support_1d_tiling;171bool si_TA_CS_BC_BASE_ADDR_allowed;172bool has_bo_metadata;173bool has_gpu_reset_status_query;174bool has_eqaa_surface_allocator;175bool has_format_bc1_through_bc7;176bool kernel_flushes_tc_l2_after_ib;177bool has_indirect_compute_dispatch;178bool has_unaligned_shader_loads;179bool has_sparse_vm_mappings;180bool has_2d_tiling;181bool has_read_registers_query;182bool has_gds_ordered_append;183bool has_scheduled_fence_dependency;184/* Whether SR-IOV is enabled or amdgpu.mcbp=1 was set on the kernel command line. */185bool mid_command_buffer_preemption_enabled;186bool has_tmz_support;187bool kernel_has_modifiers;188189/* Shader cores. */190uint32_t cu_mask[4][2];191uint32_t r600_max_quad_pipes; /* wave size / 16 */192uint32_t max_shader_clock;193uint32_t num_good_compute_units;194uint32_t max_good_cu_per_sa;195uint32_t min_good_cu_per_sa; /* min != max if SAs have different # of CUs */196uint32_t max_se; /* number of shader engines incl. disabled ones */197uint32_t num_se; /* number of enabled shader engines */198uint32_t max_sa_per_se; /* shader arrays per shader engine */199uint32_t max_wave64_per_simd;200uint32_t num_physical_sgprs_per_simd;201uint32_t num_physical_wave64_vgprs_per_simd;202uint32_t num_simd_per_compute_unit;203uint32_t min_sgpr_alloc;204uint32_t max_sgpr_alloc;205uint32_t sgpr_alloc_granularity;206uint32_t min_wave64_vgpr_alloc;207uint32_t max_vgpr_alloc;208uint32_t wave64_vgpr_alloc_granularity;209bool use_late_alloc; /* deprecated: remove this after radv switches to ac_compute_late_alloc */210211/* Render backends (color + depth blocks). */212uint32_t r300_num_gb_pipes;213uint32_t r300_num_z_pipes;214uint32_t r600_gb_backend_map; /* R600 harvest config */215bool r600_gb_backend_map_valid;216uint32_t r600_num_banks;217uint32_t mc_arb_ramcfg;218uint32_t gb_addr_config;219uint32_t pa_sc_tile_steering_override; /* CLEAR_STATE also sets this */220uint32_t max_render_backends; /* number of render backends incl. disabled ones */221uint32_t num_tile_pipes; /* pipe count from PIPE_CONFIG */222uint32_t pipe_interleave_bytes;223uint32_t enabled_rb_mask; /* GCN harvest config */224uint64_t max_alignment; /* from addrlib */225uint32_t pbb_max_alloc_count;226227/* Tile modes. */228uint32_t si_tile_mode_array[32];229uint32_t cik_macrotile_mode_array[16];230};231232bool ac_query_gpu_info(int fd, void *dev_p, struct radeon_info *info,233struct amdgpu_gpu_info *amdinfo);234235void ac_compute_driver_uuid(char *uuid, size_t size);236237void ac_compute_device_uuid(struct radeon_info *info, char *uuid, size_t size);238void ac_print_gpu_info(struct radeon_info *info, FILE *f);239int ac_get_gs_table_depth(enum chip_class chip_class, enum radeon_family family);240void ac_get_raster_config(struct radeon_info *info, uint32_t *raster_config_p,241uint32_t *raster_config_1_p, uint32_t *se_tile_repeat_p);242void ac_get_harvested_configs(struct radeon_info *info, unsigned raster_config,243unsigned *cik_raster_config_1_p, unsigned *raster_config_se);244unsigned ac_get_compute_resource_limits(struct radeon_info *info, unsigned waves_per_threadgroup,245unsigned max_waves_per_sh, unsigned threadgroups_per_cu);246247#ifdef __cplusplus248}249#endif250251#endif /* AC_GPU_INFO_H */252253254