summaryrefslogtreecommitdiff
path: root/board/kinox/fw_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'board/kinox/fw_config.h')
-rw-r--r--board/kinox/fw_config.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/board/kinox/fw_config.h b/board/kinox/fw_config.h
new file mode 100644
index 0000000000..02e46e10b6
--- /dev/null
+++ b/board/kinox/fw_config.h
@@ -0,0 +1,42 @@
+/* Copyright 2022 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 __BOARD_KINOX_FW_CONFIG_H_
+#define __BOARD_KINOX_FW_CONFIG_H_
+
+#include <stdint.h>
+
+/****************************************************************************
+ * CBI FW_CONFIG layout for kinox board.
+ *
+ * Source of truth is the project/brask/kinox/config.star configuration file.
+ */
+
+enum ec_cfg_bj_power {
+ BJ_135W = 0,
+ BJ_230W = 1
+};
+
+union kinox_cbi_fw_config {
+ struct {
+ uint32_t bj_power : 2;
+ uint32_t reserved_1 : 30;
+ };
+ uint32_t raw_value;
+};
+
+/**
+ * Read the cached FW_CONFIG. Guaranteed to have valid values.
+ *
+ * @return the FW_CONFIG for the board.
+ */
+union kinox_cbi_fw_config get_fw_config(void);
+
+/**
+ * Get the barrel-jack power from FW_CONFIG.
+ */
+void ec_bj_power(uint32_t *voltage, uint32_t *current);
+
+#endif /* __BOARD_KINOX_FW_CONFIG_H_ */