summaryrefslogtreecommitdiff
path: root/tools/intel_watermark.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/intel_watermark.c')
-rw-r--r--tools/intel_watermark.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/intel_watermark.c b/tools/intel_watermark.c
index 3fd37441..b61a26f1 100644
--- a/tools/intel_watermark.c
+++ b/tools/intel_watermark.c
@@ -137,7 +137,9 @@ static int is_hsw_plus(uint32_t d)
static int skl_num_planes(uint32_t d, int pipe)
{
- if (IS_GEN10(d) || IS_GEMINILAKE(d))
+ if (IS_GEN11(d))
+ return 8;
+ else if (IS_GEN10(d) || IS_GEMINILAKE(d))
return 5;
else if (IS_BROXTON(d))
return pipe == 2 ? 4 : 5;
@@ -147,7 +149,9 @@ static int skl_num_planes(uint32_t d, int pipe)
static int skl_max_planes(uint32_t d)
{
- if (IS_GEN10(d) || IS_GEMINILAKE(d) || IS_BROXTON(d))
+ if (IS_GEN11(d))
+ return 8;
+ else if (IS_GEN10(d) || IS_GEMINILAKE(d) || IS_BROXTON(d))
return 5;
else
return 4;