blob: 570002507d23229157e135ee46eae6d0c6354df9 [file] [log] [blame]
Angel Pons381c4eb2020-04-03 01:22:06 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Kyösti Mälkkie75deb62014-06-26 09:12:54 +03002
3/**
4 * @file
5 *
6 * IDS Option File
7 *
8 * This file is used to switch on/off IDS features.
9 *
10 * @xrefitem bom "File Content Label" "Release Content"
11 * @e project: AGESA
12 * @e sub-project: Core
13 * @e \$Revision: 12067 $ @e \$Date: 2009-04-11 04:34:13 +0800 (Sat, 11 Apr 2009) $
14 */
15#ifndef _OPTION_IDS_H_
16#define _OPTION_IDS_H_
17
18/**
19 *
20 * This file generates the defaults tables for the Integrated Debug Support
21 * Module. The documented build options are imported from a user controlled
22 * file for processing. The build options for the Integrated Debug Support
23 * Module are listed below:
24 *
25 * IDSOPT_IDS_ENABLED
26 * IDSOPT_ERROR_TRAP_ENABLED
27 * IDSOPT_CONTROL_ENABLED
28 * IDSOPT_TRACING_ENABLED
29 * IDSOPT_PERF_ANALYSIS
30 * IDSOPT_ASSERT_ENABLED
Kyösti Mälkkie75deb62014-06-26 09:12:54 +030031 * IDSOPT_CAR_CORRUPTION_CHECK_ENABLED
32 *
33 **/
34
35#define IDSOPT_IDS_ENABLED TRUE
36//#define IDSOPT_CONTROL_ENABLED TRUE
37//#define IDSOPT_TRACING_ENABLED TRUE
38#define IDSOPT_TRACING_CONSOLE_SERIALPORT TRUE
39//#define IDSOPT_PERF_ANALYSIS TRUE
40#define IDSOPT_ASSERT_ENABLED TRUE
Kyösti Mälkkie75deb62014-06-26 09:12:54 +030041
Dave Frodin83405a12014-06-05 11:49:04 -060042#endif /* _OPTION_IDS_H_ */