Lines Matching refs:xhci
28 struct xhci_hcd *xhci = hcd_to_xhci(hcd); in xhci_cdns3_plat_start() local
32 value = readl(&xhci->op_regs->command); in xhci_cdns3_plat_start()
34 writel(value, &xhci->op_regs->command); in xhci_cdns3_plat_start()
61 struct platform_device *xhci; in __cdns_host_init() local
67 xhci = platform_device_alloc("xhci-hcd", PLATFORM_DEVID_AUTO); in __cdns_host_init()
68 if (!xhci) { in __cdns_host_init()
73 xhci->dev.parent = cdns->dev; in __cdns_host_init()
74 cdns->host_dev = xhci; in __cdns_host_init()
76 ret = platform_device_add_resources(xhci, cdns->xhci_res, in __cdns_host_init()
93 ret = platform_device_add_data(xhci, cdns->xhci_plat_data, in __cdns_host_init()
98 ret = platform_device_add(xhci); in __cdns_host_init()
105 hcd = platform_get_drvdata(xhci); in __cdns_host_init()
114 platform_device_put(xhci); in __cdns_host_init()