mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-13 22:14:20 +08:00
2d8466c9a8
commit 4a237d5544
upstream.
The xhci_plat.h should not need to include the entire xhci.h header.
This can cause redefinition in dwc3 if it selectively includes some xHCI
definitions. This is a prerequisite change for a fix to disable suspend
during initialization for dwc3.
Cc: stable@vger.kernel.org
Signed-off-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Link: https://lore.kernel.org/r/310acfa01c957a10d9feaca3f7206269866ba2eb.1713394973.git.Thinh.Nguyen@synopsys.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
40 lines
856 B
C
40 lines
856 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* xHCI host controller driver for RZ/V2M
|
|
*
|
|
* Copyright (C) 2022 Renesas Electronics Corporation
|
|
*/
|
|
|
|
#include <linux/usb/rzv2m_usb3drd.h>
|
|
#include "xhci.h"
|
|
#include "xhci-plat.h"
|
|
#include "xhci-rzv2m.h"
|
|
|
|
#define RZV2M_USB3_INTEN 0x1044 /* Interrupt Enable */
|
|
|
|
#define RZV2M_USB3_INT_XHC_ENA BIT(0)
|
|
#define RZV2M_USB3_INT_HSE_ENA BIT(2)
|
|
#define RZV2M_USB3_INT_ENA_VAL (RZV2M_USB3_INT_XHC_ENA \
|
|
| RZV2M_USB3_INT_HSE_ENA)
|
|
|
|
int xhci_rzv2m_init_quirk(struct usb_hcd *hcd)
|
|
{
|
|
struct device *dev = hcd->self.controller;
|
|
|
|
rzv2m_usb3drd_reset(dev->parent, true);
|
|
|
|
return 0;
|
|
}
|
|
|
|
void xhci_rzv2m_start(struct usb_hcd *hcd)
|
|
{
|
|
u32 int_en;
|
|
|
|
if (hcd->regs) {
|
|
/* Interrupt Enable */
|
|
int_en = readl(hcd->regs + RZV2M_USB3_INTEN);
|
|
int_en |= RZV2M_USB3_INT_ENA_VAL;
|
|
writel(int_en, hcd->regs + RZV2M_USB3_INTEN);
|
|
}
|
|
}
|