From 854c16c9bdcb285b1258e1a88a29737f8f8d603a Mon Sep 17 00:00:00 2001 From: Devin Lu Date: Tue, 23 Mar 2021 10:08:00 +0800 Subject: marzipan: Initial EC image Create the initial EC image for the marzipan variant by copying the lazor reference board EC files into a new directory named for the variant. (Auto-Generated by create_initial_ec_image.sh version 1.5.0). BUG=b:182018606 BRANCH=firmware-trogdor-13577.B-master TEST=make BOARD=marzipan Signed-off-by: Devin Lu Change-Id: I8d15d2de1d104d85c12b86a7f2137d17bf2f2bdd Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2780455 Reviewed-by: Philip Chen Reviewed-by: Wai-Hong Tam Commit-Queue: Wai-Hong Tam --- board/marzipan/ec.tasklist | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 board/marzipan/ec.tasklist (limited to 'board/marzipan/ec.tasklist') diff --git a/board/marzipan/ec.tasklist b/board/marzipan/ec.tasklist new file mode 100644 index 0000000000..5beeb38feb --- /dev/null +++ b/board/marzipan/ec.tasklist @@ -0,0 +1,23 @@ +/* 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. + */ + +/* + * See CONFIG_TASK_LIST in config.h for details. + */ + +#define CONFIG_TASK_LIST \ + TASK_ALWAYS(HOOKS, hook_task, NULL, ULTRA_TASK_STACK_SIZE) \ + TASK_ALWAYS(USB_CHG_P0, usb_charger_task, NULL, LARGER_TASK_STACK_SIZE) \ + TASK_ALWAYS(USB_CHG_P1, usb_charger_task, NULL, LARGER_TASK_STACK_SIZE) \ + TASK_NOTEST(CHIPSET, chipset_task, NULL, ULTRA_TASK_STACK_SIZE) \ + TASK_ALWAYS(CHARGER, charger_task, NULL, ULTRA_TASK_STACK_SIZE) \ + TASK_ALWAYS(MOTIONSENSE, motion_sense_task, NULL, VENTI_TASK_STACK_SIZE) \ + TASK_ALWAYS(HOSTCMD, host_command_task, NULL, ULTRA_TASK_STACK_SIZE) \ + TASK_ALWAYS(CONSOLE, console_task, NULL, ULTRA_TASK_STACK_SIZE) \ + TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, VENTI_TASK_STACK_SIZE) \ + TASK_ALWAYS(PD_C0, pd_task, NULL, ULTRA_TASK_STACK_SIZE) \ + TASK_ALWAYS(PD_C1, pd_task, NULL, ULTRA_TASK_STACK_SIZE) \ + TASK_ALWAYS(PD_INT_C0, pd_interrupt_handler_task, 0, ULTRA_TASK_STACK_SIZE) \ + TASK_ALWAYS(PD_INT_C1, pd_interrupt_handler_task, 1, ULTRA_TASK_STACK_SIZE) -- cgit v1.2.1