2017-05-11 10:19:26 +02:00
|
|
|
/*
|
|
|
|
* Copyright © 2017 Advanced Micro Devices, Inc.
|
|
|
|
*
|
|
|
|
* 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 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 COPYRIGHT HOLDERS, AUTHORS
|
|
|
|
* AND/OR ITS SUPPLIERS 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.
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
|
|
* of the Software.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AC_GPU_INFO_H
|
|
|
|
#define AC_GPU_INFO_H
|
|
|
|
|
2017-07-12 18:45:25 -04:00
|
|
|
#include <stddef.h>
|
2017-06-16 19:10:25 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
2017-05-11 10:19:26 +02:00
|
|
|
#include "amd_family.h"
|
|
|
|
|
2017-05-13 22:59:19 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2017-05-29 14:50:47 +01:00
|
|
|
/* Prior to C11 the following may trigger a typedef redeclaration warning */
|
2017-06-16 19:10:25 +01:00
|
|
|
typedef struct amdgpu_device *amdgpu_device_handle;
|
2017-05-29 14:50:47 +01:00
|
|
|
struct amdgpu_gpu_info;
|
|
|
|
|
2017-05-11 10:19:26 +02:00
|
|
|
struct radeon_info {
|
|
|
|
/* PCI info: domain:bus:dev:func */
|
|
|
|
uint32_t pci_domain;
|
|
|
|
uint32_t pci_bus;
|
|
|
|
uint32_t pci_dev;
|
|
|
|
uint32_t pci_func;
|
|
|
|
|
|
|
|
/* Device info. */
|
|
|
|
uint32_t pci_id;
|
|
|
|
enum radeon_family family;
|
|
|
|
enum chip_class chip_class;
|
2017-05-23 18:40:18 +02:00
|
|
|
uint32_t pte_fragment_size;
|
2017-05-11 10:19:26 +02:00
|
|
|
uint32_t gart_page_size;
|
|
|
|
uint64_t gart_size;
|
|
|
|
uint64_t vram_size;
|
|
|
|
uint64_t vram_vis_size;
|
|
|
|
uint64_t max_alloc_size;
|
|
|
|
uint32_t min_alloc_size;
|
|
|
|
bool has_dedicated_vram;
|
|
|
|
bool has_virtual_memory;
|
|
|
|
bool gfx_ib_pad_with_type2;
|
2017-04-17 12:14:00 -04:00
|
|
|
bool has_hw_decode;
|
2017-05-12 01:04:56 +02:00
|
|
|
uint32_t num_sdma_rings;
|
|
|
|
uint32_t num_compute_rings;
|
2017-05-11 10:19:26 +02:00
|
|
|
uint32_t uvd_fw_version;
|
|
|
|
uint32_t vce_fw_version;
|
|
|
|
uint32_t me_fw_version;
|
2017-08-26 00:33:14 +02:00
|
|
|
uint32_t me_fw_feature;
|
2017-05-11 10:19:26 +02:00
|
|
|
uint32_t pfp_fw_version;
|
2017-08-26 00:33:14 +02:00
|
|
|
uint32_t pfp_fw_feature;
|
2017-05-11 10:19:26 +02:00
|
|
|
uint32_t ce_fw_version;
|
2017-08-26 00:33:14 +02:00
|
|
|
uint32_t ce_fw_feature;
|
2017-05-11 10:19:26 +02:00
|
|
|
uint32_t vce_harvest_config;
|
|
|
|
uint32_t clock_crystal_freq;
|
|
|
|
uint32_t tcc_cache_line_size;
|
|
|
|
|
|
|
|
/* Kernel info. */
|
|
|
|
uint32_t drm_major; /* version */
|
|
|
|
uint32_t drm_minor;
|
|
|
|
uint32_t drm_patchlevel;
|
|
|
|
bool has_userptr;
|
2017-06-05 01:54:52 +01:00
|
|
|
bool has_syncobj;
|
2017-09-12 20:06:37 +02:00
|
|
|
bool has_sync_file;
|
2017-10-20 18:02:16 -04:00
|
|
|
bool has_ctx_priority;
|
2017-05-11 10:19:26 +02:00
|
|
|
|
|
|
|
/* Shader cores. */
|
|
|
|
uint32_t r600_max_quad_pipes; /* wave size / 16 */
|
|
|
|
uint32_t max_shader_clock;
|
|
|
|
uint32_t num_good_compute_units;
|
|
|
|
uint32_t max_se; /* shader engines */
|
|
|
|
uint32_t max_sh_per_se; /* shader arrays per shader engine */
|
|
|
|
|
|
|
|
/* Render backends (color + depth blocks). */
|
|
|
|
uint32_t r300_num_gb_pipes;
|
|
|
|
uint32_t r300_num_z_pipes;
|
|
|
|
uint32_t r600_gb_backend_map; /* R600 harvest config */
|
|
|
|
bool r600_gb_backend_map_valid;
|
|
|
|
uint32_t r600_num_banks;
|
|
|
|
uint32_t num_render_backends;
|
|
|
|
uint32_t num_tile_pipes; /* pipe count from PIPE_CONFIG */
|
|
|
|
uint32_t pipe_interleave_bytes;
|
|
|
|
uint32_t enabled_rb_mask; /* GCN harvest config */
|
|
|
|
|
2017-07-09 20:34:04 +01:00
|
|
|
uint64_t max_alignment; /* from addrlib */
|
2017-05-11 10:19:26 +02:00
|
|
|
/* Tile modes. */
|
|
|
|
uint32_t si_tile_mode_array[32];
|
|
|
|
uint32_t cik_macrotile_mode_array[16];
|
|
|
|
};
|
|
|
|
|
2017-05-11 14:14:06 +02:00
|
|
|
bool ac_query_gpu_info(int fd, amdgpu_device_handle dev,
|
|
|
|
struct radeon_info *info,
|
|
|
|
struct amdgpu_gpu_info *amdinfo);
|
|
|
|
|
2017-07-12 18:45:25 -04:00
|
|
|
void ac_compute_driver_uuid(char *uuid, size_t size);
|
|
|
|
|
|
|
|
void ac_compute_device_uuid(struct radeon_info *info, char *uuid, size_t size);
|
|
|
|
|
2017-05-13 22:59:19 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-05-11 10:19:26 +02:00
|
|
|
#endif /* AC_GPU_INFO_H */
|