From 16bc9bab2ab3b248f44bdf721ec83cdc21bcc32e Mon Sep 17 00:00:00 2001 From: Lee Leahy Date: Sat, 1 Apr 2017 20:33:58 -0700 Subject: soc/intel/quark: Add SD/MMC test support The SD/MMC test support consists of: * Add Kconfig value to enable the SD/MMC test support. * Add Kconfig value to enable the logging support. * Add SD/MMC controller init code and read block 0 from each partition. * Add logging code to snapshot the transactions with the SD/MMC device. * Add eMMC driver for ramstage to call test code. * Add romstage code to call test code. * Add bootblock code to call test code. TEST=Build and run on Galileo Gen2 Change-Id: I72785f0dcd466c05c1385cef166731219b583551 Signed-off-by: Lee Leahy Reviewed-on: https://review.coreboot.org/19211 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- src/soc/intel/quark/romstage/fsp2_0.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'src/soc/intel/quark/romstage/fsp2_0.c') diff --git a/src/soc/intel/quark/romstage/fsp2_0.c b/src/soc/intel/quark/romstage/fsp2_0.c index d03545d759..10e44c1b68 100644 --- a/src/soc/intel/quark/romstage/fsp2_0.c +++ b/src/soc/intel/quark/romstage/fsp2_0.c @@ -19,10 +19,12 @@ #include "../chip.h" #include #include +#include #include #include #include #include +#include asmlinkage void *car_stage_c_entry(void) { @@ -34,6 +36,21 @@ asmlinkage void *car_stage_c_entry(void) post_code(0x20); console_init(); + if (IS_ENABLED(CONFIG_STORAGE_TEST)) { + uint32_t bar; + dev_t dev; + uint32_t previous_bar; + uint16_t previous_command; + + /* Enable the SD/MMC controller and run the test. Restore + * the BAR and command registers upon completion. + */ + dev = PCI_DEV(0, SD_MMC_DEV, SD_MMC_FUNC); + bar = storage_test_init(dev, &previous_bar, &previous_command); + storage_test(bar, 1); + storage_test_complete(dev, previous_bar, previous_command); + } + /* Initialize DRAM */ s3wake = fill_power_state() == ACPI_S3; fsp_memory_init(s3wake); -- cgit v1.2.3