summaryrefslogtreecommitdiff
path: root/baseboard/zork/cbi_ec_fw_config.c
blob: cbb0821c4205a081fce150022b3b67b0b5a784a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/* Copyright 2020 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 "common.h"
#include "cbi_ec_fw_config.h"
#include "cros_board_info.h"

/****************************************************************************
 * CBI Zork EC FW Configuration
 */
uint32_t get_cbi_fw_config(void)
{
	static uint32_t cached_fw_config = UNINITIALIZED_FW_CONFIG;

	if (cached_fw_config == UNINITIALIZED_FW_CONFIG) {
		uint32_t val;

		if (cbi_get_fw_config(&val) == EC_SUCCESS)
			cached_fw_config = val;
	}
	return cached_fw_config;
}

/*
 * get_cbi_ec_cfg_usb_db() will return the DB option number.
 */
enum ec_cfg_usb_db_type ec_config_get_usb_db(void)
{
	return ((get_cbi_fw_config() & EC_CFG_USB_DB_MASK)
			>> EC_CFG_USB_DB_L);
}

/*
 * get_cbi_ec_cfg_usb_mb() will return the MB option number.
 */
enum ec_cfg_usb_mb_type ec_config_get_usb_mb(void)
{
	return ((get_cbi_fw_config() & EC_CFG_USB_MB_MASK)
			>> EC_CFG_USB_MB_L);
}

/*
 * ec_config_has_lid_accel_sensor() will return ec_cfg_lid_accel_sensor_type
 */
enum ec_cfg_lid_accel_sensor_type ec_config_has_lid_accel_sensor(void)
{
	return ((get_cbi_fw_config() & EC_CFG_LID_ACCEL_SENSOR_MASK)
			>> EC_CFG_LID_ACCEL_SENSOR_L);
}

/*
 * ec_config_has_base_gyro_sensor() will return ec_cfg_base_gyro_sensor_type
 */
enum ec_cfg_base_gyro_sensor_type ec_config_has_base_gyro_sensor(void)
{
	return ((get_cbi_fw_config() & EC_CFG_BASE_GYRO_SENSOR_MASK)
			>> EC_CFG_BASE_GYRO_SENSOR_L);
}

/*
 * ec_config_has_pwm_keyboard_backlight() will return 1 is present or 0
 */
enum ec_cfg_pwm_keyboard_backlight_type ec_config_has_pwm_keyboard_backlight(
									void)
{
	return ((get_cbi_fw_config() & EC_CFG_PWM_KEYBOARD_BACKLIGHT_MASK)
			>> EC_CFG_PWM_KEYBOARD_BACKLIGHT_L);
}

/*
 * ec_config_has_lid_angle_tablet_mode() will return 1 is present or 0
 */
enum ec_cfg_lid_angle_tablet_mode_type ec_config_has_lid_angle_tablet_mode(
									void)
{
	return ((get_cbi_fw_config() & EC_CFG_LID_ANGLE_TABLET_MODE_MASK)
			>> EC_CFG_LID_ANGLE_TABLET_MODE_L);
}

/*
 * ec_config_lte_present() will return 1 if present else 0.
 */
enum ec_cfg_lte_present_type ec_config_lte_present(void)
{
	return ((get_cbi_fw_config() & EC_CFG_LTE_PRESENT_MASK)
			>> EC_CFG_LTE_PRESENT_L);
}

/*
 * ec_config_keyboard_layout() will return keyboard layout type.
 */
enum ec_cfg_keyboard_layout_type ec_config_keyboard_layout(void)
{
	return ((get_cbi_fw_config() & EC_CFG_KEYBOARD_LAYOUT_MASK)
			>> EC_CFG_KEYBOARD_LAYOUT_L);
}