]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/x86/Kconfig
3506ba2946b2feea29ce29963feba6ce2a4775af
[people/ms/u-boot.git] / arch / x86 / Kconfig
1 menu "x86 architecture"
2 depends on X86
3
4 config SYS_ARCH
5 default "x86"
6
7 config USE_PRIVATE_LIBGCC
8 default y
9
10 config SYS_VSNPRINTF
11 default y
12
13 choice
14 prompt "Mainboard vendor"
15 default VENDOR_EMULATION
16
17 config VENDOR_COREBOOT
18 bool "coreboot"
19
20 config VENDOR_EMULATION
21 bool "emulation"
22
23 config VENDOR_GOOGLE
24 bool "Google"
25
26 config VENDOR_INTEL
27 bool "Intel"
28
29 endchoice
30
31 # board-specific options below
32 source "board/coreboot/Kconfig"
33 source "board/emulation/Kconfig"
34 source "board/google/Kconfig"
35 source "board/intel/Kconfig"
36
37 # platform-specific options below
38 source "arch/x86/cpu/baytrail/Kconfig"
39 source "arch/x86/cpu/coreboot/Kconfig"
40 source "arch/x86/cpu/ivybridge/Kconfig"
41 source "arch/x86/cpu/qemu/Kconfig"
42 source "arch/x86/cpu/quark/Kconfig"
43 source "arch/x86/cpu/queensbay/Kconfig"
44
45 # architecture-specific options below
46
47 config SYS_MALLOC_F_LEN
48 default 0x800
49
50 config RAMBASE
51 hex
52 default 0x100000
53
54 config XIP_ROM_SIZE
55 hex
56 depends on X86_RESET_VECTOR
57 default ROM_SIZE
58
59 config CPU_ADDR_BITS
60 int
61 default 36
62
63 config HPET_ADDRESS
64 hex
65 default 0xfed00000 if !HPET_ADDRESS_OVERRIDE
66
67 config SMM_TSEG
68 bool
69 default n
70
71 config SMM_TSEG_SIZE
72 hex
73
74 config X86_RESET_VECTOR
75 bool
76 default n
77
78 config SYS_X86_START16
79 hex
80 depends on X86_RESET_VECTOR
81 default 0xfffff800
82
83 config BOARD_ROMSIZE_KB_512
84 bool
85 config BOARD_ROMSIZE_KB_1024
86 bool
87 config BOARD_ROMSIZE_KB_2048
88 bool
89 config BOARD_ROMSIZE_KB_4096
90 bool
91 config BOARD_ROMSIZE_KB_8192
92 bool
93 config BOARD_ROMSIZE_KB_16384
94 bool
95
96 choice
97 prompt "ROM chip size"
98 depends on X86_RESET_VECTOR
99 default UBOOT_ROMSIZE_KB_512 if BOARD_ROMSIZE_KB_512
100 default UBOOT_ROMSIZE_KB_1024 if BOARD_ROMSIZE_KB_1024
101 default UBOOT_ROMSIZE_KB_2048 if BOARD_ROMSIZE_KB_2048
102 default UBOOT_ROMSIZE_KB_4096 if BOARD_ROMSIZE_KB_4096
103 default UBOOT_ROMSIZE_KB_8192 if BOARD_ROMSIZE_KB_8192
104 default UBOOT_ROMSIZE_KB_16384 if BOARD_ROMSIZE_KB_16384
105 help
106 Select the size of the ROM chip you intend to flash U-Boot on.
107
108 The build system will take care of creating a u-boot.rom file
109 of the matching size.
110
111 config UBOOT_ROMSIZE_KB_512
112 bool "512 KB"
113 help
114 Choose this option if you have a 512 KB ROM chip.
115
116 config UBOOT_ROMSIZE_KB_1024
117 bool "1024 KB (1 MB)"
118 help
119 Choose this option if you have a 1024 KB (1 MB) ROM chip.
120
121 config UBOOT_ROMSIZE_KB_2048
122 bool "2048 KB (2 MB)"
123 help
124 Choose this option if you have a 2048 KB (2 MB) ROM chip.
125
126 config UBOOT_ROMSIZE_KB_4096
127 bool "4096 KB (4 MB)"
128 help
129 Choose this option if you have a 4096 KB (4 MB) ROM chip.
130
131 config UBOOT_ROMSIZE_KB_8192
132 bool "8192 KB (8 MB)"
133 help
134 Choose this option if you have a 8192 KB (8 MB) ROM chip.
135
136 config UBOOT_ROMSIZE_KB_16384
137 bool "16384 KB (16 MB)"
138 help
139 Choose this option if you have a 16384 KB (16 MB) ROM chip.
140
141 endchoice
142
143 # Map the config names to an integer (KB).
144 config UBOOT_ROMSIZE_KB
145 int
146 default 512 if UBOOT_ROMSIZE_KB_512
147 default 1024 if UBOOT_ROMSIZE_KB_1024
148 default 2048 if UBOOT_ROMSIZE_KB_2048
149 default 4096 if UBOOT_ROMSIZE_KB_4096
150 default 8192 if UBOOT_ROMSIZE_KB_8192
151 default 16384 if UBOOT_ROMSIZE_KB_16384
152
153 # Map the config names to a hex value (bytes).
154 config ROM_SIZE
155 hex
156 default 0x80000 if UBOOT_ROMSIZE_KB_512
157 default 0x100000 if UBOOT_ROMSIZE_KB_1024
158 default 0x200000 if UBOOT_ROMSIZE_KB_2048
159 default 0x400000 if UBOOT_ROMSIZE_KB_4096
160 default 0x800000 if UBOOT_ROMSIZE_KB_8192
161 default 0xc00000 if UBOOT_ROMSIZE_KB_12288
162 default 0x1000000 if UBOOT_ROMSIZE_KB_16384
163
164 config HAVE_INTEL_ME
165 bool "Platform requires Intel Management Engine"
166 help
167 Newer higher-end devices have an Intel Management Engine (ME)
168 which is a very large binary blob (typically 1.5MB) which is
169 required for the platform to work. This enforces a particular
170 SPI flash format. You will need to supply the me.bin file in
171 your board directory.
172
173 config X86_RAMTEST
174 bool "Perform a simple RAM test after SDRAM initialisation"
175 help
176 If there is something wrong with SDRAM then the platform will
177 often crash within U-Boot or the kernel. This option enables a
178 very simple RAM test that quickly checks whether the SDRAM seems
179 to work correctly. It is not exhaustive but can save time by
180 detecting obvious failures.
181
182 config MARK_GRAPHICS_MEM_WRCOMB
183 bool "Mark graphics memory as write-combining"
184 default n
185 help
186 The graphics performance may increase if the graphics
187 memory is set as write-combining cache type. This option
188 enables marking the graphics memory as write-combining.
189
190 config HAVE_FSP
191 bool "Add an Firmware Support Package binary"
192 help
193 Select this option to add an Firmware Support Package binary to
194 the resulting U-Boot image. It is a binary blob which U-Boot uses
195 to set up SDRAM and other chipset specific initialization.
196
197 Note: Without this binary U-Boot will not be able to set up its
198 SDRAM so will not boot.
199
200 config FSP_FILE
201 string "Firmware Support Package binary filename"
202 depends on HAVE_FSP
203 default "fsp.bin"
204 help
205 The filename of the file to use as Firmware Support Package binary
206 in the board directory.
207
208 config FSP_ADDR
209 hex "Firmware Support Package binary location"
210 depends on HAVE_FSP
211 default 0xfffc0000
212 help
213 FSP is not Position Independent Code (PIC) and the whole FSP has to
214 be rebased if it is placed at a location which is different from the
215 perferred base address specified during the FSP build. Use Intel's
216 Binary Configuration Tool (BCT) to do the rebase.
217
218 The default base address of 0xfffc0000 indicates that the binary must
219 be located at offset 0xc0000 from the beginning of a 1MB flash device.
220
221 config FSP_TEMP_RAM_ADDR
222 hex
223 depends on HAVE_FSP
224 default 0x2000000
225 help
226 Stack top address which is used in FspInit after DRAM is ready and
227 CAR is disabled.
228
229 config MAX_CPUS
230 int "Maximum number of CPUs permitted"
231 default 4
232 help
233 When using multi-CPU chips it is possible for U-Boot to start up
234 more than one CPU. The stack memory used by all of these CPUs is
235 pre-allocated so at present U-Boot wants to know the maximum
236 number of CPUs that may be present. Set this to at least as high
237 as the number of CPUs in your system (it uses about 4KB of RAM for
238 each CPU).
239
240 config SMP
241 bool "Enable Symmetric Multiprocessing"
242 default n
243 help
244 Enable use of more than one CPU in U-Boot and the Operating System
245 when loaded. Each CPU will be started up and information can be
246 obtained using the 'cpu' command. If this option is disabled, then
247 only one CPU will be enabled regardless of the number of CPUs
248 available.
249
250 config AP_STACK_SIZE
251 hex
252 default 0x1000
253 help
254 Each additional CPU started by U-Boot requires its own stack. This
255 option sets the stack size used by each CPU and directly affects
256 the memory used by this initialisation process. Typically 4KB is
257 enough space.
258
259 config TSC_CALIBRATION_BYPASS
260 bool "Bypass Time-Stamp Counter (TSC) calibration"
261 default n
262 help
263 By default U-Boot automatically calibrates Time-Stamp Counter (TSC)
264 running frequency via Model-Specific Register (MSR) and Programmable
265 Interval Timer (PIT). If the calibration does not work on your board,
266 select this option and provide a hardcoded TSC running frequency with
267 CONFIG_TSC_FREQ_IN_MHZ below.
268
269 Normally this option should be turned on in a simulation environment
270 like qemu.
271
272 config TSC_FREQ_IN_MHZ
273 int "Time-Stamp Counter (TSC) running frequency in MHz"
274 depends on TSC_CALIBRATION_BYPASS
275 default 1000
276 help
277 The running frequency in MHz of Time-Stamp Counter (TSC).
278
279 menu "System tables"
280
281 config GENERATE_PIRQ_TABLE
282 bool "Generate a PIRQ table"
283 default n
284 help
285 Generate a PIRQ routing table for this board. The PIRQ routing table
286 is generated by U-Boot in the system memory from 0xf0000 to 0xfffff
287 at every 16-byte boundary with a PCI IRQ routing signature ("$PIR").
288 It specifies the interrupt router information as well how all the PCI
289 devices' interrupt pins are wired to PIRQs.
290
291 config GENERATE_SFI_TABLE
292 bool "Generate a SFI (Simple Firmware Interface) table"
293 help
294 The Simple Firmware Interface (SFI) provides a lightweight method
295 for platform firmware to pass information to the operating system
296 via static tables in memory. Kernel SFI support is required to
297 boot on SFI-only platforms. If you have ACPI tables then these are
298 used instead.
299
300 U-Boot writes this table in write_sfi_table() just before booting
301 the OS.
302
303 For more information, see http://simplefirmware.org
304
305 endmenu
306
307 config MAX_PIRQ_LINKS
308 int
309 default 8
310 help
311 This variable specifies the number of PIRQ interrupt links which are
312 routable. On most older chipsets, this is 4, PIRQA through PIRQD.
313 Some newer chipsets offer more than four links, commonly up to PIRQH.
314
315 config IRQ_SLOT_COUNT
316 int
317 default 128
318 help
319 U-Boot can support up to 254 IRQ slot info in the PIRQ routing table
320 which in turns forms a table of exact 4KiB. The default value 128
321 should be enough for most boards. If this does not fit your board,
322 change it according to your needs.
323
324 config PCIE_ECAM_BASE
325 hex
326 default 0xe0000000
327 help
328 This is the memory-mapped address of PCI configuration space, which
329 is only available through the Enhanced Configuration Access
330 Mechanism (ECAM) with PCI Express. It can be set up almost
331 anywhere. Before it is set up, it is possible to access PCI
332 configuration space through I/O access, but memory access is more
333 convenient. Using this, PCI can be scanned and configured. This
334 should be set to a region that does not conflict with memory
335 assigned to PCI devices - i.e. the memory and prefetch regions, as
336 passed to pci_set_region().
337
338 config BOOTSTAGE
339 default y
340
341 config BOOTSTAGE_REPORT
342 default y
343
344 config CMD_BOOTSTAGE
345 default y
346
347 endmenu