Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
usb.h
Go to the documentation of this file.
1 // include/asm-arm/mach-omap/usb.h
2 
3 #ifndef __ASM_ARCH_OMAP_USB_H
4 #define __ASM_ARCH_OMAP_USB_H
5 
6 #include <linux/io.h>
8 #include <linux/usb/musb.h>
9 
10 #define OMAP3_HS_USB_PORTS 3
11 
27 };
28 
31 
32  /* have to be valid if phy_reset is true and portx is in phy mode */
34 
35  /* Set this to true for ES2.x silicon */
36  unsigned es2_compatibility:1;
37 
38  unsigned phy_reset:1;
39 
40  /*
41  * Regulators for USB PHYs.
42  * Each PHY can have a separate regulator.
43  */
45 };
46 
47 #ifdef CONFIG_ARCH_OMAP2PLUS
48 
49 struct ehci_hcd_omap_platform_data {
51  int reset_gpio_port[OMAP3_HS_USB_PORTS];
53  unsigned phy_reset:1;
54 };
55 
56 struct ohci_hcd_omap_platform_data {
58  unsigned es2_compatibility:1;
59 };
60 
61 struct usbhs_omap_platform_data {
63 
64  struct ehci_hcd_omap_platform_data *ehci_data;
65  struct ohci_hcd_omap_platform_data *ohci_data;
66 };
67 
68 struct usbtll_omap_platform_data {
70 };
71 /*-------------------------------------------------------------------------*/
72 
73 struct omap_musb_board_data {
75  u8 mode;
76  u16 power;
77  unsigned extvbus:1;
78  void (*set_phy_power)(u8 on);
79  void (*clear_irq)(void);
80  void (*set_mode)(u8 mode);
81  void (*reset)(void);
82 };
83 
84 enum musb_interface {MUSB_INTERFACE_ULPI, MUSB_INTERFACE_UTMI};
85 
86 extern void usb_musb_init(struct omap_musb_board_data *board_data);
87 
88 extern void usbhs_init(const struct usbhs_omap_board_data *pdata);
89 extern int omap_tll_enable(void);
90 extern int omap_tll_disable(void);
91 
92 extern int omap4430_phy_power(struct device *dev, int ID, int on);
93 extern int omap4430_phy_set_clk(struct device *dev, int on);
94 extern int omap4430_phy_init(struct device *dev);
95 extern int omap4430_phy_exit(struct device *dev);
96 extern int omap4430_phy_suspend(struct device *dev, int suspend);
97 
98 #endif
99 
100 extern void am35x_musb_reset(void);
101 extern void am35x_musb_phy_power(u8 on);
102 extern void am35x_musb_clear_irq(void);
103 extern void am35x_set_mode(u8 musb_mode);
104 extern void ti81xx_musb_phy_power(u8 on);
105 
106 /* AM35x */
107 /* USB 2.0 PHY Control */
108 #define CONF2_PHY_GPIOMODE (1 << 23)
109 #define CONF2_OTGMODE (3 << 14)
110 #define CONF2_NO_OVERRIDE (0 << 14)
111 #define CONF2_FORCE_HOST (1 << 14)
112 #define CONF2_FORCE_DEVICE (2 << 14)
113 #define CONF2_FORCE_HOST_VBUS_LOW (3 << 14)
114 #define CONF2_SESENDEN (1 << 13)
115 #define CONF2_VBDTCTEN (1 << 12)
116 #define CONF2_REFFREQ_24MHZ (2 << 8)
117 #define CONF2_REFFREQ_26MHZ (7 << 8)
118 #define CONF2_REFFREQ_13MHZ (6 << 8)
119 #define CONF2_REFFREQ (0xf << 8)
120 #define CONF2_PHYCLKGD (1 << 7)
121 #define CONF2_VBUSSENSE (1 << 6)
122 #define CONF2_PHY_PLLON (1 << 5)
123 #define CONF2_RESET (1 << 4)
124 #define CONF2_PHYPWRDN (1 << 3)
125 #define CONF2_OTGPWRDN (1 << 2)
126 #define CONF2_DATPOL (1 << 1)
127 
128 /* TI81XX specific definitions */
129 #define USBCTRL0 0x620
130 #define USBSTAT0 0x624
131 
132 /* TI816X PHY controls bits */
133 #define TI816X_USBPHY0_NORMAL_MODE (1 << 0)
134 #define TI816X_USBPHY_REFCLK_OSC (1 << 8)
135 
136 /* TI814X PHY controls bits */
137 #define USBPHY_CM_PWRDN (1 << 0)
138 #define USBPHY_OTG_PWRDN (1 << 1)
139 #define USBPHY_CHGDET_DIS (1 << 2)
140 #define USBPHY_CHGDET_RSTRT (1 << 3)
141 #define USBPHY_SRCONDM (1 << 4)
142 #define USBPHY_SINKONDP (1 << 5)
143 #define USBPHY_CHGISINK_EN (1 << 6)
144 #define USBPHY_CHGVSRC_EN (1 << 7)
145 #define USBPHY_DMPULLUP (1 << 8)
146 #define USBPHY_DPPULLUP (1 << 9)
147 #define USBPHY_CDET_EXTCTL (1 << 10)
148 #define USBPHY_GPIO_MODE (1 << 12)
149 #define USBPHY_DPOPBUFCTL (1 << 13)
150 #define USBPHY_DMOPBUFCTL (1 << 14)
151 #define USBPHY_DPINPUT (1 << 15)
152 #define USBPHY_DMINPUT (1 << 16)
153 #define USBPHY_DPGPIO_PD (1 << 17)
154 #define USBPHY_DMGPIO_PD (1 << 18)
155 #define USBPHY_OTGVDET_EN (1 << 19)
156 #define USBPHY_OTGSESSEND_EN (1 << 20)
157 #define USBPHY_DATA_POLARITY (1 << 23)
158 
159 #if defined(CONFIG_ARCH_OMAP1) && defined(CONFIG_USB)
160 u32 omap1_usb0_init(unsigned nwires, unsigned is_device);
161 u32 omap1_usb1_init(unsigned nwires);
162 u32 omap1_usb2_init(unsigned nwires, unsigned alt_pingroup);
163 #else
164 static inline u32 omap1_usb0_init(unsigned nwires, unsigned is_device)
165 {
166  return 0;
167 }
168 static inline u32 omap1_usb1_init(unsigned nwires)
169 {
170  return 0;
171 
172 }
173 static inline u32 omap1_usb2_init(unsigned nwires, unsigned alt_pingroup)
174 {
175  return 0;
176 }
177 #endif
178 
179 #endif /* __ASM_ARCH_OMAP_USB_H */