usb: gadget: lpc32xx_udc: Disable setup request error
[deliverable/linux.git] / drivers / usb / renesas_usbhs / mod.c
CommitLineData
f1407d5c
KM
1/*
2 * Renesas USB driver
3 *
4 * Copyright (C) 2011 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
15 *
16 */
17#include <linux/interrupt.h>
18
cc502bb7
PB
19#include "common.h"
20#include "mod.h"
f1407d5c
KM
21
22#define usbhs_priv_to_modinfo(priv) (&priv->mod_info)
b002ff6e
KM
23#define usbhs_mod_info_call(priv, func, param...) \
24({ \
25 struct usbhs_mod_info *info; \
26 info = usbhs_priv_to_modinfo(priv); \
27 !info->func ? 0 : \
28 info->func(param); \
29})
30
31/*
32 * autonomy
33 *
34 * these functions are used if platform doesn't have external phy.
35 * -> there is no "notify_hotplug" callback from platform
36 * -> call "notify_hotplug" by itself
37 * -> use own interrupt to connect/disconnect
38 * -> it mean module clock is always ON
39 * ~~~~~~~~~~~~~~~~~~~~~~~~~
40 */
41static int usbhsm_autonomy_get_vbus(struct platform_device *pdev)
42{
43 struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
44
45 return VBSTS & usbhs_read(priv, INTSTS0);
46}
47
48static int usbhsm_autonomy_irq_vbus(struct usbhs_priv *priv,
49 struct usbhs_irq_state *irq_state)
50{
51 struct platform_device *pdev = usbhs_priv_to_pdev(priv);
52
b4fcea2a
KM
53 renesas_usbhs_call_notify_hotplug(pdev);
54
55 return 0;
b002ff6e
KM
56}
57
58void usbhs_mod_autonomy_mode(struct usbhs_priv *priv)
59{
60 struct usbhs_mod_info *info = usbhs_priv_to_modinfo(priv);
61
62 info->irq_vbus = usbhsm_autonomy_irq_vbus;
48298206 63 priv->pfunc.get_vbus = usbhsm_autonomy_get_vbus;
b002ff6e
KM
64
65 usbhs_irq_callback_update(priv, NULL);
66}
f1407d5c
KM
67
68/*
69 * host / gadget functions
70 *
71 * renesas_usbhs host/gadget can register itself by below functions.
72 * these functions are called when probe
73 *
74 */
75void usbhs_mod_register(struct usbhs_priv *priv, struct usbhs_mod *mod, int id)
76{
77 struct usbhs_mod_info *info = usbhs_priv_to_modinfo(priv);
78
79 info->mod[id] = mod;
80 mod->priv = priv;
81}
82
83struct usbhs_mod *usbhs_mod_get(struct usbhs_priv *priv, int id)
84{
85 struct usbhs_mod_info *info = usbhs_priv_to_modinfo(priv);
86 struct usbhs_mod *ret = NULL;
87
88 switch (id) {
89 case USBHS_HOST:
90 case USBHS_GADGET:
91 ret = info->mod[id];
92 break;
93 }
94
95 return ret;
96}
97
0deb3e77 98int usbhs_mod_is_host(struct usbhs_priv *priv)
f1407d5c 99{
0deb3e77 100 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
f1407d5c
KM
101 struct usbhs_mod_info *info = usbhs_priv_to_modinfo(priv);
102
103 if (!mod)
104 return -EINVAL;
105
106 return info->mod[USBHS_HOST] == mod;
107}
108
109struct usbhs_mod *usbhs_mod_get_current(struct usbhs_priv *priv)
110{
111 struct usbhs_mod_info *info = usbhs_priv_to_modinfo(priv);
112
113 return info->curt;
114}
115
116int usbhs_mod_change(struct usbhs_priv *priv, int id)
117{
118 struct usbhs_mod_info *info = usbhs_priv_to_modinfo(priv);
119 struct usbhs_mod *mod = NULL;
120 int ret = 0;
121
122 /* id < 0 mean no current */
123 switch (id) {
124 case USBHS_HOST:
125 case USBHS_GADGET:
126 mod = info->mod[id];
127 break;
128 default:
129 ret = -EINVAL;
130 }
131 info->curt = mod;
132
133 return ret;
134}
135
136static irqreturn_t usbhs_interrupt(int irq, void *data);
137int usbhs_mod_probe(struct usbhs_priv *priv)
138{
139 struct device *dev = usbhs_priv_to_dev(priv);
140 int ret;
141
2f98382d
KM
142 /*
143 * install host/gadget driver
144 */
034d7c13 145 ret = usbhs_mod_host_probe(priv);
2f98382d
KM
146 if (ret < 0)
147 return ret;
148
034d7c13
KM
149 ret = usbhs_mod_gadget_probe(priv);
150 if (ret < 0)
151 goto mod_init_host_err;
152
f1407d5c
KM
153 /* irq settings */
154 ret = request_irq(priv->irq, usbhs_interrupt,
53069af3 155 priv->irqflags, dev_name(dev), priv);
2f98382d 156 if (ret) {
f1407d5c 157 dev_err(dev, "irq request err\n");
2f98382d
KM
158 goto mod_init_gadget_err;
159 }
160
161 return ret;
162
163mod_init_gadget_err:
164 usbhs_mod_gadget_remove(priv);
034d7c13
KM
165mod_init_host_err:
166 usbhs_mod_host_remove(priv);
f1407d5c
KM
167
168 return ret;
169}
170
171void usbhs_mod_remove(struct usbhs_priv *priv)
172{
034d7c13 173 usbhs_mod_host_remove(priv);
2f98382d 174 usbhs_mod_gadget_remove(priv);
f1407d5c
KM
175 free_irq(priv->irq, priv);
176}
177
178/*
179 * status functions
180 */
f1407d5c
KM
181int usbhs_status_get_device_state(struct usbhs_irq_state *irq_state)
182{
183 int state = irq_state->intsts0 & DVSQ_MASK;
184
185 switch (state) {
186 case POWER_STATE:
187 case DEFAULT_STATE:
188 case ADDRESS_STATE:
189 case CONFIGURATION_STATE:
190 return state;
191 }
192
193 return -EIO;
194}
195
196int usbhs_status_get_ctrl_stage(struct usbhs_irq_state *irq_state)
197{
198 /*
199 * return value
200 *
201 * IDLE_SETUP_STAGE
202 * READ_DATA_STAGE
203 * READ_STATUS_STAGE
204 * WRITE_DATA_STAGE
205 * WRITE_STATUS_STAGE
206 * NODATA_STATUS_STAGE
207 * SEQUENCE_ERROR
208 */
209 return (int)irq_state->intsts0 & CTSQ_MASK;
210}
211
697d5c00
SY
212static int usbhs_status_get_each_irq(struct usbhs_priv *priv,
213 struct usbhs_irq_state *state)
f1407d5c
KM
214{
215 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
697d5c00 216 u16 intenb0, intenb1;
f1407d5c
KM
217
218 state->intsts0 = usbhs_read(priv, INTSTS0);
219 state->intsts1 = usbhs_read(priv, INTSTS1);
220
697d5c00
SY
221 intenb0 = usbhs_read(priv, INTENB0);
222 intenb1 = usbhs_read(priv, INTENB1);
223
f1407d5c 224 /* mask */
5ea68d54
KM
225 if (mod) {
226 state->brdysts = usbhs_read(priv, BRDYSTS);
227 state->nrdysts = usbhs_read(priv, NRDYSTS);
228 state->bempsts = usbhs_read(priv, BEMPSTS);
229
230 state->bempsts &= mod->irq_bempsts;
231 state->brdysts &= mod->irq_brdysts;
232 }
697d5c00
SY
233
234 /*
235 * Check whether the irq enable registers and the irq status are set
236 * when IRQF_SHARED is set.
237 */
238 if (priv->irqflags & IRQF_SHARED) {
239 if (!(intenb0 & state->intsts0) &&
240 !(intenb1 & state->intsts1) &&
241 !(state->bempsts) &&
242 !(state->brdysts))
243 return -EIO;
244 }
245
246 return 0;
f1407d5c
KM
247}
248
249/*
250 * interrupt
251 */
252#define INTSTS0_MAGIC 0xF800 /* acknowledge magical interrupt sources */
253#define INTSTS1_MAGIC 0xA870 /* acknowledge magical interrupt sources */
254static irqreturn_t usbhs_interrupt(int irq, void *data)
255{
256 struct usbhs_priv *priv = data;
257 struct usbhs_irq_state irq_state;
258
697d5c00
SY
259 if (usbhs_status_get_each_irq(priv, &irq_state) < 0)
260 return IRQ_NONE;
f1407d5c
KM
261
262 /*
263 * clear interrupt
264 *
265 * The hardware is _very_ picky to clear interrupt bit.
266 * Especially INTSTS0_MAGIC, INTSTS1_MAGIC value.
267 *
268 * see
269 * "Operation"
270 * - "Control Transfer (DCP)"
271 * - Function :: VALID bit should 0
272 */
273 usbhs_write(priv, INTSTS0, ~irq_state.intsts0 & INTSTS0_MAGIC);
274 usbhs_write(priv, INTSTS1, ~irq_state.intsts1 & INTSTS1_MAGIC);
275
276 usbhs_write(priv, BRDYSTS, 0);
277 usbhs_write(priv, NRDYSTS, 0);
278 usbhs_write(priv, BEMPSTS, 0);
279
280 /*
281 * call irq callback functions
282 * see also
283 * usbhs_irq_setting_update
284 */
89c1d2e7
KM
285
286 /* INTSTS0 */
b002ff6e
KM
287 if (irq_state.intsts0 & VBINT)
288 usbhs_mod_info_call(priv, irq_vbus, priv, &irq_state);
289
f1407d5c
KM
290 if (irq_state.intsts0 & DVST)
291 usbhs_mod_call(priv, irq_dev_state, priv, &irq_state);
292
293 if (irq_state.intsts0 & CTRT)
294 usbhs_mod_call(priv, irq_ctrl_stage, priv, &irq_state);
295
296 if (irq_state.intsts0 & BEMP)
297 usbhs_mod_call(priv, irq_empty, priv, &irq_state);
298
299 if (irq_state.intsts0 & BRDY)
300 usbhs_mod_call(priv, irq_ready, priv, &irq_state);
301
89c1d2e7
KM
302 /* INTSTS1 */
303 if (irq_state.intsts1 & ATTCH)
304 usbhs_mod_call(priv, irq_attch, priv, &irq_state);
305
306 if (irq_state.intsts1 & DTCH)
307 usbhs_mod_call(priv, irq_dtch, priv, &irq_state);
308
309 if (irq_state.intsts1 & SIGN)
310 usbhs_mod_call(priv, irq_sign, priv, &irq_state);
311
312 if (irq_state.intsts1 & SACK)
313 usbhs_mod_call(priv, irq_sack, priv, &irq_state);
314
f1407d5c
KM
315 return IRQ_HANDLED;
316}
317
318void usbhs_irq_callback_update(struct usbhs_priv *priv, struct usbhs_mod *mod)
319{
320 u16 intenb0 = 0;
89c1d2e7 321 u16 intenb1 = 0;
b002ff6e 322 struct usbhs_mod_info *info = usbhs_priv_to_modinfo(priv);
f1407d5c 323
651f5e49
KM
324 /*
325 * BEMPENB/BRDYENB are picky.
326 * below method is required
327 *
328 * - clear INTSTS0
329 * - update BEMPENB/BRDYENB
330 * - update INTSTS0
331 */
f1407d5c 332 usbhs_write(priv, INTENB0, 0);
89c1d2e7 333 usbhs_write(priv, INTENB1, 0);
f1407d5c
KM
334
335 usbhs_write(priv, BEMPENB, 0);
336 usbhs_write(priv, BRDYENB, 0);
337
338 /*
339 * see also
340 * usbhs_interrupt
341 */
342
343 /*
344 * it don't enable DVSE (intenb0) here
345 * but "mod->irq_dev_state" will be called.
346 */
b002ff6e
KM
347 if (info->irq_vbus)
348 intenb0 |= VBSE;
f1407d5c 349
5ea68d54 350 if (mod) {
89c1d2e7
KM
351 /*
352 * INTSTS0
353 */
5ea68d54
KM
354 if (mod->irq_ctrl_stage)
355 intenb0 |= CTRE;
f1407d5c 356
5ea68d54
KM
357 if (mod->irq_empty && mod->irq_bempsts) {
358 usbhs_write(priv, BEMPENB, mod->irq_bempsts);
359 intenb0 |= BEMPE;
360 }
f1407d5c 361
5ea68d54
KM
362 if (mod->irq_ready && mod->irq_brdysts) {
363 usbhs_write(priv, BRDYENB, mod->irq_brdysts);
364 intenb0 |= BRDYE;
365 }
89c1d2e7
KM
366
367 /*
368 * INTSTS1
369 */
370 if (mod->irq_attch)
371 intenb1 |= ATTCHE;
372
b95eb747 373 if (mod->irq_dtch)
89c1d2e7
KM
374 intenb1 |= DTCHE;
375
376 if (mod->irq_sign)
377 intenb1 |= SIGNE;
378
379 if (mod->irq_sack)
380 intenb1 |= SACKE;
f1407d5c
KM
381 }
382
651f5e49
KM
383 if (intenb0)
384 usbhs_write(priv, INTENB0, intenb0);
89c1d2e7
KM
385
386 if (intenb1)
387 usbhs_write(priv, INTENB1, intenb1);
f1407d5c 388}
This page took 0.145424 seconds and 5 git commands to generate.