aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2019-01-06 14:09:31 +0100
committerPatrick Georgi <pgeorgi@google.com>2019-01-14 19:42:59 +0000
commit3ef017c4d4975aa055f8be3dc8a5cf37250f88e2 (patch)
treefad2ce191d02d41f1517f7d90212c9933d9c9ac7 /src
parent3d3152eec7efe9bf02499c42b92b4ad22bd7fd4e (diff)
[RFC]util/checklist: Remove this functionality
It was only hooked up for galileo board when using the obsolete FSP1.1. I don't see how it can be useful... Change-Id: Ifd7cbd664cfa3b729a11c885134fd9b5de62a96c Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/30691 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r--src/Kconfig30
-rw-r--r--src/drivers/intel/fsp1_1/Kconfig4
-rw-r--r--src/drivers/intel/fsp2_0/Kconfig4
-rw-r--r--src/mainboard/intel/galileo/Kconfig2
-rw-r--r--src/vendorcode/intel/fsp/fsp1_1/checklist/bootblock_complete.dat10
-rw-r--r--src/vendorcode/intel/fsp/fsp1_1/checklist/bootblock_optional.dat6
-rw-r--r--src/vendorcode/intel/fsp/fsp1_1/checklist/ramstage_complete.dat53
-rw-r--r--src/vendorcode/intel/fsp/fsp1_1/checklist/ramstage_optional.dat46
-rw-r--r--src/vendorcode/intel/fsp/fsp1_1/checklist/romstage_complete.dat53
-rw-r--r--src/vendorcode/intel/fsp/fsp1_1/checklist/romstage_optional.dat33
-rw-r--r--src/vendorcode/intel/fsp/fsp1_1/checklist/verstage_complete.dat33
-rw-r--r--src/vendorcode/intel/fsp/fsp1_1/checklist/verstage_optional.dat20
12 files changed, 0 insertions, 294 deletions
diff --git a/src/Kconfig b/src/Kconfig
index 8de9dafe25..a069f63e4e 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -1091,36 +1091,6 @@ config MAX_REBOOT_CNT
with the normal image enabled before assuming the normal image is defective
and switching to the fallback image.
-config CREATE_BOARD_CHECKLIST
- bool
- default n
- help
- When selected, creates a webpage showing the implementation status for
- the board. Routines highlighted in green are complete, yellow are
- optional and red are required and must be implemented. A table is
- produced for each stage of the boot process except the bootblock. The
- red items may be used as an implementation checklist for the board.
-
-config MAKE_CHECKLIST_PUBLIC
- bool
- default n
- help
- When selected, build/$(CONFIG_MAINBOARD_PART_NUMBER)_checklist.html
- is copied into the Documentation/$(CONFIG_MAINBOARD_VENDOR)/Board
- directory.
-
-config CHECKLIST_DATA_FILE_LOCATION
- string
- help
- Location of the <stage>_complete.dat and <stage>_optional.dat files
- that are consumed during checklist processing. <stage>_complete.dat
- contains the symbols that are expected to be in the resulting image.
- <stage>_optional.dat is a subset of <stage>_complete.dat and contains
- a list of weak symbols which the resulting image may consume. Other
- symbols contained only in <stage>_complete.dat will be flagged as
- required and not implemented if a weak implementation is found in the
- resulting image.
-
config UNCOMPRESSED_RAMSTAGE
bool
diff --git a/src/drivers/intel/fsp1_1/Kconfig b/src/drivers/intel/fsp1_1/Kconfig
index af6ed422a1..2575577ba4 100644
--- a/src/drivers/intel/fsp1_1/Kconfig
+++ b/src/drivers/intel/fsp1_1/Kconfig
@@ -86,10 +86,6 @@ config USE_GENERIC_FSP_CAR_INC
The chipset can select this to use a generic cache_as_ram.inc file
that should be good for all FSP based platforms.
-config CHECKLIST_DATA_FILE_LOCATION
- string
- default "src/vendorcode/intel/fsp/fsp1_1/checklist"
-
config RESET_ON_INVALID_RAMSTAGE_CACHE
bool "Reset the system on S3 wake when ramstage cache invalid."
default n
diff --git a/src/drivers/intel/fsp2_0/Kconfig b/src/drivers/intel/fsp2_0/Kconfig
index 28e9e5dcd3..8156d187dc 100644
--- a/src/drivers/intel/fsp2_0/Kconfig
+++ b/src/drivers/intel/fsp2_0/Kconfig
@@ -146,10 +146,6 @@ config VERIFY_HOBS
Verify that the HOBs required by coreboot are returned by FSP and
that the resource HOBs are in the correct order and position.
-config CHECKLIST_DATA_FILE_LOCATION
- string
- default "src/vendorcode/intel/fsp/fsp2_0/checklist"
-
config RESET_ON_INVALID_RAMSTAGE_CACHE
bool "Reset the system on S3 wake when ramstage cache invalid."
default n
diff --git a/src/mainboard/intel/galileo/Kconfig b/src/mainboard/intel/galileo/Kconfig
index bddc03666d..0af03e570c 100644
--- a/src/mainboard/intel/galileo/Kconfig
+++ b/src/mainboard/intel/galileo/Kconfig
@@ -18,7 +18,6 @@ if BOARD_INTEL_GALILEO
config BOARD_SPECIFIC_OPTIONS
def_bool y
select BOARD_ROMSIZE_KB_8192
-# select CREATE_BOARD_CHECKLIST
select ENABLE_BUILTIN_HSUART1
select HAVE_ACPI_TABLES
select SOC_INTEL_QUARK
@@ -52,7 +51,6 @@ choice
config FSP_VERSION_1_1
bool "FSP 1.1"
- select CREATE_BOARD_CHECKLIST
select PLATFORM_USES_FSP1_1
# select ADD_FSP_RAW_BIN
help
diff --git a/src/vendorcode/intel/fsp/fsp1_1/checklist/bootblock_complete.dat b/src/vendorcode/intel/fsp/fsp1_1/checklist/bootblock_complete.dat
deleted file mode 100644
index 4055a3c6c1..0000000000
--- a/src/vendorcode/intel/fsp/fsp1_1/checklist/bootblock_complete.dat
+++ /dev/null
@@ -1,10 +0,0 @@
-bootblock_c_entry
-bootblock_mainboard_early_init
-bootblock_mainboard_init
-bootblock_main_with_timestamp
-bootblock_pre_c_entry
-bootblock_protected_mode_entry
-bootblock_soc_early_init
-bootblock_soc_init
-tsc_freq_mhz
-uart_init
diff --git a/src/vendorcode/intel/fsp/fsp1_1/checklist/bootblock_optional.dat b/src/vendorcode/intel/fsp/fsp1_1/checklist/bootblock_optional.dat
deleted file mode 100644
index fc0e872fd9..0000000000
--- a/src/vendorcode/intel/fsp/fsp1_1/checklist/bootblock_optional.dat
+++ /dev/null
@@ -1,6 +0,0 @@
-bootblock_c_entry
-bootblock_mainboard_early_init
-bootblock_mainboard_init
-bootblock_soc_early_init
-bootblock_soc_init
-uart_init
diff --git a/src/vendorcode/intel/fsp/fsp1_1/checklist/ramstage_complete.dat b/src/vendorcode/intel/fsp/fsp1_1/checklist/ramstage_complete.dat
deleted file mode 100644
index 64f8584340..0000000000
--- a/src/vendorcode/intel/fsp/fsp1_1/checklist/ramstage_complete.dat
+++ /dev/null
@@ -1,53 +0,0 @@
-acpi_create_serialio_ssdt
-arch_segment_loaded
-backup_top_of_ram
-boot_device_init
-cbfs_master_header_locator
-cbmem_fail_resume
-clear_recovery_mode_switch
-cpu_smi_handler
-fw_cfg_acpi_tables
-get_sw_write_protect_state
-get_top_of_ram
-gpio_acpi_path
-init_timer
-lb_board
-lb_framebuffer
-mainboard_add_dimm_info
-mainboard_io_trap_handler
-mainboard_post
-mainboard_silicon_init_params
-mainboard_smi_apmc
-mainboard_smi_gpi
-mainboard_smi_sleep
-mainboard_suspend_resume
-map_oprom_vendev
-mirror_payload
-northbridge_smi_handler
-nvm_mmio_to_flash_offset
-platform_prog_run
-platform_segment_loaded
-save_chromeos_gpios
-smbios_mainboard_bios_version
-smbios_mainboard_manufacturer
-smbios_mainboard_product_name
-smbios_mainboard_serial_number
-smbios_mainboard_set_uuid
-smbios_mainboard_version
-smm_disable_busmaster
-soc_after_silicon_init
-soc_display_silicon_init_params
-soc_fill_acpi_wake
-soc_silicon_init_params
-soc_skip_ucode_update
-southbridge_smi_handler
-stage_cache_add
-stage_cache_load_stage
-timestamp_get
-timestamp_tick_freq_mhz
-tsc_freq_mhz
-vb2ex_hwcrypto_digest_extend
-vb2ex_hwcrypto_digest_finalize
-vb2ex_hwcrypto_digest_init
-wifi_regulatory_domain
-write_smp_table
diff --git a/src/vendorcode/intel/fsp/fsp1_1/checklist/ramstage_optional.dat b/src/vendorcode/intel/fsp/fsp1_1/checklist/ramstage_optional.dat
deleted file mode 100644
index 6608583b28..0000000000
--- a/src/vendorcode/intel/fsp/fsp1_1/checklist/ramstage_optional.dat
+++ /dev/null
@@ -1,46 +0,0 @@
-arch_segment_loaded
-backup_top_of_ram
-boot_device_init
-cbmem_fail_resume
-clear_recovery_mode_switch
-cpu_smi_handler
-fw_cfg_acpi_tables
-get_sw_write_protect_state
-get_top_of_ram
-gpio_acpi_path
-lb_board
-lb_framebuffer
-mainboard_add_dimm_info
-mainboard_io_trap_handler
-mainboard_post
-mainboard_silicon_init_params
-mainboard_smi_apmc
-mainboard_smi_gpi
-mainboard_smi_sleep
-mainboard_suspend_resume
-map_oprom_vendev
-mirror_payload
-northbridge_smi_handler
-nvm_mmio_to_flash_offset
-platform_prog_run
-platform_segment_loaded
-save_chromeos_gpios
-smbios_mainboard_bios_version
-smbios_mainboard_manufacturer
-smbios_mainboard_product_name
-smbios_mainboard_serial_number
-smbios_mainboard_set_uuid
-smbios_mainboard_version
-smm_disable_busmaster
-soc_after_silicon_init
-soc_display_silicon_init_params
-soc_silicon_init_params
-soc_skip_ucode_update
-southbridge_smi_handler
-stage_cache_add
-stage_cache_load_stage
-vb2ex_hwcrypto_digest_extend
-vb2ex_hwcrypto_digest_finalize
-vb2ex_hwcrypto_digest_init
-wifi_regulatory_domain
-write_smp_table
diff --git a/src/vendorcode/intel/fsp/fsp1_1/checklist/romstage_complete.dat b/src/vendorcode/intel/fsp/fsp1_1/checklist/romstage_complete.dat
deleted file mode 100644
index 34172121f5..0000000000
--- a/src/vendorcode/intel/fsp/fsp1_1/checklist/romstage_complete.dat
+++ /dev/null
@@ -1,53 +0,0 @@
-arch_segment_loaded
-backup_top_of_ram
-boot_device_init
-car_stage_entry
-cbfs_master_header_locator
-cbmem_fail_resume
-clear_recovery_mode_switch
-cpu_smi_handler
-fill_power_state
-get_sw_write_protect_state
-get_top_of_ram
-gpio_acpi_path
-init_timer
-mainboard_add_dimm_info
-mainboard_check_ec_image
-mainboard_fill_spd_data
-mainboard_io_trap_handler
-mainboard_memory_init_params
-mainboard_post
-mainboard_romstage_entry
-mainboard_save_dimm_info
-mainboard_smi_apmc
-mainboard_smi_gpi
-mainboard_smi_sleep
-map_oprom_vendev
-migrate_power_state
-mrc_cache_get_current_with_version
-mrc_cache_stash_data_with_version
-platform_prog_run
-platform_segment_loaded
-print_fsp_info
-raminit
-ramstage_cache_invalid
-report_memory_config
-romstage_common
-save_chromeos_gpios
-set_max_freq
-setup_stack_and_mtrrs
-smm_region
-smm_region_size
-soc_after_ram_init
-soc_display_memory_init_params
-soc_memory_init_params
-soc_pre_ram_init
-southbridge_smi_handler
-stage_cache_add
-stage_cache_load_stage
-timestamp_get
-tsc_freq_mhz
-vb2ex_hwcrypto_digest_extend
-vb2ex_hwcrypto_digest_finalize
-vb2ex_hwcrypto_digest_init
-vboot_platform_prepare_reboot
diff --git a/src/vendorcode/intel/fsp/fsp1_1/checklist/romstage_optional.dat b/src/vendorcode/intel/fsp/fsp1_1/checklist/romstage_optional.dat
deleted file mode 100644
index 08351907c7..0000000000
--- a/src/vendorcode/intel/fsp/fsp1_1/checklist/romstage_optional.dat
+++ /dev/null
@@ -1,33 +0,0 @@
-arch_segment_loaded
-backup_top_of_ram
-boot_device_init
-car_stage_entry
-cbmem_fail_resume
-clear_recovery_mode_switch
-cpu_smi_handler
-get_sw_write_protect_state
-get_top_of_ram
-gpio_acpi_path
-mainboard_add_dimm_info
-mainboard_check_ec_image
-mainboard_io_trap_handler
-mainboard_post
-mainboard_romstage_entry
-mainboard_save_dimm_info
-mainboard_smi_apmc
-mainboard_smi_gpi
-mainboard_smi_sleep
-map_oprom_vendev
-platform_prog_run
-platform_segment_loaded
-save_chromeos_gpios
-soc_after_ram_init
-soc_display_memory_init_params
-soc_memory_init_params
-soc_pre_ram_init
-southbridge_smi_handler
-stage_cache_add
-stage_cache_load_stage
-vb2ex_hwcrypto_digest_extend
-vb2ex_hwcrypto_digest_finalize
-vb2ex_hwcrypto_digest_init
diff --git a/src/vendorcode/intel/fsp/fsp1_1/checklist/verstage_complete.dat b/src/vendorcode/intel/fsp/fsp1_1/checklist/verstage_complete.dat
deleted file mode 100644
index 0910152c89..0000000000
--- a/src/vendorcode/intel/fsp/fsp1_1/checklist/verstage_complete.dat
+++ /dev/null
@@ -1,33 +0,0 @@
-arch_segment_loaded
-backup_top_of_ram
-boot_device_init
-car_mainboard_post_console_init
-car_mainboard_pre_console_init
-car_soc_post_console_init
-car_soc_pre_console_init
-cbfs_master_header_locator
-cbmem_fail_resume
-clear_recovery_mode_switch
-cpu_smi_handler
-get_sw_write_protect_state
-gpio_acpi_path
-init_timer
-mainboard_check_ec_image
-mainboard_io_trap_handler
-mainboard_post
-mainboard_smi_apmc
-mainboard_smi_gpi
-mainboard_smi_sleep
-map_oprom_vendev
-platform_prog_run
-platform_segment_loaded
-save_chromeos_gpios
-stage_cache_add
-stage_cache_load_stage
-timestamp_get
-tsc_freq_mhz
-vb2ex_hwcrypto_digest_extend
-vb2ex_hwcrypto_digest_finalize
-vb2ex_hwcrypto_digest_init
-vboot_platform_prepare_reboot
-verstage_mainboard_init
diff --git a/src/vendorcode/intel/fsp/fsp1_1/checklist/verstage_optional.dat b/src/vendorcode/intel/fsp/fsp1_1/checklist/verstage_optional.dat
deleted file mode 100644
index fe1f0d9d2e..0000000000
--- a/src/vendorcode/intel/fsp/fsp1_1/checklist/verstage_optional.dat
+++ /dev/null
@@ -1,20 +0,0 @@
-arch_segment_loaded
-backup_top_of_ram
-boot_device_init
-car_mainboard_post_console_init
-car_mainboard_pre_console_init
-car_soc_post_console_init
-car_soc_pre_console_init
-mainboard_check_ec_image
-mainboard_post
-platform_prog_run
-platform_segment_loaded
-stage_cache_add
-stage_cache_load_stage
-timestamp_get
-tsc_freq_mhz
-vb2ex_hwcrypto_digest_extend
-vb2ex_hwcrypto_digest_finalize
-vb2ex_hwcrypto_digest_init
-vboot_platform_prepare_reboot
-verstage_mainboard_init