phy-fsm-usb.h 4.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* Copyright (C) 2007,2008 Freescale Semiconductor, Inc.
 *
 * This program is free software; you can redistribute  it and/or modify it
 * under  the terms of  the GNU General  Public License as published by the
 * Free Software Foundation;  either version 2 of the  License, or (at your
 * option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the  GNU General Public License along
 * with this program; if not, write  to the Free Software Foundation, Inc.,
 * 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#undef VERBOSE

#ifdef VERBOSE
21 22
#define VDBG(fmt, args...) pr_debug("[%s]  " fmt , \
				 __func__, ## args)
23 24 25 26 27 28 29 30 31 32 33 34 35 36
#else
#define VDBG(stuff...)	do {} while (0)
#endif

#ifdef VERBOSE
#define MPC_LOC printk("Current Location [%s]:[%d]\n", __FILE__, __LINE__)
#else
#define MPC_LOC do {} while (0)
#endif

#define PROTO_UNDEF	(0)
#define PROTO_HOST	(1)
#define PROTO_GADGET	(2)

37
enum otg_fsm_timer {
38
	/* Standard OTG timers */
39
	A_WAIT_VRISE,
40
	A_WAIT_VFALL,
41 42 43
	A_WAIT_BCON,
	A_AIDL_BDIS,
	B_ASE0_BRST,
44 45 46
	A_BIDL_ADIS,

	/* Auxiliary timers */
47 48 49
	B_SE0_SRP,
	B_SRP_FAIL,
	A_WAIT_ENUM,
50

51 52 53
	NUM_OTG_FSM_TIMERS,
};

54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
/* OTG state machine according to the OTG spec */
struct otg_fsm {
	/* Input */
	int a_bus_resume;
	int a_bus_suspend;
	int a_conn;
	int a_sess_vld;
	int a_srp_det;
	int a_vbus_vld;
	int b_bus_resume;
	int b_bus_suspend;
	int b_conn;
	int b_se0_srp;
	int b_sess_end;
	int b_sess_vld;
	int id;

	/* Internal variables */
	int a_set_b_hnp_en;
	int b_srp_done;
	int b_hnp_enable;

	/* Timeout indicator for timers */
	int a_wait_vrise_tmout;
78
	int a_wait_vfall_tmout;
79 80 81
	int a_wait_bcon_tmout;
	int a_aidl_bdis_tmout;
	int b_ase0_brst_tmout;
82
	int a_bidl_adis_tmout;
83 84 85 86 87 88 89 90 91 92 93 94 95 96

	/* Informative variables */
	int a_bus_drop;
	int a_bus_req;
	int a_clr_err;
	int a_suspend_req;
	int b_bus_req;

	/* Output */
	int drv_vbus;
	int loc_conn;
	int loc_sof;

	struct otg_fsm_ops *ops;
97
	struct usb_otg *otg;
98 99 100 101 102 103 104

	/* Current usb protocol used: 0:undefine; 1:host; 2:client */
	int protocol;
	spinlock_t lock;
};

struct otg_fsm_ops {
105 106 107 108 109
	void	(*chrg_vbus)(struct otg_fsm *fsm, int on);
	void	(*drv_vbus)(struct otg_fsm *fsm, int on);
	void	(*loc_conn)(struct otg_fsm *fsm, int on);
	void	(*loc_sof)(struct otg_fsm *fsm, int on);
	void	(*start_pulse)(struct otg_fsm *fsm);
110 111
	void	(*add_timer)(struct otg_fsm *fsm, enum otg_fsm_timer timer);
	void	(*del_timer)(struct otg_fsm *fsm, enum otg_fsm_timer timer);
112 113 114 115 116
	int	(*start_host)(struct otg_fsm *fsm, int on);
	int	(*start_gadget)(struct otg_fsm *fsm, int on);
};


117
static inline int otg_chrg_vbus(struct otg_fsm *fsm, int on)
118
{
119 120
	if (!fsm->ops->chrg_vbus)
		return -EOPNOTSUPP;
121
	fsm->ops->chrg_vbus(fsm, on);
122
	return 0;
123 124
}

125
static inline int otg_drv_vbus(struct otg_fsm *fsm, int on)
126
{
127 128
	if (!fsm->ops->drv_vbus)
		return -EOPNOTSUPP;
129 130
	if (fsm->drv_vbus != on) {
		fsm->drv_vbus = on;
131
		fsm->ops->drv_vbus(fsm, on);
132
	}
133
	return 0;
134 135
}

136
static inline int otg_loc_conn(struct otg_fsm *fsm, int on)
137
{
138 139
	if (!fsm->ops->loc_conn)
		return -EOPNOTSUPP;
140 141
	if (fsm->loc_conn != on) {
		fsm->loc_conn = on;
142
		fsm->ops->loc_conn(fsm, on);
143
	}
144
	return 0;
145 146
}

147
static inline int otg_loc_sof(struct otg_fsm *fsm, int on)
148
{
149 150
	if (!fsm->ops->loc_sof)
		return -EOPNOTSUPP;
151 152
	if (fsm->loc_sof != on) {
		fsm->loc_sof = on;
153
		fsm->ops->loc_sof(fsm, on);
154
	}
155
	return 0;
156 157
}

158
static inline int otg_start_pulse(struct otg_fsm *fsm)
159
{
160 161
	if (!fsm->ops->start_pulse)
		return -EOPNOTSUPP;
162
	fsm->ops->start_pulse(fsm);
163
	return 0;
164 165
}

166
static inline int otg_add_timer(struct otg_fsm *fsm, enum otg_fsm_timer timer)
167
{
168 169
	if (!fsm->ops->add_timer)
		return -EOPNOTSUPP;
170
	fsm->ops->add_timer(fsm, timer);
171
	return 0;
172 173
}

174
static inline int otg_del_timer(struct otg_fsm *fsm, enum otg_fsm_timer timer)
175
{
176 177
	if (!fsm->ops->del_timer)
		return -EOPNOTSUPP;
178
	fsm->ops->del_timer(fsm, timer);
179
	return 0;
180 181
}

182 183 184 185 186 187 188 189 190 191 192 193 194 195
static inline int otg_start_host(struct otg_fsm *fsm, int on)
{
	if (!fsm->ops->start_host)
		return -EOPNOTSUPP;
	return fsm->ops->start_host(fsm, on);
}

static inline int otg_start_gadget(struct otg_fsm *fsm, int on)
{
	if (!fsm->ops->start_gadget)
		return -EOPNOTSUPP;
	return fsm->ops->start_gadget(fsm, on);
}

196
int otg_statemachine(struct otg_fsm *fsm);