summaryrefslogtreecommitdiff
path: root/driver/tcpm/nct38xx.h
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 /driver/tcpm/nct38xx.h
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 'driver/tcpm/nct38xx.h')
-rw-r--r--driver/tcpm/nct38xx.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/driver/tcpm/nct38xx.h b/driver/tcpm/nct38xx.h
index f4923b700d..714a2f8d46 100644
--- a/driver/tcpm/nct38xx.h
+++ b/driver/tcpm/nct38xx.h
@@ -75,7 +75,18 @@
#define NCT38XX_REG_VBC_FAULT_CTL_VC_OVP_OFF (1 << 5)
#define NCT38XX_RESET_HOLD_DELAY_MS 1
-#define NCT38XX_RESET_POST_DELAY_MS 0
+
+/*
+ * From the datasheet (section 4.4.2 Reset Timing) as following:
+ * | Min | Max |
+ * ----------------------+-------+-------+
+ * NCT3807 (single port) | x | 1.5ms |
+ * ----------------------+-------+-------+
+ * NCT3808 (dual port) | x | 3ms |
+ * ----------------------+-------+-------+
+ */
+#define NCT3807_RESET_POST_DELAY_MS 2
+#define NCT3808_RESET_POST_DELAY_MS 3
extern const struct tcpm_drv nct38xx_tcpm_drv;