Change script for apply upstream code
[platform/upstream/connectedhomeip.git] / third_party / openthread / repo / examples / platforms / efr32mg1 / misc.c
1 /*
2  *  Copyright (c) 2020, The OpenThread Authors.
3  *  All rights reserved.
4  *
5  *  Redistribution and use in source and binary forms, with or without
6  *  modification, are permitted provided that the following conditions are met:
7  *  1. Redistributions of source code must retain the above copyright
8  *     notice, this list of conditions and the following disclaimer.
9  *  2. Redistributions in binary form must reproduce the above copyright
10  *     notice, this list of conditions and the following disclaimer in the
11  *     documentation and/or other materials provided with the distribution.
12  *  3. Neither the name of the copyright holder nor the
13  *     names of its contributors may be used to endorse or promote products
14  *     derived from this software without specific prior written permission.
15  *
16  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17  *  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  *  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  *  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20  *  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21  *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22  *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23  *  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24  *  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25  *  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26  *  POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 /**
30  * @file
31  *   This file implements the OpenThread platform abstraction for miscellaneous behaviors.
32  */
33
34 #include <openthread/platform/misc.h>
35
36 #include "em_rmu.h"
37 #include "platform-efr32.h"
38
39 static uint32_t sResetCause;
40
41 void efr32MiscInit(void)
42 {
43     // Read the cause of last reset.
44     sResetCause = RMU_ResetCauseGet();
45
46     // Clear the register, as the causes cumulate over resets.
47     RMU_ResetCauseClear();
48 }
49
50 void otPlatReset(otInstance *aInstance)
51 {
52     OT_UNUSED_VARIABLE(aInstance);
53     NVIC_SystemReset();
54 }
55
56 otPlatResetReason otPlatGetResetReason(otInstance *aInstance)
57 {
58     OT_UNUSED_VARIABLE(aInstance);
59
60     otPlatResetReason reason;
61
62     if (sResetCause & RMU_RSTCAUSE_PORST)
63     {
64         reason = OT_PLAT_RESET_REASON_POWER_ON;
65     }
66     else if (sResetCause & RMU_RSTCAUSE_SYSREQRST)
67     {
68         reason = OT_PLAT_RESET_REASON_SOFTWARE;
69     }
70     else if (sResetCause & RMU_RSTCAUSE_WDOGRST)
71     {
72         reason = OT_PLAT_RESET_REASON_WATCHDOG;
73     }
74     else if (sResetCause & RMU_RSTCAUSE_EXTRST)
75     {
76         reason = OT_PLAT_RESET_REASON_EXTERNAL;
77     }
78     else if (sResetCause & RMU_RSTCAUSE_LOCKUPRST)
79     {
80         reason = OT_PLAT_RESET_REASON_FAULT;
81     }
82     else if ((sResetCause & RMU_RSTCAUSE_AVDDBOD) || (sResetCause & RMU_RSTCAUSE_DECBOD) ||
83              (sResetCause & RMU_RSTCAUSE_DVDDBOD) || (sResetCause & RMU_RSTCAUSE_EM4RST))
84     {
85         reason = OT_PLAT_RESET_REASON_ASSERT;
86     }
87     else
88     {
89         reason = OT_PLAT_RESET_REASON_UNKNOWN;
90     }
91
92     return reason;
93 }
94
95 void otPlatWakeHost(void)
96 {
97     // TODO: implement an operation to wake the host from sleep state.
98 }