mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 13:38:06 +02:00
pvr: add device info for BXM-4-64 (36.56.104.183)
Requested by the community [1]. [1] https://gitlab.freedesktop.org/imagination/linux-firmware/-/issues/12 Signed-off-by: Alessio Belle <alessio.belle@imgtec.com> Reviewed-by: Ashish Chauhan <ashish.chauhan@imgtec.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37790>
This commit is contained in:
parent
0dd5db3478
commit
1db1038a61
2 changed files with 114 additions and 0 deletions
|
|
@ -123,4 +123,116 @@ static const struct pvr_device_info pvr_device_info_36_52_104_182 = {
|
||||||
.quirks = pvr_device_quirks_36_52_104_182,
|
.quirks = pvr_device_quirks_36_52_104_182,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#define PVR_DEVICE_IDENT_36_V_104_183 \
|
||||||
|
.device_id = 0x36104183, .series_name = "B-Series", .public_name = "BXM-4-64"
|
||||||
|
|
||||||
|
static const struct pvr_device_features pvr_device_features_36_V_104_183 = {
|
||||||
|
.has_astc = true,
|
||||||
|
.has_common_store_size_in_dwords = true,
|
||||||
|
.has_compute = true,
|
||||||
|
.has_compute_overlap = true,
|
||||||
|
.has_fbcdc_algorithm = true,
|
||||||
|
.has_gpu_multicore_support = true,
|
||||||
|
.has_gs_rta_support = true,
|
||||||
|
.has_ipf_creq_pf = true,
|
||||||
|
.has_isp_max_tiles_in_flight = true,
|
||||||
|
.has_isp_samples_per_pixel = true,
|
||||||
|
.has_max_instances_per_pds_task = true,
|
||||||
|
.has_max_multisample = true,
|
||||||
|
.has_max_partitions = true,
|
||||||
|
.has_max_usc_tasks = true,
|
||||||
|
.has_num_clusters = true,
|
||||||
|
.has_num_raster_pipes = true,
|
||||||
|
.has_paired_tiles = true,
|
||||||
|
.has_pbe2_in_xe = true,
|
||||||
|
.has_pbe_filterable_f16 = true,
|
||||||
|
.has_pbe_yuv = true,
|
||||||
|
.has_pds_ddmadt = true,
|
||||||
|
.has_roguexe = true,
|
||||||
|
.has_screen_size8K = true,
|
||||||
|
.has_simple_internal_parameter_format = true,
|
||||||
|
.has_simple_internal_parameter_format_v2 = true,
|
||||||
|
.has_simple_parameter_format_version = true,
|
||||||
|
.has_slc_cache_line_size_bits = true,
|
||||||
|
.has_tile_size_16x16 = true,
|
||||||
|
.has_tile_size_x = true,
|
||||||
|
.has_tile_size_y = true,
|
||||||
|
.has_tpu_border_colour_enhanced = true,
|
||||||
|
.has_tpu_dm_global_registers = true,
|
||||||
|
.has_tpu_extended_integer_lookup = true,
|
||||||
|
.has_tpu_image_state_v2 = true,
|
||||||
|
.has_tpu_parallel_instances = true,
|
||||||
|
.has_unified_store_depth = true,
|
||||||
|
.has_usc_f16sop_u8 = true,
|
||||||
|
.has_usc_itrsmp = true,
|
||||||
|
.has_usc_itrsmp_enhanced = true,
|
||||||
|
.has_usc_min_output_registers_per_pix = true,
|
||||||
|
.has_usc_pixel_partition_mask = true,
|
||||||
|
.has_usc_slots = true,
|
||||||
|
.has_uvs_banks = true,
|
||||||
|
.has_uvs_pba_entries = true,
|
||||||
|
.has_uvs_vtx_entries = true,
|
||||||
|
.has_vdm_cam_size = true,
|
||||||
|
.has_xpu_max_slaves = true,
|
||||||
|
|
||||||
|
.common_store_size_in_dwords = 1216U * 4U * 4U,
|
||||||
|
.fbcdc_algorithm = 50U,
|
||||||
|
.isp_max_tiles_in_flight = 6U,
|
||||||
|
.isp_samples_per_pixel = 1U,
|
||||||
|
.max_instances_per_pds_task = 32U,
|
||||||
|
.max_multisample = 4U,
|
||||||
|
.max_partitions = 12U,
|
||||||
|
.max_usc_tasks = 156U,
|
||||||
|
.num_clusters = 1U,
|
||||||
|
.num_raster_pipes = 1U,
|
||||||
|
.simple_parameter_format_version = 2U,
|
||||||
|
.slc_cache_line_size_bits = 512U,
|
||||||
|
.tile_size_x = 16U,
|
||||||
|
.tile_size_y = 16U,
|
||||||
|
.tpu_parallel_instances = 4U,
|
||||||
|
.unified_store_depth = 256U,
|
||||||
|
.usc_min_output_registers_per_pix = 2U,
|
||||||
|
.usc_slots = 64U,
|
||||||
|
.uvs_banks = 8U,
|
||||||
|
.uvs_pba_entries = 160U,
|
||||||
|
.uvs_vtx_entries = 144U,
|
||||||
|
.vdm_cam_size = 64U,
|
||||||
|
.xpu_max_slaves = 3U,
|
||||||
|
|
||||||
|
/* Derived features. */
|
||||||
|
.has_s8xe = true,
|
||||||
|
.has_usc_itr_parallel_instances = true,
|
||||||
|
|
||||||
|
.usc_itr_parallel_instances = 16U,
|
||||||
|
};
|
||||||
|
|
||||||
|
static const struct pvr_device_enhancements
|
||||||
|
pvr_device_enhancements_36_56_104_183 = {
|
||||||
|
.has_ern35421 = true,
|
||||||
|
.has_ern38748 = true,
|
||||||
|
.has_ern42307 = true,
|
||||||
|
.has_ern45493 = true,
|
||||||
|
};
|
||||||
|
|
||||||
|
static const struct pvr_device_quirks pvr_device_quirks_36_56_104_183 = {
|
||||||
|
.has_brn44079 = true,
|
||||||
|
.has_brn70165 = true,
|
||||||
|
.has_brn72168 = true,
|
||||||
|
.has_brn72463 = true,
|
||||||
|
.has_brn74056 = true,
|
||||||
|
};
|
||||||
|
|
||||||
|
static const struct pvr_device_info pvr_device_info_36_56_104_183 = {
|
||||||
|
.ident = {
|
||||||
|
PVR_DEVICE_IDENT_36_V_104_183,
|
||||||
|
.b = 36,
|
||||||
|
.v = 56,
|
||||||
|
.n = 104,
|
||||||
|
.c = 183,
|
||||||
|
},
|
||||||
|
.features = pvr_device_features_36_V_104_183,
|
||||||
|
.enhancements = pvr_device_enhancements_36_56_104_183,
|
||||||
|
.quirks = pvr_device_quirks_36_56_104_183,
|
||||||
|
};
|
||||||
|
|
||||||
#endif /* BXM_4_64_H */
|
#endif /* BXM_4_64_H */
|
||||||
|
|
|
||||||
|
|
@ -56,6 +56,7 @@ static const struct pvr_device_info *device_infos[] = {
|
||||||
&pvr_device_info_36_50_54_182,
|
&pvr_device_info_36_50_54_182,
|
||||||
&pvr_device_info_36_52_104_182,
|
&pvr_device_info_36_52_104_182,
|
||||||
&pvr_device_info_36_53_104_796,
|
&pvr_device_info_36_53_104_796,
|
||||||
|
&pvr_device_info_36_56_104_183,
|
||||||
/* clang-format on */
|
/* clang-format on */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -87,6 +88,7 @@ int pvr_device_info_init(struct pvr_device_info *info, uint64_t bvnc)
|
||||||
CASE_PACKED_BVNC_DEVICE_INFO(36, 50, 54, 182);
|
CASE_PACKED_BVNC_DEVICE_INFO(36, 50, 54, 182);
|
||||||
CASE_PACKED_BVNC_DEVICE_INFO(36, 52, 104, 182);
|
CASE_PACKED_BVNC_DEVICE_INFO(36, 52, 104, 182);
|
||||||
CASE_PACKED_BVNC_DEVICE_INFO(36, 53, 104, 796);
|
CASE_PACKED_BVNC_DEVICE_INFO(36, 53, 104, 796);
|
||||||
|
CASE_PACKED_BVNC_DEVICE_INFO(36, 56, 104, 183);
|
||||||
}
|
}
|
||||||
|
|
||||||
#undef CASE_PACKED_BVNC_DEVICE_INFO
|
#undef CASE_PACKED_BVNC_DEVICE_INFO
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue