summaryrefslogtreecommitdiff
path: root/include/device-internal.h
blob: 63a9db5def72f3a3cc3a900fa66adb5c47148ce4 (plain)
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
/*
 * device-node
 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
 *
 * Licensed under the Apache License, Version 2.0 (the License);
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


#ifndef __DEVICE_INTERNAL_H__
#define __DEVICE_INTERNAL_H__

#include <errno.h>
#include "device-node.h"

#ifndef __CONSTRUCTOR__
#define __CONSTRUCTOR__ __attribute__ ((constructor))
#endif

#ifndef __DESTRUCTOR__
#define __DESTRUCTOR__ __attribute__ ((destructor))
#endif

#define FEATURE_DEVICE_NODE_DLOG
#ifdef FEATURE_DEVICE_NODE_DLOG
#define LOG_TAG "DEVICE_NODE"
#include <dlog.h>
#define _I(fmt, args...)        SLOGI(fmt, ##args)
#define _D(fmt, args...)        SLOGD(fmt, ##args)
#define _E(fmt, args...)        SLOGE(fmt, ##args)
#else
#define _I(x, ...)              do { } while (0)
#define _D(x, ...)              do { } while (0)
#define _E(x, ...)              do { } while (0)
#endif

#define DEVMAN_PLUGIN_PATH  "/usr/lib/libslp_devman_plugin.so"

#define DEF_SYS(node)		default_plugin.OEM_sys_##node
#define DEF_GET(node)		default_plugin.OEM_sys_get_##node
#define DEF_SET(node)		default_plugin.OEM_sys_set_##node

#define OEM_SYS(node)		oem_intf->OEM_sys_##node
#define OEM_GET(node)		oem_intf->OEM_sys_get_##node
#define OEM_SET(node)		oem_intf->OEM_sys_set_##node

#define PLUGIN_SYS(node, ...) \
	(oem_intf && OEM_SYS(node) ? OEM_SYS(node)(__VA_ARGS__) : \
	 DEF_SYS(node) ? DEF_SYS(node)(__VA_ARGS__) : -ENOTSUP)
#define PLUGIN_GET(node, ...) \
	(oem_intf && OEM_GET(node) ? OEM_GET(node)(__VA_ARGS__) : \
	 DEF_GET(node) ? DEF_GET(node)(__VA_ARGS__) : -ENOTSUP)
#define PLUGIN_SET(node, ...) \
	(oem_intf && OEM_SET(node) ? OEM_SET(node)(__VA_ARGS__) : \
	 DEF_SET(node) ? DEF_SET(node)(__VA_ARGS__) : -ENOTSUP)

struct device {
	enum device_type type;
	char *name;
	int (*set_prop) (int property, int val);
	int (*get_prop) (int property, int *val);
};

void add_device(const enum device_type *devtype);
void remove_device(const enum device_type *devtype);

extern const OEM_sys_devman_plugin_interface *oem_intf;
extern const OEM_sys_devman_plugin_interface default_plugin;

#endif		/* __DEVICE_INTERNAL_H__ */