03560e88226282e9d162a13ad81e23945f2c7114
[framework/system/system-server.git] / ss_ta_handler.c
1 /*
2  * Copyright 2012  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.tizenopensource.org/license
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15 */
16
17
18 #include <pmapi.h>
19 #include <vconf.h>
20 #include <sysman.h>
21
22 #include "ss_device_plugin.h"
23 #include "ss_log.h"
24 #include "include/ss_data.h"
25
26 #define RETRY   3
27
28 int ss_ta_init()
29 {
30         int val = -1, i = 0, pid;
31
32         PRT_TRACE("check ta connection");
33         if (plugin_intf->OEM_sys_get_jack_charger_online(&val) == 0) {
34                 if (val==1) {
35                         while (i < RETRY
36                                && pm_lock_state(LCD_OFF, STAY_CUR_STATE,
37                                                 0) == -1) {
38                                 i++;
39                                 sleep(1);
40                         }
41                         PRT_TRACE("ta is connected");
42                 }
43         }
44         return 0;
45 }