mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 02:20:11 +01:00
intel/common/icl: Add L3 config
ICL uses the same L3 configs as CNL, just leaving the SLM configs out. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
f56693af4b
commit
370af9dcc0
1 changed files with 18 additions and 0 deletions
|
|
@ -132,6 +132,21 @@ static const struct gen_l3_config cnl_l3_configs[] = {
|
||||||
{{ 0 }}
|
{{ 0 }}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ICL validated L3 configurations. \sa icl_l3_configs.
|
||||||
|
*/
|
||||||
|
static const struct gen_l3_config icl_l3_configs[] = {
|
||||||
|
/* SLM URB ALL DC RO IS C T */
|
||||||
|
{{ 0, 64, 64, 0, 0, 0, 0, 0 }},
|
||||||
|
{{ 0, 64, 0, 16, 48, 0, 0, 0 }},
|
||||||
|
{{ 0, 48, 0, 16, 64, 0, 0, 0 }},
|
||||||
|
{{ 0, 32, 0, 0, 96, 0, 0, 0 }},
|
||||||
|
{{ 0, 32, 96, 0, 0, 0, 0, 0 }},
|
||||||
|
{{ 0, 32, 0, 16, 80, 0, 0, 0 }},
|
||||||
|
{{ 0 }}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return a zero-terminated array of validated L3 configurations for the
|
* Return a zero-terminated array of validated L3 configurations for the
|
||||||
* specified device.
|
* specified device.
|
||||||
|
|
@ -154,6 +169,9 @@ get_l3_configs(const struct gen_device_info *devinfo)
|
||||||
case 10:
|
case 10:
|
||||||
return cnl_l3_configs;
|
return cnl_l3_configs;
|
||||||
|
|
||||||
|
case 11:
|
||||||
|
return icl_l3_configs;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
unreachable("Not implemented");
|
unreachable("Not implemented");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue