diff options
author | Daisuke Nojiri <dnojiri@chromium.org> | 2019-04-03 11:03:23 -0700 |
---|---|---|
committer | chrome-bot <chrome-bot@chromium.org> | 2019-04-08 22:30:32 -0700 |
commit | 6bd030ecd978a8b619da261510490f27f68c4e6c (patch) | |
tree | 4cd5827d1842384d477eb7f9d68c05ec7906c2ec | |
parent | b4cca02d9dcc5c7fa42813ae819933fd5ae9f43c (diff) | |
download | chrome-ec-6bd030ecd978a8b619da261510490f27f68c4e6c.tar.gz |
ec.tasklist: Consolidate duplicate comments
It's simply a bad idea to describe a macro in multiple locations.
It'll make it hard to change. It'll be difficult to keep all
locations in sync.
This patch replaces the comment duplicated in all ec.tasklist with
a pointer to the CONFIG_TASK_LIST definition. The macro will be
described in a single place (just like all/most other macros).
Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org>
BUG=none
BRANCH=none
TEST=buildall
Change-Id: Id658b9d68e742e4334c692b804d9c98c8de21313
Reviewed-on: https://chromium-review.googlesource.com/1551579
Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com>
Tested-by: Daisuke Nojiri <dnojiri@chromium.org>
Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
Reviewed-by: Jett Rink <jettrink@chromium.org>
139 files changed, 147 insertions, 1491 deletions
diff --git a/board/aleena/ec.tasklist b/board/aleena/ec.tasklist index 97711213a1..00a2c4032c 100644 --- a/board/aleena/ec.tasklist +++ b/board/aleena/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/ampton/ec.tasklist b/board/ampton/ec.tasklist index 6f719b4acc..0cb8326884 100644 --- a/board/ampton/ec.tasklist +++ b/board/ampton/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/arcada_ish/ec.tasklist b/board/arcada_ish/ec.tasklist index 1da6803690..d72fdf309e 100644 --- a/board/arcada_ish/ec.tasklist +++ b/board/arcada_ish/ec.tasklist @@ -4,19 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s, f) for base tasks and - * TASK_NOTEST(n, r, d, s, f) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * 'f' is the bit flags for the platform specific information - * - MIA_TASK_FLAG_USE_FPU : bit 0, task uses FPU H/W + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/atlas/ec.tasklist b/board/atlas/ec.tasklist index 67329fa9a1..4149a73ad9 100644 --- a/board/atlas/ec.tasklist +++ b/board/atlas/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/atlas_ish/ec.tasklist b/board/atlas_ish/ec.tasklist index 4486b508e6..15f856131a 100644 --- a/board/atlas_ish/ec.tasklist +++ b/board/atlas_ish/ec.tasklist @@ -4,19 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s, f) for base tasks and - * TASK_NOTEST(n, r, d, s, f) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * 'f' is the bit flags for the platform specific information - * - MIA_TASK_FLAG_USE_FPU : bit 0, task uses FPU H/W + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/bds/ec.tasklist b/board/bds/ec.tasklist index 556f3cbb7e..547eb14b41 100644 --- a/board/bds/ec.tasklist +++ b/board/bds/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \ diff --git a/board/bloog/ec.tasklist b/board/bloog/ec.tasklist index d84550e17d..d59bbccc71 100644 --- a/board/bloog/ec.tasklist +++ b/board/bloog/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/bobba/ec.tasklist b/board/bobba/ec.tasklist index 0534b90765..f411185bd2 100644 --- a/board/bobba/ec.tasklist +++ b/board/bobba/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/careena/ec.tasklist b/board/careena/ec.tasklist index 67453cd670..b7473137c9 100644 --- a/board/careena/ec.tasklist +++ b/board/careena/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/casta/ec.tasklist b/board/casta/ec.tasklist index 61779bbfb2..f832dc79c8 100644 --- a/board/casta/ec.tasklist +++ b/board/casta/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/chell/ec.tasklist b/board/chell/ec.tasklist index 4873c4d28f..2ae8c29075 100644 --- a/board/chell/ec.tasklist +++ b/board/chell/ec.tasklist @@ -4,17 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/board/cheza/ec.tasklist b/board/cheza/ec.tasklist index b98e402af9..c38fe0495a 100644 --- a/board/cheza/ec.tasklist +++ b/board/cheza/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/coffeecake/ec.tasklist b/board/coffeecake/ec.tasklist index 63a775523d..d6686d72e9 100644 --- a/board/coffeecake/ec.tasklist +++ b/board/coffeecake/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \ diff --git a/board/coral/ec.tasklist b/board/coral/ec.tasklist index 29668ea536..cd4e0e708a 100644 --- a/board/coral/ec.tasklist +++ b/board/coral/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/cr50/ec.tasklist b/board/cr50/ec.tasklist index 547bc305ae..e0bf5a6bb2 100644 --- a/board/cr50/ec.tasklist +++ b/board/cr50/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, CONFIG_STACK_SIZE) \ diff --git a/board/dingdong/ec.tasklist b/board/dingdong/ec.tasklist index a4c8e73391..8ef66f756f 100644 --- a/board/dingdong/ec.tasklist +++ b/board/dingdong/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \ diff --git a/board/discovery-stm32f072/ec.tasklist b/board/discovery-stm32f072/ec.tasklist index fa284f1a0c..e07724850b 100644 --- a/board/discovery-stm32f072/ec.tasklist +++ b/board/discovery-stm32f072/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \ diff --git a/board/discovery/ec.tasklist b/board/discovery/ec.tasklist index d3ac489b42..b56cacef22 100644 --- a/board/discovery/ec.tasklist +++ b/board/discovery/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \ diff --git a/board/dragonegg/ec.tasklist b/board/dragonegg/ec.tasklist index e12fde51cc..67f162f7d0 100644 --- a/board/dragonegg/ec.tasklist +++ b/board/dragonegg/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/elm/ec.tasklist b/board/elm/ec.tasklist index 92e7b878a5..22bf6a8645 100644 --- a/board/elm/ec.tasklist +++ b/board/elm/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/eve/ec.tasklist b/board/eve/ec.tasklist index e902b3ee64..0ee1103738 100644 --- a/board/eve/ec.tasklist +++ b/board/eve/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/fizz/ec.tasklist b/board/fizz/ec.tasklist index 327bda220f..1de868da87 100644 --- a/board/fizz/ec.tasklist +++ b/board/fizz/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/flapjack/ec.tasklist b/board/flapjack/ec.tasklist index c750b22904..f265649f3e 100644 --- a/board/flapjack/ec.tasklist +++ b/board/flapjack/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' is the name of the task - * 'r' is the main routine of the task - * 'd' is an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/board/fleex/ec.tasklist b/board/fleex/ec.tasklist index 0534b90765..f411185bd2 100644 --- a/board/fleex/ec.tasklist +++ b/board/fleex/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/glados/ec.tasklist b/board/glados/ec.tasklist index 9d0445d2ad..f5fab4ed97 100644 --- a/board/glados/ec.tasklist +++ b/board/glados/ec.tasklist @@ -4,17 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/board/glados_pd/ec.tasklist b/board/glados_pd/ec.tasklist index 6401c10057..cfcb5007af 100644 --- a/board/glados_pd/ec.tasklist +++ b/board/glados_pd/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/board/glkrvp/ec.tasklist b/board/glkrvp/ec.tasklist index ae86c16283..46ac1236e4 100644 --- a/board/glkrvp/ec.tasklist +++ b/board/glkrvp/ec.tasklist @@ -7,20 +7,7 @@ /* Intel RVP board-specific configuration */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/glkrvp_ite/ec.tasklist b/board/glkrvp_ite/ec.tasklist index 64550e561b..086a352bcb 100644 --- a/board/glkrvp_ite/ec.tasklist +++ b/board/glkrvp_ite/ec.tasklist @@ -7,20 +7,7 @@ /* Intel GLK-RVP-ITE board-specific configuration */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/grunt/ec.tasklist b/board/grunt/ec.tasklist index 97711213a1..00a2c4032c 100644 --- a/board/grunt/ec.tasklist +++ b/board/grunt/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/hadoken/ec.tasklist b/board/hadoken/ec.tasklist index 3c5b72d44b..1bce87ef15 100644 --- a/board/hadoken/ec.tasklist +++ b/board/hadoken/ec.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/board/hammer/ec.tasklist b/board/hammer/ec.tasklist index 2997a05bc3..8fd825b94f 100644 --- a/board/hammer/ec.tasklist +++ b/board/hammer/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #ifdef BOARD_WAND #define CONFIG_TASK_LIST \ diff --git a/board/hatch/ec.tasklist b/board/hatch/ec.tasklist index 6a09d9f7d1..bf5a7a436a 100644 --- a/board/hatch/ec.tasklist +++ b/board/hatch/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/hoho/ec.tasklist b/board/hoho/ec.tasklist index a4c8e73391..8ef66f756f 100644 --- a/board/hoho/ec.tasklist +++ b/board/hoho/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \ diff --git a/board/host/ec.tasklist b/board/host/ec.tasklist index dc03085807..71e64fc82d 100644 --- a/board/host/ec.tasklist +++ b/board/host/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/it83xx_evb/ec.tasklist b/board/it83xx_evb/ec.tasklist index bc2aa978d7..f6e7820570 100644 --- a/board/it83xx_evb/ec.tasklist +++ b/board/it83xx_evb/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/board/jerry/ec.tasklist b/board/jerry/ec.tasklist index b9f36f7078..efae4fe69b 100644 --- a/board/jerry/ec.tasklist +++ b/board/jerry/ec.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/board/karma/ec.tasklist b/board/karma/ec.tasklist index 21e9ccb7c5..69cb2c9342 100644 --- a/board/karma/ec.tasklist +++ b/board/karma/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/kohaku/ec.tasklist b/board/kohaku/ec.tasklist index 6a09d9f7d1..bf5a7a436a 100644 --- a/board/kohaku/ec.tasklist +++ b/board/kohaku/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/kukui/ec.tasklist b/board/kukui/ec.tasklist index c750b22904..f265649f3e 100644 --- a/board/kukui/ec.tasklist +++ b/board/kukui/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' is the name of the task - * 'r' is the main routine of the task - * 'd' is an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/board/kukui_scp/ec.tasklist b/board/kukui_scp/ec.tasklist index 16c8741e62..a0f7029ff4 100644 --- a/board/kukui_scp/ec.tasklist +++ b/board/kukui_scp/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' is the name of the task - * 'r' is the main routine of the task - * 'd' is an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ /* We don't need uart_task when using scp uart (uart0, uart1). */ diff --git a/board/liara/ec.tasklist b/board/liara/ec.tasklist index 67453cd670..b7473137c9 100644 --- a/board/liara/ec.tasklist +++ b/board/liara/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/mchpevb1/ec.tasklist b/board/mchpevb1/ec.tasklist index 81be3349f1..cdfdd45163 100644 --- a/board/mchpevb1/ec.tasklist +++ b/board/mchpevb1/ec.tasklist @@ -4,17 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/board/meep/ec.tasklist b/board/meep/ec.tasklist index 0534b90765..f411185bd2 100644 --- a/board/meep/ec.tasklist +++ b/board/meep/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/nami/ec.tasklist b/board/nami/ec.tasklist index fae7e3847c..7b9985253d 100644 --- a/board/nami/ec.tasklist +++ b/board/nami/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/nautilus/ec.tasklist b/board/nautilus/ec.tasklist index 8afac3eebb..8257734572 100644 --- a/board/nautilus/ec.tasklist +++ b/board/nautilus/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/nocturne/ec.tasklist b/board/nocturne/ec.tasklist index 8510860610..a4e5ef4897 100644 --- a/board/nocturne/ec.tasklist +++ b/board/nocturne/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/nocturne_fp/ec.tasklist b/board/nocturne_fp/ec.tasklist index 6dfaaeff14..e8040bba5e 100644 --- a/board/nocturne_fp/ec.tasklist +++ b/board/nocturne_fp/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS_RO(RWSIG, rwsig_task, NULL, 1280) \ diff --git a/board/npcx7_evb/ec.tasklist b/board/npcx7_evb/ec.tasklist index ddd6135672..88b5ffaa62 100644 --- a/board/npcx7_evb/ec.tasklist +++ b/board/npcx7_evb/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' is the name of the task - * 'r' is the main routine of the task - * 'd' is an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/board/npcx_evb/ec.tasklist b/board/npcx_evb/ec.tasklist index f0a9acff85..9640c34e6c 100644 --- a/board/npcx_evb/ec.tasklist +++ b/board/npcx_evb/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' is the name of the task - * 'r' is the main routine of the task - * 'd' is an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/board/npcx_evb_arm/ec.tasklist b/board/npcx_evb_arm/ec.tasklist index a44d142596..a014b86350 100644 --- a/board/npcx_evb_arm/ec.tasklist +++ b/board/npcx_evb_arm/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' is the name of the task - * 'r' is the main routine of the task - * 'd' is an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/board/nucleo-f072rb/ec.tasklist b/board/nucleo-f072rb/ec.tasklist index 1944ef3874..a6385530b5 100644 --- a/board/nucleo-f072rb/ec.tasklist +++ b/board/nucleo-f072rb/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \ diff --git a/board/nucleo-f411re/ec.tasklist b/board/nucleo-f411re/ec.tasklist index 52135d97f8..b5e3cb82b2 100644 --- a/board/nucleo-f411re/ec.tasklist +++ b/board/nucleo-f411re/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/board/oak/ec.tasklist b/board/oak/ec.tasklist index e55a2cb854..2af7da77eb 100644 --- a/board/oak/ec.tasklist +++ b/board/oak/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #include "board_revs.h" diff --git a/board/pdeval-stm32f072/ec.tasklist b/board/pdeval-stm32f072/ec.tasklist index 4262727041..c5786ba2ea 100644 --- a/board/pdeval-stm32f072/ec.tasklist +++ b/board/pdeval-stm32f072/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \ diff --git a/board/phaser/ec.tasklist b/board/phaser/ec.tasklist index 0534b90765..f411185bd2 100644 --- a/board/phaser/ec.tasklist +++ b/board/phaser/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/plankton/ec.tasklist b/board/plankton/ec.tasklist index a4c8e73391..8ef66f756f 100644 --- a/board/plankton/ec.tasklist +++ b/board/plankton/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \ diff --git a/board/polyberry/ec.tasklist b/board/polyberry/ec.tasklist index 29696f3744..c1fb169118 100644 --- a/board/polyberry/ec.tasklist +++ b/board/polyberry/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, VENTI_TASK_STACK_SIZE) \ diff --git a/board/poppy/ec.tasklist b/board/poppy/ec.tasklist index 662e3336bb..7591137bc9 100644 --- a/board/poppy/ec.tasklist +++ b/board/poppy/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/rainier/ec.tasklist b/board/rainier/ec.tasklist index f008ea91de..93eaaf99c6 100644 --- a/board/rainier/ec.tasklist +++ b/board/rainier/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' is the name of the task - * 'r' is the main routine of the task - * 'd' is an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/board/rammus/ec.tasklist b/board/rammus/ec.tasklist index c714964693..1d56038231 100644 --- a/board/rammus/ec.tasklist +++ b/board/rammus/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/reef/ec.tasklist b/board/reef/ec.tasklist index 29668ea536..cd4e0e708a 100644 --- a/board/reef/ec.tasklist +++ b/board/reef/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/reef_it8320/ec.tasklist b/board/reef_it8320/ec.tasklist index 12d940e81c..04816cad18 100644 --- a/board/reef_it8320/ec.tasklist +++ b/board/reef_it8320/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/reef_mchp/ec.tasklist b/board/reef_mchp/ec.tasklist index b5386858b0..5da597a209 100644 --- a/board/reef_mchp/ec.tasklist +++ b/board/reef_mchp/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. * These 3 go after HOOKS and before MOTIONSENSE. Remember to add backslashes! * TASK_ALWAYS(CHG_RAMP, chg_ramp_task, NULL, TASK_STACK_SIZE) * TASK_ALWAYS(USB_CHG, usb_charger_task, NULL, TASK_STACK_SIZE) diff --git a/board/samus/ec.tasklist b/board/samus/ec.tasklist index 58967f508d..b55e616e3d 100644 --- a/board/samus/ec.tasklist +++ b/board/samus/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' is the name of the task - * 'r' is the main routine of the task - * 'd' is an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/board/samus_pd/ec.tasklist b/board/samus_pd/ec.tasklist index 00030e30ec..40d4436e56 100644 --- a/board/samus_pd/ec.tasklist +++ b/board/samus_pd/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/board/scarlet/ec.tasklist b/board/scarlet/ec.tasklist index 26fc8d26a8..8a3aedf71c 100644 --- a/board/scarlet/ec.tasklist +++ b/board/scarlet/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' is the name of the task - * 'r' is the main routine of the task - * 'd' is an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/board/servo_micro/ec.tasklist b/board/servo_micro/ec.tasklist index 29696f3744..c1fb169118 100644 --- a/board/servo_micro/ec.tasklist +++ b/board/servo_micro/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, VENTI_TASK_STACK_SIZE) \ diff --git a/board/servo_v4/ec.tasklist b/board/servo_v4/ec.tasklist index 767c422365..5bdca4bb82 100644 --- a/board/servo_v4/ec.tasklist +++ b/board/servo_v4/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, VENTI_TASK_STACK_SIZE) \ diff --git a/board/stm32f446e-eval/ec.tasklist b/board/stm32f446e-eval/ec.tasklist index c4605514e5..2a1ffbf652 100644 --- a/board/stm32f446e-eval/ec.tasklist +++ b/board/stm32f446e-eval/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \ diff --git a/board/stm32l476g-eval/ec.tasklist b/board/stm32l476g-eval/ec.tasklist index abe3ced689..adfd7c7e92 100644 --- a/board/stm32l476g-eval/ec.tasklist +++ b/board/stm32l476g-eval/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \ diff --git a/board/strago/ec.tasklist b/board/strago/ec.tasklist index 8bfbd24c21..df960672f1 100644 --- a/board/strago/ec.tasklist +++ b/board/strago/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \ diff --git a/board/sweetberry/ec.tasklist b/board/sweetberry/ec.tasklist index 29696f3744..c1fb169118 100644 --- a/board/sweetberry/ec.tasklist +++ b/board/sweetberry/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, VENTI_TASK_STACK_SIZE) \ diff --git a/board/tigertail/ec.tasklist b/board/tigertail/ec.tasklist index 3218df7df3..afdb5dedc7 100644 --- a/board/tigertail/ec.tasklist +++ b/board/tigertail/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, VENTI_TASK_STACK_SIZE) \ diff --git a/board/twinkie/ec.tasklist b/board/twinkie/ec.tasklist index e09bfd602c..46f4377ec2 100644 --- a/board/twinkie/ec.tasklist +++ b/board/twinkie/ec.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, TASK_STACK_SIZE) \ diff --git a/board/yorp/ec.tasklist b/board/yorp/ec.tasklist index 0534b90765..f411185bd2 100644 --- a/board/yorp/ec.tasklist +++ b/board/yorp/ec.tasklist @@ -4,20 +4,7 @@ */ /* - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 - * - * For USB PD tasks, IDs must be in consecutive order and correspond to - * the port which they are for. See TASK_ID_TO_PD_PORT() macro. + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST \ diff --git a/board/zinger/ec.tasklist b/board/zinger/ec.tasklist index e8860b4ebb..c353eadd0e 100644 --- a/board/zinger/ec.tasklist +++ b/board/zinger/ec.tasklist @@ -4,16 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TASK_LIST diff --git a/cts/cts.tasklist b/cts/cts.tasklist index 73e959684f..152b0d02b2 100644 --- a/cts/cts.tasklist +++ b/cts/cts.tasklist @@ -4,17 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and - * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ /* Default task list for suites which don't define its own */ diff --git a/cts/mutex/cts.tasklist b/cts/mutex/cts.tasklist index 32cfb865b9..3387e1de09 100644 --- a/cts/mutex/cts.tasklist +++ b/cts/mutex/cts.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_CTS_TASK_LIST \ TASK_ALWAYS(MTX3C, mutex_random_task, NULL, 384) \ diff --git a/cts/task/cts.tasklist b/cts/task/cts.tasklist index 8c181b3e5c..b87fd7a3df 100644 --- a/cts/task/cts.tasklist +++ b/cts/task/cts.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_ALWAYS(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_CTS_TASK_LIST \ TASK_ALWAYS(A, task_abc, NULL, TASK_STACK_SIZE) \ diff --git a/fuzz/cr50_fuzz.tasklist b/fuzz/cr50_fuzz.tasklist index de4df33e13..24870f2abb 100644 --- a/fuzz/cr50_fuzz.tasklist +++ b/fuzz/cr50_fuzz.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST diff --git a/fuzz/host_command_fuzz.tasklist b/fuzz/host_command_fuzz.tasklist index de4df33e13..24870f2abb 100644 --- a/fuzz/host_command_fuzz.tasklist +++ b/fuzz/host_command_fuzz.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST diff --git a/fuzz/usb_pd_fuzz.tasklist b/fuzz/usb_pd_fuzz.tasklist index 3d7a91254b..6edeac2f98 100644 --- a/fuzz/usb_pd_fuzz.tasklist +++ b/fuzz/usb_pd_fuzz.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(PD_C0, pd_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/include/config.h b/include/config.h index 89ade13c9c..0dee087d73 100644 --- a/include/config.h +++ b/include/config.h @@ -3046,16 +3046,23 @@ /* Task config */ /* - * List of enabled tasks in ascending priority order. This is normally + * List of enabled tasks in ascending priority order. This is normally * defined in each board's ec.tasklist file. * * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries, - * where : + * where: * 'n' is the name of the task * 'r' is the main routine of the task * 'd' is an opaque parameter passed to the routine at startup * 's' is the stack size in bytes; must be a multiple of 8 + * + * Some cores use TASK_ALWAYS(n, r, d, s, f), where: + * 'f' is the bit flags for the platform specific information + * - MIA_TASK_FLAG_USE_FPU : bit 0, task uses FPU H/W + * + * For USB PD tasks, IDs must be in consecutive order and correspond to + * the port which they are for. See TASK_ID_TO_PD_PORT() macro. */ #undef CONFIG_TASK_LIST diff --git a/test/aes.tasklist b/test/aes.tasklist index de4df33e13..24870f2abb 100644 --- a/test/aes.tasklist +++ b/test/aes.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST diff --git a/test/base32.tasklist b/test/base32.tasklist index e241aab4bb..7150f17cbd 100644 --- a/test/base32.tasklist +++ b/test/base32.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/battery_get_params_smart.tasklist b/test/battery_get_params_smart.tasklist index c5d4a2a4b3..db3f5b4fdc 100644 --- a/test/battery_get_params_smart.tasklist +++ b/test/battery_get_params_smart.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/bklight_lid.tasklist b/test/bklight_lid.tasklist index 26cfc53453..15b923abe3 100644 --- a/test/bklight_lid.tasklist +++ b/test/bklight_lid.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/bklight_passthru.tasklist b/test/bklight_passthru.tasklist index 26cfc53453..15b923abe3 100644 --- a/test/bklight_passthru.tasklist +++ b/test/bklight_passthru.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/button.tasklist b/test/button.tasklist index 65314cd0b8..44532203c8 100644 --- a/test/button.tasklist +++ b/test/button.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(KEYPROTO, keyboard_protocol_task, NULL, TASK_STACK_SIZE) diff --git a/test/cec.tasklist b/test/cec.tasklist index 7015e106a9..e7634958a9 100644 --- a/test/cec.tasklist +++ b/test/cec.tasklist @@ -6,14 +6,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/charge_manager.tasklist b/test/charge_manager.tasklist index 927bd24ee1..1f6f139a63 100644 --- a/test/charge_manager.tasklist +++ b/test/charge_manager.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/charge_manager_drp_charging.tasklist b/test/charge_manager_drp_charging.tasklist index cbe6830516..e39c934e44 100644 --- a/test/charge_manager_drp_charging.tasklist +++ b/test/charge_manager_drp_charging.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/charge_ramp.tasklist b/test/charge_ramp.tasklist index 97a94fef6c..1e18846c75 100644 --- a/test/charge_ramp.tasklist +++ b/test/charge_ramp.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(CHG_RAMP, chg_ramp_task, NULL, SMALLER_TASK_STACK_SIZE) diff --git a/test/console_edit.tasklist b/test/console_edit.tasklist index 26cfc53453..15b923abe3 100644 --- a/test/console_edit.tasklist +++ b/test/console_edit.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/crc32.tasklist b/test/crc32.tasklist index 30e5f7fc22..f46a2eaa1d 100644 --- a/test/crc32.tasklist +++ b/test/crc32.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST diff --git a/test/entropy.tasklist b/test/entropy.tasklist index e76178ba0a..80072bb620 100644 --- a/test/entropy.tasklist +++ b/test/entropy.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST diff --git a/test/extpwr_gpio.tasklist b/test/extpwr_gpio.tasklist index 26cfc53453..15b923abe3 100644 --- a/test/extpwr_gpio.tasklist +++ b/test/extpwr_gpio.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/fan.tasklist b/test/fan.tasklist index c72de237cd..213ae1b2bb 100644 --- a/test/fan.tasklist +++ b/test/fan.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/flash.tasklist b/test/flash.tasklist index ce012123d9..7a39a5865d 100644 --- a/test/flash.tasklist +++ b/test/flash.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(TEST, task_test, NULL, TASK_STACK_SIZE) diff --git a/test/flash_log.tasklist b/test/flash_log.tasklist index 503898de80..9fc1a80f4d 100644 --- a/test/flash_log.tasklist +++ b/test/flash_log.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST diff --git a/test/float.tasklist b/test/float.tasklist index 5e26d7102e..9ad0114d8a 100644 --- a/test/float.tasklist +++ b/test/float.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/fp.tasklist b/test/fp.tasklist index 5e26d7102e..9ad0114d8a 100644 --- a/test/fp.tasklist +++ b/test/fp.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/hooks.tasklist b/test/hooks.tasklist index 26cfc53453..15b923abe3 100644 --- a/test/hooks.tasklist +++ b/test/hooks.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/host_command.tasklist b/test/host_command.tasklist index 26cfc53453..15b923abe3 100644 --- a/test/host_command.tasklist +++ b/test/host_command.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/inductive_charging.tasklist b/test/inductive_charging.tasklist index 7077d82e38..f5c894ccaf 100644 --- a/test/inductive_charging.tasklist +++ b/test/inductive_charging.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/interrupt.tasklist b/test/interrupt.tasklist index 26cfc53453..15b923abe3 100644 --- a/test/interrupt.tasklist +++ b/test/interrupt.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/kb_8042.tasklist b/test/kb_8042.tasklist index 7f87e24129..1fc67a0669 100644 --- a/test/kb_8042.tasklist +++ b/test/kb_8042.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(KEYPROTO, keyboard_protocol_task, NULL, TASK_STACK_SIZE) \ diff --git a/test/kb_mkbp.tasklist b/test/kb_mkbp.tasklist index 2368d7bc52..3a50642a32 100644 --- a/test/kb_mkbp.tasklist +++ b/test/kb_mkbp.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(KEYSCAN, keyboard_scan_task, NULL, 256) \ diff --git a/test/kb_scan.tasklist b/test/kb_scan.tasklist index 85aee504fa..7e46badf47 100644 --- a/test/kb_scan.tasklist +++ b/test/kb_scan.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(KEYSCAN, keyboard_scan_task, NULL, 256) \ diff --git a/test/lid_sw.tasklist b/test/lid_sw.tasklist index 26cfc53453..15b923abe3 100644 --- a/test/lid_sw.tasklist +++ b/test/lid_sw.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/lightbar.tasklist b/test/lightbar.tasklist index 71a89d6e07..2c10c3452b 100644 --- a/test/lightbar.tasklist +++ b/test/lightbar.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(LIGHTBAR, lightbar_task, NULL, LARGER_TASK_STACK_SIZE) diff --git a/test/math_util.tasklist b/test/math_util.tasklist index f6dffa16e8..6014b4d930 100644 --- a/test/math_util.tasklist +++ b/test/math_util.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/motion_angle.tasklist b/test/motion_angle.tasklist index 60688f9c34..5fa9d86717 100644 --- a/test/motion_angle.tasklist +++ b/test/motion_angle.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(MOTIONSENSE, motion_sense_task, NULL, TASK_STACK_SIZE) diff --git a/test/motion_angle_tablet.tasklist b/test/motion_angle_tablet.tasklist index 60688f9c34..5fa9d86717 100644 --- a/test/motion_angle_tablet.tasklist +++ b/test/motion_angle_tablet.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(MOTIONSENSE, motion_sense_task, NULL, TASK_STACK_SIZE) diff --git a/test/motion_lid.tasklist b/test/motion_lid.tasklist index 60688f9c34..5fa9d86717 100644 --- a/test/motion_lid.tasklist +++ b/test/motion_lid.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(MOTIONSENSE, motion_sense_task, NULL, TASK_STACK_SIZE) diff --git a/test/mutex.tasklist b/test/mutex.tasklist index d4865f3456..5ca24994a6 100644 --- a/test/mutex.tasklist +++ b/test/mutex.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(MTX3C, mutex_random_task, NULL, 384) \ diff --git a/test/nvmem.tasklist b/test/nvmem.tasklist index 25f61b13d6..43afb03fb5 100644 --- a/test/nvmem.tasklist +++ b/test/nvmem.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(NV_1, nvmem_first_task, NULL, 384) \ diff --git a/test/pingpong.tasklist b/test/pingpong.tasklist index 84cf7b11d4..afb62c6e95 100644 --- a/test/pingpong.tasklist +++ b/test/pingpong.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(TESTA, task_abc, NULL, TASK_STACK_SIZE) \ diff --git a/test/pinweaver.tasklist b/test/pinweaver.tasklist index de4df33e13..24870f2abb 100644 --- a/test/pinweaver.tasklist +++ b/test/pinweaver.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST diff --git a/test/power_button.tasklist b/test/power_button.tasklist index 26cfc53453..15b923abe3 100644 --- a/test/power_button.tasklist +++ b/test/power_button.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/powerdemo.tasklist b/test/powerdemo.tasklist index ecb39fd58b..e69b98baae 100644 --- a/test/powerdemo.tasklist +++ b/test/powerdemo.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(POWERDEMO, power_demo_task, NULL, TASK_STACK_SIZE) diff --git a/test/queue.tasklist b/test/queue.tasklist index 26cfc53453..15b923abe3 100644 --- a/test/queue.tasklist +++ b/test/queue.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/rma_auth.tasklist b/test/rma_auth.tasklist index e241aab4bb..7150f17cbd 100644 --- a/test/rma_auth.tasklist +++ b/test/rma_auth.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/rsa.tasklist b/test/rsa.tasklist index 30e5f7fc22..f46a2eaa1d 100644 --- a/test/rsa.tasklist +++ b/test/rsa.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST diff --git a/test/rtc.tasklist b/test/rtc.tasklist index e76178ba0a..80072bb620 100644 --- a/test/rtc.tasklist +++ b/test/rtc.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST diff --git a/test/sbs_charging_v2.tasklist b/test/sbs_charging_v2.tasklist index a87856a123..d38e4182b6 100644 --- a/test/sbs_charging_v2.tasklist +++ b/test/sbs_charging_v2.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(CHARGER, charger_task, NULL, TASK_STACK_SIZE) \ diff --git a/test/sha256.tasklist b/test/sha256.tasklist index e76178ba0a..80072bb620 100644 --- a/test/sha256.tasklist +++ b/test/sha256.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST diff --git a/test/shmalloc.tasklist b/test/shmalloc.tasklist index ab483e513f..a8ef01a489 100644 --- a/test/shmalloc.tasklist +++ b/test/shmalloc.tasklist @@ -5,15 +5,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST diff --git a/test/stress.tasklist b/test/stress.tasklist index 26cfc53453..15b923abe3 100644 --- a/test/stress.tasklist +++ b/test/stress.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/system.tasklist b/test/system.tasklist index 97128ce472..d95b1f72ac 100644 --- a/test/system.tasklist +++ b/test/system.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(CHIPSET, chipset_task, NULL, TASK_STACK_SIZE) diff --git a/test/thermal.tasklist b/test/thermal.tasklist index 8ef20bab32..f8f1ee6fc8 100644 --- a/test/thermal.tasklist +++ b/test/thermal.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(CHIPSET, chipset_task, NULL, TASK_STACK_SIZE) diff --git a/test/timer_calib.tasklist b/test/timer_calib.tasklist index b99c0016c7..d5fe088549 100644 --- a/test/timer_calib.tasklist +++ b/test/timer_calib.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(TESTTMR, timer_calib_task, NULL, TASK_STACK_SIZE) diff --git a/test/timer_dos.tasklist b/test/timer_dos.tasklist index 3ebce139e2..9ab5635261 100644 --- a/test/timer_dos.tasklist +++ b/test/timer_dos.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(TMRA, task_timer, (void *)1234, TASK_STACK_SIZE) \ diff --git a/test/timer_jump.tasklist b/test/timer_jump.tasklist index 26cfc53453..15b923abe3 100644 --- a/test/timer_jump.tasklist +++ b/test/timer_jump.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/usb_pd.tasklist b/test/usb_pd.tasklist index 4d95d0b156..9e4ac21c0e 100644 --- a/test/usb_pd.tasklist +++ b/test/usb_pd.tasklist @@ -4,15 +4,7 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST \ TASK_TEST(PD_C0, pd_task, NULL, LARGER_TASK_STACK_SIZE) \ diff --git a/test/utils.tasklist b/test/utils.tasklist index 26cfc53453..15b923abe3 100644 --- a/test/utils.tasklist +++ b/test/utils.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/utils_str.tasklist b/test/utils_str.tasklist index e241aab4bb..7150f17cbd 100644 --- a/test/utils_str.tasklist +++ b/test/utils_str.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/vboot.tasklist b/test/vboot.tasklist index e241aab4bb..7150f17cbd 100644 --- a/test/vboot.tasklist +++ b/test/vboot.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST /* No test task */ diff --git a/test/x25519.tasklist b/test/x25519.tasklist index e76178ba0a..80072bb620 100644 --- a/test/x25519.tasklist +++ b/test/x25519.tasklist @@ -4,14 +4,6 @@ */ /** - * List of enabled tasks in the priority order - * - * The first one has the lowest priority. - * - * For each task, use the macro TASK_TEST(n, r, d, s) where : - * 'n' in the name of the task - * 'r' in the main routine of the task - * 'd' in an opaque parameter passed to the routine at startup - * 's' is the stack size in bytes; must be a multiple of 8 + * See CONFIG_TASK_LIST in config.h for details. */ #define CONFIG_TEST_TASK_LIST |