2017-11-03 10:28:30 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2012-09-12 11:58:05 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Freescale Semiconductor, Inc.
|
|
|
|
*/
|
|
|
|
|
2013-12-31 16:28:11 +00:00
|
|
|
#ifndef __DRIVER_USB_CHIPIDEA_CI_HDRC_IMX_H
|
|
|
|
#define __DRIVER_USB_CHIPIDEA_CI_HDRC_IMX_H
|
|
|
|
|
2013-08-14 09:44:16 +00:00
|
|
|
struct imx_usbmisc_data {
|
2014-09-22 00:14:15 +00:00
|
|
|
struct device *dev;
|
2012-09-12 11:58:05 +00:00
|
|
|
int index;
|
|
|
|
|
2013-01-28 00:45:05 +00:00
|
|
|
unsigned int disable_oc:1; /* over current detect disabled */
|
2016-07-20 08:02:42 +00:00
|
|
|
unsigned int oc_polarity:1; /* over current polarity if oc enabled */
|
2013-03-30 10:54:01 +00:00
|
|
|
unsigned int evdo:1; /* set external vbus divider option */
|
2016-09-26 11:14:19 +00:00
|
|
|
unsigned int ulpi:1; /* connected to an ULPI phy */
|
2012-09-12 11:58:05 +00:00
|
|
|
};
|
|
|
|
|
2013-08-14 09:44:16 +00:00
|
|
|
int imx_usbmisc_init(struct imx_usbmisc_data *);
|
|
|
|
int imx_usbmisc_init_post(struct imx_usbmisc_data *);
|
2015-02-11 04:44:46 +00:00
|
|
|
int imx_usbmisc_set_wakeup(struct imx_usbmisc_data *, bool);
|
2013-12-31 16:28:11 +00:00
|
|
|
|
|
|
|
#endif /* __DRIVER_USB_CHIPIDEA_CI_HDRC_IMX_H */
|