blob: 4049e5cc4abbbd0688ae727c6ac67f5f91b9854d [file] [log] [blame]
Li Yang0807c502011-04-18 22:01:59 +02001/* Copyright (C) 2007,2008 Freescale Semiconductor, Inc.
2 *
3 * This program is free software; you can redistribute it and/or modify it
4 * under the terms of the GNU General Public License as published by the
5 * Free Software Foundation; either version 2 of the License, or (at your
6 * option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 675 Mass Ave, Cambridge, MA 02139, USA.
16 */
17
Li Yang0807c502011-04-18 22:01:59 +020018#undef VERBOSE
19
Li Yang0807c502011-04-18 22:01:59 +020020#ifdef VERBOSE
Greg Kroah-Hartman523e5312013-06-28 11:32:55 -070021#define VDBG(fmt, args...) pr_debug("[%s] " fmt , \
22 __func__, ## args)
Li Yang0807c502011-04-18 22:01:59 +020023#else
24#define VDBG(stuff...) do {} while (0)
25#endif
26
27#ifdef VERBOSE
28#define MPC_LOC printk("Current Location [%s]:[%d]\n", __FILE__, __LINE__)
29#else
30#define MPC_LOC do {} while (0)
31#endif
32
33#define PROTO_UNDEF (0)
34#define PROTO_HOST (1)
35#define PROTO_GADGET (2)
36
Anton Tikhomirovf6de27e2013-10-03 12:42:04 +090037enum otg_fsm_timer {
Anton Tikhomirov32949082013-10-03 12:42:04 +090038 /* Standard OTG timers */
Anton Tikhomirovf6de27e2013-10-03 12:42:04 +090039 A_WAIT_VRISE,
Anton Tikhomirov32949082013-10-03 12:42:04 +090040 A_WAIT_VFALL,
Anton Tikhomirovf6de27e2013-10-03 12:42:04 +090041 A_WAIT_BCON,
42 A_AIDL_BDIS,
43 B_ASE0_BRST,
Anton Tikhomirov32949082013-10-03 12:42:04 +090044 A_BIDL_ADIS,
45
46 /* Auxiliary timers */
Anton Tikhomirovf6de27e2013-10-03 12:42:04 +090047 B_SE0_SRP,
48 B_SRP_FAIL,
49 A_WAIT_ENUM,
Anton Tikhomirov32949082013-10-03 12:42:04 +090050
Anton Tikhomirovf6de27e2013-10-03 12:42:04 +090051 NUM_OTG_FSM_TIMERS,
52};
53
Li Yang0807c502011-04-18 22:01:59 +020054/* OTG state machine according to the OTG spec */
55struct otg_fsm {
56 /* Input */
Anton Tikhomirovcff4dab2013-10-03 12:42:04 +090057 int a_bus_drop;
58 int a_bus_req;
Li Yang0807c502011-04-18 22:01:59 +020059 int a_bus_resume;
60 int a_bus_suspend;
61 int a_conn;
Anton Tikhomirovcff4dab2013-10-03 12:42:04 +090062 int b_bus_req;
Li Yang0807c502011-04-18 22:01:59 +020063 int a_sess_vld;
64 int a_srp_det;
65 int a_vbus_vld;
66 int b_bus_resume;
67 int b_bus_suspend;
68 int b_conn;
69 int b_se0_srp;
70 int b_sess_end;
71 int b_sess_vld;
72 int id;
73
74 /* Internal variables */
75 int a_set_b_hnp_en;
76 int b_srp_done;
77 int b_hnp_enable;
Anton Tikhomirovcff4dab2013-10-03 12:42:04 +090078 int a_clr_err;
Li Yang0807c502011-04-18 22:01:59 +020079
80 /* Timeout indicator for timers */
81 int a_wait_vrise_tmout;
Anton Tikhomirov32949082013-10-03 12:42:04 +090082 int a_wait_vfall_tmout;
Li Yang0807c502011-04-18 22:01:59 +020083 int a_wait_bcon_tmout;
84 int a_aidl_bdis_tmout;
85 int b_ase0_brst_tmout;
Anton Tikhomirov32949082013-10-03 12:42:04 +090086 int a_bidl_adis_tmout;
Li Yang0807c502011-04-18 22:01:59 +020087
88 /* Informative variables */
Anton Tikhomirovcff4dab2013-10-03 12:42:04 +090089 int a_bus_drop_inf;
90 int a_bus_req_inf;
91 int a_clr_err_inf;
92 int a_suspend_req_inf;
93 int b_bus_req_inf;
Li Yang0807c502011-04-18 22:01:59 +020094
95 /* Output */
96 int drv_vbus;
97 int loc_conn;
98 int loc_sof;
99
100 struct otg_fsm_ops *ops;
Heikki Krogerus7e062c02012-02-13 13:24:06 +0200101 struct usb_otg *otg;
Li Yang0807c502011-04-18 22:01:59 +0200102
103 /* Current usb protocol used: 0:undefine; 1:host; 2:client */
104 int protocol;
105 spinlock_t lock;
106};
107
108struct otg_fsm_ops {
Anton Tikhomirovda8cc162013-10-03 12:42:04 +0900109 void (*chrg_vbus)(struct otg_fsm *fsm, int on);
110 void (*drv_vbus)(struct otg_fsm *fsm, int on);
111 void (*loc_conn)(struct otg_fsm *fsm, int on);
112 void (*loc_sof)(struct otg_fsm *fsm, int on);
113 void (*start_pulse)(struct otg_fsm *fsm);
Anton Tikhomirovf6de27e2013-10-03 12:42:04 +0900114 void (*add_timer)(struct otg_fsm *fsm, enum otg_fsm_timer timer);
115 void (*del_timer)(struct otg_fsm *fsm, enum otg_fsm_timer timer);
Li Yang0807c502011-04-18 22:01:59 +0200116 int (*start_host)(struct otg_fsm *fsm, int on);
117 int (*start_gadget)(struct otg_fsm *fsm, int on);
118};
119
120
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900121static inline int otg_chrg_vbus(struct otg_fsm *fsm, int on)
Li Yang0807c502011-04-18 22:01:59 +0200122{
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900123 if (!fsm->ops->chrg_vbus)
124 return -EOPNOTSUPP;
Anton Tikhomirovda8cc162013-10-03 12:42:04 +0900125 fsm->ops->chrg_vbus(fsm, on);
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900126 return 0;
Li Yang0807c502011-04-18 22:01:59 +0200127}
128
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900129static inline int otg_drv_vbus(struct otg_fsm *fsm, int on)
Li Yang0807c502011-04-18 22:01:59 +0200130{
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900131 if (!fsm->ops->drv_vbus)
132 return -EOPNOTSUPP;
Li Yang0807c502011-04-18 22:01:59 +0200133 if (fsm->drv_vbus != on) {
134 fsm->drv_vbus = on;
Anton Tikhomirovda8cc162013-10-03 12:42:04 +0900135 fsm->ops->drv_vbus(fsm, on);
Li Yang0807c502011-04-18 22:01:59 +0200136 }
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900137 return 0;
Li Yang0807c502011-04-18 22:01:59 +0200138}
139
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900140static inline int otg_loc_conn(struct otg_fsm *fsm, int on)
Li Yang0807c502011-04-18 22:01:59 +0200141{
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900142 if (!fsm->ops->loc_conn)
143 return -EOPNOTSUPP;
Li Yang0807c502011-04-18 22:01:59 +0200144 if (fsm->loc_conn != on) {
145 fsm->loc_conn = on;
Anton Tikhomirovda8cc162013-10-03 12:42:04 +0900146 fsm->ops->loc_conn(fsm, on);
Li Yang0807c502011-04-18 22:01:59 +0200147 }
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900148 return 0;
Li Yang0807c502011-04-18 22:01:59 +0200149}
150
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900151static inline int otg_loc_sof(struct otg_fsm *fsm, int on)
Li Yang0807c502011-04-18 22:01:59 +0200152{
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900153 if (!fsm->ops->loc_sof)
154 return -EOPNOTSUPP;
Li Yang0807c502011-04-18 22:01:59 +0200155 if (fsm->loc_sof != on) {
156 fsm->loc_sof = on;
Anton Tikhomirovda8cc162013-10-03 12:42:04 +0900157 fsm->ops->loc_sof(fsm, on);
Li Yang0807c502011-04-18 22:01:59 +0200158 }
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900159 return 0;
Li Yang0807c502011-04-18 22:01:59 +0200160}
161
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900162static inline int otg_start_pulse(struct otg_fsm *fsm)
Li Yang0807c502011-04-18 22:01:59 +0200163{
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900164 if (!fsm->ops->start_pulse)
165 return -EOPNOTSUPP;
Anton Tikhomirovda8cc162013-10-03 12:42:04 +0900166 fsm->ops->start_pulse(fsm);
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900167 return 0;
Li Yang0807c502011-04-18 22:01:59 +0200168}
169
Anton Tikhomirovf6de27e2013-10-03 12:42:04 +0900170static inline int otg_add_timer(struct otg_fsm *fsm, enum otg_fsm_timer timer)
Li Yang0807c502011-04-18 22:01:59 +0200171{
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900172 if (!fsm->ops->add_timer)
173 return -EOPNOTSUPP;
Anton Tikhomirovda8cc162013-10-03 12:42:04 +0900174 fsm->ops->add_timer(fsm, timer);
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900175 return 0;
Li Yang0807c502011-04-18 22:01:59 +0200176}
177
Anton Tikhomirovf6de27e2013-10-03 12:42:04 +0900178static inline int otg_del_timer(struct otg_fsm *fsm, enum otg_fsm_timer timer)
Li Yang0807c502011-04-18 22:01:59 +0200179{
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900180 if (!fsm->ops->del_timer)
181 return -EOPNOTSUPP;
Anton Tikhomirovda8cc162013-10-03 12:42:04 +0900182 fsm->ops->del_timer(fsm, timer);
Anton Tikhomirov737cc662013-10-03 12:42:04 +0900183 return 0;
Li Yang0807c502011-04-18 22:01:59 +0200184}
185
Anton Tikhomirov425d7102013-10-03 12:42:04 +0900186static inline int otg_start_host(struct otg_fsm *fsm, int on)
187{
188 if (!fsm->ops->start_host)
189 return -EOPNOTSUPP;
190 return fsm->ops->start_host(fsm, on);
191}
192
193static inline int otg_start_gadget(struct otg_fsm *fsm, int on)
194{
195 if (!fsm->ops->start_gadget)
196 return -EOPNOTSUPP;
197 return fsm->ops->start_gadget(fsm, on);
198}
199
Li Yang0807c502011-04-18 22:01:59 +0200200int otg_statemachine(struct otg_fsm *fsm);