forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmtk_cooler_sysrst.c
More file actions
284 lines (240 loc) · 7.5 KB
/
Copy pathmtk_cooler_sysrst.c
File metadata and controls
284 lines (240 loc) · 7.5 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
/*
* Copyright (C) 2017 MediaTek Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* 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.
*/
#include <linux/version.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/thermal.h>
#include <linux/platform_device.h>
#include <mt-plat/aee.h>
#include <linux/types.h>
#include <linux/proc_fs.h>
#include "mt-plat/mtk_thermal_monitor.h"
#include "mach/mtk_thermal.h"
#if defined(CONFIG_MTK_CLKMGR)
#include <mach/mtk_clkmgr.h>
#else
#include <linux/clk.h>
#endif
#include <linux/slab.h>
#include <linux/seq_file.h>
#include <tscpu_settings.h>
/*=============================================================
*Local variable definition
*=============================================================
*/
static unsigned int cl_dev_sysrst_state;
static unsigned int cl_dev_sysrst_state_buck;
static unsigned int cl_dev_sysrst_state_tsap;
#ifdef CONFIG_MTK_BIF_SUPPORT
static unsigned int cl_dev_sysrst_state_tsbif;
#endif
static struct thermal_cooling_device *cl_dev_sysrst;
static struct thermal_cooling_device *cl_dev_sysrst_buck;
static struct thermal_cooling_device *cl_dev_sysrst_tsap;
#ifdef CONFIG_MTK_BIF_SUPPORT
static struct thermal_cooling_device *cl_dev_sysrst_tsbif;
#endif
/*=============================================================
*/
/*
* cooling device callback functions (tscpu_cooling_sysrst_ops)
* 1 : ON and 0 : OFF
*/
static int sysrst_cpu_get_max_state(
struct thermal_cooling_device *cdev, unsigned long *state)
{
/* tscpu_dprintk("sysrst_cpu_get_max_state\n"); */
*state = 1;
return 0;
}
static int sysrst_cpu_get_cur_state(
struct thermal_cooling_device *cdev, unsigned long *state)
{
/* tscpu_dprintk("sysrst_cpu_get_cur_state\n"); */
*state = cl_dev_sysrst_state;
return 0;
}
static int sysrst_cpu_set_cur_state(
struct thermal_cooling_device *cdev, unsigned long state)
{
cl_dev_sysrst_state = state;
if (cl_dev_sysrst_state == 1) {
tscpu_printk("sysrst_cpu_set_cur_state = 1\n");
tscpu_printk("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n");
tscpu_printk("*****************************************\n");
tscpu_printk("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n");
/* To trigger data abort to reset the system
* for thermal protection.
*/
__builtin_trap();
}
return 0;
}
static int sysrst_buck_get_max_state(
struct thermal_cooling_device *cdev, unsigned long *state)
{
/* tscpu_dprintk("sysrst_buck_get_max_state\n"); */
*state = 1;
return 0;
}
static int sysrst_buck_get_cur_state(
struct thermal_cooling_device *cdev, unsigned long *state)
{
/* tscpu_dprintk("sysrst_buck_get_cur_state\n"); */
*state = cl_dev_sysrst_state_buck;
return 0;
}
static int sysrst_buck_set_cur_state(
struct thermal_cooling_device *cdev, unsigned long state)
{
cl_dev_sysrst_state_buck = state;
if (cl_dev_sysrst_state_buck == 1) {
tscpu_printk("sysrst_buck_set_cur_state = 1\n");
tscpu_printk("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n");
tscpu_printk("*****************************************\n");
tscpu_printk("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n");
/* To trigger data abort to reset the system
* for thermal protection.
*/
__builtin_trap();
}
return 0;
}
static int sysrst_tsap_get_max_state(
struct thermal_cooling_device *cdev, unsigned long *state)
{
/* tscpu_dprintk("sysrst_tsap_get_max_state\n"); */
*state = 1;
return 0;
}
static int sysrst_tsap_get_cur_state(
struct thermal_cooling_device *cdev, unsigned long *state)
{
/* tscpu_dprintk("sysrst_tsap_get_cur_state\n"); */
*state = cl_dev_sysrst_state_tsap;
return 0;
}
static int sysrst_tsap_set_cur_state(
struct thermal_cooling_device *cdev, unsigned long state)
{
cl_dev_sysrst_state_tsap = state;
if (cl_dev_sysrst_state_tsap == 1) {
tscpu_printk("sysrst_buck_set_cur_state = 1\n");
tscpu_printk("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n");
tscpu_printk("*****************************************\n");
tscpu_printk("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n");
/* To trigger data abort to reset the system
* for thermal protection.
*/
__builtin_trap();
}
return 0;
}
#ifdef CONFIG_MTK_BIF_SUPPORT
static int sysrst_tsbif_get_max_state(
struct thermal_cooling_device *cdev, unsigned long *state)
{
/* tscpu_dprintk("sysrst_tsbif_get_max_state\n"); */
*state = 1;
return 0;
}
static int sysrst_tsbif_get_cur_state(
struct thermal_cooling_device *cdev, unsigned long *state)
{
/* tscpu_dprintk("sysrst_tsbif_get_cur_state\n"); */
*state = cl_dev_sysrst_state_tsbif;
return 0;
}
static int sysrst_tsbif_set_cur_state(
struct thermal_cooling_device *cdev, unsigned long state)
{
cl_dev_sysrst_state_tsbif = state;
if (cl_dev_sysrst_state_tsbif == 1) {
pr_notice("%s = 1\n", __func__);
pr_notice("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n");
pr_notice("*****************************************\n");
pr_notice("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n");
/* To trigger data abort to reset the system
* for thermal protection.
*/
__builtin_trap();
}
return 0;
}
#endif
static struct thermal_cooling_device_ops mtktscpu_cooling_sysrst_ops = {
.get_max_state = sysrst_cpu_get_max_state,
.get_cur_state = sysrst_cpu_get_cur_state,
.set_cur_state = sysrst_cpu_set_cur_state,
};
static struct thermal_cooling_device_ops mtktsbuck_cooling_sysrst_ops = {
.get_max_state = sysrst_buck_get_max_state,
.get_cur_state = sysrst_buck_get_cur_state,
.set_cur_state = sysrst_buck_set_cur_state,
};
static struct thermal_cooling_device_ops mtktsap_cooling_sysrst_ops = {
.get_max_state = sysrst_tsap_get_max_state,
.get_cur_state = sysrst_tsap_get_cur_state,
.set_cur_state = sysrst_tsap_set_cur_state,
};
#ifdef CONFIG_MTK_BIF_SUPPORT
static struct thermal_cooling_device_ops mtktsbif_cooling_sysrst_ops = {
.get_max_state = sysrst_tsbif_get_max_state,
.get_cur_state = sysrst_tsbif_get_cur_state,
.set_cur_state = sysrst_tsbif_set_cur_state,
};
#endif
static int __init mtk_cooler_sysrst_init(void)
{
tscpu_dprintk("mtk_cooler_sysrst_init: Start\n");
cl_dev_sysrst = mtk_thermal_cooling_device_register(
"mtktscpu-sysrst", NULL,
&mtktscpu_cooling_sysrst_ops);
cl_dev_sysrst_buck = mtk_thermal_cooling_device_register(
"mtktsbuck-sysrst", NULL,
&mtktsbuck_cooling_sysrst_ops);
cl_dev_sysrst_tsap = mtk_thermal_cooling_device_register(
"mtktsAP-sysrst", NULL,
&mtktsap_cooling_sysrst_ops);
#ifdef CONFIG_MTK_BIF_SUPPORT
cl_dev_sysrst_tsbif = mtk_thermal_cooling_device_register(
"mtktsbif-sysrst", NULL,
&mtktsbif_cooling_sysrst_ops);
#endif
tscpu_dprintk("mtk_cooler_sysrst_init: End\n");
return 0;
}
static void __exit mtk_cooler_sysrst_exit(void)
{
tscpu_dprintk("mtk_cooler_sysrst_exit\n");
if (cl_dev_sysrst) {
mtk_thermal_cooling_device_unregister(cl_dev_sysrst);
cl_dev_sysrst = NULL;
}
if (cl_dev_sysrst_buck) {
mtk_thermal_cooling_device_unregister(cl_dev_sysrst_buck);
cl_dev_sysrst_buck = NULL;
}
if (cl_dev_sysrst_tsap) {
mtk_thermal_cooling_device_unregister(cl_dev_sysrst_tsap);
cl_dev_sysrst_tsap = NULL;
}
#ifdef CONFIG_MTK_BIF_SUPPORT
if (cl_dev_sysrst_tsbif) {
mtk_thermal_cooling_device_unregister(cl_dev_sysrst_tsbif);
cl_dev_sysrst_tsbif = NULL;
}
#endif
}
module_init(mtk_cooler_sysrst_init);
module_exit(mtk_cooler_sysrst_exit);