mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00

Removed probe and remove that are specific to linux and replaced it with uboot init and uboot exit. These functions will be invoked from boardfile. This will change once we have dwc3-omap driver adapted to use the uboot driver model. Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com> Reviewed-by: Lukasz Majewski <l.majewski@samsung.com>
31 lines
668 B
C
31 lines
668 B
C
/* include/dwc3_omap_uboot.h
|
|
*
|
|
* Copyright (c) 2015 Texas Instruments Incorporated - http://www.ti.com
|
|
*
|
|
* Designware SuperSpeed OMAP Glue uboot init
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0
|
|
*/
|
|
|
|
#ifndef __DWC3_OMAP_UBOOT_H_
|
|
#define __DWC3_OMAP_UBOOT_H_
|
|
|
|
#include <linux/usb/dwc3-omap.h>
|
|
|
|
enum omap_dwc3_vbus_id_status {
|
|
OMAP_DWC3_ID_FLOAT,
|
|
OMAP_DWC3_ID_GROUND,
|
|
OMAP_DWC3_VBUS_OFF,
|
|
OMAP_DWC3_VBUS_VALID,
|
|
};
|
|
|
|
struct dwc3_omap_device {
|
|
void *base;
|
|
enum dwc3_omap_utmi_mode utmi_mode;
|
|
enum omap_dwc3_vbus_id_status vbus_id_status;
|
|
};
|
|
|
|
int dwc3_omap_uboot_init(struct dwc3_omap_device *dev);
|
|
void dwc3_omap_uboot_exit(void);
|
|
#endif /* __DWC3_OMAP_UBOOT_H_ */
|