Initial refactoring merge
[platform/core/telephony/tel-plugin-imcmodem.git] / include / vnet.h
1 /*
2  * tel-plugin-imcmodem
3  *
4  * Copyright (c) 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 #ifndef __VNET_H__
20 #define __VNET_H__
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25
26 /* CP states */
27 typedef enum {
28         VNET_CP_STATE_UNKNOWN = -1,
29         VNET_CP_STATE_OFFLINE = 0,
30         VNET_CP_STATE_CRASH_RESET,
31         VNET_CP_STATE_CRASH_EXIT,
32         VNET_CP_STATE_BOOTING,
33         VNET_CP_STATE_ONLINE,
34         VNET_CP_STATE_NV_REBUILDING,
35         VNET_CP_STATE_LOADER_DONE,
36 } VnetCpState;
37
38 void vnet_start_cp_ramdump(void);
39 void vnet_start_cp_reset(void);
40
41 VnetCpState vnet_get_cp_state(int fd);
42
43 int vnet_rfs0_open(void);
44 int vnet_ipc0_open(void);
45
46
47 #ifdef __cplusplus
48 }
49 #endif  /* __cplusplus */
50
51 #endif  /* __VNET_H__ */