mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 02:08:38 +00:00
8ce24cd991
While queensbay is the first chip with these settings, others will want to use them too. Make them common. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
41 lines
1.1 KiB
Text
41 lines
1.1 KiB
Text
#
|
|
# Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
config INTEL_QUEENSBAY
|
|
bool
|
|
select HAVE_FSP
|
|
select HAVE_CMC
|
|
|
|
if INTEL_QUEENSBAY
|
|
|
|
config HAVE_CMC
|
|
bool "Add a Chipset Micro Code state machine binary"
|
|
help
|
|
Select this option to add a Chipset Micro Code state machine binary
|
|
to the resulting U-Boot image. It is a 64K data block of machine
|
|
specific code which must be put in the flash for the processor to
|
|
access when powered up before system BIOS is executed.
|
|
|
|
config CMC_FILE
|
|
string "Chipset Micro Code state machine filename"
|
|
depends on HAVE_CMC
|
|
default "cmc.bin"
|
|
help
|
|
The filename of the file to use as Chipset Micro Code state machine
|
|
binary in the board directory.
|
|
|
|
config CMC_ADDR
|
|
hex "Chipset Micro Code state machine binary location"
|
|
depends on HAVE_CMC
|
|
default 0xfffb0000
|
|
help
|
|
The location of the CMC binary is determined by a strap. It must be
|
|
put in flash at a location matching the strap-determined base address.
|
|
|
|
The default base address of 0xfffb0000 indicates that the binary must
|
|
be located at offset 0xb0000 from the beginning of a 1MB flash device.
|
|
|
|
endif
|