projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5a7fe0a
)
intel/gen12: Add L3 configurations
author
Anuj Phogat
<anuj.phogat@gmail.com>
Sat, 5 Jan 2019 00:04:07 +0000
(16:04 -0800)
committer
Jordan Justen
<jordan.l.justen@intel.com>
Fri, 6 Sep 2019 20:11:22 +0000
(13:11 -0700)
Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/intel/common/gen_l3_config.c
patch
|
blob
|
history
diff --git
a/src/intel/common/gen_l3_config.c
b/src/intel/common/gen_l3_config.c
index e8db6d5ec065ddc28f61d8412e499e66fdb5c055..19ea07eef2ddd4df17ef549af4f9cfc352e32b9e 100644
(file)
--- a/
src/intel/common/gen_l3_config.c
+++ b/
src/intel/common/gen_l3_config.c
@@
-146,6
+146,15
@@
static const struct gen_l3_config icl_l3_configs[] = {
{{ 0 }}
};
+/**
+ * TGL validated L3 configurations. \sa tgl_l3_configs.
+ */
+static const struct gen_l3_config tgl_l3_configs[] = {
+ /* SLM URB ALL DC RO IS C T */
+ {{ 0, 32, 88, 0, 0, 0, 0, 0 }},
+ {{ 0, 16, 104, 0, 0, 0, 0, 0 }},
+ {{ 0 }}
+};
/**
* Return a zero-terminated array of validated L3 configurations for the
@@
-170,9
+179,11
@@
get_l3_configs(const struct gen_device_info *devinfo)
return cnl_l3_configs;
case 11:
- case 12:
return icl_l3_configs;
+ case 12:
+ return tgl_l3_configs;
+
default:
unreachable("Not implemented");
}