summaryrefslogtreecommitdiff
path: root/power
diff options
context:
space:
mode:
authorDivagar Mohandass <divagar.mohandass@intel.com>2019-12-23 00:03:12 +0530
committerCommit Bot <commit-bot@chromium.org>2019-12-25 07:28:22 +0000
commit20dda1348f921c81c7f6da93ed7eeb67da9f891b (patch)
tree6e1575f44abd1bc82a7ae239ba40b18b563074d5 /power
parentb9c725f7a5f3bfb0019fa319e922199cdcb05948 (diff)
downloadchrome-ec-20dda1348f921c81c7f6da93ed7eeb67da9f891b.tar.gz
power: add support for Jasperlake chipset
- Jasperlake power sequencing flow is same as Icelake - Rename CONFIG_CHIPSET_ICL_TGL as CONFIG_CHIPSET_ICELAKE to avoid duplicate code - define CONFIG_CHIPSET_ICELAKE on CONFIG_CHIPSET_JASPERLAKE or CONFIG_CHIPSET_TIGERLAKE BRANCH=none BUG=b:146693933 TEST=make buildall -j Change-Id: I25f43d85fcfc7fbbfe06787e5a201983c0e49cc7 Signed-off-by: Divagar Mohandass <divagar.mohandass@intel.com> Signed-off-by: Vijay Hiremath <vijay.p.hiremath@intel.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1980090 Reviewed-by: Furquan Shaikh <furquan@chromium.org>
Diffstat (limited to 'power')
-rw-r--r--power/build.mk2
-rw-r--r--power/intel_x86.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/power/build.mk b/power/build.mk
index 2a22057982..27dadebbd5 100644
--- a/power/build.mk
+++ b/power/build.mk
@@ -12,7 +12,7 @@ power-$(CONFIG_CHIPSET_CANNONLAKE)+=cannonlake.o intel_x86.o
power-$(CONFIG_CHIPSET_COMETLAKE)+=cometlake.o intel_x86.o
power-$(CONFIG_CHIPSET_COMETLAKE_DISCRETE)+=cometlake-discrete.o intel_x86.o
power-$(CONFIG_CHIPSET_ECDRIVEN)+=ec_driven.o
-power-$(CONFIG_CHIPSET_ICL_TGL)+=icelake.o intel_x86.o
+power-$(CONFIG_CHIPSET_ICELAKE)+=icelake.o intel_x86.o
power-$(CONFIG_CHIPSET_MT817X)+=mt817x.o
power-$(CONFIG_CHIPSET_MT8183)+=mt8183.o
power-$(CONFIG_CHIPSET_RK3288)+=rk3288.o
diff --git a/power/intel_x86.h b/power/intel_x86.h
index b54c60e2c3..b1e60bd17f 100644
--- a/power/intel_x86.h
+++ b/power/intel_x86.h
@@ -22,7 +22,7 @@
#include "cometlake.h"
#elif defined(CONFIG_CHIPSET_COMETLAKE_DISCRETE)
#include "cometlake-discrete.h"
-#elif defined(CONFIG_CHIPSET_ICL_TGL)
+#elif defined(CONFIG_CHIPSET_ICELAKE)
#include "icelake.h"
#elif defined(CONFIG_CHIPSET_SKYLAKE)
#include "skylake.h"