aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/host_notify.h
blob: 2b7ac18645454264baa77b902c2e6f556f5123be (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
/*
 *  Host notify class driver
 *
 * Copyright (C) 2011 Samsung, Inc.
 * Author: Dongrak Shin <dongrak.shin@samsung.com>
 *
*/

#ifndef __LINUX_HOST_NOTIFY_H__
#define __LINUX_HOST_NOTIFY_H__

enum host_uevent_state {
	NOTIFY_HOST_NONE,
	NOTIFY_HOST_ADD,
	NOTIFY_HOST_REMOVE,
	NOTIFY_HOST_OVERCURRENT,
	NOTIFY_HOST_LOWBATT,
	NOTIFY_HOST_UNKNOWN,
};

enum otg_mode {
	NOTIFY_NONE_MODE,
	NOTIFY_HOST_MODE,
	NOTIFY_PERIPHERAL_MODE,
	NOTIFY_TEST_MODE,
};

enum booster_power {
	NOTIFY_POWER_OFF,
	NOTIFY_POWER_ON,
};

enum set_command {
	NOTIFY_SET_OFF,
	NOTIFY_SET_ON,
};

struct host_notify_dev {
	const char	*name;
	struct device	*dev;
	int		index;
	int		state;
	int		mode;
	int		booster;
	void		(*set_mode)(int);
	void		(*set_booster)(int);
};

struct host_notifier_platform_data {
	struct	host_notify_dev ndev;
	int		gpio;
	void	(*booster)(int);
	void (*powered_booster)(int);
	int		(*usbhostd_start)(void);
	int		(*usbhostd_stop)(void);
	int		thread_enable;
	int		irq_enable;
};

extern void host_state_notify(struct host_notify_dev *ndev, int state);
extern int host_notify_dev_register(struct host_notify_dev *ndev);
extern void host_notify_dev_unregister(struct host_notify_dev *ndev);

#endif /* __LINUX_HOST_NOTIFY_H__ */