summaryrefslogtreecommitdiff
path: root/board/cyan/ec.tasklist
diff options
context:
space:
mode:
authorKevin K Wong <kevin.k.wong@intel.com>2015-04-20 17:48:21 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-04-27 23:29:30 +0000
commit5a18413ff528331a229fe8734c6bca932e5478e1 (patch)
treeed2469096bf0612fc16fde5e8b4a13fb24b1db80 /board/cyan/ec.tasklist
parentb35e4d47fc55a8ad1e1aa3f9818576176510008d (diff)
downloadchrome-ec-5a18413ff528331a229fe8734c6bca932e5478e1.tar.gz
mec1322: Added task-based Port80 POST code support.
With mec1322's EMI set to decode IO 0x800, it does not have any other interfaces to support POST code via IO 0x80. This change is to enable Port80 POST code support via polling method. Limitation: - POST Code 0xFF will be ignored. - POST Code frequency is greater than 1 msec. BUG=chrome-os-partner:39386 TEST=Verified Port80 POST code is captured in EC console. Verified "port80 task" console command will disable/enable Port80 task. Verified "port80 poll" will get the last Port80 POST code. BRANCH=none Change-Id: I27e53e84b5be1fd98464a44407dd58b93d8c798d Signed-off-by: Kevin K Wong <kevin.k.wong@intel.com> Reviewed-on: https://chromium-review.googlesource.com/266783 Reviewed-by: Randall Spangler <rspangler@chromium.org>
Diffstat (limited to 'board/cyan/ec.tasklist')
-rw-r--r--board/cyan/ec.tasklist1
1 files changed, 1 insertions, 0 deletions
diff --git a/board/cyan/ec.tasklist b/board/cyan/ec.tasklist
index 73f54cca53..2fc581d310 100644
--- a/board/cyan/ec.tasklist
+++ b/board/cyan/ec.tasklist
@@ -23,6 +23,7 @@
TASK_NOTEST(KEYPROTO, keyboard_protocol_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(HOSTCMD, host_command_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(CONSOLE, console_task, NULL, TASK_STACK_SIZE) \
+ TASK_NOTEST(PORT80, port80_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)