summaryrefslogtreecommitdiff
path: root/baseboard/dedede/cbi_fw_config.h
blob: cca9af68b4a8dc316062f3d58fa21106ef353515 (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
/* 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.
 */

#ifndef _DEDEDE_CBI_FW_CONFIG__H_
#define _DEDEDE_CBI_FW_CONFIG__H_

/****************************************************************************
 * Dedede CBI FW Configuration
 */

/*
 * Daughter Board (Bits 0-3)
 */
enum fw_config_db {
	DB_NONE,
	DB_2C,
	DB_1C_LTE,
	DB_1A_HDMI,
	DB_1C,
};
#define FW_CONFIG_DB_OFFSET	0
#define FW_CONFIG_DB_MASK	GENMASK(3, 0)

enum fw_config_db get_cbi_fw_config_db(void);

#endif /* _DEDEDE_CBI_FW_CONFIG__H_ */