usb: gadget: renesas_usbhs: support otg pin control
[deliverable/linux.git] / drivers / usb / renesas_usbhs / common.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/io.h>
18#include <linux/module.h>
19#include <linux/pm_runtime.h>
20#include <linux/slab.h>
21#include <linux/sysfs.h>
22#include "./common.h"
23
233f519d
KM
24/*
25 * image of renesas_usbhs
26 *
27 * ex) gadget case
28
29 * mod.c
30 * mod_gadget.c
31 * mod_host.c pipe.c fifo.c
32 *
33 * +-------+ +-----------+
34 * | pipe0 |------>| fifo pio |
35 * +------------+ +-------+ +-----------+
36 * | mod_gadget |=====> | pipe1 |--+
37 * +------------+ +-------+ | +-----------+
38 * | pipe2 | | +-| fifo dma0 |
39 * +------------+ +-------+ | | +-----------+
40 * | mod_host | | pipe3 |<-|--+
41 * +------------+ +-------+ | +-----------+
42 * | .... | +--->| fifo dma1 |
43 * | .... | +-----------+
44 */
45
46
b002ff6e
KM
47#define USBHSF_RUNTIME_PWCTRL (1 << 0)
48
49/* status */
50#define usbhsc_flags_init(p) do {(p)->flags = 0; } while (0)
51#define usbhsc_flags_set(p, b) ((p)->flags |= (b))
52#define usbhsc_flags_clr(p, b) ((p)->flags &= ~(b))
53#define usbhsc_flags_has(p, b) ((p)->flags & (b))
54
f1407d5c
KM
55/*
56 * platform call back
57 *
58 * renesas usb support platform callback function.
59 * Below macro call it.
60 * if platform doesn't have callback, it return 0 (no error)
61 */
62#define usbhs_platform_call(priv, func, args...)\
63 (!(priv) ? -ENODEV : \
64 !((priv)->pfunc->func) ? 0 : \
65 (priv)->pfunc->func(args))
66
67/*
68 * common functions
69 */
70u16 usbhs_read(struct usbhs_priv *priv, u32 reg)
71{
72 return ioread16(priv->base + reg);
73}
74
75void usbhs_write(struct usbhs_priv *priv, u32 reg, u16 data)
76{
77 iowrite16(data, priv->base + reg);
78}
79
80void usbhs_bset(struct usbhs_priv *priv, u32 reg, u16 mask, u16 data)
81{
82 u16 val = usbhs_read(priv, reg);
83
84 val &= ~mask;
85 val |= data & mask;
86
87 usbhs_write(priv, reg, val);
88}
89
206dcc2c
KM
90struct usbhs_priv *usbhs_pdev_to_priv(struct platform_device *pdev)
91{
92 return dev_get_drvdata(&pdev->dev);
93}
94
f1407d5c
KM
95/*
96 * syscfg functions
97 */
98void usbhs_sys_clock_ctrl(struct usbhs_priv *priv, int enable)
99{
100 usbhs_bset(priv, SYSCFG, SCKE, enable ? SCKE : 0);
101}
102
103void usbhs_sys_hispeed_ctrl(struct usbhs_priv *priv, int enable)
104{
105 usbhs_bset(priv, SYSCFG, HSE, enable ? HSE : 0);
106}
107
108void usbhs_sys_usb_ctrl(struct usbhs_priv *priv, int enable)
109{
110 usbhs_bset(priv, SYSCFG, USBE, enable ? USBE : 0);
111}
112
113void usbhs_sys_host_ctrl(struct usbhs_priv *priv, int enable)
114{
115 u16 mask = DCFM | DRPD | DPRPU;
116 u16 val = DCFM | DRPD;
f427eb64
KM
117 int has_otg = usbhs_get_dparam(priv, has_otg);
118
119 if (has_otg)
120 usbhs_bset(priv, DVSTCTR, (EXTLP | PWEN), (EXTLP | PWEN));
f1407d5c
KM
121
122 /*
123 * if enable
124 *
125 * - select Host mode
126 * - D+ Line/D- Line Pull-down
127 */
128 usbhs_bset(priv, SYSCFG, mask, enable ? val : 0);
129}
130
131void usbhs_sys_function_ctrl(struct usbhs_priv *priv, int enable)
132{
133 u16 mask = DCFM | DRPD | DPRPU;
134 u16 val = DPRPU;
135
136 /*
137 * if enable
138 *
139 * - select Function mode
140 * - D+ Line Pull-up
141 */
142 usbhs_bset(priv, SYSCFG, mask, enable ? val : 0);
143}
144
145/*
146 * frame functions
147 */
148int usbhs_frame_get_num(struct usbhs_priv *priv)
149{
150 return usbhs_read(priv, FRMNUM) & FRNM_MASK;
151}
152
ef8bedb9
KM
153/*
154 * usb request functions
155 */
156void usbhs_usbreq_get_val(struct usbhs_priv *priv, struct usb_ctrlrequest *req)
157{
158 u16 val;
159
160 val = usbhs_read(priv, USBREQ);
161 req->bRequest = (val >> 8) & 0xFF;
162 req->bRequestType = (val >> 0) & 0xFF;
163
164 req->wValue = usbhs_read(priv, USBVAL);
165 req->wIndex = usbhs_read(priv, USBINDX);
166 req->wLength = usbhs_read(priv, USBLENG);
167}
168
169void usbhs_usbreq_set_val(struct usbhs_priv *priv, struct usb_ctrlrequest *req)
170{
171 usbhs_write(priv, USBREQ, (req->bRequest << 8) | req->bRequestType);
172 usbhs_write(priv, USBVAL, req->wValue);
173 usbhs_write(priv, USBINDX, req->wIndex);
174 usbhs_write(priv, USBLENG, req->wLength);
175
176 usbhs_bset(priv, DCPCTR, SUREQ, SUREQ);
177}
178
258485d9
KM
179/*
180 * bus/vbus functions
181 */
182void usbhs_bus_send_sof_enable(struct usbhs_priv *priv)
183{
184 usbhs_bset(priv, DVSTCTR, (USBRST | UACT), UACT);
185}
186
187void usbhs_bus_send_reset(struct usbhs_priv *priv)
188{
189 usbhs_bset(priv, DVSTCTR, (USBRST | UACT), USBRST);
190}
191
75587f52
KM
192int usbhs_bus_get_speed(struct usbhs_priv *priv)
193{
194 u16 dvstctr = usbhs_read(priv, DVSTCTR);
195
196 switch (RHST & dvstctr) {
197 case RHST_LOW_SPEED:
198 return USB_SPEED_LOW;
199 case RHST_FULL_SPEED:
200 return USB_SPEED_FULL;
201 case RHST_HIGH_SPEED:
202 return USB_SPEED_HIGH;
203 }
204
205 return USB_SPEED_UNKNOWN;
206}
207
258485d9
KM
208int usbhs_vbus_ctrl(struct usbhs_priv *priv, int enable)
209{
210 struct platform_device *pdev = usbhs_priv_to_pdev(priv);
211
212 return usbhs_platform_call(priv, set_vbus, pdev, enable);
213}
214
215static void usbhsc_bus_init(struct usbhs_priv *priv)
216{
217 usbhs_write(priv, DVSTCTR, 0);
218
219 usbhs_vbus_ctrl(priv, 0);
220}
221
f1407d5c
KM
222/*
223 * local functions
224 */
11935de5 225static void usbhsc_set_buswait(struct usbhs_priv *priv)
f1407d5c
KM
226{
227 int wait = usbhs_get_dparam(priv, buswait_bwait);
f1407d5c 228
11935de5
KM
229 /* set bus wait if platform have */
230 if (wait)
231 usbhs_bset(priv, BUSWAIT, 0x000F, wait);
f1407d5c
KM
232}
233
234/*
235 * platform default param
236 */
237static u32 usbhsc_default_pipe_type[] = {
238 USB_ENDPOINT_XFER_CONTROL,
239 USB_ENDPOINT_XFER_ISOC,
240 USB_ENDPOINT_XFER_ISOC,
241 USB_ENDPOINT_XFER_BULK,
242 USB_ENDPOINT_XFER_BULK,
243 USB_ENDPOINT_XFER_BULK,
244 USB_ENDPOINT_XFER_INT,
245 USB_ENDPOINT_XFER_INT,
246 USB_ENDPOINT_XFER_INT,
247 USB_ENDPOINT_XFER_INT,
248};
249
250/*
6e267da8
KM
251 * power control
252 */
253static void usbhsc_power_ctrl(struct usbhs_priv *priv, int enable)
254{
255 struct device *dev = usbhs_priv_to_dev(priv);
256
257 if (enable) {
258 /* enable PM */
259 pm_runtime_get_sync(dev);
260
261 /* USB on */
262 usbhs_sys_clock_ctrl(priv, enable);
6e267da8
KM
263 } else {
264 /* USB off */
6e267da8
KM
265 usbhs_sys_clock_ctrl(priv, enable);
266
267 /* disable PM */
268 pm_runtime_put_sync(dev);
269 }
270}
271
272/*
ca8a282a 273 * hotplug
f1407d5c 274 */
ca8a282a 275static void usbhsc_hotplug(struct usbhs_priv *priv)
f1407d5c 276{
f1407d5c
KM
277 struct platform_device *pdev = usbhs_priv_to_pdev(priv);
278 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
279 int id;
280 int enable;
281 int ret;
282
283 /*
284 * get vbus status from platform
285 */
286 enable = usbhs_platform_call(priv, get_vbus, pdev);
287
288 /*
289 * get id from platform
290 */
291 id = usbhs_platform_call(priv, get_id, pdev);
292
293 if (enable && !mod) {
294 ret = usbhs_mod_change(priv, id);
295 if (ret < 0)
296 return;
297
298 dev_dbg(&pdev->dev, "%s enable\n", __func__);
299
6e267da8 300 /* power on */
b002ff6e
KM
301 if (usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL))
302 usbhsc_power_ctrl(priv, enable);
f1407d5c 303
258485d9
KM
304 /* bus init */
305 usbhsc_set_buswait(priv);
306 usbhsc_bus_init(priv);
307
f1407d5c
KM
308 /* module start */
309 usbhs_mod_call(priv, start, priv);
310
311 } else if (!enable && mod) {
312 dev_dbg(&pdev->dev, "%s disable\n", __func__);
313
314 /* module stop */
315 usbhs_mod_call(priv, stop, priv);
316
258485d9
KM
317 /* bus init */
318 usbhsc_bus_init(priv);
319
6e267da8 320 /* power off */
b002ff6e
KM
321 if (usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL))
322 usbhsc_power_ctrl(priv, enable);
f1407d5c
KM
323
324 usbhs_mod_change(priv, -1);
325
326 /* reset phy for next connection */
327 usbhs_platform_call(priv, phy_reset, pdev);
328 }
329}
330
ca8a282a
KM
331/*
332 * notify hotplug
333 */
334static void usbhsc_notify_hotplug(struct work_struct *work)
335{
336 struct usbhs_priv *priv = container_of(work,
337 struct usbhs_priv,
338 notify_hotplug_work.work);
339 usbhsc_hotplug(priv);
340}
341
bc57381e 342int usbhsc_drvcllbck_notify_hotplug(struct platform_device *pdev)
f1407d5c 343{
206dcc2c 344 struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
bc57381e 345 int delay = usbhs_get_dparam(priv, detection_delay);
f1407d5c
KM
346
347 /*
348 * This functions will be called in interrupt.
349 * To make sure safety context,
350 * use workqueue for usbhs_notify_hotplug
351 */
bc57381e 352 schedule_delayed_work(&priv->notify_hotplug_work, delay);
f1407d5c
KM
353 return 0;
354}
355
356/*
357 * platform functions
358 */
359static int __devinit usbhs_probe(struct platform_device *pdev)
360{
361 struct renesas_usbhs_platform_info *info = pdev->dev.platform_data;
362 struct renesas_usbhs_driver_callback *dfunc;
363 struct usbhs_priv *priv;
364 struct resource *res;
365 unsigned int irq;
366 int ret;
367
368 /* check platform information */
369 if (!info ||
b002ff6e 370 !info->platform_callback.get_id) {
f1407d5c
KM
371 dev_err(&pdev->dev, "no platform information\n");
372 return -EINVAL;
373 }
374
375 /* platform data */
376 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
377 irq = platform_get_irq(pdev, 0);
378 if (!res || (int)irq <= 0) {
379 dev_err(&pdev->dev, "Not enough Renesas USB platform resources.\n");
380 return -ENODEV;
381 }
382
383 /* usb private data */
384 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
385 if (!priv) {
386 dev_err(&pdev->dev, "Could not allocate priv\n");
387 return -ENOMEM;
388 }
389
390 priv->base = ioremap_nocache(res->start, resource_size(res));
391 if (!priv->base) {
392 dev_err(&pdev->dev, "ioremap error.\n");
393 ret = -ENOMEM;
394 goto probe_end_kfree;
395 }
396
397 /*
398 * care platform info
399 */
400 priv->pfunc = &info->platform_callback;
401 priv->dparam = &info->driver_param;
402
403 /* set driver callback functions for platform */
404 dfunc = &info->driver_callback;
405 dfunc->notify_hotplug = usbhsc_drvcllbck_notify_hotplug;
406
407 /* set default param if platform doesn't have */
408 if (!priv->dparam->pipe_type) {
409 priv->dparam->pipe_type = usbhsc_default_pipe_type;
410 priv->dparam->pipe_size = ARRAY_SIZE(usbhsc_default_pipe_type);
411 }
e73a9891
KM
412 if (!priv->dparam->pio_dma_border)
413 priv->dparam->pio_dma_border = 64; /* 64byte */
f1407d5c 414
b002ff6e
KM
415 /* FIXME */
416 /* runtime power control ? */
417 if (priv->pfunc->get_vbus)
418 usbhsc_flags_set(priv, USBHSF_RUNTIME_PWCTRL);
419
f1407d5c
KM
420 /*
421 * priv settings
422 */
423 priv->irq = irq;
424 priv->pdev = pdev;
bc57381e 425 INIT_DELAYED_WORK(&priv->notify_hotplug_work, usbhsc_notify_hotplug);
f1407d5c
KM
426 spin_lock_init(usbhs_priv_to_lock(priv));
427
428 /* call pipe and module init */
429 ret = usbhs_pipe_probe(priv);
430 if (ret < 0)
97f93227 431 goto probe_end_iounmap;
f1407d5c 432
d3af90a5 433 ret = usbhs_fifo_probe(priv);
f1407d5c 434 if (ret < 0)
97f93227 435 goto probe_end_pipe_exit;
f1407d5c 436
d3af90a5
KM
437 ret = usbhs_mod_probe(priv);
438 if (ret < 0)
439 goto probe_end_fifo_exit;
440
f1407d5c
KM
441 /* dev_set_drvdata should be called after usbhs_mod_init */
442 dev_set_drvdata(&pdev->dev, priv);
443
444 /*
445 * deviece reset here because
446 * USB device might be used in boot loader.
447 */
448 usbhs_sys_clock_ctrl(priv, 0);
449
450 /*
451 * platform call
452 *
453 * USB phy setup might depend on CPU/Board.
454 * If platform has its callback functions,
455 * call it here.
456 */
457 ret = usbhs_platform_call(priv, hardware_init, pdev);
458 if (ret < 0) {
459 dev_err(&pdev->dev, "platform prove failed.\n");
97f93227 460 goto probe_end_mod_exit;
f1407d5c
KM
461 }
462
463 /* reset phy for connection */
464 usbhs_platform_call(priv, phy_reset, pdev);
465
b002ff6e
KM
466 /* power control */
467 pm_runtime_enable(&pdev->dev);
468 if (!usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL)) {
469 usbhsc_power_ctrl(priv, 1);
470 usbhs_mod_autonomy_mode(priv);
471 }
472
f1407d5c
KM
473 /*
474 * manual call notify_hotplug for cold plug
475 */
f1407d5c
KM
476 ret = usbhsc_drvcllbck_notify_hotplug(pdev);
477 if (ret < 0)
478 goto probe_end_call_remove;
479
480 dev_info(&pdev->dev, "probed\n");
481
482 return ret;
483
484probe_end_call_remove:
485 usbhs_platform_call(priv, hardware_exit, pdev);
f1407d5c
KM
486probe_end_mod_exit:
487 usbhs_mod_remove(priv);
d3af90a5
KM
488probe_end_fifo_exit:
489 usbhs_fifo_remove(priv);
97f93227
KM
490probe_end_pipe_exit:
491 usbhs_pipe_remove(priv);
f1407d5c
KM
492probe_end_iounmap:
493 iounmap(priv->base);
494probe_end_kfree:
495 kfree(priv);
496
497 dev_info(&pdev->dev, "probe failed\n");
498
499 return ret;
500}
501
502static int __devexit usbhs_remove(struct platform_device *pdev)
503{
206dcc2c 504 struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
af32fe51
KM
505 struct renesas_usbhs_platform_info *info = pdev->dev.platform_data;
506 struct renesas_usbhs_driver_callback *dfunc = &info->driver_callback;
f1407d5c
KM
507
508 dev_dbg(&pdev->dev, "usb remove\n");
509
af32fe51
KM
510 dfunc->notify_hotplug = NULL;
511
b002ff6e
KM
512 /* power off */
513 if (!usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL))
514 usbhsc_power_ctrl(priv, 0);
f1407d5c 515
b002ff6e 516 pm_runtime_disable(&pdev->dev);
f1407d5c
KM
517
518 usbhs_platform_call(priv, hardware_exit, pdev);
f1407d5c 519 usbhs_mod_remove(priv);
d3af90a5 520 usbhs_fifo_remove(priv);
97f93227 521 usbhs_pipe_remove(priv);
f1407d5c
KM
522 iounmap(priv->base);
523 kfree(priv);
524
525 return 0;
526}
527
ca8a282a
KM
528static int usbhsc_suspend(struct device *dev)
529{
530 struct usbhs_priv *priv = dev_get_drvdata(dev);
531 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
532
533 if (mod) {
534 usbhs_mod_call(priv, stop, priv);
535 usbhs_mod_change(priv, -1);
536 }
537
538 if (mod || !usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL))
539 usbhsc_power_ctrl(priv, 0);
540
541 return 0;
542}
543
544static int usbhsc_resume(struct device *dev)
545{
546 struct usbhs_priv *priv = dev_get_drvdata(dev);
547 struct platform_device *pdev = usbhs_priv_to_pdev(priv);
548
549 usbhs_platform_call(priv, phy_reset, pdev);
550
551 if (!usbhsc_flags_has(priv, USBHSF_RUNTIME_PWCTRL))
552 usbhsc_power_ctrl(priv, 1);
553
554 usbhsc_hotplug(priv);
555
556 return 0;
557}
558
559static int usbhsc_runtime_nop(struct device *dev)
560{
561 /* Runtime PM callback shared between ->runtime_suspend()
562 * and ->runtime_resume(). Simply returns success.
563 *
564 * This driver re-initializes all registers after
565 * pm_runtime_get_sync() anyway so there is no need
566 * to save and restore registers here.
567 */
568 return 0;
569}
570
571static const struct dev_pm_ops usbhsc_pm_ops = {
572 .suspend = usbhsc_suspend,
573 .resume = usbhsc_resume,
574 .runtime_suspend = usbhsc_runtime_nop,
575 .runtime_resume = usbhsc_runtime_nop,
576};
577
f1407d5c
KM
578static struct platform_driver renesas_usbhs_driver = {
579 .driver = {
580 .name = "renesas_usbhs",
ca8a282a 581 .pm = &usbhsc_pm_ops,
f1407d5c
KM
582 },
583 .probe = usbhs_probe,
584 .remove = __devexit_p(usbhs_remove),
585};
586
587static int __init usbhs_init(void)
588{
589 return platform_driver_register(&renesas_usbhs_driver);
590}
591
592static void __exit usbhs_exit(void)
593{
594 platform_driver_unregister(&renesas_usbhs_driver);
595}
596
597module_init(usbhs_init);
598module_exit(usbhs_exit);
599
600MODULE_LICENSE("GPL");
601MODULE_DESCRIPTION("Renesas USB driver");
602MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");
This page took 0.145356 seconds and 5 git commands to generate.