blob: 3655b5e78433a2b6a80d2fe889371c63632ca7ce [file] [log] [blame]
Dave Frodin892d1292013-12-11 12:38:40 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 Advanced Micro Devices, Inc.
5 * Copyright (C) 2013 Sage Electronic Engineering, LLC
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21/**
22 * @file
23 *
24 * IDS Option File
25 *
26 * This file is used to switch on/off IDS features.
27 *
28 * @xrefitem bom "File Content Label" "Release Content"
29 * @e project: AGESA
30 * @e sub-project: Core
31 * @e \$Revision: 12067 $ @e \$Date: 2009-04-11 04:34:13 +0800 (Sat, 11 Apr 2009) $
32 */
33#ifndef _OPTION_IDS_H_
34#define _OPTION_IDS_H_
35
36/**
37 *
38 * This file generates the defaults tables for the Integrated Debug Support
39 * Module. The documented build options are imported from a user controlled
40 * file for processing. The build options for the Integrated Debug Support
41 * Module are listed below:
42 *
43 * IDSOPT_IDS_ENABLED
44 * IDSOPT_ERROR_TRAP_ENABLED
45 * IDSOPT_CONTROL_ENABLED
46 * IDSOPT_TRACING_ENABLED
47 * IDSOPT_PERF_ANALYSIS
48 * IDSOPT_ASSERT_ENABLED
49 * IDS_DEBUG_PORT
50 * IDSOPT_CAR_CORRUPTION_CHECK_ENABLED
51 *
52 **/
53
54#define IDSOPT_IDS_ENABLED TRUE
55//#define IDSOPT_TRACING_ENABLED TRUE
56#define IDSOPT_ASSERT_ENABLED TRUE
57
58//#define IDSOPT_DEBUG_ENABLED FALSE
59//#undef IDSOPT_HOST_SIMNOW
60//#define IDSOPT_HOST_SIMNOW FALSE
61//#undef IDSOPT_HOST_HDT
62//#define IDSOPT_HOST_HDT FALSE
63//#define IDS_DEBUG_PORT 0x80
64
65#endif