Lines Matching refs:cdnsp
64 struct cdns *cdnsp; in cdnsp_pci_probe() local
93 cdnsp = pci_get_drvdata(func); in cdnsp_pci_probe()
95 cdnsp = kzalloc(sizeof(*cdnsp), GFP_KERNEL); in cdnsp_pci_probe()
96 if (!cdnsp) { in cdnsp_pci_probe()
117 cdnsp->dev_regs = devm_ioremap(dev, rsrc_start, rsrc_len); in cdnsp_pci_probe()
118 if (!cdnsp->dev_regs) { in cdnsp_pci_probe()
124 cdnsp->dev_irq = pdev->irq; in cdnsp_pci_probe()
128 res = &cdnsp->xhci_res[0]; in cdnsp_pci_probe()
137 res = &cdnsp->xhci_res[1]; in cdnsp_pci_probe()
142 res = &cdnsp->otg_res; in cdnsp_pci_probe()
151 cdnsp->otg_irq = pdev->irq; in cdnsp_pci_probe()
155 cdnsp->dev = dev; in cdnsp_pci_probe()
156 cdnsp->gadget_init = cdnsp_gadget_init; in cdnsp_pci_probe()
158 ret = cdns_init(cdnsp); in cdnsp_pci_probe()
163 pci_set_drvdata(pdev, cdnsp); in cdnsp_pci_probe()
173 kfree(cdnsp); in cdnsp_pci_probe()
186 struct cdns *cdnsp; in cdnsp_pci_remove() local
190 cdnsp = (struct cdns *)pci_get_drvdata(pdev); in cdnsp_pci_remove()
196 kfree(cdnsp); in cdnsp_pci_remove()
200 cdns_remove(cdnsp); in cdnsp_pci_remove()