broadcom: only support v42 and v71

Acked-by: Emma Anholt <emma@anholt.net>
Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25851>
This commit is contained in:
Alejandro Piñeiro
2023-10-14 13:27:15 +02:00
parent dcc4e1b4d7
commit 85f26828fe
47 changed files with 210 additions and 1597 deletions
-2
View File
@@ -68,8 +68,6 @@ v3d_get_device_info(int fd, struct v3d_device_info* devinfo, v3d_ioctl_fun drm_i
devinfo->has_accumulators = devinfo->ver < 71;
switch (devinfo->ver) {
case 33:
case 41:
case 42:
case 71:
break;
-6
View File
@@ -32,12 +32,6 @@
#if (V3D_VERSION == 21)
# define V3DX(x) V3D21_##x
# define v3dX(x) v3d21_##x
#elif (V3D_VERSION == 33)
# define V3DX(x) V3D33_##x
# define v3dX(x) v3d33_##x
#elif (V3D_VERSION == 41)
# define V3DX(x) V3D41_##x
# define v3dX(x) v3d41_##x
#elif (V3D_VERSION == 42)
# define V3DX(x) V3D42_##x
# define v3dX(x) v3d42_##x
@@ -130,7 +130,7 @@ static const char *v3d_performance_counters[][3] = {
{"QPU", "QPU-stalls-other", "[QPU] Stalled qcycles waiting for any other reason (vary/W/Z)"},
};
#elif (V3D_VERSION >= 41)
#elif (V3D_VERSION >= 42)
static const char *v3d_performance_counters[][3] = {
{"FEP", "FEP-valid-primitives-no-rendered-pixels", "[FEP] Valid primitives that result in no rendered pixels, for all rendered tiles"},