diff options
author | Diana Z <dzigterman@chromium.org> | 2021-08-13 23:02:50 -0600 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2021-11-19 17:36:34 +0000 |
commit | 066712fc872f66a42fec2566ecd2910cd21d102e (patch) | |
tree | 2172e2e324d2034475a4488f553a5591b8b0fb43 /board/anahera | |
parent | 9e291bb63572ce81d4aeec64710d9c3da36bfd69 (diff) | |
download | chrome-ec-066712fc872f66a42fec2566ecd2910cd21d102e.tar.gz |
Brya: Add USB mux task
Add the USB mux task for brya boards, since their virtual mux sets may
take some non-trivial amount of time.
BRANCH=None
BUG=b:186777984
TEST=on brya, run validation (tracked in b/202883250)
Signed-off-by: Diana Z <dzigterman@chromium.org>
Change-Id: I150b1dc1072c65e93fb407abbf336d9df95b7a88
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3095439
Reviewed-by: caveh jalali <caveh@chromium.org>
Diffstat (limited to 'board/anahera')
-rw-r--r-- | board/anahera/ec.tasklist | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/anahera/ec.tasklist b/board/anahera/ec.tasklist index bfcf0a6416..187609f36e 100644 --- a/board/anahera/ec.tasklist +++ b/board/anahera/ec.tasklist @@ -18,6 +18,7 @@ TASK_ALWAYS(CHARGER, charger_task, NULL, BASEBOARD_CHARGER_TASK_STACK_SIZE) \ TASK_NOTEST(KEYPROTO, keyboard_protocol_task, NULL, LARGER_TASK_STACK_SIZE) \ TASK_NOTEST(CHIPSET, chipset_task, NULL, BASEBOARD_CHIPSET_TASK_STACK_SIZE) \ + TASK_ALWAYS(USB_MUX, usb_mux_task, NULL, VENTI_TASK_STACK_SIZE) \ TASK_ALWAYS(HOSTCMD, host_command_task, NULL, LARGER_TASK_STACK_SIZE) \ TASK_ALWAYS(CONSOLE, console_task, NULL, CONSOLE_TASK_STACK_SIZE) \ TASK_ALWAYS(POWERBTN, power_button_task, NULL, BASEBOARD_POWERBTN_TASK_STACK_SIZE) \ |