Kconfig 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776
  1. menu "x86 architecture"
  2. depends on X86
  3. config SYS_ARCH
  4. default "x86"
  5. choice
  6. prompt "Run U-Boot in 32/64-bit mode"
  7. default X86_RUN_32BIT
  8. help
  9. U-Boot can be built as a 32-bit binary which runs in 32-bit mode
  10. even on 64-bit machines. In this case SPL is not used, and U-Boot
  11. runs directly from the reset vector (via 16-bit start-up).
  12. Alternatively it can be run as a 64-bit binary, thus requiring a
  13. 64-bit machine. In this case SPL runs in 32-bit mode (via 16-bit
  14. start-up) then jumps to U-Boot in 64-bit mode.
  15. For now, 32-bit mode is recommended, as 64-bit is still
  16. experimental and is missing a lot of features.
  17. config X86_RUN_32BIT
  18. bool "32-bit"
  19. help
  20. Build U-Boot as a 32-bit binary with no SPL. This is the currently
  21. supported normal setup. U-Boot will stay in 32-bit mode even on
  22. 64-bit machines. When booting a 64-bit kernel, U-Boot will switch
  23. to 64-bit just before starting the kernel. Only the bottom 4GB of
  24. memory can be accessed through normal means, although
  25. arch_phys_memset() can be used for basic access to other memory.
  26. config X86_RUN_64BIT
  27. bool "64-bit"
  28. select X86_64
  29. select SUPPORT_SPL
  30. select SPL
  31. select SPL_SEPARATE_BSS
  32. help
  33. Build U-Boot as a 64-bit binary with a 32-bit SPL. This is
  34. experimental and many features are missing. U-Boot SPL starts up,
  35. runs through the 16-bit and 32-bit init, then switches to 64-bit
  36. mode and jumps to U-Boot proper.
  37. endchoice
  38. config X86_64
  39. bool
  40. config SPL_X86_64
  41. bool
  42. depends on SPL
  43. choice
  44. prompt "Mainboard vendor"
  45. default VENDOR_EMULATION
  46. config VENDOR_ADVANTECH
  47. bool "advantech"
  48. config VENDOR_CONGATEC
  49. bool "congatec"
  50. config VENDOR_COREBOOT
  51. bool "coreboot"
  52. config VENDOR_DFI
  53. bool "dfi"
  54. config VENDOR_EFI
  55. bool "efi"
  56. config VENDOR_EMULATION
  57. bool "emulation"
  58. config VENDOR_GOOGLE
  59. bool "Google"
  60. config VENDOR_INTEL
  61. bool "Intel"
  62. endchoice
  63. # subarchitectures-specific options below
  64. config INTEL_MID
  65. bool "Intel MID platform support"
  66. select REGMAP
  67. select SYSCON
  68. help
  69. Select to build a U-Boot capable of supporting Intel MID
  70. (Mobile Internet Device) platform systems which do not have
  71. the PCI legacy interfaces.
  72. If you are building for a PC class system say N here.
  73. Intel MID platforms are based on an Intel processor and
  74. chipset which consume less power than most of the x86
  75. derivatives.
  76. # board-specific options below
  77. source "board/advantech/Kconfig"
  78. source "board/congatec/Kconfig"
  79. source "board/coreboot/Kconfig"
  80. source "board/dfi/Kconfig"
  81. source "board/efi/Kconfig"
  82. source "board/emulation/Kconfig"
  83. source "board/google/Kconfig"
  84. source "board/intel/Kconfig"
  85. # platform-specific options below
  86. source "arch/x86/cpu/baytrail/Kconfig"
  87. source "arch/x86/cpu/braswell/Kconfig"
  88. source "arch/x86/cpu/broadwell/Kconfig"
  89. source "arch/x86/cpu/coreboot/Kconfig"
  90. source "arch/x86/cpu/ivybridge/Kconfig"
  91. source "arch/x86/cpu/efi/Kconfig"
  92. source "arch/x86/cpu/qemu/Kconfig"
  93. source "arch/x86/cpu/quark/Kconfig"
  94. source "arch/x86/cpu/queensbay/Kconfig"
  95. source "arch/x86/cpu/tangier/Kconfig"
  96. # architecture-specific options below
  97. config AHCI
  98. default y
  99. config SYS_MALLOC_F_LEN
  100. default 0x800
  101. config RAMBASE
  102. hex
  103. default 0x100000
  104. config XIP_ROM_SIZE
  105. hex
  106. depends on X86_RESET_VECTOR
  107. default ROM_SIZE
  108. config CPU_ADDR_BITS
  109. int
  110. default 36
  111. config HPET_ADDRESS
  112. hex
  113. default 0xfed00000 if !HPET_ADDRESS_OVERRIDE
  114. config SMM_TSEG
  115. bool
  116. default n
  117. config SMM_TSEG_SIZE
  118. hex
  119. config X86_RESET_VECTOR
  120. bool
  121. default n
  122. select BINMAN
  123. # The following options control where the 16-bit and 32-bit init lies
  124. # If SPL is enabled then it normally holds this init code, and U-Boot proper
  125. # is normally a 64-bit build.
  126. #
  127. # The 16-bit init refers to the reset vector and the small amount of code to
  128. # get the processor into 32-bit mode. It may be in SPL or in U-Boot proper,
  129. # or missing altogether if U-Boot is started from EFI or coreboot.
  130. #
  131. # The 32-bit init refers to processor init, running binary blobs including
  132. # FSP, setting up interrupts and anything else that needs to be done in
  133. # 32-bit code. It is normally in the same place as 16-bit init if that is
  134. # enabled (i.e. they are both in SPL, or both in U-Boot proper).
  135. config X86_16BIT_INIT
  136. bool
  137. depends on X86_RESET_VECTOR
  138. default y if X86_RESET_VECTOR && !SPL
  139. help
  140. This is enabled when 16-bit init is in U-Boot proper
  141. config SPL_X86_16BIT_INIT
  142. bool
  143. depends on X86_RESET_VECTOR
  144. default y if X86_RESET_VECTOR && SPL
  145. help
  146. This is enabled when 16-bit init is in SPL
  147. config X86_32BIT_INIT
  148. bool
  149. depends on X86_RESET_VECTOR
  150. default y if X86_RESET_VECTOR && !SPL
  151. help
  152. This is enabled when 32-bit init is in U-Boot proper
  153. config SPL_X86_32BIT_INIT
  154. bool
  155. depends on X86_RESET_VECTOR
  156. default y if X86_RESET_VECTOR && SPL
  157. help
  158. This is enabled when 32-bit init is in SPL
  159. config RESET_SEG_START
  160. hex
  161. depends on X86_RESET_VECTOR
  162. default 0xffff0000
  163. config RESET_SEG_SIZE
  164. hex
  165. depends on X86_RESET_VECTOR
  166. default 0x10000
  167. config RESET_VEC_LOC
  168. hex
  169. depends on X86_RESET_VECTOR
  170. default 0xfffffff0
  171. config SYS_X86_START16
  172. hex
  173. depends on X86_RESET_VECTOR
  174. default 0xfffff800
  175. config X86_LOAD_FROM_32_BIT
  176. bool "Boot from a 32-bit program"
  177. help
  178. Define this to boot U-Boot from a 32-bit program which sets
  179. the GDT differently. This can be used to boot directly from
  180. any stage of coreboot, for example, bypassing the normal
  181. payload-loading feature.
  182. config BOARD_ROMSIZE_KB_512
  183. bool
  184. config BOARD_ROMSIZE_KB_1024
  185. bool
  186. config BOARD_ROMSIZE_KB_2048
  187. bool
  188. config BOARD_ROMSIZE_KB_4096
  189. bool
  190. config BOARD_ROMSIZE_KB_8192
  191. bool
  192. config BOARD_ROMSIZE_KB_16384
  193. bool
  194. choice
  195. prompt "ROM chip size"
  196. depends on X86_RESET_VECTOR
  197. default UBOOT_ROMSIZE_KB_512 if BOARD_ROMSIZE_KB_512
  198. default UBOOT_ROMSIZE_KB_1024 if BOARD_ROMSIZE_KB_1024
  199. default UBOOT_ROMSIZE_KB_2048 if BOARD_ROMSIZE_KB_2048
  200. default UBOOT_ROMSIZE_KB_4096 if BOARD_ROMSIZE_KB_4096
  201. default UBOOT_ROMSIZE_KB_8192 if BOARD_ROMSIZE_KB_8192
  202. default UBOOT_ROMSIZE_KB_16384 if BOARD_ROMSIZE_KB_16384
  203. help
  204. Select the size of the ROM chip you intend to flash U-Boot on.
  205. The build system will take care of creating a u-boot.rom file
  206. of the matching size.
  207. config UBOOT_ROMSIZE_KB_512
  208. bool "512 KB"
  209. help
  210. Choose this option if you have a 512 KB ROM chip.
  211. config UBOOT_ROMSIZE_KB_1024
  212. bool "1024 KB (1 MB)"
  213. help
  214. Choose this option if you have a 1024 KB (1 MB) ROM chip.
  215. config UBOOT_ROMSIZE_KB_2048
  216. bool "2048 KB (2 MB)"
  217. help
  218. Choose this option if you have a 2048 KB (2 MB) ROM chip.
  219. config UBOOT_ROMSIZE_KB_4096
  220. bool "4096 KB (4 MB)"
  221. help
  222. Choose this option if you have a 4096 KB (4 MB) ROM chip.
  223. config UBOOT_ROMSIZE_KB_8192
  224. bool "8192 KB (8 MB)"
  225. help
  226. Choose this option if you have a 8192 KB (8 MB) ROM chip.
  227. config UBOOT_ROMSIZE_KB_16384
  228. bool "16384 KB (16 MB)"
  229. help
  230. Choose this option if you have a 16384 KB (16 MB) ROM chip.
  231. endchoice
  232. # Map the config names to an integer (KB).
  233. config UBOOT_ROMSIZE_KB
  234. int
  235. default 512 if UBOOT_ROMSIZE_KB_512
  236. default 1024 if UBOOT_ROMSIZE_KB_1024
  237. default 2048 if UBOOT_ROMSIZE_KB_2048
  238. default 4096 if UBOOT_ROMSIZE_KB_4096
  239. default 8192 if UBOOT_ROMSIZE_KB_8192
  240. default 16384 if UBOOT_ROMSIZE_KB_16384
  241. # Map the config names to a hex value (bytes).
  242. config ROM_SIZE
  243. hex
  244. default 0x80000 if UBOOT_ROMSIZE_KB_512
  245. default 0x100000 if UBOOT_ROMSIZE_KB_1024
  246. default 0x200000 if UBOOT_ROMSIZE_KB_2048
  247. default 0x400000 if UBOOT_ROMSIZE_KB_4096
  248. default 0x800000 if UBOOT_ROMSIZE_KB_8192
  249. default 0xc00000 if UBOOT_ROMSIZE_KB_12288
  250. default 0x1000000 if UBOOT_ROMSIZE_KB_16384
  251. config HAVE_INTEL_ME
  252. bool "Platform requires Intel Management Engine"
  253. help
  254. Newer higher-end devices have an Intel Management Engine (ME)
  255. which is a very large binary blob (typically 1.5MB) which is
  256. required for the platform to work. This enforces a particular
  257. SPI flash format. You will need to supply the me.bin file in
  258. your board directory.
  259. config X86_RAMTEST
  260. bool "Perform a simple RAM test after SDRAM initialisation"
  261. help
  262. If there is something wrong with SDRAM then the platform will
  263. often crash within U-Boot or the kernel. This option enables a
  264. very simple RAM test that quickly checks whether the SDRAM seems
  265. to work correctly. It is not exhaustive but can save time by
  266. detecting obvious failures.
  267. config FLASH_DESCRIPTOR_FILE
  268. string "Flash descriptor binary filename"
  269. depends on HAVE_INTEL_ME
  270. default "descriptor.bin"
  271. help
  272. The filename of the file to use as flash descriptor in the
  273. board directory.
  274. config INTEL_ME_FILE
  275. string "Intel Management Engine binary filename"
  276. depends on HAVE_INTEL_ME
  277. default "me.bin"
  278. help
  279. The filename of the file to use as Intel Management Engine in the
  280. board directory.
  281. config HAVE_FSP
  282. bool "Add an Firmware Support Package binary"
  283. depends on !EFI
  284. help
  285. Select this option to add an Firmware Support Package binary to
  286. the resulting U-Boot image. It is a binary blob which U-Boot uses
  287. to set up SDRAM and other chipset specific initialization.
  288. Note: Without this binary U-Boot will not be able to set up its
  289. SDRAM so will not boot.
  290. config FSP_FILE
  291. string "Firmware Support Package binary filename"
  292. depends on HAVE_FSP
  293. default "fsp.bin"
  294. help
  295. The filename of the file to use as Firmware Support Package binary
  296. in the board directory.
  297. config FSP_ADDR
  298. hex "Firmware Support Package binary location"
  299. depends on HAVE_FSP
  300. default 0xfffc0000
  301. help
  302. FSP is not Position Independent Code (PIC) and the whole FSP has to
  303. be rebased if it is placed at a location which is different from the
  304. perferred base address specified during the FSP build. Use Intel's
  305. Binary Configuration Tool (BCT) to do the rebase.
  306. The default base address of 0xfffc0000 indicates that the binary must
  307. be located at offset 0xc0000 from the beginning of a 1MB flash device.
  308. config FSP_TEMP_RAM_ADDR
  309. hex
  310. depends on HAVE_FSP
  311. default 0x2000000
  312. help
  313. Stack top address which is used in fsp_init() after DRAM is ready and
  314. CAR is disabled.
  315. config FSP_SYS_MALLOC_F_LEN
  316. hex
  317. depends on HAVE_FSP
  318. default 0x100000
  319. help
  320. Additional size of malloc() pool before relocation.
  321. config FSP_USE_UPD
  322. bool
  323. depends on HAVE_FSP
  324. default y
  325. help
  326. Most FSPs use UPD data region for some FSP customization. But there
  327. are still some FSPs that might not even have UPD. For such FSPs,
  328. override this to n in their platform Kconfig files.
  329. config FSP_BROKEN_HOB
  330. bool
  331. depends on HAVE_FSP
  332. help
  333. Indicate some buggy FSPs that does not report memory used by FSP
  334. itself as reserved in the resource descriptor HOB. Select this to
  335. tell U-Boot to do some additional work to ensure U-Boot relocation
  336. do not overwrite the important boot service data which is used by
  337. FSP, otherwise the subsequent call to fsp_notify() will fail.
  338. config ENABLE_MRC_CACHE
  339. bool "Enable MRC cache"
  340. depends on !EFI && !SYS_COREBOOT
  341. help
  342. Enable this feature to cause MRC data to be cached in NV storage
  343. to be used for speeding up boot time on future reboots and/or
  344. power cycles.
  345. For platforms that use Intel FSP for the memory initialization,
  346. please check FSP output HOB via U-Boot command 'fsp hob' to see
  347. if there is FSP_NON_VOLATILE_STORAGE_HOB_GUID (asm/fsp/fsp_hob.h).
  348. If such GUID does not exist, MRC cache is not avaiable on such
  349. platform (eg: Intel Queensbay), which means selecting this option
  350. here does not make any difference.
  351. config HAVE_MRC
  352. bool "Add a System Agent binary"
  353. depends on !HAVE_FSP
  354. help
  355. Select this option to add a System Agent binary to
  356. the resulting U-Boot image. MRC stands for Memory Reference Code.
  357. It is a binary blob which U-Boot uses to set up SDRAM.
  358. Note: Without this binary U-Boot will not be able to set up its
  359. SDRAM so will not boot.
  360. config CACHE_MRC_BIN
  361. bool
  362. depends on HAVE_MRC
  363. default n
  364. help
  365. Enable caching for the memory reference code binary. This uses an
  366. MTRR (memory type range register) to turn on caching for the section
  367. of SPI flash that contains the memory reference code. This makes
  368. SDRAM init run faster.
  369. config CACHE_MRC_SIZE_KB
  370. int
  371. depends on HAVE_MRC
  372. default 512
  373. help
  374. Sets the size of the cached area for the memory reference code.
  375. This ends at the end of SPI flash (address 0xffffffff) and is
  376. measured in KB. Typically this is set to 512, providing for 0.5MB
  377. of cached space.
  378. config DCACHE_RAM_BASE
  379. hex
  380. depends on HAVE_MRC
  381. help
  382. Sets the base of the data cache area in memory space. This is the
  383. start address of the cache-as-RAM (CAR) area and the address varies
  384. depending on the CPU. Once CAR is set up, read/write memory becomes
  385. available at this address and can be used temporarily until SDRAM
  386. is working.
  387. config DCACHE_RAM_SIZE
  388. hex
  389. depends on HAVE_MRC
  390. default 0x40000
  391. help
  392. Sets the total size of the data cache area in memory space. This
  393. sets the size of the cache-as-RAM (CAR) area. Note that much of the
  394. CAR space is required by the MRC. The CAR space available to U-Boot
  395. is normally at the start and typically extends to 1/4 or 1/2 of the
  396. available size.
  397. config DCACHE_RAM_MRC_VAR_SIZE
  398. hex
  399. depends on HAVE_MRC
  400. help
  401. This is the amount of CAR (Cache as RAM) reserved for use by the
  402. memory reference code. This depends on the implementation of the
  403. memory reference code and must be set correctly or the board will
  404. not boot.
  405. config HAVE_REFCODE
  406. bool "Add a Reference Code binary"
  407. help
  408. Select this option to add a Reference Code binary to the resulting
  409. U-Boot image. This is an Intel binary blob that handles system
  410. initialisation, in this case the PCH and System Agent.
  411. Note: Without this binary (on platforms that need it such as
  412. broadwell) U-Boot will be missing some critical setup steps.
  413. Various peripherals may fail to work.
  414. config SMP
  415. bool "Enable Symmetric Multiprocessing"
  416. default n
  417. help
  418. Enable use of more than one CPU in U-Boot and the Operating System
  419. when loaded. Each CPU will be started up and information can be
  420. obtained using the 'cpu' command. If this option is disabled, then
  421. only one CPU will be enabled regardless of the number of CPUs
  422. available.
  423. config MAX_CPUS
  424. int "Maximum number of CPUs permitted"
  425. depends on SMP
  426. default 4
  427. help
  428. When using multi-CPU chips it is possible for U-Boot to start up
  429. more than one CPU. The stack memory used by all of these CPUs is
  430. pre-allocated so at present U-Boot wants to know the maximum
  431. number of CPUs that may be present. Set this to at least as high
  432. as the number of CPUs in your system (it uses about 4KB of RAM for
  433. each CPU).
  434. config AP_STACK_SIZE
  435. hex
  436. depends on SMP
  437. default 0x1000
  438. help
  439. Each additional CPU started by U-Boot requires its own stack. This
  440. option sets the stack size used by each CPU and directly affects
  441. the memory used by this initialisation process. Typically 4KB is
  442. enough space.
  443. config CPU_INTEL_TURBO_NOT_PACKAGE_SCOPED
  444. bool
  445. help
  446. This option indicates that the turbo mode setting is not package
  447. scoped. i.e. turbo_enable() needs to be called on not just the
  448. bootstrap processor (BSP).
  449. config HAVE_VGA_BIOS
  450. bool "Add a VGA BIOS image"
  451. help
  452. Select this option if you have a VGA BIOS image that you would
  453. like to add to your ROM.
  454. config VGA_BIOS_FILE
  455. string "VGA BIOS image filename"
  456. depends on HAVE_VGA_BIOS
  457. default "vga.bin"
  458. help
  459. The filename of the VGA BIOS image in the board directory.
  460. config VGA_BIOS_ADDR
  461. hex "VGA BIOS image location"
  462. depends on HAVE_VGA_BIOS
  463. default 0xfff90000
  464. help
  465. The location of VGA BIOS image in the SPI flash. For example, base
  466. address of 0xfff90000 indicates that the image will be put at offset
  467. 0x90000 from the beginning of a 1MB flash device.
  468. config HAVE_VBT
  469. bool "Add a Video BIOS Table (VBT) image"
  470. depends on HAVE_FSP
  471. help
  472. Select this option if you have a Video BIOS Table (VBT) image that
  473. you would like to add to your ROM. This is normally required if you
  474. are using an Intel FSP firmware that is complaint with spec 1.1 or
  475. later to initialize the integrated graphics device (IGD).
  476. Video BIOS Table, or VBT, provides platform and board specific
  477. configuration information to the driver that is not discoverable
  478. or available through other means. By other means the most used
  479. method here is to read EDID table from the attached monitor, over
  480. Display Data Channel (DDC) using two pin I2C serial interface. VBT
  481. configuration is related to display hardware and is available via
  482. the ACPI OpRegion or, on older systems, in the PCI ROM (Option ROM).
  483. config VBT_FILE
  484. string "Video BIOS Table (VBT) image filename"
  485. depends on HAVE_VBT
  486. default "vbt.bin"
  487. help
  488. The filename of the file to use as Video BIOS Table (VBT) image
  489. in the board directory.
  490. config VBT_ADDR
  491. hex "Video BIOS Table (VBT) image location"
  492. depends on HAVE_VBT
  493. default 0xfff90000
  494. help
  495. The location of Video BIOS Table (VBT) image in the SPI flash. For
  496. example, base address of 0xfff90000 indicates that the image will
  497. be put at offset 0x90000 from the beginning of a 1MB flash device.
  498. config VIDEO_FSP
  499. bool "Enable FSP framebuffer driver support"
  500. depends on HAVE_VBT && DM_VIDEO
  501. help
  502. Turn on this option to enable a framebuffer driver when U-Boot is
  503. using Video BIOS Table (VBT) image for FSP firmware to initialize
  504. the integrated graphics device.
  505. config ROM_TABLE_ADDR
  506. hex
  507. default 0xf0000
  508. help
  509. All x86 tables happen to like the address range from 0x0f0000
  510. to 0x100000. We use 0xf0000 as the starting address to store
  511. those tables, including PIRQ routing table, Multi-Processor
  512. table and ACPI table.
  513. config ROM_TABLE_SIZE
  514. hex
  515. default 0x10000
  516. menu "System tables"
  517. depends on !EFI && !SYS_COREBOOT
  518. config GENERATE_PIRQ_TABLE
  519. bool "Generate a PIRQ table"
  520. default n
  521. help
  522. Generate a PIRQ routing table for this board. The PIRQ routing table
  523. is generated by U-Boot in the system memory from 0xf0000 to 0xfffff
  524. at every 16-byte boundary with a PCI IRQ routing signature ("$PIR").
  525. It specifies the interrupt router information as well how all the PCI
  526. devices' interrupt pins are wired to PIRQs.
  527. config GENERATE_SFI_TABLE
  528. bool "Generate a SFI (Simple Firmware Interface) table"
  529. help
  530. The Simple Firmware Interface (SFI) provides a lightweight method
  531. for platform firmware to pass information to the operating system
  532. via static tables in memory. Kernel SFI support is required to
  533. boot on SFI-only platforms. If you have ACPI tables then these are
  534. used instead.
  535. U-Boot writes this table in write_sfi_table() just before booting
  536. the OS.
  537. For more information, see http://simplefirmware.org
  538. config GENERATE_MP_TABLE
  539. bool "Generate an MP (Multi-Processor) table"
  540. default n
  541. help
  542. Generate an MP (Multi-Processor) table for this board. The MP table
  543. provides a way for the operating system to support for symmetric
  544. multiprocessing as well as symmetric I/O interrupt handling with
  545. the local APIC and I/O APIC.
  546. config GENERATE_ACPI_TABLE
  547. bool "Generate an ACPI (Advanced Configuration and Power Interface) table"
  548. default n
  549. select QFW if QEMU
  550. help
  551. The Advanced Configuration and Power Interface (ACPI) specification
  552. provides an open standard for device configuration and management
  553. by the operating system. It defines platform-independent interfaces
  554. for configuration and power management monitoring.
  555. endmenu
  556. config HAVE_ACPI_RESUME
  557. bool "Enable ACPI S3 resume"
  558. select ENABLE_MRC_CACHE
  559. help
  560. Select this to enable ACPI S3 resume. S3 is an ACPI-defined sleeping
  561. state where all system context is lost except system memory. U-Boot
  562. is responsible for restoring the machine state as it was before sleep.
  563. It needs restore the memory controller, without overwriting memory
  564. which is not marked as reserved. For the peripherals which lose their
  565. registers, U-Boot needs to write the original value. When everything
  566. is done, U-Boot needs to find out the wakeup vector provided by OSes
  567. and jump there.
  568. config S3_VGA_ROM_RUN
  569. bool "Re-run VGA option ROMs on S3 resume"
  570. depends on HAVE_ACPI_RESUME
  571. help
  572. Execute VGA option ROMs in U-Boot when resuming from S3. Normally
  573. this is needed when graphics console is being used in the kernel.
  574. Turning it off can reduce some resume time, but be aware that your
  575. graphics console won't work without VGA options ROMs. Set it to N
  576. if your kernel is only on a serial console.
  577. config STACK_SIZE
  578. hex
  579. depends on HAVE_ACPI_RESUME
  580. default 0x1000
  581. help
  582. Estimated U-Boot's runtime stack size that needs to be reserved
  583. during an ACPI S3 resume.
  584. config MAX_PIRQ_LINKS
  585. int
  586. default 8
  587. help
  588. This variable specifies the number of PIRQ interrupt links which are
  589. routable. On most older chipsets, this is 4, PIRQA through PIRQD.
  590. Some newer chipsets offer more than four links, commonly up to PIRQH.
  591. config IRQ_SLOT_COUNT
  592. int
  593. default 128
  594. help
  595. U-Boot can support up to 254 IRQ slot info in the PIRQ routing table
  596. which in turns forms a table of exact 4KiB. The default value 128
  597. should be enough for most boards. If this does not fit your board,
  598. change it according to your needs.
  599. config PCIE_ECAM_BASE
  600. hex
  601. default 0xe0000000
  602. help
  603. This is the memory-mapped address of PCI configuration space, which
  604. is only available through the Enhanced Configuration Access
  605. Mechanism (ECAM) with PCI Express. It can be set up almost
  606. anywhere. Before it is set up, it is possible to access PCI
  607. configuration space through I/O access, but memory access is more
  608. convenient. Using this, PCI can be scanned and configured. This
  609. should be set to a region that does not conflict with memory
  610. assigned to PCI devices - i.e. the memory and prefetch regions, as
  611. passed to pci_set_region().
  612. config PCIE_ECAM_SIZE
  613. hex
  614. default 0x10000000
  615. help
  616. This is the size of memory-mapped address of PCI configuration space,
  617. which is only available through the Enhanced Configuration Access
  618. Mechanism (ECAM) with PCI Express. Each bus consumes 1 MiB memory,
  619. so a default 0x10000000 size covers all of the 256 buses which is the
  620. maximum number of PCI buses as defined by the PCI specification.
  621. config I8259_PIC
  622. bool
  623. default y
  624. help
  625. Intel 8259 ISA compatible chipset incorporates two 8259 (master and
  626. slave) interrupt controllers. Include this to have U-Boot set up
  627. the interrupt correctly.
  628. config PINCTRL_ICH6
  629. bool
  630. help
  631. Intel ICH6 compatible chipset pinctrl driver. It needs to work
  632. together with the ICH6 compatible gpio driver.
  633. config I8254_TIMER
  634. bool
  635. default y
  636. help
  637. Intel 8254 timer contains three counters which have fixed uses.
  638. Include this to have U-Boot set up the timer correctly.
  639. config SEABIOS
  640. bool "Support booting SeaBIOS"
  641. help
  642. SeaBIOS is an open source implementation of a 16-bit X86 BIOS.
  643. It can run in an emulator or natively on X86 hardware with the use
  644. of coreboot/U-Boot. By turning on this option, U-Boot prepares
  645. all the configuration tables that are necessary to boot SeaBIOS.
  646. Check http://www.seabios.org/SeaBIOS for details.
  647. config HIGH_TABLE_SIZE
  648. hex "Size of configuration tables which reside in high memory"
  649. default 0x10000
  650. depends on SEABIOS
  651. help
  652. SeaBIOS itself resides in E seg and F seg, where U-Boot puts all
  653. configuration tables like PIRQ/MP/ACPI. To avoid conflicts, U-Boot
  654. puts a copy of configuration tables in high memory region which
  655. is reserved on the stack before relocation. The region size is
  656. determined by this option.
  657. Increse it if the default size does not fit the board's needs.
  658. This is most likely due to a large ACPI DSDT table is used.
  659. endmenu