aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/intel/fit/Kconfig
diff options
context:
space:
mode:
authorAaron Durbin <adurbin@chromium.org>2012-12-03 16:17:40 -0600
committerRonald G. Minnich <rminnich@gmail.com>2013-03-17 22:53:51 +0100
commit6dcceddff53ad309b91b61661ae7deab37f272ec (patch)
tree21177990702c7fa3b99ca4d59def9fd4c548008e /src/cpu/intel/fit/Kconfig
parent239c2e843f976d5915964c8cb1923305c574f8b5 (diff)
x86 intel: Add Firmware Interface Table support
Haswell CPUs require a FIT table in the firmware. This commit adds rudimentary support for a FIT table. The number of entries in the table is based on a configuration option. The code only generates a type 0 entry. A follow-on tool will need to be developed to populate the FIT entries as well as checksumming the table. Verified image has a FIT pointer and table when option is selected. Change-Id: I3a314016a09a1cc26bf1fb5d17aa50853d2ef4f8 Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/2642 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/cpu/intel/fit/Kconfig')
-rw-r--r--src/cpu/intel/fit/Kconfig12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/cpu/intel/fit/Kconfig b/src/cpu/intel/fit/Kconfig
new file mode 100644
index 0000000000..9b57556827
--- /dev/null
+++ b/src/cpu/intel/fit/Kconfig
@@ -0,0 +1,12 @@
+config CPU_INTEL_FIRMWARE_INTERFACE_TABLE
+ def_bool n
+ help
+ This option selects building a Firmware Interface Table (FIT).
+
+config CPU_INTEL_NUM_FIT_ENTRIES
+ int
+ default 4
+ depends on CPU_INTEL_FIRMWARE_INTERFACE_TABLE
+ help
+ This option selects the number of empty entries in the FIT table.
+