37ff9b927cc015b35313d226b0ccdc4383a8dc2d
[coreboot.git] / src / devices / Kconfig
1 ##
2 ## This file is part of the coreboot project.
3 ##
4 ## Copyright (C) 2007 coresystems GmbH
5 ## (Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH)
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 menu "Devices"
22
23 config VGA_ROM_RUN
24         bool "Run VGA Option ROMs"
25         help
26           Execute VGA option ROMs if found. This is required to enable PCI/AGP
27           VGA plugin cards.
28
29 config PCI_ROM_RUN
30         bool "Run non-VGA Option ROMs"
31         help
32           Execute non-VGA PCI option ROMs if found.
33
34 choice
35         prompt "Option ROM Execution"
36         default  PCI_OPTION_ROM_RUN_REALMODE
37         depends on PCI_ROM_RUN || VGA_ROM_RUN
38         help
39           You can choose to execute PCI option ROMs natively (32bit x86 system
40           required) or in an emulator (x86emu or YABEL).
41
42         config PCI_OPTION_ROM_RUN_REALMODE
43                 prompt "Real mode"
44                 bool
45
46         config PCI_OPTION_ROM_RUN_YABEL
47                 prompt "YABEL"
48                 bool
49
50         config PCI_OPTION_ROM_RUN_X86EMU
51                 prompt "X86EMU"
52                 bool
53 endchoice
54
55 config YABEL_DEBUG_FLAGS
56         prompt "Hex value for debug flags"
57         hex
58         default 0x0
59         depends on PCI_OPTION_ROM_RUN_YABEL
60         help
61           See debug.h for values 0 is no debug output, 0x31ff is _verbose_.
62
63 endmenu
64
65 config PCI_64BIT_PREF_MEM
66         bool
67         default n
68
69 config HYPERTRANSPORT_PLUGIN_SUPPORT
70         bool
71         default n
72
73 config PCIX_PLUGIN_SUPPORT
74         bool
75         default n
76
77 config PCIEXP_PLUGIN_SUPPORT
78         bool
79         default n
80
81 config AGP_PLUGIN_SUPPORT
82         bool
83         default n
84
85 config CARDBUS_PLUGIN_SUPPORT
86         bool
87         default n
88
89
90