Lines Matching refs:hcd
27 static int uhci_grlib_init(struct usb_hcd *hcd) in uhci_grlib_init() argument
29 struct uhci_hcd *uhci = hcd_to_uhci(hcd); in uhci_grlib_init()
45 uhci->rh_numports = uhci_count_ports(hcd); in uhci_grlib_init()
94 struct usb_hcd *hcd; in uhci_hcd_grlib_probe() local
111 hcd = usb_create_hcd(&uhci_grlib_hc_driver, &op->dev, in uhci_hcd_grlib_probe()
113 if (!hcd) in uhci_hcd_grlib_probe()
116 hcd->rsrc_start = res.start; in uhci_hcd_grlib_probe()
117 hcd->rsrc_len = resource_size(&res); in uhci_hcd_grlib_probe()
126 hcd->regs = devm_ioremap_resource(&op->dev, &res); in uhci_hcd_grlib_probe()
127 if (IS_ERR(hcd->regs)) { in uhci_hcd_grlib_probe()
128 rv = PTR_ERR(hcd->regs); in uhci_hcd_grlib_probe()
132 uhci = hcd_to_uhci(hcd); in uhci_hcd_grlib_probe()
134 uhci->regs = hcd->regs; in uhci_hcd_grlib_probe()
136 rv = usb_add_hcd(hcd, irq, 0); in uhci_hcd_grlib_probe()
140 device_wakeup_enable(hcd->self.controller); in uhci_hcd_grlib_probe()
146 usb_put_hcd(hcd); in uhci_hcd_grlib_probe()
153 struct usb_hcd *hcd = platform_get_drvdata(op); in uhci_hcd_grlib_remove() local
157 usb_remove_hcd(hcd); in uhci_hcd_grlib_remove()
159 irq_dispose_mapping(hcd->irq); in uhci_hcd_grlib_remove()
160 usb_put_hcd(hcd); in uhci_hcd_grlib_remove()
172 struct usb_hcd *hcd = platform_get_drvdata(op); in uhci_hcd_grlib_shutdown() local
174 uhci_hc_died(hcd_to_uhci(hcd)); in uhci_hcd_grlib_shutdown()