From e60e0c96ba755f2fdc0ea4ac1780781fd947cb4e Mon Sep 17 00:00:00 2001 From: Frank Binns Date: Thu, 12 Sep 2024 09:44:15 +0100 Subject: [PATCH] pvr: add device info for BXE-2-32 (36.29.52.182) Requested by the community [1]. [1] https://gitlab.freedesktop.org/imagination/linux-firmware/-/issues/2 Signed-off-by: Frank Binns Reviewed-by: Ashish Chauhan Part-of: --- src/imagination/common/device_info/bxe-2-32.h | 123 ++++++++++++++++++ src/imagination/common/pvr_device_info.c | 3 + 2 files changed, 126 insertions(+) create mode 100644 src/imagination/common/device_info/bxe-2-32.h diff --git a/src/imagination/common/device_info/bxe-2-32.h b/src/imagination/common/device_info/bxe-2-32.h new file mode 100644 index 00000000000..6a07d51b815 --- /dev/null +++ b/src/imagination/common/device_info/bxe-2-32.h @@ -0,0 +1,123 @@ +/* + * Copyright © 2025 Imagination Technologies Ltd. + * + * SPDX-License-Identifier: MIT + */ + +#ifndef BXE_2_32_H +#define BXE_2_32_H + +#include + +#include "pvr_device_info.h" + +#define PVR_DEVICE_IDENT_36_V_52_182 \ + .device_id = 0x36052182, .series_name = "B-Series", .public_name = "BXE-2-32" + +static const struct pvr_device_features pvr_device_features_36_V_52_182 = { + .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_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 = 832U * 4U * 4U, + .fbcdc_algorithm = 50U, + .isp_max_tiles_in_flight = 2U, + .isp_samples_per_pixel = 1U, + .max_instances_per_pds_task = 32U, + .max_multisample = 4U, + .max_partitions = 8U, + .max_usc_tasks = 72U, + .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 = 2U, + .unified_store_depth = 128U, + .usc_min_output_registers_per_pix = 2U, + .usc_slots = 32U, + .uvs_banks = 4U, + .uvs_pba_entries = 320U, + .uvs_vtx_entries = 288U, + .vdm_cam_size = 64U, + .xpu_max_slaves = 3U, + + .has_s8xe = true, + .has_usc_itr_parallel_instances = true, + + .usc_itr_parallel_instances = 8U, +}; + +static const struct pvr_device_enhancements + pvr_device_enhancements_36_29_52_182 = { + .has_ern35421 = true, + .has_ern38748 = true, + .has_ern42307 = true, + .has_ern45493 = true, + }; + +static const struct pvr_device_quirks pvr_device_quirks_36_29_52_182 = { + .has_brn70165 = true, + .has_brn72168 = true, + .has_brn72463 = true, + .has_brn74056 = true, +}; + +static const struct pvr_device_info pvr_device_info_36_29_52_182 = { + .ident = { + PVR_DEVICE_IDENT_36_V_52_182, + .b = 36, + .v = 29, + .n = 52, + .c = 182, + }, + .features = pvr_device_features_36_V_52_182, + .enhancements = pvr_device_enhancements_36_29_52_182, + .quirks = pvr_device_quirks_36_29_52_182, +}; + +#endif /* BXE_2_32_H */ diff --git a/src/imagination/common/pvr_device_info.c b/src/imagination/common/pvr_device_info.c index 59e784906ce..135e7d0bf06 100644 --- a/src/imagination/common/pvr_device_info.c +++ b/src/imagination/common/pvr_device_info.c @@ -35,6 +35,7 @@ #include "device_info/gx6250.h" #include "device_info/gx6650.h" #include "device_info/axe-1-16m.h" +#include "device_info/bxe-2-32.h" #include "device_info/bxe-4-32.h" #include "device_info/bxm-4-64.h" #include "device_info/bxs-4-64.h" @@ -48,6 +49,7 @@ static const struct pvr_device_info *device_infos[] = { &pvr_device_info_4_46_6_62, &pvr_device_info_5_9_1_46, &pvr_device_info_33_15_11_3, + &pvr_device_info_36_29_52_182, &pvr_device_info_36_50_54_182, &pvr_device_info_36_52_104_182, &pvr_device_info_36_53_104_796, @@ -76,6 +78,7 @@ int pvr_device_info_init(struct pvr_device_info *info, uint64_t bvnc) CASE_PACKED_BVNC_DEVICE_INFO(4, 46, 6, 62); CASE_PACKED_BVNC_DEVICE_INFO(5, 9, 1, 46); CASE_PACKED_BVNC_DEVICE_INFO(33, 15, 11, 3); + CASE_PACKED_BVNC_DEVICE_INFO(36, 29, 52, 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, 53, 104, 796);