GNU Linux-libre 4.14.266-gnu1
[releases.git] / drivers / usb / chipidea / core.c
1 /*
2  * core.c - ChipIdea USB IP core family device controller
3  *
4  * Copyright (C) 2008 Chipidea - MIPS Technologies, Inc. All rights reserved.
5  *
6  * Author: David Lopo
7  *
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.
11  */
12
13 /*
14  * Description: ChipIdea USB IP core family device controller
15  *
16  * This driver is composed of several blocks:
17  * - HW:     hardware interface
18  * - DBG:    debug facilities (optional)
19  * - UTIL:   utilities
20  * - ISR:    interrupts handling
21  * - ENDPT:  endpoint operations (Gadget API)
22  * - GADGET: gadget operations (Gadget API)
23  * - BUS:    bus glue code, bus abstraction layer
24  *
25  * Compile Options
26  * - STALL_IN:  non-empty bulk-in pipes cannot be halted
27  *              if defined mass storage compliance succeeds but with warnings
28  *              => case 4: Hi >  Dn
29  *              => case 5: Hi >  Di
30  *              => case 8: Hi <> Do
31  *              if undefined usbtest 13 fails
32  * - TRACE:     enable function tracing (depends on DEBUG)
33  *
34  * Main Features
35  * - Chapter 9 & Mass Storage Compliance with Gadget File Storage
36  * - Chapter 9 Compliance with Gadget Zero (STALL_IN undefined)
37  * - Normal & LPM support
38  *
39  * USBTEST Report
40  * - OK: 0-12, 13 (STALL_IN defined) & 14
41  * - Not Supported: 15 & 16 (ISO)
42  *
43  * TODO List
44  * - Suspend & Remote Wakeup
45  */
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>
55 #include <linux/io.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>
64 #include <linux/of.h>
65 #include <linux/regulator/consumer.h>
66 #include <linux/usb/ehci_def.h>
67
68 #include "ci.h"
69 #include "udc.h"
70 #include "bits.h"
71 #include "host.h"
72 #include "otg.h"
73 #include "otg_fsm.h"
74
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,
81         [OP_USBCMD]             = 0x00U,
82         [OP_USBSTS]             = 0x04U,
83         [OP_USBINTR]            = 0x08U,
84         [OP_DEVICEADDR]         = 0x14U,
85         [OP_ENDPTLISTADDR]      = 0x18U,
86         [OP_TTCTRL]             = 0x1CU,
87         [OP_BURSTSIZE]          = 0x20U,
88         [OP_ULPI_VIEWPORT]      = 0x30U,
89         [OP_PORTSC]             = 0x44U,
90         [OP_DEVLC]              = 0x84U,
91         [OP_OTGSC]              = 0x64U,
92         [OP_USBMODE]            = 0x68U,
93         [OP_ENDPTSETUPSTAT]     = 0x6CU,
94         [OP_ENDPTPRIME]         = 0x70U,
95         [OP_ENDPTFLUSH]         = 0x74U,
96         [OP_ENDPTSTAT]          = 0x78U,
97         [OP_ENDPTCOMPLETE]      = 0x7CU,
98         [OP_ENDPTCTRL]          = 0x80U,
99 };
100
101 static const u8 ci_regs_lpm[] = {
102         [CAP_CAPLENGTH]         = 0x00U,
103         [CAP_HCCPARAMS]         = 0x08U,
104         [CAP_DCCPARAMS]         = 0x24U,
105         [CAP_TESTMODE]          = 0xFCU,
106         [OP_USBCMD]             = 0x00U,
107         [OP_USBSTS]             = 0x04U,
108         [OP_USBINTR]            = 0x08U,
109         [OP_DEVICEADDR]         = 0x14U,
110         [OP_ENDPTLISTADDR]      = 0x18U,
111         [OP_TTCTRL]             = 0x1CU,
112         [OP_BURSTSIZE]          = 0x20U,
113         [OP_ULPI_VIEWPORT]      = 0x30U,
114         [OP_PORTSC]             = 0x44U,
115         [OP_DEVLC]              = 0x84U,
116         [OP_OTGSC]              = 0xC4U,
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,
124 };
125
126 static void hw_alloc_regmap(struct ci_hdrc *ci, bool is_lpm)
127 {
128         int i;
129
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]);
134
135         for (; i <= OP_LAST; i++)
136                 ci->hw_bank.regmap[i] = ci->hw_bank.op +
137                         4 * (i - OP_ENDPTCTRL) +
138                         (is_lpm
139                          ? ci_regs_lpm[OP_ENDPTCTRL]
140                          : ci_regs_nolpm[OP_ENDPTCTRL]);
141
142 }
143
144 static enum ci_revision ci_get_revision(struct ci_hdrc *ci)
145 {
146         int ver = hw_read_id_reg(ci, ID_ID, VERSION) >> __ffs(VERSION);
147         enum ci_revision rev = CI_REVISION_UNKNOWN;
148
149         if (ver == 0x2) {
150                 rev = hw_read_id_reg(ci, ID_ID, REVISION)
151                         >> __ffs(REVISION);
152                 rev += CI_REVISION_20;
153         } else if (ver == 0x0) {
154                 rev = CI_REVISION_1X;
155         }
156
157         return rev;
158 }
159
160 /**
161  * hw_read_intr_enable: returns interrupt enable register
162  *
163  * @ci: the controller
164  *
165  * This function returns register data
166  */
167 u32 hw_read_intr_enable(struct ci_hdrc *ci)
168 {
169         return hw_read(ci, OP_USBINTR, ~0);
170 }
171
172 /**
173  * hw_read_intr_status: returns interrupt status register
174  *
175  * @ci: the controller
176  *
177  * This function returns register data
178  */
179 u32 hw_read_intr_status(struct ci_hdrc *ci)
180 {
181         return hw_read(ci, OP_USBSTS, ~0);
182 }
183
184 /**
185  * hw_port_test_set: writes port test mode (execute without interruption)
186  * @mode: new value
187  *
188  * This function returns an error code
189  */
190 int hw_port_test_set(struct ci_hdrc *ci, u8 mode)
191 {
192         const u8 TEST_MODE_MAX = 7;
193
194         if (mode > TEST_MODE_MAX)
195                 return -EINVAL;
196
197         hw_write(ci, OP_PORTSC, PORTSC_PTC, mode << __ffs(PORTSC_PTC));
198         return 0;
199 }
200
201 /**
202  * hw_port_test_get: reads port test mode value
203  *
204  * @ci: the controller
205  *
206  * This function returns port test mode value
207  */
208 u8 hw_port_test_get(struct ci_hdrc *ci)
209 {
210         return hw_read(ci, OP_PORTSC, PORTSC_PTC) >> __ffs(PORTSC_PTC);
211 }
212
213 static void hw_wait_phy_stable(void)
214 {
215         /*
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.
220          */
221         usleep_range(2000, 2500);
222 }
223
224 /* The PHY enters/leaves low power mode */
225 static void ci_hdrc_enter_lpm(struct ci_hdrc *ci, bool enable)
226 {
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)));
229
230         if (enable && !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),
235                                 0);
236 }
237
238 static int hw_device_init(struct ci_hdrc *ci, void __iomem *base)
239 {
240         u32 reg;
241
242         /* bank is a module variable */
243         ci->hw_bank.abs = base;
244
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);
248
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;
253         if (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);
258
259         reg = hw_read(ci, CAP_DCCPARAMS, DCCPARAMS_DEN) >>
260                 __ffs(DCCPARAMS_DEN);
261         ci->hw_ep_max = reg * 2;   /* cache hw ENDPT_MAX */
262
263         if (ci->hw_ep_max > ENDPT_MAX)
264                 return -ENODEV;
265
266         ci_hdrc_enter_lpm(ci, false);
267
268         /* Disable all interrupts bits */
269         hw_write(ci, OP_USBINTR, 0xffffffff, 0);
270
271         /* Clear all interrupts status bits*/
272         hw_write(ci, OP_USBSTS, 0xffffffff, 0xffffffff);
273
274         ci->rev = ci_get_revision(ci);
275
276         dev_dbg(ci->dev,
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);
279
280         /* setup lock mode ? */
281
282         /* ENDPTSETUPSTAT is '0' by default */
283
284         /* HCSPARAMS.bf.ppc SHOULD BE zero for device */
285
286         return 0;
287 }
288
289 void hw_phymode_configure(struct ci_hdrc *ci)
290 {
291         u32 portsc, lpm, sts = 0;
292
293         switch (ci->platdata->phy_mode) {
294         case USBPHY_INTERFACE_MODE_UTMI:
295                 portsc = PORTSC_PTS(PTS_UTMI);
296                 lpm = DEVLC_PTS(PTS_UTMI);
297                 break;
298         case USBPHY_INTERFACE_MODE_UTMIW:
299                 portsc = PORTSC_PTS(PTS_UTMI) | PORTSC_PTW;
300                 lpm = DEVLC_PTS(PTS_UTMI) | DEVLC_PTW;
301                 break;
302         case USBPHY_INTERFACE_MODE_ULPI:
303                 portsc = PORTSC_PTS(PTS_ULPI);
304                 lpm = DEVLC_PTS(PTS_ULPI);
305                 break;
306         case USBPHY_INTERFACE_MODE_SERIAL:
307                 portsc = PORTSC_PTS(PTS_SERIAL);
308                 lpm = DEVLC_PTS(PTS_SERIAL);
309                 sts = 1;
310                 break;
311         case USBPHY_INTERFACE_MODE_HSIC:
312                 portsc = PORTSC_PTS(PTS_HSIC);
313                 lpm = DEVLC_PTS(PTS_HSIC);
314                 break;
315         default:
316                 return;
317         }
318
319         if (ci->hw_bank.lpm) {
320                 hw_write(ci, OP_DEVLC, DEVLC_PTS(7) | DEVLC_PTW, lpm);
321                 if (sts)
322                         hw_write(ci, OP_DEVLC, DEVLC_STS, DEVLC_STS);
323         } else {
324                 hw_write(ci, OP_PORTSC, PORTSC_PTS(7) | PORTSC_PTW, portsc);
325                 if (sts)
326                         hw_write(ci, OP_PORTSC, PORTSC_STS, PORTSC_STS);
327         }
328 }
329 EXPORT_SYMBOL_GPL(hw_phymode_configure);
330
331 /**
332  * _ci_usb_phy_init: initialize phy taking in account both phy and usb_phy
333  * interfaces
334  * @ci: the controller
335  *
336  * This function returns an error code if the phy failed to init
337  */
338 static int _ci_usb_phy_init(struct ci_hdrc *ci)
339 {
340         int ret;
341
342         if (ci->phy) {
343                 ret = phy_init(ci->phy);
344                 if (ret)
345                         return ret;
346
347                 ret = phy_power_on(ci->phy);
348                 if (ret) {
349                         phy_exit(ci->phy);
350                         return ret;
351                 }
352         } else {
353                 ret = usb_phy_init(ci->usb_phy);
354         }
355
356         return ret;
357 }
358
359 /**
360  * _ci_usb_phy_exit: deinitialize phy taking in account both phy and usb_phy
361  * interfaces
362  * @ci: the controller
363  */
364 static void ci_usb_phy_exit(struct ci_hdrc *ci)
365 {
366         if (ci->platdata->flags & CI_HDRC_OVERRIDE_PHY_CONTROL)
367                 return;
368
369         if (ci->phy) {
370                 phy_power_off(ci->phy);
371                 phy_exit(ci->phy);
372         } else {
373                 usb_phy_shutdown(ci->usb_phy);
374         }
375 }
376
377 /**
378  * ci_usb_phy_init: initialize phy according to different phy type
379  * @ci: the controller
380  *
381  * This function returns an error code if usb_phy_init has failed
382  */
383 static int ci_usb_phy_init(struct ci_hdrc *ci)
384 {
385         int ret;
386
387         if (ci->platdata->flags & CI_HDRC_OVERRIDE_PHY_CONTROL)
388                 return 0;
389
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);
395                 if (!ret)
396                         hw_wait_phy_stable();
397                 else
398                         return ret;
399                 hw_phymode_configure(ci);
400                 break;
401         case USBPHY_INTERFACE_MODE_ULPI:
402         case USBPHY_INTERFACE_MODE_SERIAL:
403                 hw_phymode_configure(ci);
404                 ret = _ci_usb_phy_init(ci);
405                 if (ret)
406                         return ret;
407                 break;
408         default:
409                 ret = _ci_usb_phy_init(ci);
410                 if (!ret)
411                         hw_wait_phy_stable();
412         }
413
414         return ret;
415 }
416
417
418 /**
419  * ci_platform_configure: do controller configure
420  * @ci: the controller
421  *
422  */
423 void ci_platform_configure(struct ci_hdrc *ci)
424 {
425         bool is_device_mode, is_host_mode;
426
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;
429
430         if (is_device_mode) {
431                 phy_set_mode(ci->phy, PHY_MODE_USB_DEVICE);
432
433                 if (ci->platdata->flags & CI_HDRC_DISABLE_DEVICE_STREAMING)
434                         hw_write(ci, OP_USBMODE, USBMODE_CI_SDIS,
435                                  USBMODE_CI_SDIS);
436         }
437
438         if (is_host_mode) {
439                 phy_set_mode(ci->phy, PHY_MODE_USB_HOST);
440
441                 if (ci->platdata->flags & CI_HDRC_DISABLE_HOST_STREAMING)
442                         hw_write(ci, OP_USBMODE, USBMODE_CI_SDIS,
443                                  USBMODE_CI_SDIS);
444         }
445
446         if (ci->platdata->flags & CI_HDRC_FORCE_FULLSPEED) {
447                 if (ci->hw_bank.lpm)
448                         hw_write(ci, OP_DEVLC, DEVLC_PFSC, DEVLC_PFSC);
449                 else
450                         hw_write(ci, OP_PORTSC, PORTSC_PFSC, PORTSC_PFSC);
451         }
452
453         if (ci->platdata->flags & CI_HDRC_SET_NON_ZERO_TTHA)
454                 hw_write(ci, OP_TTCTRL, TTCTRL_TTHA_MASK, TTCTRL_TTHA);
455
456         hw_write(ci, OP_USBCMD, 0xff0000, ci->platdata->itc_setting << 16);
457
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);
461
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));
467
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);
471         }
472 }
473
474 /**
475  * hw_controller_reset: do controller reset
476  * @ci: the controller
477   *
478  * This function returns an error code
479  */
480 static int hw_controller_reset(struct ci_hdrc *ci)
481 {
482         int count = 0;
483
484         hw_write(ci, OP_USBCMD, USBCMD_RST, USBCMD_RST);
485         while (hw_read(ci, OP_USBCMD, USBCMD_RST)) {
486                 udelay(10);
487                 if (count++ > 1000)
488                         return -ETIMEDOUT;
489         }
490
491         return 0;
492 }
493
494 /**
495  * hw_device_reset: resets chip (execute without interruption)
496  * @ci: the controller
497  *
498  * This function returns an error code
499  */
500 int hw_device_reset(struct ci_hdrc *ci)
501 {
502         int ret;
503
504         /* should flush & stop before reset */
505         hw_write(ci, OP_ENDPTFLUSH, ~0, ~0);
506         hw_write(ci, OP_USBCMD, USBCMD_RS, 0);
507
508         ret = hw_controller_reset(ci);
509         if (ret) {
510                 dev_err(ci->dev, "error resetting controller, ret=%d\n", ret);
511                 return ret;
512         }
513
514         if (ci->platdata->notify_event) {
515                 ret = ci->platdata->notify_event(ci,
516                         CI_HDRC_CONTROLLER_RESET_EVENT);
517                 if (ret)
518                         return ret;
519         }
520
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);
524         /* HW >= 2.3 */
525         hw_write(ci, OP_USBMODE, USBMODE_SLOM, USBMODE_SLOM);
526
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);
530                 return -ENODEV;
531         }
532
533         ci_platform_configure(ci);
534
535         return 0;
536 }
537
538 static irqreturn_t ci_irq_handler(int irq, void *data)
539 {
540         struct ci_hdrc *ci = data;
541         irqreturn_t ret = IRQ_NONE;
542         u32 otgsc = 0;
543
544         if (ci->in_lpm) {
545                 disable_irq_nosync(irq);
546                 ci->wakeup_int = true;
547                 pm_runtime_get(ci->dev);
548                 return IRQ_HANDLED;
549         }
550
551         if (ci->is_otg) {
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)
556                                 return ret;
557                 }
558         }
559
560         /*
561          * Handle id change interrupt, it indicates device/host function
562          * switch.
563          */
564         if (ci->is_otg && (otgsc & OTGSC_IDIE) && (otgsc & OTGSC_IDIS)) {
565                 ci->id_event = true;
566                 /* Clear ID change irq status */
567                 hw_write_otgsc(ci, OTGSC_IDIS, OTGSC_IDIS);
568                 ci_otg_queue_work(ci);
569                 return IRQ_HANDLED;
570         }
571
572         /*
573          * Handle vbus change interrupt, it indicates device connection
574          * and disconnection events.
575          */
576         if (ci->is_otg && (otgsc & OTGSC_BSVIE) && (otgsc & OTGSC_BSVIS)) {
577                 ci->b_sess_valid_event = true;
578                 /* Clear BSV irq */
579                 hw_write_otgsc(ci, OTGSC_BSVIS, OTGSC_BSVIS);
580                 ci_otg_queue_work(ci);
581                 return IRQ_HANDLED;
582         }
583
584         /* Handle device/host interrupt */
585         if (ci->role != CI_ROLE_END)
586                 ret = ci_role(ci)->irq(ci);
587
588         return ret;
589 }
590
591 static void ci_irq(struct ci_hdrc *ci)
592 {
593         unsigned long flags;
594
595         local_irq_save(flags);
596         ci_irq_handler(ci->irq, ci);
597         local_irq_restore(flags);
598 }
599
600 static int ci_cable_notifier(struct notifier_block *nb, unsigned long event,
601                              void *ptr)
602 {
603         struct ci_hdrc_cable *cbl = container_of(nb, struct ci_hdrc_cable, nb);
604         struct ci_hdrc *ci = cbl->ci;
605
606         cbl->connected = event;
607         cbl->changed = true;
608
609         ci_irq(ci);
610         return NOTIFY_DONE;
611 }
612
613 static int ci_get_platdata(struct device *dev,
614                 struct ci_hdrc_platform_data *platdata)
615 {
616         struct extcon_dev *ext_vbus, *ext_id;
617         struct ci_hdrc_cable *cable;
618         int ret;
619
620         if (!platdata->phy_mode)
621                 platdata->phy_mode = of_usb_get_phy_mode(dev->of_node);
622
623         if (!platdata->dr_mode)
624                 platdata->dr_mode = usb_get_dr_mode(dev);
625
626         if (platdata->dr_mode == USB_DR_MODE_UNKNOWN)
627                 platdata->dr_mode = USB_DR_MODE_OTG;
628
629         if (platdata->dr_mode != USB_DR_MODE_PERIPHERAL) {
630                 /* Get the vbus regulator */
631                 platdata->reg_vbus = devm_regulator_get(dev, "vbus");
632                 if (PTR_ERR(platdata->reg_vbus) == -EPROBE_DEFER) {
633                         return -EPROBE_DEFER;
634                 } else if (PTR_ERR(platdata->reg_vbus) == -ENODEV) {
635                         /* no vbus regulator is needed */
636                         platdata->reg_vbus = NULL;
637                 } else if (IS_ERR(platdata->reg_vbus)) {
638                         dev_err(dev, "Getting regulator error: %ld\n",
639                                 PTR_ERR(platdata->reg_vbus));
640                         return PTR_ERR(platdata->reg_vbus);
641                 }
642                 /* Get TPL support */
643                 if (!platdata->tpl_support)
644                         platdata->tpl_support =
645                                 of_usb_host_tpl_support(dev->of_node);
646         }
647
648         if (platdata->dr_mode == USB_DR_MODE_OTG) {
649                 /* We can support HNP and SRP of OTG 2.0 */
650                 platdata->ci_otg_caps.otg_rev = 0x0200;
651                 platdata->ci_otg_caps.hnp_support = true;
652                 platdata->ci_otg_caps.srp_support = true;
653
654                 /* Update otg capabilities by DT properties */
655                 ret = of_usb_update_otg_caps(dev->of_node,
656                                         &platdata->ci_otg_caps);
657                 if (ret)
658                         return ret;
659         }
660
661         if (usb_get_maximum_speed(dev) == USB_SPEED_FULL)
662                 platdata->flags |= CI_HDRC_FORCE_FULLSPEED;
663
664         of_property_read_u32(dev->of_node, "phy-clkgate-delay-us",
665                                      &platdata->phy_clkgate_delay_us);
666
667         platdata->itc_setting = 1;
668
669         of_property_read_u32(dev->of_node, "itc-setting",
670                                         &platdata->itc_setting);
671
672         ret = of_property_read_u32(dev->of_node, "ahb-burst-config",
673                                 &platdata->ahb_burst_config);
674         if (!ret) {
675                 platdata->flags |= CI_HDRC_OVERRIDE_AHB_BURST;
676         } else if (ret != -EINVAL) {
677                 dev_err(dev, "failed to get ahb-burst-config\n");
678                 return ret;
679         }
680
681         ret = of_property_read_u32(dev->of_node, "tx-burst-size-dword",
682                                 &platdata->tx_burst_size);
683         if (!ret) {
684                 platdata->flags |= CI_HDRC_OVERRIDE_TX_BURST;
685         } else if (ret != -EINVAL) {
686                 dev_err(dev, "failed to get tx-burst-size-dword\n");
687                 return ret;
688         }
689
690         ret = of_property_read_u32(dev->of_node, "rx-burst-size-dword",
691                                 &platdata->rx_burst_size);
692         if (!ret) {
693                 platdata->flags |= CI_HDRC_OVERRIDE_RX_BURST;
694         } else if (ret != -EINVAL) {
695                 dev_err(dev, "failed to get rx-burst-size-dword\n");
696                 return ret;
697         }
698
699         if (of_find_property(dev->of_node, "non-zero-ttctrl-ttha", NULL))
700                 platdata->flags |= CI_HDRC_SET_NON_ZERO_TTHA;
701
702         ext_id = ERR_PTR(-ENODEV);
703         ext_vbus = ERR_PTR(-ENODEV);
704         if (of_property_read_bool(dev->of_node, "extcon")) {
705                 /* Each one of them is not mandatory */
706                 ext_vbus = extcon_get_edev_by_phandle(dev, 0);
707                 if (IS_ERR(ext_vbus) && PTR_ERR(ext_vbus) != -ENODEV)
708                         return PTR_ERR(ext_vbus);
709
710                 ext_id = extcon_get_edev_by_phandle(dev, 1);
711                 if (IS_ERR(ext_id) && PTR_ERR(ext_id) != -ENODEV)
712                         return PTR_ERR(ext_id);
713         }
714
715         cable = &platdata->vbus_extcon;
716         cable->nb.notifier_call = ci_cable_notifier;
717         cable->edev = ext_vbus;
718
719         if (!IS_ERR(ext_vbus)) {
720                 ret = extcon_get_state(cable->edev, EXTCON_USB);
721                 if (ret)
722                         cable->connected = true;
723                 else
724                         cable->connected = false;
725         }
726
727         cable = &platdata->id_extcon;
728         cable->nb.notifier_call = ci_cable_notifier;
729         cable->edev = ext_id;
730
731         if (!IS_ERR(ext_id)) {
732                 ret = extcon_get_state(cable->edev, EXTCON_USB_HOST);
733                 if (ret)
734                         cable->connected = true;
735                 else
736                         cable->connected = false;
737         }
738         return 0;
739 }
740
741 static int ci_extcon_register(struct ci_hdrc *ci)
742 {
743         struct ci_hdrc_cable *id, *vbus;
744         int ret;
745
746         id = &ci->platdata->id_extcon;
747         id->ci = ci;
748         if (!IS_ERR_OR_NULL(id->edev)) {
749                 ret = devm_extcon_register_notifier(ci->dev, id->edev,
750                                                 EXTCON_USB_HOST, &id->nb);
751                 if (ret < 0) {
752                         dev_err(ci->dev, "register ID failed\n");
753                         return ret;
754                 }
755         }
756
757         vbus = &ci->platdata->vbus_extcon;
758         vbus->ci = ci;
759         if (!IS_ERR_OR_NULL(vbus->edev)) {
760                 ret = devm_extcon_register_notifier(ci->dev, vbus->edev,
761                                                 EXTCON_USB, &vbus->nb);
762                 if (ret < 0) {
763                         dev_err(ci->dev, "register VBUS failed\n");
764                         return ret;
765                 }
766         }
767
768         return 0;
769 }
770
771 static DEFINE_IDA(ci_ida);
772
773 struct platform_device *ci_hdrc_add_device(struct device *dev,
774                         struct resource *res, int nres,
775                         struct ci_hdrc_platform_data *platdata)
776 {
777         struct platform_device *pdev;
778         int id, ret;
779
780         ret = ci_get_platdata(dev, platdata);
781         if (ret)
782                 return ERR_PTR(ret);
783
784         id = ida_simple_get(&ci_ida, 0, 0, GFP_KERNEL);
785         if (id < 0)
786                 return ERR_PTR(id);
787
788         pdev = platform_device_alloc("ci_hdrc", id);
789         if (!pdev) {
790                 ret = -ENOMEM;
791                 goto put_id;
792         }
793
794         pdev->dev.parent = dev;
795
796         ret = platform_device_add_resources(pdev, res, nres);
797         if (ret)
798                 goto err;
799
800         ret = platform_device_add_data(pdev, platdata, sizeof(*platdata));
801         if (ret)
802                 goto err;
803
804         ret = platform_device_add(pdev);
805         if (ret)
806                 goto err;
807
808         return pdev;
809
810 err:
811         platform_device_put(pdev);
812 put_id:
813         ida_simple_remove(&ci_ida, id);
814         return ERR_PTR(ret);
815 }
816 EXPORT_SYMBOL_GPL(ci_hdrc_add_device);
817
818 void ci_hdrc_remove_device(struct platform_device *pdev)
819 {
820         int id = pdev->id;
821         platform_device_unregister(pdev);
822         ida_simple_remove(&ci_ida, id);
823 }
824 EXPORT_SYMBOL_GPL(ci_hdrc_remove_device);
825
826 static inline void ci_role_destroy(struct ci_hdrc *ci)
827 {
828         ci_hdrc_gadget_destroy(ci);
829         ci_hdrc_host_destroy(ci);
830         if (ci->is_otg && ci->roles[CI_ROLE_GADGET])
831                 ci_hdrc_otg_destroy(ci);
832 }
833
834 static void ci_get_otg_capable(struct ci_hdrc *ci)
835 {
836         if (ci->platdata->flags & CI_HDRC_DUAL_ROLE_NOT_OTG)
837                 ci->is_otg = false;
838         else
839                 ci->is_otg = (hw_read(ci, CAP_DCCPARAMS,
840                                 DCCPARAMS_DC | DCCPARAMS_HC)
841                                         == (DCCPARAMS_DC | DCCPARAMS_HC));
842         if (ci->is_otg) {
843                 dev_dbg(ci->dev, "It is OTG capable controller\n");
844                 /* Disable and clear all OTG irq */
845                 hw_write_otgsc(ci, OTGSC_INT_EN_BITS | OTGSC_INT_STATUS_BITS,
846                                                         OTGSC_INT_STATUS_BITS);
847         }
848 }
849
850 static ssize_t ci_role_show(struct device *dev, struct device_attribute *attr,
851                           char *buf)
852 {
853         struct ci_hdrc *ci = dev_get_drvdata(dev);
854
855         if (ci->role != CI_ROLE_END)
856                 return sprintf(buf, "%s\n", ci_role(ci)->name);
857
858         return 0;
859 }
860
861 static ssize_t ci_role_store(struct device *dev,
862                 struct device_attribute *attr, const char *buf, size_t n)
863 {
864         struct ci_hdrc *ci = dev_get_drvdata(dev);
865         enum ci_role role;
866         int ret;
867
868         if (!(ci->roles[CI_ROLE_HOST] && ci->roles[CI_ROLE_GADGET])) {
869                 dev_warn(dev, "Current configuration is not dual-role, quit\n");
870                 return -EPERM;
871         }
872
873         for (role = CI_ROLE_HOST; role < CI_ROLE_END; role++)
874                 if (!strncmp(buf, ci->roles[role]->name,
875                              strlen(ci->roles[role]->name)))
876                         break;
877
878         if (role == CI_ROLE_END || role == ci->role)
879                 return -EINVAL;
880
881         pm_runtime_get_sync(dev);
882         disable_irq(ci->irq);
883         ci_role_stop(ci);
884         ret = ci_role_start(ci, role);
885         if (!ret && ci->role == CI_ROLE_GADGET)
886                 ci_handle_vbus_change(ci);
887         enable_irq(ci->irq);
888         pm_runtime_put_sync(dev);
889
890         return (ret == 0) ? n : ret;
891 }
892 static DEVICE_ATTR(role, 0644, ci_role_show, ci_role_store);
893
894 static struct attribute *ci_attrs[] = {
895         &dev_attr_role.attr,
896         NULL,
897 };
898
899 static const struct attribute_group ci_attr_group = {
900         .attrs = ci_attrs,
901 };
902
903 static int ci_hdrc_probe(struct platform_device *pdev)
904 {
905         struct device   *dev = &pdev->dev;
906         struct ci_hdrc  *ci;
907         struct resource *res;
908         void __iomem    *base;
909         int             ret;
910         enum usb_dr_mode dr_mode;
911
912         if (!dev_get_platdata(dev)) {
913                 dev_err(dev, "platform data missing\n");
914                 return -ENODEV;
915         }
916
917         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
918         base = devm_ioremap_resource(dev, res);
919         if (IS_ERR(base))
920                 return PTR_ERR(base);
921
922         ci = devm_kzalloc(dev, sizeof(*ci), GFP_KERNEL);
923         if (!ci)
924                 return -ENOMEM;
925
926         spin_lock_init(&ci->lock);
927         ci->dev = dev;
928         ci->platdata = dev_get_platdata(dev);
929         ci->imx28_write_fix = !!(ci->platdata->flags &
930                 CI_HDRC_IMX28_WRITE_FIX);
931         ci->supports_runtime_pm = !!(ci->platdata->flags &
932                 CI_HDRC_SUPPORTS_RUNTIME_PM);
933         platform_set_drvdata(pdev, ci);
934
935         ret = hw_device_init(ci, base);
936         if (ret < 0) {
937                 dev_err(dev, "can't initialize hardware\n");
938                 return -ENODEV;
939         }
940
941         ret = ci_ulpi_init(ci);
942         if (ret)
943                 return ret;
944
945         if (ci->platdata->phy) {
946                 ci->phy = ci->platdata->phy;
947         } else if (ci->platdata->usb_phy) {
948                 ci->usb_phy = ci->platdata->usb_phy;
949         } else {
950                 ci->usb_phy = devm_usb_get_phy_by_phandle(dev->parent, "phys",
951                                                           0);
952                 ci->phy = devm_phy_get(dev->parent, "usb-phy");
953
954                 /* Fallback to grabbing any registered USB2 PHY */
955                 if (IS_ERR(ci->usb_phy) &&
956                     PTR_ERR(ci->usb_phy) != -EPROBE_DEFER)
957                         ci->usb_phy = devm_usb_get_phy(dev->parent,
958                                                        USB_PHY_TYPE_USB2);
959
960                 /* if both generic PHY and USB PHY layers aren't enabled */
961                 if (PTR_ERR(ci->phy) == -ENOSYS &&
962                                 PTR_ERR(ci->usb_phy) == -ENXIO) {
963                         ret = -ENXIO;
964                         goto ulpi_exit;
965                 }
966
967                 if (IS_ERR(ci->phy) && IS_ERR(ci->usb_phy)) {
968                         ret = -EPROBE_DEFER;
969                         goto ulpi_exit;
970                 }
971
972                 if (IS_ERR(ci->phy))
973                         ci->phy = NULL;
974                 else if (IS_ERR(ci->usb_phy))
975                         ci->usb_phy = NULL;
976         }
977
978         ret = ci_usb_phy_init(ci);
979         if (ret) {
980                 dev_err(dev, "unable to init phy: %d\n", ret);
981                 return ret;
982         }
983
984         ci->hw_bank.phys = res->start;
985
986         ci->irq = platform_get_irq(pdev, 0);
987         if (ci->irq < 0) {
988                 dev_err(dev, "missing IRQ\n");
989                 ret = ci->irq;
990                 goto deinit_phy;
991         }
992
993         ci_get_otg_capable(ci);
994
995         dr_mode = ci->platdata->dr_mode;
996         /* initialize role(s) before the interrupt is requested */
997         if (dr_mode == USB_DR_MODE_OTG || dr_mode == USB_DR_MODE_HOST) {
998                 ret = ci_hdrc_host_init(ci);
999                 if (ret) {
1000                         if (ret == -ENXIO)
1001                                 dev_info(dev, "doesn't support host\n");
1002                         else
1003                                 goto deinit_phy;
1004                 }
1005         }
1006
1007         if (dr_mode == USB_DR_MODE_OTG || dr_mode == USB_DR_MODE_PERIPHERAL) {
1008                 ret = ci_hdrc_gadget_init(ci);
1009                 if (ret) {
1010                         if (ret == -ENXIO)
1011                                 dev_info(dev, "doesn't support gadget\n");
1012                         else
1013                                 goto deinit_host;
1014                 }
1015         }
1016
1017         if (!ci->roles[CI_ROLE_HOST] && !ci->roles[CI_ROLE_GADGET]) {
1018                 dev_err(dev, "no supported roles\n");
1019                 ret = -ENODEV;
1020                 goto deinit_gadget;
1021         }
1022
1023         if (ci->is_otg && ci->roles[CI_ROLE_GADGET]) {
1024                 ret = ci_hdrc_otg_init(ci);
1025                 if (ret) {
1026                         dev_err(dev, "init otg fails, ret = %d\n", ret);
1027                         goto deinit_gadget;
1028                 }
1029         }
1030
1031         if (ci->roles[CI_ROLE_HOST] && ci->roles[CI_ROLE_GADGET]) {
1032                 if (ci->is_otg) {
1033                         ci->role = ci_otg_role(ci);
1034                         /* Enable ID change irq */
1035                         hw_write_otgsc(ci, OTGSC_IDIE, OTGSC_IDIE);
1036                 } else {
1037                         /*
1038                          * If the controller is not OTG capable, but support
1039                          * role switch, the defalt role is gadget, and the
1040                          * user can switch it through debugfs.
1041                          */
1042                         ci->role = CI_ROLE_GADGET;
1043                 }
1044         } else {
1045                 ci->role = ci->roles[CI_ROLE_HOST]
1046                         ? CI_ROLE_HOST
1047                         : CI_ROLE_GADGET;
1048         }
1049
1050         if (!ci_otg_is_fsm_mode(ci)) {
1051                 /* only update vbus status for peripheral */
1052                 if (ci->role == CI_ROLE_GADGET)
1053                         ci_handle_vbus_change(ci);
1054
1055                 ret = ci_role_start(ci, ci->role);
1056                 if (ret) {
1057                         dev_err(dev, "can't start %s role\n",
1058                                                 ci_role(ci)->name);
1059                         goto stop;
1060                 }
1061         }
1062
1063         ret = devm_request_irq(dev, ci->irq, ci_irq_handler, IRQF_SHARED,
1064                         ci->platdata->name, ci);
1065         if (ret)
1066                 goto stop;
1067
1068         ret = ci_extcon_register(ci);
1069         if (ret)
1070                 goto stop;
1071
1072         if (ci->supports_runtime_pm) {
1073                 pm_runtime_set_active(&pdev->dev);
1074                 pm_runtime_enable(&pdev->dev);
1075                 pm_runtime_set_autosuspend_delay(&pdev->dev, 2000);
1076                 pm_runtime_mark_last_busy(ci->dev);
1077                 pm_runtime_use_autosuspend(&pdev->dev);
1078         }
1079
1080         if (ci_otg_is_fsm_mode(ci))
1081                 ci_hdrc_otg_fsm_start(ci);
1082
1083         device_set_wakeup_capable(&pdev->dev, true);
1084         ret = dbg_create_files(ci);
1085         if (ret)
1086                 goto stop;
1087
1088         ret = sysfs_create_group(&dev->kobj, &ci_attr_group);
1089         if (ret)
1090                 goto remove_debug;
1091
1092         return 0;
1093
1094 remove_debug:
1095         dbg_remove_files(ci);
1096 stop:
1097         if (ci->is_otg && ci->roles[CI_ROLE_GADGET])
1098                 ci_hdrc_otg_destroy(ci);
1099 deinit_gadget:
1100         ci_hdrc_gadget_destroy(ci);
1101 deinit_host:
1102         ci_hdrc_host_destroy(ci);
1103 deinit_phy:
1104         ci_usb_phy_exit(ci);
1105 ulpi_exit:
1106         ci_ulpi_exit(ci);
1107
1108         return ret;
1109 }
1110
1111 static int ci_hdrc_remove(struct platform_device *pdev)
1112 {
1113         struct ci_hdrc *ci = platform_get_drvdata(pdev);
1114
1115         if (ci->supports_runtime_pm) {
1116                 pm_runtime_get_sync(&pdev->dev);
1117                 pm_runtime_disable(&pdev->dev);
1118                 pm_runtime_put_noidle(&pdev->dev);
1119         }
1120
1121         dbg_remove_files(ci);
1122         sysfs_remove_group(&ci->dev->kobj, &ci_attr_group);
1123         ci_role_destroy(ci);
1124         ci_hdrc_enter_lpm(ci, true);
1125         ci_usb_phy_exit(ci);
1126         ci_ulpi_exit(ci);
1127
1128         return 0;
1129 }
1130
1131 #ifdef CONFIG_PM
1132 /* Prepare wakeup by SRP before suspend */
1133 static void ci_otg_fsm_suspend_for_srp(struct ci_hdrc *ci)
1134 {
1135         if ((ci->fsm.otg->state == OTG_STATE_A_IDLE) &&
1136                                 !hw_read_otgsc(ci, OTGSC_ID)) {
1137                 hw_write(ci, OP_PORTSC, PORTSC_W1C_BITS | PORTSC_PP,
1138                                                                 PORTSC_PP);
1139                 hw_write(ci, OP_PORTSC, PORTSC_W1C_BITS | PORTSC_WKCN,
1140                                                                 PORTSC_WKCN);
1141         }
1142 }
1143
1144 /* Handle SRP when wakeup by data pulse */
1145 static void ci_otg_fsm_wakeup_by_srp(struct ci_hdrc *ci)
1146 {
1147         if ((ci->fsm.otg->state == OTG_STATE_A_IDLE) &&
1148                 (ci->fsm.a_bus_drop == 1) && (ci->fsm.a_bus_req == 0)) {
1149                 if (!hw_read_otgsc(ci, OTGSC_ID)) {
1150                         ci->fsm.a_srp_det = 1;
1151                         ci->fsm.a_bus_drop = 0;
1152                 } else {
1153                         ci->fsm.id = 1;
1154                 }
1155                 ci_otg_queue_work(ci);
1156         }
1157 }
1158
1159 static void ci_controller_suspend(struct ci_hdrc *ci)
1160 {
1161         disable_irq(ci->irq);
1162         ci_hdrc_enter_lpm(ci, true);
1163         if (ci->platdata->phy_clkgate_delay_us)
1164                 usleep_range(ci->platdata->phy_clkgate_delay_us,
1165                              ci->platdata->phy_clkgate_delay_us + 50);
1166         usb_phy_set_suspend(ci->usb_phy, 1);
1167         ci->in_lpm = true;
1168         enable_irq(ci->irq);
1169 }
1170
1171 /*
1172  * Handle the wakeup interrupt triggered by extcon connector
1173  * We need to call ci_irq again for extcon since the first
1174  * interrupt (wakeup int) only let the controller be out of
1175  * low power mode, but not handle any interrupts.
1176  */
1177 static void ci_extcon_wakeup_int(struct ci_hdrc *ci)
1178 {
1179         struct ci_hdrc_cable *cable_id, *cable_vbus;
1180         u32 otgsc = hw_read_otgsc(ci, ~0);
1181
1182         cable_id = &ci->platdata->id_extcon;
1183         cable_vbus = &ci->platdata->vbus_extcon;
1184
1185         if (!IS_ERR(cable_id->edev) && ci->is_otg &&
1186                 (otgsc & OTGSC_IDIE) && (otgsc & OTGSC_IDIS))
1187                 ci_irq(ci);
1188
1189         if (!IS_ERR(cable_vbus->edev) && ci->is_otg &&
1190                 (otgsc & OTGSC_BSVIE) && (otgsc & OTGSC_BSVIS))
1191                 ci_irq(ci);
1192 }
1193
1194 static int ci_controller_resume(struct device *dev)
1195 {
1196         struct ci_hdrc *ci = dev_get_drvdata(dev);
1197         int ret;
1198
1199         dev_dbg(dev, "at %s\n", __func__);
1200
1201         if (!ci->in_lpm) {
1202                 WARN_ON(1);
1203                 return 0;
1204         }
1205
1206         ci_hdrc_enter_lpm(ci, false);
1207
1208         ret = ci_ulpi_resume(ci);
1209         if (ret)
1210                 return ret;
1211
1212         if (ci->usb_phy) {
1213                 usb_phy_set_suspend(ci->usb_phy, 0);
1214                 usb_phy_set_wakeup(ci->usb_phy, false);
1215                 hw_wait_phy_stable();
1216         }
1217
1218         ci->in_lpm = false;
1219         if (ci->wakeup_int) {
1220                 ci->wakeup_int = false;
1221                 pm_runtime_mark_last_busy(ci->dev);
1222                 pm_runtime_put_autosuspend(ci->dev);
1223                 enable_irq(ci->irq);
1224                 if (ci_otg_is_fsm_mode(ci))
1225                         ci_otg_fsm_wakeup_by_srp(ci);
1226                 ci_extcon_wakeup_int(ci);
1227         }
1228
1229         return 0;
1230 }
1231
1232 #ifdef CONFIG_PM_SLEEP
1233 static int ci_suspend(struct device *dev)
1234 {
1235         struct ci_hdrc *ci = dev_get_drvdata(dev);
1236
1237         if (ci->wq)
1238                 flush_workqueue(ci->wq);
1239         /*
1240          * Controller needs to be active during suspend, otherwise the core
1241          * may run resume when the parent is at suspend if other driver's
1242          * suspend fails, it occurs before parent's suspend has not started,
1243          * but the core suspend has finished.
1244          */
1245         if (ci->in_lpm)
1246                 pm_runtime_resume(dev);
1247
1248         if (ci->in_lpm) {
1249                 WARN_ON(1);
1250                 return 0;
1251         }
1252
1253         if (device_may_wakeup(dev)) {
1254                 if (ci_otg_is_fsm_mode(ci))
1255                         ci_otg_fsm_suspend_for_srp(ci);
1256
1257                 usb_phy_set_wakeup(ci->usb_phy, true);
1258                 enable_irq_wake(ci->irq);
1259         }
1260
1261         ci_controller_suspend(ci);
1262
1263         return 0;
1264 }
1265
1266 static int ci_resume(struct device *dev)
1267 {
1268         struct ci_hdrc *ci = dev_get_drvdata(dev);
1269         int ret;
1270
1271         if (device_may_wakeup(dev))
1272                 disable_irq_wake(ci->irq);
1273
1274         ret = ci_controller_resume(dev);
1275         if (ret)
1276                 return ret;
1277
1278         if (ci->supports_runtime_pm) {
1279                 pm_runtime_disable(dev);
1280                 pm_runtime_set_active(dev);
1281                 pm_runtime_enable(dev);
1282         }
1283
1284         return ret;
1285 }
1286 #endif /* CONFIG_PM_SLEEP */
1287
1288 static int ci_runtime_suspend(struct device *dev)
1289 {
1290         struct ci_hdrc *ci = dev_get_drvdata(dev);
1291
1292         dev_dbg(dev, "at %s\n", __func__);
1293
1294         if (ci->in_lpm) {
1295                 WARN_ON(1);
1296                 return 0;
1297         }
1298
1299         if (ci_otg_is_fsm_mode(ci))
1300                 ci_otg_fsm_suspend_for_srp(ci);
1301
1302         usb_phy_set_wakeup(ci->usb_phy, true);
1303         ci_controller_suspend(ci);
1304
1305         return 0;
1306 }
1307
1308 static int ci_runtime_resume(struct device *dev)
1309 {
1310         return ci_controller_resume(dev);
1311 }
1312
1313 #endif /* CONFIG_PM */
1314 static const struct dev_pm_ops ci_pm_ops = {
1315         SET_SYSTEM_SLEEP_PM_OPS(ci_suspend, ci_resume)
1316         SET_RUNTIME_PM_OPS(ci_runtime_suspend, ci_runtime_resume, NULL)
1317 };
1318
1319 static struct platform_driver ci_hdrc_driver = {
1320         .probe  = ci_hdrc_probe,
1321         .remove = ci_hdrc_remove,
1322         .driver = {
1323                 .name   = "ci_hdrc",
1324                 .pm     = &ci_pm_ops,
1325         },
1326 };
1327
1328 static int __init ci_hdrc_platform_register(void)
1329 {
1330         ci_hdrc_host_driver_init();
1331         return platform_driver_register(&ci_hdrc_driver);
1332 }
1333 module_init(ci_hdrc_platform_register);
1334
1335 static void __exit ci_hdrc_platform_unregister(void)
1336 {
1337         platform_driver_unregister(&ci_hdrc_driver);
1338 }
1339 module_exit(ci_hdrc_platform_unregister);
1340
1341 MODULE_ALIAS("platform:ci_hdrc");
1342 MODULE_LICENSE("GPL v2");
1343 MODULE_AUTHOR("David Lopo <dlopo@chipidea.mips.com>");
1344 MODULE_DESCRIPTION("ChipIdea HDRC Driver");