[coreboot-gerrit] New patch to review for coreboot: Quark: Add TempRamInit support

Leroy P Leahy (leroy.p.leahy@intel.com) gerrit at coreboot.org
Tue Jan 26 01:34:41 CET 2016


Leroy P Leahy (leroy.p.leahy at intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13443

-gerrit

commit 43c5b26035ef072ec7c0b0f8742ee446542fa2a7
Author: Lee Leahy <leroy.p.leahy at intel.com>
Date:   Sun Jan 24 15:12:50 2016 -0800

    Quark: Add TempRamInit support
    
    Successfully invoke TempRamInit from the FSP binary:
    *  Don't relocate the FSP binary image
    *  Move the FSP binary into ESRAM
    *  Test by setting the following Kconfig values one at a time:
        * CONFIG_ENABLE_DEBUG_LED_FINDFSP
        * CONFIG_ENABLE_DEBUG_LED_TEMPRAMINIT
    
    BRANCH=none
    BUG=None
    TEST=Build and run on Galileo Gen2
    
    Change-Id: I1e2e413a8573f750c611b0f9df101b2c869a789e
    Signed-off-by: Lee Leahy <leroy.p.leahy at intel.com>
---
 src/mainboard/intel/galileo/Kconfig           |  37 ++++++
 src/mainboard/intel/galileo/Makefile.inc      |  27 +++++
 src/soc/intel/quark/Kconfig                   |  33 ++++++
 src/soc/intel/quark/memmap.c                  |   7 ++
 src/soc/intel/quark/romstage/Makefile.inc     |   1 +
 src/soc/intel/quark/romstage/cache_as_ram.inc | 165 ++++++++++++++++++++++++++
 src/soc/intel/quark/romstage/esram_init.inc   |  20 +++-
 7 files changed, 288 insertions(+), 2 deletions(-)

diff --git a/src/mainboard/intel/galileo/Kconfig b/src/mainboard/intel/galileo/Kconfig
index 8cf0cf7..eeb7ab4 100755
--- a/src/mainboard/intel/galileo/Kconfig
+++ b/src/mainboard/intel/galileo/Kconfig
@@ -3,9 +3,46 @@ if BOARD_INTEL_GALILEO
 config BOARD_SPECIFIC_OPTIONS
 	def_bool y
 	select BOARD_ROMSIZE_KB_8192
+	select HAVE_FSP_RAW_BIN
 	select PLATFORM_USES_FSP1_1
 	select SOC_INTEL_QUARK
 
+config HAVE_FSP_RAW_BIN
+	bool "Should the Intel FSP binary be added to the flash image"
+	help
+	  Select this option to add an Intel FSP binary to
+	  the resulting coreboot image.
+
+	  Note: Without this binary, coreboot builds relying on the FSP
+	  will not boot
+
+config FSP_FILE
+	string
+	default "3rdparty/blobs/mainboard/$(MAINBOARDDIR)/fsp.bin"
+	help
+	  The path and filename of the Intel FSP binary for this platform.
+
+config FSP_LOC
+	hex
+	default 0xfff80000
+	help
+	  The location in CBFS that the FSP is located. This must match the
+	  value that is set in the FSP binary.  If the FSP needs to be moved,
+	  rebase the FSP with Intel's BCT (tool).
+
+config FSP_SRAM_LOC
+	hex
+	default 0x80000000
+	help
+	  The location in SRAM where a copy of the FSP binary is placed.
+
+config FSP_IMAGE_ID_STRING
+	string "8 byte platform string identifying the FSP platform"
+	default "QUK-FSP0"
+	help
+	  8 ASCII character byte signature string that will help match the FSP
+	  binary to a supported hardware configuration.
+
 config MAINBOARD_DIR
 	string
 	default intel/galileo
diff --git a/src/mainboard/intel/galileo/Makefile.inc b/src/mainboard/intel/galileo/Makefile.inc
new file mode 100755
index 0000000..7a1603e
--- /dev/null
+++ b/src/mainboard/intel/galileo/Makefile.inc
@@ -0,0 +1,27 @@
+##
+## This file is part of the coreboot project.
+##
+## Copyright (C) 2013 Google Inc.
+## Copyright (C) 2015-2016 Intel Corp.
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; version 2 of the License.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with this program; if not, write to the Free Software
+## Foundation, Inc.
+##
+
+# Add the FSP binary to the cbfs image
+ifeq ($(CONFIG_HAVE_FSP_RAW_BIN),y)
+cbfs-files-y += fsp.bin
+fsp.bin-file := $(call strip_quotes,$(CONFIG_FSP_FILE))
+fsp.bin-position := $(CONFIG_FSP_LOC)
+fsp.bin-type := raw
+endif
diff --git a/src/soc/intel/quark/Kconfig b/src/soc/intel/quark/Kconfig
index 9c29627..197eb59 100644
--- a/src/soc/intel/quark/Kconfig
+++ b/src/soc/intel/quark/Kconfig
@@ -23,6 +23,39 @@ config CBFS_SIZE
 	  This option specifies the maximum size of the CBFS portion in the
 	  firmware image.
 
+config ENABLE_DEBUG_LED
+	bool
+	default n
+	help
+	  Enable the use of the SD LED for early debugging before serial output is
+	  available.  Setting this LED indicates that control has reached the desired
+	  check point.  The assembly code below may be inserted into cache_as_ram.inc:
+	  movl    $SD_HOST_CTRL, %ebx
+	  movb    0(%ebx), %al
+	  orb     $1, %al
+	  movb    %al, 0(%ebx)
+
+config ENABLE_DEBUG_LED_ESRAM
+	bool "SD LED indicates ESRAM initialized"
+	default n
+	select ENABLE_DEBUG_LED
+	help
+	  Indicate that ESRAM has been successfully initialized.
+
+config ENABLE_DEBUG_LED_FINDFSP
+	bool "SD LED indicates fsp.bin file was found"
+	default n
+	select ENABLE_DEBUG_LED
+	help
+	  Indicate that fsp.bin was found.
+
+config ENABLE_DEBUG_LED_TEMPRAMINIT
+	bool "SD LED indicates TempRamInit was successful"
+	default n
+	select ENABLE_DEBUG_LED
+	help
+	  Indicate that TempRamInit was successful.
+
 config RMU_FILE
 	string
 	default "3rdparty/blobs/mainboard/$(MAINBOARDDIR)/rmu.bin"
diff --git a/src/soc/intel/quark/memmap.c b/src/soc/intel/quark/memmap.c
index 975128c..4f47afa 100644
--- a/src/soc/intel/quark/memmap.c
+++ b/src/soc/intel/quark/memmap.c
@@ -15,6 +15,13 @@
  */
 
 #include <cbmem.h>
+#include <fsp/memmap.h>
+
+size_t mmap_region_granluarity(void)
+{
+	/* Align to 8 MiB by default */
+	return 8 << 20;
+}
 
 void *cbmem_top(void)
 {
diff --git a/src/soc/intel/quark/romstage/Makefile.inc b/src/soc/intel/quark/romstage/Makefile.inc
index 3a891b4..f664b38 100644
--- a/src/soc/intel/quark/romstage/Makefile.inc
+++ b/src/soc/intel/quark/romstage/Makefile.inc
@@ -15,3 +15,4 @@
 # GNU General Public License for more details.
 #
 cpu_incs-y += $(src)/soc/intel/quark/romstage/esram_init.inc
+cpu_incs-y += $(src)/soc/intel/quark/romstage/cache_as_ram.inc
diff --git a/src/soc/intel/quark/romstage/cache_as_ram.inc b/src/soc/intel/quark/romstage/cache_as_ram.inc
new file mode 100644
index 0000000..80ac64d
--- /dev/null
+++ b/src/soc/intel/quark/romstage/cache_as_ram.inc
@@ -0,0 +1,165 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2000,2007 Ronald G. Minnich <rminnich at gmail.com>
+ * Copyright (C) 2007-2008 coresystems GmbH
+ * Copyright (C) 2013-2014 Sage Electronic Engineering, LLC.
+ * Copyright (C) 2015-2016 Intel Corporation
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+
+/*
+ * Replacement for cache_as_ram.inc when using the FSP binary.  This code
+ * locates the FSP binary, initializes the cache as RAM and performs the
+ * first stage of initialization.  Next this code switches the stack from
+ * the cache to RAM and then disables the cache as RAM.  Finally this code
+ * performs the final stage of initialization.
+ */
+
+#include <rules.h>
+
+	/*
+	 * eax:  BIST value
+	 */
+
+	mov	%eax, %edi
+
+cache_as_ram:
+	post_code(0x20)
+
+	/*
+	 * edi:  BIST value
+	 */
+
+	/*
+	 * Find the FSP binary in cbfs.
+	 * Make a fake stack that has the return value back to this code.
+	 */
+	lea	fake_fsp_stack, %esp
+	jmp	find_fsp
+
+find_fsp_ret:
+	/* Save the FSP location */
+	mov	%eax, %ebp
+
+	/*
+	 * Only when a valid FSP binary is found at CONFIG_FSP_LOC is
+	 * the returned FSP_INFO_HEADER structure address above the base
+	 * address of FSP binary specified by the CONFIG_FSP_LOC value.
+	 * All of the error values are in the 0x8xxxxxxx range which are
+	 * below the CONFIG_FSP_LOC value.
+	 */
+	cmp	$CONFIG_FSP_SRAM_LOC, %eax
+	jbe	halt1
+
+	post_code(POST_FSP_TEMP_RAM_INIT)
+
+#if IS_ENABLED(CONFIG_ENABLE_DEBUG_LED_FINDFSP)
+	movl	$SD_HOST_CTRL, %ebx
+	movb	0(%ebx), %al
+	orb	$1, %al
+	movb	%al, 0(%ebx)
+#endif /* CONFIG_ENABLE_DEBUG_LED_FINDFSP */
+
+	/* Calculate entry into FSP */
+	mov	0x30(%ebp), %eax	/* Load TempRamInitEntry */
+	add	0x1c(%ebp), %eax	/* add in the offset for FSP */
+
+	/*
+	 * Pass early init variables on a fake stack (no memory yet)
+	 * as well as the return location
+	 */
+	lea	CAR_init_stack, %esp
+
+	/*
+	 *       BIST value is zero
+	 * eax:  TempRamInitApi address
+	 * ebp:  FSP_INFO_HEADER address
+	 * edi:  BIST value
+	 * esi:  Not used
+	 */
+
+	/* call FSP binary to setup temporary stack */
+	jmp	*%eax
+
+CAR_init_done:
+	addl	$4, %esp
+
+	/*
+	 * ebp:  FSP_INFO_HEADER address
+	 * ecx:  Temp RAM base
+	 * edx:  Temp RAM top
+	 * edi:  BIST value
+	 */
+
+	cmp	$0, %eax
+	jne	halt2
+
+#if IS_ENABLED(CONFIG_ENABLE_DEBUG_LED_TEMPRAMINIT)
+	movl	%edx, %esi
+	movl	$SD_HOST_CTRL, %ebx
+	movb	0(%ebx), %al
+	orb	$1, %al
+	movb	%al, 0(%ebx)
+	movl	%esi, %edx
+#endif /* CONFIG_ENABLE_DEBUG_LED_TEMPRAMINIT */
+
+	clrl	%eax
+	jmp	halt2
+
+halt1:
+	/*
+	 * Failures for postcode 0xBA - failed in fsp_fih_early_find()
+	 *
+	 * Values are:
+	 * 0x01 - FV signature, "_FVH" not present
+	 * 0x02 - FFS GUID not present
+	 * 0x03 - FSP INFO Header not found
+	 * 0x04 - ImageBase does not equal CONFIG_FSP_LOC - Is the FSP rebased to
+	 *        a different location, or does it need to be?
+	 * 0x05 - FSP INFO Header signature "FSPH" not found
+	 * 0x06 - FSP Image ID is not the expected ID.
+	 */
+	movb	$0xBA, %ah
+	jmp	.Lhlt
+
+halt2:
+	/*
+	 * Failures for postcode 0xBB - failed in the FSP:
+	 *
+	 * 0x00 - FSP_SUCCESS: Temp RAM was initialized successfully.
+	 * 0x02 - FSP_INVALID_PARAMETER: Input parameters are invalid.
+	 * 0x03 - FSP_UNSUPPORTED: The FSP calling conditions were not met.
+	 * 0x07 - FSP_DEVICE_ERROR: Temp RAM initialization failed
+	 * 0x0E - FSP_NOT_FOUND: No valid microcode was found in the microcode region.
+	 * 0x14 - FSP_ALREADY_STARTED: Temp RAM initialization has been invoked
+	 */
+	movb	$0xBB, %ah
+	jmp	.Lhlt
+
+/*
+ * esp is set to this location so that the call into and return from the FSP
+ * in find_fsp will work.
+ */
+	.align 4
+fake_fsp_stack:
+	.long	find_fsp_ret
+	.long	CONFIG_FSP_SRAM_LOC	/* FSP base address */
+
+CAR_init_params:
+	.long	CONFIG_CPU_MICROCODE_CBFS_LOC		/* Microcode Location */
+	.long	CONFIG_CPU_MICROCODE_CBFS_LEN		/* Microcode Length */
+	.long	0xFFFFFFFF - CONFIG_ROM_SIZE + 1	/* Firmware Location */
+	.long	CONFIG_ROM_SIZE				/* Total Firmware Length */
+
+CAR_init_stack:
+	.long	CAR_init_done
+	.long	CAR_init_params
diff --git a/src/soc/intel/quark/romstage/esram_init.inc b/src/soc/intel/quark/romstage/esram_init.inc
index f084ff9..7d89876 100644
--- a/src/soc/intel/quark/romstage/esram_init.inc
+++ b/src/soc/intel/quark/romstage/esram_init.inc
@@ -522,6 +522,20 @@ stackless_PCIConfig_Read:
 #----------------------------------------------------------------------------
 
 esram_init_done:
+ 	#
+	# Copy FSP image to SRAM and call it.
+	#
+	#TODO - FSP location/size could be got in a routine.
+	cld
+	movl     $(0x00040000), %ecx               # 256K DWORDs = 64K
+	shrl     $2, %ecx
+	movl    $CONFIG_FSP_LOC, %esi   # The source address.
+	movl    $CONFIG_FSP_SRAM_LOC, %edi   # The destination address in QUARK_ESRAM_MEM_BASE_ADDRESS.
+	rep    movsl
+
+#if IS_ENABLED(CONFIG_ENABLE_DEBUG_LED)
+sd_led:
+	movl	%eax, %ecx
 
 .equ  SD_PFA, (0x14 << 11)    		# B0:D20:F0 - SDIO controller
 .equ  SD_CFG_BASE, (PCI_CFG | SD_PFA)	# SD controller base in PCI config space
@@ -563,10 +577,12 @@ L43:
 	jmp	stackless_PCIConfig_Read
 
 L44:
+#if IS_ENABLED(CONFIG_ENABLE_DEBUG_LED_ESRAM)
 	movl	$SD_HOST_CTRL, %ebx
 	movb	0(%ebx), %al
 	orb	$1, %al
 	movb	%al, 0(%ebx)
+#endif /* CONFIG_ENABLE_DEBUG_LED_ESRAM */
 
-	movl	$0, %eax
-	jmp	.Lhlt
+	movl	%ecx, %eax
+#endif /* CONFIG_ENABLE_DEBUG_LED */



More information about the coreboot-gerrit mailing list