Lines Matching full:cdns
19 static int __cdns3_host_init(struct cdns3 *cdns) in __cdns3_host_init() argument
24 cdns3_drd_switch_host(cdns, 1); in __cdns3_host_init()
26 hccr = (struct xhci_hccr *)cdns->xhci_regs; in __cdns3_host_init()
27 hcor = (struct xhci_hcor *)(cdns->xhci_regs + in __cdns3_host_init()
30 return xhci_register(cdns->dev, hccr, hcor); in __cdns3_host_init()
33 static void cdns3_host_exit(struct cdns3 *cdns) in cdns3_host_exit() argument
35 xhci_deregister(cdns->dev); in cdns3_host_exit()
36 cdns3_drd_switch_host(cdns, 0); in cdns3_host_exit()
39 int cdns3_host_init(struct cdns3 *cdns) in cdns3_host_init() argument
43 rdrv = devm_kzalloc(cdns->dev, sizeof(*rdrv), GFP_KERNEL); in cdns3_host_init()
52 cdns->roles[USB_ROLE_HOST] = rdrv; in cdns3_host_init()