This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AM2434: Request to reset R5FSS independently, excluding PRU_ICSSG reset

Part Number: AM2434

Hi, 

In our development, we have a requirement to reset R5FSS without resetting PRU_ICSSG.

Therefore, we use the software warm reset method to reset the device, but it seems that PRU_ICSSG is also reset together.

The code is as follows:

Fullscreen
1
2
3
4
5
6
7
8
void AM243x_SW_MAIN_WARMRESET( void )
{
uint32_t mCTRLMMR_RST_CTRL = 0;
mCTRLMMR_RST_CTRL = CSL_REG32_RD(SW_MAIN_WARMRST_ADDRESS);
mCTRLMMR_RST_CTRL = ( mCTRLMMR_RST_CTRL & 0xFFFFFFF0 ) | 0x00000006;
CSL_REG32_WR( SW_MAIN_WARMRST_ADDRESS, mCTRLMMR_RST_CTRL );
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Is there any method to reset R5FSS without resetting PRU_ICSSG?