summaryrefslogtreecommitdiff
path: root/board/dingdong/usb_pd_pdo.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/dingdong/usb_pd_pdo.c')
-rw-r--r--board/dingdong/usb_pd_pdo.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/board/dingdong/usb_pd_pdo.c b/board/dingdong/usb_pd_pdo.c
new file mode 100644
index 0000000000..990c2de5ab
--- /dev/null
+++ b/board/dingdong/usb_pd_pdo.c
@@ -0,0 +1,20 @@
+/* Copyright 2021 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "compile_time_macros.h"
+#include "usb_pd.h"
+#include "usb_pd_pdo.h"
+
+#define PDO_FIXED_FLAGS PDO_FIXED_COMM_CAP
+
+/* Source PDOs */
+const uint32_t pd_src_pdo[] = {};
+const int pd_src_pdo_cnt = ARRAY_SIZE(pd_src_pdo);
+
+/* Fake PDOs : we just want our pre-defined voltages */
+const uint32_t pd_snk_pdo[] = {
+ PDO_FIXED(5000, 500, PDO_FIXED_FLAGS),
+};
+const int pd_snk_pdo_cnt = ARRAY_SIZE(pd_snk_pdo);