summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew McRae <amcrae@google.com>2021-12-02 16:40:28 +1100
committerCommit Bot <commit-bot@chromium.org>2021-12-03 08:49:28 +0000
commitb929577e9a61b0f65db1b81a60247095b38a4af6 (patch)
treea4221a0feaac41ca6130f1180b8618bde9309cef
parent2049c3f715ab4f60fcde66172c9c0ff93af1d893 (diff)
downloadchrome-ec-b929577e9a61b0f65db1b81a60247095b38a4af6.tar.gz
it8xxx2: Move the AP SoC configuration to the project configuration.
Move the AP SoC default configuration out of the base Zephyr it8xxx2 board to the project configuration. BUG=b:208739197 TEST=zmake configure -b krabby; zmake configure -b kingler BRANCH=none Signed-off-by: Andrew McRae <amcrae@google.com> Change-Id: Ia111f6ab592d0782902f91cd70ebfc7693c4a398 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3312511 Reviewed-by: Yuval Peress <peress@google.com>
-rw-r--r--zephyr/boards/riscv/it8xxx2/it8xxx2_defconfig4
-rw-r--r--zephyr/projects/corsola/prj.conf4
2 files changed, 4 insertions, 4 deletions
diff --git a/zephyr/boards/riscv/it8xxx2/it8xxx2_defconfig b/zephyr/boards/riscv/it8xxx2/it8xxx2_defconfig
index 385c98f275..5a07bcffc6 100644
--- a/zephyr/boards/riscv/it8xxx2/it8xxx2_defconfig
+++ b/zephyr/boards/riscv/it8xxx2/it8xxx2_defconfig
@@ -9,10 +9,6 @@ CONFIG_SOC_IT8XXX2=y
# Platform Configuration
CONFIG_BOARD_IT8XXX2=y
-# SoC configuration
-CONFIG_AP=y
-CONFIG_AP_ARM_MTK_MT8192=y
-
# Console
CONFIG_CONSOLE=y
CONFIG_UART_CONSOLE=y
diff --git a/zephyr/projects/corsola/prj.conf b/zephyr/projects/corsola/prj.conf
index 80f1d03d96..c0afed2e08 100644
--- a/zephyr/projects/corsola/prj.conf
+++ b/zephyr/projects/corsola/prj.conf
@@ -1,3 +1,7 @@
# Copyright 2021 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+
+# AP SoC configuration
+CONFIG_AP=y
+CONFIG_AP_ARM_MTK_MT8192=y