-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreset_source.c
102 lines (86 loc) · 2.63 KB
/
reset_source.c
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
* (C) Copyright 2012 Juergen Beisert - <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#define pr_fmt(fmt) "reset-source: " fmt
#include <common.h>
#include <init.h>
#include <environment.h>
#include <globalvar.h>
#include <reset_source.h>
static const char * const reset_src_names[] = {
[RESET_UKWN] = "unknown",
[RESET_POR] = "POR",
[RESET_RST] = "RST",
[RESET_WDG] = "WDG",
[RESET_WKE] = "WKE",
[RESET_JTAG] = "JTAG",
[RESET_THERM] = "THERM",
[RESET_EXT] = "EXT",
};
static enum reset_src_type reset_source;
static unsigned int reset_source_priority;
static int reset_source_instance;
enum reset_src_type reset_source_get(void)
{
return reset_source;
}
EXPORT_SYMBOL(reset_source_get);
int reset_source_get_instance(void)
{
return reset_source_instance;
}
EXPORT_SYMBOL(reset_source_get_instance);
void reset_source_set_priority(enum reset_src_type st, unsigned int priority)
{
if (priority <= reset_source_priority)
return;
reset_source = st;
reset_source_priority = priority;
reset_source_instance = 0;
pr_debug("Setting reset source to %s with priority %d\n",
reset_src_names[reset_source], priority);
}
EXPORT_SYMBOL(reset_source_set_priority);
const char *reset_source_name(void)
{
return reset_src_names[reset_source];
}
EXPORT_SYMBOL(reset_source_name);
void reset_source_set_instance(enum reset_src_type type, int instance)
{
if (reset_source == type)
reset_source_instance = instance;
}
EXPORT_SYMBOL(reset_source_set_instance);
static int reset_source_init(void)
{
globalvar_add_simple_enum("system.reset", (unsigned int *)&reset_source,
reset_src_names, ARRAY_SIZE(reset_src_names));
globalvar_add_simple_int("system.reset_instance", &reset_source_instance,
"%d");
return 0;
}
coredevice_initcall(reset_source_init);
/**
* of_get_reset_source_priority() - get the desired reset source priority from
* device tree
* @node: The device_node to read the property from
*
* return: The priority
*/
unsigned int of_get_reset_source_priority(struct device_node *node)
{
unsigned int priority = RESET_SOURCE_DEFAULT_PRIORITY;
of_property_read_u32(node, "reset-source-priority", &priority);
return priority;
}