summaryrefslogtreecommitdiffstats
path: root/import
diff options
context:
space:
mode:
authorCHRISTINA L. GRAVES <clgraves@us.ibm.com>2015-09-19 10:17:45 -0500
committerSachin Gupta <sgupta2m@in.ibm.com>2015-11-25 05:57:41 -0600
commitc0d425ecf9a36f0bdde080bdecbd18ee3d52f811 (patch)
tree8c638b2fbbf9ecf8f31f39f66bc13e855795ebfd /import
parenta0b80aaeb52c6c0e5531b78f4ee1ec4c09e0fc0a (diff)
downloadtalos-sbe-c0d425ecf9a36f0bdde080bdecbd18ee3d52f811.tar.gz
talos-sbe-c0d425ecf9a36f0bdde080bdecbd18ee3d52f811.zip
Checking in the L2 p9_sbe_load_bootloader procedures
Change-Id: I0bf78430de40c7031ec0a27e10e30f2027bbdef6 Original-Change-Id: Iaba2952f7e01257e7d170bbf70dd16ae9f68eb2e Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/20631 Tested-by: Jenkins Server Reviewed-by: Joseph J. McGill <jmcgill@us.ibm.com> Reviewed-by: PRACHI GUPTA <pragupta@us.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com> Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/22318 Reviewed-by: Sachin Gupta <sgupta2m@in.ibm.com>
Diffstat (limited to 'import')
-rw-r--r--import/chips/p9/procedures/hwp/nest/p9_sbe_load_bootloader.C168
1 files changed, 168 insertions, 0 deletions
diff --git a/import/chips/p9/procedures/hwp/nest/p9_sbe_load_bootloader.C b/import/chips/p9/procedures/hwp/nest/p9_sbe_load_bootloader.C
new file mode 100644
index 00000000..e84f8c7e
--- /dev/null
+++ b/import/chips/p9/procedures/hwp/nest/p9_sbe_load_bootloader.C
@@ -0,0 +1,168 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: chips/p9/procedures/ipl/hwp/p9_sbe_load_bootloader.C $ */
+/* */
+/* IBM CONFIDENTIAL */
+/* */
+/* EKB Project */
+/* */
+/* COPYRIGHT 2015 */
+/* [+] International Business Machines Corp. */
+/* */
+/* */
+/* The source code for this program is not published or otherwise */
+/* divested of its trade secrets, irrespective of what has been */
+/* deposited with the U.S. Copyright Office. */
+/* */
+/* IBM_PROLOG_END_TAG */
+//--------------------------------------------------------------------------
+//
+// @file p9_sbe_load_bootloader.C
+// @brief Shift HB bootloader payload from SEEPROM to L3 cache of master core via PBA
+//
+// *HWP HWP Owner: Christina Graves clgraves@us.ibm.com
+// *HWP HWP Writer: Murey A Luna Torres malunato@us.ibm.com, Joseph McGill jmcgill@us.ibm.com
+// *HWP FW Owner: Thi Tran thi@us.ibm.com
+// *HWP Team: Nest
+// *HWP Level: 2
+// *HWP Consumed by: SBE
+//
+//--------------------------------------------------------------------------
+
+//--------------------------------------------------------------------------
+// Includes
+//--------------------------------------------------------------------------
+#include <p9_sbe_load_bootloader.H>
+#include <p9_pba_setup.H>
+#include <p9_pba_access.H>
+#include <p9_fbc_utils.H>
+
+//-----------------------------------------------------------------------------------
+// Constant definitions
+//-----------------------------------------------------------------------------------
+
+// group base address determination constants
+const uint8_t FABRIC_GROUP_ID_MASK_LARGE_SYSTEM = 0xF;
+const uint8_t FABRIC_GROUP_ID_SHIFT_LARGE_SYSTEM = 45;
+
+const uint8_t FABRIC_GROUP_ID_MASK_SMALL_SYSTEM = 0x3;
+const uint8_t FABRIC_GROUP_ID_SHIFT_SMALL_SYSTEM = 44;
+
+// PBA setup/access HWP call constants
+const bool PBA_HWP_WRITE_OP = false;
+const uint32_t PBA_HWP_FLAGS = FLAG_FASTMODE | // fastmode
+ ((p9_pba_write_ttype::LCO << FLAG_TTYPE_SHIFT) & p9_pba_flags::FLAG_TTYPE); // LCO_M
+
+//-----------------------------------------------------------------------------------
+// Function definitions
+//-----------------------------------------------------------------------------------
+
+fapi2::ReturnCode p9_sbe_load_bootloader(
+ const fapi2::Target<fapi2::TARGET_TYPE_PROC_CHIP>& i_master_chip_target,
+ const fapi2::Target<fapi2::TARGET_TYPE_EX>& i_master_ex_target,
+ const uint64_t i_payload_size,
+ uint64_t* i_payload_data)
+{
+ const fapi2::Target<fapi2::TARGET_TYPE_SYSTEM> FAPI_SYSTEM;
+ uint64_t l_bootloader_offset;
+ uint64_t l_hostboot_hrmor_offset;
+ uint8_t l_fabric_group_id;
+ uint8_t l_fabric_addr_bar_mode;
+ uint64_t l_target_base_address;
+ uint64_t l_target_address;
+ uint64_t l_payload_data_offset;
+
+ FAPI_DBG("Start");
+
+ // read platform initialized attributes needed to determine target base address
+ FAPI_TRY(FAPI_ATTR_GET(fapi2::ATTR_SBE_BOOTLOADER_OFFSET, FAPI_SYSTEM, l_bootloader_offset),
+ "Error from FAPI_ATTR_GET (ATTR_SBE_BOOTLOADER_OFFSET)");
+
+ FAPI_TRY(FAPI_ATTR_GET(fapi2::ATTR_HOSTBOOT_HRMOR_OFFSET, FAPI_SYSTEM, l_hostboot_hrmor_offset),
+ "Error from FAPI_ATTR_GET (ATTR_HOSTBOOT_HRMOR_OFFSET)");
+
+ FAPI_TRY(FAPI_ATTR_GET(fapi2::ATTR_FABRIC_GROUP_ID, i_master_chip_target, l_fabric_group_id),
+ "Error from FAPI_ATTR_GET (ATTR_FABRIC_GROUP_ID)");
+
+ FAPI_TRY(FAPI_ATTR_GET(fapi2::ATTR_PROC_FABRIC_ADDR_BAR_MODE, i_master_chip_target, l_fabric_addr_bar_mode),
+ "Error from FAPI_ATTR_GET (ATTR_PROC_FABRIC_ADDR_BAR_MODE)");
+
+ // target base address = (group base address) +
+ // (hostboot HRMOR offset) +
+ // (bootloader offset)
+
+ // form group base address
+ l_target_base_address = l_fabric_group_id;
+ l_target_base_address &= ((l_fabric_addr_bar_mode == fapi2::ENUM_ATTR_PROC_FABRIC_ADDR_BAR_MODE_LARGE_SYSTEM) ?
+ (FABRIC_GROUP_ID_MASK_LARGE_SYSTEM) :
+ (FABRIC_GROUP_ID_MASK_SMALL_SYSTEM));
+ l_target_base_address <<= ((l_fabric_addr_bar_mode == fapi2::ENUM_ATTR_PROC_FABRIC_ADDR_BAR_MODE_LARGE_SYSTEM) ?
+ (FABRIC_GROUP_ID_SHIFT_LARGE_SYSTEM) :
+ (FABRIC_GROUP_ID_SHIFT_SMALL_SYSTEM));
+ // add hostboot HRMOR offset and bootloader offset contributions
+ l_target_base_address += l_hostboot_hrmor_offset;
+ l_target_base_address += l_bootloader_offset;
+
+ // check that base address is cacheline aligned
+ FAPI_ASSERT(!(l_target_base_address % FABRIC_CACHELINE_SIZE),
+ fapi2::P9_SBE_LOAD_BOOTLOADER_INVALID_TARGET_ADDRESS().
+ set_CHIP_TARGET(i_master_chip_target).
+ set_EX_TARGET(i_master_ex_target).
+ set_TARGET_BASE_ADDRESS(l_target_base_address).
+ set_FABRIC_GROUP_ID(l_fabric_group_id).
+ set_FABRIC_ADDR_BAR_MODE(l_fabric_addr_bar_mode).
+ set_HRMOR_OFFSET(l_hostboot_hrmor_offset).
+ set_BOOTLOADER_OFFSET(l_bootloader_offset),
+ "Target base address is not cacheline aligned!");
+ // check that the payload size is non-zero and evenly divisible into cachelines
+ FAPI_ASSERT(i_payload_size && !(i_payload_size % FABRIC_CACHELINE_SIZE),
+ fapi2::P9_SBE_LOAD_BOOTLOADER_INVALID_PAYLOAD_SIZE().
+ set_CHIP_TARGET(i_master_chip_target).
+ set_EX_TARGET(i_master_ex_target).
+ set_PAYLOAD_SIZE(i_payload_size),
+ "Payload size is invalid!");
+
+ // move data using PBA setup/access HWPs
+ l_target_address = l_target_base_address;
+ l_payload_data_offset = 0;
+
+ while (l_target_address < (l_target_base_address + i_payload_size))
+ {
+ // invoke PBA setup HWP to prep stream
+ uint32_t l_num_cachelines_to_roll;
+ FAPI_TRY(p9_pba_setup( i_master_chip_target,
+ i_master_ex_target,
+ l_target_address,
+ PBA_HWP_WRITE_OP,
+ PBA_HWP_FLAGS,
+ l_num_cachelines_to_roll), "Error from p9_pba_setup");
+
+ // call PBA access HWP per cacheline to move payload data
+ while (l_num_cachelines_to_roll &&
+ (l_target_address < (l_target_base_address + i_payload_size)))
+ {
+ FAPI_TRY(p9_pba_access(i_master_chip_target,
+ l_target_address,
+ PBA_HWP_WRITE_OP,
+ PBA_HWP_FLAGS,
+ (l_num_cachelines_to_roll == 1) ||
+ ((l_target_address + FABRIC_CACHELINE_SIZE) >
+ (l_target_base_address + i_payload_size)),
+ i_payload_data + l_payload_data_offset), "Error from p9_pba_access");
+
+ // decrement count of cachelines remaining in current stream
+ l_num_cachelines_to_roll--;
+
+ // stride address/payload data pointer offset to next cacheline
+ l_target_address += FABRIC_CACHELINE_SIZE;
+ l_payload_data_offset += (FABRIC_CACHELINE_SIZE / sizeof(uint64_t));
+ }
+
+ }
+
+fapi_try_exit:
+ FAPI_DBG("End");
+ return fapi2::current_err;
+}
+
OpenPOWER on IntegriCloud