Home
last modified time | relevance | path

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

/linux-6.12.1/drivers/usb/dwc3/
Dhost.c39 if (dwc->xhci_resources[0].start) { in dwc3_power_off_all_roothub_ports()
40 xhci_regs = ioremap(dwc->xhci_resources[0].start, DWC3_XHCI_REGS_END); in dwc3_power_off_all_roothub_ports()
87 dwc->xhci_resources[1].start = irq; in dwc3_host_fill_xhci_irq_res()
88 dwc->xhci_resources[1].end = irq; in dwc3_host_fill_xhci_irq_res()
89 dwc->xhci_resources[1].flags = IORESOURCE_IRQ | irq_get_trigger_type(irq); in dwc3_host_fill_xhci_irq_res()
91 dwc->xhci_resources[1].name = of_node_full_name(pdev->dev.of_node); in dwc3_host_fill_xhci_irq_res()
93 dwc->xhci_resources[1].name = name; in dwc3_host_fill_xhci_irq_res()
154 ret = platform_device_add_resources(xhci, dwc->xhci_resources, in dwc3_host_init()
Dcore.c2070 base = ioremap(dwc->xhci_resources[0].start, in dwc3_get_num_ports()
2071 resource_size(&dwc->xhci_resources[0])); in dwc3_get_num_ports()
2129 dwc->xhci_resources[0].start = res->start; in dwc3_probe()
2130 dwc->xhci_resources[0].end = dwc->xhci_resources[0].start + in dwc3_probe()
2132 dwc->xhci_resources[0].flags = res->flags; in dwc3_probe()
2133 dwc->xhci_resources[0].name = res->name; in dwc3_probe()
Dcore.h1187 struct resource xhci_resources[DWC3_XHCI_RESOURCES_NUM]; member