Hi , nvidia teams:
Is there some method to get the power up reason on orin? just like “/proc/sys/kernel/boot_reason” on qualcomm platform.
Hi,
Not sure about the query. Could you share what information is shown in boot_reason? Would like to know more information about it.
Hi, DaneLLL:
Thanks for your replay , I means the orin boot up should by the following reason:
1. press the power key
2.press the reset key
3.system reset
4. watch dog reset
5. kernel panic
…
So, how to know the orin boot up by which reason?
Hi,
Jetson Orin uses /sys/devices/platform/c360000.pmc/reset_reason to populate boot reason.
root@jetson:/home/ubuntu# cat /sys/devices/platform/c360000.pmc/reset_reason
MAINSWRST
root@jetson:/home/ubuntu#
The reasons are mapped from PMC module in TRM.
System reset types are propagated in PMC_IMPL_RST_STATUS_0 as below:
Bit | Reset | Description |
---|---|---|
7:2 | SYS_RESET_N |
0 = SYS_RESET_N
1 = AOWDT
2 = BCCPLEXWDT
3 = BPMPWDT
4 = SCEWDT
5 = SPEWDT
6 = APEWDT
7 = LCCPLEXWDT
8 = SENSOR
...etc.
Hi, spatra:
Thank you very much!
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.