Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

xhci: mediatek: support MTK xHCI host controller

There some vendor quirks for MTK xhci host controller:
1. It defines some extra SW scheduling parameters for HW
to minimize the scheduling effort for synchronous and
interrupt endpoints. The parameters are put into reseved
DWs of slot context and endpoint context.
2. Its IMODI unit for Interrupter Moderation register is
8 times as much as that defined in xHCI spec.
3. Its TDS in Normal TRB defines a number of packets that
remains to be transferred for a TD after processing all
Max packets in all previous TRBs.

Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
Tested-by: Daniel Thompson <daniel.thompson@linaro.org>
Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Chunfeng Yun and committed by
Greg Kroah-Hartman
0cbd4b34 c74732e3

+1383 -6
+9
drivers/usb/host/Kconfig
··· 41 41 42 42 If unsure, say N. 43 43 44 + config USB_XHCI_MTK 45 + tristate "xHCI support for Mediatek MT65xx" 46 + select MFD_SYSCON 47 + depends on ARCH_MEDIATEK || COMPILE_TEST 48 + ---help--- 49 + Say 'Y' to enable the support for the xHCI host controller 50 + found in Mediatek MT65xx SoCs. 51 + If unsure, say N. 52 + 44 53 config USB_XHCI_MVEBU 45 54 tristate "xHCI support for Marvell Armada 375/38x" 46 55 select USB_XHCI_PLATFORM
+4
drivers/usb/host/Makefile
··· 13 13 xhci-hcd-y := xhci.o xhci-mem.o 14 14 xhci-hcd-y += xhci-ring.o xhci-hub.o xhci-dbg.o 15 15 xhci-hcd-y += xhci-trace.o 16 + ifneq ($(CONFIG_USB_XHCI_MTK), ) 17 + xhci-hcd-y += xhci-mtk-sch.o 18 + endif 16 19 17 20 xhci-plat-hcd-y := xhci-plat.o 18 21 ifneq ($(CONFIG_USB_XHCI_MVEBU), ) ··· 67 64 obj-$(CONFIG_USB_XHCI_HCD) += xhci-hcd.o 68 65 obj-$(CONFIG_USB_XHCI_PCI) += xhci-pci.o 69 66 obj-$(CONFIG_USB_XHCI_PLATFORM) += xhci-plat-hcd.o 67 + obj-$(CONFIG_USB_XHCI_MTK) += xhci-mtk.o 70 68 obj-$(CONFIG_USB_SL811_HCD) += sl811-hcd.o 71 69 obj-$(CONFIG_USB_SL811_CS) += sl811_cs.o 72 70 obj-$(CONFIG_USB_U132_HCD) += u132-hcd.o
+415
drivers/usb/host/xhci-mtk-sch.c
··· 1 + /* 2 + * Copyright (c) 2015 MediaTek Inc. 3 + * Author: 4 + * Zhigang.Wei <zhigang.wei@mediatek.com> 5 + * Chunfeng.Yun <chunfeng.yun@mediatek.com> 6 + * 7 + * This software is licensed under the terms of the GNU General Public 8 + * License version 2, as published by the Free Software Foundation, and 9 + * may be copied, distributed, and modified under those terms. 10 + * 11 + * This program is distributed in the hope that it will be useful, 12 + * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + * GNU General Public License for more details. 15 + * 16 + */ 17 + 18 + #include <linux/kernel.h> 19 + #include <linux/module.h> 20 + #include <linux/slab.h> 21 + 22 + #include "xhci.h" 23 + #include "xhci-mtk.h" 24 + 25 + #define SS_BW_BOUNDARY 51000 26 + /* table 5-5. High-speed Isoc Transaction Limits in usb_20 spec */ 27 + #define HS_BW_BOUNDARY 6144 28 + /* usb2 spec section11.18.1: at most 188 FS bytes per microframe */ 29 + #define FS_PAYLOAD_MAX 188 30 + 31 + /* mtk scheduler bitmasks */ 32 + #define EP_BPKTS(p) ((p) & 0x3f) 33 + #define EP_BCSCOUNT(p) (((p) & 0x7) << 8) 34 + #define EP_BBM(p) ((p) << 11) 35 + #define EP_BOFFSET(p) ((p) & 0x3fff) 36 + #define EP_BREPEAT(p) (((p) & 0x7fff) << 16) 37 + 38 + static int is_fs_or_ls(enum usb_device_speed speed) 39 + { 40 + return speed == USB_SPEED_FULL || speed == USB_SPEED_LOW; 41 + } 42 + 43 + /* 44 + * get the index of bandwidth domains array which @ep belongs to. 45 + * 46 + * the bandwidth domain array is saved to @sch_array of struct xhci_hcd_mtk, 47 + * each HS root port is treated as a single bandwidth domain, 48 + * but each SS root port is treated as two bandwidth domains, one for IN eps, 49 + * one for OUT eps. 50 + * @real_port value is defined as follow according to xHCI spec: 51 + * 1 for SSport0, ..., N+1 for SSportN, N+2 for HSport0, N+3 for HSport1, etc 52 + * so the bandwidth domain array is organized as follow for simplification: 53 + * SSport0-OUT, SSport0-IN, ..., SSportX-OUT, SSportX-IN, HSport0, ..., HSportY 54 + */ 55 + static int get_bw_index(struct xhci_hcd *xhci, struct usb_device *udev, 56 + struct usb_host_endpoint *ep) 57 + { 58 + struct xhci_virt_device *virt_dev; 59 + int bw_index; 60 + 61 + virt_dev = xhci->devs[udev->slot_id]; 62 + 63 + if (udev->speed == USB_SPEED_SUPER) { 64 + if (usb_endpoint_dir_out(&ep->desc)) 65 + bw_index = (virt_dev->real_port - 1) * 2; 66 + else 67 + bw_index = (virt_dev->real_port - 1) * 2 + 1; 68 + } else { 69 + /* add one more for each SS port */ 70 + bw_index = virt_dev->real_port + xhci->num_usb3_ports - 1; 71 + } 72 + 73 + return bw_index; 74 + } 75 + 76 + static void setup_sch_info(struct usb_device *udev, 77 + struct xhci_ep_ctx *ep_ctx, struct mu3h_sch_ep_info *sch_ep) 78 + { 79 + u32 ep_type; 80 + u32 ep_interval; 81 + u32 max_packet_size; 82 + u32 max_burst; 83 + u32 mult; 84 + u32 esit_pkts; 85 + 86 + ep_type = CTX_TO_EP_TYPE(le32_to_cpu(ep_ctx->ep_info2)); 87 + ep_interval = CTX_TO_EP_INTERVAL(le32_to_cpu(ep_ctx->ep_info)); 88 + max_packet_size = MAX_PACKET_DECODED(le32_to_cpu(ep_ctx->ep_info2)); 89 + max_burst = CTX_TO_MAX_BURST(le32_to_cpu(ep_ctx->ep_info2)); 90 + mult = CTX_TO_EP_MULT(le32_to_cpu(ep_ctx->ep_info)); 91 + 92 + sch_ep->esit = 1 << ep_interval; 93 + sch_ep->offset = 0; 94 + sch_ep->burst_mode = 0; 95 + 96 + if (udev->speed == USB_SPEED_HIGH) { 97 + sch_ep->cs_count = 0; 98 + 99 + /* 100 + * usb_20 spec section5.9 101 + * a single microframe is enough for HS synchromous endpoints 102 + * in a interval 103 + */ 104 + sch_ep->num_budget_microframes = 1; 105 + sch_ep->repeat = 0; 106 + 107 + /* 108 + * xHCI spec section6.2.3.4 109 + * @max_burst is the number of additional transactions 110 + * opportunities per microframe 111 + */ 112 + sch_ep->pkts = max_burst + 1; 113 + sch_ep->bw_cost_per_microframe = max_packet_size * sch_ep->pkts; 114 + } else if (udev->speed == USB_SPEED_SUPER) { 115 + /* usb3_r1 spec section4.4.7 & 4.4.8 */ 116 + sch_ep->cs_count = 0; 117 + esit_pkts = (mult + 1) * (max_burst + 1); 118 + if (ep_type == INT_IN_EP || ep_type == INT_OUT_EP) { 119 + sch_ep->pkts = esit_pkts; 120 + sch_ep->num_budget_microframes = 1; 121 + sch_ep->repeat = 0; 122 + } 123 + 124 + if (ep_type == ISOC_IN_EP || ep_type == ISOC_OUT_EP) { 125 + if (esit_pkts <= sch_ep->esit) 126 + sch_ep->pkts = 1; 127 + else 128 + sch_ep->pkts = roundup_pow_of_two(esit_pkts) 129 + / sch_ep->esit; 130 + 131 + sch_ep->num_budget_microframes = 132 + DIV_ROUND_UP(esit_pkts, sch_ep->pkts); 133 + 134 + if (sch_ep->num_budget_microframes > 1) 135 + sch_ep->repeat = 1; 136 + else 137 + sch_ep->repeat = 0; 138 + } 139 + sch_ep->bw_cost_per_microframe = max_packet_size * sch_ep->pkts; 140 + } else if (is_fs_or_ls(udev->speed)) { 141 + 142 + /* 143 + * usb_20 spec section11.18.4 144 + * assume worst cases 145 + */ 146 + sch_ep->repeat = 0; 147 + sch_ep->pkts = 1; /* at most one packet for each microframe */ 148 + if (ep_type == INT_IN_EP || ep_type == INT_OUT_EP) { 149 + sch_ep->cs_count = 3; /* at most need 3 CS*/ 150 + /* one for SS and one for budgeted transaction */ 151 + sch_ep->num_budget_microframes = sch_ep->cs_count + 2; 152 + sch_ep->bw_cost_per_microframe = max_packet_size; 153 + } 154 + if (ep_type == ISOC_OUT_EP) { 155 + 156 + /* 157 + * the best case FS budget assumes that 188 FS bytes 158 + * occur in each microframe 159 + */ 160 + sch_ep->num_budget_microframes = DIV_ROUND_UP( 161 + max_packet_size, FS_PAYLOAD_MAX); 162 + sch_ep->bw_cost_per_microframe = FS_PAYLOAD_MAX; 163 + sch_ep->cs_count = sch_ep->num_budget_microframes; 164 + } 165 + if (ep_type == ISOC_IN_EP) { 166 + /* at most need additional two CS. */ 167 + sch_ep->cs_count = DIV_ROUND_UP( 168 + max_packet_size, FS_PAYLOAD_MAX) + 2; 169 + sch_ep->num_budget_microframes = sch_ep->cs_count + 2; 170 + sch_ep->bw_cost_per_microframe = FS_PAYLOAD_MAX; 171 + } 172 + } 173 + } 174 + 175 + /* Get maximum bandwidth when we schedule at offset slot. */ 176 + static u32 get_max_bw(struct mu3h_sch_bw_info *sch_bw, 177 + struct mu3h_sch_ep_info *sch_ep, u32 offset) 178 + { 179 + u32 num_esit; 180 + u32 max_bw = 0; 181 + int i; 182 + int j; 183 + 184 + num_esit = XHCI_MTK_MAX_ESIT / sch_ep->esit; 185 + for (i = 0; i < num_esit; i++) { 186 + u32 base = offset + i * sch_ep->esit; 187 + 188 + for (j = 0; j < sch_ep->num_budget_microframes; j++) { 189 + if (sch_bw->bus_bw[base + j] > max_bw) 190 + max_bw = sch_bw->bus_bw[base + j]; 191 + } 192 + } 193 + return max_bw; 194 + } 195 + 196 + static void update_bus_bw(struct mu3h_sch_bw_info *sch_bw, 197 + struct mu3h_sch_ep_info *sch_ep, int bw_cost) 198 + { 199 + u32 num_esit; 200 + u32 base; 201 + int i; 202 + int j; 203 + 204 + num_esit = XHCI_MTK_MAX_ESIT / sch_ep->esit; 205 + for (i = 0; i < num_esit; i++) { 206 + base = sch_ep->offset + i * sch_ep->esit; 207 + for (j = 0; j < sch_ep->num_budget_microframes; j++) 208 + sch_bw->bus_bw[base + j] += bw_cost; 209 + } 210 + } 211 + 212 + static int check_sch_bw(struct usb_device *udev, 213 + struct mu3h_sch_bw_info *sch_bw, struct mu3h_sch_ep_info *sch_ep) 214 + { 215 + u32 offset; 216 + u32 esit; 217 + u32 num_budget_microframes; 218 + u32 min_bw; 219 + u32 min_index; 220 + u32 worst_bw; 221 + u32 bw_boundary; 222 + 223 + if (sch_ep->esit > XHCI_MTK_MAX_ESIT) 224 + sch_ep->esit = XHCI_MTK_MAX_ESIT; 225 + 226 + esit = sch_ep->esit; 227 + num_budget_microframes = sch_ep->num_budget_microframes; 228 + 229 + /* 230 + * Search through all possible schedule microframes. 231 + * and find a microframe where its worst bandwidth is minimum. 232 + */ 233 + min_bw = ~0; 234 + min_index = 0; 235 + for (offset = 0; offset < esit; offset++) { 236 + if ((offset + num_budget_microframes) > sch_ep->esit) 237 + break; 238 + 239 + /* 240 + * usb_20 spec section11.18: 241 + * must never schedule Start-Split in Y6 242 + */ 243 + if (is_fs_or_ls(udev->speed) && (offset % 8 == 6)) 244 + continue; 245 + 246 + worst_bw = get_max_bw(sch_bw, sch_ep, offset); 247 + if (min_bw > worst_bw) { 248 + min_bw = worst_bw; 249 + min_index = offset; 250 + } 251 + if (min_bw == 0) 252 + break; 253 + } 254 + sch_ep->offset = min_index; 255 + 256 + bw_boundary = (udev->speed == USB_SPEED_SUPER) 257 + ? SS_BW_BOUNDARY : HS_BW_BOUNDARY; 258 + 259 + /* check bandwidth */ 260 + if (min_bw + sch_ep->bw_cost_per_microframe > bw_boundary) 261 + return -ERANGE; 262 + 263 + /* update bus bandwidth info */ 264 + update_bus_bw(sch_bw, sch_ep, sch_ep->bw_cost_per_microframe); 265 + 266 + return 0; 267 + } 268 + 269 + static bool need_bw_sch(struct usb_host_endpoint *ep, 270 + enum usb_device_speed speed, int has_tt) 271 + { 272 + /* only for periodic endpoints */ 273 + if (usb_endpoint_xfer_control(&ep->desc) 274 + || usb_endpoint_xfer_bulk(&ep->desc)) 275 + return false; 276 + 277 + /* 278 + * for LS & FS periodic endpoints which its device don't attach 279 + * to TT are also ignored, root-hub will schedule them directly 280 + */ 281 + if (is_fs_or_ls(speed) && !has_tt) 282 + return false; 283 + 284 + return true; 285 + } 286 + 287 + int xhci_mtk_sch_init(struct xhci_hcd_mtk *mtk) 288 + { 289 + struct mu3h_sch_bw_info *sch_array; 290 + int num_usb_bus; 291 + int i; 292 + 293 + /* ss IN and OUT are separated */ 294 + num_usb_bus = mtk->num_u3_ports * 2 + mtk->num_u2_ports; 295 + 296 + sch_array = kcalloc(num_usb_bus, sizeof(*sch_array), GFP_KERNEL); 297 + if (sch_array == NULL) 298 + return -ENOMEM; 299 + 300 + for (i = 0; i < num_usb_bus; i++) 301 + INIT_LIST_HEAD(&sch_array[i].bw_ep_list); 302 + 303 + mtk->sch_array = sch_array; 304 + 305 + return 0; 306 + } 307 + EXPORT_SYMBOL_GPL(xhci_mtk_sch_init); 308 + 309 + void xhci_mtk_sch_exit(struct xhci_hcd_mtk *mtk) 310 + { 311 + kfree(mtk->sch_array); 312 + } 313 + EXPORT_SYMBOL_GPL(xhci_mtk_sch_exit); 314 + 315 + int xhci_mtk_add_ep_quirk(struct usb_hcd *hcd, struct usb_device *udev, 316 + struct usb_host_endpoint *ep) 317 + { 318 + struct xhci_hcd_mtk *mtk = hcd_to_mtk(hcd); 319 + struct xhci_hcd *xhci; 320 + struct xhci_ep_ctx *ep_ctx; 321 + struct xhci_slot_ctx *slot_ctx; 322 + struct xhci_virt_device *virt_dev; 323 + struct mu3h_sch_bw_info *sch_bw; 324 + struct mu3h_sch_ep_info *sch_ep; 325 + struct mu3h_sch_bw_info *sch_array; 326 + unsigned int ep_index; 327 + int bw_index; 328 + int ret = 0; 329 + 330 + xhci = hcd_to_xhci(hcd); 331 + virt_dev = xhci->devs[udev->slot_id]; 332 + ep_index = xhci_get_endpoint_index(&ep->desc); 333 + slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx); 334 + ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->in_ctx, ep_index); 335 + sch_array = mtk->sch_array; 336 + 337 + xhci_dbg(xhci, "%s() type:%d, speed:%d, mpkt:%d, dir:%d, ep:%p\n", 338 + __func__, usb_endpoint_type(&ep->desc), udev->speed, 339 + GET_MAX_PACKET(usb_endpoint_maxp(&ep->desc)), 340 + usb_endpoint_dir_in(&ep->desc), ep); 341 + 342 + if (!need_bw_sch(ep, udev->speed, slot_ctx->tt_info & TT_SLOT)) 343 + return 0; 344 + 345 + bw_index = get_bw_index(xhci, udev, ep); 346 + sch_bw = &sch_array[bw_index]; 347 + 348 + sch_ep = kzalloc(sizeof(struct mu3h_sch_ep_info), GFP_NOIO); 349 + if (!sch_ep) 350 + return -ENOMEM; 351 + 352 + setup_sch_info(udev, ep_ctx, sch_ep); 353 + 354 + ret = check_sch_bw(udev, sch_bw, sch_ep); 355 + if (ret) { 356 + xhci_err(xhci, "Not enough bandwidth!\n"); 357 + kfree(sch_ep); 358 + return -ENOSPC; 359 + } 360 + 361 + list_add_tail(&sch_ep->endpoint, &sch_bw->bw_ep_list); 362 + sch_ep->ep = ep; 363 + 364 + ep_ctx->reserved[0] |= cpu_to_le32(EP_BPKTS(sch_ep->pkts) 365 + | EP_BCSCOUNT(sch_ep->cs_count) | EP_BBM(sch_ep->burst_mode)); 366 + ep_ctx->reserved[1] |= cpu_to_le32(EP_BOFFSET(sch_ep->offset) 367 + | EP_BREPEAT(sch_ep->repeat)); 368 + 369 + xhci_dbg(xhci, " PKTS:%x, CSCOUNT:%x, BM:%x, OFFSET:%x, REPEAT:%x\n", 370 + sch_ep->pkts, sch_ep->cs_count, sch_ep->burst_mode, 371 + sch_ep->offset, sch_ep->repeat); 372 + 373 + return 0; 374 + } 375 + EXPORT_SYMBOL_GPL(xhci_mtk_add_ep_quirk); 376 + 377 + void xhci_mtk_drop_ep_quirk(struct usb_hcd *hcd, struct usb_device *udev, 378 + struct usb_host_endpoint *ep) 379 + { 380 + struct xhci_hcd_mtk *mtk = hcd_to_mtk(hcd); 381 + struct xhci_hcd *xhci; 382 + struct xhci_slot_ctx *slot_ctx; 383 + struct xhci_virt_device *virt_dev; 384 + struct mu3h_sch_bw_info *sch_array; 385 + struct mu3h_sch_bw_info *sch_bw; 386 + struct mu3h_sch_ep_info *sch_ep; 387 + int bw_index; 388 + 389 + xhci = hcd_to_xhci(hcd); 390 + virt_dev = xhci->devs[udev->slot_id]; 391 + slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx); 392 + sch_array = mtk->sch_array; 393 + 394 + xhci_dbg(xhci, "%s() type:%d, speed:%d, mpks:%d, dir:%d, ep:%p\n", 395 + __func__, usb_endpoint_type(&ep->desc), udev->speed, 396 + GET_MAX_PACKET(usb_endpoint_maxp(&ep->desc)), 397 + usb_endpoint_dir_in(&ep->desc), ep); 398 + 399 + if (!need_bw_sch(ep, udev->speed, slot_ctx->tt_info & TT_SLOT)) 400 + return; 401 + 402 + bw_index = get_bw_index(xhci, udev, ep); 403 + sch_bw = &sch_array[bw_index]; 404 + 405 + list_for_each_entry(sch_ep, &sch_bw->bw_ep_list, endpoint) { 406 + if (sch_ep->ep == ep) { 407 + update_bus_bw(sch_bw, sch_ep, 408 + -sch_ep->bw_cost_per_microframe); 409 + list_del(&sch_ep->endpoint); 410 + kfree(sch_ep); 411 + break; 412 + } 413 + } 414 + } 415 + EXPORT_SYMBOL_GPL(xhci_mtk_drop_ep_quirk);
+763
drivers/usb/host/xhci-mtk.c
··· 1 + /* 2 + * MediaTek xHCI Host Controller Driver 3 + * 4 + * Copyright (c) 2015 MediaTek Inc. 5 + * Author: 6 + * Chunfeng Yun <chunfeng.yun@mediatek.com> 7 + * 8 + * This software is licensed under the terms of the GNU General Public 9 + * License version 2, as published by the Free Software Foundation, and 10 + * may be copied, distributed, and modified under those terms. 11 + * 12 + * This program is distributed in the hope that it will be useful, 13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 + * GNU General Public License for more details. 16 + * 17 + */ 18 + 19 + #include <linux/clk.h> 20 + #include <linux/dma-mapping.h> 21 + #include <linux/iopoll.h> 22 + #include <linux/kernel.h> 23 + #include <linux/mfd/syscon.h> 24 + #include <linux/module.h> 25 + #include <linux/of.h> 26 + #include <linux/phy/phy.h> 27 + #include <linux/platform_device.h> 28 + #include <linux/pm_runtime.h> 29 + #include <linux/regmap.h> 30 + #include <linux/regulator/consumer.h> 31 + 32 + #include "xhci.h" 33 + #include "xhci-mtk.h" 34 + 35 + /* ip_pw_ctrl0 register */ 36 + #define CTRL0_IP_SW_RST BIT(0) 37 + 38 + /* ip_pw_ctrl1 register */ 39 + #define CTRL1_IP_HOST_PDN BIT(0) 40 + 41 + /* ip_pw_ctrl2 register */ 42 + #define CTRL2_IP_DEV_PDN BIT(0) 43 + 44 + /* ip_pw_sts1 register */ 45 + #define STS1_IP_SLEEP_STS BIT(30) 46 + #define STS1_XHCI_RST BIT(11) 47 + #define STS1_SYS125_RST BIT(10) 48 + #define STS1_REF_RST BIT(8) 49 + #define STS1_SYSPLL_STABLE BIT(0) 50 + 51 + /* ip_xhci_cap register */ 52 + #define CAP_U3_PORT_NUM(p) ((p) & 0xff) 53 + #define CAP_U2_PORT_NUM(p) (((p) >> 8) & 0xff) 54 + 55 + /* u3_ctrl_p register */ 56 + #define CTRL_U3_PORT_HOST_SEL BIT(2) 57 + #define CTRL_U3_PORT_PDN BIT(1) 58 + #define CTRL_U3_PORT_DIS BIT(0) 59 + 60 + /* u2_ctrl_p register */ 61 + #define CTRL_U2_PORT_HOST_SEL BIT(2) 62 + #define CTRL_U2_PORT_PDN BIT(1) 63 + #define CTRL_U2_PORT_DIS BIT(0) 64 + 65 + /* u2_phy_pll register */ 66 + #define CTRL_U2_FORCE_PLL_STB BIT(28) 67 + 68 + #define PERI_WK_CTRL0 0x400 69 + #define UWK_CTR0_0P_LS_PE BIT(8) /* posedge */ 70 + #define UWK_CTR0_0P_LS_NE BIT(7) /* negedge for 0p linestate*/ 71 + #define UWK_CTL1_1P_LS_C(x) (((x) & 0xf) << 1) 72 + #define UWK_CTL1_1P_LS_E BIT(0) 73 + 74 + #define PERI_WK_CTRL1 0x404 75 + #define UWK_CTL1_IS_C(x) (((x) & 0xf) << 26) 76 + #define UWK_CTL1_IS_E BIT(25) 77 + #define UWK_CTL1_0P_LS_C(x) (((x) & 0xf) << 21) 78 + #define UWK_CTL1_0P_LS_E BIT(20) 79 + #define UWK_CTL1_IDDIG_C(x) (((x) & 0xf) << 11) /* cycle debounce */ 80 + #define UWK_CTL1_IDDIG_E BIT(10) /* enable debounce */ 81 + #define UWK_CTL1_IDDIG_P BIT(9) /* polarity */ 82 + #define UWK_CTL1_0P_LS_P BIT(7) 83 + #define UWK_CTL1_IS_P BIT(6) /* polarity for ip sleep */ 84 + 85 + enum ssusb_wakeup_src { 86 + SSUSB_WK_IP_SLEEP = 1, 87 + SSUSB_WK_LINE_STATE = 2, 88 + }; 89 + 90 + static int xhci_mtk_host_enable(struct xhci_hcd_mtk *mtk) 91 + { 92 + struct mu3c_ippc_regs __iomem *ippc = mtk->ippc_regs; 93 + u32 value, check_val; 94 + int ret; 95 + int i; 96 + 97 + /* power on host ip */ 98 + value = readl(&ippc->ip_pw_ctr1); 99 + value &= ~CTRL1_IP_HOST_PDN; 100 + writel(value, &ippc->ip_pw_ctr1); 101 + 102 + /* power on and enable all u3 ports */ 103 + for (i = 0; i < mtk->num_u3_ports; i++) { 104 + value = readl(&ippc->u3_ctrl_p[i]); 105 + value &= ~(CTRL_U3_PORT_PDN | CTRL_U3_PORT_DIS); 106 + value |= CTRL_U3_PORT_HOST_SEL; 107 + writel(value, &ippc->u3_ctrl_p[i]); 108 + } 109 + 110 + /* power on and enable all u2 ports */ 111 + for (i = 0; i < mtk->num_u2_ports; i++) { 112 + value = readl(&ippc->u2_ctrl_p[i]); 113 + value &= ~(CTRL_U2_PORT_PDN | CTRL_U2_PORT_DIS); 114 + value |= CTRL_U2_PORT_HOST_SEL; 115 + writel(value, &ippc->u2_ctrl_p[i]); 116 + } 117 + 118 + /* 119 + * wait for clocks to be stable, and clock domains reset to 120 + * be inactive after power on and enable ports 121 + */ 122 + check_val = STS1_SYSPLL_STABLE | STS1_REF_RST | 123 + STS1_SYS125_RST | STS1_XHCI_RST; 124 + 125 + ret = readl_poll_timeout(&ippc->ip_pw_sts1, value, 126 + (check_val == (value & check_val)), 100, 20000); 127 + if (ret) { 128 + dev_err(mtk->dev, "clocks are not stable (0x%x)\n", value); 129 + return ret; 130 + } 131 + 132 + return 0; 133 + } 134 + 135 + static int xhci_mtk_host_disable(struct xhci_hcd_mtk *mtk) 136 + { 137 + struct mu3c_ippc_regs __iomem *ippc = mtk->ippc_regs; 138 + u32 value; 139 + int ret; 140 + int i; 141 + 142 + /* power down all u3 ports */ 143 + for (i = 0; i < mtk->num_u3_ports; i++) { 144 + value = readl(&ippc->u3_ctrl_p[i]); 145 + value |= CTRL_U3_PORT_PDN; 146 + writel(value, &ippc->u3_ctrl_p[i]); 147 + } 148 + 149 + /* power down all u2 ports */ 150 + for (i = 0; i < mtk->num_u2_ports; i++) { 151 + value = readl(&ippc->u2_ctrl_p[i]); 152 + value |= CTRL_U2_PORT_PDN; 153 + writel(value, &ippc->u2_ctrl_p[i]); 154 + } 155 + 156 + /* power down host ip */ 157 + value = readl(&ippc->ip_pw_ctr1); 158 + value |= CTRL1_IP_HOST_PDN; 159 + writel(value, &ippc->ip_pw_ctr1); 160 + 161 + /* wait for host ip to sleep */ 162 + ret = readl_poll_timeout(&ippc->ip_pw_sts1, value, 163 + (value & STS1_IP_SLEEP_STS), 100, 100000); 164 + if (ret) { 165 + dev_err(mtk->dev, "ip sleep failed!!!\n"); 166 + return ret; 167 + } 168 + return 0; 169 + } 170 + 171 + static int xhci_mtk_ssusb_config(struct xhci_hcd_mtk *mtk) 172 + { 173 + struct mu3c_ippc_regs __iomem *ippc = mtk->ippc_regs; 174 + u32 value; 175 + 176 + /* reset whole ip */ 177 + value = readl(&ippc->ip_pw_ctr0); 178 + value |= CTRL0_IP_SW_RST; 179 + writel(value, &ippc->ip_pw_ctr0); 180 + udelay(1); 181 + value = readl(&ippc->ip_pw_ctr0); 182 + value &= ~CTRL0_IP_SW_RST; 183 + writel(value, &ippc->ip_pw_ctr0); 184 + 185 + /* 186 + * device ip is default power-on in fact 187 + * power down device ip, otherwise ip-sleep will fail 188 + */ 189 + value = readl(&ippc->ip_pw_ctr2); 190 + value |= CTRL2_IP_DEV_PDN; 191 + writel(value, &ippc->ip_pw_ctr2); 192 + 193 + value = readl(&ippc->ip_xhci_cap); 194 + mtk->num_u3_ports = CAP_U3_PORT_NUM(value); 195 + mtk->num_u2_ports = CAP_U2_PORT_NUM(value); 196 + dev_dbg(mtk->dev, "%s u2p:%d, u3p:%d\n", __func__, 197 + mtk->num_u2_ports, mtk->num_u3_ports); 198 + 199 + return xhci_mtk_host_enable(mtk); 200 + } 201 + 202 + static int xhci_mtk_clks_enable(struct xhci_hcd_mtk *mtk) 203 + { 204 + int ret; 205 + 206 + ret = clk_prepare_enable(mtk->sys_clk); 207 + if (ret) { 208 + dev_err(mtk->dev, "failed to enable sys_clk\n"); 209 + goto sys_clk_err; 210 + } 211 + 212 + if (mtk->wakeup_src) { 213 + ret = clk_prepare_enable(mtk->wk_deb_p0); 214 + if (ret) { 215 + dev_err(mtk->dev, "failed to enable wk_deb_p0\n"); 216 + goto usb_p0_err; 217 + } 218 + 219 + ret = clk_prepare_enable(mtk->wk_deb_p1); 220 + if (ret) { 221 + dev_err(mtk->dev, "failed to enable wk_deb_p1\n"); 222 + goto usb_p1_err; 223 + } 224 + } 225 + return 0; 226 + 227 + usb_p1_err: 228 + clk_disable_unprepare(mtk->wk_deb_p0); 229 + usb_p0_err: 230 + clk_disable_unprepare(mtk->sys_clk); 231 + sys_clk_err: 232 + return -EINVAL; 233 + } 234 + 235 + static void xhci_mtk_clks_disable(struct xhci_hcd_mtk *mtk) 236 + { 237 + if (mtk->wakeup_src) { 238 + clk_disable_unprepare(mtk->wk_deb_p1); 239 + clk_disable_unprepare(mtk->wk_deb_p0); 240 + } 241 + clk_disable_unprepare(mtk->sys_clk); 242 + } 243 + 244 + /* only clocks can be turn off for ip-sleep wakeup mode */ 245 + static void usb_wakeup_ip_sleep_en(struct xhci_hcd_mtk *mtk) 246 + { 247 + u32 tmp; 248 + struct regmap *pericfg = mtk->pericfg; 249 + 250 + regmap_read(pericfg, PERI_WK_CTRL1, &tmp); 251 + tmp &= ~UWK_CTL1_IS_P; 252 + tmp &= ~(UWK_CTL1_IS_C(0xf)); 253 + tmp |= UWK_CTL1_IS_C(0x8); 254 + regmap_write(pericfg, PERI_WK_CTRL1, tmp); 255 + regmap_write(pericfg, PERI_WK_CTRL1, tmp | UWK_CTL1_IS_E); 256 + 257 + regmap_read(pericfg, PERI_WK_CTRL1, &tmp); 258 + dev_dbg(mtk->dev, "%s(): WK_CTRL1[P6,E25,C26:29]=%#x\n", 259 + __func__, tmp); 260 + } 261 + 262 + static void usb_wakeup_ip_sleep_dis(struct xhci_hcd_mtk *mtk) 263 + { 264 + u32 tmp; 265 + 266 + regmap_read(mtk->pericfg, PERI_WK_CTRL1, &tmp); 267 + tmp &= ~UWK_CTL1_IS_E; 268 + regmap_write(mtk->pericfg, PERI_WK_CTRL1, tmp); 269 + } 270 + 271 + /* 272 + * for line-state wakeup mode, phy's power should not power-down 273 + * and only support cable plug in/out 274 + */ 275 + static void usb_wakeup_line_state_en(struct xhci_hcd_mtk *mtk) 276 + { 277 + u32 tmp; 278 + struct regmap *pericfg = mtk->pericfg; 279 + 280 + /* line-state of u2-port0 */ 281 + regmap_read(pericfg, PERI_WK_CTRL1, &tmp); 282 + tmp &= ~UWK_CTL1_0P_LS_P; 283 + tmp &= ~(UWK_CTL1_0P_LS_C(0xf)); 284 + tmp |= UWK_CTL1_0P_LS_C(0x8); 285 + regmap_write(pericfg, PERI_WK_CTRL1, tmp); 286 + regmap_read(pericfg, PERI_WK_CTRL1, &tmp); 287 + regmap_write(pericfg, PERI_WK_CTRL1, tmp | UWK_CTL1_0P_LS_E); 288 + 289 + /* line-state of u2-port1 */ 290 + regmap_read(pericfg, PERI_WK_CTRL0, &tmp); 291 + tmp &= ~(UWK_CTL1_1P_LS_C(0xf)); 292 + tmp |= UWK_CTL1_1P_LS_C(0x8); 293 + regmap_write(pericfg, PERI_WK_CTRL0, tmp); 294 + regmap_write(pericfg, PERI_WK_CTRL0, tmp | UWK_CTL1_1P_LS_E); 295 + } 296 + 297 + static void usb_wakeup_line_state_dis(struct xhci_hcd_mtk *mtk) 298 + { 299 + u32 tmp; 300 + struct regmap *pericfg = mtk->pericfg; 301 + 302 + /* line-state of u2-port0 */ 303 + regmap_read(pericfg, PERI_WK_CTRL1, &tmp); 304 + tmp &= ~UWK_CTL1_0P_LS_E; 305 + regmap_write(pericfg, PERI_WK_CTRL1, tmp); 306 + 307 + /* line-state of u2-port1 */ 308 + regmap_read(pericfg, PERI_WK_CTRL0, &tmp); 309 + tmp &= ~UWK_CTL1_1P_LS_E; 310 + regmap_write(pericfg, PERI_WK_CTRL0, tmp); 311 + } 312 + 313 + static void usb_wakeup_enable(struct xhci_hcd_mtk *mtk) 314 + { 315 + if (mtk->wakeup_src == SSUSB_WK_IP_SLEEP) 316 + usb_wakeup_ip_sleep_en(mtk); 317 + else if (mtk->wakeup_src == SSUSB_WK_LINE_STATE) 318 + usb_wakeup_line_state_en(mtk); 319 + } 320 + 321 + static void usb_wakeup_disable(struct xhci_hcd_mtk *mtk) 322 + { 323 + if (mtk->wakeup_src == SSUSB_WK_IP_SLEEP) 324 + usb_wakeup_ip_sleep_dis(mtk); 325 + else if (mtk->wakeup_src == SSUSB_WK_LINE_STATE) 326 + usb_wakeup_line_state_dis(mtk); 327 + } 328 + 329 + static int usb_wakeup_of_property_parse(struct xhci_hcd_mtk *mtk, 330 + struct device_node *dn) 331 + { 332 + struct device *dev = mtk->dev; 333 + 334 + /* 335 + * wakeup function is optional, so it is not an error if this property 336 + * does not exist, and in such case, no need to get relative 337 + * properties anymore. 338 + */ 339 + of_property_read_u32(dn, "mediatek,wakeup-src", &mtk->wakeup_src); 340 + if (!mtk->wakeup_src) 341 + return 0; 342 + 343 + mtk->wk_deb_p0 = devm_clk_get(dev, "wakeup_deb_p0"); 344 + if (IS_ERR(mtk->wk_deb_p0)) { 345 + dev_err(dev, "fail to get wakeup_deb_p0\n"); 346 + return PTR_ERR(mtk->wk_deb_p0); 347 + } 348 + 349 + mtk->wk_deb_p1 = devm_clk_get(dev, "wakeup_deb_p1"); 350 + if (IS_ERR(mtk->wk_deb_p1)) { 351 + dev_err(dev, "fail to get wakeup_deb_p1\n"); 352 + return PTR_ERR(mtk->wk_deb_p1); 353 + } 354 + 355 + mtk->pericfg = syscon_regmap_lookup_by_phandle(dn, 356 + "mediatek,syscon-wakeup"); 357 + if (IS_ERR(mtk->pericfg)) { 358 + dev_err(dev, "fail to get pericfg regs\n"); 359 + return PTR_ERR(mtk->pericfg); 360 + } 361 + 362 + return 0; 363 + } 364 + 365 + static int xhci_mtk_setup(struct usb_hcd *hcd); 366 + static const struct xhci_driver_overrides xhci_mtk_overrides __initconst = { 367 + .extra_priv_size = sizeof(struct xhci_hcd), 368 + .reset = xhci_mtk_setup, 369 + }; 370 + 371 + static struct hc_driver __read_mostly xhci_mtk_hc_driver; 372 + 373 + static int xhci_mtk_phy_init(struct xhci_hcd_mtk *mtk) 374 + { 375 + int i; 376 + int ret; 377 + 378 + for (i = 0; i < mtk->num_phys; i++) { 379 + ret = phy_init(mtk->phys[i]); 380 + if (ret) 381 + goto exit_phy; 382 + } 383 + return 0; 384 + 385 + exit_phy: 386 + for (; i > 0; i--) 387 + phy_exit(mtk->phys[i - 1]); 388 + 389 + return ret; 390 + } 391 + 392 + static int xhci_mtk_phy_exit(struct xhci_hcd_mtk *mtk) 393 + { 394 + int i; 395 + 396 + for (i = 0; i < mtk->num_phys; i++) 397 + phy_exit(mtk->phys[i]); 398 + 399 + return 0; 400 + } 401 + 402 + static int xhci_mtk_phy_power_on(struct xhci_hcd_mtk *mtk) 403 + { 404 + int i; 405 + int ret; 406 + 407 + for (i = 0; i < mtk->num_phys; i++) { 408 + ret = phy_power_on(mtk->phys[i]); 409 + if (ret) 410 + goto power_off_phy; 411 + } 412 + return 0; 413 + 414 + power_off_phy: 415 + for (; i > 0; i--) 416 + phy_power_off(mtk->phys[i - 1]); 417 + 418 + return ret; 419 + } 420 + 421 + static void xhci_mtk_phy_power_off(struct xhci_hcd_mtk *mtk) 422 + { 423 + unsigned int i; 424 + 425 + for (i = 0; i < mtk->num_phys; i++) 426 + phy_power_off(mtk->phys[i]); 427 + } 428 + 429 + static int xhci_mtk_ldos_enable(struct xhci_hcd_mtk *mtk) 430 + { 431 + int ret; 432 + 433 + ret = regulator_enable(mtk->vbus); 434 + if (ret) { 435 + dev_err(mtk->dev, "failed to enable vbus\n"); 436 + return ret; 437 + } 438 + 439 + ret = regulator_enable(mtk->vusb33); 440 + if (ret) { 441 + dev_err(mtk->dev, "failed to enable vusb33\n"); 442 + regulator_disable(mtk->vbus); 443 + return ret; 444 + } 445 + return 0; 446 + } 447 + 448 + static void xhci_mtk_ldos_disable(struct xhci_hcd_mtk *mtk) 449 + { 450 + regulator_disable(mtk->vbus); 451 + regulator_disable(mtk->vusb33); 452 + } 453 + 454 + static void xhci_mtk_quirks(struct device *dev, struct xhci_hcd *xhci) 455 + { 456 + struct usb_hcd *hcd = xhci_to_hcd(xhci); 457 + struct xhci_hcd_mtk *mtk = hcd_to_mtk(hcd); 458 + 459 + /* 460 + * As of now platform drivers don't provide MSI support so we ensure 461 + * here that the generic code does not try to make a pci_dev from our 462 + * dev struct in order to setup MSI 463 + */ 464 + xhci->quirks |= XHCI_PLAT; 465 + xhci->quirks |= XHCI_MTK_HOST; 466 + /* 467 + * MTK host controller gives a spurious successful event after a 468 + * short transfer. Ignore it. 469 + */ 470 + xhci->quirks |= XHCI_SPURIOUS_SUCCESS; 471 + if (mtk->lpm_support) 472 + xhci->quirks |= XHCI_LPM_SUPPORT; 473 + } 474 + 475 + /* called during probe() after chip reset completes */ 476 + static int xhci_mtk_setup(struct usb_hcd *hcd) 477 + { 478 + struct xhci_hcd_mtk *mtk = hcd_to_mtk(hcd); 479 + int ret; 480 + 481 + if (usb_hcd_is_primary_hcd(hcd)) { 482 + ret = xhci_mtk_ssusb_config(mtk); 483 + if (ret) 484 + return ret; 485 + ret = xhci_mtk_sch_init(mtk); 486 + if (ret) 487 + return ret; 488 + } 489 + 490 + return xhci_gen_setup(hcd, xhci_mtk_quirks); 491 + } 492 + 493 + static int xhci_mtk_probe(struct platform_device *pdev) 494 + { 495 + struct device *dev = &pdev->dev; 496 + struct device_node *node = dev->of_node; 497 + struct xhci_hcd_mtk *mtk; 498 + const struct hc_driver *driver; 499 + struct xhci_hcd *xhci; 500 + struct resource *res; 501 + struct usb_hcd *hcd; 502 + struct phy *phy; 503 + int phy_num; 504 + int ret = -ENODEV; 505 + int irq; 506 + 507 + if (usb_disabled()) 508 + return -ENODEV; 509 + 510 + driver = &xhci_mtk_hc_driver; 511 + mtk = devm_kzalloc(dev, sizeof(*mtk), GFP_KERNEL); 512 + if (!mtk) 513 + return -ENOMEM; 514 + 515 + mtk->dev = dev; 516 + mtk->vbus = devm_regulator_get(dev, "vbus"); 517 + if (IS_ERR(mtk->vbus)) { 518 + dev_err(dev, "fail to get vbus\n"); 519 + return PTR_ERR(mtk->vbus); 520 + } 521 + 522 + mtk->vusb33 = devm_regulator_get(dev, "vusb33"); 523 + if (IS_ERR(mtk->vusb33)) { 524 + dev_err(dev, "fail to get vusb33\n"); 525 + return PTR_ERR(mtk->vusb33); 526 + } 527 + 528 + mtk->sys_clk = devm_clk_get(dev, "sys_ck"); 529 + if (IS_ERR(mtk->sys_clk)) { 530 + dev_err(dev, "fail to get sys_ck\n"); 531 + return PTR_ERR(mtk->sys_clk); 532 + } 533 + 534 + mtk->lpm_support = of_property_read_bool(node, "usb3-lpm-capable"); 535 + 536 + ret = usb_wakeup_of_property_parse(mtk, node); 537 + if (ret) 538 + return ret; 539 + 540 + mtk->num_phys = of_count_phandle_with_args(node, 541 + "phys", "#phy-cells"); 542 + if (mtk->num_phys > 0) { 543 + mtk->phys = devm_kcalloc(dev, mtk->num_phys, 544 + sizeof(*mtk->phys), GFP_KERNEL); 545 + if (!mtk->phys) 546 + return -ENOMEM; 547 + } else { 548 + mtk->num_phys = 0; 549 + } 550 + pm_runtime_enable(dev); 551 + pm_runtime_get_sync(dev); 552 + device_enable_async_suspend(dev); 553 + 554 + ret = xhci_mtk_ldos_enable(mtk); 555 + if (ret) 556 + goto disable_pm; 557 + 558 + ret = xhci_mtk_clks_enable(mtk); 559 + if (ret) 560 + goto disable_ldos; 561 + 562 + irq = platform_get_irq(pdev, 0); 563 + if (irq < 0) 564 + goto disable_clk; 565 + 566 + /* Initialize dma_mask and coherent_dma_mask to 32-bits */ 567 + ret = dma_set_coherent_mask(dev, DMA_BIT_MASK(32)); 568 + if (ret) 569 + goto disable_clk; 570 + 571 + if (!dev->dma_mask) 572 + dev->dma_mask = &dev->coherent_dma_mask; 573 + else 574 + dma_set_mask(dev, DMA_BIT_MASK(32)); 575 + 576 + hcd = usb_create_hcd(driver, dev, dev_name(dev)); 577 + if (!hcd) { 578 + ret = -ENOMEM; 579 + goto disable_clk; 580 + } 581 + 582 + /* 583 + * USB 2.0 roothub is stored in the platform_device. 584 + * Swap it with mtk HCD. 585 + */ 586 + mtk->hcd = platform_get_drvdata(pdev); 587 + platform_set_drvdata(pdev, mtk); 588 + 589 + res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 590 + hcd->regs = devm_ioremap_resource(dev, res); 591 + if (IS_ERR(hcd->regs)) { 592 + ret = PTR_ERR(hcd->regs); 593 + goto put_usb2_hcd; 594 + } 595 + hcd->rsrc_start = res->start; 596 + hcd->rsrc_len = resource_size(res); 597 + 598 + res = platform_get_resource(pdev, IORESOURCE_MEM, 1); 599 + mtk->ippc_regs = devm_ioremap_resource(dev, res); 600 + if (IS_ERR(mtk->ippc_regs)) { 601 + ret = PTR_ERR(mtk->ippc_regs); 602 + goto put_usb2_hcd; 603 + } 604 + 605 + for (phy_num = 0; phy_num < mtk->num_phys; phy_num++) { 606 + phy = devm_of_phy_get_by_index(dev, node, phy_num); 607 + if (IS_ERR(phy)) { 608 + ret = PTR_ERR(phy); 609 + goto put_usb2_hcd; 610 + } 611 + mtk->phys[phy_num] = phy; 612 + } 613 + 614 + ret = xhci_mtk_phy_init(mtk); 615 + if (ret) 616 + goto put_usb2_hcd; 617 + 618 + ret = xhci_mtk_phy_power_on(mtk); 619 + if (ret) 620 + goto exit_phys; 621 + 622 + device_init_wakeup(dev, true); 623 + 624 + xhci = hcd_to_xhci(hcd); 625 + xhci->main_hcd = hcd; 626 + xhci->shared_hcd = usb_create_shared_hcd(driver, dev, 627 + dev_name(dev), hcd); 628 + if (!xhci->shared_hcd) { 629 + ret = -ENOMEM; 630 + goto power_off_phys; 631 + } 632 + 633 + if (HCC_MAX_PSA(xhci->hcc_params) >= 4) 634 + xhci->shared_hcd->can_do_streams = 1; 635 + 636 + ret = usb_add_hcd(hcd, irq, IRQF_SHARED); 637 + if (ret) 638 + goto put_usb3_hcd; 639 + 640 + ret = usb_add_hcd(xhci->shared_hcd, irq, IRQF_SHARED); 641 + if (ret) 642 + goto dealloc_usb2_hcd; 643 + 644 + return 0; 645 + 646 + dealloc_usb2_hcd: 647 + usb_remove_hcd(hcd); 648 + 649 + put_usb3_hcd: 650 + xhci_mtk_sch_exit(mtk); 651 + usb_put_hcd(xhci->shared_hcd); 652 + 653 + power_off_phys: 654 + xhci_mtk_phy_power_off(mtk); 655 + device_init_wakeup(dev, false); 656 + 657 + exit_phys: 658 + xhci_mtk_phy_exit(mtk); 659 + 660 + put_usb2_hcd: 661 + usb_put_hcd(hcd); 662 + 663 + disable_clk: 664 + xhci_mtk_clks_disable(mtk); 665 + 666 + disable_ldos: 667 + xhci_mtk_ldos_disable(mtk); 668 + 669 + disable_pm: 670 + pm_runtime_put_sync(dev); 671 + pm_runtime_disable(dev); 672 + return ret; 673 + } 674 + 675 + static int xhci_mtk_remove(struct platform_device *dev) 676 + { 677 + struct xhci_hcd_mtk *mtk = platform_get_drvdata(dev); 678 + struct usb_hcd *hcd = mtk->hcd; 679 + struct xhci_hcd *xhci = hcd_to_xhci(hcd); 680 + 681 + usb_remove_hcd(xhci->shared_hcd); 682 + xhci_mtk_phy_power_off(mtk); 683 + xhci_mtk_phy_exit(mtk); 684 + device_init_wakeup(&dev->dev, false); 685 + 686 + usb_remove_hcd(hcd); 687 + usb_put_hcd(xhci->shared_hcd); 688 + usb_put_hcd(hcd); 689 + xhci_mtk_sch_exit(mtk); 690 + xhci_mtk_clks_disable(mtk); 691 + xhci_mtk_ldos_disable(mtk); 692 + pm_runtime_put_sync(&dev->dev); 693 + pm_runtime_disable(&dev->dev); 694 + 695 + return 0; 696 + } 697 + 698 + #ifdef CONFIG_PM_SLEEP 699 + static int xhci_mtk_suspend(struct device *dev) 700 + { 701 + struct xhci_hcd_mtk *mtk = dev_get_drvdata(dev); 702 + 703 + xhci_mtk_host_disable(mtk); 704 + xhci_mtk_phy_power_off(mtk); 705 + xhci_mtk_clks_disable(mtk); 706 + usb_wakeup_enable(mtk); 707 + return 0; 708 + } 709 + 710 + static int xhci_mtk_resume(struct device *dev) 711 + { 712 + struct xhci_hcd_mtk *mtk = dev_get_drvdata(dev); 713 + 714 + usb_wakeup_disable(mtk); 715 + xhci_mtk_clks_enable(mtk); 716 + xhci_mtk_phy_power_on(mtk); 717 + xhci_mtk_host_enable(mtk); 718 + return 0; 719 + } 720 + 721 + static const struct dev_pm_ops xhci_mtk_pm_ops = { 722 + SET_SYSTEM_SLEEP_PM_OPS(xhci_mtk_suspend, xhci_mtk_resume) 723 + }; 724 + #define DEV_PM_OPS (&xhci_mtk_pm_ops) 725 + #else 726 + #define DEV_PM_OPS NULL 727 + #endif /* CONFIG_PM */ 728 + 729 + #ifdef CONFIG_OF 730 + static const struct of_device_id mtk_xhci_of_match[] = { 731 + { .compatible = "mediatek,mt8173-xhci"}, 732 + { }, 733 + }; 734 + MODULE_DEVICE_TABLE(of, mtk_xhci_of_match); 735 + #endif 736 + 737 + static struct platform_driver mtk_xhci_driver = { 738 + .probe = xhci_mtk_probe, 739 + .remove = xhci_mtk_remove, 740 + .driver = { 741 + .name = "xhci-mtk", 742 + .pm = DEV_PM_OPS, 743 + .of_match_table = of_match_ptr(mtk_xhci_of_match), 744 + }, 745 + }; 746 + MODULE_ALIAS("platform:xhci-mtk"); 747 + 748 + static int __init xhci_mtk_init(void) 749 + { 750 + xhci_init_driver(&xhci_mtk_hc_driver, &xhci_mtk_overrides); 751 + return platform_driver_register(&mtk_xhci_driver); 752 + } 753 + module_init(xhci_mtk_init); 754 + 755 + static void __exit xhci_mtk_exit(void) 756 + { 757 + platform_driver_unregister(&mtk_xhci_driver); 758 + } 759 + module_exit(xhci_mtk_exit); 760 + 761 + MODULE_AUTHOR("Chunfeng Yun <chunfeng.yun@mediatek.com>"); 762 + MODULE_DESCRIPTION("MediaTek xHCI Host Controller Driver"); 763 + MODULE_LICENSE("GPL v2");
+162
drivers/usb/host/xhci-mtk.h
··· 1 + /* 2 + * Copyright (c) 2015 MediaTek Inc. 3 + * Author: 4 + * Zhigang.Wei <zhigang.wei@mediatek.com> 5 + * Chunfeng.Yun <chunfeng.yun@mediatek.com> 6 + * 7 + * This software is licensed under the terms of the GNU General Public 8 + * License version 2, as published by the Free Software Foundation, and 9 + * may be copied, distributed, and modified under those terms. 10 + * 11 + * This program is distributed in the hope that it will be useful, 12 + * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + * GNU General Public License for more details. 15 + * 16 + */ 17 + 18 + #ifndef _XHCI_MTK_H_ 19 + #define _XHCI_MTK_H_ 20 + 21 + #include "xhci.h" 22 + 23 + /** 24 + * To simplify scheduler algorithm, set a upper limit for ESIT, 25 + * if a synchromous ep's ESIT is larger than @XHCI_MTK_MAX_ESIT, 26 + * round down to the limit value, that means allocating more 27 + * bandwidth to it. 28 + */ 29 + #define XHCI_MTK_MAX_ESIT 64 30 + 31 + /** 32 + * struct mu3h_sch_bw_info: schedule information for bandwidth domain 33 + * 34 + * @bus_bw: array to keep track of bandwidth already used at each uframes 35 + * @bw_ep_list: eps in the bandwidth domain 36 + * 37 + * treat a HS root port as a bandwidth domain, but treat a SS root port as 38 + * two bandwidth domains, one for IN eps and another for OUT eps. 39 + */ 40 + struct mu3h_sch_bw_info { 41 + u32 bus_bw[XHCI_MTK_MAX_ESIT]; 42 + struct list_head bw_ep_list; 43 + }; 44 + 45 + /** 46 + * struct mu3h_sch_ep_info: schedule information for endpoint 47 + * 48 + * @esit: unit is 125us, equal to 2 << Interval field in ep-context 49 + * @num_budget_microframes: number of continuous uframes 50 + * (@repeat==1) scheduled within the interval 51 + * @bw_cost_per_microframe: bandwidth cost per microframe 52 + * @endpoint: linked into bandwidth domain which it belongs to 53 + * @ep: address of usb_host_endpoint struct 54 + * @offset: which uframe of the interval that transfer should be 55 + * scheduled first time within the interval 56 + * @repeat: the time gap between two uframes that transfers are 57 + * scheduled within a interval. in the simple algorithm, only 58 + * assign 0 or 1 to it; 0 means using only one uframe in a 59 + * interval, and 1 means using @num_budget_microframes 60 + * continuous uframes 61 + * @pkts: number of packets to be transferred in the scheduled uframes 62 + * @cs_count: number of CS that host will trigger 63 + * @burst_mode: burst mode for scheduling. 0: normal burst mode, 64 + * distribute the bMaxBurst+1 packets for a single burst 65 + * according to @pkts and @repeat, repeate the burst multiple 66 + * times; 1: distribute the (bMaxBurst+1)*(Mult+1) packets 67 + * according to @pkts and @repeat. normal mode is used by 68 + * default 69 + */ 70 + struct mu3h_sch_ep_info { 71 + u32 esit; 72 + u32 num_budget_microframes; 73 + u32 bw_cost_per_microframe; 74 + struct list_head endpoint; 75 + void *ep; 76 + /* 77 + * mtk xHCI scheduling information put into reserved DWs 78 + * in ep context 79 + */ 80 + u32 offset; 81 + u32 repeat; 82 + u32 pkts; 83 + u32 cs_count; 84 + u32 burst_mode; 85 + }; 86 + 87 + #define MU3C_U3_PORT_MAX 4 88 + #define MU3C_U2_PORT_MAX 5 89 + 90 + /** 91 + * struct mu3c_ippc_regs: MTK ssusb ip port control registers 92 + * @ip_pw_ctr0~3: ip power and clock control registers 93 + * @ip_pw_sts1~2: ip power and clock status registers 94 + * @ip_xhci_cap: ip xHCI capability register 95 + * @u3_ctrl_p[x]: ip usb3 port x control register, only low 4bytes are used 96 + * @u2_ctrl_p[x]: ip usb2 port x control register, only low 4bytes are used 97 + * @u2_phy_pll: usb2 phy pll control register 98 + */ 99 + struct mu3c_ippc_regs { 100 + __le32 ip_pw_ctr0; 101 + __le32 ip_pw_ctr1; 102 + __le32 ip_pw_ctr2; 103 + __le32 ip_pw_ctr3; 104 + __le32 ip_pw_sts1; 105 + __le32 ip_pw_sts2; 106 + __le32 reserved0[3]; 107 + __le32 ip_xhci_cap; 108 + __le32 reserved1[2]; 109 + __le64 u3_ctrl_p[MU3C_U3_PORT_MAX]; 110 + __le64 u2_ctrl_p[MU3C_U2_PORT_MAX]; 111 + __le32 reserved2; 112 + __le32 u2_phy_pll; 113 + __le32 reserved3[33]; /* 0x80 ~ 0xff */ 114 + }; 115 + 116 + struct xhci_hcd_mtk { 117 + struct device *dev; 118 + struct usb_hcd *hcd; 119 + struct mu3h_sch_bw_info *sch_array; 120 + struct mu3c_ippc_regs __iomem *ippc_regs; 121 + int num_u2_ports; 122 + int num_u3_ports; 123 + struct regulator *vusb33; 124 + struct regulator *vbus; 125 + struct clk *sys_clk; /* sys and mac clock */ 126 + struct clk *wk_deb_p0; /* port0's wakeup debounce clock */ 127 + struct clk *wk_deb_p1; 128 + struct regmap *pericfg; 129 + struct phy **phys; 130 + int num_phys; 131 + int wakeup_src; 132 + bool lpm_support; 133 + }; 134 + 135 + static inline struct xhci_hcd_mtk *hcd_to_mtk(struct usb_hcd *hcd) 136 + { 137 + return dev_get_drvdata(hcd->self.controller); 138 + } 139 + 140 + #if IS_ENABLED(CONFIG_USB_XHCI_MTK) 141 + int xhci_mtk_sch_init(struct xhci_hcd_mtk *mtk); 142 + void xhci_mtk_sch_exit(struct xhci_hcd_mtk *mtk); 143 + int xhci_mtk_add_ep_quirk(struct usb_hcd *hcd, struct usb_device *udev, 144 + struct usb_host_endpoint *ep); 145 + void xhci_mtk_drop_ep_quirk(struct usb_hcd *hcd, struct usb_device *udev, 146 + struct usb_host_endpoint *ep); 147 + 148 + #else 149 + static inline int xhci_mtk_add_ep_quirk(struct usb_hcd *hcd, 150 + struct usb_device *udev, struct usb_host_endpoint *ep) 151 + { 152 + return 0; 153 + } 154 + 155 + static inline void xhci_mtk_drop_ep_quirk(struct usb_hcd *hcd, 156 + struct usb_device *udev, struct usb_host_endpoint *ep) 157 + { 158 + } 159 + 160 + #endif 161 + 162 + #endif /* _XHCI_MTK_H_ */
+11 -5
drivers/usb/host/xhci-ring.c
··· 68 68 #include <linux/slab.h> 69 69 #include "xhci.h" 70 70 #include "xhci-trace.h" 71 + #include "xhci-mtk.h" 71 72 72 73 /* 73 74 * Returns zero if the TRB isn't in this segment, otherwise it returns the DMA ··· 3075 3074 { 3076 3075 u32 maxp, total_packet_count; 3077 3076 3078 - if (xhci->hci_version < 0x100) 3077 + /* MTK xHCI is mostly 0.97 but contains some features from 1.0 */ 3078 + if (xhci->hci_version < 0x100 && !(xhci->quirks & XHCI_MTK_HOST)) 3079 3079 return ((td_total_len - transferred) >> 10); 3080 - 3081 - maxp = GET_MAX_PACKET(usb_endpoint_maxp(&urb->ep->desc)); 3082 - total_packet_count = DIV_ROUND_UP(td_total_len, maxp); 3083 3080 3084 3081 /* One TRB with a zero-length data packet. */ 3085 3082 if (num_trbs_left == 0 || (transferred == 0 && trb_buff_len == 0) || 3086 3083 trb_buff_len == td_total_len) 3087 3084 return 0; 3085 + 3086 + /* for MTK xHCI, TD size doesn't include this TRB */ 3087 + if (xhci->quirks & XHCI_MTK_HOST) 3088 + trb_buff_len = 0; 3089 + 3090 + maxp = GET_MAX_PACKET(usb_endpoint_maxp(&urb->ep->desc)); 3091 + total_packet_count = DIV_ROUND_UP(td_total_len, maxp); 3088 3092 3089 3093 /* Queueing functions don't count the current TRB into transferred */ 3090 3094 return (total_packet_count - ((transferred + trb_buff_len) / maxp)); ··· 3478 3472 field |= 0x1; 3479 3473 3480 3474 /* xHCI 1.0/1.1 6.4.1.2.1: Transfer Type field */ 3481 - if (xhci->hci_version >= 0x100) { 3475 + if ((xhci->hci_version >= 0x100) || (xhci->quirks & XHCI_MTK_HOST)) { 3482 3476 if (urb->transfer_buffer_length > 0) { 3483 3477 if (setup->bRequestType & USB_DIR_IN) 3484 3478 field |= TRB_TX_TYPE(TRB_DATA_IN);
+18 -1
drivers/usb/host/xhci.c
··· 31 31 32 32 #include "xhci.h" 33 33 #include "xhci-trace.h" 34 + #include "xhci-mtk.h" 34 35 35 36 #define DRIVER_AUTHOR "Sarah Sharp" 36 37 #define DRIVER_DESC "'eXtensible' Host Controller (xHC) Driver" ··· 635 634 "// Set the interrupt modulation register"); 636 635 temp = readl(&xhci->ir_set->irq_control); 637 636 temp &= ~ER_IRQ_INTERVAL_MASK; 638 - temp |= (u32) 160; 637 + /* 638 + * the increment interval is 8 times as much as that defined 639 + * in xHCI spec on MTK's controller 640 + */ 641 + temp |= (u32) ((xhci->quirks & XHCI_MTK_HOST) ? 20 : 160); 639 642 writel(temp, &xhci->ir_set->irq_control); 640 643 641 644 /* Set the HCD state before we enable the irqs */ ··· 1703 1698 1704 1699 xhci_endpoint_zero(xhci, xhci->devs[udev->slot_id], ep); 1705 1700 1701 + if (xhci->quirks & XHCI_MTK_HOST) 1702 + xhci_mtk_drop_ep_quirk(hcd, udev, ep); 1703 + 1706 1704 xhci_dbg(xhci, "drop ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x\n", 1707 1705 (unsigned int) ep->desc.bEndpointAddress, 1708 1706 udev->slot_id, ··· 1799 1791 dev_dbg(&udev->dev, "%s - could not initialize ep %#x\n", 1800 1792 __func__, ep->desc.bEndpointAddress); 1801 1793 return -ENOMEM; 1794 + } 1795 + 1796 + if (xhci->quirks & XHCI_MTK_HOST) { 1797 + ret = xhci_mtk_add_ep_quirk(hcd, udev, ep); 1798 + if (ret < 0) { 1799 + xhci_free_or_cache_endpoint_ring(xhci, 1800 + virt_dev, ep_index); 1801 + return ret; 1802 + } 1802 1803 } 1803 1804 1804 1805 ctrl_ctx->add_flags |= cpu_to_le32(added_ctxs);
+1
drivers/usb/host/xhci.h
··· 1630 1630 /* For controllers with a broken beyond repair streams implementation */ 1631 1631 #define XHCI_BROKEN_STREAMS (1 << 19) 1632 1632 #define XHCI_PME_STUCK_QUIRK (1 << 20) 1633 + #define XHCI_MTK_HOST (1 << 21) 1633 1634 unsigned int num_active_eps; 1634 1635 unsigned int limit_active_eps; 1635 1636 /* There are two roothubs to keep track of bus suspend info for */