intel/dev: also test crocus & i915 pci-ids

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12981>
This commit is contained in:
Lionel Landwerlin 2021-11-05 13:06:37 +02:00 committed by Marge Bot
parent 361b3fee3c
commit c572adceaa
2 changed files with 10 additions and 0 deletions

View File

@ -88,6 +88,11 @@ static const struct intel_device_info intel_device_info_gfx3 = {
.ver = 3,
.platform = INTEL_PLATFORM_GFX3,
.simulator_id = -1,
.num_slices = 1,
.num_subslices = { 1, },
.num_eu_per_subslice = 8,
.num_thread_per_eu = 4,
.timestamp_frequency = 12500000,
.cs_prefetch_size = 512,
};

View File

@ -14,8 +14,13 @@ main(int argc, char *argv[])
} chipsets[] = {
#undef CHIPSET
#define CHIPSET(id, family, family_str, str_name) { .pci_id = id, .name = str_name, },
#include "pci_ids/crocus_pci_ids.h"
#include "pci_ids/i965_pci_ids.h"
#include "pci_ids/iris_pci_ids.h"
#undef CHIPSET
#define CHIPSET(id, fam_str, str_name) { .pci_id = id, .name = str_name, },
#include "pci_ids/i915_pci_ids.h"
#undef CHIPSET
};
for (uint32_t i = 0; i < ARRAY_SIZE(chipsets); i++) {