summaryrefslogtreecommitdiff
path: root/chip/it83xx/gpio.c
diff options
context:
space:
mode:
authorDino Li <dino.li@ite.com.tw>2015-11-03 01:40:09 +0800
committerchrome-bot <chrome-bot@chromium.org>2015-11-05 11:10:30 -0800
commit032846bc3264a4d5ae82ad1efac9fc21ee64e88f (patch)
tree60a72bab040c326dd80707d44c802fe3ce954c0b /chip/it83xx/gpio.c
parentf9ffa951c1eda17f6aa5cea66b1842b0bbf5d75f (diff)
downloadchrome-ec-032846bc3264a4d5ae82ad1efac9fc21ee64e88f.tar.gz
it8380dev: modify hwtimer and LPC wake up
1. In combinational mode and clock source is 8MHz, if timer 3 counter register always equals to 7, then timer 4 will be a 32-bit MHz free-running counter. 2. Fix TIMER_32P768K_CNT_TO_US(), each count should be 30.5175 us, not 32.768us. 3. Fix TIMER_CNT_8M_32P768K(). 4. Make sure LPC wake up interrupt is enabled before entering doze / deep doze mode. Signed-off-by: Dino Li <dino.li@ite.com.tw> BRANCH=none BUG=none TEST=1. Console commands: 'gettime', 'timerinfo', 'waitms', and 'forcetime'. 2. Enabled Hook debug, no warning message received (48hrs). 3. Tested ectool command 'version' x 2000. Change-Id: I796d985361d3c18bc5813c58705b41923e28c5b1 Reviewed-on: https://chromium-review.googlesource.com/310039 Commit-Ready: Dino Li <dino.li@ite.com.tw> Tested-by: Dino Li <dino.li@ite.com.tw> Reviewed-by: Randall Spangler <rspangler@chromium.org>
Diffstat (limited to 'chip/it83xx/gpio.c')
-rw-r--r--chip/it83xx/gpio.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/chip/it83xx/gpio.c b/chip/it83xx/gpio.c
index 48f8d3cc6e..cf0e51a727 100644
--- a/chip/it83xx/gpio.c
+++ b/chip/it83xx/gpio.c
@@ -451,12 +451,6 @@ static void __gpio_irq(void)
#endif
if (irq == IT83XX_IRQ_WKINTAD) {
-#if defined(CONFIG_LPC) && defined(CONFIG_IT83XX_LPC_ACCESS_INT)
- if (BRAM_LPC_ACCESS == LPC_ACCESS_INT_BUSY)
- task_disable_irq(IT83XX_IRQ_WKINTAD);
-#else
- task_disable_irq(IT83XX_IRQ_WKINTAD);
-#endif
IT83XX_WUC_WUESR4 = 0xff;
task_clear_pending_irq(IT83XX_IRQ_WKINTAD);
return;