blob: 8b497aa96298dbfe0d8e2f033934b535b9c07e99 [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.
Dave Frodin892d1292013-12-11 12:38:40 -070015 */
16
17/**
18 * @file
19 *
20 * IDS Option File
21 *
22 * This file is used to switch on/off IDS features.
23 *
Dave Frodin892d1292013-12-11 12:38:40 -070024 */
25#ifndef _OPTION_IDS_H_
26#define _OPTION_IDS_H_
27
28/**
29 *
30 * This file generates the defaults tables for the Integrated Debug Support
31 * Module. The documented build options are imported from a user controlled
32 * file for processing. The build options for the Integrated Debug Support
33 * Module are listed below:
34 *
35 * IDSOPT_IDS_ENABLED
36 * IDSOPT_ERROR_TRAP_ENABLED
37 * IDSOPT_CONTROL_ENABLED
38 * IDSOPT_TRACING_ENABLED
39 * IDSOPT_PERF_ANALYSIS
40 * IDSOPT_ASSERT_ENABLED
41 * IDS_DEBUG_PORT
42 * IDSOPT_CAR_CORRUPTION_CHECK_ENABLED
43 *
44 **/
45
46#define IDSOPT_IDS_ENABLED TRUE
47//#define IDSOPT_TRACING_ENABLED TRUE
48#define IDSOPT_ASSERT_ENABLED TRUE
49
50//#define IDSOPT_DEBUG_ENABLED FALSE
51//#undef IDSOPT_HOST_SIMNOW
52//#define IDSOPT_HOST_SIMNOW FALSE
53//#undef IDSOPT_HOST_HDT
54//#define IDSOPT_HOST_HDT FALSE
55//#define IDS_DEBUG_PORT 0x80
56
57#endif