Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | /* |
| 3 | * xhci-plat.h - xHCI host controller driver platform Bus Glue. |
| 4 | * |
| 5 | * Copyright (C) 2015 Renesas Electronics Corporation |
| 6 | */ |
| 7 | |
| 8 | #ifndef _XHCI_PLAT_H |
| 9 | #define _XHCI_PLAT_H |
| 10 | |
| 11 | #include "xhci.h" /* for hcd_to_xhci() */ |
| 12 | |
| 13 | struct xhci_plat_priv { |
| 14 | const char *firmware_name; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 15 | unsigned long long quirks; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 16 | void (*plat_start)(struct usb_hcd *); |
| 17 | int (*init_quirk)(struct usb_hcd *); |
| 18 | int (*resume_quirk)(struct usb_hcd *); |
| 19 | }; |
| 20 | |
| 21 | #define hcd_to_xhci_priv(h) ((struct xhci_plat_priv *)hcd_to_xhci(h)->priv) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 22 | #define xhci_to_priv(x) ((struct xhci_plat_priv *)(x)->priv) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 23 | #endif /* _XHCI_PLAT_H */ |