AM263x MCU+ SDK  08.05.00

Introduction

Overview

MCRC programming sequence:

  1. SDL_MCRC_channelReset()
  2. SDL_MCRC_init()
  3. SDL_MCRC_config()
  4. SDL_MCRC_enableIntr() - if needed
  5. Transfer data to PSA signature for generation of signature value
    • DMA is utilized in Semi-CPU mode
    • CPU need to pump data into PSA register in Full CPU mode.
  6. SDL_MCRC_getPSASectorSig()
    • After complete transfer read MCRC signature.

MCRC signature generated depends on amount of data copied into PSA register at a time/in single write. Though data pattern can be 8, 16, 32, or 64 bit, data copied into PSA register is always 64 bit wide. If data pattern is less than 64 bit, then it is padded with zeros to make it 64 bit write.

Files

file  mcrc/v0/sdl_mcrc.h
 This file contains the prototypes of the APIs present in the device abstraction layer file of MCRC. This also contains some related macros.
 

Data Structures

struct  SDL_MCRC_Signature_t
 Structure for accessing MCRC register data which are 64 bit wide. More...
 
struct  SDL_MCRC_SignatureRegAddr_t
 Structure for accessing MCRC registers address which are 64 bit wide. More...
 
struct  SDL_MCRC_ChannelStaticRegs
 MCRC channel static registers list. More...
 
struct  SDL_MCRC_StaticRegs_t
 MCRC static registers list. More...
 
struct  SDL_MCRC_DataConfig_t
 Structure for MCRC CPU inputs data. More...
 

Functions

int32_t SDL_MCRC_init (SDL_MCRC_InstType instance, SDL_MCRC_Channel_t channel, uint32_t watchdogPreload, uint32_t blockPreload)
 Initialize MCRC channel and will configure watchdog and block preload value for given channel. More...
 
int32_t SDL_MCRC_verifyInit (SDL_MCRC_InstType instance, SDL_MCRC_Channel_t channel, uint32_t watchdogPreload, uint32_t blockPreload)
 Verify the MCRC watchdog and block preload value initialized for given channel. More...
 
int32_t SDL_MCRC_config (SDL_MCRC_InstType instance, SDL_MCRC_Channel_t channel, uint32_t patternCount, uint32_t sectorCount, SDL_MCRC_ModeType mode)
 This API will configure MCRC mode, pattern and sector count for given channel. More...
 
int32_t SDL_MCRC_verifyConfig (SDL_MCRC_InstType instance, SDL_MCRC_Channel_t channel, uint32_t patternCount, uint32_t sectorCount, SDL_MCRC_ModeType mode)
 This API will verify the configure of MCRC mode, pattern and sector count for given channel. More...
 
int32_t SDL_MCRC_channelReset (SDL_MCRC_InstType instance, SDL_MCRC_Channel_t channel)
 This API is used to reset the MCRC channel. More...
 
int32_t SDL_MCRC_setPSASeedSig (SDL_MCRC_InstType instance, SDL_MCRC_Channel_t channel, const SDL_MCRC_Signature_t *pSeedSign)
 This API is used to set the PSA seed value without compression for given Channel. More...
 
int32_t SDL_MCRC_getPSASectorSig (SDL_MCRC_InstType instance, SDL_MCRC_Channel_t channel, SDL_MCRC_Signature_t *pSecSign)
 This API is used to get sector signature Value/ MCRC value for given channel. More...
 
int32_t SDL_MCRC_getIntrStatus (SDL_MCRC_InstType instance, SDL_MCRC_Channel_t channel, uint32_t *pIntrStatus)
 This API is used to get the pending interrupts for given Channel. More...
 
int32_t SDL_MCRC_enableIntr (SDL_MCRC_InstType instance, SDL_MCRC_Channel_t channel, uint32_t intrMask)
 This API is used to enable interrupts for given Channel. More...
 
int32_t SDL_MCRC_disableIntr (SDL_MCRC_InstType instance, SDL_MCRC_Channel_t channel, uint32_t intrMask)
 This API is used to disable interrupts for given Channel. More...
 
int32_t SDL_MCRC_clearIntr (SDL_MCRC_InstType instance, SDL_MCRC_Channel_t channel, uint32_t intrMask)
 This API is used to clear interrupts for given Channel. More...
 
int32_t SDL_MCRC_isBusy (SDL_MCRC_InstType instance, SDL_MCRC_Channel_t channel, uint32_t *pBusyFlag)
 This API is used to check if MCRC is busy for given Channel. More...
 
int32_t SDL_MCRC_getCurSecNum (SDL_MCRC_InstType instance, SDL_MCRC_Channel_t channel, uint32_t *pCurSecNum)
 This API is used to get the current sector number of which the signature verification fails in AUTO mode for given channel. More...
 
int32_t SDL_MCRC_getPSASig (SDL_MCRC_InstType instance, SDL_MCRC_Channel_t channel, SDL_MCRC_Signature_t *pPSAsig)
 This API is used to get current known good signature value/ MCRC value for given channel. More...
 
int32_t SDL_MCRC_readStaticReg (SDL_MCRC_InstType instance, SDL_MCRC_StaticRegs_t *pStaticRegs)
 This API is used to read static registers of MCRC module. This API needs to be called after the initial configuration is done and hence mutliple read between static registers do not change the values. More...
 
int32_t SDL_MCRC_getCurPSASig (SDL_MCRC_InstType instance, SDL_MCRC_Channel_t channel, SDL_MCRC_Signature_t *pCurPSASig)
 This API is used to get current known good signature value/ MCRC value for given channel. More...
 
int32_t SDL_MCRC_getPSASigRegAddr (SDL_MCRC_InstType instance, SDL_MCRC_Channel_t channel, SDL_MCRC_SignatureRegAddr_t *pMCRCregAddr)
 This API is used to get the PSA register address for given Channel. More...
 
int32_t SDL_MCRC_computeSignCPUmode (SDL_MCRC_InstType instance, SDL_MCRC_Channel_t channel, const SDL_MCRC_DataConfig_t *pDataConfig, SDL_MCRC_Signature_t *sectSignVal)
 This API is used to compute the signature for CPU-only mode and it check if the generated MCRC signature value matches with the reference signature value. More...
 
int32_t SDL_MCRC_getBaseaddr (SDL_MCRC_InstType instance, uint32_t *baseAddr)
 This API is used to get the base address of the instance. More...
 

Enumerations

enum  SDL_MCRC_DataBitSize { SDL_MCRC_DATA_8_BIT = 1, SDL_MCRC_DATA_16_BIT = 2, SDL_MCRC_DATA_32_BIT = 3 }
 This enumerator defines the Data size for input MCRC DATA. More...
 
enum  SDL_MCRC_InstType { MCRC0 = 1, SDL_MCRC_INVALID = 0xffff }
 MCRC Instance supported. More...
 

Macros

#define SDL_MCRC_CHANNEL_IRQSTATUS_RAW_MAIN_ALL
 Macro defines mask for all the interrupts for a channel. More...
 
#define SDL_MCRC_PATTERN_COUNT_MAX   (0x000FFFFFU)
 Macro defines maximum value of MCRC Pattern Count. More...
 
#define SDL_MCRC_SECTOR_COUNT_MAX   (0x0000FFFFU)
 Macro defines maximum value of MCRC Sector Count. More...
 
#define SDL_MCRC_BCTOPLD_MAX   (0x00FFFFFFU)
 Macro defines maximum value of MCRC Block Complete Timeout Counter Preload. More...
 
#define SDL_MCRC_WDTOPLD_MAX   (0x00FFFFFFU)
 Macro defines maximum value of MCRC Watchdog Timeout Counter Preload. More...
 
#define SDL_MCRC_MAX_NUM_OF_CHANNELS   (4U)
 Max number of channels supported in MCRC. More...
 

MCRC Operation Mode

typedef uint32_t SDL_MCRC_ModeType
 MCRC operation mode supported. MCRC can either operate in Semi-CPU, Full-CPU or Auto mode. More...
 
#define SDL_MCRC_OPERATION_MODE_DATA   (SDL_MCRC_CTRL2_CH1_MODE_DATA)
 
#define SDL_MCRC_OPERATION_MODE_AUTO   (SDL_MCRC_CTRL2_CH1_MODE_AUTO)
 
#define SDL_MCRC_OPERATION_MODE_SEMICPU   (SDL_MCRC_CTRL2_CH1_MODE_SEMICPU)
 
#define SDL_MCRC_OPERATION_MODE_FULLCPU   (SDL_MCRC_CTRL2_CH1_MODE_FULLCPU)
 

MCRC channel

typedef uint32_t SDL_MCRC_Channel_t
 MCRC channel supported. More...
 
#define SDL_MCRC_CHANNEL_1   (0x1U)
 
#define SDL_MCRC_CHANNEL_2   (0x2U)
 
#define SDL_MCRC_CHANNEL_3   (0x3U)
 
#define SDL_MCRC_CHANNEL_4   (0x4U)
 

Macro Definition Documentation

◆ SDL_MCRC_CHANNEL_IRQSTATUS_RAW_MAIN_ALL

#define SDL_MCRC_CHANNEL_IRQSTATUS_RAW_MAIN_ALL
Value:
(uint32_t) ((uint32_t)SDL_MCRC_INTS_CH1_CCITENS_MASK | \
(uint32_t)SDL_MCRC_INTR_CH1_FAILENR_MASK | \
(uint32_t)SDL_MCRC_INTR_CH1_OVERENR_MASK | \
(uint32_t)SDL_MCRC_INTR_CH1_UNDERENR_MASK | \
(uint32_t)SDL_MCRC_INTR_CH1_TIME_OUT_ENR_MASK)

Macro defines mask for all the interrupts for a channel.

◆ SDL_MCRC_PATTERN_COUNT_MAX

#define SDL_MCRC_PATTERN_COUNT_MAX   (0x000FFFFFU)

Macro defines maximum value of MCRC Pattern Count.

◆ SDL_MCRC_SECTOR_COUNT_MAX

#define SDL_MCRC_SECTOR_COUNT_MAX   (0x0000FFFFU)

Macro defines maximum value of MCRC Sector Count.

◆ SDL_MCRC_BCTOPLD_MAX

#define SDL_MCRC_BCTOPLD_MAX   (0x00FFFFFFU)

Macro defines maximum value of MCRC Block Complete Timeout Counter Preload.

◆ SDL_MCRC_WDTOPLD_MAX

#define SDL_MCRC_WDTOPLD_MAX   (0x00FFFFFFU)

Macro defines maximum value of MCRC Watchdog Timeout Counter Preload.

◆ SDL_MCRC_MAX_NUM_OF_CHANNELS

#define SDL_MCRC_MAX_NUM_OF_CHANNELS   (4U)

Max number of channels supported in MCRC.

◆ SDL_MCRC_OPERATION_MODE_DATA

#define SDL_MCRC_OPERATION_MODE_DATA   (SDL_MCRC_CTRL2_CH1_MODE_DATA)

Configure MCRC operation mode to Data Captures

◆ SDL_MCRC_OPERATION_MODE_AUTO

#define SDL_MCRC_OPERATION_MODE_AUTO   (SDL_MCRC_CTRL2_CH1_MODE_AUTO)

Configure MCRC operation mode to Auto

◆ SDL_MCRC_OPERATION_MODE_SEMICPU

#define SDL_MCRC_OPERATION_MODE_SEMICPU   (SDL_MCRC_CTRL2_CH1_MODE_SEMICPU)

Configure MCRC operation mode to Semi-CPU

◆ SDL_MCRC_OPERATION_MODE_FULLCPU

#define SDL_MCRC_OPERATION_MODE_FULLCPU   (SDL_MCRC_CTRL2_CH1_MODE_FULLCPU)

Configure MCRC operation mode to Full-CPU

◆ SDL_MCRC_CHANNEL_1

#define SDL_MCRC_CHANNEL_1   (0x1U)

Select channel 1 for operation

◆ SDL_MCRC_CHANNEL_2

#define SDL_MCRC_CHANNEL_2   (0x2U)

Select channel 2 for operation

◆ SDL_MCRC_CHANNEL_3

#define SDL_MCRC_CHANNEL_3   (0x3U)

Select channel 3 for operation

◆ SDL_MCRC_CHANNEL_4

#define SDL_MCRC_CHANNEL_4   (0x4U)

Select channel 4 for operation

Typedef Documentation

◆ SDL_MCRC_ModeType

typedef uint32_t SDL_MCRC_ModeType

MCRC operation mode supported. MCRC can either operate in Semi-CPU, Full-CPU or Auto mode.

◆ SDL_MCRC_Channel_t

typedef uint32_t SDL_MCRC_Channel_t

MCRC channel supported.

Enumeration Type Documentation

◆ SDL_MCRC_DataBitSize

This enumerator defines the Data size for input MCRC DATA.

Enumerator
SDL_MCRC_DATA_8_BIT 

8 Bit data packed

SDL_MCRC_DATA_16_BIT 

16 Bit data packed

SDL_MCRC_DATA_32_BIT 

32 Bit data packed

◆ SDL_MCRC_InstType

MCRC Instance supported.

Enumerator
MCRC0 

MCRC0 Instance

SDL_MCRC_INVALID 

Invalid instance

Function Documentation

◆ SDL_MCRC_init()

int32_t SDL_MCRC_init ( SDL_MCRC_InstType  instance,
SDL_MCRC_Channel_t  channel,
uint32_t  watchdogPreload,
uint32_t  blockPreload 
)

Initialize MCRC channel and will configure watchdog and block preload value for given channel.

Parameters
instanceMCRC instance either MCU or Main.
channelChannel number to be initializaed. Values given by SDL_MCRC_Channel_t.
watchdogPreloadIt is used to check if DMA does supply a block of data responding to a request in a given time frame.
blockPreloadIt is used to check if MCRC for an entire block is completed in a given time frame.
Returns
status MCRC channel initialization status. SDL_PASS: success SDL_EBADARGS: failure, indicate the bad input arguments

◆ SDL_MCRC_verifyInit()

int32_t SDL_MCRC_verifyInit ( SDL_MCRC_InstType  instance,
SDL_MCRC_Channel_t  channel,
uint32_t  watchdogPreload,
uint32_t  blockPreload 
)

Verify the MCRC watchdog and block preload value initialized for given channel.

Parameters
instanceMCRC instance either MCU or Main.
channelChannel number to be verified initialization. Values given by SDL_MCRC_Channel_t.
watchdogPreloadIt is used to check if DMA does supply a block of data responding to a request in a given time frame.
blockPreloadIt is used to check if MCRC for an entire block is completed in a given time frame.
Returns
status MCRC channel verfiy initialization status. SDL_PASS: success SDL_EBADARGS: failure, indicate the bad input arguments SDL_EFAIL: failure, indicate verify initialization failed

◆ SDL_MCRC_config()

int32_t SDL_MCRC_config ( SDL_MCRC_InstType  instance,
SDL_MCRC_Channel_t  channel,
uint32_t  patternCount,
uint32_t  sectorCount,
SDL_MCRC_ModeType  mode 
)

This API will configure MCRC mode, pattern and sector count for given channel.

Parameters
instanceMCRC instance either MCU or Main.
channelChannel number to be configured. Values given by SDL_MCRC_Channel_t.
patternCountNumber of data patterns in one sector to be compressed.
sectorCountNumber of sectors in a block of memory.
modeMCRC operational mode. Refer SDL_MCRC_ModeType.
Returns
status MCRC channel configuration status SDL_PASS: success SDL_EBADARGS: failure, indicate the bad input arguments

◆ SDL_MCRC_verifyConfig()

int32_t SDL_MCRC_verifyConfig ( SDL_MCRC_InstType  instance,
SDL_MCRC_Channel_t  channel,
uint32_t  patternCount,
uint32_t  sectorCount,
SDL_MCRC_ModeType  mode 
)

This API will verify the configure of MCRC mode, pattern and sector count for given channel.

Parameters
instanceMCRC instance either MCU or Main.
channelChannel number to be verified configuration. Values given by SDL_MCRC_Channel_t.
patternCountNumber of data patterns in one sector to be compressed.
sectorCountNumber of sectors in a block of memory.
modeMCRC operational mode. Refer SDL_MCRC_ModeType.
Returns
status MCRC channel configuration status SDL_PASS: success SDL_EBADARGS: failure, indicate the bad input arguments SDL_EFAIL: failure, indicate verify configure failed

◆ SDL_MCRC_channelReset()

int32_t SDL_MCRC_channelReset ( SDL_MCRC_InstType  instance,
SDL_MCRC_Channel_t  channel 
)

This API is used to reset the MCRC channel.

Parameters
instanceMCRC instance either MCU or Main.
channelChannel number for which reset is to be done. Values given by SDL_MCRC_Channel_t.
Returns
status MCRC channel reset status SDL_PASS: success SDL_EBADARGS: failure, indicate the bad input arguments

◆ SDL_MCRC_setPSASeedSig()

int32_t SDL_MCRC_setPSASeedSig ( SDL_MCRC_InstType  instance,
SDL_MCRC_Channel_t  channel,
const SDL_MCRC_Signature_t pSeedSign 
)

This API is used to set the PSA seed value without compression for given Channel.

Parameters
instanceMCRC instance either MCU or Main.
channelChannel number for which PSA seed value to be set. Values given by SDL_MCRC_Channel_t.
pSeedSignPointer to MCRC PSA seed signature values. Refer struct SDL_MCRC_Signature_t for details.
Returns
status MCRC channel set PSA seed value status SDL_PASS: success SDL_EBADARGS: failure, indicate the bad input arguments

◆ SDL_MCRC_getPSASectorSig()

int32_t SDL_MCRC_getPSASectorSig ( SDL_MCRC_InstType  instance,
SDL_MCRC_Channel_t  channel,
SDL_MCRC_Signature_t pSecSign 
)

This API is used to get sector signature Value/ MCRC value for given channel.

Parameters
instanceMCRC instance either MCU or Main.
channelChannel number which was configured for MCRC calculation. Values given by SDL_MCRC_Channel_t.
pSecSignPointer to MCRC PSA sector signature values Refer struct SDL_MCRC_Signature_t.
Returns
status MCRC channel get PSA sector signaure value status SDL_PASS: success SDL_EBADARGS: failure, indicate the bad input arguments

◆ SDL_MCRC_getIntrStatus()

int32_t SDL_MCRC_getIntrStatus ( SDL_MCRC_InstType  instance,
SDL_MCRC_Channel_t  channel,
uint32_t *  pIntrStatus 
)

This API is used to get the pending interrupts for given Channel.

Parameters
instanceMCRC instance either MCU or Main.
channelChannel number for which pending interrupt is to get. Values given by SDL_MCRC_Channel_t.
pIntrStatusPointer to pending interrupt status/occurred.
Returns
status MCRC get pending interrupts status SDL_PASS: success SDL_EBADARGS: failure, indicate the bad input arguments

◆ SDL_MCRC_enableIntr()

int32_t SDL_MCRC_enableIntr ( SDL_MCRC_InstType  instance,
SDL_MCRC_Channel_t  channel,
uint32_t  intrMask 
)

This API is used to enable interrupts for given Channel.

Parameters
instanceMCRC instance either MCU or Main.
channelChannel number for which interrupt is to enable. Values given by SDL_MCRC_Channel_t.
intrMaskInterrupts to enable.
Returns
status MCRC enable interrupts status SDL_PASS: success SDL_EBADARGS: failure, indicate the bad input arguments

◆ SDL_MCRC_disableIntr()

int32_t SDL_MCRC_disableIntr ( SDL_MCRC_InstType  instance,
SDL_MCRC_Channel_t  channel,
uint32_t  intrMask 
)

This API is used to disable interrupts for given Channel.

Parameters
instanceMCRC instance either MCU or Main.
channelChannel number for which interrupt is to disable. Values given by SDL_MCRC_Channel_t.
intrMaskInterrupts to disable.
Returns
status MCRC disable interrupts status SDL_PASS: success SDL_EBADARGS: failure, indicate the bad input arguments

◆ SDL_MCRC_clearIntr()

int32_t SDL_MCRC_clearIntr ( SDL_MCRC_InstType  instance,
SDL_MCRC_Channel_t  channel,
uint32_t  intrMask 
)

This API is used to clear interrupts for given Channel.

Parameters
instanceMCRC instance either MCU or Main.
channelChannel number for which interrupt is to clear. Values given by SDL_MCRC_Channel_t.
intrMaskInterrupts to clear status.
Returns
status MCRC clear interrupts status SDL_PASS: success SDL_EBADARGS: failure, indicate the bad input arguments

◆ SDL_MCRC_isBusy()

int32_t SDL_MCRC_isBusy ( SDL_MCRC_InstType  instance,
SDL_MCRC_Channel_t  channel,
uint32_t *  pBusyFlag 
)

This API is used to check if MCRC is busy for given Channel.


During Auto or Semi-CPU mode, the busy flag is set when the first data pattern of the block is compressed and remains set until the the last data pattern of the block is compressed. The flag is cleared when the last data pattern of the block is compressed.

Parameters
instanceMCRC instance either MCU or Main.
channelChannel number for which busy status is to get. Values given by SDL_MCRC_Channel_t.
pBusyFlagPointer to busy flag. 1U: MCRC channel is busy. 0U: MCRC channel is free.
Returns
status MCRC channel check busy status SDL_PASS: success SDL_EBADARGS: failure, indicate the bad input arguments

◆ SDL_MCRC_getCurSecNum()

int32_t SDL_MCRC_getCurSecNum ( SDL_MCRC_InstType  instance,
SDL_MCRC_Channel_t  channel,
uint32_t *  pCurSecNum 
)

This API is used to get the current sector number of which the signature verification fails in AUTO mode for given channel.


When a sector fails, the erroneous sector number is logged and the MCRC fail interrupt is generated.

Parameters
instanceMCRC instance either MCU or Main.
channelChannel number for which the curent sector number is to get. Values given by SDL_MCRC_Channel_t.
pCurSecNumPointer to current sector number.
Returns
status MCRC channel get current sector number status SDL_PASS: success SDL_EBADARGS: failure, indicate the bad input arguments

◆ SDL_MCRC_getPSASig()

int32_t SDL_MCRC_getPSASig ( SDL_MCRC_InstType  instance,
SDL_MCRC_Channel_t  channel,
SDL_MCRC_Signature_t pPSAsig 
)

This API is used to get current known good signature value/ MCRC value for given channel.

Parameters
instanceMCRC instance either MCU or Main.
channelChannel number for which current MCRC value is to get. Values given by SDL_MCRC_Channel_t.
pPSAsigPointer to current MCRC PSA signature values Refer struct SDL_MCRC_Signature_t.
Returns
status MCRC channel get current PSA signaure value status SDL_PASS: success SDL_EBADARGS: failure, indicate the bad input arguments

◆ SDL_MCRC_readStaticReg()

int32_t SDL_MCRC_readStaticReg ( SDL_MCRC_InstType  instance,
SDL_MCRC_StaticRegs_t pStaticRegs 
)

This API is used to read static registers of MCRC module. This API needs to be called after the initial configuration is done and hence mutliple read between static registers do not change the values.

Parameters
instanceMCRC instance either MCU or Main.
pStaticRegspointer to static registers to be read
Returns
SDL_PASS - success
SDL_EBADARGS - API fails due to bad input arguments

◆ SDL_MCRC_getCurPSASig()

int32_t SDL_MCRC_getCurPSASig ( SDL_MCRC_InstType  instance,
SDL_MCRC_Channel_t  channel,
SDL_MCRC_Signature_t pCurPSASig 
)

This API is used to get current known good signature value/ MCRC value for given channel.

Parameters
instanceMCRC instance either MCU or Main.
channelChannel number for which current MCRC value is to get. Values given by SDL_MCRC_Channel_t.
pCurPSASigPointer to current MCRC PSA signature values Refer struct SDL_MCRC_Signature_t.
Returns
status MCRC channel get current PSA signaure value status SDL_PASS: success SDL_EBADARGS: failure, indicate the bad input arguments

◆ SDL_MCRC_getPSASigRegAddr()

int32_t SDL_MCRC_getPSASigRegAddr ( SDL_MCRC_InstType  instance,
SDL_MCRC_Channel_t  channel,
SDL_MCRC_SignatureRegAddr_t pMCRCregAddr 
)

This API is used to get the PSA register address for given Channel.

Parameters
instanceMCRC instance either MCU or Main.
channelChannel number for which PSA register address is to get. Values given by SDL_MCRC_Channel_t.
pMCRCregAddrPointer to MCRC PSA register address structure. Refer structure SDL_MCRC_SignatureRegAddr_t.
Returns
status MCRC channel get PSA signature register address status SDL_PASS: success SDL_EBADARGS: failure, indicate the bad input arguments

◆ SDL_MCRC_computeSignCPUmode()

int32_t SDL_MCRC_computeSignCPUmode ( SDL_MCRC_InstType  instance,
SDL_MCRC_Channel_t  channel,
const SDL_MCRC_DataConfig_t pDataConfig,
SDL_MCRC_Signature_t sectSignVal 
)

This API is used to compute the signature for CPU-only mode and it check if the generated MCRC signature value matches with the reference signature value.

Parameters
instanceMCRC instance either MCU or Main.
channelMCRC channel number to be used
pDataConfigPointer to data configuration
sectSignValGenerated sector signature value.
Returns
SDL_PASS: Success; SDL_FAIL: Failure; SDL_EBADARGS: Bad arguments error

◆ SDL_MCRC_getBaseaddr()

int32_t SDL_MCRC_getBaseaddr ( SDL_MCRC_InstType  instance,
uint32_t *  baseAddr 
)

This API is used to get the base address of the instance.

Parameters
instanceMCRC instance either MCU or Main.
baseAddrDbase address of the instance.
Returns
status return the base address of th instance. SDL_PASS: success SDL_EBADARGS: failure, indicate the bad input arguments SDL_EFAIL: failure, indicate verify failed