summaryrefslogtreecommitdiffstats
path: root/pk/ppe42/ppe42_scom.c
diff options
context:
space:
mode:
Diffstat (limited to 'pk/ppe42/ppe42_scom.c')
-rwxr-xr-xpk/ppe42/ppe42_scom.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/pk/ppe42/ppe42_scom.c b/pk/ppe42/ppe42_scom.c
index aee9db24..105b83a4 100755
--- a/pk/ppe42/ppe42_scom.c
+++ b/pk/ppe42/ppe42_scom.c
@@ -52,9 +52,10 @@ uint32_t _putscom( uint32_t i_chiplet_id, uint32_t i_address, uint64_t i_data)
uint32_t getscom_abs( const uint32_t i_address, uint64_t *o_data)
{
-
+ uint64_t temp;
// Perform the Load Virtual Double instruction
- PPE_LVD(i_address, o_data);
+ PPE_LVD(i_address, temp);
+ PPE_STVD(o_data, temp);
// Get the MSR[SIBRC] as the return code
uint32_t rc = mfmsr();
@@ -65,9 +66,10 @@ uint32_t getscom_abs( const uint32_t i_address, uint64_t *o_data)
uint32_t _getscom( const uint32_t i_chiplet_id, const uint32_t i_address, uint64_t *o_data)
{
-
+ uint64_t temp;
// Perform the Load Virtual Double Index instruction
- PPE_LVDX(i_chiplet_id, i_address, o_data);
+ PPE_LVDX(i_chiplet_id, i_address, temp);
+ PPE_STVD(o_data, temp);
// Get the MSR[SIBRC] as the return code
uint32_t rc = mfmsr();
OpenPOWER on IntegriCloud