1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
/*
* Copyright 2012 Freescale Semiconductor, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <mach/common.h>
extern int usbotg_init(struct platform_device *pdev);
extern void usbotg_uninit(struct fsl_usb2_platform_data *pdata);
extern int usbotg2_init(struct platform_device *pdev);
extern void usbotg2_uninit(struct fsl_usb2_platform_data *pdata);
extern struct platform_device *host_pdev_register(struct resource *res,
int n_res, struct fsl_usb2_platform_data *config);
extern int fsl_usb_host_init(struct platform_device *pdev);
extern void fsl_usb_host_uninit(struct fsl_usb2_platform_data *pdata);
extern int gpio_usbotg_utmi_active(void);
extern void gpio_usbotg_utmi_inactive(void);
extern void __init mvf_usb_dr_init(void);
extern void __init mvf_usb_dr2_init(void);
extern void __init mvf_usb_h1_init(void);
typedef void (*driver_vbus_func)(bool);
extern void mvf_set_host1_vbus_func(driver_vbus_func);
extern void mvf_set_otghost_vbus_func(driver_vbus_func);
extern struct platform_device anatop_thermal_device;
extern struct platform_device mvf_usbdr_otg_device;
extern struct platform_device mvf_usbdr_udc_device;
extern struct platform_device mvf_usbdr_host_device;
extern struct platform_device mvf_usbdr_wakeup_device;
extern struct platform_device mvf_usbh1_device;
extern struct platform_device mvf_usbh1_wakeup_device;
/*
* Used to set pdata->operating_mode before registering the platform_device.
* If OTG is configured, the controller operates in OTG mode,
* otherwise it's either host or device.
*/
#ifdef CONFIG_USB_OTG
#define DR_UDC_MODE FSL_USB2_DR_OTG
#define DR_HOST_MODE FSL_USB2_DR_OTG
#else
#define DR_UDC_MODE FSL_USB2_DR_DEVICE
#define DR_HOST_MODE FSL_USB2_DR_HOST
#endif
extern void __iomem *imx_otg_base;
|