usb: chipidea: support debugfs without CONFIG_USB_CHIPIDEA_DEBUG
[deliverable/linux.git] / drivers / usb / chipidea / core.c
CommitLineData
e443b333
AS
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
58ce8499 26 * - CONFIG_USB_CHIPIDEA_DEBUG: enable debug facilities
e443b333
AS
27 * - STALL_IN: non-empty bulk-in pipes cannot be halted
28 * if defined mass storage compliance succeeds but with warnings
29 * => case 4: Hi > Dn
30 * => case 5: Hi > Di
31 * => case 8: Hi <> Do
32 * if undefined usbtest 13 fails
33 * - TRACE: enable function tracing (depends on DEBUG)
34 *
35 * Main Features
36 * - Chapter 9 & Mass Storage Compliance with Gadget File Storage
37 * - Chapter 9 Compliance with Gadget Zero (STALL_IN undefined)
38 * - Normal & LPM support
39 *
40 * USBTEST Report
41 * - OK: 0-12, 13 (STALL_IN defined) & 14
42 * - Not Supported: 15 & 16 (ISO)
43 *
44 * TODO List
e443b333
AS
45 * - Suspend & Remote Wakeup
46 */
47#include <linux/delay.h>
48#include <linux/device.h>
e443b333 49#include <linux/dma-mapping.h>
3ecb3e09 50#include <linux/extcon.h>
1e5e2d3d 51#include <linux/phy/phy.h>
e443b333
AS
52#include <linux/platform_device.h>
53#include <linux/module.h>
fe6e125e 54#include <linux/idr.h>
e443b333
AS
55#include <linux/interrupt.h>
56#include <linux/io.h>
e443b333
AS
57#include <linux/kernel.h>
58#include <linux/slab.h>
59#include <linux/pm_runtime.h>
60#include <linux/usb/ch9.h>
61#include <linux/usb/gadget.h>
62#include <linux/usb/otg.h>
63#include <linux/usb/chipidea.h>
40dcd0e8 64#include <linux/usb/of.h>
4f6743d5 65#include <linux/of.h>
40dcd0e8 66#include <linux/phy.h>
1542d9c3 67#include <linux/regulator/consumer.h>
8022d3d5 68#include <linux/usb/ehci_def.h>
e443b333
AS
69
70#include "ci.h"
71#include "udc.h"
72#include "bits.h"
eb70e5ab 73#include "host.h"
c10b4f03 74#include "otg.h"
4dcf720c 75#include "otg_fsm.h"
e443b333 76
5f36e231 77/* Controller register map */
987e7bc3
MKB
78static const u8 ci_regs_nolpm[] = {
79 [CAP_CAPLENGTH] = 0x00U,
80 [CAP_HCCPARAMS] = 0x08U,
81 [CAP_DCCPARAMS] = 0x24U,
82 [CAP_TESTMODE] = 0x38U,
83 [OP_USBCMD] = 0x00U,
84 [OP_USBSTS] = 0x04U,
85 [OP_USBINTR] = 0x08U,
86 [OP_DEVICEADDR] = 0x14U,
87 [OP_ENDPTLISTADDR] = 0x18U,
28362673 88 [OP_TTCTRL] = 0x1CU,
96625ead 89 [OP_BURSTSIZE] = 0x20U,
987e7bc3
MKB
90 [OP_PORTSC] = 0x44U,
91 [OP_DEVLC] = 0x84U,
92 [OP_OTGSC] = 0x64U,
93 [OP_USBMODE] = 0x68U,
94 [OP_ENDPTSETUPSTAT] = 0x6CU,
95 [OP_ENDPTPRIME] = 0x70U,
96 [OP_ENDPTFLUSH] = 0x74U,
97 [OP_ENDPTSTAT] = 0x78U,
98 [OP_ENDPTCOMPLETE] = 0x7CU,
99 [OP_ENDPTCTRL] = 0x80U,
e443b333
AS
100};
101
987e7bc3
MKB
102static const u8 ci_regs_lpm[] = {
103 [CAP_CAPLENGTH] = 0x00U,
104 [CAP_HCCPARAMS] = 0x08U,
105 [CAP_DCCPARAMS] = 0x24U,
106 [CAP_TESTMODE] = 0xFCU,
107 [OP_USBCMD] = 0x00U,
108 [OP_USBSTS] = 0x04U,
109 [OP_USBINTR] = 0x08U,
110 [OP_DEVICEADDR] = 0x14U,
111 [OP_ENDPTLISTADDR] = 0x18U,
28362673 112 [OP_TTCTRL] = 0x1CU,
96625ead 113 [OP_BURSTSIZE] = 0x20U,
987e7bc3
MKB
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,
e443b333
AS
124};
125
158ec071 126static void hw_alloc_regmap(struct ci_hdrc *ci, bool is_lpm)
e443b333
AS
127{
128 int i;
129
e443b333 130 for (i = 0; i < OP_ENDPTCTRL; i++)
5f36e231
AS
131 ci->hw_bank.regmap[i] =
132 (i <= CAP_LAST ? ci->hw_bank.cap : ci->hw_bank.op) +
e443b333
AS
133 (is_lpm ? ci_regs_lpm[i] : ci_regs_nolpm[i]);
134
135 for (; i <= OP_LAST; i++)
5f36e231 136 ci->hw_bank.regmap[i] = ci->hw_bank.op +
e443b333
AS
137 4 * (i - OP_ENDPTCTRL) +
138 (is_lpm
139 ? ci_regs_lpm[OP_ENDPTCTRL]
140 : ci_regs_nolpm[OP_ENDPTCTRL]);
141
e443b333
AS
142}
143
cb271f3c
PC
144static 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
36304b06
LJ
160/**
161 * hw_read_intr_enable: returns interrupt enable register
162 *
19353881
PC
163 * @ci: the controller
164 *
36304b06
LJ
165 * This function returns register data
166 */
167u32 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 *
19353881
PC
175 * @ci: the controller
176 *
36304b06
LJ
177 * This function returns register data
178 */
179u32 hw_read_intr_status(struct ci_hdrc *ci)
180{
181 return hw_read(ci, OP_USBSTS, ~0);
182}
183
e443b333
AS
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 */
8e22978c 190int hw_port_test_set(struct ci_hdrc *ci, u8 mode)
e443b333
AS
191{
192 const u8 TEST_MODE_MAX = 7;
193
194 if (mode > TEST_MODE_MAX)
195 return -EINVAL;
196
727b4ddb 197 hw_write(ci, OP_PORTSC, PORTSC_PTC, mode << __ffs(PORTSC_PTC));
e443b333
AS
198 return 0;
199}
200
201/**
202 * hw_port_test_get: reads port test mode value
203 *
19353881
PC
204 * @ci: the controller
205 *
e443b333
AS
206 * This function returns port test mode value
207 */
8e22978c 208u8 hw_port_test_get(struct ci_hdrc *ci)
e443b333 209{
727b4ddb 210 return hw_read(ci, OP_PORTSC, PORTSC_PTC) >> __ffs(PORTSC_PTC);
e443b333
AS
211}
212
b82613cf
PC
213static 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
864cf949
PC
224/* The PHY enters/leaves low power mode */
225static 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
6d037db6 230 if (enable && !lpm)
864cf949
PC
231 hw_write(ci, reg, PORTSC_PHCD(ci->hw_bank.lpm),
232 PORTSC_PHCD(ci->hw_bank.lpm));
6d037db6 233 else if (!enable && lpm)
864cf949
PC
234 hw_write(ci, reg, PORTSC_PHCD(ci->hw_bank.lpm),
235 0);
864cf949
PC
236}
237
8e22978c 238static int hw_device_init(struct ci_hdrc *ci, void __iomem *base)
e443b333
AS
239{
240 u32 reg;
241
242 /* bank is a module variable */
5f36e231 243 ci->hw_bank.abs = base;
e443b333 244
5f36e231 245 ci->hw_bank.cap = ci->hw_bank.abs;
77c4400f 246 ci->hw_bank.cap += ci->platdata->capoffset;
938d323f 247 ci->hw_bank.op = ci->hw_bank.cap + (ioread32(ci->hw_bank.cap) & 0xff);
e443b333 248
5f36e231
AS
249 hw_alloc_regmap(ci, false);
250 reg = hw_read(ci, CAP_HCCPARAMS, HCCPARAMS_LEN) >>
727b4ddb 251 __ffs(HCCPARAMS_LEN);
5f36e231 252 ci->hw_bank.lpm = reg;
aeb2c121
CR
253 if (reg)
254 hw_alloc_regmap(ci, !!reg);
5f36e231
AS
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);
e443b333 258
5f36e231 259 reg = hw_read(ci, CAP_DCCPARAMS, DCCPARAMS_DEN) >>
727b4ddb 260 __ffs(DCCPARAMS_DEN);
5f36e231 261 ci->hw_ep_max = reg * 2; /* cache hw ENDPT_MAX */
e443b333 262
09c94e62 263 if (ci->hw_ep_max > ENDPT_MAX)
e443b333
AS
264 return -ENODEV;
265
864cf949
PC
266 ci_hdrc_enter_lpm(ci, false);
267
c344b518
PC
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
cb271f3c
PC
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);
e443b333
AS
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
8e22978c 289static void hw_phymode_configure(struct ci_hdrc *ci)
40dcd0e8 290{
3b5d3e68 291 u32 portsc, lpm, sts = 0;
40dcd0e8
MG
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);
3b5d3e68
CR
321 if (sts)
322 hw_write(ci, OP_DEVLC, DEVLC_STS, DEVLC_STS);
40dcd0e8
MG
323 } else {
324 hw_write(ci, OP_PORTSC, PORTSC_PTS(7) | PORTSC_PTW, portsc);
3b5d3e68
CR
325 if (sts)
326 hw_write(ci, OP_PORTSC, PORTSC_STS, PORTSC_STS);
40dcd0e8
MG
327 }
328}
329
1e5e2d3d
AT
330/**
331 * _ci_usb_phy_init: initialize phy taking in account both phy and usb_phy
332 * interfaces
333 * @ci: the controller
334 *
335 * This function returns an error code if the phy failed to init
336 */
337static int _ci_usb_phy_init(struct ci_hdrc *ci)
338{
339 int ret;
340
341 if (ci->phy) {
342 ret = phy_init(ci->phy);
343 if (ret)
344 return ret;
345
346 ret = phy_power_on(ci->phy);
347 if (ret) {
348 phy_exit(ci->phy);
349 return ret;
350 }
351 } else {
352 ret = usb_phy_init(ci->usb_phy);
353 }
354
355 return ret;
356}
357
358/**
359 * _ci_usb_phy_exit: deinitialize phy taking in account both phy and usb_phy
360 * interfaces
361 * @ci: the controller
362 */
363static void ci_usb_phy_exit(struct ci_hdrc *ci)
364{
365 if (ci->phy) {
366 phy_power_off(ci->phy);
367 phy_exit(ci->phy);
368 } else {
369 usb_phy_shutdown(ci->usb_phy);
370 }
371}
372
d03cccff
PC
373/**
374 * ci_usb_phy_init: initialize phy according to different phy type
375 * @ci: the controller
19353881 376 *
d03cccff
PC
377 * This function returns an error code if usb_phy_init has failed
378 */
379static int ci_usb_phy_init(struct ci_hdrc *ci)
380{
381 int ret;
382
383 switch (ci->platdata->phy_mode) {
384 case USBPHY_INTERFACE_MODE_UTMI:
385 case USBPHY_INTERFACE_MODE_UTMIW:
386 case USBPHY_INTERFACE_MODE_HSIC:
1e5e2d3d 387 ret = _ci_usb_phy_init(ci);
b82613cf
PC
388 if (!ret)
389 hw_wait_phy_stable();
390 else
d03cccff
PC
391 return ret;
392 hw_phymode_configure(ci);
393 break;
394 case USBPHY_INTERFACE_MODE_ULPI:
395 case USBPHY_INTERFACE_MODE_SERIAL:
396 hw_phymode_configure(ci);
1e5e2d3d 397 ret = _ci_usb_phy_init(ci);
d03cccff
PC
398 if (ret)
399 return ret;
400 break;
401 default:
1e5e2d3d 402 ret = _ci_usb_phy_init(ci);
b82613cf
PC
403 if (!ret)
404 hw_wait_phy_stable();
d03cccff
PC
405 }
406
407 return ret;
408}
409
bf9c85e7
PC
410
411/**
412 * ci_platform_configure: do controller configure
413 * @ci: the controller
414 *
415 */
416void ci_platform_configure(struct ci_hdrc *ci)
417{
8022d3d5
PC
418 bool is_device_mode, is_host_mode;
419
420 is_device_mode = hw_read(ci, OP_USBMODE, USBMODE_CM) == USBMODE_CM_DC;
421 is_host_mode = hw_read(ci, OP_USBMODE, USBMODE_CM) == USBMODE_CM_HC;
422
423 if (is_device_mode &&
424 (ci->platdata->flags & CI_HDRC_DISABLE_DEVICE_STREAMING))
425 hw_write(ci, OP_USBMODE, USBMODE_CI_SDIS, USBMODE_CI_SDIS);
426
427 if (is_host_mode &&
428 (ci->platdata->flags & CI_HDRC_DISABLE_HOST_STREAMING))
bf9c85e7
PC
429 hw_write(ci, OP_USBMODE, USBMODE_CI_SDIS, USBMODE_CI_SDIS);
430
431 if (ci->platdata->flags & CI_HDRC_FORCE_FULLSPEED) {
432 if (ci->hw_bank.lpm)
433 hw_write(ci, OP_DEVLC, DEVLC_PFSC, DEVLC_PFSC);
434 else
435 hw_write(ci, OP_PORTSC, PORTSC_PFSC, PORTSC_PFSC);
436 }
437
438 if (ci->platdata->flags & CI_HDRC_SET_NON_ZERO_TTHA)
439 hw_write(ci, OP_TTCTRL, TTCTRL_TTHA_MASK, TTCTRL_TTHA);
df96ed8d
PC
440
441 hw_write(ci, OP_USBCMD, 0xff0000, ci->platdata->itc_setting << 16);
442
65668718
PC
443 if (ci->platdata->flags & CI_HDRC_OVERRIDE_AHB_BURST)
444 hw_write_id_reg(ci, ID_SBUSCFG, AHBBRST_MASK,
445 ci->platdata->ahb_burst_config);
96625ead
PC
446
447 /* override burst size, take effect only when ahb_burst_config is 0 */
448 if (!hw_read_id_reg(ci, ID_SBUSCFG, AHBBRST_MASK)) {
449 if (ci->platdata->flags & CI_HDRC_OVERRIDE_TX_BURST)
450 hw_write(ci, OP_BURSTSIZE, TX_BURST_MASK,
451 ci->platdata->tx_burst_size << __ffs(TX_BURST_MASK));
452
453 if (ci->platdata->flags & CI_HDRC_OVERRIDE_RX_BURST)
454 hw_write(ci, OP_BURSTSIZE, RX_BURST_MASK,
455 ci->platdata->rx_burst_size);
456 }
bf9c85e7
PC
457}
458
e443b333 459/**
cdd278f2 460 * hw_controller_reset: do controller reset
e443b333
AS
461 * @ci: the controller
462 *
463 * This function returns an error code
464 */
cdd278f2
PC
465static int hw_controller_reset(struct ci_hdrc *ci)
466{
467 int count = 0;
468
469 hw_write(ci, OP_USBCMD, USBCMD_RST, USBCMD_RST);
470 while (hw_read(ci, OP_USBCMD, USBCMD_RST)) {
471 udelay(10);
472 if (count++ > 1000)
473 return -ETIMEDOUT;
474 }
475
476 return 0;
477}
478
479/**
480 * hw_device_reset: resets chip (execute without interruption)
481 * @ci: the controller
482 *
483 * This function returns an error code
484 */
5b157300 485int hw_device_reset(struct ci_hdrc *ci)
e443b333 486{
cdd278f2
PC
487 int ret;
488
e443b333
AS
489 /* should flush & stop before reset */
490 hw_write(ci, OP_ENDPTFLUSH, ~0, ~0);
491 hw_write(ci, OP_USBCMD, USBCMD_RS, 0);
492
cdd278f2
PC
493 ret = hw_controller_reset(ci);
494 if (ret) {
495 dev_err(ci->dev, "error resetting controller, ret=%d\n", ret);
496 return ret;
497 }
e443b333 498
77c4400f
RZ
499 if (ci->platdata->notify_event)
500 ci->platdata->notify_event(ci,
8e22978c 501 CI_HDRC_CONTROLLER_RESET_EVENT);
e443b333 502
e443b333
AS
503 /* USBMODE should be configured step by step */
504 hw_write(ci, OP_USBMODE, USBMODE_CM, USBMODE_CM_IDLE);
5b157300 505 hw_write(ci, OP_USBMODE, USBMODE_CM, USBMODE_CM_DC);
e443b333
AS
506 /* HW >= 2.3 */
507 hw_write(ci, OP_USBMODE, USBMODE_SLOM, USBMODE_SLOM);
508
5b157300
PC
509 if (hw_read(ci, OP_USBMODE, USBMODE_CM) != USBMODE_CM_DC) {
510 pr_err("cannot enter in %s device mode", ci_role(ci)->name);
e443b333
AS
511 pr_err("lpm = %i", ci->hw_bank.lpm);
512 return -ENODEV;
513 }
514
bf9c85e7
PC
515 ci_platform_configure(ci);
516
e443b333
AS
517 return 0;
518}
519
22fa8445
PC
520/**
521 * hw_wait_reg: wait the register value
522 *
523 * Sometimes, it needs to wait register value before going on.
524 * Eg, when switch to device mode, the vbus value should be lower
525 * than OTGSC_BSV before connects to host.
526 *
527 * @ci: the controller
528 * @reg: register index
529 * @mask: mast bit
530 * @value: the bit value to wait
531 * @timeout_ms: timeout in millisecond
532 *
533 * This function returns an error code if timeout
534 */
535int hw_wait_reg(struct ci_hdrc *ci, enum ci_hw_regs reg, u32 mask,
536 u32 value, unsigned int timeout_ms)
537{
538 unsigned long elapse = jiffies + msecs_to_jiffies(timeout_ms);
539
540 while (hw_read(ci, reg, mask) != value) {
541 if (time_after(jiffies, elapse)) {
542 dev_err(ci->dev, "timeout waiting for %08x in %d\n",
543 mask, reg);
544 return -ETIMEDOUT;
545 }
546 msleep(20);
547 }
548
549 return 0;
550}
551
5f36e231
AS
552static irqreturn_t ci_irq(int irq, void *data)
553{
8e22978c 554 struct ci_hdrc *ci = data;
5f36e231 555 irqreturn_t ret = IRQ_NONE;
b183c19f 556 u32 otgsc = 0;
5f36e231 557
1f874edc
PC
558 if (ci->in_lpm) {
559 disable_irq_nosync(irq);
560 ci->wakeup_int = true;
561 pm_runtime_get(ci->dev);
562 return IRQ_HANDLED;
563 }
564
4dcf720c 565 if (ci->is_otg) {
0c33bf78 566 otgsc = hw_read_otgsc(ci, ~0);
4dcf720c
LJ
567 if (ci_otg_is_fsm_mode(ci)) {
568 ret = ci_otg_fsm_irq(ci);
569 if (ret == IRQ_HANDLED)
570 return ret;
571 }
572 }
5f36e231 573
a107f8c5
PC
574 /*
575 * Handle id change interrupt, it indicates device/host function
576 * switch.
577 */
578 if (ci->is_otg && (otgsc & OTGSC_IDIE) && (otgsc & OTGSC_IDIS)) {
579 ci->id_event = true;
0c33bf78
LJ
580 /* Clear ID change irq status */
581 hw_write_otgsc(ci, OTGSC_IDIS, OTGSC_IDIS);
be6b0c1b 582 ci_otg_queue_work(ci);
a107f8c5
PC
583 return IRQ_HANDLED;
584 }
b183c19f 585
a107f8c5
PC
586 /*
587 * Handle vbus change interrupt, it indicates device connection
588 * and disconnection events.
589 */
590 if (ci->is_otg && (otgsc & OTGSC_BSVIE) && (otgsc & OTGSC_BSVIS)) {
591 ci->b_sess_valid_event = true;
0c33bf78
LJ
592 /* Clear BSV irq */
593 hw_write_otgsc(ci, OTGSC_BSVIS, OTGSC_BSVIS);
be6b0c1b 594 ci_otg_queue_work(ci);
a107f8c5 595 return IRQ_HANDLED;
5f36e231
AS
596 }
597
a107f8c5
PC
598 /* Handle device/host interrupt */
599 if (ci->role != CI_ROLE_END)
600 ret = ci_role(ci)->irq(ci);
601
b183c19f 602 return ret;
5f36e231
AS
603}
604
3ecb3e09
II
605static int ci_vbus_notifier(struct notifier_block *nb, unsigned long event,
606 void *ptr)
607{
608 struct ci_hdrc_cable *vbus = container_of(nb, struct ci_hdrc_cable, nb);
609 struct ci_hdrc *ci = vbus->ci;
610
611 if (event)
612 vbus->state = true;
613 else
614 vbus->state = false;
615
616 vbus->changed = true;
617
618 ci_irq(ci->irq, ci);
619 return NOTIFY_DONE;
620}
621
622static int ci_id_notifier(struct notifier_block *nb, unsigned long event,
623 void *ptr)
624{
625 struct ci_hdrc_cable *id = container_of(nb, struct ci_hdrc_cable, nb);
626 struct ci_hdrc *ci = id->ci;
627
628 if (event)
629 id->state = false;
630 else
631 id->state = true;
632
633 id->changed = true;
634
635 ci_irq(ci->irq, ci);
636 return NOTIFY_DONE;
637}
638
1542d9c3
PC
639static int ci_get_platdata(struct device *dev,
640 struct ci_hdrc_platform_data *platdata)
641{
3ecb3e09
II
642 struct extcon_dev *ext_vbus, *ext_id;
643 struct ci_hdrc_cable *cable;
79742351
LJ
644 int ret;
645
c22600c3
PC
646 if (!platdata->phy_mode)
647 platdata->phy_mode = of_usb_get_phy_mode(dev->of_node);
648
649 if (!platdata->dr_mode)
06e7114f 650 platdata->dr_mode = usb_get_dr_mode(dev);
c22600c3
PC
651
652 if (platdata->dr_mode == USB_DR_MODE_UNKNOWN)
653 platdata->dr_mode = USB_DR_MODE_OTG;
654
c2ec3a73
PC
655 if (platdata->dr_mode != USB_DR_MODE_PERIPHERAL) {
656 /* Get the vbus regulator */
657 platdata->reg_vbus = devm_regulator_get(dev, "vbus");
658 if (PTR_ERR(platdata->reg_vbus) == -EPROBE_DEFER) {
659 return -EPROBE_DEFER;
660 } else if (PTR_ERR(platdata->reg_vbus) == -ENODEV) {
6629467b 661 /* no vbus regulator is needed */
c2ec3a73
PC
662 platdata->reg_vbus = NULL;
663 } else if (IS_ERR(platdata->reg_vbus)) {
664 dev_err(dev, "Getting regulator error: %ld\n",
665 PTR_ERR(platdata->reg_vbus));
666 return PTR_ERR(platdata->reg_vbus);
667 }
f6a9ff07
PC
668 /* Get TPL support */
669 if (!platdata->tpl_support)
670 platdata->tpl_support =
671 of_usb_host_tpl_support(dev->of_node);
c2ec3a73
PC
672 }
673
79742351
LJ
674 if (platdata->dr_mode == USB_DR_MODE_OTG) {
675 /* We can support HNP and SRP of OTG 2.0 */
676 platdata->ci_otg_caps.otg_rev = 0x0200;
677 platdata->ci_otg_caps.hnp_support = true;
678 platdata->ci_otg_caps.srp_support = true;
679
680 /* Update otg capabilities by DT properties */
681 ret = of_usb_update_otg_caps(dev->of_node,
682 &platdata->ci_otg_caps);
683 if (ret)
684 return ret;
685 }
686
63863b98 687 if (usb_get_maximum_speed(dev) == USB_SPEED_FULL)
4f6743d5
MG
688 platdata->flags |= CI_HDRC_FORCE_FULLSPEED;
689
1fbf4628
FE
690 if (of_find_property(dev->of_node, "phy-clkgate-delay-us", NULL))
691 of_property_read_u32(dev->of_node, "phy-clkgate-delay-us",
692 &platdata->phy_clkgate_delay_us);
693
df96ed8d
PC
694 platdata->itc_setting = 1;
695 if (of_find_property(dev->of_node, "itc-setting", NULL)) {
696 ret = of_property_read_u32(dev->of_node, "itc-setting",
697 &platdata->itc_setting);
698 if (ret) {
699 dev_err(dev,
700 "failed to get itc-setting\n");
701 return ret;
702 }
703 }
704
65668718
PC
705 if (of_find_property(dev->of_node, "ahb-burst-config", NULL)) {
706 ret = of_property_read_u32(dev->of_node, "ahb-burst-config",
707 &platdata->ahb_burst_config);
708 if (ret) {
709 dev_err(dev,
710 "failed to get ahb-burst-config\n");
711 return ret;
712 }
713 platdata->flags |= CI_HDRC_OVERRIDE_AHB_BURST;
714 }
715
96625ead
PC
716 if (of_find_property(dev->of_node, "tx-burst-size-dword", NULL)) {
717 ret = of_property_read_u32(dev->of_node, "tx-burst-size-dword",
718 &platdata->tx_burst_size);
719 if (ret) {
720 dev_err(dev,
721 "failed to get tx-burst-size-dword\n");
722 return ret;
723 }
724 platdata->flags |= CI_HDRC_OVERRIDE_TX_BURST;
725 }
726
727 if (of_find_property(dev->of_node, "rx-burst-size-dword", NULL)) {
728 ret = of_property_read_u32(dev->of_node, "rx-burst-size-dword",
729 &platdata->rx_burst_size);
730 if (ret) {
731 dev_err(dev,
732 "failed to get rx-burst-size-dword\n");
733 return ret;
734 }
735 platdata->flags |= CI_HDRC_OVERRIDE_RX_BURST;
736 }
737
3ecb3e09
II
738 ext_id = ERR_PTR(-ENODEV);
739 ext_vbus = ERR_PTR(-ENODEV);
740 if (of_property_read_bool(dev->of_node, "extcon")) {
741 /* Each one of them is not mandatory */
742 ext_vbus = extcon_get_edev_by_phandle(dev, 0);
743 if (IS_ERR(ext_vbus) && PTR_ERR(ext_vbus) != -ENODEV)
744 return PTR_ERR(ext_vbus);
745
746 ext_id = extcon_get_edev_by_phandle(dev, 1);
747 if (IS_ERR(ext_id) && PTR_ERR(ext_id) != -ENODEV)
748 return PTR_ERR(ext_id);
749 }
750
751 cable = &platdata->vbus_extcon;
752 cable->nb.notifier_call = ci_vbus_notifier;
753 cable->edev = ext_vbus;
754
755 if (!IS_ERR(ext_vbus)) {
756 ret = extcon_get_cable_state_(cable->edev, EXTCON_USB);
757 if (ret)
758 cable->state = true;
759 else
760 cable->state = false;
761 }
762
763 cable = &platdata->id_extcon;
764 cable->nb.notifier_call = ci_id_notifier;
765 cable->edev = ext_id;
766
767 if (!IS_ERR(ext_id)) {
768 ret = extcon_get_cable_state_(cable->edev, EXTCON_USB_HOST);
769 if (ret)
770 cable->state = false;
771 else
772 cable->state = true;
773 }
1542d9c3
PC
774 return 0;
775}
776
3ecb3e09
II
777static int ci_extcon_register(struct ci_hdrc *ci)
778{
779 struct ci_hdrc_cable *id, *vbus;
780 int ret;
781
782 id = &ci->platdata->id_extcon;
783 id->ci = ci;
784 if (!IS_ERR(id->edev)) {
785 ret = extcon_register_notifier(id->edev, EXTCON_USB_HOST,
786 &id->nb);
787 if (ret < 0) {
788 dev_err(ci->dev, "register ID failed\n");
789 return ret;
790 }
791 }
792
793 vbus = &ci->platdata->vbus_extcon;
794 vbus->ci = ci;
795 if (!IS_ERR(vbus->edev)) {
796 ret = extcon_register_notifier(vbus->edev, EXTCON_USB,
797 &vbus->nb);
798 if (ret < 0) {
799 extcon_unregister_notifier(id->edev, EXTCON_USB_HOST,
800 &id->nb);
801 dev_err(ci->dev, "register VBUS failed\n");
802 return ret;
803 }
804 }
805
1542d9c3
PC
806 return 0;
807}
808
3ecb3e09
II
809static void ci_extcon_unregister(struct ci_hdrc *ci)
810{
811 struct ci_hdrc_cable *cable;
812
813 cable = &ci->platdata->id_extcon;
814 if (!IS_ERR(cable->edev))
815 extcon_unregister_notifier(cable->edev, EXTCON_USB_HOST,
816 &cable->nb);
817
818 cable = &ci->platdata->vbus_extcon;
819 if (!IS_ERR(cable->edev))
820 extcon_unregister_notifier(cable->edev, EXTCON_USB, &cable->nb);
821}
822
fe6e125e
RZ
823static DEFINE_IDA(ci_ida);
824
8e22978c 825struct platform_device *ci_hdrc_add_device(struct device *dev,
cbc6dc2a 826 struct resource *res, int nres,
8e22978c 827 struct ci_hdrc_platform_data *platdata)
cbc6dc2a
RZ
828{
829 struct platform_device *pdev;
fe6e125e 830 int id, ret;
cbc6dc2a 831
1542d9c3
PC
832 ret = ci_get_platdata(dev, platdata);
833 if (ret)
834 return ERR_PTR(ret);
835
fe6e125e
RZ
836 id = ida_simple_get(&ci_ida, 0, 0, GFP_KERNEL);
837 if (id < 0)
838 return ERR_PTR(id);
839
840 pdev = platform_device_alloc("ci_hdrc", id);
841 if (!pdev) {
842 ret = -ENOMEM;
843 goto put_id;
844 }
cbc6dc2a
RZ
845
846 pdev->dev.parent = dev;
847 pdev->dev.dma_mask = dev->dma_mask;
848 pdev->dev.dma_parms = dev->dma_parms;
849 dma_set_coherent_mask(&pdev->dev, dev->coherent_dma_mask);
850
851 ret = platform_device_add_resources(pdev, res, nres);
852 if (ret)
853 goto err;
854
855 ret = platform_device_add_data(pdev, platdata, sizeof(*platdata));
856 if (ret)
857 goto err;
858
859 ret = platform_device_add(pdev);
860 if (ret)
861 goto err;
862
863 return pdev;
864
865err:
866 platform_device_put(pdev);
fe6e125e
RZ
867put_id:
868 ida_simple_remove(&ci_ida, id);
cbc6dc2a
RZ
869 return ERR_PTR(ret);
870}
8e22978c 871EXPORT_SYMBOL_GPL(ci_hdrc_add_device);
cbc6dc2a 872
8e22978c 873void ci_hdrc_remove_device(struct platform_device *pdev)
cbc6dc2a 874{
98c35534 875 int id = pdev->id;
cbc6dc2a 876 platform_device_unregister(pdev);
98c35534 877 ida_simple_remove(&ci_ida, id);
cbc6dc2a 878}
8e22978c 879EXPORT_SYMBOL_GPL(ci_hdrc_remove_device);
cbc6dc2a 880
3f124d23
PC
881static inline void ci_role_destroy(struct ci_hdrc *ci)
882{
883 ci_hdrc_gadget_destroy(ci);
884 ci_hdrc_host_destroy(ci);
cbec6bd5
PC
885 if (ci->is_otg)
886 ci_hdrc_otg_destroy(ci);
3f124d23
PC
887}
888
577b232f
PC
889static void ci_get_otg_capable(struct ci_hdrc *ci)
890{
891 if (ci->platdata->flags & CI_HDRC_DUAL_ROLE_NOT_OTG)
892 ci->is_otg = false;
893 else
894 ci->is_otg = (hw_read(ci, CAP_DCCPARAMS,
895 DCCPARAMS_DC | DCCPARAMS_HC)
896 == (DCCPARAMS_DC | DCCPARAMS_HC));
2e37cfd8 897 if (ci->is_otg) {
577b232f 898 dev_dbg(ci->dev, "It is OTG capable controller\n");
2e37cfd8
PC
899 /* Disable and clear all OTG irq */
900 hw_write_otgsc(ci, OTGSC_INT_EN_BITS | OTGSC_INT_STATUS_BITS,
901 OTGSC_INT_STATUS_BITS);
902 }
577b232f
PC
903}
904
41ac7b3a 905static int ci_hdrc_probe(struct platform_device *pdev)
e443b333
AS
906{
907 struct device *dev = &pdev->dev;
8e22978c 908 struct ci_hdrc *ci;
e443b333
AS
909 struct resource *res;
910 void __iomem *base;
911 int ret;
691962d1 912 enum usb_dr_mode dr_mode;
e443b333 913
fad56745 914 if (!dev_get_platdata(dev)) {
e443b333
AS
915 dev_err(dev, "platform data missing\n");
916 return -ENODEV;
917 }
918
919 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
19290816
FB
920 base = devm_ioremap_resource(dev, res);
921 if (IS_ERR(base))
922 return PTR_ERR(base);
e443b333 923
5f36e231 924 ci = devm_kzalloc(dev, sizeof(*ci), GFP_KERNEL);
d0f99249 925 if (!ci)
5f36e231 926 return -ENOMEM;
5f36e231
AS
927
928 ci->dev = dev;
fad56745 929 ci->platdata = dev_get_platdata(dev);
ed8f8318
PC
930 ci->imx28_write_fix = !!(ci->platdata->flags &
931 CI_HDRC_IMX28_WRITE_FIX);
1f874edc
PC
932 ci->supports_runtime_pm = !!(ci->platdata->flags &
933 CI_HDRC_SUPPORTS_RUNTIME_PM);
5f36e231
AS
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 }
e443b333 940
1e5e2d3d
AT
941 if (ci->platdata->phy) {
942 ci->phy = ci->platdata->phy;
943 } else if (ci->platdata->usb_phy) {
ef44cb42 944 ci->usb_phy = ci->platdata->usb_phy;
1e5e2d3d 945 } else {
21a5b579
AT
946 ci->phy = devm_phy_get(dev->parent, "usb-phy");
947 ci->usb_phy = devm_usb_get_phy(dev->parent, USB_PHY_TYPE_USB2);
c859aa65 948
1e5e2d3d
AT
949 /* if both generic PHY and USB PHY layers aren't enabled */
950 if (PTR_ERR(ci->phy) == -ENOSYS &&
951 PTR_ERR(ci->usb_phy) == -ENXIO)
952 return -ENXIO;
953
954 if (IS_ERR(ci->phy) && IS_ERR(ci->usb_phy))
955 return -EPROBE_DEFER;
c859aa65 956
1e5e2d3d
AT
957 if (IS_ERR(ci->phy))
958 ci->phy = NULL;
959 else if (IS_ERR(ci->usb_phy))
960 ci->usb_phy = NULL;
c859aa65
PC
961 }
962
d03cccff 963 ret = ci_usb_phy_init(ci);
74475ede
PC
964 if (ret) {
965 dev_err(dev, "unable to init phy: %d\n", ret);
966 return ret;
967 }
968
eb70e5ab
AS
969 ci->hw_bank.phys = res->start;
970
5f36e231
AS
971 ci->irq = platform_get_irq(pdev, 0);
972 if (ci->irq < 0) {
e443b333 973 dev_err(dev, "missing IRQ\n");
42d18212 974 ret = ci->irq;
c859aa65 975 goto deinit_phy;
5f36e231
AS
976 }
977
577b232f
PC
978 ci_get_otg_capable(ci);
979
691962d1 980 dr_mode = ci->platdata->dr_mode;
5f36e231 981 /* initialize role(s) before the interrupt is requested */
691962d1
SH
982 if (dr_mode == USB_DR_MODE_OTG || dr_mode == USB_DR_MODE_HOST) {
983 ret = ci_hdrc_host_init(ci);
984 if (ret)
985 dev_info(dev, "doesn't support host\n");
986 }
eb70e5ab 987
691962d1
SH
988 if (dr_mode == USB_DR_MODE_OTG || dr_mode == USB_DR_MODE_PERIPHERAL) {
989 ret = ci_hdrc_gadget_init(ci);
990 if (ret)
991 dev_info(dev, "doesn't support gadget\n");
992 }
5f36e231
AS
993
994 if (!ci->roles[CI_ROLE_HOST] && !ci->roles[CI_ROLE_GADGET]) {
995 dev_err(dev, "no supported roles\n");
74475ede 996 ret = -ENODEV;
c859aa65 997 goto deinit_phy;
cbec6bd5
PC
998 }
999
27c62c2d 1000 if (ci->is_otg && ci->roles[CI_ROLE_GADGET]) {
cbec6bd5
PC
1001 ret = ci_hdrc_otg_init(ci);
1002 if (ret) {
1003 dev_err(dev, "init otg fails, ret = %d\n", ret);
1004 goto stop;
1005 }
5f36e231
AS
1006 }
1007
1008 if (ci->roles[CI_ROLE_HOST] && ci->roles[CI_ROLE_GADGET]) {
577b232f 1009 if (ci->is_otg) {
577b232f 1010 ci->role = ci_otg_role(ci);
0c33bf78
LJ
1011 /* Enable ID change irq */
1012 hw_write_otgsc(ci, OTGSC_IDIE, OTGSC_IDIE);
577b232f
PC
1013 } else {
1014 /*
1015 * If the controller is not OTG capable, but support
1016 * role switch, the defalt role is gadget, and the
1017 * user can switch it through debugfs.
1018 */
1019 ci->role = CI_ROLE_GADGET;
1020 }
5f36e231
AS
1021 } else {
1022 ci->role = ci->roles[CI_ROLE_HOST]
1023 ? CI_ROLE_HOST
1024 : CI_ROLE_GADGET;
1025 }
1026
4dcf720c 1027 if (!ci_otg_is_fsm_mode(ci)) {
961ea496
LJ
1028 /* only update vbus status for peripheral */
1029 if (ci->role == CI_ROLE_GADGET)
1030 ci_handle_vbus_change(ci);
1031
4dcf720c
LJ
1032 ret = ci_role_start(ci, ci->role);
1033 if (ret) {
1034 dev_err(dev, "can't start %s role\n",
1035 ci_role(ci)->name);
1036 goto stop;
1037 }
e443b333
AS
1038 }
1039
24c498df 1040 platform_set_drvdata(pdev, ci);
4c503dd5
PC
1041 ret = devm_request_irq(dev, ci->irq, ci_irq, IRQF_SHARED,
1042 ci->platdata->name, ci);
5f36e231
AS
1043 if (ret)
1044 goto stop;
e443b333 1045
3ecb3e09
II
1046 ret = ci_extcon_register(ci);
1047 if (ret)
1048 goto stop;
1049
1f874edc
PC
1050 if (ci->supports_runtime_pm) {
1051 pm_runtime_set_active(&pdev->dev);
1052 pm_runtime_enable(&pdev->dev);
1053 pm_runtime_set_autosuspend_delay(&pdev->dev, 2000);
1054 pm_runtime_mark_last_busy(ci->dev);
1055 pm_runtime_use_autosuspend(&pdev->dev);
1056 }
1057
4dcf720c
LJ
1058 if (ci_otg_is_fsm_mode(ci))
1059 ci_hdrc_otg_fsm_start(ci);
1060
f8efa766
PC
1061 device_set_wakeup_capable(&pdev->dev, true);
1062
adf0f735
AS
1063 ret = dbg_create_files(ci);
1064 if (!ret)
1065 return 0;
5f36e231 1066
3ecb3e09 1067 ci_extcon_unregister(ci);
5f36e231 1068stop:
3f124d23 1069 ci_role_destroy(ci);
c859aa65 1070deinit_phy:
1e5e2d3d 1071 ci_usb_phy_exit(ci);
e443b333
AS
1072
1073 return ret;
1074}
1075
fb4e98ab 1076static int ci_hdrc_remove(struct platform_device *pdev)
e443b333 1077{
8e22978c 1078 struct ci_hdrc *ci = platform_get_drvdata(pdev);
e443b333 1079
1f874edc
PC
1080 if (ci->supports_runtime_pm) {
1081 pm_runtime_get_sync(&pdev->dev);
1082 pm_runtime_disable(&pdev->dev);
1083 pm_runtime_put_noidle(&pdev->dev);
1084 }
1085
adf0f735 1086 dbg_remove_files(ci);
3ecb3e09 1087 ci_extcon_unregister(ci);
3f124d23 1088 ci_role_destroy(ci);
864cf949 1089 ci_hdrc_enter_lpm(ci, true);
1e5e2d3d 1090 ci_usb_phy_exit(ci);
e443b333
AS
1091
1092 return 0;
1093}
1094
1f874edc 1095#ifdef CONFIG_PM
961ea496
LJ
1096/* Prepare wakeup by SRP before suspend */
1097static void ci_otg_fsm_suspend_for_srp(struct ci_hdrc *ci)
1098{
1099 if ((ci->fsm.otg->state == OTG_STATE_A_IDLE) &&
1100 !hw_read_otgsc(ci, OTGSC_ID)) {
1101 hw_write(ci, OP_PORTSC, PORTSC_W1C_BITS | PORTSC_PP,
1102 PORTSC_PP);
1103 hw_write(ci, OP_PORTSC, PORTSC_W1C_BITS | PORTSC_WKCN,
1104 PORTSC_WKCN);
1105 }
1106}
1107
1108/* Handle SRP when wakeup by data pulse */
1109static void ci_otg_fsm_wakeup_by_srp(struct ci_hdrc *ci)
1110{
1111 if ((ci->fsm.otg->state == OTG_STATE_A_IDLE) &&
1112 (ci->fsm.a_bus_drop == 1) && (ci->fsm.a_bus_req == 0)) {
1113 if (!hw_read_otgsc(ci, OTGSC_ID)) {
1114 ci->fsm.a_srp_det = 1;
1115 ci->fsm.a_bus_drop = 0;
1116 } else {
1117 ci->fsm.id = 1;
1118 }
1119 ci_otg_queue_work(ci);
1120 }
1121}
1122
8076932f
PC
1123static void ci_controller_suspend(struct ci_hdrc *ci)
1124{
1f874edc 1125 disable_irq(ci->irq);
8076932f 1126 ci_hdrc_enter_lpm(ci, true);
1fbf4628
FE
1127 if (ci->platdata->phy_clkgate_delay_us)
1128 usleep_range(ci->platdata->phy_clkgate_delay_us,
1129 ci->platdata->phy_clkgate_delay_us + 50);
1f874edc
PC
1130 usb_phy_set_suspend(ci->usb_phy, 1);
1131 ci->in_lpm = true;
1132 enable_irq(ci->irq);
8076932f
PC
1133}
1134
1135static int ci_controller_resume(struct device *dev)
1136{
1137 struct ci_hdrc *ci = dev_get_drvdata(dev);
1138
1139 dev_dbg(dev, "at %s\n", __func__);
1140
1f874edc
PC
1141 if (!ci->in_lpm) {
1142 WARN_ON(1);
1143 return 0;
1144 }
8076932f 1145
1f874edc 1146 ci_hdrc_enter_lpm(ci, false);
8076932f
PC
1147 if (ci->usb_phy) {
1148 usb_phy_set_suspend(ci->usb_phy, 0);
1149 usb_phy_set_wakeup(ci->usb_phy, false);
1150 hw_wait_phy_stable();
1151 }
1152
1f874edc
PC
1153 ci->in_lpm = false;
1154 if (ci->wakeup_int) {
1155 ci->wakeup_int = false;
1156 pm_runtime_mark_last_busy(ci->dev);
1157 pm_runtime_put_autosuspend(ci->dev);
1158 enable_irq(ci->irq);
961ea496
LJ
1159 if (ci_otg_is_fsm_mode(ci))
1160 ci_otg_fsm_wakeup_by_srp(ci);
1f874edc
PC
1161 }
1162
8076932f
PC
1163 return 0;
1164}
1165
1f874edc 1166#ifdef CONFIG_PM_SLEEP
8076932f
PC
1167static int ci_suspend(struct device *dev)
1168{
1169 struct ci_hdrc *ci = dev_get_drvdata(dev);
1170
1171 if (ci->wq)
1172 flush_workqueue(ci->wq);
1f874edc
PC
1173 /*
1174 * Controller needs to be active during suspend, otherwise the core
1175 * may run resume when the parent is at suspend if other driver's
1176 * suspend fails, it occurs before parent's suspend has not started,
1177 * but the core suspend has finished.
1178 */
1179 if (ci->in_lpm)
1180 pm_runtime_resume(dev);
1181
1182 if (ci->in_lpm) {
1183 WARN_ON(1);
1184 return 0;
1185 }
8076932f 1186
f8efa766 1187 if (device_may_wakeup(dev)) {
961ea496
LJ
1188 if (ci_otg_is_fsm_mode(ci))
1189 ci_otg_fsm_suspend_for_srp(ci);
1190
f8efa766
PC
1191 usb_phy_set_wakeup(ci->usb_phy, true);
1192 enable_irq_wake(ci->irq);
1193 }
1194
8076932f
PC
1195 ci_controller_suspend(ci);
1196
1197 return 0;
1198}
1199
1200static int ci_resume(struct device *dev)
1201{
1f874edc
PC
1202 struct ci_hdrc *ci = dev_get_drvdata(dev);
1203 int ret;
1204
f8efa766
PC
1205 if (device_may_wakeup(dev))
1206 disable_irq_wake(ci->irq);
1207
1f874edc
PC
1208 ret = ci_controller_resume(dev);
1209 if (ret)
1210 return ret;
1211
1212 if (ci->supports_runtime_pm) {
1213 pm_runtime_disable(dev);
1214 pm_runtime_set_active(dev);
1215 pm_runtime_enable(dev);
1216 }
1217
1218 return ret;
8076932f
PC
1219}
1220#endif /* CONFIG_PM_SLEEP */
1221
1f874edc
PC
1222static int ci_runtime_suspend(struct device *dev)
1223{
1224 struct ci_hdrc *ci = dev_get_drvdata(dev);
1225
1226 dev_dbg(dev, "at %s\n", __func__);
1227
1228 if (ci->in_lpm) {
1229 WARN_ON(1);
1230 return 0;
1231 }
1232
961ea496
LJ
1233 if (ci_otg_is_fsm_mode(ci))
1234 ci_otg_fsm_suspend_for_srp(ci);
1235
1f874edc
PC
1236 usb_phy_set_wakeup(ci->usb_phy, true);
1237 ci_controller_suspend(ci);
1238
1239 return 0;
1240}
1241
1242static int ci_runtime_resume(struct device *dev)
1243{
1244 return ci_controller_resume(dev);
1245}
1246
1247#endif /* CONFIG_PM */
8076932f
PC
1248static const struct dev_pm_ops ci_pm_ops = {
1249 SET_SYSTEM_SLEEP_PM_OPS(ci_suspend, ci_resume)
1f874edc 1250 SET_RUNTIME_PM_OPS(ci_runtime_suspend, ci_runtime_resume, NULL)
8076932f 1251};
1f874edc 1252
5f36e231
AS
1253static struct platform_driver ci_hdrc_driver = {
1254 .probe = ci_hdrc_probe,
7690417d 1255 .remove = ci_hdrc_remove,
e443b333 1256 .driver = {
5f36e231 1257 .name = "ci_hdrc",
8076932f 1258 .pm = &ci_pm_ops,
e443b333
AS
1259 },
1260};
1261
2f01a33b
PC
1262static int __init ci_hdrc_platform_register(void)
1263{
1264 ci_hdrc_host_driver_init();
1265 return platform_driver_register(&ci_hdrc_driver);
1266}
1267module_init(ci_hdrc_platform_register);
1268
1269static void __exit ci_hdrc_platform_unregister(void)
1270{
1271 platform_driver_unregister(&ci_hdrc_driver);
1272}
1273module_exit(ci_hdrc_platform_unregister);
e443b333 1274
5f36e231 1275MODULE_ALIAS("platform:ci_hdrc");
e443b333
AS
1276MODULE_LICENSE("GPL v2");
1277MODULE_AUTHOR("David Lopo <dlopo@chipidea.mips.com>");
5f36e231 1278MODULE_DESCRIPTION("ChipIdea HDRC Driver");
This page took 0.280949 seconds and 5 git commands to generate.