Initialize Tizen 2.3
[framework/system/deviced.git] / src / display / device-interface.h
1 /*
2  * deviced
3  *
4  * Copyright (c) 2011 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19
20 /**
21  * @file        device-interface.h
22  * @brief       backlight, touch, power devices interface module header
23  */
24 #ifndef __DEVICE_INTERFACE_H__
25 #define __DEVICE_INTERFACE_H__
26
27 #include <stdbool.h>
28
29 #define FLAG_X_DPMS             0x2
30
31 #define DEFAULT_DISPLAY 0
32
33 #define PM_MAX_BRIGHTNESS       100
34 #define PM_MIN_BRIGHTNESS       1
35 #define PM_DEFAULT_BRIGHTNESS   60
36
37 #define PM_LCD_POWER_ON         0
38 #define PM_LCD_POWER_OFF        4
39
40 #define PM_LCD_RETRY_CNT        3
41 #define STATUS_STANDBY          (STATUS_ON + 1)
42
43 #define DISP_INDEX_SHIFT        16
44 #define DISP_CMD(prop, index)   ((index << DISP_INDEX_SHIFT) | prop)
45
46 /*
47  * Event type enumeration
48  */
49 enum {
50         EVENT_TIMEOUT = 0,      /*< time out event from timer */
51         EVENT_DEVICE = EVENT_TIMEOUT,   /*< wake up by devices except input devices */
52         EVENT_INPUT,            /*< input event from noti service */
53         EVENT_END,
54 };
55
56 extern int init_sysfs(unsigned int);
57 extern int exit_sysfs(void);
58
59 struct _backlight_ops {
60         int (*off)(void);
61         int (*dim)(void);
62         int (*on)(void);
63         int (*update)(void);
64         int (*standby)(void);
65         int (*hbm_off)(void);
66         int (*set_default_brt)(int level);
67         int (*get_lcd_power)(void);
68         int (*set_custom_status)(bool on);
69         bool (*get_custom_status)(void);
70         int (*save_custom_brightness)(void);
71         int (*custom_update)(void);
72         int (*set_force_brightness)(int level);
73 };
74
75 struct _touch_ops {
76         int (*screen_on)(void);
77         int (*screen_off)(void);
78         int (*key_on)(void);
79         int (*key_off)(void);
80 };
81
82 struct _power_ops {
83         int (*suspend)(void);
84         int (*pre_suspend)(void);
85         int (*post_resume)(void);
86         int (*power_lock)(void);
87         int (*power_unlock)(void);
88         int (*get_power_lock_support)(void);
89         int (*check_wakeup_src)(void);
90 };
91
92 extern struct _backlight_ops backlight_ops;
93 extern struct _touch_ops touch_ops;
94 extern struct _power_ops power_ops;
95
96 #endif
97