Lines Matching defs:xhci
18 #include "../host/xhci.h"
19 #include "../host/xhci-plat.h"
34 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
38 value = readl(&xhci->op_regs->command);
40 writel(value, &xhci->op_regs->command);
69 struct platform_device *xhci;
75 xhci = platform_device_alloc("xhci-hcd", PLATFORM_DEVID_AUTO);
76 if (!xhci) {
81 xhci->dev.parent = cdns->dev;
82 cdns->host_dev = xhci;
84 ret = platform_device_add_resources(xhci, cdns->xhci_res,
106 ret = platform_device_add_data(xhci, cdns->xhci_plat_data,
111 ret = platform_device_add(xhci);
118 hcd = platform_get_drvdata(xhci);
127 platform_device_put(xhci);