diff options
author | Keith Short <keithshort@chromium.org> | 2020-09-29 16:16:00 -0600 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2020-10-01 20:09:00 +0000 |
commit | 9b4f53e42e7bfcb2d045eca422b0097cc309a8d2 (patch) | |
tree | c09e8e175355fad269f7339a157ec370e2e58070 /board/halvor | |
parent | 480a1dc59a883251019262147a8c306e98599436 (diff) | |
download | chrome-ec-9b4f53e42e7bfcb2d045eca422b0097cc309a8d2.tar.gz |
volteer: Enable SW charge ramping
Enable CONFIG_CHARGE_RAMP_SW because hardware based charge ramping
doesn't work on the ISL9241.
BUG=b:169350714, b:168960587
BRANCH=none
TEST=make buildall
TEST=Connect 1.5A CDP device to Volteer and verify charge ramp from 0.5A
to 1.5A over about 7 seconds.
Signed-off-by: Keith Short <keithshort@chromium.org>
Change-Id: I81e8a3913bd776d0d3fda6d294fdeabbde5df62a
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2438912
Reviewed-by: Abe Levkoy <alevkoy@chromium.org>
Diffstat (limited to 'board/halvor')
-rw-r--r-- | board/halvor/ec.tasklist | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/halvor/ec.tasklist b/board/halvor/ec.tasklist index 66deb91f95..936a4276e6 100644 --- a/board/halvor/ec.tasklist +++ b/board/halvor/ec.tasklist @@ -9,6 +9,7 @@ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \ + TASK_ALWAYS(CHG_RAMP, chg_ramp_task, NULL, TASK_STACK_SIZE) \ TASK_ALWAYS(USB_CHG_P0, usb_charger_task, 0, TASK_STACK_SIZE) \ TASK_ALWAYS(USB_CHG_P1, usb_charger_task, 0, TASK_STACK_SIZE) \ TASK_ALWAYS(USB_CHG_P2, usb_charger_task, 0, TASK_STACK_SIZE) \ |