Merge branch 'perf-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.git] / drivers / usb / phy / phy-fsm-usb.c
1 /*
2 * OTG Finite State Machine from OTG spec
3 *
4 * Copyright (C) 2007,2008 Freescale Semiconductor, Inc.
5 *
6 * Author: Li Yang <LeoLi@freescale.com>
7 * Jerry Huang <Chang-Ming.Huang@freescale.com>
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #include <linux/kernel.h>
25 #include <linux/types.h>
26 #include <linux/spinlock.h>
27 #include <linux/delay.h>
28 #include <linux/usb.h>
29 #include <linux/usb/gadget.h>
30 #include <linux/usb/otg.h>
31
32 #include "phy-fsm-usb.h"
33
34 /* Change USB protocol when there is a protocol change */
35 static int otg_set_protocol(struct otg_fsm *fsm, int protocol)
36 {
37 int ret = 0;
38
39 if (fsm->protocol != protocol) {
40 VDBG("Changing role fsm->protocol= %d; new protocol= %d\n",
41 fsm->protocol, protocol);
42 /* stop old protocol */
43 if (fsm->protocol == PROTO_HOST)
44 ret = otg_start_host(fsm, 0);
45 else if (fsm->protocol == PROTO_GADGET)
46 ret = otg_start_gadget(fsm, 0);
47 if (ret)
48 return ret;
49
50 /* start new protocol */
51 if (protocol == PROTO_HOST)
52 ret = otg_start_host(fsm, 1);
53 else if (protocol == PROTO_GADGET)
54 ret = otg_start_gadget(fsm, 1);
55 if (ret)
56 return ret;
57
58 fsm->protocol = protocol;
59 return 0;
60 }
61
62 return 0;
63 }
64
65 static int state_changed;
66
67 /* Called when leaving a state. Do state clean up jobs here */
68 void otg_leave_state(struct otg_fsm *fsm, enum usb_otg_state old_state)
69 {
70 switch (old_state) {
71 case OTG_STATE_B_IDLE:
72 otg_del_timer(fsm, B_SE0_SRP);
73 fsm->b_se0_srp = 0;
74 fsm->adp_sns = 0;
75 fsm->adp_prb = 0;
76 break;
77 case OTG_STATE_B_SRP_INIT:
78 fsm->data_pulse = 0;
79 fsm->b_srp_done = 0;
80 break;
81 case OTG_STATE_B_PERIPHERAL:
82 break;
83 case OTG_STATE_B_WAIT_ACON:
84 otg_del_timer(fsm, B_ASE0_BRST);
85 fsm->b_ase0_brst_tmout = 0;
86 break;
87 case OTG_STATE_B_HOST:
88 break;
89 case OTG_STATE_A_IDLE:
90 fsm->adp_prb = 0;
91 break;
92 case OTG_STATE_A_WAIT_VRISE:
93 otg_del_timer(fsm, A_WAIT_VRISE);
94 fsm->a_wait_vrise_tmout = 0;
95 break;
96 case OTG_STATE_A_WAIT_BCON:
97 otg_del_timer(fsm, A_WAIT_BCON);
98 fsm->a_wait_bcon_tmout = 0;
99 break;
100 case OTG_STATE_A_HOST:
101 otg_del_timer(fsm, A_WAIT_ENUM);
102 break;
103 case OTG_STATE_A_SUSPEND:
104 otg_del_timer(fsm, A_AIDL_BDIS);
105 fsm->a_aidl_bdis_tmout = 0;
106 fsm->a_suspend_req_inf = 0;
107 break;
108 case OTG_STATE_A_PERIPHERAL:
109 otg_del_timer(fsm, A_BIDL_ADIS);
110 fsm->a_bidl_adis_tmout = 0;
111 break;
112 case OTG_STATE_A_WAIT_VFALL:
113 otg_del_timer(fsm, A_WAIT_VFALL);
114 fsm->a_wait_vfall_tmout = 0;
115 otg_del_timer(fsm, A_WAIT_VRISE);
116 break;
117 case OTG_STATE_A_VBUS_ERR:
118 break;
119 default:
120 break;
121 }
122 }
123
124 /* Called when entering a state */
125 int otg_set_state(struct otg_fsm *fsm, enum usb_otg_state new_state)
126 {
127 state_changed = 1;
128 if (fsm->otg->phy->state == new_state)
129 return 0;
130 VDBG("Set state: %s\n", usb_otg_state_string(new_state));
131 otg_leave_state(fsm, fsm->otg->phy->state);
132 switch (new_state) {
133 case OTG_STATE_B_IDLE:
134 otg_drv_vbus(fsm, 0);
135 otg_chrg_vbus(fsm, 0);
136 otg_loc_conn(fsm, 0);
137 otg_loc_sof(fsm, 0);
138 /*
139 * Driver is responsible for starting ADP probing
140 * if ADP sensing times out.
141 */
142 otg_start_adp_sns(fsm);
143 otg_set_protocol(fsm, PROTO_UNDEF);
144 otg_add_timer(fsm, B_SE0_SRP);
145 break;
146 case OTG_STATE_B_SRP_INIT:
147 otg_start_pulse(fsm);
148 otg_loc_sof(fsm, 0);
149 otg_set_protocol(fsm, PROTO_UNDEF);
150 otg_add_timer(fsm, B_SRP_FAIL);
151 break;
152 case OTG_STATE_B_PERIPHERAL:
153 otg_chrg_vbus(fsm, 0);
154 otg_loc_conn(fsm, 1);
155 otg_loc_sof(fsm, 0);
156 otg_set_protocol(fsm, PROTO_GADGET);
157 break;
158 case OTG_STATE_B_WAIT_ACON:
159 otg_chrg_vbus(fsm, 0);
160 otg_loc_conn(fsm, 0);
161 otg_loc_sof(fsm, 0);
162 otg_set_protocol(fsm, PROTO_HOST);
163 otg_add_timer(fsm, B_ASE0_BRST);
164 fsm->a_bus_suspend = 0;
165 break;
166 case OTG_STATE_B_HOST:
167 otg_chrg_vbus(fsm, 0);
168 otg_loc_conn(fsm, 0);
169 otg_loc_sof(fsm, 1);
170 otg_set_protocol(fsm, PROTO_HOST);
171 usb_bus_start_enum(fsm->otg->host,
172 fsm->otg->host->otg_port);
173 break;
174 case OTG_STATE_A_IDLE:
175 otg_drv_vbus(fsm, 0);
176 otg_chrg_vbus(fsm, 0);
177 otg_loc_conn(fsm, 0);
178 otg_loc_sof(fsm, 0);
179 otg_start_adp_prb(fsm);
180 otg_set_protocol(fsm, PROTO_HOST);
181 break;
182 case OTG_STATE_A_WAIT_VRISE:
183 otg_drv_vbus(fsm, 1);
184 otg_loc_conn(fsm, 0);
185 otg_loc_sof(fsm, 0);
186 otg_set_protocol(fsm, PROTO_HOST);
187 otg_add_timer(fsm, A_WAIT_VRISE);
188 break;
189 case OTG_STATE_A_WAIT_BCON:
190 otg_drv_vbus(fsm, 1);
191 otg_loc_conn(fsm, 0);
192 otg_loc_sof(fsm, 0);
193 otg_set_protocol(fsm, PROTO_HOST);
194 otg_add_timer(fsm, A_WAIT_BCON);
195 break;
196 case OTG_STATE_A_HOST:
197 otg_drv_vbus(fsm, 1);
198 otg_loc_conn(fsm, 0);
199 otg_loc_sof(fsm, 1);
200 otg_set_protocol(fsm, PROTO_HOST);
201 /*
202 * When HNP is triggered while a_bus_req = 0, a_host will
203 * suspend too fast to complete a_set_b_hnp_en
204 */
205 if (!fsm->a_bus_req || fsm->a_suspend_req_inf)
206 otg_add_timer(fsm, A_WAIT_ENUM);
207 break;
208 case OTG_STATE_A_SUSPEND:
209 otg_drv_vbus(fsm, 1);
210 otg_loc_conn(fsm, 0);
211 otg_loc_sof(fsm, 0);
212 otg_set_protocol(fsm, PROTO_HOST);
213 otg_add_timer(fsm, A_AIDL_BDIS);
214
215 break;
216 case OTG_STATE_A_PERIPHERAL:
217 otg_loc_conn(fsm, 1);
218 otg_loc_sof(fsm, 0);
219 otg_set_protocol(fsm, PROTO_GADGET);
220 otg_drv_vbus(fsm, 1);
221 otg_add_timer(fsm, A_BIDL_ADIS);
222 break;
223 case OTG_STATE_A_WAIT_VFALL:
224 otg_drv_vbus(fsm, 0);
225 otg_loc_conn(fsm, 0);
226 otg_loc_sof(fsm, 0);
227 otg_set_protocol(fsm, PROTO_HOST);
228 otg_add_timer(fsm, A_WAIT_VFALL);
229 break;
230 case OTG_STATE_A_VBUS_ERR:
231 otg_drv_vbus(fsm, 0);
232 otg_loc_conn(fsm, 0);
233 otg_loc_sof(fsm, 0);
234 otg_set_protocol(fsm, PROTO_UNDEF);
235 break;
236 default:
237 break;
238 }
239
240 fsm->otg->phy->state = new_state;
241 return 0;
242 }
243
244 /* State change judgement */
245 int otg_statemachine(struct otg_fsm *fsm)
246 {
247 enum usb_otg_state state;
248 unsigned long flags;
249
250 spin_lock_irqsave(&fsm->lock, flags);
251
252 state = fsm->otg->phy->state;
253 state_changed = 0;
254 /* State machine state change judgement */
255
256 switch (state) {
257 case OTG_STATE_UNDEFINED:
258 VDBG("fsm->id = %d\n", fsm->id);
259 if (fsm->id)
260 otg_set_state(fsm, OTG_STATE_B_IDLE);
261 else
262 otg_set_state(fsm, OTG_STATE_A_IDLE);
263 break;
264 case OTG_STATE_B_IDLE:
265 if (!fsm->id)
266 otg_set_state(fsm, OTG_STATE_A_IDLE);
267 else if (fsm->b_sess_vld && fsm->otg->gadget)
268 otg_set_state(fsm, OTG_STATE_B_PERIPHERAL);
269 else if ((fsm->b_bus_req || fsm->adp_change || fsm->power_up) &&
270 fsm->b_ssend_srp && fsm->b_se0_srp)
271 otg_set_state(fsm, OTG_STATE_B_SRP_INIT);
272 break;
273 case OTG_STATE_B_SRP_INIT:
274 if (!fsm->id || fsm->b_srp_done)
275 otg_set_state(fsm, OTG_STATE_B_IDLE);
276 break;
277 case OTG_STATE_B_PERIPHERAL:
278 if (!fsm->id || !fsm->b_sess_vld)
279 otg_set_state(fsm, OTG_STATE_B_IDLE);
280 else if (fsm->b_bus_req && fsm->otg->
281 gadget->b_hnp_enable && fsm->a_bus_suspend)
282 otg_set_state(fsm, OTG_STATE_B_WAIT_ACON);
283 break;
284 case OTG_STATE_B_WAIT_ACON:
285 if (fsm->a_conn)
286 otg_set_state(fsm, OTG_STATE_B_HOST);
287 else if (!fsm->id || !fsm->b_sess_vld)
288 otg_set_state(fsm, OTG_STATE_B_IDLE);
289 else if (fsm->a_bus_resume || fsm->b_ase0_brst_tmout) {
290 fsm->b_ase0_brst_tmout = 0;
291 otg_set_state(fsm, OTG_STATE_B_PERIPHERAL);
292 }
293 break;
294 case OTG_STATE_B_HOST:
295 if (!fsm->id || !fsm->b_sess_vld)
296 otg_set_state(fsm, OTG_STATE_B_IDLE);
297 else if (!fsm->b_bus_req || !fsm->a_conn || fsm->test_device)
298 otg_set_state(fsm, OTG_STATE_B_PERIPHERAL);
299 break;
300 case OTG_STATE_A_IDLE:
301 if (fsm->id)
302 otg_set_state(fsm, OTG_STATE_B_IDLE);
303 else if (!fsm->a_bus_drop && (fsm->a_bus_req ||
304 fsm->a_srp_det || fsm->adp_change || fsm->power_up))
305 otg_set_state(fsm, OTG_STATE_A_WAIT_VRISE);
306 break;
307 case OTG_STATE_A_WAIT_VRISE:
308 if (fsm->id || fsm->a_bus_drop || fsm->a_vbus_vld ||
309 fsm->a_wait_vrise_tmout) {
310 otg_set_state(fsm, OTG_STATE_A_WAIT_BCON);
311 }
312 break;
313 case OTG_STATE_A_WAIT_BCON:
314 if (!fsm->a_vbus_vld)
315 otg_set_state(fsm, OTG_STATE_A_VBUS_ERR);
316 else if (fsm->b_conn)
317 otg_set_state(fsm, OTG_STATE_A_HOST);
318 else if (fsm->id | fsm->a_bus_drop | fsm->a_wait_bcon_tmout)
319 otg_set_state(fsm, OTG_STATE_A_WAIT_VFALL);
320 break;
321 case OTG_STATE_A_HOST:
322 if ((!fsm->a_bus_req || fsm->a_suspend_req_inf) &&
323 fsm->otg->host->b_hnp_enable)
324 otg_set_state(fsm, OTG_STATE_A_SUSPEND);
325 else if (fsm->id || !fsm->b_conn || fsm->a_bus_drop)
326 otg_set_state(fsm, OTG_STATE_A_WAIT_BCON);
327 else if (!fsm->a_vbus_vld)
328 otg_set_state(fsm, OTG_STATE_A_VBUS_ERR);
329 break;
330 case OTG_STATE_A_SUSPEND:
331 if (!fsm->b_conn && fsm->otg->host->b_hnp_enable)
332 otg_set_state(fsm, OTG_STATE_A_PERIPHERAL);
333 else if (!fsm->b_conn && !fsm->otg->host->b_hnp_enable)
334 otg_set_state(fsm, OTG_STATE_A_WAIT_BCON);
335 else if (fsm->a_bus_req || fsm->b_bus_resume)
336 otg_set_state(fsm, OTG_STATE_A_HOST);
337 else if (fsm->id || fsm->a_bus_drop || fsm->a_aidl_bdis_tmout)
338 otg_set_state(fsm, OTG_STATE_A_WAIT_VFALL);
339 else if (!fsm->a_vbus_vld)
340 otg_set_state(fsm, OTG_STATE_A_VBUS_ERR);
341 break;
342 case OTG_STATE_A_PERIPHERAL:
343 if (fsm->id || fsm->a_bus_drop)
344 otg_set_state(fsm, OTG_STATE_A_WAIT_VFALL);
345 else if (fsm->a_bidl_adis_tmout || fsm->b_bus_suspend)
346 otg_set_state(fsm, OTG_STATE_A_WAIT_BCON);
347 else if (!fsm->a_vbus_vld)
348 otg_set_state(fsm, OTG_STATE_A_VBUS_ERR);
349 break;
350 case OTG_STATE_A_WAIT_VFALL:
351 if (fsm->a_wait_vfall_tmout || fsm->id || fsm->a_bus_req ||
352 (!fsm->a_sess_vld && !fsm->b_conn))
353 otg_set_state(fsm, OTG_STATE_A_IDLE);
354 break;
355 case OTG_STATE_A_VBUS_ERR:
356 if (fsm->id || fsm->a_bus_drop || fsm->a_clr_err)
357 otg_set_state(fsm, OTG_STATE_A_WAIT_VFALL);
358 break;
359 default:
360 break;
361 }
362 spin_unlock_irqrestore(&fsm->lock, flags);
363
364 VDBG("quit statemachine, changed = %d\n", state_changed);
365 return state_changed;
366 }
This page took 0.044335 seconds and 6 git commands to generate.