summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuo Yejun <yejun.guo@intel.com>2016-09-12 15:12:12 +0800
committerYang Rong <rong.r.yang@intel.com>2016-10-21 12:37:06 +0800
commitc0e3861df4432fd9e9c59b51a79040648ab09a88 (patch)
tree685fe1a575bf5963e457d9e2e4ff56daa21c7405
parent14ce51d2d2c10d2b6753992863708da2c6858dd9 (diff)
enlarge stack size for chv since its EU might be masked
Signed-off-by: Guo Yejun <yejun.guo@intel.com> Reviewed-by: Yang Rong <rong.r.yang@intel.com>
-rw-r--r--src/intel/intel_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/intel_driver.c b/src/intel/intel_driver.c
index ec2fb31a..0766ca37 100644
--- a/src/intel/intel_driver.c
+++ b/src/intel/intel_driver.c
@@ -468,7 +468,7 @@ intel_driver_enlarge_stack_size(struct intel_driver *drv, int32_t *stack_size)
{
if (drv->gen_ver == 75)
*stack_size = *stack_size * 4;
- else if (drv->device_id == PCI_CHIP_BROXTON_1)
+ else if (drv->device_id == PCI_CHIP_BROXTON_1 || IS_CHERRYVIEW(drv->device_id))
*stack_size = *stack_size * 2;
}