summaryrefslogtreecommitdiff
path: root/board/dojo/cbi_ssfc.h
diff options
context:
space:
mode:
Diffstat (limited to 'board/dojo/cbi_ssfc.h')
-rw-r--r--board/dojo/cbi_ssfc.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/board/dojo/cbi_ssfc.h b/board/dojo/cbi_ssfc.h
new file mode 100644
index 0000000000..da37dbaca1
--- /dev/null
+++ b/board/dojo/cbi_ssfc.h
@@ -0,0 +1,57 @@
+/* Copyright 2022 The ChromiumOS Authors
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef _DOJO_CBI_SSFC__H_
+#define _DOJO_CBI_SSFC__H_
+
+#include "stdint.h"
+
+/****************************************************************************
+ * Dojo CBI Second Source Factory Cache
+ */
+
+/*
+ * Base Sensor (Bits 0-2)
+ */
+enum ec_ssfc_base_sensor {
+ SSFC_SENSOR_BASE_DEFAULT = 0,
+ SSFC_SENSOR_ICM42607 = 1,
+ SSFC_SENSOR_ICM426XX = 2,
+ SSFC_SENSOR_BMI260 = 3,
+};
+
+/*
+ * Lid Sensor (Bits 3-5)
+ */
+enum ec_ssfc_lid_sensor {
+ SSFC_SENSOR_LID_DEFAULT = 0,
+ SSFC_SENSOR_BMA422 = 1,
+ SSFC_SENSOR_KX022 = 2,
+};
+
+union dojo_cbi_ssfc {
+ struct {
+ uint32_t base_sensor : 3;
+ uint32_t lid_sensor : 3;
+ uint32_t reserved_2 : 26;
+ };
+ uint32_t raw_value;
+};
+
+/**
+ * Get the Base sensor type from SSFC_CONFIG.
+ *
+ * @return the Base sensor board type.
+ */
+enum ec_ssfc_base_sensor get_cbi_ssfc_base_sensor(void);
+
+/**
+ * Get the Lid sensor type from SSFC_CONFIG.
+ *
+ * @return the Lid sensor board type.
+ */
+enum ec_ssfc_lid_sensor get_cbi_ssfc_lid_sensor(void);
+
+#endif /* _DOJO_CBI_SSFC__H_ */