summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorRuibin Chang <Ruibin.Chang@ite.com.tw>2018-09-03 16:59:05 +0800
committerchrome-bot <chrome-bot@chromium.org>2018-09-07 07:18:07 -0700
commit09d4918f464b69390f0c2d12cdd8c6aeafcb2cae (patch)
tree8e9c5fe4c694d61e587f47d362f9e58eefee1df3 /core
parenta38f3f48b4eb046e0015b10b3d09decdff50d560 (diff)
downloadchrome-ec-09d4918f464b69390f0c2d12cdd8c6aeafcb2cae.tar.gz
tcpm:it83xx: GRL-USB-PD TDA2.1.2.2 BIST test
In our design once enter BIST test data mode, Hw don't interrupt Fw due to any Rx received packet. But when port partner re-connect in this mode, it will cause that our pd port doesn't respond packet which port partner transmits. When port partner disconnects, so we need to reset our pd port protocol layer and PHY to leave BIST test data mode and let Hw can interrupt Fw. With this modify it can pass GRL-USB-PD compliance TDA2.1.2.2 test item. BUG=b:112602596 BRANCH=none TEST=GRL-USB-PD compliance test. Change-Id: I30526b5d796e3eabc9af2f524071c98bb0ef5abf Signed-off-by: Ruibin Chang <Ruibin.Chang@ite.com.tw> Reviewed-on: https://chromium-review.googlesource.com/1170718 Reviewed-by: Jett Rink <jettrink@chromium.org>
Diffstat (limited to 'core')
-rw-r--r--core/cortex-m/ec.lds.S4
-rw-r--r--core/cortex-m0/ec.lds.S4
-rw-r--r--core/host/host_exe.lds4
-rw-r--r--core/minute-ia/ec.lds.S4
-rw-r--r--core/nds32/ec.lds.S4
5 files changed, 20 insertions, 0 deletions
diff --git a/core/cortex-m/ec.lds.S b/core/cortex-m/ec.lds.S
index df7aea5fde..5b628f897f 100644
--- a/core/cortex-m/ec.lds.S
+++ b/core/cortex-m/ec.lds.S
@@ -223,6 +223,10 @@ SECTIONS
KEEP(*(.rodata.HOOK_SECOND))
__hooks_second_end = .;
+ __hooks_usb_pd_disconnect = .;
+ KEEP(*(.rodata.HOOK_USB_PD_DISCONNECT))
+ __hooks_usb_pd_disconnect_end = .;
+
__deferred_funcs = .;
KEEP(*(.rodata.deferred))
__deferred_funcs_end = .;
diff --git a/core/cortex-m0/ec.lds.S b/core/cortex-m0/ec.lds.S
index 68cfa6aa6f..2b4a88d85a 100644
--- a/core/cortex-m0/ec.lds.S
+++ b/core/cortex-m0/ec.lds.S
@@ -158,6 +158,10 @@ SECTIONS
KEEP(*(.rodata.HOOK_SECOND))
__hooks_second_end = .;
+ __hooks_usb_pd_disconnect = .;
+ KEEP(*(.rodata.HOOK_USB_PD_DISCONNECT))
+ __hooks_usb_pd_disconnect_end = .;
+
__deferred_funcs = .;
KEEP(*(.rodata.deferred))
__deferred_funcs_end = .;
diff --git a/core/host/host_exe.lds b/core/host/host_exe.lds
index 8d59109b94..f4e72ec0d7 100644
--- a/core/host/host_exe.lds
+++ b/core/host/host_exe.lds
@@ -97,6 +97,10 @@ SECTIONS {
*(.rodata.HOOK_SECOND)
__hooks_second_end = .;
+ __hooks_usb_pd_disconnect = .;
+ *(.rodata.HOOK_USB_PD_DISCONNECT)
+ __hooks_usb_pd_disconnect_end = .;
+
__deferred_funcs = .;
*(.rodata.deferred)
__deferred_funcs_end = .;
diff --git a/core/minute-ia/ec.lds.S b/core/minute-ia/ec.lds.S
index 88cc0d61e2..e39342ece8 100644
--- a/core/minute-ia/ec.lds.S
+++ b/core/minute-ia/ec.lds.S
@@ -128,6 +128,10 @@ SECTIONS
KEEP(*(.rodata.HOOK_SECOND))
__hooks_second_end = .;
+ __hooks_usb_pd_disconnect = .;
+ KEEP(*(.rodata.HOOK_USB_PD_DISCONNECT))
+ __hooks_usb_pd_disconnect_end = .;
+
__deferred_funcs = .;
KEEP(*(.rodata.deferred))
__deferred_funcs_end = .;
diff --git a/core/nds32/ec.lds.S b/core/nds32/ec.lds.S
index 999eb8fbc6..7048fe0cfd 100644
--- a/core/nds32/ec.lds.S
+++ b/core/nds32/ec.lds.S
@@ -155,6 +155,10 @@ SECTIONS
KEEP(*(.rodata.HOOK_SECOND))
__hooks_second_end = .;
+ __hooks_usb_pd_disconnect = .;
+ KEEP(*(.rodata.HOOK_USB_PD_DISCONNECT))
+ __hooks_usb_pd_disconnect_end = .;
+
__deferred_funcs = .;
KEEP(*(.rodata.deferred))
__deferred_funcs_end = .;