summaryrefslogtreecommitdiff
path: root/include/usb_pd.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/usb_pd.h')
-rw-r--r--include/usb_pd.h19
1 files changed, 7 insertions, 12 deletions
diff --git a/include/usb_pd.h b/include/usb_pd.h
index 63d20887db..4b7faa9f0a 100644
--- a/include/usb_pd.h
+++ b/include/usb_pd.h
@@ -16,21 +16,16 @@
#ifdef CONFIG_USB_PD_PORT_COUNT
/*
* Define PD_PORT_TO_TASK_ID() and TASK_ID_TO_PD_PORT() macros to
- * go between PD port number and task ID.
+ * go between PD port number and task ID. Assume that TASK_ID_PD_C0 is the
+ * lowest task ID and IDs are on a continuous range.
*/
-#if CONFIG_USB_PD_PORT_COUNT == 1
-#ifdef HAS_TASK_PD
-#define PD_PORT_TO_TASK_ID(port) TASK_ID_PD
-#elif defined(HAS_TASK_PD_C0)
-#define PD_PORT_TO_TASK_ID(port) TASK_ID_PD_C0
+#ifdef HAS_TASK_PD_C0
+#define PD_PORT_TO_TASK_ID(port) (TASK_ID_PD_C0 + (port))
+#define TASK_ID_TO_PD_PORT(id) ((id) - TASK_ID_PD_C0)
#else
#define PD_PORT_TO_TASK_ID(port) -1 /* dummy task ID */
-#endif
-#define TASK_ID_TO_PD_PORT(id) 0
-#elif CONFIG_USB_PD_PORT_COUNT == 2
-#define PD_PORT_TO_TASK_ID(port) ((port) ? TASK_ID_PD_C1 : TASK_ID_PD_C0)
-#define TASK_ID_TO_PD_PORT(id) ((id) == TASK_ID_PD_C0 ? 0 : 1)
-#endif
+#define TASK_ID_TO_PD_PORT(id) 0
+#endif /* CONFIG_COMMON_RUNTIME */
#endif /* CONFIG_USB_PD_PORT_COUNT */
enum pd_rx_errors {