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.
Hi there
i am facing the issue with getting the real reason of reboot.
i know There is a booting parameters structure that contains this information in section 26.1.10.2 of the AM335X TRM.
which tells as below things.
Current reset reason bit mask
(bit=1-event present)
[0] – Power-on (cold) reset
[1] – Global warm software
reset
[2] – Reserved
09h Reset Reason 1 [3] – Reserved
[4] – WDT1 timer reset
[5] – Global external warm reset
Other bits – Reserved
Note: ROM code does not
clear any of these bits.
Now Problem:
value of the register it goes like below
1: at Power cycle is 0x01 ( which is OK as its comming from Power-on (cold) reset)
2: at Software its is 0x03 ( which is also ok )
3: at watchDog, i got 0x13 ( which tell my Uboot this reboot is due to WDT time out , which is also OK)
but now if i reboot (reset) then also i alware gets it 0x13 which is wrong because this time its coming from a Global warm software reset So it should be 0x03 or atleast wdt bit should be Zero but i always find it 1 untill i do the power cycle.
well i coun't find the way to reset that bit.
but after reading TRM carefully i found below Solution. (8.1.13.5.3 PRM_RSTST Register (offset = 8h) [reset = 1h])
int *wdtData =(PRM_RSTCTRL+ 0x8);
wdtFlag = readl(wdtData);
wdtFlag = wdtFlag | 0x10; // here its Trick in TRM its mentioned R/W but its actully W1toCl bit so must do this way to clear it
*wdtData = wdtFlag ;