blob: 45296a2fbf195200724a5ad5ad7cba1a3a6ec67a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#include <linux/kernel.h>
#include <linux/string.h>
#include <mach/mtk_rtc.h>
#include <mach/wd_api.h>
extern void wdt_arch_reset(char);
void arch_reset(char mode, const char *cmd)
{
char reboot = 0;
int res = 0;
struct wd_api *wd_api = NULL;
#ifdef CONFIG_FPGA_EARLY_PORTING
return ;
#else
res = get_wd_api(&wd_api);
pr_notice("arch_reset: cmd = %s\n", cmd ? : "NULL");
if (cmd && !strcmp(cmd, "charger")) {
/* do nothing */
} else if (cmd && !strcmp(cmd, "recovery")) {
#ifndef CONFIG_MTK_FPGA
rtc_mark_recovery();
#endif
} else if (cmd && !strcmp(cmd, "bootloader")) {
#ifndef CONFIG_MTK_FPGA
rtc_mark_fast();
#endif
}
#ifdef CONFIG_MTK_KERNEL_POWER_OFF_CHARGING
else if (cmd && !strcmp(cmd, "kpoc")) {
rtc_mark_kpoc();
}
#endif
else {
reboot = 1;
}
if (res) {
pr_notice("arch_reset, get wd api error %d\n", res);
} else {
wd_api->wd_sw_reset(reboot);
}
#endif
}
|