Kconfig (e71de54a4943ac481e8bcdb0a132c52ab90f23fe) | Kconfig (c3df28f6e2fc7299883f3340475c532f18754585) |
---|---|
1menu "x86 architecture" 2 depends on X86 3 4config SYS_ARCH 5 default "x86" 6 7choice 8 prompt "Run U-Boot in 32/64-bit mode" --- 528 unchanged lines hidden (view full) --- 537 hex "VGA BIOS image location" 538 depends on HAVE_VGA_BIOS 539 default 0xfff90000 540 help 541 The location of VGA BIOS image in the SPI flash. For example, base 542 address of 0xfff90000 indicates that the image will be put at offset 543 0x90000 from the beginning of a 1MB flash device. 544 | 1menu "x86 architecture" 2 depends on X86 3 4config SYS_ARCH 5 default "x86" 6 7choice 8 prompt "Run U-Boot in 32/64-bit mode" --- 528 unchanged lines hidden (view full) --- 537 hex "VGA BIOS image location" 538 depends on HAVE_VGA_BIOS 539 default 0xfff90000 540 help 541 The location of VGA BIOS image in the SPI flash. For example, base 542 address of 0xfff90000 indicates that the image will be put at offset 543 0x90000 from the beginning of a 1MB flash device. 544 |
545config ROM_TABLE_ADDR 546 hex 547 default 0xf0000 548 help 549 All x86 tables happen to like the address range from 0x0f0000 550 to 0x100000. We use 0xf0000 as the starting address to store 551 those tables, including PIRQ routing table, Multi-Processor 552 table and ACPI table. 553 554config ROM_TABLE_SIZE 555 hex 556 default 0x10000 557 |
|
545menu "System tables" 546 depends on !EFI && !SYS_COREBOOT 547 548config GENERATE_PIRQ_TABLE 549 bool "Generate a PIRQ table" 550 default n 551 help 552 Generate a PIRQ routing table for this board. The PIRQ routing table --- 155 unchanged lines hidden --- | 558menu "System tables" 559 depends on !EFI && !SYS_COREBOOT 560 561config GENERATE_PIRQ_TABLE 562 bool "Generate a PIRQ table" 563 default n 564 help 565 Generate a PIRQ routing table for this board. The PIRQ routing table --- 155 unchanged lines hidden --- |