summaryrefslogtreecommitdiffstats
path: root/sbe/sbefw/sbecmdmemaccess.H
blob: 1b7dddc078e4507f8ae05e709ac26a5e351cc79f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * @file: ppe/sbe/sbefw/sbecmdmemaccess.H
 *
 * @brief This file contains the Interfaces for the Memory Access chip-ops
 *
 */

#ifndef __SBEFW_SBECMDMEMACCESS_H
#define __SBEFW_SBECMDMEMACCESS_H

#include <stdint.h>

/**
  * @brief sbeGetMem : Implements SBE Get Memory ChipOp
  *
  * @param[in] i_pArg Buffer to be passed to the function (not used as of now)
  *
  * @return    Rc from the FIFO access utility
  */
uint32_t sbeGetMem (uint8_t *i_pArg);

/**
  * @brief sbePutMem : Implements SBE Put Memory ChipOp
  *
  * @param[in] i_pArg Buffer to be passed to the function (not used as of now)
  *
  * @return    Rc from the FIFO access utility
  */
uint32_t sbePutMem  (uint8_t *i_pArg);

#endif /* __SBEFW_SBECMDMEMACCESS_H */
OpenPOWER on IntegriCloud