summaryrefslogtreecommitdiff
path: root/zephyr/Kconfig.wireless_charger
diff options
context:
space:
mode:
authorDaisuke Nojiri <dnojiri@chromium.org>2022-04-19 21:29:15 +0000
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-04-22 00:08:20 +0000
commitb1195bf1a7d4b1017350ce367c802b82d82f3b3c (patch)
treec5363fb1fbb47ae44e9b6288f0e3c79809161c71 /zephyr/Kconfig.wireless_charger
parent8961e9ff14806e7278382cbedf33ac3b9d3fc9e0 (diff)
downloadchrome-ec-b1195bf1a7d4b1017350ce367c802b82d82f3b3c.tar.gz
CPS8100: Add CPS8100 driver
CPS8100 is a Qi wireless power transmitter. This patch adds a driver for it and integrates it with the PCHG subsystem. BUG=b:191418683 BRANCH=Brask TEST=On Brask Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org> Change-Id: If6ec1c4811621ce8d553800db9608aa6cf60cd45 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3595282 Reviewed-by: caveh jalali <caveh@chromium.org>
Diffstat (limited to 'zephyr/Kconfig.wireless_charger')
-rw-r--r--zephyr/Kconfig.wireless_charger18
1 files changed, 18 insertions, 0 deletions
diff --git a/zephyr/Kconfig.wireless_charger b/zephyr/Kconfig.wireless_charger
new file mode 100644
index 0000000000..e0608d0b57
--- /dev/null
+++ b/zephyr/Kconfig.wireless_charger
@@ -0,0 +1,18 @@
+# Copyright 2022 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.
+
+config PLATFORM_EC_PERIPHERAL_CHARGER
+ bool "Enable peripheral charger task"
+ help
+ Enable peripheral charger task.
+
+if PLATFORM_EC_PERIPHERAL_CHARGER
+
+config PLATFORM_EC_CPS8100
+ bool "Use CPS8100 driver"
+ help
+ Use CPS8100 driver. CPS8100 is a Qi wireless power transmitter.
+
+
+endif # PLATFORM_EC_PERIPHERAL_CHARGER \ No newline at end of file