mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-02 16:00:09 +01:00
intel/dev: flag the Elkhart Lake platform
We'll use this for performance metrics which are different from ICL. Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: Rafael Antognolli <rafael.antognolli@intel.com>
This commit is contained in:
parent
7a893a0d57
commit
39fd11a9f8
2 changed files with 5 additions and 0 deletions
|
|
@ -66,6 +66,7 @@ gen_device_name_to_pci_device_id(const char *name)
|
|||
{ "cml", 0x9b41 },
|
||||
{ "cnl", 0x5a52 },
|
||||
{ "icl", 0x8a52 },
|
||||
{ "ehl", 0x4500 },
|
||||
{ "tgl", 0x9a49 },
|
||||
};
|
||||
|
||||
|
|
@ -948,6 +949,7 @@ static const struct gen_device_info gen_device_info_icl_1x8 = {
|
|||
|
||||
static const struct gen_device_info gen_device_info_ehl_4x8 = {
|
||||
GEN11_FEATURES(1, 1, subslices(4), 4),
|
||||
.is_elkhartlake = true,
|
||||
.urb = {
|
||||
.size = 512,
|
||||
.min_entries = {
|
||||
|
|
@ -969,6 +971,7 @@ static const struct gen_device_info gen_device_info_ehl_4x8 = {
|
|||
*/
|
||||
static const struct gen_device_info gen_device_info_ehl_4x4 = {
|
||||
GEN11_FEATURES(1, 1, subslices(4), 4),
|
||||
.is_elkhartlake = true,
|
||||
.urb = {
|
||||
.size = 512,
|
||||
.min_entries = {
|
||||
|
|
@ -991,6 +994,7 @@ static const struct gen_device_info gen_device_info_ehl_4x4 = {
|
|||
*/
|
||||
static const struct gen_device_info gen_device_info_ehl_2x4 = {
|
||||
GEN11_FEATURES(1, 1, subslices(2), 4),
|
||||
.is_elkhartlake = true,
|
||||
.urb = {
|
||||
.size = 512,
|
||||
.min_entries = {
|
||||
|
|
|
|||
|
|
@ -62,6 +62,7 @@ struct gen_device_info
|
|||
bool is_geminilake;
|
||||
bool is_coffeelake;
|
||||
bool is_cannonlake;
|
||||
bool is_elkhartlake;
|
||||
|
||||
bool has_hiz_and_separate_stencil;
|
||||
bool must_use_separate_stencil;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue