summaryrefslogtreecommitdiff
path: root/include/pwr_defs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/pwr_defs.h')
-rw-r--r--include/pwr_defs.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/pwr_defs.h b/include/pwr_defs.h
new file mode 100644
index 0000000000..c01e602397
--- /dev/null
+++ b/include/pwr_defs.h
@@ -0,0 +1,25 @@
+/* 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.
+ */
+
+#ifndef __CROS_EC_PWR_DEFS_H
+#define __CROS_EC_PWR_DEFS_H
+
+#include "system.h"
+
+struct pwr_con_t {
+ uint16_t volts;
+ uint16_t milli_amps;
+};
+
+/*
+ * Return power (in milliwatts) corresponding to input power connection
+ * struct entry.
+ */
+inline int pwr_con_to_milliwatts(struct pwr_con_t *pwr)
+{
+ return (pwr->volts * pwr->milli_amps);
+}
+
+#endif