summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCHRISTINA L. GRAVES <clgraves@us.ibm.com>2016-10-26 09:31:18 -0500
committerSachin Gupta <sgupta2m@in.ibm.com>2016-10-27 23:28:30 -0400
commit5bdc6a3d7c990b58b2d3149b0593d3970a86433b (patch)
treeb5024b6c1d3c9bb34f77ef3d5069ccda5480673e
parent18735b7c9abd821d4c9ed829923a493f59df700f (diff)
downloadtalos-sbe-5bdc6a3d7c990b58b2d3149b0593d3970a86433b.tar.gz
talos-sbe-5bdc6a3d7c990b58b2d3149b0593d3970a86433b.zip
Fixing order of setting clock muxes & functional reset & removing sim only scoms
Change-Id: I6234bfa16add15f7d1cd1cecc47b0e4f05733846 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/31845 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: PPE CI <ppe-ci+hostboot@us.ibm.com> Reviewed-by: Dean Sanner <dsanner@us.ibm.com> Reviewed-by: Joseph J. McGill <jmcgill@us.ibm.com> Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/31852 Reviewed-by: Hostboot Team <hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Sachin Gupta <sgupta2m@in.ibm.com>
-rw-r--r--src/import/chips/p9/procedures/hwp/perv/p9_sbe_lpc_init.C45
1 files changed, 5 insertions, 40 deletions
diff --git a/src/import/chips/p9/procedures/hwp/perv/p9_sbe_lpc_init.C b/src/import/chips/p9/procedures/hwp/perv/p9_sbe_lpc_init.C
index eb05b40e..f8cbbb56 100644
--- a/src/import/chips/p9/procedures/hwp/perv/p9_sbe_lpc_init.C
+++ b/src/import/chips/p9/procedures/hwp/perv/p9_sbe_lpc_init.C
@@ -47,30 +47,13 @@ fapi2::ReturnCode p9_sbe_lpc_init(const
fapi2::Target<fapi2::TARGET_TYPE_PROC_CHIP>& i_target_chip)
{
- const uint64_t C_OADRNB_ADDR = 0x00400000F0000C90ull;
- // bits 0:31 are the starting byte address of flash locations directly accessible by the second interface. Must be a multiple of the size of the address rangei
- // I have 0xF0000000 since we expect the PNOR address window to be from 0xFXXXXXXX (FW ops) and LPC IO ops from 0xDXXXXXXX
- // This makes the "direct accessible address range" to 0xC000000 to 0xFFFFFFF because of he 64MB size
- const uint64_t C_OADRNB_DATA = 0x0C00000000000000ull;
- const uint64_t C_OADRNS_ADDR = 0x00400000F0000C94ull;
- // bits 27:31 are the OPB window size this should be a multiple of the ECC granule if ECC is enbled and the large erase block size
- // Currently I have this set to be 64 MB
- const uint64_t C_OADRNS_DATA = 0x000000000000000Full;
- const uint64_t C_ADRCBF_ADDR = 0x00400000F0000C80ull;
- // bits 0:31 are the starting byte address of flash locations accessble by the first interface. Must be a multiple of the size of the address range accessible by the first interface.
- // I have 0xF0000000 since we expect the PNOR address window to be from 0xFXXXXXXX (FW ops) and LPC IO ops from 0xDXXXXXXX
- // This makes the "direct accessible address range" to 0xC000000 to 0xFFFFFFF because of the 64MB size
- const uint64_t C_ADRCBF_DATA = 0x0C00000000000000ull;
- const uint64_t C_ADRCMF_ADDR = 0x00400000F0000C84ull;
- // bits 27:31 are the size of the first interfaces flash allocation
- // Currently I have this set to be 64 MB
- const uint64_t C_ADRCMF_DATA = 0x000000000000000Full;
- const uint64_t C_CONF_ADDR = 0x00400000F0000C10ull;
- // Set the direct access cache disable bit (bit 30)
- const uint64_t C_CONF_DATA = 0x0000000200000000ull;
fapi2::buffer<uint64_t> l_data64;
FAPI_DBG("p9_sbe_lpc_init: Entering ...");
+ //Settting registers to do an LPC functional reset
+ l_data64.flush<0>().setBit<CPLT_CONF1_TC_LP_RESET>();
+ FAPI_TRY(fapi2::putScom(i_target_chip, PERV_N3_CPLT_CONF1_OR, l_data64));
+
// set LPC clock mux select to internal clock
//Setting CPLT_CTRL0 register value
l_data64.flush<0>();
@@ -83,28 +66,10 @@ fapi2::ReturnCode p9_sbe_lpc_init(const
l_data64.setBit<1>(); //PERV.CPLT_CTRL0.TC_UNIT_SYNCCLK_MUXSEL_DC = 0
FAPI_TRY(fapi2::putScom(i_target_chip, PERV_TP_CPLT_CTRL0_CLEAR, l_data64));
- //Settting registers to do an LPC functional reset
+ //Turn off the LPC functional reset
l_data64.flush<0>().setBit<CPLT_CONF1_TC_LP_RESET>();
- FAPI_TRY(fapi2::putScom(i_target_chip, PERV_N3_CPLT_CONF1_OR, l_data64));
FAPI_TRY(fapi2::putScom(i_target_chip, PERV_N3_CPLT_CONF1_CLEAR, l_data64));
- //Sets the register OADRNB (0x90) of the nore flash master (sets a base address for direct access)
- FAPI_TRY(fapi2::putScom(i_target_chip, PU_LPC_CMD_REG, C_OADRNB_ADDR), "Error setting the OADRNB address");
- FAPI_TRY(fapi2::putScom(i_target_chip, PU_LPC_DATA_REG, C_OADRNB_DATA), "Error setting the OADRNB data");
- //Sets the register OADRNS (0x94) of the flash master (window size setting)
- FAPI_TRY(fapi2::putScom(i_target_chip, PU_LPC_CMD_REG, C_OADRNS_ADDR), "Error setting the OADRNS address");
- FAPI_TRY(fapi2::putScom(i_target_chip, PU_LPC_DATA_REG, C_OADRNS_DATA), "Error setting the OADRNS data");
- //Sets the ADRCBF (0x80) of the nor flash master (NOR Address offset)
- FAPI_TRY(fapi2::putScom(i_target_chip, PU_LPC_CMD_REG, C_ADRCBF_ADDR), "Error setting the ADRCBF address");
- FAPI_TRY(fapi2::putScom(i_target_chip, PU_LPC_DATA_REG, C_ADRCBF_DATA), "Error setting the ADRCBF data");
- //Sets the register ADRCMF (0x84) of the nor flash master (size setting)
- FAPI_TRY(fapi2::putScom(i_target_chip, PU_LPC_CMD_REG, C_ADRCMF_ADDR), "Error setting the ADRCMF address");
- FAPI_TRY(fapi2::putScom(i_target_chip, PU_LPC_DATA_REG, C_ADRCMF_DATA), "Error setting the ADRCMF data");
- //Sets the register CONF(0x10) of the nor flash master (direct access)
- FAPI_TRY(fapi2::putScom(i_target_chip, PU_LPC_CMD_REG, C_CONF_ADDR), "Error setting the CONF address");
- FAPI_TRY(fapi2::putScom(i_target_chip, PU_LPC_DATA_REG, C_CONF_DATA), "Error setting the CONF data");
-
-
FAPI_DBG("p9_sbe_lpc_init: Exiting ...");
fapi_try_exit:
OpenPOWER on IntegriCloud