Functional Reset not happening when some of FCCU's Fault-Reaction Types are enabled

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

Functional Reset not happening when some of FCCU's Fault-Reaction Types are enabled

1,728 Views
JRodrigues
Contributor III

Hello everyone,

 

I'm having some trouble with FCCU and FS26's Microcontroller Recovery Strategy when i want to perform a functional reset on the microcontroller.

 

So, in FS26's documentation it explains how when a fault occurs and it is transmitted through the EOUT Pins to FS26, the SBC can enter a "microcontroller recovery strategy" in which the objective is to try and recover the fault inside a time window (WDW_RECOVERY) and not give the microcontroller a reset, i.e., the FS26 send a reset command to the microcontroller.

That being so, i configured my time window with 1024ms and, when i inject a fault and the EOUT Pins indicate a faulty condition to FS26, it will open that window and there i will try to perform a functional reset (SW_FUNC_RST or FCCU_RST) so my program restarts and clears the fault in FCCU's initialization, "eMcem_Init()" API Function, and then refreshes the watchdog after FS26's initialization process. With this, the system would go back to a Normal State and no resets were needed to happen.

 

The problem is that the program only restarts, i.e., the microcontroller is given a functional reset, when the fault-reaction type enabled is "Activate EOUT Pins". When i enable any of the other reaction-types (Recovery Timeout, Alarm State Interrupt or Fault State NMI), the RESET_B Pin gets asserted, but the program doesn't restart.

 

In the annexes of this post i'm leaving one of the tests i made showing this behavior. It may be confusing, but i'm going to try to make a resume of what happens during each stage:

     (1) The program begins in the main function and starts initializing the MCU, Peripherals, SPI, Timers, etc

    (2) The FCCU initialization begins with "eMcem_Init()" API Function (which clears all faults) and then FS26 is initialized (and the watchdog refreshing begins, look at D11 - SBC WATCHDOG NOTIFICATION Pin)

    (3) A fault, with nFaultID = 72, is injected with "eMcem_InjectFault(nFaultID)". The program initially enters the ALARM State and, since it can't clear the fault (D8 - ERR_NOT_RECOVERED Pin), FCCU's state machine enters Fault State and indicates a Faulty Condition to off-chips on the EOUT Pins

    (4) The WDW_RECOVERY window opens from FS26's side

    (5) As a fault-reaction, a functional reset happens (FCCU_RST is active in TRACE32's window)

    (6) The program doesn't restart (when it was supposed to) and, after WDW_RECOVERY window reaches its timeout value, FS26 will start its initialization phase which won't be addressed because the program didn't restart (and is stuck in the NMI Handler)

    (7) Since FS26's INIT_FS isn't addressed, the Fault Error Counter maximum value will be reached, thus making the FS26 initiate a Power-On-Reset, which will eventually start the program again.

 

As you can see this isn't the behavior that we're expecting to happen considering the "microcontroller recovery strategy"'s definition.

 

I contacted an NXP Employee and they tried my project on a similar board, S32K344EVB-Q257, but it had a different behavior, and so i was told to create this post here in the community to get some help.

Is anyone with a similar issue or someone that could help me?

 

Best Regards,

JRodrigues

0 Kudos
Reply
15 Replies

1,683 Views
JRodrigues
Contributor III

Hello everyone,

 

I would like to make some corrections to the first post and i will do so in this reply since i can't edit my initial post.

 

"The problem is that the program only restarts, i.e., the microcontroller is given a functional reset..."

When i say "the microcontroller is given a functional reset", i don't mean that the microcontroller receives a functional reset command from FS26's side, but rather the FCCU_RST happens since the fault-reaction type set for the fault i am injecting is a short reset reaction. 

 

(3) A fault, with nFaultID = 72, is injected with "eMcem_InjectFault(nFaultID)".

That fault is actually injected with the "eMcem_AssertSWFault(nFaultID)" API function, since it belongs to the "Software Notification" group of faults!

 

(5) As a fault-reaction, a functional reset happens (FCCU_RST is active in TRACE32's window)

Once again, the fault-reaction type for that fault is set to short reset, thus the FCCU_RST being set in TRACE32's window.

 

Also, and to add to the post, i will leave here an image with the microcontroller's behavior when the functional reset happens and the program restarts.

       Note 1: The program didn't restart during the WDW_RECOVERY window, but i think that's because no watchdog refresh is happening during that time, which won't make the microcontroller go back to its normal operation mode. To make it go to its "normal operation mode", both of these points need to happen:

  • All faults need to be cleared
  • A good watchdog refresh needs to happen

That's why FS26 eventually resets and starts its initialization phase again!

      Note 2: I suspect the functional reset in this case might be happening because the FOSU is activated since all other reaction types are disabled, and it generates the functional reset, but please correct me if i am wrong.

0 Kudos
Reply

1,658 Views
quangvuanh
NXP Employee
NXP Employee

Hi @JRodrigues 

Here is my assumption:

After the program triggered FCCU  fault, FS26 would be in FS0B_ASSERTED state. Then the microcontroller recovered from functional reset, invoked Sbc_fs26_InitDevice() again, but at that moment, the function cannot start wdg service routine as the device's current state is in FS0B_ASSERTED.

My suggestion is to force FS26 device back to INIT_FS after functional reset, by invoking Sbc_fs26_GotoInitFS() , before invoking Sbc_fs26_InitDevice() again.

0 Kudos
Reply

1,640 Views
JRodrigues
Contributor III

Hello @quangvuanh,

 

I just tested that and it worked for the case where only "Activate EOUT Pins" is enabled.

 

I tested the other fault-reaction types by doing the following configuration:

  • Reaction type: short reset reaction
  • Recovery Timeout: Enabled
  • Alarm State Interrupt: Enabled
  • Fault State NMI: Disabled
  • Activate EOUT Pins: Enabled

and inside the Alarm Handler i return "ERR_NOT_RECOVERED" so that FCCU goes to the FAULT State, signals the faulty condition to the EOUT Pins and starts the functional reset, but in this case the program doesn't restart.

 

Best Regards,

JRodrigues

0 Kudos
Reply

1,623 Views
quangvuanh
NXP Employee
NXP Employee

I have more experience on FS26, not much knowledge on eMCEM. However, can you please try to add other signal that is more realiable (eg. assert GPIO pin before calling eMCEM_Init) than eMCEM EOUT signal because I am thinking that there is an issue with eMCEM_Init, it cannot clear injected fault. 

Another assumption: is there any possibility that after functional reset, the program jump into Alarm_Handler again because the fault was not clear?

0 Kudos
Reply

1,574 Views
JRodrigues
Contributor III

Hello @quangvuanh,

 

I tried to test what you suggested, but as you can see in the image annexed, since the program doesn't restart, the GPIO Pin only toggles at the start of the first "program run" (right before eMcem_Init) and then at the functional reset...

 

Regarding the program jumping to the ALARM Handler again after the reset, i have left another image with the FCCU Registers right after the Functional Reset. The program is in the Fault State still.

 

Best Regards,

JRodrigues

0 Kudos
Reply

1,496 Views
quangvuanh
NXP Employee
NXP Employee

Hi @JRodrigues 

We are trying to set up the board to reproduce the issue, technically I dont see any reason why the functional reset didnot work as expect.

I would also like to ask for a confirmation, can you try to you remove the sequence related to FS26 and see if the functional reset worked?

0 Kudos
Reply

1,474 Views
JRodrigues
Contributor III

Hello @quangvuanh,

 

I had another project (without the sequence related to FS26) where the functional reset was working as expected, but there was a slight difference in the configurations.

In the MCU Driver, under the McuModeSettingConf tab and in the McuPeripheral tab, PLL was disabled.

 

I discussed some clock issues with @RadoslavB before, and the problem i had (which was a PIT interrupt not happening every X seconds, it happened at random times) was solved after enabling the PLL Clock under the McuPeripheral tab, and doing this initialization:

JRodrigues_1-1730194996675.png

 

So, i guess the issue might be here. When the PLL Clock is enabled, the functional reset doesn't happen.

When it is disabled, the functional reset works as expected.

 

Are these two topics related to one another?

 

Best Regards,

JRodrigues

 

 

0 Kudos
Reply

1,459 Views
JRodrigues
Contributor III

Hello @quangvuanh ,

 

Another note on this test:

When PLL is enabled, and right after the reset, the program seems to be stuck inside the NMI Handler and maybe that's why it never restarts the program, because once the microcontroller begins the program, it automatically jumps to the NMI Handler due to faults being present in the FCCU that have the "Fault State NMI Enable" reaction type enabled.

 

Is there a way to fix this?

 

Best Regards,

JRodrigues

0 Kudos
Reply

1,453 Views
quangvuanh
NXP Employee
NXP Employee

 

Hi @JRodrigues , I found this information being mentioned in the User Manual of eMCEM module.

quangvuanh_0-1730215927711.pngquangvuanh_1-1730215948504.png

To overcome this issue, I think @RadoslavB could have more experience than me, please take a look and consider.

Additionally, with your current tests you see that functional reset does not work in both cases when PLL is enabled right? Regardless of FS26 configuration?

0 Kudos
Reply

1,442 Views
JRodrigues
Contributor III

Hello @quangvuanh,

 

functional reset does not work in both cases when PLL is enabled right? Regardless of FS26 configuration?

The reset happens, but when the program restarts it goes immediately to the NMI Handler (in both cases). At least that's what i could see when i attached Lauterbach right after the functional reset.

 

I found this information being mentioned in the User Manual of eMCEM module.

I do understand that, but wouldn't that go against the purpose of the Microcontroller Recovery Strategy described in FS26's documentation?

My idea, and what i discussed with @RadoslavB, was that once the program entered the NMI Handler, the FCCU_RST would trigger and the program would restart (in the main function), clear all faults when "eMcem_Init()" is called and then proceed to FS26's initialization.

Once this was over we would have achieved the 2 conditions to go back to normal mode (All faults cleared and a good watchdog refresh) and we would avoid resetting the microcontroller from the SBC side.

 

Am i thinking wrong here?

 

Best Regards,

JRodrigues

0 Kudos
Reply

1,409 Views
quangvuanh
NXP Employee
NXP Employee

Hi @JRodrigues 

I do understand that, but wouldn't that go against the purpose of the Microcontroller Recovery Strategy described in FS26's documentation?

It does not go against the Recovery Strategy. If Mcu gets stuck in NMI Handler, means it failed to recover from faults, then FS26 acts as external observer to prevent your MCU from being stuck forever there. Vice versa, if Mcu recovers successfully and refresh wdg recovery timer of FS26, the application program goes back to its normal state.

0 Kudos
Reply

1,405 Views
JRodrigues
Contributor III

Hello @quangvuanh,

 

I'm sorry for insisting on this, but i truly don't understand it.

Because any fault that i inject that goes to the NMI Handler (and the purpose of the NMI is to store the fault information and then perform a functional reset, following the documentation), makes the program go back to the NMI Handler, and since i don't do anything to clear the faulty condition, the SBC will eventually send a POR.

So, what exactly is the purpose of the Microcontroller Recovery Strategy if in the end every fault will make the program get stuck in the NMI and the SBC will send the POR? I don't see the purpose.. In that case i would just ignore the Microcontroller Recovery Strategy and the SBC would instantly perform the POR after the EOUT Pins indicated a faulty condition.

 

Please enlighten me and, if needed, contact me through the private messages so we can schedule a meeting to discuss this issue.

 

Best Regards,

JRodrigues

 

0 Kudos
Reply

1,514 Views
JRodrigues
Contributor III

Hello @quangvuanh,

 

Do you have any news on this topic?

 

Best Regards,

JRodrigues

0 Kudos
Reply

1,239 Views
RadoslavB
NXP Employee
NXP Employee

Hello,

as per last debug session we have found out that LockStep error is present which is causing eMcem_Init() failing because the LockStep error can't be cleared.
This HW issue is raised only when debugger is connected and system reset is performed (by Lauterbach CMM script in this case).

Please use updated project.cmm script from the attachment.
When the debugger stops in the beginning of the main() please check FCCU NCF_S0 register, it should have now value of 0 - no faults.

Now eMcem_Init() should return E_OK and rest of the application functionality will be not affected by the lockstep error and should not cause the reset issues.


Kind Regards,
Radoslav

0 Kudos
Reply

1,646 Views
quangvuanh
NXP Employee
NXP Employee
0 Kudos
Reply