4 * Copyright (C) 2011 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
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.
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
18 #include <linux/module.h>
19 #include <linux/pm_runtime.h>
20 #include <linux/slab.h>
21 #include <linux/sysfs.h>
25 * image of renesas_usbhs
31 * mod_host.c pipe.c fifo.c
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 * | .... | +-----------+
47 #define USBHSF_RUNTIME_PWCTRL (1 << 0)
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))
58 * renesas usb support platform callback function.
59 * Below macro call it.
60 * if platform doesn't have callback, it return 0 (no error)
62 #define usbhs_platform_call(priv, func, args...)\
63 (!(priv) ? -ENODEV : \
64 !((priv)->pfunc.func) ? 0 : \
65 (priv)->pfunc.func(args))
70 u16
usbhs_read(struct usbhs_priv
*priv
, u32 reg
)
72 return ioread16(priv
->base
+ reg
);
75 void usbhs_write(struct usbhs_priv
*priv
, u32 reg
, u16 data
)
77 iowrite16(data
, priv
->base
+ reg
);
80 void usbhs_bset(struct usbhs_priv
*priv
, u32 reg
, u16 mask
, u16 data
)
82 u16 val
= usbhs_read(priv
, reg
);
87 usbhs_write(priv
, reg
, val
);
90 struct usbhs_priv
*usbhs_pdev_to_priv(struct platform_device
*pdev
)
92 return dev_get_drvdata(&pdev
->dev
);
98 void usbhs_sys_clock_ctrl(struct usbhs_priv
*priv
, int enable
)
100 usbhs_bset(priv
, SYSCFG
, SCKE
, enable
? SCKE
: 0);
103 void usbhs_sys_hispeed_ctrl(struct usbhs_priv
*priv
, int enable
)
105 usbhs_bset(priv
, SYSCFG
, HSE
, enable
? HSE
: 0);
108 void usbhs_sys_usb_ctrl(struct usbhs_priv
*priv
, int enable
)
110 usbhs_bset(priv
, SYSCFG
, USBE
, enable
? USBE
: 0);
113 void usbhs_sys_host_ctrl(struct usbhs_priv
*priv
, int enable
)
115 u16 mask
= DCFM
| DRPD
| DPRPU
;
116 u16 val
= DCFM
| DRPD
;
117 int has_otg
= usbhs_get_dparam(priv
, has_otg
);
120 usbhs_bset(priv
, DVSTCTR
, (EXTLP
| PWEN
), (EXTLP
| PWEN
));
126 * - D+ Line/D- Line Pull-down
128 usbhs_bset(priv
, SYSCFG
, mask
, enable
? val
: 0);
131 void usbhs_sys_function_ctrl(struct usbhs_priv
*priv
, int enable
)
133 u16 mask
= DCFM
| DRPD
| DPRPU
;
139 * - select Function mode
142 usbhs_bset(priv
, SYSCFG
, mask
, enable
? val
: 0);
148 int usbhs_frame_get_num(struct usbhs_priv
*priv
)
150 return usbhs_read(priv
, FRMNUM
) & FRNM_MASK
;
154 * usb request functions
156 void usbhs_usbreq_get_val(struct usbhs_priv
*priv
, struct usb_ctrlrequest
*req
)
160 val
= usbhs_read(priv
, USBREQ
);
161 req
->bRequest
= (val
>> 8) & 0xFF;
162 req
->bRequestType
= (val
>> 0) & 0xFF;
164 req
->wValue
= usbhs_read(priv
, USBVAL
);
165 req
->wIndex
= usbhs_read(priv
, USBINDX
);
166 req
->wLength
= usbhs_read(priv
, USBLENG
);
169 void usbhs_usbreq_set_val(struct usbhs_priv
*priv
, struct usb_ctrlrequest
*req
)
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
);
176 usbhs_bset(priv
, DCPCTR
, SUREQ
, SUREQ
);
182 void usbhs_bus_send_sof_enable(struct usbhs_priv
*priv
)
184 u16 status
= usbhs_read(priv
, DVSTCTR
) & (USBRST
| UACT
);
186 if (status
!= USBRST
) {
187 struct device
*dev
= usbhs_priv_to_dev(priv
);
188 dev_err(dev
, "usbhs should be reset\n");
191 usbhs_bset(priv
, DVSTCTR
, (USBRST
| UACT
), UACT
);
194 void usbhs_bus_send_reset(struct usbhs_priv
*priv
)
196 usbhs_bset(priv
, DVSTCTR
, (USBRST
| UACT
), USBRST
);
199 int usbhs_bus_get_speed(struct usbhs_priv
*priv
)
201 u16 dvstctr
= usbhs_read(priv
, DVSTCTR
);
203 switch (RHST
& dvstctr
) {
205 return USB_SPEED_LOW
;
206 case RHST_FULL_SPEED
:
207 return USB_SPEED_FULL
;
208 case RHST_HIGH_SPEED
:
209 return USB_SPEED_HIGH
;
212 return USB_SPEED_UNKNOWN
;
215 int usbhs_vbus_ctrl(struct usbhs_priv
*priv
, int enable
)
217 struct platform_device
*pdev
= usbhs_priv_to_pdev(priv
);
219 return usbhs_platform_call(priv
, set_vbus
, pdev
, enable
);
222 static void usbhsc_bus_init(struct usbhs_priv
*priv
)
224 usbhs_write(priv
, DVSTCTR
, 0);
226 usbhs_vbus_ctrl(priv
, 0);
230 * device configuration
232 int usbhs_set_device_speed(struct usbhs_priv
*priv
, int devnum
,
233 u16 upphub
, u16 hubport
, u16 speed
)
235 struct device
*dev
= usbhs_priv_to_dev(priv
);
237 u32 reg
= DEVADD0
+ (2 * devnum
);
240 dev_err(dev
, "cannot set speed to unknown device %d\n", devnum
);
245 dev_err(dev
, "unsupported hub number %d\n", upphub
);
251 usbspd
= USBSPD_SPEED_LOW
;
254 usbspd
= USBSPD_SPEED_FULL
;
257 usbspd
= USBSPD_SPEED_HIGH
;
260 dev_err(dev
, "unsupported speed %d\n", speed
);
264 usbhs_write(priv
, reg
, UPPHUB(upphub
) |
274 static void usbhsc_set_buswait(struct usbhs_priv
*priv
)
276 int wait
= usbhs_get_dparam(priv
, buswait_bwait
);
278 /* set bus wait if platform have */
280 usbhs_bset(priv
, BUSWAIT
, 0x000F, wait
);
284 * platform default param
286 static u32 usbhsc_default_pipe_type
[] = {
287 USB_ENDPOINT_XFER_CONTROL
,
288 USB_ENDPOINT_XFER_ISOC
,
289 USB_ENDPOINT_XFER_ISOC
,
290 USB_ENDPOINT_XFER_BULK
,
291 USB_ENDPOINT_XFER_BULK
,
292 USB_ENDPOINT_XFER_BULK
,
293 USB_ENDPOINT_XFER_INT
,
294 USB_ENDPOINT_XFER_INT
,
295 USB_ENDPOINT_XFER_INT
,
296 USB_ENDPOINT_XFER_INT
,
302 static void usbhsc_power_ctrl(struct usbhs_priv
*priv
, int enable
)
304 struct device
*dev
= usbhs_priv_to_dev(priv
);
308 pm_runtime_get_sync(dev
);
311 usbhs_sys_clock_ctrl(priv
, enable
);
314 usbhs_sys_clock_ctrl(priv
, enable
);
317 pm_runtime_put_sync(dev
);
324 static void usbhsc_hotplug(struct usbhs_priv
*priv
)
326 struct platform_device
*pdev
= usbhs_priv_to_pdev(priv
);
327 struct usbhs_mod
*mod
= usbhs_mod_get_current(priv
);
333 * get vbus status from platform
335 enable
= usbhs_platform_call(priv
, get_vbus
, pdev
);
338 * get id from platform
340 id
= usbhs_platform_call(priv
, get_id
, pdev
);
342 if (enable
&& !mod
) {
343 ret
= usbhs_mod_change(priv
, id
);
347 dev_dbg(&pdev
->dev
, "%s enable\n", __func__
);
350 if (usbhsc_flags_has(priv
, USBHSF_RUNTIME_PWCTRL
))
351 usbhsc_power_ctrl(priv
, enable
);
354 usbhsc_set_buswait(priv
);
355 usbhsc_bus_init(priv
);
358 usbhs_mod_call(priv
, start
, priv
);
360 } else if (!enable
&& mod
) {
361 dev_dbg(&pdev
->dev
, "%s disable\n", __func__
);
364 usbhs_mod_call(priv
, stop
, priv
);
367 usbhsc_bus_init(priv
);
370 if (usbhsc_flags_has(priv
, USBHSF_RUNTIME_PWCTRL
))
371 usbhsc_power_ctrl(priv
, enable
);
373 usbhs_mod_change(priv
, -1);
375 /* reset phy for next connection */
376 usbhs_platform_call(priv
, phy_reset
, pdev
);
383 static void usbhsc_notify_hotplug(struct work_struct
*work
)
385 struct usbhs_priv
*priv
= container_of(work
,
387 notify_hotplug_work
.work
);
388 usbhsc_hotplug(priv
);
391 int usbhsc_drvcllbck_notify_hotplug(struct platform_device
*pdev
)
393 struct usbhs_priv
*priv
= usbhs_pdev_to_priv(pdev
);
394 int delay
= usbhs_get_dparam(priv
, detection_delay
);
397 * This functions will be called in interrupt.
398 * To make sure safety context,
399 * use workqueue for usbhs_notify_hotplug
401 schedule_delayed_work(&priv
->notify_hotplug_work
, delay
);
408 static int __devinit
usbhs_probe(struct platform_device
*pdev
)
410 struct renesas_usbhs_platform_info
*info
= pdev
->dev
.platform_data
;
411 struct renesas_usbhs_driver_callback
*dfunc
;
412 struct usbhs_priv
*priv
;
413 struct resource
*res
;
417 /* check platform information */
419 !info
->platform_callback
.get_id
) {
420 dev_err(&pdev
->dev
, "no platform information\n");
425 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
426 irq
= platform_get_irq(pdev
, 0);
427 if (!res
|| (int)irq
<= 0) {
428 dev_err(&pdev
->dev
, "Not enough Renesas USB platform resources.\n");
432 /* usb private data */
433 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
435 dev_err(&pdev
->dev
, "Could not allocate priv\n");
439 priv
->base
= ioremap_nocache(res
->start
, resource_size(res
));
441 dev_err(&pdev
->dev
, "ioremap error.\n");
443 goto probe_end_kfree
;
450 &info
->platform_callback
,
451 sizeof(struct renesas_usbhs_platform_callback
));
452 memcpy(&priv
->dparam
,
454 sizeof(struct renesas_usbhs_driver_param
));
456 /* set driver callback functions for platform */
457 dfunc
= &info
->driver_callback
;
458 dfunc
->notify_hotplug
= usbhsc_drvcllbck_notify_hotplug
;
460 /* set default param if platform doesn't have */
461 if (!priv
->dparam
.pipe_type
) {
462 priv
->dparam
.pipe_type
= usbhsc_default_pipe_type
;
463 priv
->dparam
.pipe_size
= ARRAY_SIZE(usbhsc_default_pipe_type
);
465 if (!priv
->dparam
.pio_dma_border
)
466 priv
->dparam
.pio_dma_border
= 64; /* 64byte */
469 /* runtime power control ? */
470 if (priv
->pfunc
.get_vbus
)
471 usbhsc_flags_set(priv
, USBHSF_RUNTIME_PWCTRL
);
478 INIT_DELAYED_WORK(&priv
->notify_hotplug_work
, usbhsc_notify_hotplug
);
479 spin_lock_init(usbhs_priv_to_lock(priv
));
481 /* call pipe and module init */
482 ret
= usbhs_pipe_probe(priv
);
484 goto probe_end_iounmap
;
486 ret
= usbhs_fifo_probe(priv
);
488 goto probe_end_pipe_exit
;
490 ret
= usbhs_mod_probe(priv
);
492 goto probe_end_fifo_exit
;
494 /* dev_set_drvdata should be called after usbhs_mod_init */
495 dev_set_drvdata(&pdev
->dev
, priv
);
498 * deviece reset here because
499 * USB device might be used in boot loader.
501 usbhs_sys_clock_ctrl(priv
, 0);
506 * USB phy setup might depend on CPU/Board.
507 * If platform has its callback functions,
510 ret
= usbhs_platform_call(priv
, hardware_init
, pdev
);
512 dev_err(&pdev
->dev
, "platform prove failed.\n");
513 goto probe_end_mod_exit
;
516 /* reset phy for connection */
517 usbhs_platform_call(priv
, phy_reset
, pdev
);
520 pm_runtime_enable(&pdev
->dev
);
521 if (!usbhsc_flags_has(priv
, USBHSF_RUNTIME_PWCTRL
)) {
522 usbhsc_power_ctrl(priv
, 1);
523 usbhs_mod_autonomy_mode(priv
);
527 * manual call notify_hotplug for cold plug
529 ret
= usbhsc_drvcllbck_notify_hotplug(pdev
);
531 goto probe_end_call_remove
;
533 dev_info(&pdev
->dev
, "probed\n");
537 probe_end_call_remove
:
538 usbhs_platform_call(priv
, hardware_exit
, pdev
);
540 usbhs_mod_remove(priv
);
542 usbhs_fifo_remove(priv
);
544 usbhs_pipe_remove(priv
);
550 dev_info(&pdev
->dev
, "probe failed\n");
555 static int __devexit
usbhs_remove(struct platform_device
*pdev
)
557 struct usbhs_priv
*priv
= usbhs_pdev_to_priv(pdev
);
558 struct renesas_usbhs_platform_info
*info
= pdev
->dev
.platform_data
;
559 struct renesas_usbhs_driver_callback
*dfunc
= &info
->driver_callback
;
561 dev_dbg(&pdev
->dev
, "usb remove\n");
563 dfunc
->notify_hotplug
= NULL
;
566 if (!usbhsc_flags_has(priv
, USBHSF_RUNTIME_PWCTRL
))
567 usbhsc_power_ctrl(priv
, 0);
569 pm_runtime_disable(&pdev
->dev
);
571 usbhs_platform_call(priv
, hardware_exit
, pdev
);
572 usbhs_mod_remove(priv
);
573 usbhs_fifo_remove(priv
);
574 usbhs_pipe_remove(priv
);
581 static int usbhsc_suspend(struct device
*dev
)
583 struct usbhs_priv
*priv
= dev_get_drvdata(dev
);
584 struct usbhs_mod
*mod
= usbhs_mod_get_current(priv
);
587 usbhs_mod_call(priv
, stop
, priv
);
588 usbhs_mod_change(priv
, -1);
591 if (mod
|| !usbhsc_flags_has(priv
, USBHSF_RUNTIME_PWCTRL
))
592 usbhsc_power_ctrl(priv
, 0);
597 static int usbhsc_resume(struct device
*dev
)
599 struct usbhs_priv
*priv
= dev_get_drvdata(dev
);
600 struct platform_device
*pdev
= usbhs_priv_to_pdev(priv
);
602 usbhs_platform_call(priv
, phy_reset
, pdev
);
604 if (!usbhsc_flags_has(priv
, USBHSF_RUNTIME_PWCTRL
))
605 usbhsc_power_ctrl(priv
, 1);
607 usbhsc_hotplug(priv
);
612 static int usbhsc_runtime_nop(struct device
*dev
)
614 /* Runtime PM callback shared between ->runtime_suspend()
615 * and ->runtime_resume(). Simply returns success.
617 * This driver re-initializes all registers after
618 * pm_runtime_get_sync() anyway so there is no need
619 * to save and restore registers here.
624 static const struct dev_pm_ops usbhsc_pm_ops
= {
625 .suspend
= usbhsc_suspend
,
626 .resume
= usbhsc_resume
,
627 .runtime_suspend
= usbhsc_runtime_nop
,
628 .runtime_resume
= usbhsc_runtime_nop
,
631 static struct platform_driver renesas_usbhs_driver
= {
633 .name
= "renesas_usbhs",
634 .pm
= &usbhsc_pm_ops
,
636 .probe
= usbhs_probe
,
637 .remove
= __devexit_p(usbhs_remove
),
640 static int __init
usbhs_init(void)
642 return platform_driver_register(&renesas_usbhs_driver
);
645 static void __exit
usbhs_exit(void)
647 platform_driver_unregister(&renesas_usbhs_driver
);
650 module_init(usbhs_init
);
651 module_exit(usbhs_exit
);
653 MODULE_LICENSE("GPL");
654 MODULE_DESCRIPTION("Renesas USB driver");
655 MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");