1 // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
3 * core_intr.c - DesignWare HS OTG Controller common interrupt handling
5 * Copyright (C) 2004-2013 Synopsys, Inc.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions, and the following disclaimer,
12 * without modification.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. The names of the above-listed copyright holders may not be used
17 * to endorse or promote products derived from this software without
18 * specific prior written permission.
20 * ALTERNATIVELY, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") as published by the Free Software
22 * Foundation; either version 2 of the License, or (at your option) any
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
26 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
27 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
29 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
31 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
32 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 * This file contains the common interrupt handlers
41 #include <linux/kernel.h>
42 #include <linux/module.h>
43 #include <linux/moduleparam.h>
44 #include <linux/spinlock.h>
45 #include <linux/interrupt.h>
46 #include <linux/dma-mapping.h>
48 #include <linux/slab.h>
49 #include <linux/usb.h>
51 #include <linux/usb/hcd.h>
52 #include <linux/usb/ch11.h>
57 static const char *dwc2_op_state_str(struct dwc2_hsotg
*hsotg
)
59 switch (hsotg
->op_state
) {
60 case OTG_STATE_A_HOST
:
62 case OTG_STATE_A_SUSPEND
:
64 case OTG_STATE_A_PERIPHERAL
:
65 return "a_peripheral";
66 case OTG_STATE_B_PERIPHERAL
:
67 return "b_peripheral";
68 case OTG_STATE_B_HOST
:
76 * dwc2_handle_usb_port_intr - handles OTG PRTINT interrupts.
77 * When the PRTINT interrupt fires, there are certain status bits in the Host
78 * Port that needs to get cleared.
80 * @hsotg: Programming view of DWC_otg controller
82 static void dwc2_handle_usb_port_intr(struct dwc2_hsotg
*hsotg
)
84 u32 hprt0
= dwc2_readl(hsotg
, HPRT0
);
86 if (hprt0
& HPRT0_ENACHG
) {
88 dwc2_writel(hsotg
, hprt0
, HPRT0
);
93 * dwc2_handle_mode_mismatch_intr() - Logs a mode mismatch warning message
95 * @hsotg: Programming view of DWC_otg controller
97 static void dwc2_handle_mode_mismatch_intr(struct dwc2_hsotg
*hsotg
)
100 dwc2_writel(hsotg
, GINTSTS_MODEMIS
, GINTSTS
);
102 dev_warn(hsotg
->dev
, "Mode Mismatch Interrupt: currently in %s mode\n",
103 dwc2_is_host_mode(hsotg
) ? "Host" : "Device");
107 * dwc2_handle_otg_intr() - Handles the OTG Interrupts. It reads the OTG
108 * Interrupt Register (GOTGINT) to determine what interrupt has occurred.
110 * @hsotg: Programming view of DWC_otg controller
112 static void dwc2_handle_otg_intr(struct dwc2_hsotg
*hsotg
)
118 gotgint
= dwc2_readl(hsotg
, GOTGINT
);
119 gotgctl
= dwc2_readl(hsotg
, GOTGCTL
);
120 dev_dbg(hsotg
->dev
, "++OTG Interrupt gotgint=%0x [%s]\n", gotgint
,
121 dwc2_op_state_str(hsotg
));
123 if (gotgint
& GOTGINT_SES_END_DET
) {
125 " ++OTG Interrupt: Session End Detected++ (%s)\n",
126 dwc2_op_state_str(hsotg
));
127 gotgctl
= dwc2_readl(hsotg
, GOTGCTL
);
129 if (dwc2_is_device_mode(hsotg
))
130 dwc2_hsotg_disconnect(hsotg
);
132 if (hsotg
->op_state
== OTG_STATE_B_HOST
) {
133 hsotg
->op_state
= OTG_STATE_B_PERIPHERAL
;
136 * If not B_HOST and Device HNP still set, HNP did
139 if (gotgctl
& GOTGCTL_DEVHNPEN
) {
140 dev_dbg(hsotg
->dev
, "Session End Detected\n");
142 "Device Not Connected/Responding!\n");
146 * If Session End Detected the B-Cable has been
149 /* Reset to a clean state */
150 hsotg
->lx_state
= DWC2_L0
;
153 gotgctl
= dwc2_readl(hsotg
, GOTGCTL
);
154 gotgctl
&= ~GOTGCTL_DEVHNPEN
;
155 dwc2_writel(hsotg
, gotgctl
, GOTGCTL
);
158 if (gotgint
& GOTGINT_SES_REQ_SUC_STS_CHNG
) {
160 " ++OTG Interrupt: Session Request Success Status Change++\n");
161 gotgctl
= dwc2_readl(hsotg
, GOTGCTL
);
162 if (gotgctl
& GOTGCTL_SESREQSCS
) {
163 if (hsotg
->params
.phy_type
== DWC2_PHY_TYPE_PARAM_FS
&&
164 hsotg
->params
.i2c_enable
) {
165 hsotg
->srp_success
= 1;
167 /* Clear Session Request */
168 gotgctl
= dwc2_readl(hsotg
, GOTGCTL
);
169 gotgctl
&= ~GOTGCTL_SESREQ
;
170 dwc2_writel(hsotg
, gotgctl
, GOTGCTL
);
175 if (gotgint
& GOTGINT_HST_NEG_SUC_STS_CHNG
) {
177 * Print statements during the HNP interrupt handling
178 * can cause it to fail
180 gotgctl
= dwc2_readl(hsotg
, GOTGCTL
);
182 * WA for 3.00a- HW is not setting cur_mode, even sometimes
185 if (hsotg
->hw_params
.snpsid
>= DWC2_CORE_REV_3_00a
)
187 if (gotgctl
& GOTGCTL_HSTNEGSCS
) {
188 if (dwc2_is_host_mode(hsotg
)) {
189 hsotg
->op_state
= OTG_STATE_B_HOST
;
191 * Need to disable SOF interrupt immediately.
192 * When switching from device to host, the PCD
193 * interrupt handler won't handle the interrupt
194 * if host mode is already set. The HCD
195 * interrupt handler won't get called if the
196 * HCD state is HALT. This means that the
197 * interrupt does not get handled and Linux
200 gintmsk
= dwc2_readl(hsotg
, GINTMSK
);
201 gintmsk
&= ~GINTSTS_SOF
;
202 dwc2_writel(hsotg
, gintmsk
, GINTMSK
);
205 * Call callback function with spin lock
208 spin_unlock(&hsotg
->lock
);
210 /* Initialize the Core for Host mode */
211 dwc2_hcd_start(hsotg
);
212 spin_lock(&hsotg
->lock
);
213 hsotg
->op_state
= OTG_STATE_B_HOST
;
216 gotgctl
= dwc2_readl(hsotg
, GOTGCTL
);
217 gotgctl
&= ~(GOTGCTL_HNPREQ
| GOTGCTL_DEVHNPEN
);
218 dwc2_writel(hsotg
, gotgctl
, GOTGCTL
);
219 dev_dbg(hsotg
->dev
, "HNP Failed\n");
221 "Device Not Connected/Responding\n");
225 if (gotgint
& GOTGINT_HST_NEG_DET
) {
227 * The disconnect interrupt is set at the same time as
228 * Host Negotiation Detected. During the mode switch all
229 * interrupts are cleared so the disconnect interrupt
230 * handler will not get executed.
233 " ++OTG Interrupt: Host Negotiation Detected++ (%s)\n",
234 (dwc2_is_host_mode(hsotg
) ? "Host" : "Device"));
235 if (dwc2_is_device_mode(hsotg
)) {
236 dev_dbg(hsotg
->dev
, "a_suspend->a_peripheral (%d)\n",
238 spin_unlock(&hsotg
->lock
);
239 dwc2_hcd_disconnect(hsotg
, false);
240 spin_lock(&hsotg
->lock
);
241 hsotg
->op_state
= OTG_STATE_A_PERIPHERAL
;
243 /* Need to disable SOF interrupt immediately */
244 gintmsk
= dwc2_readl(hsotg
, GINTMSK
);
245 gintmsk
&= ~GINTSTS_SOF
;
246 dwc2_writel(hsotg
, gintmsk
, GINTMSK
);
247 spin_unlock(&hsotg
->lock
);
248 dwc2_hcd_start(hsotg
);
249 spin_lock(&hsotg
->lock
);
250 hsotg
->op_state
= OTG_STATE_A_HOST
;
254 if (gotgint
& GOTGINT_A_DEV_TOUT_CHG
)
256 " ++OTG Interrupt: A-Device Timeout Change++\n");
257 if (gotgint
& GOTGINT_DBNCE_DONE
)
258 dev_dbg(hsotg
->dev
, " ++OTG Interrupt: Debounce Done++\n");
261 dwc2_writel(hsotg
, gotgint
, GOTGINT
);
265 * dwc2_handle_conn_id_status_change_intr() - Handles the Connector ID Status
268 * @hsotg: Programming view of DWC_otg controller
270 * Reads the OTG Interrupt Register (GOTCTL) to determine whether this is a
271 * Device to Host Mode transition or a Host to Device Mode transition. This only
272 * occurs when the cable is connected/removed from the PHY connector.
274 static void dwc2_handle_conn_id_status_change_intr(struct dwc2_hsotg
*hsotg
)
278 /* Clear interrupt */
279 dwc2_writel(hsotg
, GINTSTS_CONIDSTSCHNG
, GINTSTS
);
281 /* Need to disable SOF interrupt immediately */
282 gintmsk
= dwc2_readl(hsotg
, GINTMSK
);
283 gintmsk
&= ~GINTSTS_SOF
;
284 dwc2_writel(hsotg
, gintmsk
, GINTMSK
);
286 dev_dbg(hsotg
->dev
, " ++Connector ID Status Change Interrupt++ (%s)\n",
287 dwc2_is_host_mode(hsotg
) ? "Host" : "Device");
290 * Need to schedule a work, as there are possible DELAY function calls.
291 * Release lock before scheduling workq as it holds spinlock during
295 spin_unlock(&hsotg
->lock
);
296 queue_work(hsotg
->wq_otg
, &hsotg
->wf_otg
);
297 spin_lock(&hsotg
->lock
);
302 * dwc2_handle_session_req_intr() - This interrupt indicates that a device is
303 * initiating the Session Request Protocol to request the host to turn on bus
304 * power so a new session can begin
306 * @hsotg: Programming view of DWC_otg controller
308 * This handler responds by turning on bus power. If the DWC_otg controller is
309 * in low power mode, this handler brings the controller out of low power mode
310 * before turning on bus power.
312 static void dwc2_handle_session_req_intr(struct dwc2_hsotg
*hsotg
)
316 /* Clear interrupt */
317 dwc2_writel(hsotg
, GINTSTS_SESSREQINT
, GINTSTS
);
319 dev_dbg(hsotg
->dev
, "Session request interrupt - lx_state=%d\n",
322 if (dwc2_is_device_mode(hsotg
)) {
323 if (hsotg
->lx_state
== DWC2_L2
) {
324 ret
= dwc2_exit_partial_power_down(hsotg
, true);
325 if (ret
&& (ret
!= -ENOTSUPP
))
327 "exit power_down failed\n");
331 * Report disconnect if there is any previous session
334 dwc2_hsotg_disconnect(hsotg
);
339 * dwc2_wakeup_from_lpm_l1 - Exit the device from LPM L1 state
341 * @hsotg: Programming view of DWC_otg controller
344 static void dwc2_wakeup_from_lpm_l1(struct dwc2_hsotg
*hsotg
)
349 if (hsotg
->lx_state
!= DWC2_L1
) {
350 dev_err(hsotg
->dev
, "Core isn't in DWC2_L1 state\n");
354 glpmcfg
= dwc2_readl(hsotg
, GLPMCFG
);
355 if (dwc2_is_device_mode(hsotg
)) {
356 dev_dbg(hsotg
->dev
, "Exit from L1 state\n");
357 glpmcfg
&= ~GLPMCFG_ENBLSLPM
;
358 glpmcfg
&= ~GLPMCFG_HIRD_THRES_EN
;
359 dwc2_writel(hsotg
, glpmcfg
, GLPMCFG
);
362 glpmcfg
= dwc2_readl(hsotg
, GLPMCFG
);
364 if (!(glpmcfg
& (GLPMCFG_COREL1RES_MASK
|
365 GLPMCFG_L1RESUMEOK
| GLPMCFG_SLPSTS
)))
372 dev_err(hsotg
->dev
, "Failed to exit L1 sleep state in 200us.\n");
375 dwc2_gadget_init_lpm(hsotg
);
378 dev_err(hsotg
->dev
, "Host side LPM is not supported.\n");
382 /* Change to L0 state */
383 hsotg
->lx_state
= DWC2_L0
;
385 /* Inform gadget to exit from L1 */
386 call_gadget(hsotg
, resume
);
390 * This interrupt indicates that the DWC_otg controller has detected a
391 * resume or remote wakeup sequence. If the DWC_otg controller is in
392 * low power mode, the handler must brings the controller out of low
393 * power mode. The controller automatically begins resume signaling.
394 * The handler schedules a time to stop resume signaling.
396 static void dwc2_handle_wakeup_detected_intr(struct dwc2_hsotg
*hsotg
)
400 /* Clear interrupt */
401 dwc2_writel(hsotg
, GINTSTS_WKUPINT
, GINTSTS
);
403 dev_dbg(hsotg
->dev
, "++Resume or Remote Wakeup Detected Interrupt++\n");
404 dev_dbg(hsotg
->dev
, "%s lxstate = %d\n", __func__
, hsotg
->lx_state
);
406 if (hsotg
->lx_state
== DWC2_L1
) {
407 dwc2_wakeup_from_lpm_l1(hsotg
);
411 if (dwc2_is_device_mode(hsotg
)) {
412 dev_dbg(hsotg
->dev
, "DSTS=0x%0x\n",
413 dwc2_readl(hsotg
, DSTS
));
414 if (hsotg
->lx_state
== DWC2_L2
) {
415 u32 dctl
= dwc2_readl(hsotg
, DCTL
);
417 /* Clear Remote Wakeup Signaling */
418 dctl
&= ~DCTL_RMTWKUPSIG
;
419 dwc2_writel(hsotg
, dctl
, DCTL
);
420 ret
= dwc2_exit_partial_power_down(hsotg
, true);
421 if (ret
&& (ret
!= -ENOTSUPP
))
422 dev_err(hsotg
->dev
, "exit power_down failed\n");
424 /* Change to L0 state */
425 hsotg
->lx_state
= DWC2_L0
;
426 call_gadget(hsotg
, resume
);
428 /* Change to L0 state */
429 hsotg
->lx_state
= DWC2_L0
;
432 if (hsotg
->params
.power_down
)
435 if (hsotg
->lx_state
!= DWC2_L1
) {
436 u32 pcgcctl
= dwc2_readl(hsotg
, PCGCTL
);
438 /* Restart the Phy Clock */
439 pcgcctl
&= ~PCGCTL_STOPPCLK
;
440 dwc2_writel(hsotg
, pcgcctl
, PCGCTL
);
443 * If we've got this quirk then the PHY is stuck upon
444 * wakeup. Assert reset. This will propagate out and
445 * eventually we'll re-enumerate the device. Not great
446 * but the best we can do. We can't call phy_reset()
447 * at interrupt time but there's no hurry, so we'll
448 * schedule it for later.
450 if (hsotg
->reset_phy_on_wake
)
451 dwc2_host_schedule_phy_reset(hsotg
);
453 mod_timer(&hsotg
->wkp_timer
,
454 jiffies
+ msecs_to_jiffies(71));
456 /* Change to L0 state */
457 hsotg
->lx_state
= DWC2_L0
;
463 * This interrupt indicates that a device has been disconnected from the
466 static void dwc2_handle_disconnect_intr(struct dwc2_hsotg
*hsotg
)
468 dwc2_writel(hsotg
, GINTSTS_DISCONNINT
, GINTSTS
);
470 dev_dbg(hsotg
->dev
, "++Disconnect Detected Interrupt++ (%s) %s\n",
471 dwc2_is_host_mode(hsotg
) ? "Host" : "Device",
472 dwc2_op_state_str(hsotg
));
474 if (hsotg
->op_state
== OTG_STATE_A_HOST
)
475 dwc2_hcd_disconnect(hsotg
, false);
479 * This interrupt indicates that SUSPEND state has been detected on the USB.
481 * For HNP the USB Suspend interrupt signals the change from "a_peripheral"
484 * When power management is enabled the core will be put in low power mode.
486 static void dwc2_handle_usb_suspend_intr(struct dwc2_hsotg
*hsotg
)
491 /* Clear interrupt */
492 dwc2_writel(hsotg
, GINTSTS_USBSUSP
, GINTSTS
);
494 dev_dbg(hsotg
->dev
, "USB SUSPEND\n");
496 if (dwc2_is_device_mode(hsotg
)) {
498 * Check the Device status register to determine if the Suspend
501 dsts
= dwc2_readl(hsotg
, DSTS
);
502 dev_dbg(hsotg
->dev
, "%s: DSTS=0x%0x\n", __func__
, dsts
);
504 "DSTS.Suspend Status=%d HWCFG4.Power Optimize=%d HWCFG4.Hibernation=%d\n",
505 !!(dsts
& DSTS_SUSPSTS
),
506 hsotg
->hw_params
.power_optimized
,
507 hsotg
->hw_params
.hibernation
);
509 /* Ignore suspend request before enumeration */
510 if (!dwc2_is_device_connected(hsotg
)) {
512 "ignore suspend request before enumeration\n");
515 if (dsts
& DSTS_SUSPSTS
) {
516 if (hsotg
->hw_params
.power_optimized
) {
517 ret
= dwc2_enter_partial_power_down(hsotg
);
519 if (ret
!= -ENOTSUPP
)
521 "%s: enter partial_power_down failed\n",
523 goto skip_power_saving
;
528 /* Ask phy to be suspended */
529 if (!IS_ERR_OR_NULL(hsotg
->uphy
))
530 usb_phy_set_suspend(hsotg
->uphy
, true);
533 if (hsotg
->hw_params
.hibernation
) {
534 ret
= dwc2_enter_hibernation(hsotg
, 0);
535 if (ret
&& ret
!= -ENOTSUPP
)
537 "%s: enter hibernation failed\n",
542 * Change to L2 (suspend) state before releasing
545 hsotg
->lx_state
= DWC2_L2
;
547 /* Call gadget suspend callback */
548 call_gadget(hsotg
, suspend
);
551 if (hsotg
->op_state
== OTG_STATE_A_PERIPHERAL
) {
552 dev_dbg(hsotg
->dev
, "a_peripheral->a_host\n");
554 /* Change to L2 (suspend) state */
555 hsotg
->lx_state
= DWC2_L2
;
556 /* Clear the a_peripheral flag, back to a_host */
557 spin_unlock(&hsotg
->lock
);
558 dwc2_hcd_start(hsotg
);
559 spin_lock(&hsotg
->lock
);
560 hsotg
->op_state
= OTG_STATE_A_HOST
;
566 * dwc2_handle_lpm_intr - GINTSTS_LPMTRANRCVD Interrupt handler
568 * @hsotg: Programming view of DWC_otg controller
571 static void dwc2_handle_lpm_intr(struct dwc2_hsotg
*hsotg
)
580 /* Clear interrupt */
581 dwc2_writel(hsotg
, GINTSTS_LPMTRANRCVD
, GINTSTS
);
583 glpmcfg
= dwc2_readl(hsotg
, GLPMCFG
);
585 if (!(glpmcfg
& GLPMCFG_LPMCAP
)) {
586 dev_err(hsotg
->dev
, "Unexpected LPM interrupt\n");
590 hird
= (glpmcfg
& GLPMCFG_HIRD_MASK
) >> GLPMCFG_HIRD_SHIFT
;
591 hird_thres
= (glpmcfg
& GLPMCFG_HIRD_THRES_MASK
&
592 ~GLPMCFG_HIRD_THRES_EN
) >> GLPMCFG_HIRD_THRES_SHIFT
;
593 hird_thres_en
= glpmcfg
& GLPMCFG_HIRD_THRES_EN
;
594 enslpm
= glpmcfg
& GLPMCFG_ENBLSLPM
;
596 if (dwc2_is_device_mode(hsotg
)) {
597 dev_dbg(hsotg
->dev
, "HIRD_THRES_EN = %d\n", hird_thres_en
);
599 if (hird_thres_en
&& hird
>= hird_thres
) {
600 dev_dbg(hsotg
->dev
, "L1 with utmi_l1_suspend_n\n");
602 dev_dbg(hsotg
->dev
, "L1 with utmi_sleep_n\n");
604 dev_dbg(hsotg
->dev
, "Entering Sleep with L1 Gating\n");
606 pcgcctl
= dwc2_readl(hsotg
, PCGCTL
);
607 pcgcctl
|= PCGCTL_ENBL_SLEEP_GATING
;
608 dwc2_writel(hsotg
, pcgcctl
, PCGCTL
);
611 * Examine prt_sleep_sts after TL1TokenTetry period max (10 us)
615 glpmcfg
= dwc2_readl(hsotg
, GLPMCFG
);
617 if (glpmcfg
& GLPMCFG_SLPSTS
) {
618 /* Save the current state */
619 hsotg
->lx_state
= DWC2_L1
;
621 "Core is in L1 sleep glpmcfg=%08x\n", glpmcfg
);
623 /* Inform gadget that we are in L1 state */
624 call_gadget(hsotg
, suspend
);
629 #define GINTMSK_COMMON (GINTSTS_WKUPINT | GINTSTS_SESSREQINT | \
630 GINTSTS_CONIDSTSCHNG | GINTSTS_OTGINT | \
631 GINTSTS_MODEMIS | GINTSTS_DISCONNINT | \
632 GINTSTS_USBSUSP | GINTSTS_PRTINT | \
636 * This function returns the Core Interrupt register
638 static u32
dwc2_read_common_intr(struct dwc2_hsotg
*hsotg
)
643 u32 gintmsk_common
= GINTMSK_COMMON
;
645 gintsts
= dwc2_readl(hsotg
, GINTSTS
);
646 gintmsk
= dwc2_readl(hsotg
, GINTMSK
);
647 gahbcfg
= dwc2_readl(hsotg
, GAHBCFG
);
649 /* If any common interrupts set */
650 if (gintsts
& gintmsk_common
)
651 dev_dbg(hsotg
->dev
, "gintsts=%08x gintmsk=%08x\n",
654 if (gahbcfg
& GAHBCFG_GLBL_INTR_EN
)
655 return gintsts
& gintmsk
& gintmsk_common
;
661 * GPWRDN interrupt handler.
663 * The GPWRDN interrupts are those that occur in both Host and
664 * Device mode while core is in hibernated state.
666 static void dwc2_handle_gpwrdn_intr(struct dwc2_hsotg
*hsotg
)
671 gpwrdn
= dwc2_readl(hsotg
, GPWRDN
);
672 /* clear all interrupt */
673 dwc2_writel(hsotg
, gpwrdn
, GPWRDN
);
674 linestate
= (gpwrdn
& GPWRDN_LINESTATE_MASK
) >> GPWRDN_LINESTATE_SHIFT
;
676 "%s: dwc2_handle_gpwrdwn_intr called gpwrdn= %08x\n", __func__
,
679 if ((gpwrdn
& GPWRDN_DISCONN_DET
) &&
680 (gpwrdn
& GPWRDN_DISCONN_DET_MSK
) && !linestate
) {
683 dev_dbg(hsotg
->dev
, "%s: GPWRDN_DISCONN_DET\n", __func__
);
685 /* Switch-on voltage to the core */
686 gpwrdn_tmp
= dwc2_readl(hsotg
, GPWRDN
);
687 gpwrdn_tmp
&= ~GPWRDN_PWRDNSWTCH
;
688 dwc2_writel(hsotg
, gpwrdn_tmp
, GPWRDN
);
692 gpwrdn_tmp
= dwc2_readl(hsotg
, GPWRDN
);
693 gpwrdn_tmp
&= ~GPWRDN_PWRDNRSTN
;
694 dwc2_writel(hsotg
, gpwrdn_tmp
, GPWRDN
);
697 /* Disable Power Down Clamp */
698 gpwrdn_tmp
= dwc2_readl(hsotg
, GPWRDN
);
699 gpwrdn_tmp
&= ~GPWRDN_PWRDNCLMP
;
700 dwc2_writel(hsotg
, gpwrdn_tmp
, GPWRDN
);
703 /* Deassert reset core */
704 gpwrdn_tmp
= dwc2_readl(hsotg
, GPWRDN
);
705 gpwrdn_tmp
|= GPWRDN_PWRDNRSTN
;
706 dwc2_writel(hsotg
, gpwrdn_tmp
, GPWRDN
);
709 /* Disable PMU interrupt */
710 gpwrdn_tmp
= dwc2_readl(hsotg
, GPWRDN
);
711 gpwrdn_tmp
&= ~GPWRDN_PMUINTSEL
;
712 dwc2_writel(hsotg
, gpwrdn_tmp
, GPWRDN
);
714 /* De-assert Wakeup Logic */
715 gpwrdn_tmp
= dwc2_readl(hsotg
, GPWRDN
);
716 gpwrdn_tmp
&= ~GPWRDN_PMUACTV
;
717 dwc2_writel(hsotg
, gpwrdn_tmp
, GPWRDN
);
719 hsotg
->hibernated
= 0;
721 if (gpwrdn
& GPWRDN_IDSTS
) {
722 hsotg
->op_state
= OTG_STATE_B_PERIPHERAL
;
723 dwc2_core_init(hsotg
, false);
724 dwc2_enable_global_interrupts(hsotg
);
725 dwc2_hsotg_core_init_disconnected(hsotg
, false);
726 dwc2_hsotg_core_connect(hsotg
);
728 hsotg
->op_state
= OTG_STATE_A_HOST
;
730 /* Initialize the Core for Host mode */
731 dwc2_core_init(hsotg
, false);
732 dwc2_enable_global_interrupts(hsotg
);
733 dwc2_hcd_start(hsotg
);
737 if ((gpwrdn
& GPWRDN_LNSTSCHG
) &&
738 (gpwrdn
& GPWRDN_LNSTSCHG_MSK
) && linestate
) {
739 dev_dbg(hsotg
->dev
, "%s: GPWRDN_LNSTSCHG\n", __func__
);
740 if (hsotg
->hw_params
.hibernation
&&
742 if (gpwrdn
& GPWRDN_IDSTS
) {
743 dwc2_exit_hibernation(hsotg
, 0, 0, 0);
744 call_gadget(hsotg
, resume
);
746 dwc2_exit_hibernation(hsotg
, 1, 0, 1);
750 if ((gpwrdn
& GPWRDN_RST_DET
) && (gpwrdn
& GPWRDN_RST_DET_MSK
)) {
751 dev_dbg(hsotg
->dev
, "%s: GPWRDN_RST_DET\n", __func__
);
752 if (!linestate
&& (gpwrdn
& GPWRDN_BSESSVLD
))
753 dwc2_exit_hibernation(hsotg
, 0, 1, 0);
755 if ((gpwrdn
& GPWRDN_STS_CHGINT
) &&
756 (gpwrdn
& GPWRDN_STS_CHGINT_MSK
) && linestate
) {
757 dev_dbg(hsotg
->dev
, "%s: GPWRDN_STS_CHGINT\n", __func__
);
758 if (hsotg
->hw_params
.hibernation
&&
760 if (gpwrdn
& GPWRDN_IDSTS
) {
761 dwc2_exit_hibernation(hsotg
, 0, 0, 0);
762 call_gadget(hsotg
, resume
);
764 dwc2_exit_hibernation(hsotg
, 1, 0, 1);
771 * Common interrupt handler
773 * The common interrupts are those that occur in both Host and Device mode.
774 * This handler handles the following interrupts:
775 * - Mode Mismatch Interrupt
777 * - Connector ID Status Change Interrupt
778 * - Disconnect Interrupt
779 * - Session Request Interrupt
780 * - Resume / Remote Wakeup Detected Interrupt
781 * - Suspend Interrupt
783 irqreturn_t
dwc2_handle_common_intr(int irq
, void *dev
)
785 struct dwc2_hsotg
*hsotg
= dev
;
787 irqreturn_t retval
= IRQ_NONE
;
789 spin_lock(&hsotg
->lock
);
791 if (!dwc2_is_controller_alive(hsotg
)) {
792 dev_warn(hsotg
->dev
, "Controller is dead\n");
796 /* Reading current frame number value in device or host modes. */
797 if (dwc2_is_device_mode(hsotg
))
798 hsotg
->frame_number
= (dwc2_readl(hsotg
, DSTS
)
799 & DSTS_SOFFN_MASK
) >> DSTS_SOFFN_SHIFT
;
801 hsotg
->frame_number
= (dwc2_readl(hsotg
, HFNUM
)
802 & HFNUM_FRNUM_MASK
) >> HFNUM_FRNUM_SHIFT
;
804 gintsts
= dwc2_read_common_intr(hsotg
);
805 if (gintsts
& ~GINTSTS_PRTINT
)
806 retval
= IRQ_HANDLED
;
808 /* In case of hibernated state gintsts must not work */
809 if (hsotg
->hibernated
) {
810 dwc2_handle_gpwrdn_intr(hsotg
);
811 retval
= IRQ_HANDLED
;
815 if (gintsts
& GINTSTS_MODEMIS
)
816 dwc2_handle_mode_mismatch_intr(hsotg
);
817 if (gintsts
& GINTSTS_OTGINT
)
818 dwc2_handle_otg_intr(hsotg
);
819 if (gintsts
& GINTSTS_CONIDSTSCHNG
)
820 dwc2_handle_conn_id_status_change_intr(hsotg
);
821 if (gintsts
& GINTSTS_DISCONNINT
)
822 dwc2_handle_disconnect_intr(hsotg
);
823 if (gintsts
& GINTSTS_SESSREQINT
)
824 dwc2_handle_session_req_intr(hsotg
);
825 if (gintsts
& GINTSTS_WKUPINT
)
826 dwc2_handle_wakeup_detected_intr(hsotg
);
827 if (gintsts
& GINTSTS_USBSUSP
)
828 dwc2_handle_usb_suspend_intr(hsotg
);
829 if (gintsts
& GINTSTS_LPMTRANRCVD
)
830 dwc2_handle_lpm_intr(hsotg
);
832 if (gintsts
& GINTSTS_PRTINT
) {
834 * The port interrupt occurs while in device mode with HPRT0
835 * Port Enable/Disable
837 if (dwc2_is_device_mode(hsotg
)) {
839 " --Port interrupt received in Device mode--\n");
840 dwc2_handle_usb_port_intr(hsotg
);
841 retval
= IRQ_HANDLED
;
846 spin_unlock(&hsotg
->lock
);