From 79db6d22a27670f8db06897bc2d44fefab664a84 Mon Sep 17 00:00:00 2001 From: Duncan Laurie Date: Mon, 1 Jun 2015 07:44:42 -0700 Subject: [PATCH] glados: Enable port80 task Having port80 codes is useful for bringup BUG=chrome-os-partner:40677 BRANCH=none TEST=boot on glados and see port80 output Change-Id: I58d0024043dc52b24a12525cb14115efbb6dd295 Signed-off-by: Duncan Laurie Reviewed-on: https://chromium-review.googlesource.com/274148 Reviewed-by: Shawn N Commit-Queue: Shawn N Tested-by: Shawn N Reviewed-by: Alec Berg --- board/glados/board.h | 1 + board/glados/ec.tasklist | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/board/glados/board.h b/board/glados/board.h index e7476cb3ff..3b0b0a431a 100644 --- a/board/glados/board.h +++ b/board/glados/board.h @@ -28,6 +28,7 @@ #define CONFIG_KEYBOARD_PROTOCOL_8042 #define CONFIG_LED_COMMON #define CONFIG_LID_SWITCH +#define CONFIG_PORT80_TASK_EN #define CONFIG_POWER_BUTTON #define CONFIG_POWER_BUTTON_X86 #define CONFIG_POWER_COMMON diff --git a/board/glados/ec.tasklist b/board/glados/ec.tasklist index 481d8dc91c..cfc0c4f10a 100644 --- a/board/glados/ec.tasklist +++ b/board/glados/ec.tasklist @@ -26,4 +26,5 @@ TASK_ALWAYS(CONSOLE, console_task, NULL, TASK_STACK_SIZE) \ TASK_ALWAYS(POWERBTN, power_button_task, NULL, TASK_STACK_SIZE) \ TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, TASK_STACK_SIZE) \ - TASK_ALWAYS(PD, pd_task, NULL, LARGER_TASK_STACK_SIZE) + TASK_ALWAYS(PD, pd_task, NULL, LARGER_TASK_STACK_SIZE) \ + TASK_NOTEST(PORT80, port80_task, NULL, TASK_STACK_SIZE)