summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/common/basecode/include/intelbasecode/debug_feature.h
blob: c8e23822d2f00b9a4804a957436ef77f344a5caf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef SOC_INTEL_COMMON_BASECODE_DEBUG_FEATURE_H
#define SOC_INTEL_COMMON_BASECODE_DEBUG_FEATURE_H

#include <types.h>

/* Check if CSE firmware update is enabled or not */
bool is_debug_cse_fw_update_disable(void);

/*
 * Reads OEM Section area in the Descriptor Region and
 * populates debug_feature_cntrl structure.
 */
enum cb_err dbg_feature_cntrl_init(void);

#endif