summaryrefslogtreecommitdiff
path: root/board/oak/ec.tasklist
diff options
context:
space:
mode:
authorRong Chang <rongchang@chromium.org>2015-06-08 18:21:06 +0800
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-06-10 15:49:28 +0000
commit483eba41c13631d8ebacd720b29b819a128b11e0 (patch)
tree30aa8e3a4834fdc78435bd9c72ce187ec2d7bb66 /board/oak/ec.tasklist
parent63a9dc19b580d9a3ec2bc4f73c76b6a016b8802f (diff)
downloadchrome-ec-483eba41c13631d8ebacd720b29b819a128b11e0.tar.gz
oak: add PD support for type-C port 1
Port CL:275072 to oak. Oak rev1 and rev1.5 type-C VBUS input controls are connected to PD phy instead of EC. This change wakes both USB PD task to handle power status change. This issue will be fixed in next hardware revision, or enable TCPC power status alert. BRANCH=none BUG=chrome-os-partner:41167 BUG=chrome-os-partner:41226 TEST=manual plug type-C charger into port 1 Change-Id: Ifea19276d0eb74f3e4cac509abece362e6e8af17 Signed-off-by: Rong Chang <rongchang@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/275851 Reviewed-by: Alec Berg <alecaberg@chromium.org> Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
Diffstat (limited to 'board/oak/ec.tasklist')
-rw-r--r--board/oak/ec.tasklist3
1 files changed, 2 insertions, 1 deletions
diff --git a/board/oak/ec.tasklist b/board/oak/ec.tasklist
index 5cc15a1cfe..35c72c3acf 100644
--- a/board/oak/ec.tasklist
+++ b/board/oak/ec.tasklist
@@ -24,4 +24,5 @@
TASK_ALWAYS(HOSTCMD, host_command_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(CONSOLE, console_task, NULL, TASK_STACK_SIZE) \
TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, TASK_STACK_SIZE) \
- TASK_ALWAYS(PD, pd_task, NULL, LARGER_TASK_STACK_SIZE)
+ TASK_ALWAYS(PD_C0, pd_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_C1, pd_task, NULL, LARGER_TASK_STACK_SIZE)