summaryrefslogtreecommitdiff
path: root/baseboard/zork/cbi_ssfc.h
blob: 9a8382bfd4f744c2fac2327f96ad34d6956a4a9e (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
/* 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 _ZORK_CBI_SSFC__H_
#define _ZORK_CBI_SSFC__H_

#include "stdint.h"

/****************************************************************************
 * Zork CBI Second Source Factory Cache
 */

/*
 * Base Sensor (Bits 0-2)
 */
enum ec_ssfc_base_gyro_sensor {
	SSFC_BASE_GYRO_NONE = 0,
	SSFC_BASE_GYRO_BMI160 = 1,
	SSFC_BASE_GYRO_LSM6DSM = 2,
	SSFC_BASE_GYRO_ICM426XX = 3,
};
#define SSFC_BASE_GYRO_OFFSET 0
#define SSFC_BASE_GYRO_MASK GENMASK(2, 0)

enum ec_ssfc_spkr_auto_mode {
	SSFC_SPKR_AUTO_MODE_OFF = 0,
	SSFC_SPKR_AUTO_MODE_ON = 1,
};
#define SSFC_SPKR_AUTO_MODE_OFFSET 3
#define SSFC_SPKR_AUTO_MODE_MASK GENMASK(3, 3)

/*
 * eDP PHY Alternate Tuning (Bits 4-5)
 */
enum ec_ssfc_edp_phy_alt_tuning {
	SSFC_EDP_PHY_ALT_TUNING_0 = 0,
	SSFC_EDP_PHY_ALT_TUNING_1 = 1,
	SSFC_EDP_PHY_ALT_TUNING_2 = 2,
	SSFC_EDP_PHY_ALT_TUNING_3 = 3,
};
#define SSFC_EDP_PHY_ALT_TUNING_OFFSET 4
#define SSFC_EDP_PHY_ALT_TUNING_MASK GENMASK(5, 4)

/**
 * Get the Base sensor type from SSFC_CONFIG.
 *
 * @return the Base sensor board type.
 */
enum ec_ssfc_base_gyro_sensor get_cbi_ssfc_base_sensor(void);

/**
 * Get whether speaker amp auto mode is enabled from SSFC.
 */
enum ec_ssfc_spkr_auto_mode get_cbi_ssfc_spkr_auto_mode(void);

/**
 * Get the eDP PHY alternate tuning from SSFC.
 */
enum ec_ssfc_edp_phy_alt_tuning get_cbi_ssfc_edp_phy_alt_tuning(void);

#endif /* _ZORK_CBI_SSFC__H_ */