developer | abd06d7 | 2022-03-03 16:13:41 +0800 | [diff] [blame] | 1 | From 9deb29cc86b8fdee6702f8d575f08f9a214cf90a Mon Sep 17 00:00:00 2001 |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 2 | From: Zhanyong Wang <zhanyong.wang@mediatek.com> |
| 3 | Date: Thu, 27 May 2021 11:44:17 +0800 |
developer | ba28e03 | 2021-12-07 10:40:00 +0800 | [diff] [blame] | 4 | Subject: [PATCH 1/2] xHCI: MT7986 USB 2.0 USBIF compliance toolkit |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 5 | |
| 6 | MT7986 USB 2.0 USBIF compliance toolkit |
| 7 | |
| 8 | Signed-off-by: Zhanyong Wang <zhanyong.wang@mediatek.com> |
| 9 | --- |
| 10 | drivers/usb/host/Kconfig | 9 +++++++++ |
developer | abd06d7 | 2022-03-03 16:13:41 +0800 | [diff] [blame] | 11 | drivers/usb/host/Makefile | 9 +++++++++ |
developer | ba28e03 | 2021-12-07 10:40:00 +0800 | [diff] [blame] | 12 | drivers/usb/host/xhci-mtk.c | 5 ++++- |
| 13 | drivers/usb/host/xhci-mtk.h | 7 +++++++ |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 14 | drivers/usb/host/xhci.c | 2 +- |
| 15 | drivers/usb/host/xhci.h | 1 + |
developer | abd06d7 | 2022-03-03 16:13:41 +0800 | [diff] [blame] | 16 | 6 files changed, 31 insertions(+), 2 deletions(-) |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 17 | |
| 18 | diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig |
| 19 | index 79b2e79dddd0..12b1bf9aa043 100644 |
| 20 | --- a/drivers/usb/host/Kconfig |
| 21 | +++ b/drivers/usb/host/Kconfig |
| 22 | @@ -69,6 +69,15 @@ config USB_XHCI_MTK |
| 23 | found in MediaTek SoCs. |
| 24 | If unsure, say N. |
| 25 | |
| 26 | +config USB_XHCI_MTK_DEBUGFS |
| 27 | + tristate "xHCI DEBUGFS support for Mediatek MT65xx" |
| 28 | + depends on USB_XHCI_MTK && DEBUG_FS |
| 29 | + default y |
| 30 | + ---help--- |
| 31 | + Say 'Y' to enable the debugfs support for the xHCI host controller |
| 32 | + found in Mediatek MT65xx SoCs. |
| 33 | + If don't need, say N. |
| 34 | + |
| 35 | config USB_XHCI_MVEBU |
| 36 | tristate "xHCI support for Marvell Armada 375/38x/37xx" |
| 37 | select USB_XHCI_PLATFORM |
| 38 | diff --git a/drivers/usb/host/Makefile b/drivers/usb/host/Makefile |
developer | abd06d7 | 2022-03-03 16:13:41 +0800 | [diff] [blame] | 39 | index b191361257cc..612c855adfa1 100644 |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 40 | --- a/drivers/usb/host/Makefile |
| 41 | +++ b/drivers/usb/host/Makefile |
developer | abd06d7 | 2022-03-03 16:13:41 +0800 | [diff] [blame] | 42 | @@ -21,6 +21,15 @@ endif |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 43 | |
| 44 | ifneq ($(CONFIG_USB_XHCI_MTK), ) |
| 45 | xhci-hcd-y += xhci-mtk-sch.o |
developer | ba28e03 | 2021-12-07 10:40:00 +0800 | [diff] [blame] | 46 | + xhci-hcd-$(CONFIG_USB_XHCI_MTK_DEBUGFS) += xhci-mtk-test.o |
| 47 | + xhci-hcd-$(CONFIG_USB_XHCI_MTK_DEBUGFS) += xhci-mtk-unusual.o |
| 48 | + xhci-hcd-$(CONFIG_USB_XHCI_MTK_DEBUGFS) += xhci-mtk-intr-en.o |
| 49 | + xhci-hcd-$(CONFIG_USB_XHCI_MTK_DEBUGFS) += xhci-mtk-vrt-vref.o |
| 50 | + xhci-hcd-$(CONFIG_USB_XHCI_MTK_DEBUGFS) += xhci-mtk-term-vref.o |
| 51 | + xhci-hcd-$(CONFIG_USB_XHCI_MTK_DEBUGFS) += xhci-mtk-hstx-srctrl.o |
| 52 | + xhci-hcd-$(CONFIG_USB_XHCI_MTK_DEBUGFS) += xhci-mtk-discth.o |
| 53 | + xhci-hcd-$(CONFIG_USB_XHCI_MTK_DEBUGFS) += xhci-mtk-chgdt-en.o |
developer | abd06d7 | 2022-03-03 16:13:41 +0800 | [diff] [blame] | 54 | + xhci-hcd-$(CONFIG_USB_XHCI_MTK_DEBUGFS) += xhci-mtk-reg.o |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 55 | endif |
| 56 | |
| 57 | xhci-plat-hcd-y := xhci-plat.o |
| 58 | diff --git a/drivers/usb/host/xhci-mtk.c b/drivers/usb/host/xhci-mtk.c |
developer | ba28e03 | 2021-12-07 10:40:00 +0800 | [diff] [blame] | 59 | index 5c0eb35cd007..8bd4c95a5435 100644 |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 60 | --- a/drivers/usb/host/xhci-mtk.c |
| 61 | +++ b/drivers/usb/host/xhci-mtk.c |
developer | ba28e03 | 2021-12-07 10:40:00 +0800 | [diff] [blame] | 62 | @@ -18,9 +18,10 @@ |
| 63 | #include <linux/pm_runtime.h> |
| 64 | #include <linux/regmap.h> |
| 65 | #include <linux/regulator/consumer.h> |
| 66 | - |
| 67 | +#include <linux/usb/of.h> |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 68 | #include "xhci.h" |
| 69 | #include "xhci-mtk.h" |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 70 | +#include "xhci-mtk-test.h" |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 71 | |
| 72 | /* ip_pw_ctrl0 register */ |
| 73 | #define CTRL0_IP_SW_RST BIT(0) |
developer | ba28e03 | 2021-12-07 10:40:00 +0800 | [diff] [blame] | 74 | @@ -570,6 +571,7 @@ static int xhci_mtk_probe(struct platform_device *pdev) |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 75 | ret = usb_add_hcd(xhci->shared_hcd, irq, IRQF_SHARED); |
| 76 | if (ret) |
| 77 | goto dealloc_usb2_hcd; |
developer | ba28e03 | 2021-12-07 10:40:00 +0800 | [diff] [blame] | 78 | + hqa_create_attr(dev); |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 79 | |
| 80 | return 0; |
| 81 | |
developer | ba28e03 | 2021-12-07 10:40:00 +0800 | [diff] [blame] | 82 | @@ -604,6 +606,7 @@ static int xhci_mtk_remove(struct platform_device *dev) |
| 83 | struct usb_hcd *hcd = mtk->hcd; |
| 84 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); |
| 85 | struct usb_hcd *shared_hcd = xhci->shared_hcd; |
| 86 | + hqa_remove_attr(&dev->dev); |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 87 | |
developer | ba28e03 | 2021-12-07 10:40:00 +0800 | [diff] [blame] | 88 | pm_runtime_put_noidle(&dev->dev); |
| 89 | pm_runtime_disable(&dev->dev); |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 90 | diff --git a/drivers/usb/host/xhci-mtk.h b/drivers/usb/host/xhci-mtk.h |
developer | ba28e03 | 2021-12-07 10:40:00 +0800 | [diff] [blame] | 91 | index 985e7a19f6f6..1540c66799d7 100644 |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 92 | --- a/drivers/usb/host/xhci-mtk.h |
| 93 | +++ b/drivers/usb/host/xhci-mtk.h |
developer | ba28e03 | 2021-12-07 10:40:00 +0800 | [diff] [blame] | 94 | @@ -158,6 +158,13 @@ struct xhci_hcd_mtk { |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 95 | struct regmap *uwk; |
| 96 | u32 uwk_reg_base; |
| 97 | u32 uwk_vers; |
| 98 | + |
| 99 | +#ifdef CONFIG_USB_XHCI_MTK_DEBUGFS |
developer | ba28e03 | 2021-12-07 10:40:00 +0800 | [diff] [blame] | 100 | + int test_mode; |
| 101 | + size_t hqa_size; |
| 102 | + u32 hqa_pos; |
| 103 | + char *hqa_buf; |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 104 | +#endif |
| 105 | }; |
| 106 | |
| 107 | static inline struct xhci_hcd_mtk *hcd_to_mtk(struct usb_hcd *hcd) |
| 108 | diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c |
developer | abd06d7 | 2022-03-03 16:13:41 +0800 | [diff] [blame] | 109 | index 1c8070023161..cf004950bc00 100644 |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 110 | --- a/drivers/usb/host/xhci.c |
| 111 | +++ b/drivers/usb/host/xhci.c |
| 112 | @@ -713,7 +713,7 @@ EXPORT_SYMBOL_GPL(xhci_run); |
| 113 | * Disable device contexts, disable IRQs, and quiesce the HC. |
| 114 | * Reset the HC, finish any completed transactions, and cleanup memory. |
| 115 | */ |
| 116 | -static void xhci_stop(struct usb_hcd *hcd) |
| 117 | +void xhci_stop(struct usb_hcd *hcd) |
| 118 | { |
| 119 | u32 temp; |
| 120 | struct xhci_hcd *xhci = hcd_to_xhci(hcd); |
| 121 | diff --git a/drivers/usb/host/xhci.h b/drivers/usb/host/xhci.h |
developer | ba28e03 | 2021-12-07 10:40:00 +0800 | [diff] [blame] | 122 | index 02df309e4409..3af400068324 100644 |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 123 | --- a/drivers/usb/host/xhci.h |
| 124 | +++ b/drivers/usb/host/xhci.h |
developer | ba28e03 | 2021-12-07 10:40:00 +0800 | [diff] [blame] | 125 | @@ -2067,6 +2067,7 @@ int xhci_halt(struct xhci_hcd *xhci); |
developer | 9cd822e | 2021-06-24 09:16:06 +0800 | [diff] [blame] | 126 | int xhci_start(struct xhci_hcd *xhci); |
| 127 | int xhci_reset(struct xhci_hcd *xhci); |
| 128 | int xhci_run(struct usb_hcd *hcd); |
| 129 | +void xhci_stop(struct usb_hcd *hcd); |
| 130 | int xhci_gen_setup(struct usb_hcd *hcd, xhci_get_quirks_t get_quirks); |
| 131 | void xhci_shutdown(struct usb_hcd *hcd); |
| 132 | void xhci_init_driver(struct hc_driver *drv, |
| 133 | -- |
| 134 | 2.18.0 |
| 135 | |