Skip to content

Commit

Permalink
Adds p9a freq specialization
Browse files Browse the repository at this point in the history
build-fix

Change-Id: I2f7d2eb564d8f08a61ec3fd9d3c214321c0a21c4
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/75983
Reviewed-by: Louis Stermole <stermole@us.ibm.com>
Reviewed-by: ANDRE A. MARIN <aamarin@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Mark Pizzutillo <mark.pizzutillo@ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/75990
Reviewed-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Christian R. Geddes <crgeddes@us.ibm.com>
  • Loading branch information
sglancy6 authored and crgeddes committed Apr 16, 2019
1 parent 9826757 commit 8578705
Showing 1 changed file with 12 additions and 0 deletions.
Expand Up @@ -129,6 +129,18 @@ fapi2::ReturnCode get_master_rank_per_dimm<mss::proc_type::AXONE>(
fapi_try_exit:
return fapi2::current_err;
}
///
/// @brief Gets the DIMM type for a specific DIMM - specialization for the NIMBUS processor type
/// @param[in] i_target DIMM target
/// @param[out] o_dimm_type DIMM type on the DIMM target
/// @return FAPI2_RC_SUCCESS iff ok
///
template<>
fapi2::ReturnCode get_dimm_type<mss::proc_type::AXONE>(const fapi2::Target<fapi2::TARGET_TYPE_DIMM>& i_target,
uint8_t& o_dimm_type)
{
return mss::attr::get_dimm_type(i_target, o_dimm_type);
}

///
/// @brief Gets the attribute for the maximum - specialization for Axone
Expand Down

0 comments on commit 8578705

Please sign in to comment.