summaryrefslogtreecommitdiff
path: root/board/redrix
diff options
context:
space:
mode:
authorDevin Lu <Devin.Lu@quantatw.com>2021-08-03 20:27:49 +0800
committerCommit Bot <commit-bot@chromium.org>2021-08-13 05:25:09 +0000
commitc425ace909b134095698dd604eb685cd2f620256 (patch)
treeb5e888f6b7a16e9acbbde5e89b595cc0a9580796 /board/redrix
parenta388377c7699bcbca57bb495a0e55ea7543b394d (diff)
downloadchrome-ec-c425ace909b134095698dd604eb685cd2f620256.tar.gz
nct38xx: Split after-reset timestabilize-14151.B-main
Split after-reset time for NCT3807 and NCT3808, since the after-reset time is not the same. From the datasheet (section 4.4.2 Reset Timing) as following: * | Min | Max | * ----------------------+-------+-------+ * NCT3807 (single port) | x | 1.5ms | * ----------------------+-------+-------+ * NCT3808 (dual port) | x | 3ms | * ----------------------+-------+-------+ Currently the after-reset time for NCT3807 is zero. Change to 2ms to fit specification as well. BUG=none BRANCH=none TEST=On Redrix. Initial success with NCT3807. TEST=On Dirinboz. Initial success with NCT3807. TEST=make buildall. Signed-off-by: Devin Lu <Devin.Lu@quantatw.com> Change-Id: I1f47f57c0d8955946b1c2522e1a1736739217f41 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3068492 Reviewed-by: caveh jalali <caveh@chromium.org>
Diffstat (limited to 'board/redrix')
-rw-r--r--board/redrix/usbc_config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/redrix/usbc_config.c b/board/redrix/usbc_config.c
index 906147a696..f0f39b6d87 100644
--- a/board/redrix/usbc_config.c
+++ b/board/redrix/usbc_config.c
@@ -197,8 +197,8 @@ void board_reset_pd_mcu(void)
nct38xx_reset_notify(USBC_PORT_C1);
/* wait for chips to come up */
- if (NCT38XX_RESET_POST_DELAY_MS != 0)
- msleep(NCT38XX_RESET_POST_DELAY_MS);
+ if (NCT3807_RESET_POST_DELAY_MS != 0)
+ msleep(NCT3807_RESET_POST_DELAY_MS);
}
static void board_tcpc_init(void)