summaryrefslogtreecommitdiff
path: root/common/usbc/usb_sm.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/usbc/usb_sm.c')
-rw-r--r--common/usbc/usb_sm.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/common/usbc/usb_sm.c b/common/usbc/usb_sm.c
index bb5c923dec..800181f7b2 100644
--- a/common/usbc/usb_sm.c
+++ b/common/usbc/usb_sm.c
@@ -192,3 +192,35 @@ void run_state(const int port, struct sm_ctx *const ctx)
internal->running = false;
}
+/* TODO (b/148528713): Need to enable Thunderbolt-compatible mode on TCPMv2 */
+union tbt_mode_resp_cable get_cable_tbt_vdo(int port)
+{
+ union tbt_mode_resp_cable cable_resp = {
+ .raw_value = 0,
+ };
+
+ return cable_resp;
+}
+
+union tbt_mode_resp_device get_dev_tbt_vdo(int port)
+{
+ union tbt_mode_resp_device dev_resp = {
+ .raw_value = 0,
+ };
+
+ return dev_resp;
+}
+
+enum tbt_compat_cable_speed get_tbt_cable_speed(int port)
+{
+ enum tbt_compat_cable_speed cable_speed = 0;
+
+ return cable_speed;
+}
+
+enum tbt_compat_rounded_support get_tbt_rounded_support(int port)
+{
+ enum tbt_compat_rounded_support tbt_round = 0;
+
+ return tbt_round;
+}