blob: 23494d44c938e993f88f52ac75fb80aa21d5b5c4 [file] [log] [blame]
Kyösti Mälkkif09e6d42015-01-10 12:13:23 +02001/*
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 */
28#ifndef _OPTION_IDS_H_
29#define _OPTION_IDS_H_
30
31/**
32 *
33 * This file generates the defaults tables for the Integrated Debug Support
34 * Module. The documented build options are imported from a user controlled
35 * file for processing. The build options for the Integrated Debug Support
36 * Module are listed below:
37 *
38 * IDSOPT_IDS_ENABLED
39 * IDSOPT_ERROR_TRAP_ENABLED
40 * IDSOPT_CONTROL_ENABLED
41 * IDSOPT_TRACING_ENABLED
42 * IDSOPT_PERF_ANALYSIS
43 * IDSOPT_ASSERT_ENABLED
44 * IDS_DEBUG_PORT
45 * IDSOPT_CAR_CORRUPTION_CHECK_ENABLED
46 *
47 **/
48
49#define IDSOPT_IDS_ENABLED TRUE
50//#define IDSOPT_TRACING_ENABLED TRUE
51#define IDSOPT_ASSERT_ENABLED TRUE
52
53//#define IDSOPT_DEBUG_ENABLED FALSE
54//#undef IDSOPT_HOST_SIMNOW
55//#define IDSOPT_HOST_SIMNOW FALSE
56//#undef IDSOPT_HOST_HDT
57//#define IDSOPT_HOST_HDT FALSE
58//#define IDS_DEBUG_PORT 0x80
59
60#endif