blob: 3f246d4e7e3d74dab7c68a1fd4b062064f319db8 (
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
|
#ifndef __MTK_HIBERNATE_DPM_H
#define __MTK_HIBERNATE_DPM_H
#include <linux/device.h>
/* -------------other configure-------------------------// */
#define MAX_CB_FUNCS (10)
/* -------------error code define-----------------------// */
#define E_NO_EXIST (-1)
#define E_PARAM (-2)
typedef enum {
ID_M_BEGIN = 0,
ID_M_DEVAPC = 0,
ID_M_VCODEC = 1,
ID_M_SPC = 2,
ID_M_MSDC = 3,
ID_M_MALI = 4,
ID_M_GPU = 4,
ID_M_MJC = 5,
ID_M_CONNSYS = 6,
ID_M_END = MAX_CB_FUNCS,
} KERN_FUNC_ID;
/* -------------structure define------------------------// */
typedef int (*swsusp_cb_func_t) (struct device *device);
typedef struct {
KERN_FUNC_ID id;
swsusp_cb_func_t func;
struct device *device;
} swsusp_cb_func_info;
/* -----------------export function declaration----------------------------// */
int register_swsusp_restore_noirq_func(unsigned int id, swsusp_cb_func_t func,
struct device *device);
int unregister_swsusp_restore_noirq_func(unsigned int id);
int exec_swsusp_restore_noirq_func(unsigned int id);
#endif
|