ECC Sram test

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

ECC Sram test

Jump to solution
1,033 Views
smt87
Contributor II

Hi,

I am using S32K11x MCU for my project. I am using ECC reporting for safety mechanism, so I did initializations as follows.  Do you have any idea how i can check this sample function working correctly?

ERM->SR0 = ERM_SR0_SBC0_MASK | ERM_SR0_NCE0_MASK

ERM->CR0 = ERM_CR0_ESCIE0_MASK | ERM_CR0_ENCIE0_MASK

EIM->EICHDn[0].WORD0 = 0x00000000; /* CHKBIT[31-25] remain unmodified */
EIM->EICHDn[0].WORD1 = 0x00000003;

EIM->EICHEN |= EIM_EICHEN_EICH0EN_MASK; /* Error Injection Channel 0 Enable (SRAM_L)*/
EIM->EIMCR |= EIM_EIMCR_GEIEN_MASK; /* Global Error Injection Enable */

0 Kudos
1 Solution
993 Views
davidtosenovjan
NXP TechSupport
NXP TechSupport

Intention of ECC error injection is to generated error response or what you actually want to achieve?

View solution in original post

0 Kudos
4 Replies
1,020 Views
davidtosenovjan
NXP TechSupport
NXP TechSupport
0 Kudos
1,003 Views
smt87
Contributor II

Hi,

I used this code. But I am using S32K116 and after the following code is run, system is generating error. What is the problem here? What can i do to solve this?

/* ERM_SR */
ERM->SR0 |= ERM_SR0_SBC0(1U) | /* w1c SRAM_L Single-Bit Correction flag */
ERM_SR0_NCE0(1U); /* w1c SRAM_L Non-Correctable Error flag */

/* ERM_CR */
ERM->CR0 |= ERM_CR0_ESCIE0(1U) | /* Enable SRAM_L Single Correction Interrupt Notification */
ERM_CR0_ENCIE0(1U); /* Enable SRAM_L Non-Correctable Interrupt Notification */

/* Write the EICHDn_WORD registers before executing the two-stage-enable mechanism */
/* A write to any of this field clears the corresponding EICHEN[EICHnEN] enable bits */

/* SRAM_L */
EIM->EICHDn[0].WORD0 = 0x00000000; /* CHKBIT[31-25] remain unmodified */
EIM->EICHDn[0].WORD1 = 0x00000003; /* B0_3DATA_MASK[0-1] bits of the read data bus are inverted */

/* enable interrupts at core level */
Nvic::setPriority(ERM_fault_IRQn, system::ERM_IRQ_PRIO);
Nvic::enableInterrupt(ERM_fault_IRQn);

EIM->EICHEN |= EIM_EICHEN_EICH0EN(1U); /* Error Injection Channel 0 Enable (SRAM_L)*/

EIM->EIMCR |= EIM_EIMCR_GEIEN(1U); /* Global Error Injection Enable */
(void)EIM->EIMCR; /* Read-after_write */

0 Kudos
994 Views
davidtosenovjan
NXP TechSupport
NXP TechSupport

Intention of ECC error injection is to generated error response or what you actually want to achieve?

0 Kudos
991 Views
smt87
Contributor II

Hi,

Actually this code is not wroking. I have one question that are these initialized codes true for S32k116?

0 Kudos