Home
last modified time | relevance | path

Searched refs:xhci_resources (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/usb/dwc3/
H A Dhost.c39 if (dwc->xhci_resources[0].start) { in dwc3_power_off_all_roothub_ports()
40 if (dwc->xhci_resources[0].flags & IORESOURCE_MEM_NONPOSTED) in dwc3_power_off_all_roothub_ports()
41 xhci_regs = ioremap_np(dwc->xhci_resources[0].start, DWC3_XHCI_REGS_END); in dwc3_power_off_all_roothub_ports()
43 xhci_regs = ioremap(dwc->xhci_resources[0].start, DWC3_XHCI_REGS_END); in dwc3_power_off_all_roothub_ports()
90 dwc->xhci_resources[1].start = irq; in dwc3_host_fill_xhci_irq_res()
91 dwc->xhci_resources[1].end = irq; in dwc3_host_fill_xhci_irq_res()
92 dwc->xhci_resources[1].flags = IORESOURCE_IRQ | irq_get_trigger_type(irq); in dwc3_host_fill_xhci_irq_res()
94 dwc->xhci_resources[1].name = of_node_full_name(pdev->dev.of_node); in dwc3_host_fill_xhci_irq_res()
96 dwc->xhci_resources[1].name = name; in dwc3_host_fill_xhci_irq_res()
157 ret = platform_device_add_resources(xhci, dwc->xhci_resources, in dwc3_host_init()
H A Dcore.c2120 base = ioremap(dwc->xhci_resources[0].start, in dwc3_get_num_ports()
2121 resource_size(&dwc->xhci_resources[0])); in dwc3_get_num_ports()
2185 dwc->xhci_resources[0].start = res->start; in dwc3_core_probe()
2186 dwc->xhci_resources[0].end = dwc->xhci_resources[0].start + in dwc3_core_probe()
2188 dwc->xhci_resources[0].flags = res->flags; in dwc3_core_probe()
2189 dwc->xhci_resources[0].name = res->name; in dwc3_core_probe()
H A Dcore.h1204 struct resource xhci_resources[DWC3_XHCI_RESOURCES_NUM]; member