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