2 * core.c - ChipIdea USB IP core family device controller
4 * Copyright (C) 2008 Chipidea - MIPS Technologies, Inc. All rights reserved.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
14 * Description: ChipIdea USB IP core family device controller
16 * This driver is composed of several blocks:
17 * - HW: hardware interface
18 * - DBG: debug facilities (optional)
20 * - ISR: interrupts handling
21 * - ENDPT: endpoint operations (Gadget API)
22 * - GADGET: gadget operations (Gadget API)
23 * - BUS: bus glue code, bus abstraction layer
26 * - STALL_IN: non-empty bulk-in pipes cannot be halted
27 * if defined mass storage compliance succeeds but with warnings
31 * if undefined usbtest 13 fails
32 * - TRACE: enable function tracing (depends on DEBUG)
35 * - Chapter 9 & Mass Storage Compliance with Gadget File Storage
36 * - Chapter 9 Compliance with Gadget Zero (STALL_IN undefined)
37 * - Normal & LPM support
40 * - OK: 0-12, 13 (STALL_IN defined) & 14
41 * - Not Supported: 15 & 16 (ISO)
44 * - Suspend & Remote Wakeup
46 #include <linux/delay.h>
47 #include <linux/device.h>
48 #include <linux/dma-mapping.h>
49 #include <linux/extcon.h>
50 #include <linux/phy/phy.h>
51 #include <linux/platform_device.h>
52 #include <linux/module.h>
53 #include <linux/idr.h>
54 #include <linux/interrupt.h>
56 #include <linux/kernel.h>
57 #include <linux/slab.h>
58 #include <linux/pm_runtime.h>
59 #include <linux/usb/ch9.h>
60 #include <linux/usb/gadget.h>
61 #include <linux/usb/otg.h>
62 #include <linux/usb/chipidea.h>
63 #include <linux/usb/of.h>
65 #include <linux/regulator/consumer.h>
66 #include <linux/usb/ehci_def.h>
75 /* Controller register map */
76 static const u8 ci_regs_nolpm[] = {
77 [CAP_CAPLENGTH] = 0x00U,
78 [CAP_HCCPARAMS] = 0x08U,
79 [CAP_DCCPARAMS] = 0x24U,
80 [CAP_TESTMODE] = 0x38U,
84 [OP_DEVICEADDR] = 0x14U,
85 [OP_ENDPTLISTADDR] = 0x18U,
87 [OP_BURSTSIZE] = 0x20U,
88 [OP_ULPI_VIEWPORT] = 0x30U,
93 [OP_ENDPTSETUPSTAT] = 0x6CU,
94 [OP_ENDPTPRIME] = 0x70U,
95 [OP_ENDPTFLUSH] = 0x74U,
96 [OP_ENDPTSTAT] = 0x78U,
97 [OP_ENDPTCOMPLETE] = 0x7CU,
98 [OP_ENDPTCTRL] = 0x80U,
101 static const u8 ci_regs_lpm[] = {
102 [CAP_CAPLENGTH] = 0x00U,
103 [CAP_HCCPARAMS] = 0x08U,
104 [CAP_DCCPARAMS] = 0x24U,
105 [CAP_TESTMODE] = 0xFCU,
108 [OP_USBINTR] = 0x08U,
109 [OP_DEVICEADDR] = 0x14U,
110 [OP_ENDPTLISTADDR] = 0x18U,
112 [OP_BURSTSIZE] = 0x20U,
113 [OP_ULPI_VIEWPORT] = 0x30U,
117 [OP_USBMODE] = 0xC8U,
118 [OP_ENDPTSETUPSTAT] = 0xD8U,
119 [OP_ENDPTPRIME] = 0xDCU,
120 [OP_ENDPTFLUSH] = 0xE0U,
121 [OP_ENDPTSTAT] = 0xE4U,
122 [OP_ENDPTCOMPLETE] = 0xE8U,
123 [OP_ENDPTCTRL] = 0xECU,
126 static void hw_alloc_regmap(struct ci_hdrc *ci, bool is_lpm)
130 for (i = 0; i < OP_ENDPTCTRL; i++)
131 ci->hw_bank.regmap[i] =
132 (i <= CAP_LAST ? ci->hw_bank.cap : ci->hw_bank.op) +
133 (is_lpm ? ci_regs_lpm[i] : ci_regs_nolpm[i]);
135 for (; i <= OP_LAST; i++)
136 ci->hw_bank.regmap[i] = ci->hw_bank.op +
137 4 * (i - OP_ENDPTCTRL) +
139 ? ci_regs_lpm[OP_ENDPTCTRL]
140 : ci_regs_nolpm[OP_ENDPTCTRL]);
144 static enum ci_revision ci_get_revision(struct ci_hdrc *ci)
146 int ver = hw_read_id_reg(ci, ID_ID, VERSION) >> __ffs(VERSION);
147 enum ci_revision rev = CI_REVISION_UNKNOWN;
150 rev = hw_read_id_reg(ci, ID_ID, REVISION)
152 rev += CI_REVISION_20;
153 } else if (ver == 0x0) {
154 rev = CI_REVISION_1X;
161 * hw_read_intr_enable: returns interrupt enable register
163 * @ci: the controller
165 * This function returns register data
167 u32 hw_read_intr_enable(struct ci_hdrc *ci)
169 return hw_read(ci, OP_USBINTR, ~0);
173 * hw_read_intr_status: returns interrupt status register
175 * @ci: the controller
177 * This function returns register data
179 u32 hw_read_intr_status(struct ci_hdrc *ci)
181 return hw_read(ci, OP_USBSTS, ~0);
185 * hw_port_test_set: writes port test mode (execute without interruption)
188 * This function returns an error code
190 int hw_port_test_set(struct ci_hdrc *ci, u8 mode)
192 const u8 TEST_MODE_MAX = 7;
194 if (mode > TEST_MODE_MAX)
197 hw_write(ci, OP_PORTSC, PORTSC_PTC, mode << __ffs(PORTSC_PTC));
202 * hw_port_test_get: reads port test mode value
204 * @ci: the controller
206 * This function returns port test mode value
208 u8 hw_port_test_get(struct ci_hdrc *ci)
210 return hw_read(ci, OP_PORTSC, PORTSC_PTC) >> __ffs(PORTSC_PTC);
213 static void hw_wait_phy_stable(void)
216 * The phy needs some delay to output the stable status from low
217 * power mode. And for OTGSC, the status inputs are debounced
218 * using a 1 ms time constant, so, delay 2ms for controller to get
219 * the stable status, like vbus and id when the phy leaves low power.
221 usleep_range(2000, 2500);
224 /* The PHY enters/leaves low power mode */
225 static void ci_hdrc_enter_lpm(struct ci_hdrc *ci, bool enable)
227 enum ci_hw_regs reg = ci->hw_bank.lpm ? OP_DEVLC : OP_PORTSC;
228 bool lpm = !!(hw_read(ci, reg, PORTSC_PHCD(ci->hw_bank.lpm)));
231 hw_write(ci, reg, PORTSC_PHCD(ci->hw_bank.lpm),
232 PORTSC_PHCD(ci->hw_bank.lpm));
233 else if (!enable && lpm)
234 hw_write(ci, reg, PORTSC_PHCD(ci->hw_bank.lpm),
238 static int hw_device_init(struct ci_hdrc *ci, void __iomem *base)
242 /* bank is a module variable */
243 ci->hw_bank.abs = base;
245 ci->hw_bank.cap = ci->hw_bank.abs;
246 ci->hw_bank.cap += ci->platdata->capoffset;
247 ci->hw_bank.op = ci->hw_bank.cap + (ioread32(ci->hw_bank.cap) & 0xff);
249 hw_alloc_regmap(ci, false);
250 reg = hw_read(ci, CAP_HCCPARAMS, HCCPARAMS_LEN) >>
251 __ffs(HCCPARAMS_LEN);
252 ci->hw_bank.lpm = reg;
254 hw_alloc_regmap(ci, !!reg);
255 ci->hw_bank.size = ci->hw_bank.op - ci->hw_bank.abs;
256 ci->hw_bank.size += OP_LAST;
257 ci->hw_bank.size /= sizeof(u32);
259 reg = hw_read(ci, CAP_DCCPARAMS, DCCPARAMS_DEN) >>
260 __ffs(DCCPARAMS_DEN);
261 ci->hw_ep_max = reg * 2; /* cache hw ENDPT_MAX */
263 if (ci->hw_ep_max > ENDPT_MAX)
266 ci_hdrc_enter_lpm(ci, false);
268 /* Disable all interrupts bits */
269 hw_write(ci, OP_USBINTR, 0xffffffff, 0);
271 /* Clear all interrupts status bits*/
272 hw_write(ci, OP_USBSTS, 0xffffffff, 0xffffffff);
274 ci->rev = ci_get_revision(ci);
277 "ChipIdea HDRC found, revision: %d, lpm: %d; cap: %p op: %p\n",
278 ci->rev, ci->hw_bank.lpm, ci->hw_bank.cap, ci->hw_bank.op);
280 /* setup lock mode ? */
282 /* ENDPTSETUPSTAT is '0' by default */
284 /* HCSPARAMS.bf.ppc SHOULD BE zero for device */
289 void hw_phymode_configure(struct ci_hdrc *ci)
291 u32 portsc, lpm, sts = 0;
293 switch (ci->platdata->phy_mode) {
294 case USBPHY_INTERFACE_MODE_UTMI:
295 portsc = PORTSC_PTS(PTS_UTMI);
296 lpm = DEVLC_PTS(PTS_UTMI);
298 case USBPHY_INTERFACE_MODE_UTMIW:
299 portsc = PORTSC_PTS(PTS_UTMI) | PORTSC_PTW;
300 lpm = DEVLC_PTS(PTS_UTMI) | DEVLC_PTW;
302 case USBPHY_INTERFACE_MODE_ULPI:
303 portsc = PORTSC_PTS(PTS_ULPI);
304 lpm = DEVLC_PTS(PTS_ULPI);
306 case USBPHY_INTERFACE_MODE_SERIAL:
307 portsc = PORTSC_PTS(PTS_SERIAL);
308 lpm = DEVLC_PTS(PTS_SERIAL);
311 case USBPHY_INTERFACE_MODE_HSIC:
312 portsc = PORTSC_PTS(PTS_HSIC);
313 lpm = DEVLC_PTS(PTS_HSIC);
319 if (ci->hw_bank.lpm) {
320 hw_write(ci, OP_DEVLC, DEVLC_PTS(7) | DEVLC_PTW, lpm);
322 hw_write(ci, OP_DEVLC, DEVLC_STS, DEVLC_STS);
324 hw_write(ci, OP_PORTSC, PORTSC_PTS(7) | PORTSC_PTW, portsc);
326 hw_write(ci, OP_PORTSC, PORTSC_STS, PORTSC_STS);
329 EXPORT_SYMBOL_GPL(hw_phymode_configure);
332 * _ci_usb_phy_init: initialize phy taking in account both phy and usb_phy
334 * @ci: the controller
336 * This function returns an error code if the phy failed to init
338 static int _ci_usb_phy_init(struct ci_hdrc *ci)
343 ret = phy_init(ci->phy);
347 ret = phy_power_on(ci->phy);
353 ret = usb_phy_init(ci->usb_phy);
360 * _ci_usb_phy_exit: deinitialize phy taking in account both phy and usb_phy
362 * @ci: the controller
364 static void ci_usb_phy_exit(struct ci_hdrc *ci)
366 if (ci->platdata->flags & CI_HDRC_OVERRIDE_PHY_CONTROL)
370 phy_power_off(ci->phy);
373 usb_phy_shutdown(ci->usb_phy);
378 * ci_usb_phy_init: initialize phy according to different phy type
379 * @ci: the controller
381 * This function returns an error code if usb_phy_init has failed
383 static int ci_usb_phy_init(struct ci_hdrc *ci)
387 if (ci->platdata->flags & CI_HDRC_OVERRIDE_PHY_CONTROL)
390 switch (ci->platdata->phy_mode) {
391 case USBPHY_INTERFACE_MODE_UTMI:
392 case USBPHY_INTERFACE_MODE_UTMIW:
393 case USBPHY_INTERFACE_MODE_HSIC:
394 ret = _ci_usb_phy_init(ci);
396 hw_wait_phy_stable();
399 hw_phymode_configure(ci);
401 case USBPHY_INTERFACE_MODE_ULPI:
402 case USBPHY_INTERFACE_MODE_SERIAL:
403 hw_phymode_configure(ci);
404 ret = _ci_usb_phy_init(ci);
409 ret = _ci_usb_phy_init(ci);
411 hw_wait_phy_stable();
419 * ci_platform_configure: do controller configure
420 * @ci: the controller
423 void ci_platform_configure(struct ci_hdrc *ci)
425 bool is_device_mode, is_host_mode;
427 is_device_mode = hw_read(ci, OP_USBMODE, USBMODE_CM) == USBMODE_CM_DC;
428 is_host_mode = hw_read(ci, OP_USBMODE, USBMODE_CM) == USBMODE_CM_HC;
430 if (is_device_mode) {
431 phy_set_mode(ci->phy, PHY_MODE_USB_DEVICE);
433 if (ci->platdata->flags & CI_HDRC_DISABLE_DEVICE_STREAMING)
434 hw_write(ci, OP_USBMODE, USBMODE_CI_SDIS,
439 phy_set_mode(ci->phy, PHY_MODE_USB_HOST);
441 if (ci->platdata->flags & CI_HDRC_DISABLE_HOST_STREAMING)
442 hw_write(ci, OP_USBMODE, USBMODE_CI_SDIS,
446 if (ci->platdata->flags & CI_HDRC_FORCE_FULLSPEED) {
448 hw_write(ci, OP_DEVLC, DEVLC_PFSC, DEVLC_PFSC);
450 hw_write(ci, OP_PORTSC, PORTSC_PFSC, PORTSC_PFSC);
453 if (ci->platdata->flags & CI_HDRC_SET_NON_ZERO_TTHA)
454 hw_write(ci, OP_TTCTRL, TTCTRL_TTHA_MASK, TTCTRL_TTHA);
456 hw_write(ci, OP_USBCMD, 0xff0000, ci->platdata->itc_setting << 16);
458 if (ci->platdata->flags & CI_HDRC_OVERRIDE_AHB_BURST)
459 hw_write_id_reg(ci, ID_SBUSCFG, AHBBRST_MASK,
460 ci->platdata->ahb_burst_config);
462 /* override burst size, take effect only when ahb_burst_config is 0 */
463 if (!hw_read_id_reg(ci, ID_SBUSCFG, AHBBRST_MASK)) {
464 if (ci->platdata->flags & CI_HDRC_OVERRIDE_TX_BURST)
465 hw_write(ci, OP_BURSTSIZE, TX_BURST_MASK,
466 ci->platdata->tx_burst_size << __ffs(TX_BURST_MASK));
468 if (ci->platdata->flags & CI_HDRC_OVERRIDE_RX_BURST)
469 hw_write(ci, OP_BURSTSIZE, RX_BURST_MASK,
470 ci->platdata->rx_burst_size);
475 * hw_controller_reset: do controller reset
476 * @ci: the controller
478 * This function returns an error code
480 static int hw_controller_reset(struct ci_hdrc *ci)
484 hw_write(ci, OP_USBCMD, USBCMD_RST, USBCMD_RST);
485 while (hw_read(ci, OP_USBCMD, USBCMD_RST)) {
495 * hw_device_reset: resets chip (execute without interruption)
496 * @ci: the controller
498 * This function returns an error code
500 int hw_device_reset(struct ci_hdrc *ci)
504 /* should flush & stop before reset */
505 hw_write(ci, OP_ENDPTFLUSH, ~0, ~0);
506 hw_write(ci, OP_USBCMD, USBCMD_RS, 0);
508 ret = hw_controller_reset(ci);
510 dev_err(ci->dev, "error resetting controller, ret=%d\n", ret);
514 if (ci->platdata->notify_event) {
515 ret = ci->platdata->notify_event(ci,
516 CI_HDRC_CONTROLLER_RESET_EVENT);
521 /* USBMODE should be configured step by step */
522 hw_write(ci, OP_USBMODE, USBMODE_CM, USBMODE_CM_IDLE);
523 hw_write(ci, OP_USBMODE, USBMODE_CM, USBMODE_CM_DC);
525 hw_write(ci, OP_USBMODE, USBMODE_SLOM, USBMODE_SLOM);
527 if (hw_read(ci, OP_USBMODE, USBMODE_CM) != USBMODE_CM_DC) {
528 pr_err("cannot enter in %s device mode", ci_role(ci)->name);
529 pr_err("lpm = %i", ci->hw_bank.lpm);
533 ci_platform_configure(ci);
538 static irqreturn_t ci_irq(int irq, void *data)
540 struct ci_hdrc *ci = data;
541 irqreturn_t ret = IRQ_NONE;
545 disable_irq_nosync(irq);
546 ci->wakeup_int = true;
547 pm_runtime_get(ci->dev);
552 otgsc = hw_read_otgsc(ci, ~0);
553 if (ci_otg_is_fsm_mode(ci)) {
554 ret = ci_otg_fsm_irq(ci);
555 if (ret == IRQ_HANDLED)
561 * Handle id change interrupt, it indicates device/host function
564 if (ci->is_otg && (otgsc & OTGSC_IDIE) && (otgsc & OTGSC_IDIS)) {
566 /* Clear ID change irq status */
567 hw_write_otgsc(ci, OTGSC_IDIS, OTGSC_IDIS);
568 ci_otg_queue_work(ci);
573 * Handle vbus change interrupt, it indicates device connection
574 * and disconnection events.
576 if (ci->is_otg && (otgsc & OTGSC_BSVIE) && (otgsc & OTGSC_BSVIS)) {
577 ci->b_sess_valid_event = true;
579 hw_write_otgsc(ci, OTGSC_BSVIS, OTGSC_BSVIS);
580 ci_otg_queue_work(ci);
584 /* Handle device/host interrupt */
585 if (ci->role != CI_ROLE_END)
586 ret = ci_role(ci)->irq(ci);
591 static int ci_cable_notifier(struct notifier_block *nb, unsigned long event,
594 struct ci_hdrc_cable *cbl = container_of(nb, struct ci_hdrc_cable, nb);
595 struct ci_hdrc *ci = cbl->ci;
597 cbl->connected = event;
604 static int ci_get_platdata(struct device *dev,
605 struct ci_hdrc_platform_data *platdata)
607 struct extcon_dev *ext_vbus, *ext_id;
608 struct ci_hdrc_cable *cable;
611 if (!platdata->phy_mode)
612 platdata->phy_mode = of_usb_get_phy_mode(dev->of_node);
614 if (!platdata->dr_mode)
615 platdata->dr_mode = usb_get_dr_mode(dev);
617 if (platdata->dr_mode == USB_DR_MODE_UNKNOWN)
618 platdata->dr_mode = USB_DR_MODE_OTG;
620 if (platdata->dr_mode != USB_DR_MODE_PERIPHERAL) {
621 /* Get the vbus regulator */
622 platdata->reg_vbus = devm_regulator_get(dev, "vbus");
623 if (PTR_ERR(platdata->reg_vbus) == -EPROBE_DEFER) {
624 return -EPROBE_DEFER;
625 } else if (PTR_ERR(platdata->reg_vbus) == -ENODEV) {
626 /* no vbus regulator is needed */
627 platdata->reg_vbus = NULL;
628 } else if (IS_ERR(platdata->reg_vbus)) {
629 dev_err(dev, "Getting regulator error: %ld\n",
630 PTR_ERR(platdata->reg_vbus));
631 return PTR_ERR(platdata->reg_vbus);
633 /* Get TPL support */
634 if (!platdata->tpl_support)
635 platdata->tpl_support =
636 of_usb_host_tpl_support(dev->of_node);
639 if (platdata->dr_mode == USB_DR_MODE_OTG) {
640 /* We can support HNP and SRP of OTG 2.0 */
641 platdata->ci_otg_caps.otg_rev = 0x0200;
642 platdata->ci_otg_caps.hnp_support = true;
643 platdata->ci_otg_caps.srp_support = true;
645 /* Update otg capabilities by DT properties */
646 ret = of_usb_update_otg_caps(dev->of_node,
647 &platdata->ci_otg_caps);
652 if (usb_get_maximum_speed(dev) == USB_SPEED_FULL)
653 platdata->flags |= CI_HDRC_FORCE_FULLSPEED;
655 of_property_read_u32(dev->of_node, "phy-clkgate-delay-us",
656 &platdata->phy_clkgate_delay_us);
658 platdata->itc_setting = 1;
660 of_property_read_u32(dev->of_node, "itc-setting",
661 &platdata->itc_setting);
663 ret = of_property_read_u32(dev->of_node, "ahb-burst-config",
664 &platdata->ahb_burst_config);
666 platdata->flags |= CI_HDRC_OVERRIDE_AHB_BURST;
667 } else if (ret != -EINVAL) {
668 dev_err(dev, "failed to get ahb-burst-config\n");
672 ret = of_property_read_u32(dev->of_node, "tx-burst-size-dword",
673 &platdata->tx_burst_size);
675 platdata->flags |= CI_HDRC_OVERRIDE_TX_BURST;
676 } else if (ret != -EINVAL) {
677 dev_err(dev, "failed to get tx-burst-size-dword\n");
681 ret = of_property_read_u32(dev->of_node, "rx-burst-size-dword",
682 &platdata->rx_burst_size);
684 platdata->flags |= CI_HDRC_OVERRIDE_RX_BURST;
685 } else if (ret != -EINVAL) {
686 dev_err(dev, "failed to get rx-burst-size-dword\n");
690 if (of_find_property(dev->of_node, "non-zero-ttctrl-ttha", NULL))
691 platdata->flags |= CI_HDRC_SET_NON_ZERO_TTHA;
693 ext_id = ERR_PTR(-ENODEV);
694 ext_vbus = ERR_PTR(-ENODEV);
695 if (of_property_read_bool(dev->of_node, "extcon")) {
696 /* Each one of them is not mandatory */
697 ext_vbus = extcon_get_edev_by_phandle(dev, 0);
698 if (IS_ERR(ext_vbus) && PTR_ERR(ext_vbus) != -ENODEV)
699 return PTR_ERR(ext_vbus);
701 ext_id = extcon_get_edev_by_phandle(dev, 1);
702 if (IS_ERR(ext_id) && PTR_ERR(ext_id) != -ENODEV)
703 return PTR_ERR(ext_id);
706 cable = &platdata->vbus_extcon;
707 cable->nb.notifier_call = ci_cable_notifier;
708 cable->edev = ext_vbus;
710 if (!IS_ERR(ext_vbus)) {
711 ret = extcon_get_state(cable->edev, EXTCON_USB);
713 cable->connected = true;
715 cable->connected = false;
718 cable = &platdata->id_extcon;
719 cable->nb.notifier_call = ci_cable_notifier;
720 cable->edev = ext_id;
722 if (!IS_ERR(ext_id)) {
723 ret = extcon_get_state(cable->edev, EXTCON_USB_HOST);
725 cable->connected = true;
727 cable->connected = false;
732 static int ci_extcon_register(struct ci_hdrc *ci)
734 struct ci_hdrc_cable *id, *vbus;
737 id = &ci->platdata->id_extcon;
739 if (!IS_ERR(id->edev)) {
740 ret = devm_extcon_register_notifier(ci->dev, id->edev,
741 EXTCON_USB_HOST, &id->nb);
743 dev_err(ci->dev, "register ID failed\n");
748 vbus = &ci->platdata->vbus_extcon;
750 if (!IS_ERR(vbus->edev)) {
751 ret = devm_extcon_register_notifier(ci->dev, vbus->edev,
752 EXTCON_USB, &vbus->nb);
754 dev_err(ci->dev, "register VBUS failed\n");
762 static DEFINE_IDA(ci_ida);
764 struct platform_device *ci_hdrc_add_device(struct device *dev,
765 struct resource *res, int nres,
766 struct ci_hdrc_platform_data *platdata)
768 struct platform_device *pdev;
771 ret = ci_get_platdata(dev, platdata);
775 id = ida_simple_get(&ci_ida, 0, 0, GFP_KERNEL);
779 pdev = platform_device_alloc("ci_hdrc", id);
785 pdev->dev.parent = dev;
786 pdev->dev.dma_mask = dev->dma_mask;
787 pdev->dev.dma_parms = dev->dma_parms;
788 dma_set_coherent_mask(&pdev->dev, dev->coherent_dma_mask);
790 ret = platform_device_add_resources(pdev, res, nres);
794 ret = platform_device_add_data(pdev, platdata, sizeof(*platdata));
798 ret = platform_device_add(pdev);
805 platform_device_put(pdev);
807 ida_simple_remove(&ci_ida, id);
810 EXPORT_SYMBOL_GPL(ci_hdrc_add_device);
812 void ci_hdrc_remove_device(struct platform_device *pdev)
815 platform_device_unregister(pdev);
816 ida_simple_remove(&ci_ida, id);
818 EXPORT_SYMBOL_GPL(ci_hdrc_remove_device);
820 static inline void ci_role_destroy(struct ci_hdrc *ci)
822 ci_hdrc_gadget_destroy(ci);
823 ci_hdrc_host_destroy(ci);
825 ci_hdrc_otg_destroy(ci);
828 static void ci_get_otg_capable(struct ci_hdrc *ci)
830 if (ci->platdata->flags & CI_HDRC_DUAL_ROLE_NOT_OTG)
833 ci->is_otg = (hw_read(ci, CAP_DCCPARAMS,
834 DCCPARAMS_DC | DCCPARAMS_HC)
835 == (DCCPARAMS_DC | DCCPARAMS_HC));
837 dev_dbg(ci->dev, "It is OTG capable controller\n");
838 /* Disable and clear all OTG irq */
839 hw_write_otgsc(ci, OTGSC_INT_EN_BITS | OTGSC_INT_STATUS_BITS,
840 OTGSC_INT_STATUS_BITS);
844 static int ci_hdrc_probe(struct platform_device *pdev)
846 struct device *dev = &pdev->dev;
848 struct resource *res;
851 enum usb_dr_mode dr_mode;
853 if (!dev_get_platdata(dev)) {
854 dev_err(dev, "platform data missing\n");
858 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
859 base = devm_ioremap_resource(dev, res);
861 return PTR_ERR(base);
863 ci = devm_kzalloc(dev, sizeof(*ci), GFP_KERNEL);
867 spin_lock_init(&ci->lock);
869 ci->platdata = dev_get_platdata(dev);
870 ci->imx28_write_fix = !!(ci->platdata->flags &
871 CI_HDRC_IMX28_WRITE_FIX);
872 ci->supports_runtime_pm = !!(ci->platdata->flags &
873 CI_HDRC_SUPPORTS_RUNTIME_PM);
874 platform_set_drvdata(pdev, ci);
876 ret = hw_device_init(ci, base);
878 dev_err(dev, "can't initialize hardware\n");
882 ret = ci_ulpi_init(ci);
886 if (ci->platdata->phy) {
887 ci->phy = ci->platdata->phy;
888 } else if (ci->platdata->usb_phy) {
889 ci->usb_phy = ci->platdata->usb_phy;
891 ci->phy = devm_phy_get(dev->parent, "usb-phy");
892 ci->usb_phy = devm_usb_get_phy(dev->parent, USB_PHY_TYPE_USB2);
894 /* if both generic PHY and USB PHY layers aren't enabled */
895 if (PTR_ERR(ci->phy) == -ENOSYS &&
896 PTR_ERR(ci->usb_phy) == -ENXIO) {
901 if (IS_ERR(ci->phy) && IS_ERR(ci->usb_phy)) {
908 else if (IS_ERR(ci->usb_phy))
912 ret = ci_usb_phy_init(ci);
914 dev_err(dev, "unable to init phy: %d\n", ret);
918 ci->hw_bank.phys = res->start;
920 ci->irq = platform_get_irq(pdev, 0);
922 dev_err(dev, "missing IRQ\n");
927 ci_get_otg_capable(ci);
929 dr_mode = ci->platdata->dr_mode;
930 /* initialize role(s) before the interrupt is requested */
931 if (dr_mode == USB_DR_MODE_OTG || dr_mode == USB_DR_MODE_HOST) {
932 ret = ci_hdrc_host_init(ci);
934 dev_info(dev, "doesn't support host\n");
937 if (dr_mode == USB_DR_MODE_OTG || dr_mode == USB_DR_MODE_PERIPHERAL) {
938 ret = ci_hdrc_gadget_init(ci);
940 dev_info(dev, "doesn't support gadget\n");
943 if (!ci->roles[CI_ROLE_HOST] && !ci->roles[CI_ROLE_GADGET]) {
944 dev_err(dev, "no supported roles\n");
949 if (ci->is_otg && ci->roles[CI_ROLE_GADGET]) {
950 ret = ci_hdrc_otg_init(ci);
952 dev_err(dev, "init otg fails, ret = %d\n", ret);
957 if (ci->roles[CI_ROLE_HOST] && ci->roles[CI_ROLE_GADGET]) {
959 ci->role = ci_otg_role(ci);
960 /* Enable ID change irq */
961 hw_write_otgsc(ci, OTGSC_IDIE, OTGSC_IDIE);
964 * If the controller is not OTG capable, but support
965 * role switch, the defalt role is gadget, and the
966 * user can switch it through debugfs.
968 ci->role = CI_ROLE_GADGET;
971 ci->role = ci->roles[CI_ROLE_HOST]
976 if (!ci_otg_is_fsm_mode(ci)) {
977 /* only update vbus status for peripheral */
978 if (ci->role == CI_ROLE_GADGET)
979 ci_handle_vbus_change(ci);
981 ret = ci_role_start(ci, ci->role);
983 dev_err(dev, "can't start %s role\n",
989 ret = devm_request_irq(dev, ci->irq, ci_irq, IRQF_SHARED,
990 ci->platdata->name, ci);
994 ret = ci_extcon_register(ci);
998 if (ci->supports_runtime_pm) {
999 pm_runtime_set_active(&pdev->dev);
1000 pm_runtime_enable(&pdev->dev);
1001 pm_runtime_set_autosuspend_delay(&pdev->dev, 2000);
1002 pm_runtime_mark_last_busy(ci->dev);
1003 pm_runtime_use_autosuspend(&pdev->dev);
1006 if (ci_otg_is_fsm_mode(ci))
1007 ci_hdrc_otg_fsm_start(ci);
1009 device_set_wakeup_capable(&pdev->dev, true);
1011 ret = dbg_create_files(ci);
1016 ci_role_destroy(ci);
1018 ci_usb_phy_exit(ci);
1025 static int ci_hdrc_remove(struct platform_device *pdev)
1027 struct ci_hdrc *ci = platform_get_drvdata(pdev);
1029 if (ci->supports_runtime_pm) {
1030 pm_runtime_get_sync(&pdev->dev);
1031 pm_runtime_disable(&pdev->dev);
1032 pm_runtime_put_noidle(&pdev->dev);
1035 dbg_remove_files(ci);
1036 ci_role_destroy(ci);
1037 ci_hdrc_enter_lpm(ci, true);
1038 ci_usb_phy_exit(ci);
1045 /* Prepare wakeup by SRP before suspend */
1046 static void ci_otg_fsm_suspend_for_srp(struct ci_hdrc *ci)
1048 if ((ci->fsm.otg->state == OTG_STATE_A_IDLE) &&
1049 !hw_read_otgsc(ci, OTGSC_ID)) {
1050 hw_write(ci, OP_PORTSC, PORTSC_W1C_BITS | PORTSC_PP,
1052 hw_write(ci, OP_PORTSC, PORTSC_W1C_BITS | PORTSC_WKCN,
1057 /* Handle SRP when wakeup by data pulse */
1058 static void ci_otg_fsm_wakeup_by_srp(struct ci_hdrc *ci)
1060 if ((ci->fsm.otg->state == OTG_STATE_A_IDLE) &&
1061 (ci->fsm.a_bus_drop == 1) && (ci->fsm.a_bus_req == 0)) {
1062 if (!hw_read_otgsc(ci, OTGSC_ID)) {
1063 ci->fsm.a_srp_det = 1;
1064 ci->fsm.a_bus_drop = 0;
1068 ci_otg_queue_work(ci);
1072 static void ci_controller_suspend(struct ci_hdrc *ci)
1074 disable_irq(ci->irq);
1075 ci_hdrc_enter_lpm(ci, true);
1076 if (ci->platdata->phy_clkgate_delay_us)
1077 usleep_range(ci->platdata->phy_clkgate_delay_us,
1078 ci->platdata->phy_clkgate_delay_us + 50);
1079 usb_phy_set_suspend(ci->usb_phy, 1);
1081 enable_irq(ci->irq);
1084 static int ci_controller_resume(struct device *dev)
1086 struct ci_hdrc *ci = dev_get_drvdata(dev);
1089 dev_dbg(dev, "at %s\n", __func__);
1096 ci_hdrc_enter_lpm(ci, false);
1098 ret = ci_ulpi_resume(ci);
1103 usb_phy_set_suspend(ci->usb_phy, 0);
1104 usb_phy_set_wakeup(ci->usb_phy, false);
1105 hw_wait_phy_stable();
1109 if (ci->wakeup_int) {
1110 ci->wakeup_int = false;
1111 pm_runtime_mark_last_busy(ci->dev);
1112 pm_runtime_put_autosuspend(ci->dev);
1113 enable_irq(ci->irq);
1114 if (ci_otg_is_fsm_mode(ci))
1115 ci_otg_fsm_wakeup_by_srp(ci);
1121 #ifdef CONFIG_PM_SLEEP
1122 static int ci_suspend(struct device *dev)
1124 struct ci_hdrc *ci = dev_get_drvdata(dev);
1127 flush_workqueue(ci->wq);
1129 * Controller needs to be active during suspend, otherwise the core
1130 * may run resume when the parent is at suspend if other driver's
1131 * suspend fails, it occurs before parent's suspend has not started,
1132 * but the core suspend has finished.
1135 pm_runtime_resume(dev);
1142 if (device_may_wakeup(dev)) {
1143 if (ci_otg_is_fsm_mode(ci))
1144 ci_otg_fsm_suspend_for_srp(ci);
1146 usb_phy_set_wakeup(ci->usb_phy, true);
1147 enable_irq_wake(ci->irq);
1150 ci_controller_suspend(ci);
1155 static int ci_resume(struct device *dev)
1157 struct ci_hdrc *ci = dev_get_drvdata(dev);
1160 if (device_may_wakeup(dev))
1161 disable_irq_wake(ci->irq);
1163 ret = ci_controller_resume(dev);
1167 if (ci->supports_runtime_pm) {
1168 pm_runtime_disable(dev);
1169 pm_runtime_set_active(dev);
1170 pm_runtime_enable(dev);
1175 #endif /* CONFIG_PM_SLEEP */
1177 static int ci_runtime_suspend(struct device *dev)
1179 struct ci_hdrc *ci = dev_get_drvdata(dev);
1181 dev_dbg(dev, "at %s\n", __func__);
1188 if (ci_otg_is_fsm_mode(ci))
1189 ci_otg_fsm_suspend_for_srp(ci);
1191 usb_phy_set_wakeup(ci->usb_phy, true);
1192 ci_controller_suspend(ci);
1197 static int ci_runtime_resume(struct device *dev)
1199 return ci_controller_resume(dev);
1202 #endif /* CONFIG_PM */
1203 static const struct dev_pm_ops ci_pm_ops = {
1204 SET_SYSTEM_SLEEP_PM_OPS(ci_suspend, ci_resume)
1205 SET_RUNTIME_PM_OPS(ci_runtime_suspend, ci_runtime_resume, NULL)
1208 static struct platform_driver ci_hdrc_driver = {
1209 .probe = ci_hdrc_probe,
1210 .remove = ci_hdrc_remove,
1217 static int __init ci_hdrc_platform_register(void)
1219 ci_hdrc_host_driver_init();
1220 return platform_driver_register(&ci_hdrc_driver);
1222 module_init(ci_hdrc_platform_register);
1224 static void __exit ci_hdrc_platform_unregister(void)
1226 platform_driver_unregister(&ci_hdrc_driver);
1228 module_exit(ci_hdrc_platform_unregister);
1230 MODULE_ALIAS("platform:ci_hdrc");
1231 MODULE_LICENSE("GPL v2");
1233 MODULE_DESCRIPTION("ChipIdea HDRC Driver");