]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
93c37638 KVA |
2 | /* include/dwc3_omap_uboot.h |
3 | * | |
4 | * Copyright (c) 2015 Texas Instruments Incorporated - http://www.ti.com | |
5 | * | |
6 | * Designware SuperSpeed OMAP Glue uboot init | |
93c37638 KVA |
7 | */ |
8 | ||
9 | #ifndef __DWC3_OMAP_UBOOT_H_ | |
10 | #define __DWC3_OMAP_UBOOT_H_ | |
11 | ||
12 | #include <linux/usb/dwc3-omap.h> | |
13 | ||
14 | enum omap_dwc3_vbus_id_status { | |
15 | OMAP_DWC3_ID_FLOAT, | |
16 | OMAP_DWC3_ID_GROUND, | |
17 | OMAP_DWC3_VBUS_OFF, | |
18 | OMAP_DWC3_VBUS_VALID, | |
19 | }; | |
20 | ||
21 | struct dwc3_omap_device { | |
22 | void *base; | |
57207657 | 23 | int index; |
93c37638 KVA |
24 | enum dwc3_omap_utmi_mode utmi_mode; |
25 | enum omap_dwc3_vbus_id_status vbus_id_status; | |
26 | }; | |
c241d7ee KVA |
27 | |
28 | int dwc3_omap_uboot_init(struct dwc3_omap_device *dev); | |
57207657 | 29 | void dwc3_omap_uboot_exit(int index); |
53de33fc | 30 | int dwc3_omap_uboot_interrupt_status(int index); |
93c37638 | 31 | #endif /* __DWC3_OMAP_UBOOT_H_ */ |