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