summaryrefslogtreecommitdiff
path: root/board/damu/ec.tasklist
diff options
context:
space:
mode:
authortim <tim2.lin@ite.corp-partner.google.com>2020-02-14 11:55:48 +0800
committerCommit Bot <commit-bot@chromium.org>2020-02-17 10:24:39 +0000
commitc2797a55a58678e3118aa0b95431c78f02b1ec3d (patch)
tree04290d466feeadef28ad620a22da9bca73f92b24 /board/damu/ec.tasklist
parenta3cf5101156136e6a17434f57e9e521ed624eca8 (diff)
downloadchrome-ec-c2797a55a58678e3118aa0b95431c78f02b1ec3d.tar.gz
driver/ioexpander_it8801: add I/O expander driver for GPIO
IT8801 is an I/O expander with the gpio. Add api compatible with ioexpander_drv so the main io expander framework can make use of the pins on the it8801. BUG=b/138352732, b/146996723 BRANCH=none TEST=Use gpio.inc to declare the gpio state. The console command #ioexget can get as follows: 0 O L IT8801_G0_00 1 O H IT8801_G0_03 1 O H IT8801_G0_04 0 O L IT8801_G0_06 0 O L IT8801_G0_07 1 O H ODR IT8801_G1_10 1 O H ODR IT8801_G1_11 1 O H ODR IT8801_G1_12 1 I H IT8801_G1_13 1 I H IT8801_G1_14 1 I H IT8801_G1_15 1 O H ODR IT8801_G2_20 1 O H ODR IT8801_G2_21 0 O L ODR IT8801_G2_22 0 O L ODR IT8801_G2_23 TEST=jacuzzi, juniper and kappa still compile TEST=keyboard scanning still works TEST=keyboard scanning now uses fewer i2c packets due to caching of GPIO23 Change-Id: I7ad89058ccd43b073d648e93877b86d6f187b5df Signed-off-by: tim <tim2.lin@ite.corp-partner.google.com> Signed-off-by: Alexandru M Stan <amstan@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1712887 Reviewed-by: David Huang <David.Huang@quantatw.com> Reviewed-by: Ting Shen <phoenixshen@chromium.org> Tested-by: David Huang <David.Huang@quantatw.com>
Diffstat (limited to 'board/damu/ec.tasklist')
-rw-r--r--board/damu/ec.tasklist1
1 files changed, 1 insertions, 0 deletions
diff --git a/board/damu/ec.tasklist b/board/damu/ec.tasklist
index f4fb8670ea..4b7574652e 100644
--- a/board/damu/ec.tasklist
+++ b/board/damu/ec.tasklist
@@ -15,6 +15,7 @@
TASK_NOTEST(PDCMD, pd_command_task, NULL, 1024) \
TASK_ALWAYS(HOSTCMD, host_command_task, NULL, 1024) \
TASK_ALWAYS(CONSOLE, console_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_ALWAYS(PD_C0, pd_task, NULL, 1280) \
TASK_ALWAYS(PD_INT_C0, pd_interrupt_handler_task, 0, 1024) \
TASK_ALWAYS_RO(EMMC, emmc_task, NULL, LARGER_TASK_STACK_SIZE)